Lines Matching refs:dmesg
7 # - Scans dmesg output.
51 my $suppress_dmesg = 0; # Don't show dmesg in output.
93 --suppress-dmesg Do not show dmesg results.
113 'suppress-dmesg' => \$suppress_dmesg,
401 open my $cmd, '-|', 'dmesg';
404 print 'dmesg: ' . $_;
521 my ($total, $dmesg, $paths, $files) = parse_raw_file($file);
523 printf "\nTotal number of results from scan (incl dmesg): %d\n", $total;
526 print_dmesg($dmesg);
545 if ("dmesg:" eq substr($_, 0, 6)) {
559 my @dmesg; # dmesg output.
567 if ("dmesg:" eq substr($line, 0, 6)) {
568 push @dmesg, $line;
576 return $total, \@dmesg, \%paths, \%files;
581 my ($dmesg) = @_;
585 if (@$dmesg == 0) {
590 foreach(@$dmesg) {
601 print "\nResults squashed by $desc (excl dmesg). ";