Home
last modified time | relevance | path

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

/xnu-8792.41.9/tools/lldbmacros/
H A Dskywalk.py706 cht = kern.GetValueFromAddress(unsigned(fm.fm_flow_table), 'struct cuckoo_hashtable *')
713 CuckooHashtableForeach(cht, GetCuckooNodeAsFLowEntry)
748 def CuckooHashtableForeachSlot(cht, slotHandler): argument
749 for i in range(0, cht._n_buckets):
750 b = cht._buckets[i]
758 def CuckooHashtableForeach(cht, handler): argument
766 CuckooHashtableForeachSlot(cht, CuckooHashtableSlotHandler)
777 cht = kern.GetValueFromAddress(cmd_args[0], 'struct cuckoo_hashtable *')
779 …uckoo_hashtable *){:18s} capacity {:d} entries {:d}".format(hex(cht), cht._capacity, cht._n_entrie…
783 CuckooHashtableForeach(cht, CuckooHashtablePrintNode)