Searched refs:scripting_ops (Results 1 – 5 of 5) sorted by relevance
/Linux-v6.1/tools/perf/util/ |
D | trace-event-scripting.c | 87 struct scripting_ops python_scripting_unsupported_ops = { 97 static void register_python_scripting(struct scripting_ops *scripting_ops) in register_python_scripting() argument 103 script_spec_register("Python", scripting_ops) || in register_python_scripting() 104 script_spec_register("py", scripting_ops)) { in register_python_scripting() 116 extern struct scripting_ops python_scripting_ops; 152 struct scripting_ops perl_scripting_unsupported_ops = { 162 static void register_perl_scripting(struct scripting_ops *scripting_ops) in register_perl_scripting() argument 168 script_spec_register("Perl", scripting_ops) || in register_perl_scripting() 169 script_spec_register("pl", scripting_ops)) { in register_perl_scripting() 181 extern struct scripting_ops perl_scripting_ops;
|
D | trace-event.h | 73 struct scripting_ops { struct 101 int script_spec_register(const char *spec, struct scripting_ops *ops); argument
|
/Linux-v6.1/tools/perf/ |
D | builtin-script.c | 2237 static struct scripting_ops *scripting_ops; variable 2272 if (scripting_ops && scripting_ops->process_stat) in process_stat() 2273 scripting_ops->process_stat(&stat_config, counter, tstamp); in process_stat() 2280 if (scripting_ops && scripting_ops->process_stat_interval) in process_stat_interval() 2281 scripting_ops->process_stat_interval(tstamp); in process_stat_interval() 2292 return scripting_ops ? scripting_ops->flush_script() : 0; in flush_scripting() 2299 return scripting_ops ? scripting_ops->stop_script() : 0; in cleanup_scripting() 2373 if (scripting_ops) { in process_sample_event() 2382 scripting_ops->process_event(event, sample, evsel, &al, addr_al_ptr); in process_sample_event() 2599 if (scripting_ops && scripting_ops->process_switch && !filter_cpu(sample)) in process_switch_event() [all …]
|
/Linux-v6.1/tools/perf/util/scripting-engines/ |
D | trace-event-perl.c | 755 struct scripting_ops perl_scripting_ops = {
|
D | trace-event-python.c | 2163 struct scripting_ops python_scripting_ops = {
|