Lines Matching refs:ivac
1836 def GetIPCVoucherAttrControlSummary(ivac): argument
1842 if unsigned(ivac) == 0:
1843 return "{: <#18x}".format(ivac)
1845 if unsigned(ivac.ivac_is_growing):
1847 out_str += fmt.format(c=ivac, growing = growing_str)
1857 ivac = kern.GetValueFromAddress(cmd_args[0], 'ipc_voucher_attr_control_t')
1859 print(GetIPCVoucherAttrControlSummary(ivac))
1862 last_entry_index = unsigned(ivac.ivac_table_size)
1865 … ".format(cur_entry_index) + GetIPCVoucherAttributeEntrySummary(addressof(ivac.ivac_table[cur_entr…
2019 ivac = kern.GetValueFromAddress(cmd_args[0], 'ipc_voucher_attr_control_t')
2021 print(GetIPCVoucherAttrControlSummary(ivac))
2022 if unsigned(ivac.ivac_freelist) == 0:
2026 next_free = unsigned(ivac.ivac_freelist)
2028 …print("{: <5d} ".format(next_free) + GetIPCVoucherAttributeEntrySummary(addressof(ivac.ivac_table[…
2029 next_free = unsigned(ivac.ivac_table[next_free].ivace_next)
2127 ivac = GetVoucherAttributeControllerForKey(manager_key)
2128 if ivac is None or unsigned(ivac) == 0:
2132 …ivac = kern.GetValueFromAddress(unsigned(ivac), 'ipc_voucher_attr_control_t') # ??? No idea why l…
2133 ivace_table = ivac.ivac_table
2134 if voucher_entry_value >= unsigned(ivac.ivac_table_size):
2135 …et ivace for value %d in table of size %d" % (voucher_entry_value, unsigned(ivac.ivac_table_size)))