Data Structures | |
struct | SceModule |
Describes a module. More... | |
struct | SceLibraryEntryTable |
Defines a library and its exported functions and variables. More... | |
struct | SceLibraryStubTable |
Specifies a library and a set of imports from that library. More... | |
Functions | |
SceModule * | sceKernelFindModuleByName (const char *modname) |
Find a module by it's name. | |
SceModule * | sceKernelFindModuleByAddress (unsigned int addr) |
Find a module from an address. | |
SceModule * | sceKernelFindModuleByUID (SceUID modid) |
Find a module by it's UID. | |
int | sceKernelModuleCount (void) |
Return the count of loaded modules. | |
void | sceKernelIcacheClearAll (void) |
Invalidate the CPU's instruction cache. |
SceModule* sceKernelFindModuleByAddress | ( | unsigned int | addr | ) |
Find a module from an address.
addr | - Address somewhere within the module. |
SceModule* sceKernelFindModuleByName | ( | const char * | modname | ) |
Find a module by it's name.
modname | - The name of the module. |
Find a module by it's UID.
modid | - The UID of the module. |
void sceKernelIcacheClearAll | ( | void | ) |
Invalidate the CPU's instruction cache.
int sceKernelModuleCount | ( | void | ) |
Return the count of loaded modules.