Lines Matching refs:ivac
1782 def GetIPCVoucherAttrControlSummary(ivac): argument
1788 if unsigned(ivac) == 0:
1789 return "{: <#18x}".format(ivac)
1791 if unsigned(ivac.ivac_is_growing):
1793 out_str += fmt.format(c=ivac, growing = growing_str)
1803 ivac = kern.GetValueFromAddress(cmd_args[0], 'ipc_voucher_attr_control_t')
1805 print(GetIPCVoucherAttrControlSummary(ivac))
1808 last_entry_index = unsigned(ivac.ivac_table_size)
1811 … ".format(cur_entry_index) + GetIPCVoucherAttributeEntrySummary(addressof(ivac.ivac_table[cur_entr…
1965 ivac = kern.GetValueFromAddress(cmd_args[0], 'ipc_voucher_attr_control_t')
1967 print(GetIPCVoucherAttrControlSummary(ivac))
1968 if unsigned(ivac.ivac_freelist) == 0:
1972 next_free = unsigned(ivac.ivac_freelist)
1974 …print("{: <5d} ".format(next_free) + GetIPCVoucherAttributeEntrySummary(addressof(ivac.ivac_table[…
1975 next_free = unsigned(ivac.ivac_table[next_free].ivace_next)
2073 ivac = GetVoucherAttributeControllerForKey(manager_key)
2074 if ivac is None or unsigned(ivac) == 0:
2078 …ivac = kern.GetValueFromAddress(unsigned(ivac), 'ipc_voucher_attr_control_t') # ??? No idea why l…
2079 ivace_table = ivac.ivac_table
2080 if voucher_entry_value >= unsigned(ivac.ivac_table_size):
2081 …et ivace for value %d in table of size %d" % (voucher_entry_value, unsigned(ivac.ivac_table_size)))