Lines Matching refs:path
10 # Use --debug to output path before parsing, this is useful to find files that
52 my $squash_by_path = 0; # Summary report grouped by absolute path.
94 --squash-by-path Show one result per unique path.
114 'squash-by-path' => \$squash_by_path,
410 # True if we should skip this path.
413 my ($path) = @_;
416 return 1 if (/^$path$/);
419 my($filename, $dirs, $suffix) = fileparse($path);
466 # Checks if the actual path name is leaking a kernel address.
469 my ($path) = @_;
471 if (may_leak_address($path)) {
472 printf("Path name may contain address: $path\n");
489 my $path = "$pwd/$file";
490 next if (-l $path);
493 next if (($path =~ /^\/proc\/[0-9]+$/) &&
494 ($path !~ /^\/proc\/1$/));
496 next if (skip($path));
498 check_path_for_leaks($path);
500 if (-d $path) {
501 push @dirs, $path;
505 dprint("parsing: $path\n");
506 timed_parse_file($path);
534 squash_by($paths, 'path');
621 my $path = substr($line, 0, $index);
624 add_to_cache($paths, $path, substr($line, $index));
632 my $path = substr($line, 0, $index);
633 my $filename = basename($path);