Lines Matching refs:scripting_ops
319 static struct scripting_ops default_scripting_ops = {
326 static struct scripting_ops *scripting_ops; variable
333 scripting_ops = &default_scripting_ops; in setup_scripting()
340 return scripting_ops->stop_script(); in cleanup_scripting()
368 scripting_ops->process_event(event, sample, evsel, session, thread); in process_sample_event()
411 struct scripting_ops *ops;
418 struct scripting_ops *ops) in script_spec__new()
452 struct scripting_ops *ops) in script_spec__findnew()
473 int script_spec_register(const char *spec, struct scripting_ops *ops) in script_spec_register()
488 static struct scripting_ops *script_spec__lookup(const char *spec) in script_spec__lookup()
532 scripting_ops = script_spec__lookup(spec); in parse_scriptname()
533 if (!scripting_ops) { in parse_scriptname()
545 scripting_ops = script_spec__lookup(++ext); in parse_scriptname()
546 if (!scripting_ops) { in parse_scriptname()
1202 scripting_ops = script_spec__lookup(generate_script_lang); in cmd_script()
1203 if (!scripting_ops) { in cmd_script()
1208 err = scripting_ops->generate_script("perf-script"); in cmd_script()
1213 err = scripting_ops->start_script(script_name, argc, argv); in cmd_script()