Searched refs:scripting_ops (Results 1 – 6 of 6) sorted by relevance
/linux-6.12.1/tools/perf/util/ |
D | trace-event-scripting.c | 91 struct scripting_ops python_scripting_unsupported_ops = { 101 static void register_python_scripting(struct scripting_ops *scripting_ops) in register_python_scripting() argument 107 script_spec_register("Python", scripting_ops) || in register_python_scripting() 108 script_spec_register("py", scripting_ops)) { in register_python_scripting() 120 extern struct scripting_ops python_scripting_ops; 157 struct scripting_ops perl_scripting_unsupported_ops = { 167 static void register_perl_scripting(struct scripting_ops *scripting_ops) in register_perl_scripting() argument 173 script_spec_register("Perl", scripting_ops) || in register_perl_scripting() 174 script_spec_register("pl", scripting_ops)) { in register_perl_scripting() 186 extern struct scripting_ops perl_scripting_ops;
|
D | trace-event.h | 91 struct scripting_ops { struct 119 int script_spec_register(const char *spec, struct scripting_ops *ops); argument
|
D | python.c | 1405 int script_spec_register(const char *spec __maybe_unused, struct scripting_ops *ops __maybe_unused) in script_spec_register()
|
/linux-6.12.1/tools/perf/ |
D | builtin-script.c | 2385 static struct scripting_ops *scripting_ops; variable 2420 if (scripting_ops && scripting_ops->process_stat) in process_stat() 2421 scripting_ops->process_stat(&stat_config, counter, tstamp); in process_stat() 2428 if (scripting_ops && scripting_ops->process_stat_interval) in process_stat_interval() 2429 scripting_ops->process_stat_interval(tstamp); in process_stat_interval() 2442 return scripting_ops ? scripting_ops->flush_script() : 0; in flush_scripting() 2449 return scripting_ops ? scripting_ops->stop_script() : 0; in cleanup_scripting() 2523 if (scripting_ops) { in process_sample_event() 2532 scripting_ops->process_event(event, sample, evsel, &al, addr_al_ptr); in process_sample_event() 2750 if (scripting_ops && scripting_ops->process_switch && !filter_cpu(sample)) in process_switch_event() [all …]
|
/linux-6.12.1/tools/perf/util/scripting-engines/ |
D | trace-event-perl.c | 764 struct scripting_ops perl_scripting_ops = {
|
D | trace-event-python.c | 2231 struct scripting_ops python_scripting_ops = {
|