Lines Matching refs:path
100 int FtwCheckDirTree(const char *path, const struct stat *sb, int flag)
109 if (strncmp(path, file0, sizeof(file0)) == 0) {
111 } else if (strncmp(path, file1, sizeof(file1)) == 0) {
114 LOG("> File error %s", path);
118 if (strncmp(path, dir0, sizeof(dir0)) == 0) {
120 } else if (strncmp(path, dir1, sizeof(dir1)) == 0) {
122 } else if (strncmp(path, dir2, sizeof(dir2)) == 0) {
124 } else if (strncmp(path, dir3, sizeof(dir3)) == 0) {
127 LOG("> File error %s", path);
145 int NftwCheckDirTree(const char *path, const struct stat *sb, int flag, struct FTW *s)
154 if (strncmp(path, file0, sizeof(file0)) == 0) {
156 } else if (strncmp(path, file1, sizeof(file1)) == 0) {
159 LOG("> File %s", path);
163 if (strncmp(path, dir0, sizeof(dir0)) == 0) {
165 } else if (strncmp(path, dir1, sizeof(dir1)) == 0) {
167 } else if (strncmp(path, dir2, sizeof(dir2)) == 0) {
169 } else if (strncmp(path, dir3, sizeof(dir3)) == 0) {
172 LOG("> File %s", path);
234 * @tc.name basic function test : Use glob function and globfree function for path generation and release