Home
last modified time | relevance | path

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

/bionic/libc/bionic/
Dftw.cpp42 int fts_options = FTS_LOGICAL | FTS_COMFOLLOW | FTS_NOCHDIR; in do_nftw()
44 fts_options = FTS_COMFOLLOW | ((nftw_flags & FTW_PHYS) ? FTS_PHYSICAL : FTS_LOGICAL); in do_nftw()
Dfts.c87 if (ISSET(FTS_LOGICAL)) in __fts_open()
808 if (ISSET(FTS_LOGICAL) || follow) { in fts_stat()
/bionic/tools/versioner/src/
DUtils.cpp46 fts_open(dir_argv, FTS_LOGICAL | FTS_NOCHDIR, nullptr), fts_close); in collectHeaders()
DVFS.cpp40 fts_open(paths, FTS_COMFOLLOW | FTS_LOGICAL | FTS_NOCHDIR, nullptr), fts_close); in addDirectoryToVFS()
DPreprocessor.cpp433 std::unique_ptr<FTS, decltype(&fts_close)> fts(fts_open(fts_paths, FTS_LOGICAL, nullptr), in preprocessHeaders()
/bionic/libc/include/
Dfts.h53 #define FTS_LOGICAL 0x0002 /* logical walk */ macro