HomeSort by: relevance | last modified time | path
    Searched defs:eahdr (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/fs/udf/
udf_readwrite.c 129 struct extattrhdr_desc *eahdr; local in function:udf_fixup_internal_extattr
138 eahdr = (struct extattrhdr_desc *) fe->data;
143 eahdr = (struct extattrhdr_desc *) efe->data;
160 error = udf_check_tag(eahdr);
163 if (udf_rw16(eahdr->tag.id) != TAGID_EXTATTR_HDR)
165 error = udf_check_tag_payload(eahdr, sizeof(struct extattrhdr_desc));
173 /* fixup eahdr tag */
174 eahdr->tag.tag_loc = udf_rw32(lb_num);
175 udf_validate_tag_and_crc_sums((union dscrptr *) eahdr);
udf_subr.c 2367 struct extattrhdr_desc *eahdr; local in function:udf_extattr_search_intern
2381 eahdr = (struct extattrhdr_desc *) node->fe->data;
2385 eahdr = (struct extattrhdr_desc *) node->efe->data;
2393 error = udf_check_tag(eahdr);
2396 if (udf_rw16(eahdr->tag.id) != TAGID_EXTATTR_HDR)
2398 error = udf_check_tag_payload(eahdr, sizeof(struct extattrhdr_desc));
2409 offset = udf_rw32(eahdr->impl_attr_loc);
2414 offset = udf_rw32(eahdr->appl_attr_loc);
2427 pos = (uint8_t *) eahdr + offset;
  /src/sbin/newfs_udf/
udf_core.c 2205 struct extattrhdr_desc *eahdr; local in function:udf_extattr_search_intern
2219 eahdr = (struct extattrhdr_desc *) dscr->fe.data;
2223 eahdr = (struct extattrhdr_desc *) dscr->efe.data;
2231 error = udf_check_tag(eahdr);
2234 if (udf_rw16(eahdr->tag.id) != TAGID_EXTATTR_HDR)
2236 error = udf_check_tag_payload(eahdr, sizeof(struct extattrhdr_desc));
2245 offset = udf_rw32(eahdr->impl_attr_loc);
2250 offset = udf_rw32(eahdr->appl_attr_loc);
2261 pos = (uint8_t *) eahdr + offset;

Completed in 19 milliseconds