Lines Matching refs:command
31 char *command; /* hush command of entry */ member
271 free(iter->command); in bootmenu_destroy()
323 entry->command = malloc(len + 1); in bootmenu_create()
324 if (!entry->command) { in bootmenu_create()
329 memcpy(entry->command, sep + 1, len); in bootmenu_create()
330 entry->command[len] = 0; in bootmenu_create()
362 entry->command = strdup(""); in bootmenu_create()
363 if (!entry->command) { in bootmenu_create()
431 char *command = NULL; in bootmenu_show() local
482 command = strdup(iter->command); in bootmenu_show()
495 if (title && command) { in bootmenu_show()
498 run_command(command, 0); in bootmenu_show()
499 free(command); in bootmenu_show()