Home
last modified time | relevance | path

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

/xnu-11215.1.10/bsd/sys/
H A Dfile_internal.h534 int fp_tryswap(proc_t, int fd, struct fileproc *nfp);
551 extern void guarded_fileproc_copy_guard(struct fileproc *ofp, struct fileproc *nfp);
/xnu-11215.1.10/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.c740 struct netif_flow **nfp) in nx_netif_flow_add() argument
781 if (nfp != NULL) { in nx_netif_flow_add()
782 *nfp = nf; in nx_netif_flow_add()
/xnu-11215.1.10/bsd/kern/
H A Dkern_descrip.c529 struct fileproc *nfp; in finishdup() local
559 nfp = fileproc_alloc_init(); in finishdup()
562 nfp->fp_flags |= fp_flags; in finishdup()
564 nfp->fp_glob = ofp->fp_glob; in finishdup()
580 procfdtbl_releasefd(p, new, nfp); in finishdup()
962 struct fileproc *ofp, *nfp; in fdt_fork() local
983 nfp = fileproc_alloc_init(); in fdt_fork()
984 nfp->fp_glob = ofp->fp_glob; in fdt_fork()
986 nfp->fp_flags = (ofp->fp_flags & (FP_CLOEXEC | FP_CLOFORK)); in fdt_fork()
988 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-11215.1.10/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()