• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/scripts/

Lines Matching refs:prototype

239 my ($newsection,$newcontents,$prototype,$filelist, $brcount, %source_map);
255 # 3 - scanning prototype.
1328 my ($prototype, $file) = @_;
1563 # takes a function prototype and the name of the current file being
1567 my $prototype = shift;
1570 $prototype =~ s/^static +//;
1571 $prototype =~ s/^extern +//;
1572 $prototype =~ s/^fastcall +//;
1573 $prototype =~ s/^asmlinkage +//;
1574 $prototype =~ s/^inline +//;
1575 $prototype =~ s/^__inline__ +//;
1576 $prototype =~ s/^__inline +//;
1577 $prototype =~ s/^__always_inline +//;
1578 $prototype =~ s/^noinline +//;
1579 $prototype =~ s/__devinit +//;
1580 $prototype =~ s/^#define\s+//; #ak added
1581 $prototype =~ s/__attribute__\s*\(\([a-z,]*\)\)//;
1599 if ($prototype =~ m/^()([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
1600 $prototype =~ m/^(\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
1601 $prototype =~ m/^(\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
1602 $prototype =~ m/^(\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
1603 $prototype =~ m/^(\w+\s+\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
1604 $prototype =~ m/^(\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
1605 $prototype =~ m/^(\w+\s+\w+\s+\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
1606 $prototype =~ m/^()([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
1607 $prototype =~ m/^(\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
1608 $prototype =~ m/^(\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
1609 $prototype =~ m/^(\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
1610 $prototype =~ m/^(\w+\s+\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
1611 $prototype =~ m/^(\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
1612 $prototype =~ m/^(\w+\s+\w+\s+\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
1613 $prototype =~ m/^(\w+\s+\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
1614 $prototype =~ m/^(\w+\s+\w+\s+\w+\s+\w+\s*\*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
1615 $prototype =~ m/^(\w+\s+\w+\s*\*\s*\w+\s*\*\s*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/) {
1622 print STDERR "Error(${file}:$.): cannot understand prototype: '$prototype'\n";
1685 $prototype = "";
1698 $prototype .= $1;
1701 $prototype =~ s@/\*.*?\*/@@gos; # strip comments.
1702 $prototype =~ s@[\r\n]+@ @gos; # strip newlines/cr's.
1703 $prototype =~ s@^\s+@@gos; # strip leading spaces
1704 dump_function($prototype,$file);
1723 $prototype .= $1 . $2;
1727 dump_declaration($prototype,$file);
1733 $prototype .= $x;
1861 $prototype = "";
1864 # print STDERR "end of doc comment, looking for prototype\n";
1881 } elsif ($state == 3) { # scanning for function '{' (end of prototype)
1901 $prototype = "";
1921 $prototype = "";