Home
last modified time | relevance | path

Searched refs:next_unlock_lr (Results 1 – 11 of 11) sorted by relevance

/xnu-8020.140.41/bsd/netinet/
H A Draw_ip.c1156 so->unlock_lr[so->next_unlock_lr] = lr_saved; in rip_unlock()
1157 so->next_unlock_lr = (so->next_unlock_lr + 1) % SO_LCKDBG_MAX; in rip_unlock()
H A Dudp_usrreq.c2576 so->unlock_lr[so->next_unlock_lr] = lr_saved; in udp_unlock()
2577 so->next_unlock_lr = (so->next_unlock_lr + 1) % SO_LCKDBG_MAX; in udp_unlock()
H A Dtcp_subr.c3282 so->unlock_lr[so->next_unlock_lr] = lr_saved; in tcp_unlock()
3283 so->next_unlock_lr = (so->next_unlock_lr + 1) % SO_LCKDBG_MAX; in tcp_unlock()
H A Dmptcp_subr.c5115 mp_so->unlock_lr[mp_so->next_unlock_lr] = lr_saved; in mptcp_unlock()
5116 mp_so->next_unlock_lr = (mp_so->next_unlock_lr + 1) % SO_LCKDBG_MAX; in mptcp_unlock()
/xnu-8020.140.41/bsd/net/
H A Dif_bridge.c549 int next_unlock_lr; member
1169 sc->unlock_lr[sc->next_unlock_lr] = lr_saved; in bridge_unlock()
1170 sc->next_unlock_lr = (sc->next_unlock_lr + 1) % SO_LCKDBG_MAX; in bridge_unlock()
1189 sc->unlock_lr[sc->next_unlock_lr] = lr_saved; in bridge_lock2ref()
1190 sc->next_unlock_lr = (sc->next_unlock_lr + 1) % SO_LCKDBG_MAX; in bridge_lock2ref()
1210 sc->unlock_lr[sc->next_unlock_lr] = lr_saved; in bridge_unref()
1211 sc->next_unlock_lr = (sc->next_unlock_lr + 1) % SO_LCKDBG_MAX; in bridge_unref()
1229 sc->unlock_lr[sc->next_unlock_lr] = lr_saved; in bridge_xlock()
1230 sc->next_unlock_lr = (sc->next_unlock_lr + 1) % SO_LCKDBG_MAX; in bridge_xlock()
/xnu-8020.140.41/bsd/kern/
H A Duipc_socket2.c398 so->next_unlock_lr = 0; in sonewconn_internal()
2587 so->unlock_lr[so->next_unlock_lr] = lr_saved; in sbunlock()
2588 so->next_unlock_lr = (so->next_unlock_lr + 1) % SO_LCKDBG_MAX; in sbunlock()
H A Duipc_usrreq.c2659 so->unlock_lr[so->next_unlock_lr] = lr_saved; in unp_unlock()
2660 so->next_unlock_lr = (so->next_unlock_lr + 1) % SO_LCKDBG_MAX; in unp_unlock()
H A Dkern_control.c2086 so->unlock_lr[so->next_unlock_lr] = lr_saved; in ctl_unlock()
2087 so->next_unlock_lr = (so->next_unlock_lr + 1) % SO_LCKDBG_MAX; in ctl_unlock()
H A Duipc_socket.c748 so->next_unlock_lr = 0; in socreate_internal()
7269 so->unlock_lr[(so->next_unlock_lr + i) % SO_LCKDBG_MAX]); in solockhistory_nr()
7355 so->unlock_lr[so->next_unlock_lr] = lr_saved; in socket_unlock()
7356 so->next_unlock_lr = (so->next_unlock_lr + 1) % SO_LCKDBG_MAX; in socket_unlock()
H A Dkern_event.c8092 so->unlock_lr[so->next_unlock_lr] = lr_saved; in event_unlock()
8093 so->next_unlock_lr = (so->next_unlock_lr + 1) % SO_LCKDBG_MAX; in event_unlock()
/xnu-8020.140.41/bsd/sys/
H A Dsocketvar.h274 u_int8_t next_unlock_lr; member