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.
95 --squash-by-path Show one result per unique path.
115 'squash-by-path' => \$squash_by_path,
411 # True if we should skip this path.
414 my ($path) = @_;
417 return 1 if (/^$path$/);
420 my($filename, $dirs, $suffix) = fileparse($path);
467 # Checks if the actual path name is leaking a kernel address.
470 my ($path) = @_;
472 if (may_leak_address($path)) {
473 printf("Path name may contain address: $path\n");
490 my $path = "$pwd/$file";
491 next if (-l $path);
494 next if (($path =~ /^\/proc\/[0-9]+$/) &&
495 ($path !~ /^\/proc\/1$/));
497 next if (skip($path));
499 check_path_for_leaks($path);
501 if (-d $path) {
502 push @dirs, $path;
506 dprint("parsing: $path\n");
507 timed_parse_file($path);
535 squash_by($paths, 'path');
622 my $path = substr($line, 0, $index);
625 add_to_cache($paths, $path, substr($line, $index));
633 my $path = substr($line, 0, $index);
634 my $filename = basename($path);