Home
last modified time | relevance | path

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

/xnu-8020.101.4/osfmk/ipc/
H A Dipc_voucher.c698 ivac_entry_t ivace; in ivace_lookup_values() local
713 ivace = ivace_lookup(ivac, value_index); in ivace_lookup_values()
718 assert(ivace->ivace_refs > 0); in ivace_lookup_values()
719 values[0] = ivace->ivace_value; in ivace_lookup_values()
817 ivac_entry_t ivace; in ivace_reference_by_index() local
827 ivace = ivace_lookup(ivac, val_index); in ivace_reference_by_index()
829 assert(0xdeadc0dedeadc0de != ivace->ivace_value); in ivace_reference_by_index()
830 assert(0 < ivace->ivace_refs); in ivace_reference_by_index()
831 assert(!ivace->ivace_free); in ivace_reference_by_index()
834 if (!ivace->ivace_persist) { in ivace_reference_by_index()
[all …]
/xnu-8020.101.4/tools/lldbmacros/
H A Dipc.py1897 def GetIPCVoucherAttributeEntrySummary(ivace, manager_key_num = 0): argument
1907 if unsigned(ivace.ivace_releasing):
1909 if unsigned(ivace.ivace_free):
1911 if unsigned(ivace.ivace_layered):
1912 next_layer = "{: <#18x}".format(ivace.ivace_u.ivaceu_layer)
1914 made_refs = "{: <18d}".format(ivace.ivace_u.ivaceu_made)
1916 out_str += fmt.format(e=ivace, release=release_str, made_refs=made_refs, next_layer=next_layer)
1918 out_str += " " + GetHandleSummaryForKey(unsigned(ivace.ivace_value), manager_key_num)
1920 out_str += ' {: <2s} {: <4d} {: <4d}'.format(free_str, ivace.ivace_next, ivace.ivace_index)