HomeSort by relevance Sort by last modified time
    Searched defs:FTW (Results 1 - 3 of 3) sorted by null

  /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);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ftw.h 16 struct FTW {
49 /* Return from ftw or nftw with FTW_STOP as return value. */
56 int ftw (const char *, int (*) (const char *, const struct stat *, int), int);
59 int nftw (const char *, int (*) (const char *, const struct stat *, int , struct FTW *), int, int);
60 int nftw64 (const char *, int (*) (const char *, const struct stat64 *, int , struct FTW *), int, int);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
ftw.h 20 * X/Open Portability Guide 4.2: ftw.h
34 /* Values for the FLAG argument to the user function passed to `ftw'
92 FTW_STOP = 1, /* Return from `ftw' or `nftw' with FTW_STOP as return
106 struct FTW
124 struct FTW *__info);
128 int __flag, struct FTW *__info);
137 extern int ftw (__const char *__dir, __ftw_func_t __func, int __descriptors)
141 extern int __REDIRECT (ftw, (__const char *__dir, __ftw_func_t __func,
144 # define ftw ftw64 macro
178 #endif /* ftw.h *
    [all...]

Completed in 81 milliseconds