Home | History | Annotate | Download | only in tests

Lines Matching refs:fpath

24 void sanity_check_ftw(const char* fpath, const struct stat* sb, int tflag) {
25 ASSERT_TRUE(fpath != NULL);
32 const char* fpath, const struct stat* sb, int tflag, struct FTW* ftwbuf) {
33 sanity_check_ftw(fpath, sb, tflag);
40 int check_ftw(const char* fpath, const struct stat* sb, int tflag) {
41 sanity_check_ftw(fpath, sb, tflag);
45 int check_ftw64(const char* fpath, const struct stat64* sb, int tflag) {
46 sanity_check_ftw(fpath, reinterpret_cast<const struct stat*>(sb), tflag);
51 const char* fpath, const struct stat* sb, int tflag, struct FTW* ftwbuf) {
52 sanity_check_nftw(fpath, sb, tflag, ftwbuf);
57 const char* fpath, const struct stat64* sb, int tflag, struct FTW* ftwbuf) {
58 sanity_check_nftw(fpath, reinterpret_cast<const struct stat*>(sb),