Home | History | Annotate | Download | only in applypatch

Lines Matching full:path

29     char path[FILENAME_MAX];
30 strcpy(path, "/proc/");
31 strcat(path, de->d_name);
32 strcat(path, "/fd/");
36 fdd = opendir(path);
38 printf("error opening %s: %s\n", path, strerror(errno));
44 strcpy(fd_path, path);
81 char path[FILENAME_MAX];
97 strcpy(path, dirs[i]);
98 strcat(path, "/");
99 strcat(path, de->d_name);
104 if (strcmp(path, CACHE_TEMP_SOURCE) == 0) continue;
107 if (stat(path, &st) == 0 && S_ISREG(st.st_mode)) {
112 (*names)[(*entries)++] = strdup(path);