Home
last modified time | relevance | path

Searched refs:inp_state (Results 1 – 19 of 19) sorted by relevance

/xnu-12377.41.6/bsd/netinet/
H A Din_pcblist.c394 inp->inp_state != INPCB_STATE_DEAD) { in get_pcblist_n()
406 inp->inp_state != INPCB_STATE_DEAD) { in get_pcblist_n()
515 inp->inp_state == INPCB_STATE_DEAD || in inpcb_get_if_ports_used()
782 inp->inp_state != INPCB_STATE_DEAD && in inpcb_count_opportunistic()
836 inp->inp_state != INPCB_STATE_DEAD && in inpcb_find_anypcb_byaddr()
958 inp->inp_state != INPCB_STATE_DEAD && in inp_limit_companion_link()
988 inp->inp_state != INPCB_STATE_DEAD && in inp_recover_companion_link()
H A Draw_ip.c1192 if (inp->inp_state != INPCB_STATE_DEAD) { in rip_unlock()
1269 if (inp->inp_gencnt <= gencnt && inp->inp_state != INPCB_STATE_DEAD) {
1278 if (inp->inp_gencnt <= gencnt && inp->inp_state != INPCB_STATE_DEAD) {
1377 if (inp->inp_gencnt <= gencnt && inp->inp_state != INPCB_STATE_DEAD) {
1386 if (inp->inp_gencnt <= gencnt && inp->inp_state != INPCB_STATE_DEAD) {
H A Dtcp_usrreq.c197 if (inp == 0 || (inp->inp_state == INPCB_STATE_DEAD)) { in tcp_usr_detach()
217 if (inp == NULL || inp->inp_state == INPCB_STATE_DEAD) \
227 if (inp == NULL || inp->inp_state == INPCB_STATE_DEAD) \
643 } else if (inp->inp_state == INPCB_STATE_DEAD) { in tcp_usr_connect()
802 } else if (inp->inp_state == INPCB_STATE_DEAD) { in tcp6_usr_connect()
914 if (inp == NULL || inp->inp_state == INPCB_STATE_DEAD) { in tcp_usr_accept()
944 if (inp == NULL || inp->inp_state == INPCB_STATE_DEAD) { in tcp6_usr_accept()
988 if (inp == NULL || inp->inp_state == INPCB_STATE_DEAD) { in tcp_usr_shutdown()
1166 if (inp == NULL || inp->inp_state == INPCB_STATE_DEAD || cant_connect in tcp_usr_send()
1184 if (inp == NULL || inp->inp_state == INPCB_STATE_DEAD) { in tcp_usr_send()
H A Din_pcb.c776 if (inp->inp_state != INPCB_STATE_DEAD) { in in_pcblookup_local_and_cleanup()
1290 if (inp->inp_state == INPCB_STATE_DEAD) { in in_pcbbind()
2031 inp->inp_state = INPCB_STATE_DEAD; in in_pcbdetach()
2741 if (inp->inp_state == INPCB_STATE_DEAD) { in in_pcbinshash()
2985 pcb->inp_state = INPCB_STATE_DEAD; in in_pcb_checkstate()
3052 if (pcb->inp_state == INPCB_STATE_DEAD) { in in_pcb_checkstate()
3807 if (inp->inp_state != INPCB_STATE_DEAD && in inp_findinpcb_procinfo()
3828 VERIFY(inp->inp_state != INPCB_STATE_DEAD); in inp_update_cellular_policy()
3873 VERIFY(inp->inp_state != INPCB_STATE_DEAD); in inp_update_necp_want_app_policy()
3936 so == NULL || inp->inp_state == INPCB_STATE_DEAD) { in inp_update_policy()
H A Din_pcb.h173 int inp_state; /* state (INUSE/CACHED/DEAD) */ member
614 #define in6p_state inp_state
H A Dudp_usrreq.c1301 inp->inp_state != INPCB_STATE_DEAD) {
1425 inp->inp_state != INPCB_STATE_DEAD) {
2571 inp->inp_state = INPCB_STATE_DEAD; in udp_detach()
2802 if (inp->inp_state != INPCB_STATE_DEAD) { in udp_gc()
2994 inp->inp_state == INPCB_STATE_DEAD) { in udp_fill_keepalive_offload_frames()
H A Dtcp_timer.c700 if (inp->inp_state != INPCB_STATE_DEAD) { in tcp_garbage_collect()
747 if (inp->inp_state != INPCB_STATE_DEAD) { in tcp_garbage_collect()
2300 if (tp->t_inpcb->inp_state == INPCB_STATE_DEAD) { in tcp_sched_timers()
H A Dtcp_subr.c1979 inp->inp_state != INPCB_STATE_DEAD && in tcp_close()
2063 if (inp == NULL || (inp->inp_state == INPCB_STATE_DEAD)) { in tcp_notify()
2121 inp->inp_state != INPCB_STATE_DEAD) { in get_tcp_inp_list()
2132 inp->inp_state != INPCB_STATE_DEAD) { in get_tcp_inp_list()
5010 inp->inp_state == INPCB_STATE_DEAD) { in tcp_fill_keepalive_offload_frames()
H A Din.c2012 if (inp == NULL || inp->inp_state == INPCB_STATE_DEAD) { in in_getassocids()
2038 if (inp == NULL || inp->inp_state == INPCB_STATE_DEAD) { in in_getconnids()
H A Din_tclass.c1093 if (inp->inp_state == INPCB_STATE_DEAD) { in set_tcp_stream_priority()
H A Dflow_divert.c3771 } else if (inp->inp_state == INPCB_STATE_DEAD) { in flow_divert_connect_out_internal()
4067 if (inp == NULL || inp->inp_state == INPCB_STATE_DEAD) { in flow_divert_data_out()
H A Dtcp_input.c5950 if (inp->inp_state == INPCB_STATE_DEAD) { in tcp_input()
/xnu-12377.41.6/bsd/netinet6/
H A Din6_pcb.c170 if (inp->inp_state != INPCB_STATE_DEAD) { in in6_pcblookup_local_and_cleanup()
540 if (inp->inp_state == INPCB_STATE_DEAD) { in in6_pcbbind()
939 inp->inp_state = INPCB_STATE_DEAD; in in6_pcbdetach()
H A Din6.c4258 if (in6p == NULL || in6p->inp_state == INPCB_STATE_DEAD) { in in6_getassocids()
4284 if (in6p == NULL || in6p->inp_state == INPCB_STATE_DEAD) { in in6_getconnids()
/xnu-12377.41.6/tools/lldbmacros/
H A Dnet.py1517 if (pcb.inp_state == 0 or pcb.inp_state == INPCB_STATE_INUSE):
1520 if (pcb.inp_state == INPCB_STATE_DEAD):
1523 out_string += " unknown (" + str(int(pcb.inp_state)) + ")"
/xnu-12377.41.6/bsd/kern/
H A Dsocket_flows.c1323 if (inp->inp_state != INPCB_STATE_DEAD && inp->inp_socket == so) { in soflow_validate_dgram_socket()
1339 if (inp->inp_state != INPCB_STATE_DEAD && inp->inp_socket == so) { in soflow_validate_dgram_socket()
/xnu-12377.41.6/bsd/net/
H A Dntstat.c2002 if (!(intotcpcb(inp)) || inp->inp_state == INPCB_STATE_DEAD) { in nstat_inp_bluetooth_counts()
2034 inp->inp_state == INPCB_STATE_DEAD) ? 1 : 0; in nstat_tcp_gone()
2165 if (inp->inp_state == INPCB_STATE_DEAD) { in nstat_tcp_add_watcher()
2668 inp->inp_state == INPCB_STATE_DEAD) ? 1 : 0; in nstat_udp_gone()
2765 if (inp->inp_state == INPCB_STATE_DEAD) { in nstat_udp_add_watcher()
5786 if (inp->inp_state == INPCB_STATE_DEAD) { in nstat_idle_check()
5811 if (inp->inp_state == INPCB_STATE_DEAD) { in nstat_idle_check()
7853 if (tp && inp->inp_state != INPCB_STATE_DEAD && inp->inp_last_outifp && in progress_indicators_for_interface()
H A Dcontent_filter.c1698 if (inp->inp_state != INPCB_STATE_DEAD && in cfil_socket_from_sock_id()
1720 if (inp->inp_state != INPCB_STATE_DEAD && in cfil_socket_from_sock_id()
1739 if (inp->inp_state != INPCB_STATE_DEAD && in cfil_socket_from_sock_id()
1772 if (inp->inp_state != INPCB_STATE_DEAD && in cfil_socket_from_client_uuid()
1791 if (inp->inp_state != INPCB_STATE_DEAD && in cfil_socket_from_client_uuid()
H A Dpktap.c1113 if (inp->inp_state != INPCB_STATE_DEAD && inp->inp_socket != NULL) { in pktap_fill_proc_info()