Lines Matching refs:tmp_md
191 mdchain_t tmp_md; in md_get_ace() local
205 tmp_md = *mdp; in md_get_ace()
208 ERRCHK(md_get_uint8(&tmp_md, &ace_hdr.ace_type)); in md_get_ace()
209 ERRCHK(md_get_uint8(&tmp_md, &ace_hdr.ace_flags)); in md_get_ace()
210 ERRCHK(md_get_uint16le(&tmp_md, &ace_hdr.ace_size)); in md_get_ace()
226 ERRCHK(md_get_uint32le(&tmp_md, &ace->ace_v2.ace_rights)); in md_get_ace()
227 ERRCHK(md_get_sid(&tmp_md, &ace->ace_v2.ace_sid)); in md_get_ace()
439 mdchain_t top_md, tmp_md; in md_get_ntsd() local
475 tmp_md = top_md; in md_get_ntsd()
476 md_get_mem(&tmp_md, NULL, sacloff, MB_MSYSTEM); in md_get_ntsd()
477 ERRCHK(md_get_acl(&tmp_md, &sd->sd_sacl)); in md_get_ntsd()
480 tmp_md = top_md; in md_get_ntsd()
481 md_get_mem(&tmp_md, NULL, dacloff, MB_MSYSTEM); in md_get_ntsd()
482 ERRCHK(md_get_acl(&tmp_md, &sd->sd_dacl)); in md_get_ntsd()
485 tmp_md = top_md; in md_get_ntsd()
486 md_get_mem(&tmp_md, NULL, owneroff, MB_MSYSTEM); in md_get_ntsd()
487 ERRCHK(md_get_sid(&tmp_md, &sd->sd_owner)); in md_get_ntsd()
490 tmp_md = top_md; in md_get_ntsd()
491 md_get_mem(&tmp_md, NULL, groupoff, MB_MSYSTEM); in md_get_ntsd()
492 ERRCHK(md_get_sid(&tmp_md, &sd->sd_group)); in md_get_ntsd()