Lines Matching refs:title
136 char title[255]; in do_showmap() local
139 sprintf(title, "SHOW MAP %d (%s)", pid, name); in do_showmap()
141 run_command(title, 10, SU_PATH, "root", "showmap", arg, NULL); in do_showmap()
145 int dump_file(const char *title, const char* path) { in dump_file() argument
150 if (title) printf("------ %s (%s) ------\n", title, path); in dump_file()
152 if (title) printf("\n"); in dump_file()
156 if (title) printf("------ %s (%s", title, path); in dump_file()
158 if (title) { in dump_file()
181 if (title) printf("\n"); in dump_file()
186 int run_command(const char *title, int timeout_seconds, const char *command, ...) { in run_command() argument
204 if (title) printf("------ %s (%s", title, command); in run_command()
208 if (title) printf(" %s", args[arg]); in run_command()
210 if (title) printf(") ------\n"); in run_command()
230 if (title) printf("[%s: %.1fs elapsed]\n\n", command, elapsed); in run_command()