Home
last modified time | relevance | path

Searched refs:statep (Results 1 – 3 of 3) sorted by relevance

/xnu-8019.80.24/osfmk/i386/
H A Dpcb.c2111 struct x86_kernel_state *statep; in machine_stack_attach() local
2124 statep = STACK_IKS(stack); in machine_stack_attach()
2131 statep->k_rbp = (uint64_t) 0; in machine_stack_attach()
2132 statep->k_rip = (uint64_t) Thread_continue; in machine_stack_attach()
2133 statep->k_rbx = (uint64_t) thread_continue; in machine_stack_attach()
2134 statep->k_rsp = (uint64_t) STACK_IKS(stack); in machine_stack_attach()
/xnu-8019.80.24/bsd/nfs/
H A Dnfs_socket.c5637 int *statep; in nfs_sndlock() local
5646 statep = &nmp->nm_state; in nfs_sndlock()
5651 while (*statep & NFSSTA_SNDLOCK) { in nfs_sndlock()
5655 *statep |= NFSSTA_WANTSND; in nfs_sndlock()
5659 msleep(statep, &nmp->nm_lock, slpflag | (PZERO - 1), "nfsndlck", &ts); in nfs_sndlock()
5666 *statep |= NFSSTA_SNDLOCK; in nfs_sndlock()
5679 int *statep, wake = 0; in nfs_sndunlock() local
5685 statep = &nmp->nm_state; in nfs_sndunlock()
5686 if ((*statep & NFSSTA_SNDLOCK) == 0) { in nfs_sndunlock()
5689 *statep &= ~(NFSSTA_SNDLOCK | NFSSTA_SENDING); in nfs_sndunlock()
[all …]
/xnu-8019.80.24/bsd/kern/
H A Duipc_socket.c7230 get_sockev_state(struct socket *so, u_int32_t *statep) in get_sockev_state() argument
7232 u_int32_t state = *(statep); in get_sockev_state()
7248 *(statep) = state; in get_sockev_state()