Home | History | Annotate | Download | only in scripting-engines

Lines Matching refs:script

361  * Start trace script
363 static int python_start_script(const char *script, int argc, const char **argv)
371 command_line[0] = script;
381 fp = fopen(script, "r");
383 sprintf(buf, "Can't open python script \"%s\"", script);
389 err = PyRun_SimpleFile(fp, script);
391 fprintf(stderr, "Error running python script %s\n", script);
397 fprintf(stderr, "Error starting python script %s\n", script);
412 * Stop trace script
450 fprintf(ofp, "# perf script event handlers, "
451 "generated by perf script -g python\n");
588 fprintf(stderr, "generated Python script: %s\n", fname);