| /src/external/gpl3/gdb/dist/gdb/cli/ |
| cli-script.h | 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 struct 78 explicit command_line (command_control_type type_, char *line_ = nullptr function in struct:command_line [all...] |
| cli-script.c | 48 struct command_line *current_cmd, 175 return command_line_up (new command_line (type, xstrdup (args))); 202 print_command_lines (struct ui_out *uiout, struct command_line *cmd, 205 struct command_line *list; 403 execute_control_commands (struct command_line *cmdlines, int from_tty) 425 execute_control_commands_to_string (struct command_line *commands, 449 struct command_line *cmdlines = cmdlines_copy.get (); 513 execute_control_command_1 (struct command_line *cmd, int from_tty) 515 struct command_line *current; 698 execute_control_command (struct command_line *cmd, int from_tty [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/cli/ |
| cli-script.h | 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 struct 78 explicit command_line (command_control_type type_, char *line_ = nullptr function in struct:command_line [all...] |
| cli-script.c | 48 struct command_line *current_cmd, 175 return command_line_up (new command_line (type, xstrdup (args))); 202 print_command_lines (struct ui_out *uiout, struct command_line *cmd, 205 struct command_line *list; 403 execute_control_commands (struct command_line *cmdlines, int from_tty) 425 execute_control_commands_to_string (struct command_line *commands, 449 struct command_line *cmdlines = cmdlines_copy.get (); 513 execute_control_command_1 (struct command_line *cmd, int from_tty) 515 struct command_line *current; 698 execute_control_command (struct command_line *cmd, int from_tty [all...] |
| /src/external/gpl3/binutils/dist/ld/ |
| lexsup.c | 901 command_line.cref = true; 905 command_line.force_common_definition = true; 908 command_line.force_group_allocation = true; 932 command_line.interpreter = optarg; 942 command_line.endian = ENDIAN_BIG; 945 command_line.endian = ENDIAN_LITTLE; 948 command_line.embedded_relocs = true; 999 if (command_line.auxiliary_filters == NULL) 1001 command_line.auxiliary_filters = (char **) 1003 command_line.auxiliary_filters[0] = optarg [all...] |
| ldemul.c | 267 if (command_line.endian == ENDIAN_BIG) 269 else if (command_line.endian == ENDIAN_LITTLE) 271 else if (command_line.endian == ENDIAN_UNSET)
|
| /src/external/gpl3/binutils.old/dist/ld/ |
| lexsup.c | 910 command_line.cref = true; 914 command_line.force_common_definition = true; 917 command_line.force_group_allocation = true; 941 command_line.interpreter = optarg; 951 command_line.endian = ENDIAN_BIG; 954 command_line.endian = ENDIAN_LITTLE; 957 command_line.embedded_relocs = true; 1008 if (command_line.auxiliary_filters == NULL) 1010 command_line.auxiliary_filters = (char **) 1012 command_line.auxiliary_filters[0] = optarg [all...] |
| ldemul.c | 267 if (command_line.endian == ENDIAN_BIG) 269 else if (command_line.endian == ENDIAN_LITTLE) 271 else if (command_line.endian == ENDIAN_UNSET)
|
| /src/external/gpl3/binutils/dist/binutils/ |
| arparse.y | 72 session command_line 76 command_line: label
|
| /src/external/gpl3/binutils.old/dist/binutils/ |
| arparse.y | 72 session command_line 76 command_line: label
|
| /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
| sanitizer_symbolizer_win.cc | 224 InternalScopedString command_line(kMaxPathLength * 3); 235 command_line.append("\"%s\" ", arg); 237 VReport(3, "Launching symbolizer command: %s\n", command_line.data()); 249 command_line.data(), // Command line
|
| /src/external/gpl2/gmake/dist/ |
| job.h | 49 unsigned int command_line; /* Index into above. */ member in struct:child 50 char *command_ptr; /* Ptr into command_lines[command_line]. */
|
| /src/external/gpl2/gmake/dist/w32/subproc/ |
| sub_proc.c | 422 char *command_line; local 497 command_line = make_command_line( shell_name, exec_path, argv); 499 command_line = make_command_line( shell_name, file_info.szPathName, 502 if ( command_line == NULL ) { 512 free( command_line ); 542 command_line ? command_line : "NULL")); 545 command_line, 558 exec_path ? exec_path : "NULL", command_line); 560 free( command_line ); 959 char* command_line; local [all...] |
| /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/ |
| sanitizer_symbolizer_win.cpp | 225 InternalScopedString command_line; local 234 command_line.AppendF("\"%s\" ", arg); 236 VReport(3, "Launching symbolizer command: %s\n", command_line.data()); 248 command_line.data(), // Command line
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/ |
| sanitizer_symbolizer_win.cpp | 227 InternalScopedString command_line; local 238 command_line.append("\"%s\" ", arg); 240 VReport(3, "Launching symbolizer command: %s\n", command_line.data()); 252 command_line.data(), // Command line
|
| /src/external/gpl3/gdb/dist/gdb/ |
| extension.h | 29 struct command_line; 290 extern void eval_ext_lang_from_control_command (struct command_line *cmd);
|
| /src/external/gpl3/gdb.old/dist/gdb/ |
| extension.h | 29 struct command_line; 289 extern void eval_ext_lang_from_control_command (struct command_line *cmd);
|
| extension-priv.h | 132 struct command_line *);
|
| /src/external/gpl3/gdb/dist/gdb/guile/ |
| guile.c | 81 (const struct extension_language_defn *, struct command_line *); 219 /* Given a command_line, return a command string suitable for passing 225 compute_scheme_string (struct command_line *l) 227 struct command_line *iter; 255 (const struct extension_language_defn *extlang, struct command_line *cmd)
|
| /src/external/gpl3/gdb/dist/sim/h8300/ |
| h8300-sim.h | 122 char **command_line; /* Pointer to command line arguments. */ member in struct:h8300_sim_cpu
|
| /src/external/gpl3/gdb.old/dist/gdb/compile/ |
| compile.h | 176 extern void eval_compile_command (struct command_line *cmd,
|
| /src/external/gpl3/gdb.old/dist/gdb/guile/ |
| guile.c | 81 (const struct extension_language_defn *, struct command_line *); 218 /* Given a command_line, return a command string suitable for passing 224 compute_scheme_string (struct command_line *l) 226 struct command_line *iter; 254 (const struct extension_language_defn *extlang, struct command_line *cmd)
|
| /src/external/gpl3/gdb.old/dist/sim/h8300/ |
| h8300-sim.h | 122 char **command_line; /* Pointer to command line arguments. */ member in struct:h8300_sim_cpu
|
| /src/external/gpl3/gdb/dist/gdb/nat/ |
| windows-nat.c | 750 CHAR *command_line, DWORD flags, 799 BOOL result = do_create_process (image, command_line, 824 command_line, /* command line */ 838 create_process (const char *image, char *command_line, DWORD flags, 844 return create_process_wrapper (CreateProcessA, image, command_line, flags, 854 create_process (const wchar_t *image, wchar_t *command_line, DWORD flags, 860 return create_process_wrapper (CreateProcessW, image, command_line, flags,
|
| /src/external/gpl3/gdb.old/dist/gdb/nat/ |
| windows-nat.c | 779 CHAR *command_line, DWORD flags, 828 BOOL result = do_create_process (image, command_line, 853 command_line, /* command line */ 867 create_process (const char *image, char *command_line, DWORD flags, 873 return create_process_wrapper (CreateProcessA, image, command_line, flags, 883 create_process (const wchar_t *image, wchar_t *command_line, DWORD flags, 889 return create_process_wrapper (CreateProcessW, image, command_line, flags,
|