Searched refs:n_files (Results 1 – 1 of 1) sorted by relevance
| /xnu-8792.61.2/bsd/kern/ |
| H A D | kern_descrip.c | 166 #define fd_alloc_files(n_files, flags) \ argument 168 kheap_alloc(KM_OFILETABL, n_files * OFILESIZE, flags) \ 171 #define fd_free_files(files, n_files) \ argument 173 kheap_free(KM_OFILETABL, ofiles, n_files * OFILESIZE) \ 841 int n_files, afterlast, freefile; in fdt_fork() local 919 n_files = NDFILE; in fdt_fork() 921 n_files = roundup(afterlast, NDEXTENT); in fdt_fork() 926 ofiles = fd_alloc_files(n_files, Z_WAITOK | Z_ZERO); in fdt_fork() 938 ofileflags = (char *)&ofiles[n_files]; in fdt_fork() 987 newfdp->fd_nfiles = n_files; in fdt_fork() [all …]
|