Searched refs:nextp (Results 1 - 4 of 4) sorted by relevance

/darwin-on-arm/xnu/bsd/kern/
H A Dkern_credential.c5238 debug_ucred * nextp; local
5264 nextp = cred_listp;
5268 nextp->credp = found_cred;
5269 nextp->cr_ref = found_cred->cr_ref;
5270 nextp->cr_uid = found_cred->cr_uid;
5271 nextp->cr_ruid = found_cred->cr_ruid;
5272 nextp->cr_svuid = found_cred->cr_svuid;
5273 nextp->cr_ngroups = found_cred->cr_ngroups;
5274 for ( j = 0; j < nextp->cr_ngroups; j++ ) {
5275 nextp
5333 cred_backtrace * nextp; local
[all...]
/darwin-on-arm/xnu/bsd/net/
H A Dpf_if.c633 struct pfi_kif *p, *nextp; local
638 for (p = RB_MIN(pfi_ifhead, &pfi_ifs); p; p = nextp) {
639 nextp = RB_NEXT(pfi_ifhead, &pfi_ifs, p);
666 nextp = RB_NEXT(pfi_ifhead, &pfi_ifs, p);
H A Dntstat.c1768 nstat_src **nextp; local
1770 for (nextp = &state->ncs_srcs; *nextp; nextp = &(*nextp)->next)
1772 if ((*nextp)->srcref == srcref)
1774 src = *nextp;
1775 *nextp = src->next;
/darwin-on-arm/xnu/bsd/dev/dtrace/
H A Ddtrace.c7311 dtrace_probe_t **nextp, **prevp;
7330 nextp = DTRACE_HASHNEXT(hash, new);
7331 ASSERT(*nextp == NULL && *(DTRACE_HASHPREV(hash, new)) == NULL);
7332 *nextp = bucket->dthb_chain;
7381 dtrace_probe_t **nextp = DTRACE_HASHNEXT(hash, probe);
7394 if (*nextp == NULL) {
7418 bucket->dthb_chain = *nextp;
7420 *(DTRACE_HASHNEXT(hash, *prevp)) = *nextp;
7423 if (*nextp != NULL)
7424 *(DTRACE_HASHPREV(hash, *nextp))
[all...]

Completed in 103 milliseconds