HomeSort by: relevance | last modified time | path
    Searched refs:icb (Results 1 - 12 of 12) sorted by relevancy

  /src/usr.sbin/makefs/
udf.c 381 struct long_ad *icb; local in function:udf_prepare_fids
387 icb = dir_icb;
390 icb = dirdata_icb;
398 location = udf_rw32(icb->loc.lb_num);
412 struct icb_tag *icb; local in function:udf_file_inject_blob
427 icb = &fe->icbtag;
435 icb = &efe->icbtag;
444 if ((udf_rw16(icb->flags) & UDF_ICB_TAG_FLAGS_ALLOC_MASK) !=
455 assert((udf_rw16(icb->flags) & UDF_ICB_TAG_FLAGS_ALLOC_MASK) ==
489 struct icb_tag *icb; local in function:udf_append_file_mapping
635 struct long_ad icb; local in function:udf_append_file_contents
882 struct long_ad icb, data_icb, dirdata_icb; local in function:udf_populate_walk
    [all...]
  /src/sys/fs/udf/
udf_readwrite.c 608 udf_create_logvol_dscr(struct udf_mount *ump, struct udf_node *udf_node, struct long_ad *icb,
618 args.icb = icb;
629 udf_free_logvol_dscr(struct udf_mount *ump, struct long_ad *icb,
637 args.icb = icb;
645 udf_read_logvol_dscr(struct udf_mount *ump, struct long_ad *icb,
654 args.icb = icb;
666 struct long_ad *icb, int waitfor
    [all...]
udf_strat_direct.c 160 struct long_ad *icb = args->icb; local in function:udf_read_nodedscr_direct
168 error = udf_translate_vtop(ump, icb, &sector, &dummy);
191 struct long_ad *icb = args->icb; local in function:udf_write_nodedscr_direct
201 logsector = udf_rw32(icb->loc.lb_num);
205 error = udf_translate_vtop(ump, icb, &sector, &dummy);
udf_subr.h 75 struct long_ad *icb, union dscrptr **dscrptr);
78 int udf_read_logvol_dscr(struct udf_mount *ump, struct long_ad *icb,
81 struct long_ad *icb, int waitfor);
107 void udf_get_adslot(struct udf_node *udf_node, int slot, struct long_ad *icb, int *eof);
108 int udf_append_adslot(struct udf_node *udf_node, int *slot, struct long_ad *icb);
udf_strat_sequential.c 174 struct long_ad *icb = args->icb; local in function:udf_read_logvol_dscr_seq
182 error = udf_translate_vtop(ump, icb, &sector, &dummy);
205 struct long_ad *icb = args->icb; local in function:udf_write_logvol_dscr_seq
215 logsectornr = udf_rw32(icb->loc.lb_num);
218 error = udf_translate_vtop(ump, icb, &sectornr, &dummy);
udf_strat_rmw.c 541 struct long_ad *icb = args->icb; local in function:udf_create_nodedscr_rmw
548 error = udf_translate_vtop(ump, icb, &sectornr, &dummy);
580 struct long_ad *icb = args->icb; local in function:udf_free_nodedscr_rmw
586 error = udf_translate_vtop(ump, icb, &sectornr, &dummy);
612 struct long_ad *icb = args->icb; local in function:udf_read_nodedscr_rmw
623 error = udf_translate_vtop(ump, icb, &sectornr, &dummy);
706 struct long_ad *icb = args->icb local in function:udf_write_nodedscr_rmw
    [all...]
udf_allocation.c 1809 udf_get_adslot(struct udf_node *udf_node, int slot, struct long_ad *icb,
1843 memset(icb, 0, sizeof(struct long_ad));
1894 memset(icb, 0, sizeof(struct long_ad));
1901 icb->len = short_ad->len;
1902 icb->loc.part_num = udf_node->loc.loc.part_num;
1903 icb->loc.lb_num = short_ad->lb_num;
1906 *icb = *long_ad;
1909 "flags %d\n", icb->loc.part_num, icb->loc.lb_num,
1910 UDF_EXT_LEN(icb->len), UDF_EXT_FLAGS(icb->len)))
    [all...]
udf.h 245 struct long_ad *icb; member in struct:udf_strat_args
345 /* rb tree for lookup icb to udf_node and sorted list for sync */
udf_subr.c 2301 fid->icb = *parent;
2302 fid->icb.longad_uniqueid = udf_rw32((uint32_t) unique_id);
2790 /* Check icb filetype! it has to be 0 or UDF_ICB_FILETYPE_VAT */
2950 /* Check icb filetype! it has to be 0 or UDF_ICB_FILETYPE_VAT */
3508 const struct long_ad * const icb = key; local in function:udf_compare_rbnode_icb
3510 return udf_compare_icb(&a_node->loc, icb);
4653 *icb_loc = fid->icb;
4674 struct icb_tag *icb; local in function:udf_create_new_fe
4683 icb = &fe->icbtag;
4689 icb->strat_type = udf_rw16(4)
4757 struct icb_tag *icb; local in function:udf_create_new_efe
    [all...]
ecma167-udf.h 197 /* ICB : Information Control Block; positioning */
198 union icb { union
263 /* ICB Tag [4/14.6] */
638 struct long_ad rootdir_icb; /* to rootdir; icb->virtual ? */
652 struct long_ad icb; member in struct:fileid_desc
732 uint64_t unique_id_chk; /* needs to be copy of ICB's */
  /src/sbin/fsck_udf/
main.c 290 udf_calc_node_hash(struct long_ad *icb)
292 uint32_t lb_num = udf_rw32(icb->loc.lb_num);
293 uint16_t vpart = udf_rw16(icb->loc.part_num);
300 udf_node_lookup(struct long_ad *icb)
303 int entry = udf_calc_node_hash(icb);
307 if (pos->loc.loc.part_num == icb->loc.part_num)
308 if (pos->loc.loc.lb_num == icb->loc.lb_num)
324 struct icb_tag *icb; local in function:udf_wipe_and_reallocate
338 icb = &fe->icbtag;
344 icb = &efe->icbtag
752 struct icb_tag *icb; local in function:udf_process_ad
941 struct icb_tag *icb; local in function:udf_process_file
3188 struct icb_tag *icb = NULL; local in function:udf_extract_node_info
    [all...]
  /src/sbin/newfs_udf/
udf_core.c 2043 fid->icb = *parent;
2044 fid->icb.longad_uniqueid = parent->longad_uniqueid;
2067 fid->icb = *ref;
2068 fid->icb.longad_uniqueid = ref->longad_uniqueid;
2423 struct icb_tag *icb; local in function:udf_create_new_fe
2435 icb = &fe->icbtag;
2441 icb->strat_type = udf_rw16(4);
2442 icb->max_num_entries = udf_rw16(1);
2443 icb->file_type = file_type; /* 8 bit */
2444 icb->flags = udf_rw16(UDF_ICB_INTERN_ALLOC)
2525 struct icb_tag *icb; local in function:udf_create_new_efe
2613 struct icb_tag *icb; local in function:udf_append_meta_mapping_part_to_efe
    [all...]

Completed in 24 milliseconds