Home
last modified time | relevance | path

Searched refs:FTS (Results 1 – 6 of 6) sorted by relevance

/bionic/libc/include/
Dfts.h65 } FTS; typedef
125 FTSENT* fts_children(FTS* __fts, int __options) __INTRODUCED_IN(21);
126 int fts_close(FTS* __fts) __INTRODUCED_IN(21);
127 FTS* fts_open(char* const* __path, int __options, int (*__comparator)(const FTSENT** __lhs, const F…
128 FTSENT* fts_read(FTS* __fts) __INTRODUCED_IN(21);
129 int fts_set(FTS* __fts, FTSENT* __entry, int __options) __INTRODUCED_IN(21);
/bionic/libc/bionic/
Dfts.c45 static FTSENT *fts_alloc(FTS *, char *, size_t);
46 static FTSENT *fts_build(FTS *, int);
48 static void fts_load(FTS *, FTSENT *);
50 static void fts_padjust(FTS *, FTSENT *);
51 static int fts_palloc(FTS *, size_t);
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()
74 FTS *sp; in __fts_open()
[all …]
Dftw.cpp28 extern "C" FTS* __fts_open(char* const*, int, int (*)(const FTSENT**, const FTSENT**));
52 FTS* fts = __fts_open(paths, fts_options | FTS_FOR_FTW, nullptr); in do_nftw()
/bionic/tools/versioner/src/
DUtils.cpp45 std::unique_ptr<FTS, decltype(&fts_close)> fts( in collectHeaders()
DVFS.cpp39 std::unique_ptr<FTS, decltype(&fts_close)> fts( in addDirectoryToVFS()
DPreprocessor.cpp433 std::unique_ptr<FTS, decltype(&fts_close)> fts(fts_open(fts_paths, FTS_LOGICAL, nullptr), in preprocessHeaders()