Home
last modified time | relevance | path

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

/scripts/
Dbootgraph.pl85 my $func = $2;
87 $start{$func} = $1;
88 $type{$func} = 0;
94 $pids{$func} = $1;
101 my $func;
103 $func = "wait_" . $pid . "_1";
107 $func = "wait_" . $pid . "_" . $pidctr{$pid};
110 $start{$func} = $1;
111 $type{$func} = 1;
116 $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:"
169 …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.pl120 my ($func, $file, $lastslash);
124 $func = $1;
150 my $intro = "$addr $func [$file]:";
167 my $intro = "$addr $func [$file]:";
Dkernel-doc2128 my $func = "output_${functype}_$output_mode";
2137 &$func(@_);
2146 my $func = "output_blockhead_" . $output_mode;
2147 &$func(@_);
2157 my $func = "dump_" . $decl_type;
2158 &$func(@_);
2868 my $func;
Dcheckpatch.pl5336 my $func = $1;
5338 "$func(NULL) is safe and this check is probably not required\n" . $hereprev) &&
5348 if ($lines[$linenr - 1] =~ /^\+(\t+)$func\s*\(\s*$tested\s*\)\s*;\s*$/) {
5481 my $func = $constant_func;
5482 $func =~ s/^__constant_//;
5484 "$constant_func should be $func\n" . $herecurr) &&
5486 $fixed[$fixlinenr] =~ s/\b$constant_func\b/$func/g;
6296 my $func = $entry->[0];
6311 my $test = "\\b$func\\s*\\(${skip_args}($FuncArg(?:\\|\\s*$FuncArg)*)\\s*[,\\)]";
/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/coccinelle/api/
Dsetup_timer.cocci15 expression e, func, da;
19 +setup_timer (&e, func, da);
22 -e.function = func;
26 -e.function = func;
93 expression da, e, func;
99 * e@j1.function = func;
103 * e@j2.function = func;
Dstream_open.cocci48 // XXX wait_* can be called not directly from current function (e.g. func -> f -> g -> wait())
193 // XXX .open = func -> openfunc -> nonseekable_open
/scripts/kconfig/
Dnconf.c302 const char *func; member
311 .func = "Help",
317 .func = "SymInfo",
323 .func = "Help 2",
329 .func = "ShowAll",
335 .func = "Back",
341 .func = "Save",
347 .func = "Load",
353 .func = "SymSearch",
359 .func = "Exit",
[all …]
/scripts/dtc/
Dchecks.c773 unsigned int dev, func, reg; in check_pci_device_reg() local
792 func = (reg & 0x700) >> 8; in check_pci_device_reg()
801 if (func == 0) { in check_pci_device_reg()
807 snprintf(unit_addr, sizeof(unit_addr), "%x,%x", dev, func); in check_pci_device_reg()