Home
last modified time | relevance | path

Searched refs:GetNumModules (Results 1 – 22 of 22) sorted by relevance

/external/llvm-project/lldb/test/API/python_api/module_section/
DTestModuleAndSection.py30 self.assertTrue(target.GetNumModules() > 0)
36 print("Number of modules for the target: %d" % target.GetNumModules())
82 self.assertTrue(target.GetNumModules() > 0)
88 print("Number of modules for the target: %d" % target.GetNumModules())
123 self.assertTrue(target.GetNumModules() > 0)
129 print("Number of modules for the target: %d" % target.GetNumModules())
159 num_modules = target.GetNumModules()
/external/llvm-project/lldb/test/API/macosx/lc-note/firmware-corefile/
DTestFirmwareCorefiles.py118 self.assertEqual(self.target.GetNumModules(), 1)
130 self.assertEqual(self.target.GetNumModules(), 1)
/external/llvm-project/lldb/test/API/functionalities/gdb_remote_client/
DTestWasm.py105 num_modules = target.GetNumModules()
157 num_modules = target.GetNumModules()
201 num_modules = target.GetNumModules()
/external/llvm-project/lldb/test/API/macosx/load-kext/
DTestLoadKext.py28 self.assertEqual(target.GetNumModules(), 1)
/external/llvm-project/lldb/bindings/interface/
DSBTarget.i377 GetNumModules () const;
984 return int(self.sbtarget.GetNumModules())
988 num_modules = self.sbtarget.GetNumModules()
1037 for idx in range(self.GetNumModules()):
/external/llvm-project/lldb/test/API/macosx/find-dsym/deep-bundle/
DTestDeepBundle.py68 while i < target.GetNumModules():
/external/llvm-project/lldb/test/API/macosx/find-dsym/bundle-with-dot-in-filename/
DTestBundleWithDotInFilename.py70 while i < target.GetNumModules():
/external/llvm-project/lldb/test/API/lang/cpp/stl/
DTestStdCXXDisassembly.py40 for i in range(target.GetNumModules()):
/external/llvm-project/lldb/test/API/functionalities/type_get_module/
DTestTypeGetModule.py17 num_modules = target.GetNumModules()
/external/llvm-project/lldb/test/API/functionalities/process_save_core/
DTestProcessSaveCore.py54 0, target.GetNumModules())]
/external/llvm-project/lldb/test/API/macosx/lc-note/kern-ver-str/
DTestKernVerStrLCNOTE.py96 self.assertEqual(self.target.GetNumModules(), 1)
/external/llvm-project/lldb/test/API/python_api/default-constructor/
Dsb_target.py18 obj.GetNumModules()
/external/llvm-project/lldb/test/API/commands/trace/
DTestTraceLoad.py29 self.assertEqual(target.GetNumModules(), 1)
/external/llvm-project/lldb/test/API/python_api/lldbutil/iter/
DTestLLDBIterator.py47 for i in range(target.GetNumModules()):
/external/llvm-project/lldb/test/API/functionalities/postmortem/minidump/
DTestMiniDump.py76 self.assertEqual(self.target.GetNumModules(), len(expected_modules))
/external/llvm-project/lldb/examples/python/
Dlldbtk.py160 num_modules = self.target.GetNumModules()
169 for i in range(self.target.GetNumModules()):
/external/llvm-project/lldb/include/lldb/API/
DSBTarget.h296 uint32_t GetNumModules() const;
/external/llvm-project/lldb/test/API/functionalities/postmortem/minidump-new/
DTestMiniDumpNew.py480 self.assertEqual(self.target.GetNumModules(), 1)
/external/llvm-project/lldb/examples/summaries/cocoa/
Dobjc_runtime.py742 num_modules = target.GetNumModules()
/external/llvm-project/lldb/tools/intel-features/intel-pt/
DDecoder.cpp347 uint32_t num_modules = sbtarget.GetNumModules(); in GetTargetModulesInfo()
/external/llvm-project/lldb/source/API/
DSBTarget.cpp1638 uint32_t SBTarget::GetNumModules() const { in GetNumModules() function in SBTarget
1639 LLDB_RECORD_METHOD_CONST_NO_ARGS(uint32_t, SBTarget, GetNumModules); in GetNumModules()
2597 LLDB_REGISTER_METHOD_CONST(uint32_t, SBTarget, GetNumModules, ()); in RegisterMethods()
/external/llvm-project/lldb/tools/lldb-vscode/
Dlldb-vscode.cpp1248 int num_modules = g_vsc.target.GetNumModules(); in request_getCompileUnits()