Lines Matching defs:script
14 /* 2048 lines should be enough for a script output */
35 * Usually the full path for a script is:
43 * When success, will copy the full path of the selected script
52 /* Preset the script name to SCRIPT_NAMELEN */
118 struct perf_script_browser script = {
127 INIT_LIST_HEAD(&script.entries);
139 sprintf(cmd, "perf script -s %s ", script_name);
163 list_add_tail(&sline->node, &script.entries);
165 if (script.b.width < retlen)
166 script.b.width = retlen;
173 if (script.b.width > AVERAGE_LINE_LEN)
174 script.b.width = AVERAGE_LINE_LEN;
180 script.nr_lines = nr_entries;
181 script.b.nr_entries = nr_entries;
182 script.b.entries = &script.entries;
184 ret = script_browser__run(&script);