Home
last modified time | relevance | path

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

/xnu-12377.41.6/osfmk/mach/
H A Dstd_types.defs124 ctype: mach_port_t;
126 ctype: mach_port_t;
128 ctype: mach_port_t;
130 ctype: mach_port_t;
132 ctype: mach_port_t;
134 ctype: mach_port_t;
137 ctype: mach_port_t;
139 ctype: mach_port_t;
141 ctype: mach_port_t;
144 ctype: mach_port_t;
H A Dvm32_map.defs93 ctype: mach_port_t);
252 ctype: mach_port_t);
H A Dmach_types.defs398 ctype: mach_port_t
629 ctype: mach_port_t
637 ctype: mach_port_t
715 ctype: kmod_args_t;
H A Dvm_map.defs117 ctype: mach_port_t);
437 ctype: mach_port_t);
H A Dmach_vm.defs454 ctype: mach_port_t);
/xnu-12377.41.6/tools/lldbmacros/
H A Dstructanalyze.py56 ctype = "unknown type"
63 ctype = "union"
67 ctype = "struct"
69 ctype = "class"
84 outstr += O.format(" ({VT.DarkMagenta}anonymous {0}{VT.Default})", ctype)
86 outstr += O.format(" ({VT.DarkMagenta}{0} {1}{VT.Default})", ctype, symbol.GetName())
H A Dpmap.py417 ctype = entry & 0x38
418 if ctype == 0x30:
420 elif ctype == 0x28:
422 elif ctype == 0x20:
424 elif ctype == 0x8:
/xnu-12377.41.6/osfmk/UserNotification/
H A DUNDTypes.defs50 ctype : xmlData_t;
60 ctype: mach_port_t
/xnu-12377.41.6/osfmk/x86_64/
H A Dcopyio.c398 int ctype; in copyio_phys() local
403 ctype = COPYINPHYS; in copyio_phys()
407 ctype = COPYOUTPHYS; in copyio_phys()
410 return copyio(ctype, vaddr, paddr, csize, NULL, which & cppvKmap); in copyio_phys()
/xnu-12377.41.6/osfmk/mach/machine/
H A Dmachine_types.defs47 #define VM_ADD_CTYPE(type) ctype: type
48 #define VM_TYPE_SAFE_UNSAFE(_safe_type, _unsafe_type) ctype: _unsafe_type
51 #define VM_TYPE_SAFE_UNSAFE(_safe_type, _unsafe_type) ctype: _safe_type
/xnu-12377.41.6/osfmk/kern/
H A Dcoalition.c2319 const struct coalition_type *ctype; in coalitions_init() local
2327 for (i = 0, ctype = &s_coalition_types[0]; i < COALITION_NUM_TYPES; ctype++, i++) { in coalitions_init()
2329 if (ctype->type != i || in coalitions_init()
2330 !ctype->init || in coalitions_init()
2331 !ctype->dealloc || in coalitions_init()
2332 !ctype->adopt_task || in coalitions_init()
2333 !ctype->remove_task) { in coalitions_init()
2335 __func__, coal_type_str(ctype->type), ctype->type, coal_type_str(i), i); in coalitions_init()
2337 if (!ctype->has_default) { in coalitions_init()
2340 …kr = coalition_create_internal(ctype->type, COALITION_ROLE_SYSTEM, TRUE, FALSE, &init_coalition[ct… in coalitions_init()
[all …]
/xnu-12377.41.6/osfmk/device/
H A Ddevice_types.defs87 ctype: mach_port_t
96 ctype: mach_port_t
H A Ddevice.defs89 ctype: mach_port_t;
125 ctype: mach_port_t
134 ctype: mach_port_t
143 ctype: mach_port_t
/xnu-12377.41.6/bsd/kern/
H A Dtty.c729 int ctype; in ttyinput() local
753 ctype = ISALPHA(c); in ttyinput()
764 (!ISSET(lflag, ALTWERASE) || ISALPHA(c) == ctype)); in ttyinput()