Lines Matching refs:module
65 RSOObjectHeader* module; in RsoLoad() local
72 module = OSAllocFromArenaLo((u32) length, 32); in RsoLoad()
73 result = DVDRead(&fileInfo, module, length, 0); in RsoLoad()
78 if (module->bssSize > 0) in RsoLoad()
80 bss = OSAllocFromArenaLo(module->bssSize, 32); // Alloc bss area in RsoLoad()
82 RSOLinkList(module, bss); in RsoLoad()
84 return module; in RsoLoad()
93 RSOObjectHeader* module; in RsoLoadMem2() local
100 module = OSAllocFromMEM2ArenaLo((u32) length, 32); in RsoLoadMem2()
101 result = DVDRead(&fileInfo, module, length, 0); in RsoLoadMem2()
106 if (module->bssSize > 0) in RsoLoadMem2()
108 bss = OSAllocFromMEM2ArenaLo(module->bssSize, 32); // Alloc bss area in RsoLoadMem2()
110 RSOLinkList(module, bss); in RsoLoadMem2()
112 return module; in RsoLoadMem2()
121 RSOObjectHeader* module; in StaticRsoLoad() local
127 module = OSAllocFromArenaLo((u32) length, 32); in StaticRsoLoad()
128 result = DVDRead(&fileInfo, module, length, 0); in StaticRsoLoad()
133 RSOListInit(module); in StaticRsoLoad()
135 return module; in StaticRsoLoad()
154 static void RSOResolvedModuleI(const RSOObjectHeader* module) in RSOResolvedModuleI() argument
159 (u32)RSOFindExportSymbolAddr(module, exp_tblI[i].symbol_name); in RSOResolvedModuleI()
180 static void RSOResolvedModuleJ(const RSOObjectHeader* module) in RSOResolvedModuleJ() argument
185 (u32)RSOFindExportSymbolAddr(module, exp_tblJ[i].symbol_name); in RSOResolvedModuleJ()