Lines Matching refs:ivac
1746 def GetIPCVoucherAttrControlSummary(ivac): argument
1752 if unsigned(ivac) == 0:
1753 return "{: <#18x}".format(ivac)
1755 if unsigned(ivac.ivac_is_growing):
1757 out_str += fmt.format(c=ivac, growing = growing_str)
1767 ivac = kern.GetValueFromAddress(cmd_args[0], 'ipc_voucher_attr_control_t')
1769 print(GetIPCVoucherAttrControlSummary(ivac))
1772 last_entry_index = unsigned(ivac.ivac_table_size)
1775 … ".format(cur_entry_index) + GetIPCVoucherAttributeEntrySummary(addressof(ivac.ivac_table[cur_entr…
1930 ivac = kern.GetValueFromAddress(cmd_args[0], 'ipc_voucher_attr_control_t')
1932 print(GetIPCVoucherAttrControlSummary(ivac))
1933 if unsigned(ivac.ivac_freelist) == 0:
1937 next_free = unsigned(ivac.ivac_freelist)
1939 …print("{: <5d} ".format(next_free) + GetIPCVoucherAttributeEntrySummary(addressof(ivac.ivac_table[…
1940 next_free = unsigned(ivac.ivac_table[next_free].ivace_next)
2038 ivac = GetVoucherAttributeControllerForKey(manager_key)
2039 if ivac is None or unsigned(ivac) == 0:
2043 …ivac = kern.GetValueFromAddress(unsigned(ivac), 'ipc_voucher_attr_control_t') # ??? No idea why l…
2044 ivace_table = ivac.ivac_table
2045 if voucher_entry_value >= unsigned(ivac.ivac_table_size):
2046 …et ivace for value %d in table of size %d" % (voucher_entry_value, unsigned(ivac.ivac_table_size)))