| /llvm-project-15.0.7/lldb/test/API/functionalities/abbreviation/ |
| H A D | TestAbbreviations.py | 22 self.assertEqual("apropos script", result.GetOutput()) 26 self.assertEqual("help", result.GetOutput()) 31 self.assertEqual("log list", result.GetOutput()) 35 self.assertEqual("breakpoint set", result.GetOutput()) 49 result.GetOutput()) 58 self.assertEqual("help target create", result.GetOutput()) 71 result.GetOutput()) 78 result.GetOutput().strip()) 90 result.GetOutput())
|
| H A D | TestCommonShortSpellings.py | 36 self.assertEqual(long_val, result.GetOutput())
|
| /llvm-project-15.0.7/lldb/unittests/API/ |
| H A D | SBCommandInterpreterTest.cpp | 55 EXPECT_STREQ(result.GetOutput(), "It worked\n"); in TEST_F() 72 EXPECT_STREQ(result.GetOutput(), "It worked\n"); in TEST_F() 78 EXPECT_STREQ(result.GetOutput(), "It worked\n"); in TEST_F() 92 EXPECT_STREQ(result.GetOutput(), "It worked again\n"); in TEST_F() 110 EXPECT_STREQ(result.GetOutput(), "It worked again\n"); in TEST_F() 116 EXPECT_STREQ(result.GetOutput(), "It worked again\n"); in TEST_F() 130 EXPECT_STREQ(result.GetOutput(), "It worked again 2\n"); in TEST_F() 136 EXPECT_STREQ(result.GetOutput(), "It worked again\n"); in TEST_F()
|
| /llvm-project-15.0.7/lldb/source/API/ |
| H A D | SBCommandReturnObject.cpp | 85 const char *SBCommandReturnObject::GetOutput() { in GetOutput() function in SBCommandReturnObject 116 return ::fprintf(fh, "%s", GetOutput()); in PutOutput() 125 return file_sp->Printf("%s", GetOutput()); in PutOutput() 132 return file.m_opaque_sp->Printf("%s", GetOutput()); in PutOutput() 234 strm.Printf("\nOutput Message:\n%s", GetOutput()); in GetDescription() 300 const char *SBCommandReturnObject::GetOutput(bool only_if_no_immediate) { in GetOutput() function in SBCommandReturnObject 305 return GetOutput(); in GetOutput()
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/memory-region/ |
| H A D | TestMemoryRegion.py | 71 self.assertRegexpMatches(result.GetOutput(), "\\[0x0+-") 72 all_regions += result.GetOutput() 79 all_regions += result.GetOutput() 89 self.assertEqual(result.GetOutput(), all_regions)
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/history/ |
| H A D | TestHistoryRecall.py | 34 results = result.GetOutput() 47 self.assertIn("session history", result.GetOutput(), "!0 didn't rerun session history") 51 self.assertIn("host:", result.GetOutput(), "!-1 didn't rerun platform list.")
|
| /llvm-project-15.0.7/lldb/test/API/commands/memory/read/ |
| H A D | TestMemoryRead.py | 52 line = self.res.GetOutput().splitlines()[0] 66 lines = self.res.GetOutput().splitlines() 127 lines = self.res.GetOutput().splitlines() 143 golden_output = res.GetOutput()
|
| /llvm-project-15.0.7/lldb/test/API/commands/watchpoints/multiple_threads/ |
| H A D | TestWatchpointMultipleThreads.py | 54 if "stop reason = watchpoint" in self.res.GetOutput(): 90 if re.search("Process .* exited", self.res.GetOutput()): 95 if "stop reason = watchpoint" in self.res.GetOutput():
|
| /llvm-project-15.0.7/lldb/test/API/commands/frame/var/ |
| H A D | TestFrameVar.py | 60 output = command_result.GetOutput() 69 output = command_result.GetOutput() 78 output = command_result.GetOutput()
|
| /llvm-project-15.0.7/lldb/test/API/commands/thread/backtrace/ |
| H A D | TestThreadBacktraceRepeat.py | 58 lines = result.GetOutput().splitlines() 71 lines = result.GetOutput().splitlines() 146 result_str = result.GetOutput() 153 result_str = result.GetOutput()
|
| /llvm-project-15.0.7/lldb/test/API/commands/trace/ |
| H A D | TestTraceSave.py | 149 first_ten_instructions = res.GetOutput() 153 last_ten_instructions = res.GetOutput() 167 self.assertEqual(res.GetOutput(), first_ten_instructions) 171 self.assertEqual(res.GetOutput(), last_ten_instructions)
|
| /llvm-project-15.0.7/lldb/test/API/lang/cpp/unique-types/ |
| H A D | TestUniqueTypes.py | 22 output = self.res.GetOutput() 34 output = self.res.GetOutput()
|
| /llvm-project-15.0.7/lldb/test/API/commands/disassemble/basic/ |
| H A D | TestDisassembleBreakpoint.py | 21 disassembly_with_break = self.res.GetOutput().splitlines() 26 disassembly_without_break = self.res.GetOutput().splitlines()
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/memory/cache/ |
| H A D | TestMemoryCache.py | 47 line = self.res.GetOutput().splitlines()[100] 58 line = self.res.GetOutput().splitlines()[100]
|
| /llvm-project-15.0.7/lldb/test/API/commands/command/source/ |
| H A D | TestCommandSource.py | 42 self.expect(result.GetOutput(), "script my.date() runs successfully", 45 self.expect(result.GetOutput(), "script my.date() runs successfully",
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/plugins/command_plugin/ |
| H A D | TestPluginCommands.py | 49 print(retobj.GetOutput()) 60 print(retobj.GetOutput())
|
| /llvm-project-15.0.7/lldb/bindings/interface/ |
| H A D | SBCommandReturnObject.i | 34 GetOutput (); 46 GetOutput (bool only_if_no_immediate);
|
| /llvm-project-15.0.7/lldb/test/API/commands/watchpoints/watchpoint_set_command/ |
| H A D | TestWatchLocationWithWatchSet.py | 76 self.expect(self.res.GetOutput().splitlines()[0], exe=False, 102 self.expect(self.res.GetOutput().splitlines()[0], exe=False,
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/thread_plan/ |
| H A D | TestThreadPlanCommands.py | 36 print(result.GetOutput()) 44 result_arr = result.GetOutput().splitlines() 153 self.assertTrue(result.Succeeded(), "Deleted the step over plan: %s"%(result.GetOutput()))
|
| /llvm-project-15.0.7/lldb/include/lldb/API/ |
| H A D | SBCommandReturnObject.h | 43 const char *GetOutput(); 99 const char *GetOutput(bool only_if_no_immediate);
|
| /llvm-project-15.0.7/lldb/test/API/commands/watchpoints/hello_watchlocation/ |
| H A D | TestWatchLocation.py | 77 self.res.GetOutput().splitlines()[0]) 84 self.expect(self.res.GetOutput().splitlines()[0], exe=False,
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/source-map/ |
| H A D | TestTargetSourceMap.py | 24 self.assertNotEqual(retval.GetOutput(), None, "We got no ouput from source list") 25 self.assertIn("return", retval.GetOutput(), "We didn't find the source file...")
|
| /llvm-project-15.0.7/lldb/test/API/python_api/interpreter/ |
| H A D | TestCommandInterpreterAPI.py | 84 self.assertIsNotNone(res.GetOutput()) 85 self.assertEquals(res.GetOutput(), "")
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/hardware_breakpoints/ |
| H A D | base.py | 17 if 'stopped' in self.res.GetOutput():
|
| /llvm-project-15.0.7/lldb/test/API/macosx/order/ |
| H A D | TestOrderFile.py | 26 output = self.res.GetOutput()
|