Lines Matching refs:command
29 char *command; /* hush command of entry */ member
241 free(iter->command); in bootmenu_destroy()
288 entry->command = malloc(len + 1); in bootmenu_create()
289 if (!entry->command) { in bootmenu_create()
294 memcpy(entry->command, sep + 1, len); in bootmenu_create()
295 entry->command[len] = 0; in bootmenu_create()
327 entry->command = strdup(""); in bootmenu_create()
328 if (!entry->command) { in bootmenu_create()
362 char *command = NULL; in bootmenu_show() local
412 command = strdup(iter->command); in bootmenu_show()
425 if (title && command) { in bootmenu_show()
428 run_command(command, 0); in bootmenu_show()
429 free(command); in bootmenu_show()