Home
last modified time | relevance | path

Searched refs:command_line (Results 1 – 25 of 33) sorted by relevance

12

/freebsd-11-stable/contrib/gdb/gdb/cli/
HDcli-script.c40 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()
[all …]
HDcli-script.h23 struct command_line;
43 execute_control_command (struct command_line *cmd);
46 struct command_line *, unsigned int);
48 extern struct command_line * copy_command_lines (struct command_line *cmds);
50 struct cleanup *make_cleanup_free_command_lines (struct command_line **arg);
HDcli-decode.h181 struct command_line *user_commands;
/freebsd-11-stable/contrib/binutils/ld/
HDlexsup.c761 command_line.cref = TRUE; in parse_args()
765 command_line.force_common_definition = TRUE; in parse_args()
792 command_line.interpreter = optarg; in parse_args()
798 command_line.endian = ENDIAN_BIG; in parse_args()
801 command_line.endian = ENDIAN_LITTLE; in parse_args()
804 command_line.embedded_relocs = TRUE; in parse_args()
814 if (command_line.auxiliary_filters == NULL) in parse_args()
816 command_line.auxiliary_filters = xmalloc (2 * sizeof (char *)); in parse_args()
817 command_line.auxiliary_filters[0] = optarg; in parse_args()
818 command_line.auxiliary_filters[1] = NULL; in parse_args()
[all …]
HDldmain.c106 args_type command_line; variable
253 command_line.warn_mismatch = TRUE; in main()
254 command_line.warn_search_mismatch = TRUE; in main()
255 command_line.check_section_addresses = TRUE; in main()
297 else if (command_line.relax) in main()
308 switch (command_line.symbolic) in main()
319 command_line.dynamic_list = dynamic_list_unset; in main()
325 command_line.dynamic_list = dynamic_list_data; in main()
329 switch (command_line.dynamic_list) in main()
342 if (command_line.filter_shlib) in main()
[all …]
HDldfile.c219 switch (command_line.endian) in ldfile_try_open_bfd()
255 if (command_line.warn_search_mismatch) in ldfile_try_open_bfd()
278 command_line.accept_unknown_input_arch) in ldfile_try_open_bfd()
284 if (command_line.warn_search_mismatch) in ldfile_try_open_bfd()
HDldwrite.c77 if (command_line.endian == ENDIAN_BIG) in build_link_order()
79 else if (command_line.endian == ENDIAN_LITTLE) in build_link_order()
84 else if (command_line.endian == ENDIAN_UNSET) in build_link_order()
HDldlang.c2673 if (command_line.endian == ENDIAN_BIG in closest_target_match()
2677 if (command_line.endian == ENDIAN_LITTLE in closest_target_match()
2764 if (command_line.endian != ENDIAN_UNSET) in open_output()
2775 if (command_line.endian == ENDIAN_BIG) in open_output()
4332 if (command_line.check_section_addresses) in lang_size_sections_1()
5138 command_line.accept_unknown_input_arch); in lang_check()
5160 if (command_line.warn_mismatch) in lang_check()
5178 if (! command_line.warn_mismatch) in lang_check()
5182 if (command_line.warn_mismatch) in lang_check()
5186 if (! command_line.warn_mismatch) in lang_check()
[all …]
HDChangeLog599 * ldmain.c (main): Initialize command_line.symbolic to
600 symbolic_unset and command_line.dynamic_list to
610 here. Set command_line.symbolic for -Bsymbolic. Set
611 command_line.dynamic_list and command_line.symbolic for
635 * ldmain.c (main): Handle command_line.default_script.
HDld.h228 extern args_type command_line;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/
HDCompletionRequest.cpp14 CompletionRequest::CompletionRequest(llvm::StringRef command_line, in CompletionRequest() argument
17 : m_command(command_line), m_raw_cursor_pos(raw_cursor_pos), in CompletionRequest()
19 assert(raw_cursor_pos <= command_line.size() && "Out of bounds cursor?"); in CompletionRequest()
24 llvm::StringRef partial_command(command_line.substr(0, raw_cursor_pos)); in CompletionRequest()
/freebsd-11-stable/contrib/gdb/gdb/
HDgdbcmd.h115 enum command_control_type execute_control_command (struct command_line *);
117 extern void print_command_line (struct command_line *, unsigned int,
120 struct command_line *, unsigned int);
HDdefs.h678 struct command_line struct
680 struct command_line *next; argument
684 struct command_line **body_list; argument
687 extern struct command_line *read_command_lines (char *, int);
689 extern void free_command_lines (struct command_line **);
HDbreakpoint.h317 struct command_line *commands;
582 struct command_line *commands;
/freebsd-11-stable/contrib/llvm-project/lldb/bindings/interface/
HDSBCommandInterpreter.i167 ResolveCommand(const char *command_line, SBCommandReturnObject &result);
203 …HandleCommand (const char *command_line, lldb::SBCommandReturnObject &result, bool add_to_history …
206 …HandleCommand (const char *command_line, SBExecutionContext &exe_ctx, SBCommandReturnObject &resul…
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
HDSBCommandInterpreter.cpp251 SBCommandInterpreter::HandleCommand(const char *command_line, in HandleCommand() argument
256 command_line, result, add_to_history); in HandleCommand()
259 return HandleCommand(command_line, sb_exe_ctx, result, add_to_history); in HandleCommand()
263 const char *command_line, SBExecutionContext &override_context, in HandleCommand() argument
268 command_line, override_context, result, add_to_history); in HandleCommand()
279 if (command_line && IsValid()) { in HandleCommand()
281 m_opaque_ptr->HandleCommand(command_line, in HandleCommand()
531 void SBCommandInterpreter::ResolveCommand(const char *command_line, in ResolveCommand() argument
535 command_line, result); in ResolveCommand()
538 if (command_line && IsValid()) { in ResolveCommand()
[all …]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
HDsanitizer_symbolizer_win.cpp226 InternalScopedString command_line(kMaxPathLength * 3); in StartSymbolizerSubprocess() local
237 command_line.append("\"%s\" ", arg); in StartSymbolizerSubprocess()
239 VReport(3, "Launching symbolizer command: %s\n", command_line.data()); in StartSymbolizerSubprocess()
251 command_line.data(), // Command line in StartSymbolizerSubprocess()
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/
HDSBCommandInterpreter.h127 lldb::ReturnStatus HandleCommand(const char *command_line,
131 lldb::ReturnStatus HandleCommand(const char *command_line,
236 void ResolveCommand(const char *command_line, SBCommandReturnObject &result);
/freebsd-11-stable/contrib/binutils/binutils/
HDarparse.y72 session command_line
76 command_line:
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/
HDCommandInterpreter.h259 bool HandleCommand(const char *command_line, LazyBool add_to_history,
309 CommandObject *GetCommandObjectForCommand(llvm::StringRef &command_line);
473 void ResolveCommand(const char *command_line, CommandReturnObject &result);
524 CommandObject *ResolveCommandImpl(std::string &command_line,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/
HDCommandInterpreter.cpp188 void CommandInterpreter::ResolveCommand(const char *command_line, in ResolveCommand() argument
190 std::string command = command_line; in ResolveCommand()
1600 bool CommandInterpreter::HandleCommand(const char *command_line, in HandleCommand() argument
1609 std::string command_string(command_line); in HandleCommand()
1610 std::string original_command_string(command_line); in HandleCommand()
1614 command_line); in HandleCommand()
1616 LLDB_LOGF(log, "Processing command: %s", command_line); in HandleCommand()
1619 Timer scoped_timer(func_cat, "Handling command: %s.", command_line); in HandleCommand()
1673 command_line = m_repeat_command.c_str(); in HandleCommand()
1674 command_string = command_line; in HandleCommand()
[all …]
/freebsd-11-stable/contrib/binutils/ld/emultempl/
HDppc32elf.em127 if (!command_line.relax)
154 command_line.relax = TRUE;
HDneedrelax.em36 command_line.relax = TRUE;
HDsunos.em446 if (gld${EMULATION_NAME}_search_needed (command_line.rpath_link,
449 if (command_line.rpath != NULL)
451 if (gld${EMULATION_NAME}_search_needed (command_line.rpath, lname))
479 if (command_line.rpath != NULL)
765 if (command_line.rpath)
767 srules->size = strlen (command_line.rpath);
768 srules->contents = (bfd_byte *) command_line.rpath;
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
HDCompletionRequest.h102 CompletionRequest(llvm::StringRef command_line, unsigned raw_cursor_pos,

12