Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DCompletionRequest.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/contrib/llvm-project/lldb/source/API/
H A DSBCommandInterpreter.cpp170 SBCommandInterpreter::HandleCommand(const char *command_line, in HandleCommand() argument
173 LLDB_INSTRUMENT_VA(this, command_line, result, add_to_history); in HandleCommand()
176 return HandleCommand(command_line, sb_exe_ctx, result, add_to_history); in HandleCommand()
180 const char *command_line, SBExecutionContext &override_context, in HandleCommand() argument
182 LLDB_INSTRUMENT_VA(this, command_line, override_context, result, in HandleCommand()
186 if (command_line && IsValid()) { in HandleCommand()
190 m_opaque_ptr->HandleCommand(command_line, do_add_to_history, in HandleCommand()
194 m_opaque_ptr->HandleCommand(command_line, do_add_to_history, in HandleCommand()
425 void SBCommandInterpreter::ResolveCommand(const char *command_line, in ResolveCommand() argument
427 LLDB_INSTRUMENT_VA(this, command_line, result); in ResolveCommand()
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_win.cpp225 InternalScopedString command_line; in StartSymbolizerSubprocess()
234 command_line.AppendF("\"%s\" ", arg); in StartSymbolizerSubprocess()
236 VReport(3, "Launching symbolizer command: %s\n", command_line.data()); in StartSymbolizerSubprocess()
248 command_line.data(), // Command line in StartSymbolizerSubprocess()
227 InternalScopedString command_line; StartSymbolizerSubprocess() local
/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBCommandInterpreter.h193 lldb::ReturnStatus HandleCommand(const char *command_line,
197 lldb::ReturnStatus HandleCommand(const char *command_line,
315 void ResolveCommand(const char *command_line, SBCommandReturnObject &result);
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandInterpreter.h365 bool HandleCommand(const char *command_line, LazyBool add_to_history,
369 bool HandleCommand(const char *command_line, LazyBool add_to_history,
422 CommandObject *GetCommandObjectForCommand(llvm::StringRef &command_line);
630 void ResolveCommand(const char *command_line, CommandReturnObject &result);
708 CommandObject *ResolveCommandImpl(std::string &command_line,
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp252 void CommandInterpreter::ResolveCommand(const char *command_line, in ResolveCommand() argument
254 std::string command = command_line; in ResolveCommand()
1836 bool CommandInterpreter::HandleCommand(const char *command_line, in HandleCommand() argument
1842 bool status = HandleCommand(command_line, lazy_add_to_history, result); in HandleCommand()
1847 bool CommandInterpreter::HandleCommand(const char *command_line, in HandleCommand() argument
1851 std::string command_string(command_line); in HandleCommand()
1852 std::string original_command_string(command_line); in HandleCommand()
1856 command_line); in HandleCommand()
1858 LLDB_LOGF(log, "Processing command: %s", command_line); in HandleCommand()
1859 LLDB_SCOPED_TIMERF("Processing command: %s.", command_line); in HandleCommand()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DCompletionRequest.h104 /// \param [in] command_line
115 CompletionRequest(llvm::StringRef command_line, unsigned raw_cursor_pos,
/freebsd/contrib/googletest/googletest/src/
H A Dgtest-death-test.cc797 std::string command_line = std::string(::GetCommandLineA()) + " " + in AssumeRole() local
817 executable_path, const_cast<char*>(command_line.c_str()), in AssumeRole()