Home
last modified time | relevance | path

Searched refs:cht (Results 1 – 1 of 1) sorted by relevance

/xnu-8019.80.24/tools/lldbmacros/
H A Dskywalk.py702 cht = kern.GetValueFromAddress(unsigned(fm.fm_flow_table), 'struct cuckoo_hashtable *')
709 CuckooHashtableForeach(cht, GetCuckooNodeAsFLowEntry)
744 def CuckooHashtableForeachSlot(cht, slotHandler): argument
745 for i in range(0, cht._n_buckets):
746 b = cht._buckets[i]
754 def CuckooHashtableForeach(cht, handler): argument
762 CuckooHashtableForeachSlot(cht, CuckooHashtableSlotHandler)
773 cht = kern.GetValueFromAddress(cmd_args[0], 'struct cuckoo_hashtable *')
775 …uckoo_hashtable *){:18s} capacity {:d} entries {:d}".format(hex(cht), cht._capacity, cht._n_entrie…
779 CuckooHashtableForeach(cht, CuckooHashtablePrintNode)