Searched refs:cmd_str (Results 1 – 5 of 5) sorted by relevance
| /llvm-project-15.0.7/lldb/test/API/tools/lldb-server/ |
| H A D | TestAppleSimulatorOSType.py | 18 cmd_str = ' '.join(cmd) 19 self.trace(cmd_str) 24 self.fail("Could not parse '{}' output. Authorization denied?".format(cmd_str))
|
| /llvm-project-15.0.7/lldb/scripts/ |
| H A D | disasm-gdb-remote.pl | 584 my $cmd_str = shift; 585 my @cmd_chars = split(/ */, $cmd_str); 1086 my $cmd_str; 1087 $cmd eq 'c' and $cmd_str = 'continue'; 1088 $cmd eq 's' and $cmd_str = 'step'; 1097 printf("%s ()\n", $cmd_str); 1109 my $cmd_str; 1110 $cmd eq 'c' and $cmd_str = 'continue'; 1111 $cmd eq 's' and $cmd_str = 'step'; 2013 my $cmd_str = shift; [all …]
|
| /llvm-project-15.0.7/lldb/source/Interpreter/ |
| H A D | CommandInterpreter.cpp | 904 AddNamesMatchingPartialString(m_command_dict, cmd_str, matches, in GetCommandNamesMatchingPartialString() 978 std::string cmd = std::string(cmd_str); in GetCommandSP() 1063 m_user_mw_dict, cmd_str, *matches, descriptions); in GetCommandSP() 1091 matches->AppendString(cmd_str); in GetCommandSP() 1169 CommandInterpreter::GetCommandSPExact(llvm::StringRef cmd_str, in GetCommandSPExact() argument 1172 Args cmd_words(cmd_str); in GetCommandSPExact() 1174 if (cmd_str.empty()) in GetCommandSPExact() 1178 return GetCommandSP(cmd_str, include_aliases, true); in GetCommandSPExact() 1211 CommandInterpreter::GetCommandObject(llvm::StringRef cmd_str, in GetCommandObject() argument 1248 std::string cmd_str(cmd); in GetUserCommandObject() local [all …]
|
| /llvm-project-15.0.7/lldb/include/lldb/Interpreter/ |
| H A D | CommandObject.h | 36 const std::map<std::string, ValueType> &in_map, llvm::StringRef cmd_str, 40 const bool add_all = cmd_str.empty(); 43 if (add_all || (iter->first.find(std::string(cmd_str), 0) == 0)) {
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/breakpoint_names/ |
| H A D | TestBreakpointNames.py | 261 …cmd_str = "breakpoint name configure %s -o %d -i %d -c '%s' -G %d -t %d -x %d -T '%s' -q '%s' -H '… 272 cmd_str += " -C '%s'"%(cmd) 274 self.runCmd(cmd_str, check=True)
|