Home
last modified time | relevance | path

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

/xnu-8792.81.2/osfmk/ipc/
H A Dipc_voucher.c514 ivac_entry_t ivace; in ivace_lookup_values() local
529 ivace = ivace_lookup(ivac, value_index); in ivace_lookup_values()
531 assert(ivace->ivace_refs > 0); in ivace_lookup_values()
532 values[0] = ivace->ivace_value; in ivace_lookup_values()
630 ivac_entry_t ivace; in ivace_reference_by_index() local
640 ivace = ivace_lookup(ivac, val_index); in ivace_reference_by_index()
642 assert(0xdeadc0dedeadc0de != ivace->ivace_value); in ivace_reference_by_index()
643 assert(0 < ivace->ivace_refs); in ivace_reference_by_index()
644 assert(!ivace->ivace_free); in ivace_reference_by_index()
647 if (!ivace->ivace_persist) { in ivace_reference_by_index()
[all …]
/xnu-8792.81.2/tools/lldbmacros/
H A Dipc.py1932 def GetIPCVoucherAttributeEntrySummary(ivace, manager_key_num = 0): argument
1942 if unsigned(ivace.ivace_releasing):
1944 if unsigned(ivace.ivace_free):
1946 if unsigned(ivace.ivace_layered):
1947 next_layer = "{: <#18x}".format(ivace.ivace_u.ivaceu_layer)
1949 made_refs = "{: <18d}".format(ivace.ivace_u.ivaceu_made)
1951 out_str += fmt.format(e=ivace, release=release_str, made_refs=made_refs, next_layer=next_layer)
1953 out_str += " " + GetHandleSummaryForKey(unsigned(ivace.ivace_value), manager_key_num)
1955 out_str += ' {: <2s} {: <4d} {: <4d}'.format(free_str, ivace.ivace_next, ivace.ivace_index)