Lines Matching refs:ivac
1737 def GetIPCVoucherAttrControlSummary(ivac): argument
1743 if unsigned(ivac) == 0:
1744 return "{: <#018x}".format(ivac)
1746 if unsigned(ivac.ivac_is_growing):
1748 out_str += fmt.format(c=ivac, growing = growing_str)
1758 ivac = kern.GetValueFromAddress(cmd_args[0], 'ipc_voucher_attr_control_t')
1760 print GetIPCVoucherAttrControlSummary(ivac)
1763 last_entry_index = unsigned(ivac.ivac_table_size)
1766 … ".format(cur_entry_index) + GetIPCVoucherAttributeEntrySummary(addressof(ivac.ivac_table[cur_entr…
1921 ivac = kern.GetValueFromAddress(cmd_args[0], 'ipc_voucher_attr_control_t')
1923 print GetIPCVoucherAttrControlSummary(ivac)
1924 if unsigned(ivac.ivac_freelist) == 0:
1928 next_free = unsigned(ivac.ivac_freelist)
1930 …print "{: <5d} ".format(next_free) + GetIPCVoucherAttributeEntrySummary(addressof(ivac.ivac_table[…
1931 next_free = unsigned(ivac.ivac_table[next_free].ivace_next)
2029 ivac = GetVoucherAttributeControllerForKey(manager_key)
2030 if ivac is None or unsigned(ivac) == 0:
2034 …ivac = kern.GetValueFromAddress(unsigned(ivac), 'ipc_voucher_attr_control_t') # ??? No idea why l…
2035 ivace_table = ivac.ivac_table
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))