Searched refs:ip_splabel (Results 1 – 9 of 9) sorted by relevance
| /xnu-10002.1.13/osfmk/ipc/ |
| H A D | ipc_service_port.c | 134 ipc_service_port_label_dealloc(void *ip_splabel, bool service_port) in ipc_service_port_label_dealloc() argument 136 void *sblabel = ip_splabel; in ipc_service_port_label_dealloc() 139 ipc_service_port_label_t sp_label = (ipc_service_port_label_t)ip_splabel; in ipc_service_port_label_dealloc() 197 port_label = (ipc_service_port_label_t)port->ip_splabel; in ipc_service_port_derive_sblabel() 248 void *ip_splabel = NULL; in ipc_service_port_get_sblabel() local 257 if (ip_is_kolabeled(port) || !port->ip_splabel) { in ipc_service_port_get_sblabel() 261 ip_splabel = port->ip_splabel; in ipc_service_port_get_sblabel() 264 sblabel = ip_splabel; in ipc_service_port_get_sblabel() 267 ipc_service_port_label_t sp_label = (ipc_service_port_label_t)ip_splabel; in ipc_service_port_get_sblabel()
|
| H A D | ipc_service_port.h | 108 ipc_service_port_label_dealloc(void * ip_splabel, bool service_port);
|
| H A D | ipc_port.c | 1108 assert(port->ip_splabel != NULL); in ipc_port_destroy() 1109 if (ipc_service_port_label_is_special_pdrequest((ipc_service_port_label_t)port->ip_splabel)) { in ipc_port_destroy() 1110 ipc_service_port_label_set_flag(port->ip_splabel, ISPL_FLAGS_SEND_PD_NOTIFICATION); in ipc_port_destroy() 1126 splabel = port->ip_splabel; in ipc_port_destroy() 1127 port->ip_splabel = NULL; in ipc_port_destroy() 3300 if (port->ip_service_port && port->ip_splabel != NULL) { in kdp_mqueue_send_find_owner() 3301 *isplp = (struct ipc_service_port_label *)port->ip_splabel; in kdp_mqueue_send_find_owner() 3363 if (port->ip_splabel != NULL) { in kdp_mqueue_recv_find_owner() 3364 *isplp = (struct ipc_service_port_label *)port->ip_splabel; in kdp_mqueue_recv_find_owner()
|
| H A D | mach_port.c | 1955 assert(port->ip_splabel != NULL); in mach_port_get_attributes() 1956 *is_throttled = ipc_service_port_label_is_throttled((ipc_service_port_label_t)port->ip_splabel); in mach_port_get_attributes() 2159 assert(port->ip_splabel != NULL); in mach_port_set_attributes() 2161 ipc_service_port_label_set_flag(port->ip_splabel, ISPL_FLAGS_THROTTLED); in mach_port_set_attributes() 2163 ipc_service_port_label_clear_flag(port->ip_splabel, ISPL_FLAGS_THROTTLED); in mach_port_set_attributes() 2744 port->ip_splabel = port_splabel; in mach_port_construct() 3214 assert(port->ip_splabel != NULL); in mach_port_get_service_port_info() 3215 ipc_service_port_label_get_info((ipc_service_port_label_t)port->ip_splabel, sp_info); in mach_port_get_service_port_info()
|
| H A D | ipc_port.h | 208 void * XNU_PTRAUTH_SIGNED_PTR("ipc_port.ip_splabel") ip_splabel; 373 (!ip_is_kolabeled(port) && (!(port)->ip_service_port) && ((port)->ip_splabel != NULL))
|
| H A D | ipc_right.c | 2263 if (port->ip_service_port && port->ip_splabel && in ipc_right_copyin() 2264 !ipc_service_port_label_is_bootstrap_port((ipc_service_port_label_t)port->ip_splabel)) { in ipc_right_copyin() 3055 assert(port->ip_splabel != NULL); in ipc_right_copyout() 3068 if (!ipc_service_port_label_is_pd_notification((ipc_service_port_label_t)port->ip_splabel)) { in ipc_right_copyout() 3072 ipc_service_port_label_clear_flag(port->ip_splabel, ISPL_FLAGS_SEND_PD_NOTIFICATION); in ipc_right_copyout() 3078 ipc_service_port_label_get_attr(port->ip_splabel, &sp_name, &sp_context); in ipc_right_copyout()
|
| H A D | ipc_kmsg.c | 4233 if (ip_active(dport) && (dport->ip_service_port) && (dport->ip_splabel)) { in ipc_kmsg_copyin_header() 4234 ipc_service_port_label_get_info((ipc_service_port_label_t)dport->ip_splabel, &sp_info_filled); in ipc_kmsg_copyin_header() 5164 ipc_service_port_label_t label = remote_port->ip_splabel; in ipc_kmsg_copyin_from_user() 5182 sblabel = remote_port->ip_splabel; in ipc_kmsg_copyin_from_user()
|
| /xnu-10002.1.13/osfmk/kern/ |
| H A D | turnstile.c | 3345 if (port && ip_active(port) && port->ip_service_port && port->ip_splabel != NULL) { in kdp_turnstile_traverse_inheritor_chain() 3347 *isplp = (struct ipc_service_port_label *)port->ip_splabel; in kdp_turnstile_traverse_inheritor_chain() 3352 if (port && ip_active(port) && port->ip_service_port && port->ip_splabel != NULL) { in kdp_turnstile_traverse_inheritor_chain() 3354 *isplp = (struct ipc_service_port_label *)port->ip_splabel; in kdp_turnstile_traverse_inheritor_chain()
|
| /xnu-10002.1.13/tools/lldbmacros/ |
| H A D | ipc.py | 131 splabel = Cast(port.ip_splabel, 'struct ipc_service_port_label *')
|