Lines Matching refs:module
57 RSOObjectHeader* module; in RsoLoad() local
64 module = OSAllocFromArenaLo((u32) length, 32); in RsoLoad()
65 result = DVDRead(&fileInfo, module, length, 0); in RsoLoad()
70 if (module->bssSize > 0) in RsoLoad()
72 bss = OSAllocFromArenaLo(module->bssSize, 32); // Alloc bss area in RsoLoad()
74 RSOLinkList(module, bss); in RsoLoad()
76 return module; in RsoLoad()
85 RSOObjectHeader* module; in StaticRsoLoad() local
91 module = OSAllocFromArenaLo((u32) length, 32); in StaticRsoLoad()
92 result = DVDRead(&fileInfo, module, length, 0); in StaticRsoLoad()
97 RSOListInit(module); in StaticRsoLoad()
99 return module; in StaticRsoLoad()