Lines Matching refs:ModuleSP
72 ModuleSP DynamicLoader::GetTargetExecutable() { in GetTargetExecutable()
74 ModuleSP executable = target.GetExecutableModule(); in GetTargetExecutable()
105 void DynamicLoader::UpdateLoadedSections(ModuleSP module, addr_t link_map_addr, in UpdateLoadedSections()
111 void DynamicLoader::UpdateLoadedSectionsCommon(ModuleSP module, in UpdateLoadedSectionsCommon()
119 void DynamicLoader::UnloadSections(const ModuleSP module) { in UnloadSections()
123 void DynamicLoader::UnloadSectionsCommon(const ModuleSP module) { in UnloadSectionsCommon()
137 DynamicLoader::GetSectionListFromModule(const ModuleSP module) const { in GetSectionListFromModule()
148 ModuleSP DynamicLoader::FindModuleViaTarget(const FileSpec &file) { in FindModuleViaTarget()
152 if (ModuleSP module_sp = target.GetImages().FindFirstModule(module_spec)) in FindModuleViaTarget()
155 if (ModuleSP module_sp = target.GetOrCreateModule(module_spec, false)) in FindModuleViaTarget()
161 ModuleSP DynamicLoader::LoadModuleAtAddress(const FileSpec &file, in LoadModuleAtAddress()
165 if (ModuleSP module_sp = FindModuleViaTarget(file)) { in LoadModuleAtAddress()