Lines Matching refs:line
292 while (my $line = <$fh> ) {
293 if ($line =~ /^$option/) {
294 ($str, $val) = split /=/, $line;
375 my ($path, $line) = @_;
379 if ($line =~ '^SigBlk:' or
380 $line =~ '^SigIgn:' or
381 $line =~ '^SigCgt:') {
389 if ($line =~ '\bKEY=[[:xdigit:]]{9,14} [[:xdigit:]]{16} [[:xdigit:]]{16}\b' or
391 $line =~ '\b[[:xdigit:]]{9,14} [[:xdigit:]]{16} [[:xdigit:]]{16}\b')) {
396 while ($line =~ /($address_re)/g) {
623 while (my $line = <$fh>) {
626 if ("dmesg:" eq substr($line, 0, 6)) {
627 push @dmesg, $line;
631 cache_path(\%paths, $line);
632 cache_filename(\%files, $line);
677 my ($paths, $line) = @_;
679 my $index = index($line, ': ');
680 my $path = substr($line, 0, $index);
683 add_to_cache($paths, $path, substr($line, $index));
688 my ($files, $line) = @_;
690 my $index = index($line, ': ');
691 my $path = substr($line, 0, $index);
695 add_to_cache($files, $filename, substr($line, $index));