/external/ltp/testcases/kernel/syscalls/nftw/ |
nftw64.h | 34 #include <ftw.h> 111 extern int test_func1(const char *, const struct stat64 *, int, struct FTW *); 112 extern int test_func3(const char *, const struct stat64 *, int, struct FTW *); 113 extern int test_func4(const char *, const struct stat64 *, int, struct FTW *); 114 extern int test_func5(const char *, const struct stat64 *, int, struct FTW *); 115 extern int test_func7(const char *, const struct stat64 *, int, struct FTW *); 116 extern int test_func8(const char *, const struct stat64 *, int, struct FTW *); 117 extern int test_func9(const char *, const struct stat64 *, int, struct FTW *); 118 extern int test_func10(const char *, const struct stat64 *, int, struct FTW *); 119 extern int test_func11(const char *, const struct stat64 *, int, struct FTW *); [all...] |
nftw.h | 34 #include <ftw.h> 112 int test_func1(const char *, const struct stat *, int, struct FTW *); 113 int test_func3(const char *, const struct stat *, int, struct FTW *); 114 int test_func4(const char *, const struct stat *, int, struct FTW *); 115 int test_func5(const char *, const struct stat *, int, struct FTW *); 116 int test_func7(const char *, const struct stat *, int, struct FTW *); 117 int test_func8(const char *, const struct stat *, int, struct FTW *); 118 int test_func9(const char *, const struct stat *, int, struct FTW *); 119 int test_func10(const char *, const struct stat *, int, struct FTW *); 120 int test_func11(const char *, const struct stat *, int, struct FTW *); [all...] |
test_func.c | 42 int ftw_integer, struct FTW *ftwp) 77 int ftw_integer, struct FTW *ftwp) 102 int ftw_integer, struct FTW *ftwp) 115 int ftw_integer, struct FTW *ftwp) 138 int ftw_integer, struct FTW *ftwp) 168 int ftw_integer, struct FTW *ftwp) 249 int ftw_integer, struct FTW *ftwp) 284 int ftw_integer, struct FTW *ftwp) 318 int ftw_integer, struct FTW *ftwp) 352 int ftw_integer, struct FTW *ftwp [all...] |
test_func64.c | 42 int ftw_integer, struct FTW *ftwp) 76 int ftw_integer, struct FTW *ftwp) 101 int ftw_integer, struct FTW *ftwp) 114 int ftw_integer, struct FTW *ftwp) 138 int ftw_integer, struct FTW *ftwp) 169 int ftw_integer, struct FTW *ftwp) 251 int ftw_integer, struct FTW *ftwp) 287 int ftw_integer, struct FTW *ftwp) 322 int ftw_integer, struct FTW *ftwp) 357 int ftw_integer, struct FTW *ftwp [all...] |
tools.c | 149 * Function: int nftw_fn(const char, const struct stat, int, struct FTW ) 158 int nftw_fn(const char *path, const struct stat *st, int ival, struct FTW *FTWS)
|
tools64.c | 148 * Function: int nftw64_fn(const char, const struct stat64, int, struct FTW ) 158 nftw64_fn(const char *path, const struct stat64 *st, int ival, struct FTW *FTWS)
|
/bionic/tests/headers/posix/ |
ftw_h.c | 29 #include <ftw.h> 34 TYPE(struct FTW); 35 STRUCT_MEMBER(struct FTW, int, base); 36 STRUCT_MEMBER(struct FTW, int, level); 51 FUNCTION(ftw, int (*f)(const char*, int (*)(const char*, const struct stat*, int), int)); 55 // POSIX: "The <ftw.h> header shall define the ... the symbolic names for
|
/bionic/libc/include/ |
ftw.h | 1 /* $NetBSD: ftw.h,v 1.1 2005/12/30 23:07:33 agc Exp $ */ 3 /* From OpenBSD: ftw.h,v 1.1 2003/07/21 21:13:18 millert Exp */ 34 * second argument to ftw(3) and nftw(3). Say it three times fast! 52 struct FTW { 58 int ftw(const char* __dir_path, int (*__callback)(const char*, const struct stat*, int), int __max_fd_count) __INTRODUCED_IN(17); 59 int nftw(const char* __dir_path, int (*__callback)(const char*, const struct stat*, int, struct FTW*), int __max_fd_count, int __flags) __INTRODUCED_IN(17); 60 int ftw64(const char* __dir_path, int (*__callback)(const char*, const struct stat64*, int), int __max_fd_count) __RENAME_STAT64(ftw, 17, 21); 61 int nftw64(const char* __dir_path, int (*__callback)(const char*, const struct stat64*, int, struct FTW*), int __max_fd_count, int __flags) __RENAME_STAT64(nftw, 17, 21);
|
/bionic/libc/bionic/ |
lfs64_support.cpp | 17 #include <ftw.h> 37 typedef int (*nftw_fn)(const char*, const struct stat*, int, struct FTW*); 41 return ftw(dirpath, reinterpret_cast<ftw_fn>(fn), nopenfd); 45 int (*fn)(const char*, const struct stat64*, int, struct FTW*),
|
ftw.cpp | 23 #include <ftw.h> 32 int (*nftw_fn)(const char*, const struct stat*, int, FTW*), 57 // Translate fts_read results into ftw/nftw callbacks. 100 FTW ftw; local 101 ftw.base = cur->fts_pathlen - cur->fts_namelen; 102 ftw.level = cur->fts_level; 103 error = nftw_fn(cur->fts_path, cur->fts_statp, fn_flag, &ftw); 118 int ftw(const char* path, int (*ftw_fn)(const char*, const struct stat*, int), int nfds) { function 122 int nftw(const char* path, int (*nftw_fn)(const char*, const struct stat*, int, FTW*), [all...] |
/bionic/tests/ |
ftw_test.cpp | 17 #include <ftw.h> 78 void sanity_check_nftw(const char* fpath, const struct stat* sb, int tflag, FTW* ftwbuf) { 93 int check_nftw(const char* fpath, const struct stat* sb, int tflag, FTW* ftwbuf) { 98 int check_nftw64(const char* fpath, const struct stat64* sb, int tflag, FTW* ftwbuf) { 103 TEST(ftw, ftw) { 106 ASSERT_EQ(0, ftw(root.path, check_ftw, 128)); 109 TEST(ftw, ftw64) { 115 TEST(ftw, nftw) { 121 TEST(ftw, nftw64) [all...] |
/external/bcc/src/cc/frontends/clang/ |
kbuild_helper.h | 22 #include <ftw.h> 60 static int ftw_cb(const char *path, const struct stat *, int, struct FTW *) { 77 ::perror("ftw");
|
/external/perf_data_converter/src/quipper/ |
scoped_temp_path.cc | 8 #include <ftw.h> 27 int /* type_flag */, struct FTW* /* ftwbuf */) { 72 LOG(ERROR) << "Error while using ftw() to remove " << path_;
|
/external/libcap/progs/ |
getcap.c | 19 #include <ftw.h> 35 int tflag, struct FTW* ftwbuf)
|
/external/linux-kselftest/tools/testing/selftests/bpf/ |
cgroup_helpers.c | 13 #include <ftw.h> 78 int fileflags, struct FTW *pfwt)
|
/external/libcap-ng/libcap-ng-0.7/utils/ |
filecap.c | 33 #include <ftw.h> 47 struct FTW *s_unused __attribute__ ((unused)))
|
/external/vboot_reference/cgpt/ |
cgpt_nor.c | 9 #include <ftw.h> 189 int typeflag, struct FTW *ftwbuf) {
|
/external/mesa3d/src/compiler/glsl/tests/ |
cache_test.c | 30 #include <ftw.h> 103 struct FTW *ftwbuf)
|
/external/minijail/ |
system_unittest.cc | 8 #include <ftw.h> 57 struct FTW*) -> int {
|
/external/e2fsprogs/misc/ |
e4defrag.c | 28 #include <ftw.h> 338 * @ftwbuf: the pointer of a struct FTW. 342 struct FTW *ftwbuf EXT2FS_ATTR((unused))) 1038 * @ftwbuf: the pointer of a struct FTW. 1042 struct FTW *ftwbuf EXT2FS_ATTR((unused))) [all...] |