Home
last modified time | relevance | path

Searched refs:FindModule (Results 1 – 19 of 19) sorted by relevance

/external/llvm-project/lldb/test/API/functionalities/load_using_paths/
DTestLoadUsingPaths.py78 loaded_module = target.FindModule(out_spec)
92 loaded_module = target.FindModule(out_spec)
/external/llvm-project/lldb/test/API/macosx/version_zero/
DTestGetVersionZeroVersion.py31 module = target.FindModule(lldb.SBFileSpec(lib_name))
/external/llvm-project/lldb/test/API/lang/objc/foundation/
DTestSymbolTable.py54 module = target.FindModule(filespec)
/external/llvm-project/lldb/include/lldb/Core/
DModuleList.h326 lldb::ModuleSP FindModule(const Module *module_ptr) const;
333 lldb::ModuleSP FindModule(const UUID &uuid) const;
/external/llvm-project/lldb/test/API/lang/cpp/thread_local/
DTestThreadLocal.py50 main_module = target.FindModule(filespec)
/external/llvm-project/lldb/test/API/macosx/save_crashlog/
DTestSaveCrashlog.py43 exe_module = target.FindModule(target.GetExecutable())
/external/llvm-project/lldb/test/API/python_api/name_lookup/
DTestNameLookup.py34 exe_module = target.FindModule(target.GetExecutable())
/external/llvm-project/lldb/test/API/python_api/default-constructor/
Dsb_target.py22 obj.FindModule(filespec)
/external/llvm-project/lldb/examples/lookup/
Dmain.cpp186 SBModule module(target.FindModule(exe_file_spec)); in main()
/external/llvm-project/lldb/test/API/functionalities/limit-debug-info/
DTestLimitDebugInfo.py17 exe = target.FindModule(lldb.SBFileSpec("a.out"))
/external/llvm-project/lldb/examples/functions/
Dmain.cpp183 SBModule module(target.FindModule(exe_file_spec)); in main()
/external/llvm-project/lldb/source/Core/
DModuleList.cpp496 ModuleSP ModuleList::FindModule(const Module *module_ptr) const { in FindModule() function in ModuleList
514 ModuleSP ModuleList::FindModule(const UUID &uuid) const { in FindModule() function in ModuleList
735 return shared_module_list.FindModule(module_ptr).get() != nullptr; in ModuleIsInCache()
/external/llvm-project/lldb/test/API/macosx/queues/
DTestQueues.py299 libbtr_module = target.FindModule(libbtr_module_filespec)
/external/llvm-project/lldb/include/lldb/API/
DSBTarget.h304 lldb::SBModule FindModule(const lldb::SBFileSpec &file_spec);
/external/llvm-project/lldb/bindings/interface/
DSBTarget.i389 FindModule (const lldb::SBFileSpec &file_spec);
/external/llvm-project/lldb/examples/python/
Dsymbolication.py425 self.module = target.FindModule(path_spec)
/external/llvm-project/lldb/source/API/
DSBTarget.cpp1657 SBModule SBTarget::FindModule(const SBFileSpec &sb_file_spec) { in FindModule() function in SBTarget
1658 LLDB_RECORD_METHOD(lldb::SBModule, SBTarget, FindModule, in FindModule()
2599 LLDB_REGISTER_METHOD(lldb::SBModule, SBTarget, FindModule, in RegisterMethods()
/external/llvm-project/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/
DDynamicLoaderDarwinKernel.cpp783 m_module_sp = target_images.FindModule(m_uuid); in LoadImageUsingMemoryModule()
/external/llvm-project/flang/lib/Semantics/
Dresolve-names.cpp637 Scope *FindModule(const parser::Name &, Scope *ancestor = nullptr);
2291 useModuleScope_ = FindModule(x.moduleName); in Pre()
2452 Scope *ancestor{FindModule(ancestorName)}; in BeginSubmodule()
2456 Scope *parentScope{parentName ? FindModule(*parentName, ancestor) : ancestor}; in BeginSubmodule()
2482 Scope *ModuleVisitor::FindModule(const parser::Name &name, Scope *ancestor) { in FindModule() function in Fortran::semantics::ModuleVisitor