Lines Matching refs:ModuleSP
76 ModuleSP DynamicLoader::GetTargetExecutable() { in GetTargetExecutable()
78 ModuleSP executable = target.GetExecutableModule(); in GetTargetExecutable()
109 void DynamicLoader::UpdateLoadedSections(ModuleSP module, addr_t link_map_addr, in UpdateLoadedSections()
115 void DynamicLoader::UpdateLoadedSectionsCommon(ModuleSP module, in UpdateLoadedSectionsCommon()
123 void DynamicLoader::UnloadSections(const ModuleSP module) { in UnloadSections()
127 void DynamicLoader::UnloadSectionsCommon(const ModuleSP module) { in UnloadSectionsCommon()
141 DynamicLoader::GetSectionListFromModule(const ModuleSP module) const { in GetSectionListFromModule()
152 ModuleSP DynamicLoader::FindModuleViaTarget(const FileSpec &file) { in FindModuleViaTarget()
156 if (ModuleSP module_sp = target.GetImages().FindFirstModule(module_spec)) in FindModuleViaTarget()
159 if (ModuleSP module_sp = target.GetOrCreateModule(module_spec, false)) in FindModuleViaTarget()
165 ModuleSP DynamicLoader::LoadModuleAtAddress(const FileSpec &file, in LoadModuleAtAddress()
169 if (ModuleSP module_sp = FindModuleViaTarget(file)) { in LoadModuleAtAddress()
178 static ModuleSP ReadUnnamedMemoryModule(Process *process, addr_t addr, in ReadUnnamedMemoryModule()
188 ModuleSP DynamicLoader::LoadBinaryWithUUIDAndAddress( in LoadBinaryWithUUIDAndAddress()
192 ModuleSP memory_module_sp; in LoadBinaryWithUUIDAndAddress()
193 ModuleSP module_sp; in LoadBinaryWithUUIDAndAddress()