Lines Matching defs:ExecCommand
23 typedef struct ExecCommand ExecCommand;
80 struct ExecCommand {
84 LIST_FIELDS(ExecCommand, command); /* useful for chaining commands */
246 ExecCommand *command,
252 void exec_command_done(ExecCommand *c);
253 void exec_command_done_array(ExecCommand *c, unsigned n);
255 ExecCommand* exec_command_free_list(ExecCommand *c);
256 void exec_command_free_array(ExecCommand **c, unsigned n);
260 void exec_command_dump(ExecCommand *c, FILE *f, const char *prefix);
261 void exec_command_dump_list(ExecCommand *c, FILE *f, const char *prefix);
262 void exec_command_append_list(ExecCommand **l, ExecCommand *e);
263 int exec_command_set(ExecCommand *c, const char *path, ...);
264 int exec_command_append(ExecCommand *c, const char *path, ...);