Home
last modified time | relevance | path

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

/freebsd-14.2/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-14.2/contrib/llvm-project/lldb/source/API/
H A DSBCommandInterpreter.cpp169 SBCommandInterpreter::HandleCommand(const char *command_line, in HandleCommand() argument
172 LLDB_INSTRUMENT_VA(this, command_line, result, add_to_history); in HandleCommand()
179 const char *command_line, SBExecutionContext &override_context, in HandleCommand() argument
181 LLDB_INSTRUMENT_VA(this, command_line, override_context, result, in HandleCommand()
185 if (command_line && IsValid()) { in HandleCommand()
189 m_opaque_ptr->HandleCommand(command_line, do_add_to_history, in HandleCommand()
193 m_opaque_ptr->HandleCommand(command_line, do_add_to_history, in HandleCommand()
424 void SBCommandInterpreter::ResolveCommand(const char *command_line, in ResolveCommand() argument
426 LLDB_INSTRUMENT_VA(this, command_line, result); in ResolveCommand()
429 if (command_line && IsValid()) { in ResolveCommand()
[all …]
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_win.cpp225 InternalScopedString command_line; in StartSymbolizerSubprocess() local
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()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/API/
H A DSBCommandInterpreter.h192 lldb::ReturnStatus HandleCommand(const char *command_line,
196 lldb::ReturnStatus HandleCommand(const char *command_line,
316 void ResolveCommand(const char *command_line, SBCommandReturnObject &result);
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandInterpreter.h351 bool HandleCommand(const char *command_line, LazyBool add_to_history,
355 bool HandleCommand(const char *command_line, LazyBool add_to_history,
408 CommandObject *GetCommandObjectForCommand(llvm::StringRef &command_line);
613 void ResolveCommand(const char *command_line, CommandReturnObject &result);
684 CommandObject *ResolveCommandImpl(std::string &command_line,
/freebsd-14.2/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp238 void CommandInterpreter::ResolveCommand(const char *command_line, in ResolveCommand() argument
240 std::string command = command_line; in ResolveCommand()
1871 std::string command_string(command_line); in HandleCommand()
1872 std::string original_command_string(command_line); in HandleCommand()
1876 command_line); in HandleCommand()
1878 LLDB_LOGF(log, "Processing command: %s", command_line); in HandleCommand()
1879 LLDB_SCOPED_TIMERF("Processing command: %s.", command_line); in HandleCommand()
1892 m_transcript_stream << "(lldb) " << command_line << '\n'; in HandleCommand()
1934 command_line = m_repeat_command.c_str(); in HandleCommand()
1935 command_string = command_line; in HandleCommand()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Utility/
H A DCompletionRequest.h115 CompletionRequest(llvm::StringRef command_line, unsigned raw_cursor_pos,
/freebsd-14.2/contrib/googletest/googletest/src/
H A Dgtest-death-test.cc795 std::string command_line = std::string(::GetCommandLineA()) + " " + in AssumeRole() local
815 executable_path, const_cast<char*>(command_line.c_str()), in AssumeRole()