| /llvm-project-15.0.7/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-15.0.7/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-15.0.7/lldb/test/API/test_runner/test/ |
| H A D | inferior.py | 14 def parse_args(command_line): argument 56 return parser.parse_args(command_line) 130 def main(command_line): argument 137 options = parse_args(command_line)
|
| /llvm-project-15.0.7/lldb/source/API/ |
| H A D | SBCommandInterpreter.cpp | 150 SBCommandInterpreter::HandleCommand(const char *command_line, in HandleCommand() argument 153 LLDB_INSTRUMENT_VA(this, command_line, result, add_to_history); in HandleCommand() 160 const char *command_line, SBExecutionContext &override_context, in HandleCommand() argument 162 LLDB_INSTRUMENT_VA(this, command_line, override_context, result, in HandleCommand() 166 if (command_line && IsValid()) { in HandleCommand() 170 m_opaque_ptr->HandleCommand(command_line, do_add_to_history, in HandleCommand() 174 m_opaque_ptr->HandleCommand(command_line, do_add_to_history, in HandleCommand() 405 void SBCommandInterpreter::ResolveCommand(const char *command_line, in ResolveCommand() argument 407 LLDB_INSTRUMENT_VA(this, command_line, result); in ResolveCommand() 410 if (command_line && IsValid()) { in ResolveCommand() [all …]
|
| /llvm-project-15.0.7/lldb/bindings/interface/ |
| H A D | SBCommandInterpreter.i | 105 ResolveCommand(const char *command_line, SBCommandReturnObject &result); 144 …HandleCommand (const char *command_line, lldb::SBCommandReturnObject &result, bool add_to_history … 147 …HandleCommand (const char *command_line, SBExecutionContext &exe_ctx, SBCommandReturnObject &resul…
|
| /llvm-project-15.0.7/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-15.0.7/lldb/include/lldb/API/ |
| H A D | SBCommandInterpreter.h | 159 lldb::ReturnStatus HandleCommand(const char *command_line, 163 lldb::ReturnStatus HandleCommand(const char *command_line, 268 void ResolveCommand(const char *command_line, SBCommandReturnObject &result);
|
| /llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_symbolizer_win.cpp | 227 InternalScopedString command_line; in StartSymbolizerSubprocess() local 238 command_line.append("\"%s\" ", arg); in StartSymbolizerSubprocess() 240 VReport(3, "Launching symbolizer command: %s\n", command_line.data()); in StartSymbolizerSubprocess() 252 command_line.data(), // Command line in StartSymbolizerSubprocess()
|
| /llvm-project-15.0.7/lldb/include/lldb/Interpreter/ |
| H A D | CommandInterpreter.h | 341 bool HandleCommand(const char *command_line, LazyBool add_to_history, 345 bool HandleCommand(const char *command_line, LazyBool add_to_history, 397 CommandObject *GetCommandObjectForCommand(llvm::StringRef &command_line); 599 void ResolveCommand(const char *command_line, CommandReturnObject &result); 664 CommandObject *ResolveCommandImpl(std::string &command_line,
|
| /llvm-project-15.0.7/lldb/third_party/Python/module/pexpect-4.6/pexpect/ |
| H A D | utils.py | 69 def split_command_line(command_line): argument 88 for c in command_line:
|
| /llvm-project-15.0.7/clang/tools/c-index-test/ |
| H A D | core_main.cpp | 35 extern "C" int indextest_perform_shell_execution(const char *command_line); 380 int indextest_perform_shell_execution(const char *command_line) { in indextest_perform_shell_execution() argument 384 llvm::cl::TokenizeGNUCommandLine(command_line, Saver, Args); in indextest_perform_shell_execution()
|
| H A D | c-index-test.c | 27 extern int indextest_perform_shell_execution(const char *command_line);
|
| /llvm-project-15.0.7/lldb/source/Interpreter/ |
| H A D | CommandInterpreter.cpp | 221 void CommandInterpreter::ResolveCommand(const char *command_line, in ResolveCommand() argument 223 std::string command = command_line; in ResolveCommand() 1837 std::string command_string(command_line); in HandleCommand() 1838 std::string original_command_string(command_line); in HandleCommand() 1842 command_line); in HandleCommand() 1844 LLDB_LOGF(log, "Processing command: %s", command_line); in HandleCommand() 1845 LLDB_SCOPED_TIMERF("Processing command: %s.", command_line); in HandleCommand() 1858 m_transcript_stream << "(lldb) " << command_line << '\n'; in HandleCommand() 1900 command_line = m_repeat_command.c_str(); in HandleCommand() 1901 command_string = command_line; in HandleCommand() [all …]
|
| /llvm-project-15.0.7/lldb/include/lldb/Utility/ |
| H A D | CompletionRequest.h | 115 CompletionRequest(llvm::StringRef command_line, unsigned raw_cursor_pos,
|
| /llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/ |
| H A D | Commands.md | 347 DexCommandLine(command_line) 350 command_line (list): List of strings that form the command line.
|
| /llvm-project-15.0.7/llvm/utils/unittest/googletest/src/ |
| H A D | gtest-death-test.cc | 776 std::string command_line = in AssumeRole() local 797 executable_path, const_cast<char*>(command_line.c_str()), in AssumeRole()
|