Lines Matching defs:dir
80 DIR *dir;
276 c->dir = opendir(h->filename);
277 if (!c->dir)
290 struct dirent *dir;
298 dir = readdir(c->dir);
299 if (!dir) {
303 } while (!strcmp(dir->d_name, ".") || !strcmp(dir->d_name, ".."));
305 fullpath = av_append_path_component(h->filename, dir->d_name);
337 (*next)->name = av_strdup(dir->d_name);
348 closedir(c->dir);