Lines Matching defs:path
390 process_path(const char *path)
397 if (stat(path, &st) != -1 &&
405 if (path[strlen(path) - 1] != '/') {
406 (void) asprintf(&buf, "%s/", path);
408 path = buf;
412 * Search through subdirs if path is directory.
418 if (nftw(path, recursive, MAX_DEPTH, walkflags) != 0) {
422 cmdname, path);
428 process_file(path, 0);