Home
last modified time | relevance | path

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

/xnu-11215/tests/vm/
H A Dmach_vm_map.c233 for (struct mo_spec *mo = mo_specs; mo->s; mo++) { variable
234 T_LOG("*** mo type: %s (return_data_addr == 0)", mo->s);
237 mach_vm_map_unaligned_test(mo->flags,
244 for (struct mo_spec *mo = mo_specs; mo->s; mo++) { variable
245 T_LOG("*** mo type: %s (return_data_addr == 1)", mo->s);
248 mach_vm_map_unaligned_test(mo->flags,
/xnu-11215/tools/lldbmacros/
H A Dkasan.py664 def _print_mo(self, mo, addr): argument
682 if mo.zone:
684 mo.zone.address, mo.zone.name))
697 btref = mo.btref()
766 if isinstance(mo, ShadowMapEntry):
768 "tag: {:#X} ({:s})".format(mo.shaddr, mo.value,
771 self._print_mo(mo, addr)
775 if mo.type.startswith("heap"):
776 self._print_mo(mo, addr)
880 self._print_mo(mo, sme.addr)
[all …]
H A Dmemory.py221 mo = whatis.find_provider(addr).lookup(addr)
223 if not mo.real_addr:
226 live = mo.status == 'allocated'
231 with O.table("Element {:4d}: {:<#20x} ({:<s})".format(i, mo.elem_addr, mo.zone.name)):
233 for pc in mo.meta.pgz_alloc_bt_frames:
238 for pc in mo.meta.pgz_free_bt_frames:
263 mo = provider.lookup(address)
264 provider.describe(mo)
265 mo.describe(verbose = True)
859 meta = mo
[all …]
H A Dkext.py719 print(fmt.format(mo=self, subsec=subsec, sym=sym))
/xnu-11215/tools/lldbmacros/kmemory/
H A Dwhatis.py106 def describe(self, mo): argument
117 ).format(mo))
119 mem_r = mo.object_range
125 address = mo.address
/xnu-11215/libkern/os/
H A Drefcnt.c556 struct os_refgrp *__debug_only grp, memory_order mo) in os_ref_retain_mask_inline() argument
558 os_ref_count_t old = atomic_fetch_add_explicit(rc, n, mo); in os_ref_retain_mask_inline()