Lines Matching refs:prototype

312 my ($newsection, $newcontents, $prototype, $brcount, %source_map);
1052 my ($prototype, $file) = @_;
1564 my $prototype = shift;
1568 $prototype =~ s/^static +//;
1569 $prototype =~ s/^extern +//;
1570 $prototype =~ s/^asmlinkage +//;
1571 $prototype =~ s/^inline +//;
1572 $prototype =~ s/^__inline__ +//;
1573 $prototype =~ s/^__inline +//;
1574 $prototype =~ s/^__always_inline +//;
1575 $prototype =~ s/^noinline +//;
1576 $prototype =~ s/__init +//;
1577 $prototype =~ s/__init_or_module +//;
1578 $prototype =~ s/__meminit +//;
1579 $prototype =~ s/__must_check +//;
1580 $prototype =~ s/__weak +//;
1581 $prototype =~ s/__sched +//;
1582 my $define = $prototype =~ s/^#\s*define\s+//; #ak added
1583 $prototype =~ s/__attribute__\s*\(\(
1607 if ($define && $prototype =~ m/^()([a-zA-Z0-9_~:]+)\s+/) {
1615 } elsif ($prototype =~ m/^()([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
1616 $prototype =~ m/^(\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
1617 $prototype =~ m/^(\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
1618 $prototype =~ m/^(\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
1619 $prototype =~ m/^(\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
1620 $prototype =~ m/^(\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
1621 $prototype =~ m/^(\w+\s+\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
1622 $prototype =~ m/^()([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
1623 $prototype =~ m/^(\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
1624 $prototype =~ m/^(\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
1625 $prototype =~ m/^(\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
1626 $prototype =~ m/^(\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
1627 $prototype =~ m/^(\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
1628 $prototype =~ m/^(\w+\s+\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
1629 $prototype =~ m/^(\w+\s+\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
1630 $prototype =~ m/^(\w+\s+\w+\s+\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
1631 $prototype =~ m/^(\w+\s+\w+\s*\*+\s*\w+\s*\*+\s*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/) {
1638 print STDERR "${file}:$.: warning: cannot understand function prototype: '$prototype'\n";
1677 $prototype = "";
1688 if ($prototype =~ m/TRACE_EVENT\((.*?),/) {
1691 if ($prototype =~ m/DEFINE_SINGLE_EVENT\((.*?),/) {
1694 if ($prototype =~ m/DEFINE_EVENT\((.*?),(.*?),/) {
1698 if ($prototype =~ m/TP_PROTO\((.*?)\)/) {
1703 "$prototype\n";
1705 $prototype = "static inline void trace_$tracepointname($tracepointargs)";
1712 $prototype =~ s@[\r\n]+@ @gos; # strip newlines/CR's
1714 if ($prototype =~ m/SYSCALL_DEFINE0/) {
1719 $prototype =~ s/SYSCALL_DEFINE.*\(/long sys_/; # fix return type & func name
1720 if ($prototype =~ m/long (sys_.*?),/) {
1721 $prototype =~ s/,/\(/;
1723 $prototype =~ s/\)/\(void\)/;
1729 my $len = length($prototype);
1734 if (substr($prototype, $ix, 1) eq ',') {
1737 substr($prototype, $ix, 1) = ' ';
1753 $prototype .= $1;
1757 $prototype =~ s@/\*.*?\*/@@gos; # strip comments.
1758 $prototype =~ s@[\r\n]+@ @gos; # strip newlines/cr's.
1759 $prototype =~ s@^\s+@@gos; # strip leading spaces
1760 if ($prototype =~ /SYSCALL_DEFINE/) {
1763 if ($prototype =~ /TRACE_EVENT/ || $prototype =~ /DEFINE_EVENT/ ||
1764 $prototype =~ /DEFINE_SINGLE_EVENT/)
1768 dump_function($prototype, $file);
1789 if( length $prototype ) {
1790 $prototype .= " "
1792 $prototype .= $1 . $2;
1796 dump_declaration($prototype, $file);
1802 $prototype .= $x;
1986 $prototype = "";
2070 $prototype = "";