Home | History | Annotate | Download | only in cli

Lines Matching refs:command_line

53 struct command_line;
55 extern void free_command_lines (struct command_line **);
57 /* A deleter for command_line that calls free_command_lines. */
61 void operator() (command_line *cmd_lines) const
67 /* A reference-counted struct command_line. */
68 typedef std::shared_ptr<command_line> counted_command_line;
70 /* A unique_ptr specialization for command_line. */
71 typedef std::unique_ptr<command_line, command_lines_deleter> command_line_up;
76 struct command_line
78 explicit command_line (command_control_type type_, char *line_ = nullptr)
85 DISABLE_COPY_AND_ASSIGN (command_line);
87 struct command_line *next = nullptr;
108 friend void free_command_lines (struct command_line **);
110 ~command_line ()
141 extern void execute_control_commands (struct command_line *cmdlines,
149 (struct command_line *commands, int from_tty);
154 execute_control_command (struct command_line *cmd,
158 execute_control_command_untraced (struct command_line *cmd);
164 struct command_line *, unsigned int);