/src/sys/arch/i386/i386/ |
trap.c | 819 uint64_t fsd, gsd; local in function:frame_dump 834 memcpy(&fsd, &pcb->pcb_fsd, sizeof(fsd)); 836 printf("fsbase 0x%016llx gsbase 0x%016llx\n", fsd, gsd);
|
/src/sbin/newfs_udf/ |
udf_core.h | 145 uint32_t fsd, rootdir, vat; member in struct:udf_disclayout
|
udf_core.c | 439 * Pick fixed logical space sector numbers for main FSD, rootdir and 481 layout.fsd = mpos; mpos += 1; 486 layout.fsd = mpos; mpos += 1; 1207 /* just one fsd for now */ 1210 lvd->lv_fsd_loc.loc.lb_num = udf_rw32(layout.fsd); 1591 struct fileset_desc *fsd; local in function:udf_create_fsd 1594 fsd = calloc(1, context.sector_size); 1595 if (fsd == NULL) 1598 udf_inittag(&fsd->tag, TAGID_FSD, /* loc */ 0); 1600 udf_set_timestamp_now(&fsd->time) [all...] |
/src/sys/fs/udf/ |
ecma167-udf.h | 827 struct fileset_desc fsd; member in union:dscrptr
|
udf_subr.c | 2155 struct fileset_desc *fsd = NULL; local in function:udf_update_logvolname 2160 fsd = ump->fileset_desc; 2166 if (fsd) 2167 memmove(fsd->logvol_id, logvol_id, 128); 3351 /* TODO implement FSD reading in separate function like integrity? */ 3364 DPRINTF(VOLUMES, ("Reading FSD at lb %d\n", lb_num)); 3381 * picking the last now. Also check for FSD 3389 ump->fileset_desc = &dscr->fsd; 3392 /* continue to the next fsd */ 3396 /* follow up to fsd->next_ex (long_ad) if its not null * [all...] |
/src/sbin/fsck_udf/ |
main.c | 1721 struct fileset_desc *fsd = NULL; local in function:udf_update_logvolname 1725 fsd = context.fileset_desc; 1731 if (fsd) 1732 memmove(fsd->logvol_id, logvol_id, 128); 2643 pwarn("Expected fsd at (p %d, lb %d)\n", 2649 context.fileset_desc = &dscr->fsd; 3769 /* mark fsd allocation ! */ 3813 * Record our FSD in this shadow VAT since its the only one outside
|