Lines Matching refs:ivac

1873 def GetIPCVoucherAttrControlSummary(ivac):  argument
1879 if ivac == 0:
1880 return "{: <#18x}".format(ivac)
1882 growing_str = "Y" if unsigned(ivac.ivac_is_growing) else "N"
1883 out_str += fmt.format(c=ivac, growing = growing_str)
1893 ivac = kern.GetValueFromAddress(cmd_args[0], 'ipc_voucher_attr_control_t')
1895 print(GetIPCVoucherAttrControlSummary(ivac))
1898 last_entry_index = unsigned(ivac.ivac_table_size)
1901 … ".format(cur_entry_index) + GetIPCVoucherAttributeEntrySummary(addressof(ivac.ivac_table[cur_entr…
1938 def GetIPCVoucherGlobalTableElementSummary(idx, ivac, ivam): argument
1942 …ey=iv_index_to_key(idx), ctrl_s=GetIPCVoucherAttrControlSummary(addressof(ivac)), mgr_s=GetIPCVouc…
1954 ivac = kern.globals.ivac_global_table[i]
1958 print(GetIPCVoucherGlobalTableElementSummary(i, ivac, ivam))
2069 ivac = kern.GetValueFromAddress(cmd_args[0], 'ipc_voucher_attr_control_t')
2071 print(GetIPCVoucherAttrControlSummary(ivac))
2072 if unsigned(ivac.ivac_freelist) == 0:
2076 next_free = unsigned(ivac.ivac_freelist)
2078 …print("{: <5d} ".format(next_free) + GetIPCVoucherAttributeEntrySummary(addressof(ivac.ivac_table[…
2079 next_free = unsigned(ivac.ivac_table[next_free].ivace_next)
2170 ivac = GetVoucherAttributeControllerForKey(manager_key)
2171 if ivac is None or addressof(ivac) == 0:
2175 ivace_table = ivac.ivac_table
2176 if voucher_entry_value >= unsigned(ivac.ivac_table_size):
2177 …et ivace for value %d in table of size %d" % (voucher_entry_value, unsigned(ivac.ivac_table_size)))