Lines Matching defs:module
110 void DynamicLoader::UpdateLoadedSections(ModuleSP module, addr_t link_map_addr,
113 UpdateLoadedSectionsCommon(module, base_addr, base_addr_is_offset);
116 void DynamicLoader::UpdateLoadedSectionsCommon(ModuleSP module,
120 module->SetLoadAddress(m_process->GetTarget(), base_addr, base_addr_is_offset,
124 void DynamicLoader::UnloadSections(const ModuleSP module) {
125 UnloadSectionsCommon(module);
128 void DynamicLoader::UnloadSectionsCommon(const ModuleSP module) {
130 const SectionList *sections = GetSectionListFromModule(module);
132 assert(sections && "SectionList missing from unloaded module.");
142 DynamicLoader::GetSectionListFromModule(const ModuleSP module) const {
144 if (module) {
145 ObjectFile *obj_file = module->GetObjectFile();
228 // Has lldb already seen a module with this UUID?