| /xnu-8020.140.41/bsd/net/ |
| H A D | raw_usrreq.c | 177 mutex_held = so->so_proto->pr_domain->dom_mtx; in raw_uabort() 230 mutex_held = so->so_proto->pr_domain->dom_mtx; in raw_udetach() 289 mutex_held = so->so_proto->pr_domain->dom_mtx; in raw_usend() 345 mutex_held = so->so_proto->pr_domain->dom_mtx; in raw_ushutdown()
|
| H A D | content_filter.c | 580 (so == NULL || so->so_proto == NULL || so->so_proto->pr_domain == NULL || \ 581 …(so->so_proto->pr_domain->dom_family != PF_INET && so->so_proto->pr_domain->dom_family != PF_INET6… 1523 mutex_held = so->so_proto->pr_domain->dom_mtx; in cfil_acquire_sockbuf() 2208 sock_info->cfs_sock_family = sock->so_proto->pr_domain->dom_family; in cfil_ctl_getopt() 3139 if (so->so_proto == NULL || so->so_proto->pr_domain == NULL) { in cfil_dispatch_attach_event() 3183 msg_attached.cfs_sock_family = so->so_proto->pr_domain->dom_family; in cfil_dispatch_attach_event() 5277 mutex_held = so->so_proto->pr_domain->dom_mtx; in cfil_sock_close_wait() 5575 stat.cfs_sock_family = so->so_proto->pr_domain->dom_family; in sysctl_cfil_sock_list() 6104 mutex_held = so->so_proto->pr_domain->dom_mtx; in cfil_filters_udp_attached()
|
| /xnu-8020.140.41/bsd/netinet6/ |
| H A D | ip6protosw.h | 157 struct domain *pr_domain; /* domain protocol a member of */ member
|
| H A D | in6_proto.c | 359 _CASSERT(offsetof(struct ip6protosw, pr_domain) == in in6_dinit() 360 offsetof(struct protosw, pr_domain)); in in6_dinit()
|
| H A D | ip6_input.c | 402 VERIFY(pr->pr_domain == dp); in ip6_init()
|
| /xnu-8020.140.41/bsd/kern/ |
| H A D | socket_info.c | 82 if (so->so_proto->pr_domain) { in fill_common_sockinfo() 115 so->so_proto->pr_domain == NULL) { in fill_socketinfo()
|
| H A D | uipc_domain.c | 157 VERIFY(pp->pr_domain == NULL); in attach_proto() 162 pp->pr_domain = dp; in attach_proto() 174 VERIFY(pp->pr_domain == dp); in detach_proto() 179 pp->pr_domain = NULL; in detach_proto() 391 if (pp->pr_domain != NULL) { in net_add_proto()
|
| H A D | kpi_socket.c | 106 mutex_held = sock->so_proto->pr_domain->dom_mtx; in sock_accept_common() 308 mutex_held = sock->so_proto->pr_domain->dom_mtx; in sock_connect() 378 mutex_held = sock->so_proto->pr_domain->dom_mtx; in sock_connectwait() 604 if (sock->so_proto == NULL || sock->so_proto->pr_domain == NULL || in sock_settclassopt() 683 if (sock->so_proto == NULL || sock->so_proto->pr_domain == NULL) { in sock_gettclassopt()
|
| H A D | uipc_socket.c | 787 atomic_add_32(&prp->pr_domain->dom_refs, 1); in socreate_internal() 1239 mutex_held = so->so_proto->pr_domain->dom_mtx; in soclose_wait_locked() 1431 mutex_held = so->so_proto->pr_domain->dom_mtx; in soclose_locked() 1479 atomic_add_32(&so->so_proto->pr_domain->dom_refs, -1); in soclose_locked() 1525 mutex_held = so->so_proto->pr_domain->dom_mtx; in soabort() 3177 if (pr->pr_domain->dom_externalize != NULL) { in soreceive_ctl() 3226 if (pr->pr_domain->dom_externalize != NULL && in soreceive_ctl() 3237 error = (*pr->pr_domain->dom_externalize)(cm); in soreceive_ctl() 4796 mutex_held = so->so_proto->pr_domain->dom_mtx; in sorflush() 4874 if ((pr->pr_flags & PR_RIGHTS) && pr->pr_domain->dom_dispose) { in sorflush() [all …]
|
| H A D | uipc_socket2.c | 333 mutex_held = head->so_proto->pr_domain->dom_mtx; in sonewconn_internal() 449 atomic_add_32(&so->so_proto->pr_domain->dom_refs, 1); in sonewconn_internal() 567 mutex_held = so->so_proto->pr_domain->dom_mtx; in sbwait() 1023 mutex_held = sb->sb_so->so_proto->pr_domain->dom_mtx; in sbcheck() 2482 mutex_held = so->so_proto->pr_domain->dom_mtx; in sblock() 2580 mutex_held = so->so_proto->pr_domain->dom_mtx; in sbunlock()
|
| H A D | uipc_usrreq.c | 2393 if (so->so_proto->pr_domain != localdomain || in unp_gc() 2694 return so->so_proto->pr_domain->dom_mtx; in unp_getlock()
|
| H A D | uipc_syscalls.c | 454 mutex_held = head->so_proto->pr_domain->dom_mtx; in accept_nocancel() 973 mutex_held = so->so_proto->pr_domain->dom_mtx; in connectit() 1047 mutex_held = so->so_proto->pr_domain->dom_mtx; in connectitx()
|
| H A D | vsock_domain.c | 1134 mutex_held = so->so_proto->pr_domain->dom_mtx; in vsock_connect()
|
| H A D | kern_control.c | 2112 return so->so_proto->pr_domain->dom_mtx;
|
| /xnu-8020.140.41/bsd/sys/ |
| H A D | protosw.h | 171 struct domain *pr_domain; /* domain protocol a member of */ member 255 struct domain *pr_domain; /* domain protocol a member of */ member
|
| H A D | socketvar.h | 680 #define SOCK_DOM(so) ((so)->so_proto->pr_domain->dom_family) 964 …oto != NULL && so->so_proto->pr_domain != NULL && (so->so_proto->pr_domain->dom_family == AF_INET …
|
| /xnu-8020.140.41/bsd/netinet/ |
| H A D | raw_ip.c | 1142 lck_mtx_unlock(so->so_proto->pr_domain->dom_mtx); in rip_unlock() 1158 lck_mtx_unlock(so->so_proto->pr_domain->dom_mtx); in rip_unlock()
|
| H A D | ip_input.c | 517 VERIFY(pr->pr_domain == dp); in ip_init()
|
| H A D | flow_divert.c | 2654 if (fd_cb->so->so_proto->pr_domain->dom_family == AF_INET6) { in flow_divert_handle_data()
|
| H A D | tcp_subr.c | 3323 return so->so_proto->pr_domain->dom_mtx; in tcp_getlock()
|
| /xnu-8020.140.41/tools/lldbmacros/ |
| H A D | net.py | 571 domain = so.so_proto.pr_domain 602 domain = so.so_proto.pr_domain
|