| /xnu-11215/bsd/netinet/ |
| H A D | tcp_log.h | 95 extern void tcp_log_th_flags(void *hdr, struct tcphdr *th, struct tcpcb *tp, bool outgoing, struct … 98 extern void tcp_log_drop_pcb(void *hdr, struct tcphdr *th, struct tcpcb *tp, bool outgoing, const c… 182 #define TCP_LOG_CONNECT(tp, outgoing, error) if (tcp_is_log_enabled(tp, TLEF_CONNECTION)) \ argument 183 …tcp_log_connection((tp), __unsafe_forge_null_terminated(const char *, ((outgoing) ? "connect outgo… 197 #define TCP_LOG_DROP_NECP(hdr, th, tp, outgoing) if (tcp_is_log_enabled(tp, TLEF_DROP_NECP)) \ argument 198 tcp_log_drop_pcb((hdr), (th), (tp), (outgoing), "NECP") 200 #define TCP_LOG_DROP_PCB(hdr, th, tp, outgoing, reason) if (tcp_is_log_enabled(tp, TLEF_DROP_PCB)) \ argument 201 tcp_log_drop_pcb((hdr), (th), (tp), (outgoing), reason) 203 #define TCP_LOG_TH_FLAGS(hdr, th, tp, outgoing, ifp) \ argument 205 tcp_log_th_flags((hdr), (th), (tp), (outgoing), (ifp))
|
| H A D | tcp_log.c | 682 tcp_log_pkt_addresses(void *hdr, struct tcphdr *th, bool outgoing, in tcp_log_pkt_addresses() argument 717 } else if (outgoing) { in tcp_log_pkt_addresses() 737 } else if (outgoing) { in tcp_log_pkt_addresses() 789 if (outgoing) { in tcp_log_drop_pcb() 836 outgoing ? "outgoing" : "incoming", \ 843 should_log_th_flags(uint8_t thflags, struct tcpcb *tp, bool outgoing, struct ifnet *ifp) in should_log_th_flags() argument 861 ((outgoing && tp->t_syn_sent > 3) || (!outgoing && tp->t_syn_rcvd > 3)))) { in should_log_th_flags() 893 if (should_log_th_flags(thflags, tp, outgoing, ifp) == false) { in tcp_log_th_flags() 897 if (outgoing) { in tcp_log_th_flags() 955 bool outgoing = false; /* This is only for incoming packets */ in tcp_log_drop_pkt() local [all …]
|
| /xnu-11215/bsd/net/ |
| H A D | content_filter.c | 3585 if (outgoing) { in cfil_dispatch_disconnect_event() 3655 if (outgoing) { in cfil_dispatch_disconnect_event() 3908 if (outgoing) { in cfil_dispatch_data_event() 4089 if (outgoing) { in cfil_data_service_ctl_q() 4335 if (outgoing) { in cfil_data_filter() 5783 int outgoing; in cfil_sock_buf_update() local 5806 outgoing = 1; in cfil_sock_buf_update() 5812 outgoing = 0; in cfil_sock_buf_update() 6867 int outgoing; in cfil_sock_udp_buf_update_per_flow() local 6880 outgoing = 1; in cfil_sock_udp_buf_update_per_flow() [all …]
|
| H A D | iptap.c | 108 void iptap_bpf_tap(struct mbuf *m, u_int32_t proto, int outgoing); 562 iptap_bpf_tap(struct mbuf *m, u_int32_t proto, int outgoing) in iptap_bpf_tap() argument 566 outgoing ? bpf_tap_out : bpf_tap_in; in iptap_bpf_tap() 599 struct ifnet *ifp = outgoing ? NULL : m->m_pkthdr.rcvif; in iptap_bpf_tap() 613 hdr->pth_flags = outgoing ? PTH_FLAG_DIR_OUT : PTH_FLAG_DIR_IN; in iptap_bpf_tap() 620 pktap_fill_proc_info(hdr, proto, m, 0, outgoing, ifp); in iptap_bpf_tap()
|
| H A D | pktap.c | 920 struct mbuf *m, u_int32_t pre, int outgoing, struct ifnet *ifp) in pktap_fill_proc_info() argument 927 if (outgoing != 0 && m->m_pkthdr.pkt_flowsrc == FLOWSRC_INPCB) { in pktap_fill_proc_info() 970 } else if (outgoing == 0) { in pktap_fill_proc_info() 1030 laddr, lport, wildcard, outgoing ? NULL : ifp); in pktap_fill_proc_info() 1096 laddr, lport, ip6_input_getsrcifscope(m), wildcard, outgoing ? NULL : ifp); in pktap_fill_proc_info() 1133 u_int32_t pre, u_int32_t post, int outgoing) in pktap_bpf_tap() argument 1137 outgoing ? bpf_tap_out : bpf_tap_in; in pktap_bpf_tap() 1286 hdr->pth_flags |= outgoing ? PTH_FLAG_DIR_OUT : PTH_FLAG_DIR_IN; in pktap_bpf_tap() 1302 if (outgoing != 0) { in pktap_bpf_tap() 1306 pktap_fill_proc_info(hdr, proto, m, pre, outgoing, ifp); in pktap_bpf_tap()
|
| H A D | remote_vif.c | 508 rvi_bpf_tap(ifnet_t ifp, mbuf_t m, int outgoing, struct rvi_client_t *client, in rvi_bpf_tap() argument 514 outgoing ? bpf_tap_out : bpf_tap_in; in rvi_bpf_tap()
|
| /xnu-11215/tools/trace/ |
| H A D | parse_ipc_trace.py | 50 self.outgoing = {} 60 self.outgoing[edge.ename()] = [edge, time] 140 len(self.outgoing), self.msg_stat['o.num'], oactive, oavg, opeak, \ 546 if e and enm in src.outgoing.keys():
|
| /xnu-11215/bsd/vfs/ |
| H A D | vfs_subr.c | 1572 mount_t outgoing = NULL; in vfs_switch_root() local 1734 outgoing = rootvnode->v_mount; in vfs_switch_root() 1782 lck_rw_lock_exclusive(&outgoing->mnt_rwlock); in vfs_switch_root() 1783 outgoing->mnt_vnodecovered = outgoing_vol_new_covered_vp; in vfs_switch_root() 1786 outgoing->mnt_flag &= ~MNT_ROOTFS; in vfs_switch_root() 1788 outgoing_vol_new_covered_vp->v_mountedhere = outgoing; in vfs_switch_root() 1790 lck_rw_done(&outgoing->mnt_rwlock); in vfs_switch_root() 1792 if (!(outgoing->mnt_kern_flag & MNTK_VIRTUALDEV) && in vfs_switch_root() 1793 (TAILQ_FIRST(&mountlist) == outgoing)) { in vfs_switch_root() 1794 vfs_setmntsystem(outgoing); in vfs_switch_root() [all …]
|
| H A D | vfs_syscalls.c | 4483 char *outgoing = NULL; in pivot_root() local 4529 outgoing = old_rootfs_path_after_buf; in pivot_root() 4531 outgoing = &old_rootfs_path_after[0]; in pivot_root() 4547 error = vfs_switch_root(incoming, outgoing, VFSSR_VIRTUALDEV_PROHIBITED); in pivot_root()
|
| /xnu-11215/bsd/skywalk/nexus/flowswitch/ |
| H A D | fsw_dp.c | 309 #define dp_drop_pktq(fsw, pktq, outgoing, _reason, line, _flags) do { \ argument 323 dropfunc = (outgoing) ? droptap_output_packet : droptap_input_packet; \ 335 #define dp_drop_pkt_single(fsw, pkt, outgoing, _reason, _flags) do { \ argument 343 dropfunc = (outgoing) ? droptap_output_packet : droptap_input_packet; \ 349 #define dp_drop_pkt_chain(pkt, outgoing, _reason, _flags) do { \ argument 355 dropfunc = (outgoing) ? droptap_output_packet : droptap_input_packet; \
|
| /xnu-11215/bsd/kern/ |
| H A D | socket_flows.c | 1119 soflow_update_flow_stats(struct soflow_hash_entry *hash_entry, size_t data_size, bool outgoing) in soflow_update_flow_stats() argument 1124 if (outgoing) { in soflow_update_flow_stats()
|
| /xnu-11215/doc/scheduler/ |
| H A D | sched_clutch_edge.md | 198 …cluster for enqueing the thread. Otherwise, the scheduler evaluates the outgoing edges from the pr…
|