Home
last modified time | relevance | path

Searched refs:func (Results 1 – 16 of 16) 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 …]
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.pl134 my ($func, $file, $lastslash, $total_size, $addr, $intro);
140 $func = $1;
146 $intro = "$addr $func [$file]:";
DMakefile.kcsan23 kcsan-cflags += $(call cc-option,$(call cc-param,tsan-instrument-func-entry-exit=0))
Dkernel-doc1086 my $func = "output_${functype}_$output_mode";
1097 &$func(@_);
1106 my $func = "output_blockhead_" . $output_mode;
1107 &$func(@_);
1117 my $func = "dump_" . $decl_type;
1118 &$func(@_);
Dcheckpatch.pl6412 my $func = $1;
6414 "$func(NULL) is safe and this check is probably not required\n" . $hereprev) &&
6424 if ($lines[$linenr - 1] =~ /^\+(\t+)$func\s*\(\s*$tested\s*\)\s*;\s*$/) {
6580 my $func = $constant_func;
6581 $func =~ s/^__constant_//;
6583 "$constant_func should be $func\n" . $herecurr) &&
6585 $fixed[$fixlinenr] =~ s/\b$constant_func\b/$func/g;
7608 my $func = $entry->[0];
7620 my $test = "\\b$func\\s*\\(${skip_args}($FuncArg(?:\\|\\s*$FuncArg)*)\\s*[,\\)]";
7624 if (!($func =~ /^(?:module_param|proc_create)/ && $val eq "0") &&
/scripts/coccinelle/misc/
Dminmax.cocci21 identifier func;
27 func(...)
35 identifier func;
42 func(...)
56 identifier func;
61 func(...)
69 identifier func;
75 func(...)
83 identifier func;
90 func(...)
[all …]
/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/gendwarfksyms/
Dsymbols.c20 static unsigned int __for_each_addr(struct symbol *sym, symbol_callback_t func, in __for_each_addr() argument
34 func(match, data); in __for_each_addr()
56 static unsigned int for_each(const char *name, symbol_callback_t func, in for_each() argument
73 if (func) in for_each()
74 func(match, data); in for_each()
77 return __for_each_addr(match, func, data) + 1; in for_each()
180 void symbol_for_each(symbol_callback_t func, void *arg) in symbol_for_each() argument
186 func(sym, arg); in symbol_for_each()
193 static void elf_for_each_global(int fd, elf_symbol_callback_t func, void *arg) in elf_for_each_global() argument
274 func(name, sym, xndx, arg); in elf_for_each_global()
Dgendwarfksyms.h132 void symbol_for_each(symbol_callback_t func, void *arg);
199 void die_map_for_each(die_map_callback_t func, void *arg);
265 Dwarf_Die *die, die_callback_t func,
Ddie.c87 void die_map_for_each(die_map_callback_t func, void *arg) in die_map_for_each() argument
93 func(cd, arg); in die_map_for_each()
Ddwarf.c267 Dwarf_Die *die, die_callback_t func, in process_die_container() argument
281 res = checkp(func(state, cache, &current)); in process_die_container()
/scripts/kconfig/
Dnconf.c310 const char *func; member
319 .func = "Help",
325 .func = "SymInfo",
331 .func = "Help 2",
337 .func = "ShowAll",
343 .func = "Back",
349 .func = "Save",
355 .func = "Load",
361 .func = "SymSearch",
367 .func = "Exit",
[all …]
Dpreprocess.c114 char *(*func)(int argc, char *argv[]); member
224 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())
199 // XXX .open = func -> openfunc -> nonseekable_open
/scripts/dtc/
Dchecks.c909 unsigned int dev, func, reg; in check_pci_device_reg() local
925 func = (reg & 0x700) >> 8; in check_pci_device_reg()
932 if (func == 0) { in check_pci_device_reg()
938 snprintf(unit_addr, sizeof(unit_addr), "%x,%x", dev, func); in check_pci_device_reg()