Home
last modified time | relevance | path

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

/xnu-12377.41.6/bsd/netinet/
H A Din_pcb.h867 #define INP2_BIND_IN_PROGRESS 0x00040000 /* A bind call is in progress */ macro
H A Din_pcb.c844 ASSERT((inp->inp_flags2 & INP2_BIND_IN_PROGRESS) != 0); in in_pcbbind()
4459 while ((inp->inp_flags2 & INP2_BIND_IN_PROGRESS) != 0) { in inp_enter_bind_in_progress()
4477 inp->inp_flags2 |= INP2_BIND_IN_PROGRESS; in inp_enter_bind_in_progress()
4490 inp->inp_flags2 &= ~INP2_BIND_IN_PROGRESS; in inp_exit_bind_in_progress()
H A Dtcp_input.c2568 if (__improbable(inp->inp_flags2 & INP2_BIND_IN_PROGRESS)) { in tcp_setup_server_socket()
/xnu-12377.41.6/bsd/netinet6/
H A Din6_pcb.c202 ASSERT((inp->inp_flags2 & INP2_BIND_IN_PROGRESS) != 0); in in6_pcbbind()