Home
last modified time | relevance | path

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

/xnu-8019.80.24/osfmk/ipc/
H A Dipc_voucher.c706 ivac_entry_t ivace; in ivace_lookup_values() local
721 ivace = ivace_lookup(ivac, value_index); in ivace_lookup_values()
726 assert(ivace->ivace_refs > 0); in ivace_lookup_values()
727 values[0] = ivace->ivace_value; in ivace_lookup_values()
825 ivac_entry_t ivace; in ivace_reference_by_index() local
835 ivace = ivace_lookup(ivac, val_index); in ivace_reference_by_index()
837 assert(0xdeadc0dedeadc0de != ivace->ivace_value); in ivace_reference_by_index()
838 assert(0 < ivace->ivace_refs); in ivace_reference_by_index()
839 assert(!ivace->ivace_free); in ivace_reference_by_index()
842 if (!ivace->ivace_persist) { in ivace_reference_by_index()
[all …]
/xnu-8019.80.24/tools/lldbmacros/
H A Dipc.py1888 def GetIPCVoucherAttributeEntrySummary(ivace, manager_key_num = 0): argument
1898 if unsigned(ivace.ivace_releasing):
1900 if unsigned(ivace.ivace_free):
1902 if unsigned(ivace.ivace_layered):
1903 next_layer = "{: <#018x}".format(ivace.ivace_u.ivaceu_layer)
1905 made_refs = "{: <18d}".format(ivace.ivace_u.ivaceu_made)
1907 out_str += fmt.format(e=ivace, release=release_str, made_refs=made_refs, next_layer=next_layer)
1909 out_str += " " + GetHandleSummaryForKey(unsigned(ivace.ivace_value), manager_key_num)
1911 out_str += ' {: <2s} {: <4d} {: <4d}'.format(free_str, ivace.ivace_next, ivace.ivace_index)