/llvm-project/lldb/source/Utility/ |
H A D | CompletionRequest.cpp | 14 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()
|
/llvm-project/lldb/examples/customization/bin-utils/ |
H A D | binutils.py | 65 def utob(debugger, command_line, result, dict): argument 70 args = command_line.split() 97 def itob(debugger, command_line, result, dict): argument 102 args = command_line.split()
|
/llvm-project/lldb/test/API/test_runner/test/ |
H A D | inferior.py | 12 def parse_args(command_line): argument 64 return parser.parse_args(command_line) 138 def main(command_line): argument 145 options = parse_args(command_line)
|
/llvm-project/lldb/source/API/ |
H A D | SBCommandInterpreter.cpp | 170 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 …]
|
/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_symbolizer_win.cpp | 226 InternalScopedString command_line; in StartSymbolizerSubprocess() 235 command_line.AppendF("\"%s\" ", arg); in StartSymbolizerSubprocess() 237 VReport(3, "Launching symbolizer command: %s\n", command_line.data()); in StartSymbolizerSubprocess() 249 command_line.data(), // Command line in StartSymbolizerSubprocess() 225 InternalScopedString command_line; StartSymbolizerSubprocess() local
|
/llvm-project/lldb/examples/customization/pwd-cd-and-system/ |
H A D | utils.py | 43 def system(debugger, command_line, result, dict): argument 45 args = shlex.split(command_line)
|
/llvm-project/lldb/include/lldb/API/ |
H A D | SBCommandInterpreter.h | 193 lldb::ReturnStatus HandleCommand(const char *command_line, 197 lldb::ReturnStatus HandleCommand(const char *command_line, 315 void ResolveCommand(const char *command_line, SBCommandReturnObject &result);
|
/llvm-project/lldb/include/lldb/Interpreter/ |
H A D | CommandInterpreter.h | 369 bool HandleCommand(const char *command_line, LazyBool add_to_history, 373 bool HandleCommand(const char *command_line, LazyBool add_to_history, 426 CommandObject *GetCommandObjectForCommand(llvm::StringRef &command_line); 634 void ResolveCommand(const char *command_line, CommandReturnObject &result); 710 // final command object and updating command_line to the fully substituted 712 CommandObject *ResolveCommandImpl(std::string &command_line,
|
/llvm-project/lldb/source/Interpreter/ |
H A D | CommandInterpreter.cpp | 252 void CommandInterpreter::ResolveCommand(const char *command_line, in ResolveCommand() argument 254 std::string command = command_line; in ResolveCommand() 1872 bool CommandInterpreter::HandleCommand(const char *command_line, in HandleCommand() 1878 bool status = HandleCommand(command_line, lazy_add_to_history, result); in HandleCommand() 1883 bool CommandInterpreter::HandleCommand(const char *command_line, in HandleCommand() 1887 std::string command_string(command_line); in HandleCommand() 1893 command_line); in HandleCommand() 1895 LLDB_LOGF(log, "Processing command: %s", command_line); in HandleCommand() 1896 LLDB_SCOPED_TIMERF("Processing command: %s.", command_line); in HandleCommand() 1913 m_transcript_stream << "(lldb) " << command_line << '\ in HandleCommand() 1836 HandleCommand(const char * command_line,LazyBool lazy_add_to_history,const ExecutionContext & override_context,CommandReturnObject & result) HandleCommand() argument 1847 HandleCommand(const char * command_line,LazyBool lazy_add_to_history,CommandReturnObject & result,bool force_repeat_command) HandleCommand() argument 3414 ResolveCommandImpl(std::string & command_line,CommandReturnObject & result) ResolveCommandImpl() argument [all...] |
/llvm-project/clang/tools/c-index-test/ |
H A D | core_main.cpp | 36 extern "C" int indextest_perform_shell_execution(const char *command_line); 385 int indextest_perform_shell_execution(const char *command_line) { in indextest_perform_shell_execution() 389 llvm::cl::TokenizeGNUCommandLine(command_line, Saver, Args); in indextest_perform_shell_execution() 382 indextest_perform_shell_execution(const char * command_line) indextest_perform_shell_execution() argument
|
H A D | c-index-test.c | 31 extern int indextest_perform_shell_execution(const char *command_line);
|
/llvm-project/lldb/include/lldb/Utility/ |
H A D | CompletionRequest.h | 104 /// \param [in] command_line 115 CompletionRequest(llvm::StringRef command_line, unsigned raw_cursor_pos,
|
/llvm-project/libcxx/utils/ |
H A D | adb_run.py | 149 command_line = [arg.replace(local_dir + "/", "./") for arg in args.command] 164 f"cd {remote_dir} && run_without_root {shlex.join(command_line)}" 170 f" cd {remote_dir} && run_without_root {shlex.join(command_line)};"
|
/llvm-project/cross-project-tests/debuginfo-tests/dexter/ |
H A D | Commands.md | 350 DexCommandLine(command_line) 353 command_line (list): List of strings that form the command line.
|
/llvm-project/third-party/unittest/googletest/src/ |
H A D | gtest-death-test.cc | 795 std::string command_line = std::string(::GetCommandLineA()) + " " + in AssumeRole() local 815 executable_path, const_cast<char*>(command_line.c_str()), in AssumeRole()
|