Home
last modified time | relevance | path

Searched refs:scripting_ops (Results 1 – 5 of 5) sorted by relevance

/Linux-v4.19/tools/perf/util/
Dtrace-event-scripting.c79 struct scripting_ops python_scripting_unsupported_ops = {
88 static void register_python_scripting(struct scripting_ops *scripting_ops) in register_python_scripting() argument
94 script_spec_register("Python", scripting_ops) || in register_python_scripting()
95 script_spec_register("py", scripting_ops)) { in register_python_scripting()
107 extern struct scripting_ops python_scripting_ops;
142 struct scripting_ops perl_scripting_unsupported_ops = {
151 static void register_perl_scripting(struct scripting_ops *scripting_ops) in register_perl_scripting() argument
157 script_spec_register("Perl", scripting_ops) || in register_perl_scripting()
158 script_spec_register("pl", scripting_ops)) { in register_perl_scripting()
170 extern struct scripting_ops perl_scripting_ops;
Dtrace-event.h74 struct scripting_ops { struct
91 int script_spec_register(const char *spec, struct scripting_ops *ops); argument
/Linux-v4.19/tools/perf/
Dbuiltin-script.c1715 static struct scripting_ops *scripting_ops; variable
1753 if (scripting_ops && scripting_ops->process_stat) in process_stat()
1754 scripting_ops->process_stat(&stat_config, counter, tstamp); in process_stat()
1761 if (scripting_ops && scripting_ops->process_stat_interval) in process_stat_interval()
1762 scripting_ops->process_stat_interval(tstamp); in process_stat_interval()
1773 return scripting_ops ? scripting_ops->flush_script() : 0; in flush_scripting()
1780 return scripting_ops ? scripting_ops->stop_script() : 0; in cleanup_scripting()
1820 if (scripting_ops) in process_sample_event()
1821 scripting_ops->process_event(event, sample, evsel, &al); in process_sample_event()
2256 struct scripting_ops *ops;
[all …]
/Linux-v4.19/tools/perf/util/scripting-engines/
Dtrace-event-perl.c745 struct scripting_ops perl_scripting_ops = {
Dtrace-event-python.c1773 struct scripting_ops python_scripting_ops = {