Home
last modified time | relevance | path

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

/xnu-10063.141.1/osfmk/ipc/
H A Dipc_object.h150 #define IO_BITS_ACTIVE 0x80000000 /* is object alive? */ macro
174 #define io_active(io) ((io_bits(io) & IO_BITS_ACTIVE) != 0)
180 #define io_makebits(otype) (IO_BITS_ACTIVE | ((otype) << 16))
H A Dipc_pset.c214 io_bits_andnot(ips_to_object(pset), IO_BITS_ACTIVE); in ipc_pset_destroy()
H A Dipc_port.c733 io_bits_andnot(ip_to_object(port), IO_BITS_ACTIVE); in ipc_port_clear_receiver()
/xnu-10063.141.1/tools/lldbmacros/
H A Dxnudefines.py189 IO_BITS_ACTIVE = 0x80000000 variable
H A Dipc.py618 if bits & xnudefines.IO_BITS_ACTIVE == 0: