Home
last modified time | relevance | path

Searched refs:nfp (Results 1 – 7 of 7) sorted by relevance

/xnu-10063.141.1/bsd/sys/
H A Dfile_internal.h517 int fp_tryswap(proc_t, int fd, struct fileproc *nfp);
534 extern void guarded_fileproc_copy_guard(struct fileproc *ofp, struct fileproc *nfp);
/xnu-10063.141.1/bsd/skywalk/nexus/netif/
H A Dnx_netif_filter.c179 struct netif_filter **nfp) in nx_netif_filter_add() argument
204 *nfp = nf; in nx_netif_filter_add()
H A Dnx_netif_flow.c732 struct netif_flow **nfp) in nx_netif_flow_add() argument
773 if (nfp != NULL) { in nx_netif_flow_add()
774 *nfp = nf; in nx_netif_flow_add()
/xnu-10063.141.1/bsd/kern/
H A Dkern_descrip.c501 struct fileproc *nfp; in finishdup() local
531 nfp = fileproc_alloc_init(); in finishdup()
534 nfp->fp_flags |= fp_flags; in finishdup()
536 nfp->fp_glob = ofp->fp_glob; in finishdup()
552 procfdtbl_releasefd(p, new, nfp); in finishdup()
934 struct fileproc *ofp, *nfp; in fdt_fork() local
955 nfp = fileproc_alloc_init(); in fdt_fork()
956 nfp->fp_glob = ofp->fp_glob; in fdt_fork()
958 nfp->fp_flags = (ofp->fp_flags & (FP_CLOEXEC | FP_CLOFORK)); in fdt_fork()
960 guarded_fileproc_copy_guard(ofp, nfp); in fdt_fork()
[all …]
H A Dkern_guarded.c115 guarded_fileproc_copy_guard(struct fileproc *ofp, struct fileproc *nfp) in guarded_fileproc_copy_guard() argument
121 guarded_fileproc_init(nfp, &arg); in guarded_fileproc_copy_guard()
/xnu-10063.141.1/bsd/nfs/
H A Dnfs_syscalls.c432 struct fileproc *fp, *nfp; in fhopen() local
532 if ((error = falloc(p, &nfp, &indx)) != 0) { in fhopen()
536 fp = nfp; in fhopen()
1919 struct nfsrv_fmod *fp, *nfp; in nfsrv_cleanup() local
1941 for (fp = LIST_FIRST(&nfsrv_fmod_hashtbl[i]); fp; fp = nfp) { in nfsrv_cleanup()
1954 nfp = LIST_NEXT(fp, fm_link); in nfsrv_cleanup()
H A Dnfs_serv.c1129 struct nfsrv_fmod *fp, *nfp, *pfp; in nfsrv_fmod_timer() local
1169 nfp = LIST_NEXT(fp, fm_link); in nfsrv_fmod_timer()
1178 fp = nfp; in nfsrv_fmod_timer()
1188 LIST_FOREACH_SAFE(fp, &firehead, fm_link, nfp) { in nfsrv_fmod_timer()