Lines Matching defs:scripting_ops

2274 static struct scripting_ops	*scripting_ops;
2309 if (scripting_ops && scripting_ops->process_stat)
2310 scripting_ops->process_stat(&stat_config, counter, tstamp);
2317 if (scripting_ops && scripting_ops->process_stat_interval)
2318 scripting_ops->process_stat_interval(tstamp);
2331 return scripting_ops ? scripting_ops->flush_script() : 0;
2338 return scripting_ops ? scripting_ops->stop_script() : 0;
2412 if (scripting_ops) {
2421 scripting_ops->process_event(event, sample, evsel, &al, addr_al_ptr);
2639 if (scripting_ops && scripting_ops->process_switch && !filter_cpu(sample))
2640 scripting_ops->process_switch(event, sample, machine);
2652 if (scripting_ops && scripting_ops->process_auxtrace_error) {
2653 scripting_ops->process_auxtrace_error(session, event);
2676 if (scripting_ops && scripting_ops->process_throttle)
2677 scripting_ops->process_throttle(event, sample, machine);
2811 if (script->show_switch_events || (scripting_ops && scripting_ops->process_switch))
2813 if (scripting_ops && scripting_ops->process_auxtrace_error)
2852 struct scripting_ops *ops;
2859 struct scripting_ops *ops)
2886 int script_spec_register(const char *spec, struct scripting_ops *ops)
2903 static struct scripting_ops *script_spec__lookup(const char *spec)
2931 if (!scripting_ops) {
2937 scripting_ops = script_spec__lookup(++ext);
2938 if (!scripting_ops)
2948 exec_path, scripting_ops->dirname, script);
2978 scripting_ops = script_spec__lookup(spec);
2979 if (!scripting_ops) {
2991 scripting_ops = script_spec__lookup(++ext);
2992 if (!scripting_ops) {
4312 scripting_ops = script_spec__lookup(generate_script_lang);
4313 if (!scripting_ops) {
4319 err = scripting_ops->generate_script(session->tevent.pevent,
4322 err = scripting_ops->generate_script(NULL, "perf-script");
4332 err = scripting_ops->start_script(script_name, argc, argv, session);