| /xnu-8020.140.41/bsd/net/ |
| H A D | if_ports_used.c | 771 npi.npi_effective_pid = so->e_pid; in if_ports_used_add_inpcb() 772 if (so->e_pid != 0) { in if_ports_used_add_inpcb() 773 proc_name(so->e_pid, npi.npi_effective_pname, in if_ports_used_add_inpcb()
|
| H A D | content_filter.c | 612 #define SOCKET_PID(so) ((so->so_flags & SOF_DELEGATED) ? so->e_pid : so->last_pid) 2237 sock_info->cfs_e_pid = sock->e_pid; in cfil_ctl_getopt() 3022 data.effective_pid = so->e_pid; in cfil_dispatch_data_event_sign() 3077 data.effective_pid = so->e_pid; in cfil_dispatch_closed_event_sign() 3189 msg_attached.cfs_e_pid = so->e_pid; in cfil_dispatch_attach_event() 5566 stat.cfs_e_pid = so->e_pid; in sysctl_cfil_sock_list()
|
| H A D | ntstat.c | 146 (so && (nstat_debug_pid == (so->so_flags & SOF_DELEGATED ? so->e_pid : so->last_pid))) 153 …printf("NSTAT_DEBUG_SOCKET <pid %d>: " fmt "\n", (so->so_flags & SOF_DELEGATED ? so->e_pid : so->l… 1262 so->so_flags & SOF_DELEGATED ? so->e_pid : so->last_pid, in nstat_inp_domain_info() 1764 desc->epid = so->e_pid; in nstat_tcp_copy_descriptor() 2136 desc->epid = so->e_pid; in nstat_udp_copy_descriptor()
|
| H A D | necp.c | 8555 ((so->so_flags & SOF_DELEGATED) ? so->e_pid : so->last_pid); in necp_socket_fillout_info_locked() 9373 necp_send_network_denied_event(((so->so_flags & SOF_DELEGATED) ? so->e_pid : so->last_pid), in necp_socket_find_policy_match() 11228 necp_send_network_denied_event(((so->so_flags & SOF_DELEGATED) ? so->e_pid : so->last_pid), in necp_socket_is_allowed_to_send_recv_internal()
|
| H A D | necp_client.c | 222 ((so->so_flags & SOF_DELEGATED) ? so->e_pid : so->last_pid)
|
| /xnu-8020.140.41/bsd/kern/ |
| H A D | socket_flows.c | 131 #define SOFLOW_SOCKET_PID(so) ((so->so_flags & SOF_DELEGATED) ? so->e_pid : so->last_pid) 979 desc->epid = so->e_pid; in soflow_nstat_provider_request_vals() 1092 so->so_flags & SOF_DELEGATED ? so->e_pid : so->last_pid, in soflow_nstat_provider_request_extensions()
|
| H A D | uipc_socket.c | 712 so->e_pid = proc_pid(ep); in socreate_internal() 716 if (ep->p_responsible_pid != so->e_pid) { in socreate_internal() 4997 ep = proc_find(so->e_pid); in soopt_cred_check() 8005 so->e_pid = 0; in so_set_effective_pid() 8010 so->e_pid = proc_pid(ep); in so_set_effective_pid() 8014 if (ep->p_responsible_pid != so->e_pid) { in so_set_effective_pid() 8039 so->e_pid, proc_name_address(ep), buf, in so_set_effective_pid() 8122 so->e_pid = 0; in so_set_effective_uuid() 8132 so->e_pid = so->last_pid; in so_set_effective_uuid() 8148 SOCK_TYPE(so), so->e_pid, buf, in so_set_effective_uuid()
|
| H A D | uipc_socket2.c | 385 so->e_pid = head->e_pid; in sonewconn_internal() 2659 ev_ifdenied.ev_data.epid = so->e_pid; in soevent_ifdenied()
|
| H A D | uipc_usrreq.c | 803 peerpid = peerso->e_pid; in uipc_ctloutput()
|
| /xnu-8020.140.41/bsd/netinet/ |
| H A D | raw_ip.c | 627 m->m_pkthdr.tx_rawip_e_pid = so->e_pid; in rip_output() 629 m->m_pkthdr.tx_rawip_e_pid = so->e_pid; in rip_output()
|
| H A D | in_pcb.c | 1388 apnfallbk_data.epid = so->e_pid; in apn_fallback_trigger() 1930 so->e_pid, in in_pcbdetach() 3495 soprocinfo->spi_epid = so->e_pid; in inp_get_soprocinfo() 3558 epid = so->e_pid; in inp_update_cellular_policy() 3603 epid = so->e_pid; in inp_update_necp_want_app_policy()
|
| H A D | in_pcblist.c | 140 xso->so_e_pid = so->e_pid; in sotoxsocket_n()
|
| H A D | flow_divert.c | 1084 if (proc_getpid(real_proc) != so->e_pid) { in flow_divert_add_all_proc_info() 1085 effective_proc = proc_find(so->e_pid); in flow_divert_add_all_proc_info()
|
| H A D | tcp_output.c | 2636 m->m_pkthdr.tx_tcp_e_pid = so->e_pid; in tcp_output()
|
| H A D | udp_usrreq.c | 1964 m->m_pkthdr.tx_udp_e_pid = so->e_pid; in udp_output()
|
| H A D | tcp_subr.c | 937 m->m_pkthdr.tx_tcp_e_pid = tp->t_inpcb->inp_socket->e_pid; in tcp_respond()
|
| /xnu-8020.140.41/bsd/sys/ |
| H A D | mbuf.h | 252 pid_t e_pid; member 261 #define tx_tcp_e_pid proto_mtag.__pr_u.tcp.tm_tcp.__offload.__tx.e_pid
|
| H A D | socketvar.h | 295 pid_t e_pid; /* pid of the effective owner */ member
|
| /xnu-8020.140.41/bsd/netinet6/ |
| H A D | udp6_output.c | 542 m->m_pkthdr.tx_udp_e_pid = so->e_pid; in udp6_output()
|
| H A D | raw_ip6.c | 790 m->m_pkthdr.tx_rawip_e_pid = so->e_pid; in rip6_output()
|
| /xnu-8020.140.41/bsd/vm/ |
| H A D | vm_unix.c | 1835 ((so->so_flags & SOF_DELEGATED) && so->e_pid == pid)) { in networking_defunct_callout()
|