Home
last modified time | relevance | path

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

/xnu-8020.121.3/osfmk/ipc/
H A Dipc_object.h177 #define io_makebits(active, otype, kotype) \ argument
178 (((active) ? IO_BITS_ACTIVE : 0) | ((otype) << 16) | (kotype))
189 #define io_alloc(otype, flags) \ argument
190 zalloc_flags(ipc_object_zones[otype], flags)
292 ipc_object_type_t otype,
301 ipc_object_type_t otype,
H A Dipc_object.c141 ipc_object_free(unsigned int otype, ipc_object_t object, bool last_ref) in ipc_object_free() argument
144 if (otype == IOT_PORT) { in ipc_object_free()
150 zfree(ipc_object_zones[otype], object); in ipc_object_free()
473 ipc_object_type_t otype, in ipc_object_alloc() argument
483 assert(otype < IOT_NUMBER); in ipc_object_alloc()
488 object = io_alloc(otype, Z_WAITOK | Z_ZERO | Z_NOFAIL); in ipc_object_alloc()
489 os_atomic_init(&object->io_bits, io_makebits(TRUE, otype, 0)); in ipc_object_alloc()
495 ipc_object_free(otype, object, false); in ipc_object_alloc()
528 ipc_object_type_t otype,
539 assert(otype < IOT_NUMBER);
[all …]
/xnu-8020.121.3/tools/lldbmacros/
H A Dipc.py1584 otype = (obj.io_bits & 0x7fff0000) >> 16
1585 if otype == 0: # IOT_PORT
1588 elif otype == 1: # IOT_PSET
/xnu-8020.121.3/bsd/vfs/
H A Dvfs_fsevents.c1036 int otype; in release_event_ref() local
1038 otype = kfse->type; in release_event_ref()
1043 if (otype == FSE_RENAME) { in release_event_ref()