Searched refs:FTSENT (Results 1 – 6 of 6) sorted by relevance
/bionic/libc/bionic/ |
D | fts.c | 45 static FTSENT *fts_alloc(FTS *, char *, size_t); 46 static FTSENT *fts_build(FTS *, int); 47 static void fts_lfree(FTSENT *); 48 static void fts_load(FTS *, FTSENT *); 50 static void fts_padjust(FTS *, FTSENT *); 52 static FTSENT *fts_sort(FTS *, FTSENT *, int); 53 static u_short fts_stat(FTS *, FTSENT *, int, int); 54 static int fts_safe_changedir(FTS *, FTSENT *, int, char *); 73 FTS* __fts_open(char* const* argv, int options, int (*compar)(const FTSENT**, const FTSENT**)) { in __fts_open() argument 75 FTSENT *p, *root; in __fts_open() [all …]
|
D | ftw.cpp | 28 extern "C" FTS* __fts_open(char* const*, int, int (*)(const FTSENT**, const FTSENT**)); 59 FTSENT* cur; in do_nftw()
|
/bionic/libc/include/ |
D | fts.h | 116 } FTSENT; typedef 125 FTSENT* fts_children(FTS* __fts, int __options) __INTRODUCED_IN(21); 127 …char* const* __path, int __options, int (*__comparator)(const FTSENT** __lhs, const FTSENT** __rhs… 128 FTSENT* fts_read(FTS* __fts) __INTRODUCED_IN(21); 129 int fts_set(FTS* __fts, FTSENT* __entry, int __options) __INTRODUCED_IN(21);
|
/bionic/tools/versioner/src/ |
D | Utils.cpp | 52 FTSENT* skipping = nullptr; in collectHeaders() 53 while (FTSENT* ent = fts_read(fts.get())) { in collectHeaders()
|
D | VFS.cpp | 46 while (FTSENT* ent = fts_read(fts.get())) { in addDirectoryToVFS()
|
D | Preprocessor.cpp | 439 while (FTSENT* ent = fts_read(fts.get())) { in preprocessHeaders()
|