Home
last modified time | relevance | path

Searched refs:ivac_table_size (Results 1 – 3 of 3) sorted by relevance

/xnu-8019.80.24/osfmk/ipc/
H A Dipc_voucher.c541 ivac->ivac_table_size = IVAC_ENTRIES_MIN; in ivac_alloc()
543 for (i = 0; i < ivac->ivac_table_size; i++) { in ivac_alloc()
608 for (i = 0; i < ivac->ivac_table_size; i++) { in ivac_dealloc()
738 if (index >= ivac->ivac_table_size) { in ivace_lookup()
764 if (ivac->ivac_table_size >= IVAC_ENTRIES_MAX) { in ivac_grow_table()
769 old_size = ivac->ivac_table_size; in ivac_grow_table()
790 for (i = 0; i < ivac->ivac_table_size; i++) { in ivac_grow_table()
797 ivac->ivac_table_size = new_size; in ivac_grow_table()
H A Dipc_voucher.h145 iv_index_t ivac_table_size; /* size of the attr value table */ member
/xnu-8019.80.24/tools/lldbmacros/
H A Dipc.py1763 last_entry_index = unsigned(ivac.ivac_table_size)
2036 if voucher_entry_value >= unsigned(ivac.ivac_table_size):
2037 …get ivace for value %d in table of size %d" % (voucher_entry_value, unsigned(ivac.ivac_table_size))