Lines Matching refs:dmesg
7 # - Scans dmesg output.
51 my $suppress_dmesg = 0; # Don't show dmesg in output.
94 --suppress-dmesg Do not show dmesg results.
114 'suppress-dmesg' => \$suppress_dmesg,
402 open my $cmd, '-|', 'dmesg';
405 print 'dmesg: ' . $_;
522 my ($total, $dmesg, $paths, $files) = parse_raw_file($file);
524 printf "\nTotal number of results from scan (incl dmesg): %d\n", $total;
527 print_dmesg($dmesg);
546 if ("dmesg:" eq substr($_, 0, 6)) {
560 my @dmesg; # dmesg output.
568 if ("dmesg:" eq substr($line, 0, 6)) {
569 push @dmesg, $line;
577 return $total, \@dmesg, \%paths, \%files;
582 my ($dmesg) = @_;
586 if (@$dmesg == 0) {
591 foreach(@$dmesg) {
602 print "\nResults squashed by $desc (excl dmesg). ";