Lines Matching refs:module
107 void DynamicLoader::UpdateLoadedSections(ModuleSP module, addr_t link_map_addr, in UpdateLoadedSections() argument
110 UpdateLoadedSectionsCommon(module, base_addr, base_addr_is_offset); in UpdateLoadedSections()
113 void DynamicLoader::UpdateLoadedSectionsCommon(ModuleSP module, in UpdateLoadedSectionsCommon() argument
117 module->SetLoadAddress(m_process->GetTarget(), base_addr, base_addr_is_offset, in UpdateLoadedSectionsCommon()
121 void DynamicLoader::UnloadSections(const ModuleSP module) { in UnloadSections() argument
122 UnloadSectionsCommon(module); in UnloadSections()
125 void DynamicLoader::UnloadSectionsCommon(const ModuleSP module) { in UnloadSectionsCommon() argument
127 const SectionList *sections = GetSectionListFromModule(module); in UnloadSectionsCommon()
139 DynamicLoader::GetSectionListFromModule(const ModuleSP module) const { in GetSectionListFromModule()
141 if (module) { in GetSectionListFromModule()
142 ObjectFile *obj_file = module->GetObjectFile(); in GetSectionListFromModule()