Home
last modified time | relevance | path

Searched refs:funcs (Results 1 – 10 of 10) sorted by relevance

/tools/arch/x86/kcpuid/
Dkcpuid.c63 struct cpuid_func *funcs; member
149 func = &range->funcs[f & 0xffff]; in cpuid_store()
187 struct cpuid_func *func = &range->funcs[f]; in raw_dump_range()
230 range->funcs = malloc(sizeof(struct cpuid_func) * idx_func); in setup_cpuid_range()
231 if (!range->funcs) in setup_cpuid_range()
235 memset(range->funcs, 0, sizeof(struct cpuid_func) * idx_func); in setup_cpuid_range()
343 func = &range->funcs[index]; in parse_line()
496 show_func(&range->funcs[i]); in show_range()
510 return &range->funcs[index]; in index_to_func()
/tools/bpf/bpftool/
Dcfg.c13 struct list_head funcs; member
55 list_first_entry(&cfg->funcs, struct func_node, l)
57 list_last_entry(&cfg->funcs, struct func_node, l)
67 list_for_each_entry(func, &cfg->funcs, l) { in cfg_append_func()
338 INIT_LIST_HEAD(&cfg->funcs); in cfg_build()
343 list_for_each_entry(func, &cfg->funcs, l) { in cfg_build()
358 list_for_each_entry_safe(func, func2, &cfg->funcs, l) { in cfg_destroy()
463 list_for_each_entry(func, &cfg->funcs, l) { in cfg_dump()
/tools/perf/Documentation/
Dperf-ftrace.txt35 --funcs::
73 --trace-funcs=::
81 --notrace-funcs=::
93 --graph-funcs=::
101 --nograph-funcs=::
Dperf-probe.txt23 'perf probe' [options] --funcs
98 --funcs[=FILTER]::
109 (Only for --vars and --funcs) Set filter. FILTER is a combination of glob
112 for --funcs.
141 space tracing. Can also be used with --funcs option.
/tools/perf/tests/
Ddwarf-unwind.c77 static const char *funcs[MAX_STACK] = { in unwind_entry() local
107 symbol, entry->ip, funcs[idx]); in unwind_entry()
108 return strcmp((const char *) symbol, funcs[idx]); in unwind_entry()
/tools/bpf/resolve_btfids/
Dmain.c108 struct rb_root funcs; member
444 id = add_symbol(&obj->funcs, prefix, sizeof(BTF_FUNC) - 1); in symbols_collect()
514 root = &obj->funcs; in symbols_resolve()
651 __symbols_patch(obj, &obj->funcs) || in symbols_patch()
690 .funcs = RB_ROOT, in main()
/tools/perf/tests/shell/
Dtest_uprobe_from_different_cu.sh80 perf probe -x ${temp_dir}/testfile --funcs foo
/tools/power/pm-graph/
Dbootgraph.py660 funcs = devstats[n]['fstat']
661 for f in sorted(funcs, key=lambda k:(funcs[k], k), reverse=True):
662 if funcs[f][0] < 0.01 and len(funcs) > 10:
664 statinfo += '\t\t"%f|%s|%d",\n' % (funcs[f][0], f, funcs[f][1])
DREADME324 Sample for editing timeline funcs (moves internal functions into config)
/tools/perf/
Dbuiltin-ftrace.c366 static int __set_tracing_filter(const char *filter_file, struct list_head *funcs) in __set_tracing_filter() argument
370 list_for_each_entry(pos, funcs, list) { in __set_tracing_filter()