Lines Matching refs:ModuleSP
77 ModuleSP DynamicLoader::GetTargetExecutable() { in GetTargetExecutable()
79 ModuleSP executable = target.GetExecutableModule(); in GetTargetExecutable()
110 void DynamicLoader::UpdateLoadedSections(ModuleSP module, addr_t link_map_addr, in UpdateLoadedSections()
116 void DynamicLoader::UpdateLoadedSectionsCommon(ModuleSP module, in UpdateLoadedSectionsCommon()
124 void DynamicLoader::UnloadSections(const ModuleSP module) { in UnloadSections()
128 void DynamicLoader::UnloadSectionsCommon(const ModuleSP module) { in UnloadSectionsCommon()
142 DynamicLoader::GetSectionListFromModule(const ModuleSP module) const { in GetSectionListFromModule()
153 ModuleSP DynamicLoader::FindModuleViaTarget(const FileSpec &file) { in FindModuleViaTarget()
157 if (ModuleSP module_sp = target.GetImages().FindFirstModule(module_spec)) in FindModuleViaTarget()
160 if (ModuleSP module_sp = target.GetOrCreateModule(module_spec, false)) in FindModuleViaTarget()
166 ModuleSP DynamicLoader::LoadModuleAtAddress(const FileSpec &file, in LoadModuleAtAddress()
170 if (ModuleSP module_sp = FindModuleViaTarget(file)) { in LoadModuleAtAddress()
179 static ModuleSP ReadUnnamedMemoryModule(Process *process, addr_t addr, in ReadUnnamedMemoryModule()
189 ModuleSP DynamicLoader::LoadBinaryWithUUIDAndAddress( in LoadBinaryWithUUIDAndAddress()
193 ModuleSP memory_module_sp; in LoadBinaryWithUUIDAndAddress()
194 ModuleSP module_sp; in LoadBinaryWithUUIDAndAddress()