Home
last modified time | relevance | path

Searched refs:INP2_BIND_IN_PROGRESS (Results 1 – 4 of 4) sorted by relevance

/xnu-11417.101.15/bsd/netinet/
H A Din_pcb.h796 #define INP2_BIND_IN_PROGRESS 0x00040000 /* A bind call is in progress */ macro
H A Din_pcb.c884 ASSERT((inp->inp_flags2 & INP2_BIND_IN_PROGRESS) != 0); in in_pcbbind()
4505 while ((inp->inp_flags2 & INP2_BIND_IN_PROGRESS) != 0) { in inp_enter_bind_in_progress()
4523 inp->inp_flags2 |= INP2_BIND_IN_PROGRESS; in inp_enter_bind_in_progress()
4536 inp->inp_flags2 &= ~INP2_BIND_IN_PROGRESS; in inp_exit_bind_in_progress()
H A Dtcp_input.c3541 if (__improbable(inp->inp_flags2 & INP2_BIND_IN_PROGRESS)) { in tcp_input()
/xnu-11417.101.15/bsd/netinet6/
H A Din6_pcb.c202 ASSERT((inp->inp_flags2 & INP2_BIND_IN_PROGRESS) != 0); in in6_pcbbind()