Home
last modified time | relevance | path

Searched refs:nftw_fn (Results 1 – 2 of 2) sorted by relevance

/bionic/libc/bionic/
Dftw.cpp32 int (*nftw_fn)(const char*, const struct stat*, int, FTW*), in do_nftw()
43 if (nftw_fn) { in do_nftw()
91 fn_flag = (nftw_fn != nullptr) ? FTW_SLN : FTW_NS; in do_nftw()
99 if (nftw_fn != nullptr) { in do_nftw()
103 error = nftw_fn(cur->fts_path, cur->fts_statp, fn_flag, &ftw); in do_nftw()
122 int nftw(const char* path, int (*nftw_fn)(const char*, const struct stat*, int, FTW*), in nftw()
124 return do_nftw(path, nullptr, nftw_fn, nfds, nftw_flags); in nftw()
Dlfs64_support.cpp37 typedef int (*nftw_fn)(const char*, const struct stat*, int, struct FTW*); typedef
47 return nftw(dirpath, reinterpret_cast<nftw_fn>(fn), nopenfd, flags); in nftw64()