Lines Matching refs:module
66 RSOObjectHeader* module; in RsoLoad() local
73 module = OSAllocFromArenaLo((u32) length, 32); in RsoLoad()
74 result = DVDRead(&fileInfo, module, length, 0); in RsoLoad()
79 if (module->bssSize > 0) in RsoLoad()
81 bss = OSAllocFromArenaLo(module->bssSize, 32); // Alloc bss area in RsoLoad()
83 RSOLinkList(module, bss); in RsoLoad()
85 return module; in RsoLoad()
94 RSOObjectHeader* module; in RsoLoadMem2() local
101 module = OSAllocFromMEM2ArenaLo((u32) length, 32); in RsoLoadMem2()
103 result = DVDRead(&fileInfo, module, length, 0); in RsoLoadMem2()
108 if (module->bssSize > 0) in RsoLoadMem2()
110 bss = OSAllocFromMEM2ArenaLo(module->bssSize, 32); // Alloc bss area in RsoLoadMem2()
112 RSOLinkList(module, bss); in RsoLoadMem2()
114 return module; in RsoLoadMem2()
123 RSOObjectHeader* module; in StaticRsoLoad() local
129 module = OSAllocFromArenaLo((u32) length, 32); in StaticRsoLoad()
130 result = DVDRead(&fileInfo, module, length, 0); in StaticRsoLoad()
135 RSOListInit(module); in StaticRsoLoad()
137 return module; in StaticRsoLoad()
156 static void RSOResolvedModuleI(const RSOObjectHeader* module) in RSOResolvedModuleI() argument
161 (u32)RSOFindExportSymbolAddr(module, exp_tblI[i].symbol_name); in RSOResolvedModuleI()
182 static void RSOResolvedModuleJ(const RSOObjectHeader* module) in RSOResolvedModuleJ() argument
187 (u32)RSOFindExportSymbolAddr(module, exp_tblJ[i].symbol_name); in RSOResolvedModuleJ()