Home
last modified time | relevance | path

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

/xnu-11417.140.69/bsd/netinet/
H A Dmptcp.c1386 (mp_so->so_restrictions & SO_RESTRICT_DENY_EXPENSIVE)) { in mptcp_session_necp_cb()
1391 (mp_so->so_restrictions & SO_RESTRICT_DENY_CONSTRAINED)) { in mptcp_session_necp_cb()
1396 (mp_so->so_restrictions & SO_RESTRICT_DENY_CELLULAR)) { in mptcp_session_necp_cb()
1509 (mp_so->so_restrictions & SO_RESTRICT_DENY_EXPENSIVE)) { in mptcp_set_restrictions()
1514 (mp_so->so_restrictions & SO_RESTRICT_DENY_CONSTRAINED)) { in mptcp_set_restrictions()
1519 (mp_so->so_restrictions & SO_RESTRICT_DENY_CELLULAR)) { in mptcp_set_restrictions()
H A Din_pcb.c3327 if (so != NULL && !(so->so_restrictions & SO_RESTRICT_DENY_CELLULAR)) { in inp_clear_nocellular()
/xnu-11417.140.69/bsd/kern/
H A Duipc_socket.c1038 if ((so->so_restrictions & SO_RESTRICT_DENY_IN) != 0) { in solisten()
1685 if ((so->so_restrictions & SO_RESTRICT_DENY_OUT) != 0) { in soconnectlock()
1822 if ((so->so_restrictions & SO_RESTRICT_DENY_OUT) != 0) { in soconnectxlocked()
7917 nocell_old = (so->so_restrictions & SO_RESTRICT_DENY_CELLULAR); in so_set_restrictions()
7918 noexpensive_old = (so->so_restrictions & SO_RESTRICT_DENY_EXPENSIVE); in so_set_restrictions()
7919 noconstrained_old = (so->so_restrictions & SO_RESTRICT_DENY_CONSTRAINED); in so_set_restrictions()
7920 so->so_restrictions |= (vals & (SO_RESTRICT_DENY_IN | in so_set_restrictions()
7923 nocell_new = (so->so_restrictions & SO_RESTRICT_DENY_CELLULAR); in so_set_restrictions()
7924 noexpensive_new = (so->so_restrictions & SO_RESTRICT_DENY_EXPENSIVE); in so_set_restrictions()
7925 noconstrained_new = (so->so_restrictions & SO_RESTRICT_DENY_CONSTRAINED); in so_set_restrictions()
[all …]
H A Duipc_socket2.c2736 !(so->so_restrictions & SO_RESTRICT_DENY_CELLULAR) && in soevent()
2737 !(so->so_restrictions & SO_RESTRICT_DENY_EXPENSIVE) && in soevent()
2738 !(so->so_restrictions & SO_RESTRICT_DENY_CONSTRAINED)) { in soevent()
/xnu-11417.140.69/bsd/sys/
H A Dsocketvar.h314 uint8_t so_restrictions; member