Lines Matching defs:dir
31 * @tc.desc : Get the current read position of the parameter dir directory stream
36 DIR *dir;
39 dir = opendir(path);
40 long offset1 = telldir(dir);
42 while ((ptr = readdir(dir)) != NULL) {
46 offset2 = telldir(dir);
53 closedir(dir);
58 * @tc.desc : Catch exception when parameter dir is NULL
65 DIR *dir = NULL;
66 telldir(dir);