Home
last modified time | relevance | path

Searched refs:so_restrictions (Results 1 – 5 of 5) sorted by relevance

/xnu-8020.140.41/bsd/netinet/
H A Dmptcp.c1505 (mp_so->so_restrictions & SO_RESTRICT_DENY_EXPENSIVE)) { in mptcp_session_necp_cb()
1510 (mp_so->so_restrictions & SO_RESTRICT_DENY_CONSTRAINED)) { in mptcp_session_necp_cb()
1515 (mp_so->so_restrictions & SO_RESTRICT_DENY_CELLULAR)) { in mptcp_session_necp_cb()
1629 (mp_so->so_restrictions & SO_RESTRICT_DENY_EXPENSIVE)) { in mptcp_set_restrictions()
1634 (mp_so->so_restrictions & SO_RESTRICT_DENY_CONSTRAINED)) { in mptcp_set_restrictions()
1639 (mp_so->so_restrictions & SO_RESTRICT_DENY_CELLULAR)) { in mptcp_set_restrictions()
H A Din_pcb.c3118 if (so != NULL && !(so->so_restrictions & SO_RESTRICT_DENY_CELLULAR)) { in inp_clear_nocellular()
/xnu-8020.140.41/bsd/kern/
H A Duipc_socket.c1029 if ((so->so_restrictions & SO_RESTRICT_DENY_IN) != 0) { in solisten()
1680 if ((so->so_restrictions & SO_RESTRICT_DENY_OUT) != 0) { in soconnectlock()
1800 if ((so->so_restrictions & SO_RESTRICT_DENY_OUT) != 0) { in soconnectxlocked()
7903 nocell_old = (so->so_restrictions & SO_RESTRICT_DENY_CELLULAR); in so_set_restrictions()
7904 noexpensive_old = (so->so_restrictions & SO_RESTRICT_DENY_EXPENSIVE); in so_set_restrictions()
7905 noconstrained_old = (so->so_restrictions & SO_RESTRICT_DENY_CONSTRAINED); in so_set_restrictions()
7906 so->so_restrictions |= (vals & (SO_RESTRICT_DENY_IN | in so_set_restrictions()
7909 nocell_new = (so->so_restrictions & SO_RESTRICT_DENY_CELLULAR); in so_set_restrictions()
7910 noexpensive_new = (so->so_restrictions & SO_RESTRICT_DENY_EXPENSIVE); in so_set_restrictions()
7911 noconstrained_new = (so->so_restrictions & SO_RESTRICT_DENY_CONSTRAINED); in so_set_restrictions()
[all …]
H A Duipc_socket2.c2625 !(so->so_restrictions & SO_RESTRICT_DENY_CELLULAR) && in soevent()
2626 !(so->so_restrictions & SO_RESTRICT_DENY_EXPENSIVE) && in soevent()
2627 !(so->so_restrictions & SO_RESTRICT_DENY_CONSTRAINED)) { in soevent()
/xnu-8020.140.41/bsd/sys/
H A Dsocketvar.h266 uint8_t so_restrictions; member