Home
last modified time | relevance | path

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

/xnu-8020.101.4/osfmk/i386/
H A Dpcb.c2115 struct x86_kernel_state *statep; in machine_stack_attach() local
2128 statep = STACK_IKS(stack); in machine_stack_attach()
2135 statep->k_rbp = (uint64_t) 0; in machine_stack_attach()
2136 statep->k_rip = (uint64_t) Thread_continue; in machine_stack_attach()
2137 statep->k_rbx = (uint64_t) thread_continue; in machine_stack_attach()
2138 statep->k_rsp = (uint64_t) STACK_IKS(stack); in machine_stack_attach()
/xnu-8020.101.4/bsd/nfs/
H A Dnfs_socket.c5661 int *statep; in nfs_sndlock() local
5670 statep = &nmp->nm_state; in nfs_sndlock()
5675 while (*statep & NFSSTA_SNDLOCK) { in nfs_sndlock()
5679 *statep |= NFSSTA_WANTSND; in nfs_sndlock()
5683 msleep(statep, &nmp->nm_lock, slpflag | (PZERO - 1), "nfsndlck", &ts); in nfs_sndlock()
5690 *statep |= NFSSTA_SNDLOCK; in nfs_sndlock()
5703 int *statep, wake = 0; in nfs_sndunlock() local
5709 statep = &nmp->nm_state; in nfs_sndunlock()
5710 if ((*statep & NFSSTA_SNDLOCK) == 0) { in nfs_sndunlock()
5713 *statep &= ~(NFSSTA_SNDLOCK | NFSSTA_SENDING); in nfs_sndunlock()
[all …]
/xnu-8020.101.4/bsd/kern/
H A Duipc_socket.c7231 get_sockev_state(struct socket *so, u_int32_t *statep) in get_sockev_state() argument
7233 u_int32_t state = *(statep); in get_sockev_state()
7249 *(statep) = state; in get_sockev_state()