Lines Matching refs:cmd
36 Command* cmd; in command_create() local
38 cmd = xmalloc (sizeof (Command)); in command_create()
41 cmd->non_interactive = 1; in command_create()
43 cmd->non_interactive = 0; in command_create()
45 cmd->names = (StrList*) names; in command_create()
46 cmd->method = method; in command_create()
47 cmd->summary = (StrList*) summary; in command_create()
48 cmd->help = (StrList*) help; in command_create()
50 return cmd; in command_create()
54 command_destroy (Command* cmd) in command_destroy() argument
56 str_list_destroy (cmd->names); in command_destroy()
57 str_list_destroy (cmd->summary); in command_destroy()
58 str_list_destroy (cmd->help); in command_destroy()
59 free (cmd); in command_destroy()
63 command_register (Command** list, Command* cmd) in command_register() argument
69 list [i] = cmd; in command_register()
119 command_print_summary (Command* cmd) in command_print_summary() argument
122 str_list_print_wrap (cmd->summary, screen_width(), 2, 8); in command_print_summary()
127 command_print_help (Command* cmd) in command_print_help() argument
129 command_print_summary (cmd); in command_print_help()
130 if (cmd->help) { in command_print_help()
132 str_list_print_wrap (cmd->help, screen_width(), 8, 8); in command_print_help()
137 command_run (Command* cmd, PedDevice** dev) in command_run() argument
139 return cmd->method (dev); in command_run()