Searched refs:fd_limit (Results 1 – 2 of 2) sorted by relevance
/picolibc-latest/newlib/libc/posix/ |
D | nftw.c | 49 …h, int (*fn)(const char *, const struct stat *, int, struct FTW *), int fd_limit, int flags, struc… in do_nftw() argument 100 if ((type == FTW_D || type == FTW_DP) && fd_limit) { in do_nftw() 116 if ((r=do_nftw(path, fn, fd_limit-1, flags, &new))) { in do_nftw() 134 …ar *path, int (*fn)(const char *, const struct stat *, int, struct FTW *), int fd_limit, int flags) in nftw() argument 140 if (fd_limit <= 0) return 0; in nftw() 152 r = do_nftw(pathbuf, fn, fd_limit, flags, NULL); in nftw()
|
D | ftw.c | 28 int ftw(const char *path, int (*fn)(const char *, const struct stat *, int), int fd_limit) in ftw() argument 33 return nftw(path, (int (*)())fn, fd_limit, FTW_PHYS); in ftw()
|