Searched refs:fpath (Results 1 – 1 of 1) sorted by relevance
/bionic/tests/ |
D | ftw_test.cpp | 24 void sanity_check_ftw(const char* fpath, const struct stat* sb, int tflag) { in sanity_check_ftw() argument 25 ASSERT_TRUE(fpath != NULL); in sanity_check_ftw() 32 const char* fpath, const struct stat* sb, int tflag, struct FTW* ftwbuf) { in sanity_check_nftw() argument 33 sanity_check_ftw(fpath, sb, tflag); in sanity_check_nftw() 40 int check_ftw(const char* fpath, const struct stat* sb, int tflag) { in check_ftw() argument 41 sanity_check_ftw(fpath, sb, tflag); in check_ftw() 45 int check_ftw64(const char* fpath, const struct stat64* sb, int tflag) { in check_ftw64() argument 46 sanity_check_ftw(fpath, reinterpret_cast<const struct stat*>(sb), tflag); in check_ftw64() 51 const char* fpath, const struct stat* sb, int tflag, struct FTW* ftwbuf) { in check_nftw() argument 52 sanity_check_nftw(fpath, sb, tflag, ftwbuf); in check_nftw() [all …]
|