Lines Matching refs:command_line
40 recurse_read_control_structure (struct command_line *current_cmd);
73 static struct command_line *
76 struct command_line *cmd; in build_command_line()
81 cmd = (struct command_line *) xmalloc (sizeof (struct command_line)); in build_command_line()
87 = (struct command_line **) xmalloc (sizeof (struct command_line *) in build_command_line()
89 memset (cmd->body_list, 0, sizeof (struct command_line *) * cmd->body_count); in build_command_line()
97 static struct command_line *
100 struct command_line *cmd; in get_command_line()
123 print_command_lines (struct ui_out *uiout, struct command_line *cmd, in print_command_lines()
126 struct command_line *list; in print_command_lines()
255 struct command_line *cmdlines; in execute_user_command()
293 execute_control_command (struct command_line *cmd) in execute_control_command()
296 struct command_line *current; in execute_control_command()
445 struct command_line *command = NULL; in while_command()
463 struct command_line *command = NULL; in if_command()
654 realloc_body_list (struct command_line *command, int new_length) in realloc_body_list()
657 struct command_line **body_list; in realloc_body_list()
665 body_list = (struct command_line **) in realloc_body_list()
666 xmalloc (sizeof (struct command_line *) * new_length); in realloc_body_list()
668 memcpy (body_list, command->body_list, sizeof (struct command_line *) * n); in realloc_body_list()
679 read_next_line (struct command_line **command) in read_next_line()
747 *command = (struct command_line *) in read_next_line()
748 xmalloc (sizeof (struct command_line)); in read_next_line()
757 *command = (struct command_line *) in read_next_line()
758 xmalloc (sizeof (struct command_line)); in read_next_line()
768 *command = (struct command_line *) in read_next_line()
769 xmalloc (sizeof (struct command_line)); in read_next_line()
788 recurse_read_control_structure (struct command_line *current_cmd) in recurse_read_control_structure()
793 struct command_line **body_ptr, *child_tail, *next; in recurse_read_control_structure()
899 struct command_line *
902 struct command_line *head, *tail, *next; in read_command_lines()
987 free_command_lines (struct command_line **lptr) in free_command_lines()
989 struct command_line *l = *lptr; in free_command_lines()
990 struct command_line *next; in free_command_lines()
991 struct command_line **blist; in free_command_lines()
1017 make_cleanup_free_command_lines (struct command_line **arg) in make_cleanup_free_command_lines()
1022 struct command_line *
1023 copy_command_lines (struct command_line *cmds) in copy_command_lines()
1025 struct command_line *result = NULL; in copy_command_lines()
1029 result = (struct command_line *) xmalloc (sizeof (struct command_line)); in copy_command_lines()
1039 result->body_list = (struct command_line **) in copy_command_lines()
1040 xmalloc (sizeof (struct command_line *) * cmds->body_count); in copy_command_lines()
1085 struct command_line *cmds; in define_command()
1190 struct command_line *doclines; in document_command()
1209 struct command_line *cl1; in document_command()
1304 struct command_line *cmdlines; in show_user_1()