Searched refs:ftwflags (Results 1 - 4 of 4) sorted by relevance

/freebsd-12-stable/lib/libc/tests/gen/
H A Dftw_test.c52 static int ftwflags; variable
60 if ((ftwflags & FTW_DEPTH) == 0)
64 if ((ftwflags & FTW_DEPTH) != 0)
68 if ((ftwflags & FTW_PHYS) != 0)
98 printf("ftwflags=FTW_PHYS\n");
99 ftwflags = FTW_PHYS;
100 ATF_REQUIRE_MSG(nftw(dir, cb, 10, ftwflags) != -1,
103 printf("ftwflags=FTW_PHYS|FTW_DEPTH\n");
104 ftwflags = FTW_PHYS|FTW_DEPTH;
105 ATF_REQUIRE_MSG(nftw(dir, cb, 10, ftwflags) !
[all...]
/freebsd-12-stable/lib/libc/gen/
H A Dnftw-compat11.c38 int nfds, int ftwflags)
53 if (!(ftwflags & FTW_CHDIR))
55 if (ftwflags & FTW_MOUNT)
57 if (ftwflags & FTW_PHYS)
61 postorder = (ftwflags & FTW_DEPTH) != 0;
36 freebsd11_nftw(const char *path, int (*fn)(const char *, const struct freebsd11_stat *, int, struct FTW *), int nfds, int ftwflags) argument
H A Dnftw.c34 struct FTW *), int nfds, int ftwflags)
49 if (!(ftwflags & FTW_CHDIR))
51 if (ftwflags & FTW_MOUNT)
53 if (ftwflags & FTW_PHYS)
57 postorder = (ftwflags & FTW_DEPTH) != 0;
33 nftw(const char *path, int (*fn)(const char *, const struct stat *, int, struct FTW *), int nfds, int ftwflags) argument
/freebsd-12-stable/lib/libpmc/pmu-events/
H A Djevents.c59 struct FTW *), int nfds, int ftwflags);
1187 struct FTW *), int nfds, int ftwflags)
1202 if (!(ftwflags & FTW_CHDIR))
1204 if (ftwflags & FTW_MOUNT)
1206 if (ftwflags & FTW_PHYS)
1210 postorder = (ftwflags & FTW_DEPTH) != 0;
1186 nftw_ordered(const char *path, int (*fn)(const char *, const struct stat *, int, struct FTW *), int nfds, int ftwflags) argument

Completed in 86 milliseconds