Home
last modified time | relevance | path

Searched refs:ivace (Results 1 – 2 of 2) sorted by relevance

/xnu-10063.141.1/osfmk/ipc/
H A Dipc_voucher.c521 ivac_entry_t ivace; in ivace_lookup_values() local
532 ivace = ivace_lookup(ivac, value_index); in ivace_lookup_values()
534 assert(ivace->ivace_refs > 0); in ivace_lookup_values()
535 values[0] = ivace->ivace_value; in ivace_lookup_values()
633 ivac_entry_t ivace; in ivace_reference_by_index() local
643 ivace = ivace_lookup(ivac, val_index); in ivace_reference_by_index()
645 assert(0xdeadc0dedeadc0de != ivace->ivace_value); in ivace_reference_by_index()
646 assert(0 < ivace->ivace_refs); in ivace_reference_by_index()
647 assert(!ivace->ivace_free); in ivace_reference_by_index()
650 if (!ivace->ivace_persist) { in ivace_reference_by_index()
[all …]
/xnu-10063.141.1/tools/lldbmacros/
H A Dipc.py2017 def GetIPCVoucherAttributeEntrySummary(ivace, manager_key_num = 0): argument
2027 if unsigned(ivace.ivace_releasing):
2029 if unsigned(ivace.ivace_free):
2031 if unsigned(ivace.ivace_layered):
2032 next_layer = "{: <#18x}".format(ivace.ivace_u.ivaceu_layer)
2034 made_refs = "{: <18d}".format(ivace.ivace_u.ivaceu_made)
2036 out_str += fmt.format(e=ivace, release=release_str, made_refs=made_refs, next_layer=next_layer)
2038 out_str += " " + GetHandleSummaryForKey(unsigned(ivace.ivace_value), manager_key_num)
2040 out_str += ' {: <2s} {: <4d} {: <4d}'.format(free_str, ivace.ivace_next, ivace.ivace_index)