Home
last modified time | relevance | path

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

/xnu-11215.1.10/bsd/kern/
H A Dkern_descrip.c853 struct fileproc **ofiles; in fdt_fork() local
943 ofiles = kalloc_type(struct fileproc *, n_files, Z_WAITOK | Z_ZERO); in fdt_fork()
945 if (ofiles == NULL || ofileflags == NULL) { in fdt_fork()
946 kfree_type(struct fileproc *, n_files, ofiles); in fdt_fork()
996 ofiles[i] = nfp; in fdt_fork()
1004 newfdp->fd_ofiles = ofiles; in fdt_fork()
1021 struct fileproc *fp, **ofiles; in fdt_invalidate() local
1065 ofiles = fdp->fd_ofiles; in fdt_invalidate()
1089 kfree_type(struct fileproc *, n_files, ofiles); in fdt_invalidate()