Home
last modified time | relevance | path

Searched refs:func (Results 1 – 11 of 11) sorted by relevance

/scripts/
Dbootgraph.pl71 my $func = $2;
73 $start{$func} = $1;
74 $type{$func} = 0;
80 $pids{$func} = $1;
87 my $func;
89 $func = "wait_" . $pid . "_1";
93 $func = "wait_" . $pid . "_" . $pidctr{$pid};
96 $start{$func} = $1;
97 $type{$func} = 1;
102 $pids{$func} = $pid;
[all …]
Dfaddr2line100 local func=${func_addr%+*}
106 if [[ -z $func ]] || [[ -z $offset ]] || [[ $func = $func_addr ]]; then
142 echo "skipping $func address at $addr due to non-function symbol of type '$sym_type'"
149 echo "skipping $func address at $addr due to size mismatch ($size != $sym_size)"
156 echo "skipping $func address at $addr due to size mismatch ($offset > $sym_size)"
165 echo "$func+$offset/$sym_size:"
192 …done < <(${NM} -n $objfile | awk -v fn=$func -v end=$file_end '$3 == fn { found=1; line=$0; start=…
Dstackdelta25 my ($file, $func, $size, $type) = split;
37 next if $func =~ m/^[0-9]+$/;
38 $func =~ s/\..*$//;
41 $su{"${file}\t${func}"} = {size => $size, type => $type};
Dcheckstack.pl112 my ($func, $file, $lastslash);
116 $func = $1;
142 my $intro = "$addr $func [$file]:";
159 my $intro = "$addr $func [$file]:";
Dkernel-doc1024 my $func = "output_${functype}_$output_mode";
1033 &$func(@_);
1042 my $func = "output_blockhead_" . $output_mode;
1043 &$func(@_);
1053 my $func = "dump_" . $decl_type;
1054 &$func(@_);
Dcheckpatch.pl5569 my $func = $1;
5571 "$func(NULL) is safe and this check is probably not required\n" . $hereprev) &&
5581 if ($lines[$linenr - 1] =~ /^\+(\t+)$func\s*\(\s*$tested\s*\)\s*;\s*$/) {
5715 my $func = $constant_func;
5716 $func =~ s/^__constant_//;
5718 "$constant_func should be $func\n" . $herecurr) &&
5720 $fixed[$fixlinenr] =~ s/\b$constant_func\b/$func/g;
6617 my $func = $entry->[0];
6629 my $test = "\\b$func\\s*\\(${skip_args}($FuncArg(?:\\|\\s*$FuncArg)*)\\s*[,\\)]";
6633 if (!($func =~ /^(?:module_param|proc_create)/ && $val eq "0") &&
/scripts/tracing/
Ddraw_functrace.py35 def __init__(self, func, time = None, parent = None): argument
36 self._func = func
44 def calls(self, func, calltime): argument
49 child = CallTree(func, calltime, self)
53 def getParent(self, func): argument
60 while tree != CallTree.ROOT and tree._func != func:
63 child = CallTree.ROOT.calls(func, None)
/scripts/kconfig/
Dnconf.c301 const char *func; member
310 .func = "Help",
316 .func = "SymInfo",
322 .func = "Help 2",
328 .func = "ShowAll",
334 .func = "Back",
340 .func = "Save",
346 .func = "Load",
352 .func = "SymSearch",
358 .func = "Exit",
[all …]
Dpreprocess.c109 char *(*func)(int argc, char *argv[]); member
220 return f->func(argc, argv); in function_expand()
/scripts/coccinelle/api/
Dstream_open.cocci48 // XXX wait_* can be called not directly from current function (e.g. func -> f -> g -> wait())
200 // XXX .open = func -> openfunc -> nonseekable_open
/scripts/dtc/
Dchecks.c879 unsigned int dev, func, reg; in check_pci_device_reg() local
897 func = (reg & 0x700) >> 8; in check_pci_device_reg()
904 if (func == 0) { in check_pci_device_reg()
910 snprintf(unit_addr, sizeof(unit_addr), "%x,%x", dev, func); in check_pci_device_reg()