├── Readme.md ├── SonyPSPMapHWRegisters.py ├── LICENSE ├── SonyPSPResolveNIDs.py └── ppsspp_niddb.xml /Readme.md: -------------------------------------------------------------------------------- 1 | # psp-ghidra-scripts 2 | A collection of scripts to aid in reverse engineering PSP binaries in [Ghidra](https://ghidra-sre.org/) 3 | 4 | ## Installation 5 | From Ghidra's `Script Manager` window, press the `Script Directories` button and add the directory of your working copy. 6 | 7 | ## Running 8 | Double click the script name from the `Script Manager` window, ie `SonyPSPResolveNIDs.py` 9 | 10 | ## Scripts 11 | ### SonyPSPResolveNIDs 12 | This tool resolves NIDs to library and function names by using the XML files from the [PSP PRX Libraries Documentation Project](https://github.com/mathieulh/PSP-PRX-Libraries-Documentation-Project) 13 | 14 | ### SonyPSPMapHWRegisters 15 | This tool adds memory mapping for the PSP hardware registers. Useful when reverse engineering the kernel. 16 | 17 | -------------------------------------------------------------------------------- /SonyPSPMapHWRegisters.py: -------------------------------------------------------------------------------- 1 | #Add a mapping for hardware registers 2 | #@category Analysis 3 | #@website https://github.com/pspdev/psp-ghidra-scripts 4 | 5 | # Licensed under the Apache License, Version 2.0 (the "License"); 6 | # you may not use this file except in compliance with the License. 7 | # You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, software 12 | # distributed under the License is distributed on an "AS IS" BASIS, 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | # See the License for the specific language governing permissions and 15 | # limitations under the License. 16 | 17 | import ghidra.program.model.address 18 | 19 | hw_memory_map = [ 20 | (0xBC000000, 0x0054, "HW_SYSMEM"), 21 | (0xBC100000, 0x0104, "HW_SYS_CONTROL"), 22 | (0xBC200000, 0x0008, "HW_FREQ"), 23 | (0xBC300000, 0x002C, "HW_INTR"), 24 | (0xBC400000, 0x0054, "HW_PROF"), 25 | (0xBC500000, 0x0410, "HW_HWTIMER"), 26 | (0xBC600000, 0x0014, "HW_SYSTIME"), 27 | (0xBC800000, 0x01D0, "HW_DMACPLUS"), 28 | (0xBC900000, 0x01F0, "HW_DMAC_1"), 29 | (0xBCA00000, 0x01F0, "HW_DMAC_2"), 30 | (0xBCC00000, 0x0074, "HW_VME"), 31 | (0xBD000000, 0x0048, "HW_DDR"), 32 | (0xBD100000, 0x1304, "HW_NANDFLASH"), 33 | (0xBD200000, 0x0044, "HW_MEMSTICK"), 34 | (0xBD300000, 0x0044, "HW_WLAN"), 35 | (0xBD400000, 0x0E80, "HW_GE"), 36 | (0xBD500000, 0x00A4, "HW_GE_EDRAM"), 37 | (0xBD600000, 0x0048, "HW_ATAUMD_1"), 38 | (0xBD700000, 0x0010, "HW_ATAUMD_2"), 39 | (0xBD800000, 0x0518, "HW_USB"), 40 | (0xBD900000, 0x0048, "HW_EFLASH"), 41 | (0xBDA00000, 0x0010, "HW_EFLASH_ATA"), 42 | (0xBDB00000, 0x0048, "HW_EFLASH_DMA"), 43 | (0xBDE00000, 0x0054, "HW_KIRK"), 44 | (0xBDF00000, 0x0098, "HW_UMD"), 45 | (0xBE000000, 0x00D4, "HW_AUDIO"), 46 | (0xBE100000, 0x00A4, "HW_MAGICGATE"), 47 | (0xBE140000, 0x0204, "HW_LCDC"), 48 | (0xBE200000, 0x0030, "HW_I2C"), 49 | (0xBE240000, 0x004C, "HW_GPIO"), 50 | (0xBE300000, 0x0060, "HW_POWER"), 51 | (0xBE4C0000, 0x0048, "HW_UART_1"), 52 | (0xBE500000, 0x0048, "HW_UART_2"), 53 | (0xBE580000, 0x0028, "HW_SYSCON"), 54 | (0xBE5C0000, 0x0028, "HW_LCD_SLIM"), 55 | (0xBE740000, 0x0028, "HW_DISPLAY"), 56 | (0xBE780000, 0x0020, "HW_DISPLAY_SLIM"), 57 | #(0xBFC00000, 0x100000, "RESET_VECTOR") 58 | ] 59 | 60 | def getAddress(offset): 61 | return currentProgram.getAddressFactory().getDefaultAddressSpace().getAddress(offset) 62 | 63 | def main(): 64 | mem = currentProgram.getMemory() 65 | for (addr, size, name) in hw_memory_map: 66 | block = mem.createUninitializedBlock(name, getAddress(addr), size, False) 67 | block.setRead(True) 68 | block.setWrite(True) 69 | block.setVolatile(True) 70 | block.setExecute(False) 71 | print "Added", block 72 | 73 | if __name__ == "__main__": 74 | main() 75 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /SonyPSPResolveNIDs.py: -------------------------------------------------------------------------------- 1 | #Resolve Sony PSP NIDs to function names 2 | #@author John Kelley 3 | #@category Analysis 4 | #@website https://github.com/pspdev/psp-ghidra-scripts 5 | 6 | # PPSSPP NIDs: sift -e "\{(0[Xx][0-9A-F]+),\s+[^,]*,\s+\"[a-zA-Z0-9]+\"," | awk '{print $2 " " $4}'|tr -d "{,\"" 7 | 8 | # Licensed under the Apache License, Version 2.0 (the "License"); 9 | # you may not use this file except in compliance with the License. 10 | # You may obtain a copy of the License at 11 | # 12 | # http://www.apache.org/licenses/LICENSE-2.0 13 | # 14 | # Unless required by applicable law or agreed to in writing, software 15 | # distributed under the License is distributed on an "AS IS" BASIS, 16 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 17 | # See the License for the specific language governing permissions and 18 | # limitations under the License. 19 | 20 | from ghidra.program.model.data import DataTypeConflictHandler, ArrayDataType, PointerDataType 21 | from ghidra.program.model.scalar import Scalar 22 | from ghidra.app.cmd.function import DeleteFunctionCmd 23 | from ghidra.app.util.cparser.C import CParser 24 | from ghidra.app.util.opinion import ElfLoader 25 | from ghidra.app.util.bin.format.objectiveC.ObjectiveC1_Utilities import * 26 | from ghidra.program.model.data import TerminatedStringDataType 27 | import xml.etree.ElementTree as ET 28 | import os.path 29 | import sys 30 | import re 31 | 32 | def getNameForNID(nidDB, lib_name, nid): 33 | # fix for NIDs with missing leading 0's 34 | while len(nid) < 10: 35 | nid = nid[:2] + '0' + nid[2:] 36 | return nidDB.get(nid, lib_name+"_"+nid) 37 | 38 | def createPSPModuleInfoStruct(): 39 | # struct from prxtypes.h 40 | PSPModuleInfo_txt = """ 41 | struct PspModuleInfo { 42 | unsigned int flags; 43 | char name[28]; 44 | void *gp; 45 | void *exports; 46 | void *exp_end; 47 | void *imports; 48 | void *imp_end; 49 | };""" 50 | 51 | # Get Data Type Manager 52 | data_type_manager = currentProgram.getDataTypeManager() 53 | 54 | # Create CParser 55 | parser = CParser(data_type_manager) 56 | 57 | # Parse structure 58 | parsed_datatype = parser.parse(PSPModuleInfo_txt) 59 | 60 | # Add parsed type to data type manager 61 | datatype = data_type_manager.addDataType(parsed_datatype, DataTypeConflictHandler.DEFAULT_HANDLER) 62 | 63 | # datatype isn't accurate, so lets request it from data type manager and return it 64 | return currentProgram.getDataTypeManager().getDataType("/PspModuleInfo") 65 | 66 | def createPSPModuleImportStruct(): 67 | # struct from prxtypes.h 68 | PspModuleImport_txt = """ 69 | struct PspModuleImport{ 70 | char *name; 71 | unsigned int flags; 72 | byte entry_size; 73 | byte var_count; 74 | unsigned short func_count; 75 | unsigned int *nids; 76 | unsigned int *funcs; 77 | };""" 78 | 79 | # Get Data Type Manager 80 | data_type_manager = currentProgram.getDataTypeManager() 81 | 82 | # Create CParser 83 | parser = CParser(data_type_manager) 84 | 85 | # Parse structure 86 | parsed_datatype = parser.parse(PspModuleImport_txt) 87 | 88 | # Add parsed type to data type manager 89 | datatype = data_type_manager.addDataType(parsed_datatype, DataTypeConflictHandler.DEFAULT_HANDLER) 90 | 91 | # datatype isn't accurate, so lets request it from data type manager and return it 92 | return currentProgram.getDataTypeManager().getDataType("/PspModuleImport") 93 | 94 | def createPSPModuleExportStruct(): 95 | # struct from prxtypes.h 96 | PSPModuleExport_txt = """ 97 | struct PspModuleExport 98 | { 99 | char *name; 100 | unsigned int flags; 101 | byte entry_len; 102 | byte var_count; 103 | unsigned short func_count; 104 | unsigned int *exports; 105 | };""" 106 | 107 | # Get Data Type Manager 108 | data_type_manager = currentProgram.getDataTypeManager() 109 | 110 | # Create CParser 111 | parser = CParser(data_type_manager) 112 | 113 | # Parse structure 114 | parsed_datatype = parser.parse(PSPModuleExport_txt) 115 | 116 | # Add parsed type to data type manager 117 | datatype = data_type_manager.addDataType(parsed_datatype, DataTypeConflictHandler.DEFAULT_HANDLER) 118 | 119 | # datatype isn't accurate, so lets request it from data type manager and return it 120 | return currentProgram.getDataTypeManager().getDataType("/PspModuleExport") 121 | 122 | def resolveExports(exports_addr, exports_end, nidDB, moduleInfo_name): 123 | # undefine .lib.ent section members 124 | currentProgram.getListing().clearCodeUnits(exports_addr, exports_end, False) 125 | 126 | export_t = createPSPModuleExportStruct() 127 | export_t_len = export_t.getLength() 128 | num_exports = exports_end.subtract(exports_addr)/export_t_len 129 | if num_exports < 1: 130 | print "No exports to resolve" 131 | return 0 132 | 133 | exports_offset = 0 134 | addr = exports_addr 135 | modules = [] 136 | while addr.add(export_t_len).compareTo(exports_end) <= 0: 137 | # create struct at address 138 | currentProgram.getListing().createData(addr, export_t, export_t_len) 139 | # create module object from data 140 | module = getDataAt(addr) 141 | # append module to modules list 142 | modules.append(module) 143 | # get entry len & update exports_offset 144 | entry_len = module.getComponent(2).value.getUnsignedValue() 145 | exports_offset += 4*entry_len 146 | # update address 147 | addr = exports_addr.add(exports_offset) 148 | 149 | 150 | # iterate through array of exports 151 | module_index = 0 152 | for module in modules: 153 | # roundabout way to grab the string pointed to by the name field 154 | module_name_addr = module.getComponent(0) 155 | module_name = "(none)" 156 | # why we can't just get a number to compare against 0 is beyond me 157 | if module_name_addr.value.toString() != "00000000": 158 | module_name = getDataAt(module_name_addr.value).value 159 | elif module_index == 0: 160 | module_name = moduleInfo_name 161 | else: 162 | module_name = "unknown" 163 | # increase module count 164 | module_index += 1 165 | 166 | # another roundabout way to get an actual number 167 | num_vars = module.getComponent(3).value.getUnsignedValue() 168 | num_funcs = module.getComponent(4).value.getUnsignedValue() 169 | nids_base = module.getComponent(5).value 170 | num_nids = num_vars + num_funcs 171 | stub_base = nids_base.add(4 * num_nids) 172 | # at stub_base, function NIDs come first, followed by variable NIDs 173 | #print module_name,"has", num_vars, "variables, and", num_funcs, "exported functions" 174 | # convert raw data to DWORDs to 'show' NIDs 175 | createDwords(nids_base, num_nids) 176 | # convert raw data to pointers for vars & funcs 177 | for n in range(num_nids): 178 | applyData(currentProgram, PointerDataType(), stub_base.add(4 * n)) 179 | # label the NIDs with the module name 180 | createLabel(nids_base, module_name+"_nids", True) 181 | # label the funcs with the module name 182 | createLabel(stub_base, module_name+"_funcs", True) 183 | # label the vars with the module name 184 | if num_vars > 0: 185 | createLabel(stub_base.add(4*num_funcs), module_name+"_vars", True) 186 | 187 | print "Resolving Export NIDs for",module_name 188 | for func_idx in range(num_funcs): 189 | nid_addr = nids_base.add(4 * func_idx) 190 | stub_addr = getDataAt(stub_base.add(4 * func_idx)).value 191 | # get NID hex and convert to uppercase 192 | nid = str(getDataAt(nid_addr).value).upper() 193 | # ensure 0x instead of 0X 194 | nid = nid.replace('X', 'x') 195 | # resolve NID to function name 196 | label = getNameForNID(nidDB, module_name, nid) 197 | # delete any existing function so we can re-name it 198 | df = DeleteFunctionCmd(stub_addr, True) 199 | df.applyTo(currentProgram) 200 | # create a function with the proper name 201 | createFunction(stub_addr, label) 202 | 203 | for var_idx in range(num_vars): 204 | nid_addr = nids_base.add(4*num_funcs + 4*var_idx) 205 | stub_addr = getDataAt(stub_base.add(4*num_funcs + 4*var_idx)).value 206 | # get NID hex and convert to uppercase 207 | nid = str(getDataAt(nid_addr).value).upper() 208 | # ensure 0x instead of 0X 209 | nid = nid.replace('X', 'x') 210 | # resolve NID to variable name 211 | label = getNameForNID(nidDB, module_name, nid) 212 | createLabel(stub_addr, "var_"+label, True) 213 | 214 | def resolveImports(imports_addr, imports_end, nidDB): 215 | # undefine .lib.stub section members 216 | currentProgram.getListing().clearCodeUnits(imports_addr, imports_end, False) 217 | 218 | # create array of PspModuleImport 219 | import_t = createPSPModuleImportStruct() 220 | import_t_len = import_t.getLength() 221 | num_imports = imports_end.subtract(imports_addr)/import_t_len 222 | if num_imports < 1: 223 | print "No imports to resolve" 224 | return 0 225 | 226 | imports_offset = 0 227 | addr = imports_addr 228 | modules = [] 229 | while addr.add(import_t_len).compareTo(imports_end) <= 0: 230 | try: 231 | # create struct at address 232 | currentProgram.getListing().createData(addr, import_t, import_t_len) 233 | # create module object from data 234 | module = getDataAt(addr) 235 | # append module to modules list 236 | modules.append(module) 237 | # get entry len & update exports_offset 238 | entry_len = module.getComponent(2).value.getUnsignedValue() 239 | imports_offset += 4 * entry_len 240 | # update address 241 | addr = imports_addr.add(imports_offset) 242 | except ghidra.program.model.util.CodeUnitInsertionException as e: 243 | print("Warning: Skipping address {addr} due to conflict: {e}") 244 | 245 | # iterate through array of library imports 246 | for module in modules: 247 | # validate name field, thanks to FW 6.61 wlan.prx (See Issue #1) 248 | module_name_ptr = module.getComponent(0).value 249 | module_name_data = getDataAt(module_name_ptr) 250 | if module_name_data is None: 251 | print "WARNING: Attempting to correct incomplete string datatype for PSPModuleImport.name" 252 | try: 253 | currentProgram.getListing().createData(module_name_ptr, TerminatedStringDataType.dataType) 254 | except ghidra.program.model.util.CodeUnitInsertionException as e: 255 | # this is brittle but we lack a better way right now 256 | # fingers crossed that Ghidra doesn't change their python exception message 257 | match = re.match(".*([0-8A-Fa-f]{8})\sto\s([0-8A-Fa-f]{8})", e.message) 258 | if match: 259 | print "WARNING: Clearing data from ", match.group(1), "to", match.group(2) 260 | currentProgram.getListing().clearCodeUnits(module_name_ptr.getNewAddress(int("0x"+match.group(1), 16)), module_name_ptr.getNewAddress(int("0x"+match.group(2), 16)), False) 261 | currentProgram.getListing().createData(module_name_ptr, TerminatedStringDataType.dataType) 262 | 263 | # roundabout way to grab the string pointed to by the name field 264 | module_name = getDataAt(module.getComponent(0).value).value 265 | # another roundabout way to get an actual number 266 | # num_vars = module.getComponent(3).value.getUnsignedValue() 267 | num_funcs = module.getComponent(4).value.getUnsignedValue() 268 | nids_base = module.getComponent(5).value 269 | stub_base = module.getComponent(6).value 270 | # TODO: account for variables here, like above. 271 | # We have yet to see variables in an import 272 | # num_nids = num_vars + num_funcs 273 | # convert raw data to DWORDs to 'show' NIDs 274 | createDwords(nids_base, num_funcs) 275 | # label the NIDs with the module name 276 | createLabel(nids_base, module_name+"_nids", True) 277 | 278 | print "Resolving Import NIDs for",module_name 279 | for func_idx in range(num_funcs): 280 | nid_addr = nids_base.add(4*func_idx) 281 | stub_addr = stub_base.add(8*func_idx) # should this be 4? 282 | # get NID hex and convert to uppercase 283 | nid = str(getDataAt(nid_addr).value).upper() 284 | # ensure 0x instead of 0X 285 | nid = nid.replace('X', 'x') 286 | # resolve NID to function name 287 | label = getNameForNID(nidDB, module_name, nid) 288 | # delete any existing function so we can re-name it 289 | df = DeleteFunctionCmd(stub_addr, True) 290 | df.applyTo(currentProgram) 291 | # create a function with the proper name 292 | createFunction(stub_addr, label) 293 | 294 | def getModuleInfoAddrFromLoadCommands(): 295 | # Calculate the address os sceModuleInfo by examining the first load command 296 | # in _elfProgramHeaders and subtracting p_offset from p_paddr 297 | loadcmds = getDataAt(currentProgram.getMemory().getBlock("_elfProgramHeaders").getStart()) 298 | # get first load command 299 | loadcmd = loadcmds.getComponent(0) 300 | # 2nd component is p_offset 301 | load_offset = loadcmd.getComponent(1).getLong(0) 302 | # 4th component is p_addr 303 | load_paddr = loadcmd.getComponent(3).getLong(0) 304 | 305 | # account for kernel mode PRX with upper bit set 306 | load_paddr &= 0x7fffffff 307 | load_paddr = Scalar(32, load_paddr - load_offset, False) 308 | 309 | sceModuleInfo_addr = getAddressFactory().getAddress(load_paddr.toString()) 310 | 311 | # get the ELF's image base since PRX's aren't based at 0 312 | image_base = currentProgram.getImageBase().getAddressableWordOffset() 313 | 314 | return sceModuleInfo_addr.add(image_base) 315 | 316 | def findAndLoadModuleInfoStruct(): 317 | # create sceModuleInfo struct 318 | sceModuleInfo_t = createPSPModuleInfoStruct() 319 | sceModuleInfo_t_len = sceModuleInfo_t.getLength() 320 | 321 | # .lib.stub isn't required in PRXes, so use .rodata.sceModuleInfo instead. 322 | sceModuleInfo_section = currentProgram.getMemory().getBlock(".rodata.sceModuleInfo") 323 | if sceModuleInfo_section is None: 324 | # Just kidding, this isn't guaranteed to exist either - I'm looking at you, Assassin's Creed - Bloodlines. 325 | print "Could not find .rodata.sceModuleInfo section, calculating its location from ELF Program Headers" 326 | sceModuleInfo_addr = getModuleInfoAddrFromLoadCommands() 327 | else: 328 | sceModuleInfo_addr = sceModuleInfo_section.getStart() 329 | 330 | # re-create sceModuleInfo struct at the given address 331 | currentProgram.getListing().clearCodeUnits(sceModuleInfo_addr, sceModuleInfo_addr.add(sceModuleInfo_t_len), False) 332 | currentProgram.getListing().createData(sceModuleInfo_addr, sceModuleInfo_t) 333 | return getDataAt(sceModuleInfo_addr) 334 | 335 | def loadNIDDB(xml_file): 336 | # Ghidra hack to get the current directory to load data files 337 | script_path = os.path.dirname(getSourceFile().getCanonicalPath()) 338 | 339 | # load NID database 340 | xml_root = ET.parse(os.path.join(script_path, xml_file)) 341 | 342 | # construct dict of NID->NAME to greatly speed up lookup 343 | nidDB = {} 344 | funcs = xml_root.findall(".//FUNCTION") 345 | for func in funcs: 346 | nid = func.find("NID").text 347 | name = func.find("NAME").text 348 | nidDB[nid] = name 349 | return nidDB 350 | 351 | def main(): 352 | nidDB = loadNIDDB("ppsspp_niddb.xml") 353 | 354 | sceModuleInfo = findAndLoadModuleInfoStruct() 355 | # 2nd component is the module's name 356 | module_name = sceModuleInfo.getComponent(1).value 357 | # sanitize the name for use in Ghidra labels 358 | module_name = module_name.replace(" ", "_") 359 | # 4th component is ptr to exports 360 | exports_addr = sceModuleInfo.getComponent(3).getValue() 361 | # 5th component is exports end 362 | exports_end = sceModuleInfo.getComponent(4).getValue() 363 | # 6th component is ptr to stubs, aka 'imports' 364 | imports_addr = sceModuleInfo.getComponent(5).getValue() 365 | # 7th component is stubs end 366 | imports_end = sceModuleInfo.getComponent(6).getValue() 367 | 368 | # resolve all the NIDs! 369 | resolveExports(exports_addr, exports_end, nidDB, module_name) 370 | resolveImports(imports_addr, imports_end, nidDB) 371 | 372 | if __name__ == "__main__": 373 | main() 374 | -------------------------------------------------------------------------------- /ppsspp_niddb.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 0x0074EF9BscePowerGetResumeCount 4 | 0x0090B2C8scePopsManExitVSHKernel 5 | 0x00AD67F8sceNpDrmGetFixedKey 6 | 0x00D1378FsceCccUTF8toUTF16 7 | 0x00EEC06AsceUtilsBufferCopy 8 | 0x011F03C1sceRtcGetAccumulativeTime 9 | 0x0128147BsceMScmWriteMSReg 10 | 0x013016F3sceP3daBridgeCore 11 | 0x01562BA3sceAudioOutput2Reserve 12 | 0x01977054sceMpegGetUserdataAu 13 | 0x01977054sceMpegQueryUserdataEsSize 14 | 0x019B25EB__sceSasSetADSR 15 | 0x01C76489sceMp4TrackSampleBufDestruct 16 | 0x01F09203sceNandIsBadBlock 17 | 0x02098C69sceAacGetInfoToAddStreamData 18 | 0x02133959sceCodecStopEntry 19 | 0x02314986sceKernelCpuEnableIntr 20 | 0x0251B134sceUtilityScreenshotInitStart 21 | 0x0282A3BDsceHttpGetContentLength 22 | 0x0296C7D6sceNetIfhandleIfIoctl 23 | 0x029CA3B3sceRtcGetAccumlativeTime 24 | 0x02BAAD91sceCtrlGetSamplingCycle 25 | 0x02D7F94BsceFontFlush 26 | 0x03444EB4sceGeListSync 27 | 0x034A921FsceKernelGetVTimerTime 28 | 0x03B6807DsceVaudioChReserve 29 | 0x03D67340sceUmdCacheGetCacheParam 30 | 0x03D9526FsceHttpSetResolveRetry 31 | 0x03ED7A82sceUsbCamSetupMic 32 | 0x0425B986sceJpegDecompressAllImage 33 | 0x0442D852scePowerRequestColdReset 34 | 0x04776994sceNetApctlGetBSSDescEntryUser 35 | 0x0498FB3CsceRtcFormatRFC3339 36 | 0x04B5AE02sceJpegMJpegCsc 37 | 0x04B7766EscePowerRegisterCallback 38 | 0x04B93CEFsceJpegDecodeMJpeg 39 | 0x04E72261sceKernelAllocateKTLS 40 | 0x05038FC7sceNetInetSendto 41 | 0x05572A5FsceKernelExitGame 42 | 0x0558B075sceMpegAvcCopyYCbCr 43 | 0x057E7380sceKernelSetCompiledSdkVersion401_402 44 | 0x058D21C0sceSslGetNameEntryCount 45 | 0x05AFB9E4sceUtilityHtmlViewerUpdate 46 | 0x05B193B7__PsmfPlayerFinish 47 | 0x05D50F41sceDdrdbEncrypt 48 | 0x05DB22CEsceGeUnsetCallback 49 | 0x05EF322CsceRtcGetDaysInMonth 50 | 0x05FE320CsceWlanDevGetStateGPIO 51 | 0x06128E42sceUsbMicPollInputEnd 52 | 0x062BB07EsceUriUnescape 53 | 0x06488A1CsceHttpSetCookieSendCallback 54 | 0x067173A8BIO_set_retry_write 55 | 0x068C4320sceCccEncodeSJIS 56 | 0x06A48659sceUtilityRssSubscriberShutdownStart 57 | 0x06A70004sceIoMkdir 58 | 0x06FB8A63sceKernelUtilsMt19937UInt 59 | 0x0785C974sceDrmBBCipherUpdate 60 | 0x07EC321AsceMp3ReserveMp3Handle 61 | 0x07F58C24__sceSasGetAllEnvelopeHeights 62 | 0x0809C831sceHttpEnableRedirect 63 | 0x081826B4sceSysconSuspend 64 | 0x08234E6DsceSysconReceiveSetParam 65 | 0x0840E808sceMp3ResetPlayPositionByFrame 66 | 0x0861D934CRYPTO_malloc 67 | 0x086E5895sceAudioInputBlocking 68 | 0x089FF1F1BIO_should_write 69 | 0x08A471A6sceIdStorageCreateLeaf 70 | 0x08AEE98AsceUsbCamSetMicGain 71 | 0x08BB9677scePcactAuth2BB 72 | 0x08BD7374sceIoGetDevType 73 | 0x08D98894sceNpDrmEdataSetupKey 74 | 0x08FFF7A0sceNetAdhocctlScan 75 | 0x090CCB3FsceKernelPowerTick 76 | 0x092968F4sceKernelCpuSuspendIntr 77 | 0x0940A1B9sceUtilityPsnUpdate 78 | 0x094198B8sceUtilityPsnGetStatus 79 | 0x097049BDbcopy 80 | 0x099EF33CsceFontFindOptimumFont 81 | 0x09C26C7EsceUsbCamSetContrast 82 | 0x09C45275EVP_PKEY_new 83 | 0x0A054CDAsceMScmHCLastStatus 84 | 0x0A41A298sceUsbCamSetupStillEx 85 | 0x0A771482sceSysconInit 86 | 0x0AB0C6F3sceKernelDispatchResumeHandlers 87 | 0x0AD043EDsceNetAdhocctlConnect 88 | 0x0ADC8686sceNandWriteAccess 89 | 0x0AFD0D8BscePowerIsBatteryExist 90 | 0x0B12ABFBsceHttpDisableCookie 91 | 0x0B1F77E1sceNetAdhocTransferSocketAbortParent 92 | 0x0B2228E9sceNetAdhocGameModeDeleteReplica 93 | 0x0B464512sceKernelReleaseLibrary 94 | 0x0B588501sceCtrlReadLatch 95 | 0x0BA3B9CCsceGzipGetCompressedData 96 | 0x0BA514E5scePsmfGetVideoInfo 97 | 0x0BEE8F36sceNandSetScramble 98 | 0x0BF0A3AEsceNetGetLocalEtherAddr 99 | 0x0BF608FBsceGeRestoreContext 100 | 0x0C106E53sceKernelRegisterThreadEventHandler 101 | 0x0C116E1BsceAtracLowLevelDecode 102 | 0x0C120E1DscePsmfSpecifyStreamWithStreamTypeNumber 103 | 0x0C622081sceWlanGetEtherAddr 104 | 0x0C7FFA5CsceNetApctlGetBSSDescIDList 105 | 0x0CAE4A7BsceNetAdhocTransferRequestSession 106 | 0x0CAE832BsceRegCloseCategory 107 | 0x0CBB0571sceKernelStdioLseek 108 | 0x0CD21B1FscePowerSetPowerSwMode 109 | 0x0CD7D4AAsceUsbAccGetInfo 110 | 0x0D188658strstr 111 | 0x0D3EA203sceUmdManTerm 112 | 0x0D560144sceDNASInit 113 | 0x0D5BC6D2sceUtilityLoadUsbModule 114 | 0x0D69BF40sceRegFlushCategory 115 | 0x0D81716AsceKernelPollMbx 116 | 0x0DA3EB39eventMgrCallbackDetach 117 | 0x0DA7535EsceFontGetFontInfo 118 | 0x0DAFA58FsceHttpEnableCookie 119 | 0x0DB149F4sceMp3NotifyAddStreamData 120 | 0x0DC8D26DsceUmdManWaitSema 121 | 0x0DDCD2C9sceKernelTryLockMutex 122 | 0x0DE1F600sceKernelLinkLibraryEntriesForUser 123 | 0x0DFB7B6Cstrpbrk 124 | 0x0E0C27AFsceUtilityAutoConnectAbort 125 | 0x0E20F177sceDisplaySetMode 126 | 0x0E2A73ABsceAtracSetData 127 | 0x0E3C2E9DsceMpegAvcDecode 128 | 0x0E760DBAsceKernelLinkLibraryEntries 129 | 0x0E875980sceHeapReallocHeapMemory 130 | 0x0E927AED_sceKernelReturnFromTimerHandler 131 | 0x0EB43B06sceSslGetUsedMemoryCurrent 132 | 0x0F0187D2sceMp4GetAvcTrackInfoData 133 | 0x0F341BE4sceImposeGetHomePopup 134 | 0x0F3EEAACsceUtilityAuthDialogShutdownStart 135 | 0x0F6C18D7sceMpegAvcDecodeDetail 136 | 0x0F9547E6sceNpDrmGetVersionKey 137 | 0x0F9BBBBDsceNandResume 138 | 0x0FACAB19sceIoWriteAsync 139 | 0x0FAE370EsceAtracSetHalfwayBufferAndGetID 140 | 0x0FD2F220BIO_method_name 141 | 0x103C3EB2sceGpioPortClear 142 | 0x104F749DSSL_state 143 | 0x106A3552sceGzipGetName 144 | 0x1078C008scePsmfPlayerStop 145 | 0x109F50BCsceIoOpen 146 | 0x10EE0D2CsceMp4AacDecodeInit 147 | 0x10F3BB61memset 148 | 0x110D3739sceAtaSetDriveStat 149 | 0x110DEC9AsceKernelUSec2SysClock 150 | 0x1117C65FsceIoRmdir 151 | 0x112CC951sceUsbGetDrvState 152 | 0x11391041sceLoadCertInit 153 | 0x113E9E7BsceMp4GetNumberOfMetaData 154 | 0x117CA01AsceNetAdhocDownloadTermServer 155 | 0x1181E963sceKernelDelaySysClockThreadCB 156 | 0x11A1F128sceUsbCamGetAutoImageReverseState 157 | 0x11A5127Afdgets 158 | 0x11F95CF1sceMpegGetAvcNalAu 159 | 0x12748EB9sceNetResolverWaitAsync 160 | 0x12805193sceAtaAhbSetupBus 161 | 0x1281DA8EsceUtilityInstallInitStart 162 | 0x131BDE57sceMp4InitAu 163 | 0x132F1ECAsceAtracReinit 164 | 0x13370001__IoAsyncFinish 165 | 0x13407F13sceMpegRingbufferDestruct 166 | 0x136CAF51sceAudioOutputBlocking 167 | 0x136F2419sceKernelSetPTRIGMask 168 | 0x138747DEsceSysconGetUmdSwitch 169 | 0x13A5ABEFsceKernelPrintf 170 | 0x13A8B98A_sce_pspnet_ifioctl 171 | 0x13DAB550sceNetAdhocDownloadCreateServer 172 | 0x13E68009sceMlnBridgeAesEcbEncrypt 173 | 0x13F1028AsceG729DecodeExit 174 | 0x13F592BCsceAudioOutputPannedBlocking 175 | 0x147F7C85sceUtilityAuthDialogUpdate 176 | 0x1493EBD9wmemset 177 | 0x149A7895sceUtilityDNASShutdownStart 178 | 0x14C17EF9sceNetResolverStartNtoAAsync 179 | 0x14C6C45CsceUmdUnuseUMDInMsUsbWlan 180 | 0x14D3381CsceUmdExecTestCmd 181 | 0x15096ECDsceDNASCoreGetHostname 182 | 0x15355B0EsceDRMInstallGetPkgInfo 183 | 0x15540184sceHttpDeleteHeader 184 | 0x1560F143sceNetMCopyback 185 | 0x1575D64BsceAtracLowLevelInitDecoder 186 | 0x1579A159sceUtilityLoadNetModule 187 | 0x157E6225sceNetAdhocPtpClose 188 | 0x1593C05DsceNetThreadExitDeleteEventFlag 189 | 0x15ADC862sceKernelRegisterNmiHandler 190 | 0x15B6446BsceKernelUnlockLwMutex 191 | 0x15CFE3C0sceNetMallocInternal 192 | 0x1602ED0DsceSysconCmdCancel 193 | 0x16042084sceNetCreateIfhandleEther 194 | 0x16173D42sceUsbstorMsSetNickname 195 | 0x161ACEB2sceSfmt19937InitGenRand 196 | 0x16246B99sceNetIfPrepend 197 | 0x162E6FD5sceNetInetGetsockname 198 | 0x165CE085scePowerGetPowerSwMode 199 | 0x16641D70sceKernelDcacheReadTag 200 | 0x167AFD9EsceMpegInitAu 201 | 0x16909002sceSysregAtaBusClockEnable 202 | 0x16A1A8D8sceUtilityAuthDialogGetStatus 203 | 0x16D02AF0sceUtilityNpSigninInitStart 204 | 0x17099F0AsceVideocodecInit 205 | 0x172D316EsceKernelStdin 206 | 0x17768E14sceRegSetKeyValue 207 | 0x17943399sceNetInetInit 208 | 0x17A10DCCsceSslGetNotBefore 209 | 0x17C11696sceG729DecodeInitResource 210 | 0x17C1684EsceKernelReferThreadStatus 211 | 0x17C26C00sceRtcSetCurrentSecureTick 212 | 0x17CF7D2CsceVideocodecGetFrameCrop 213 | 0x17D39E17sceDdrInit 214 | 0x17DAA8C2sceGpioSuspend 215 | 0x17E1D813sceCccSetErrorCharUTF8 216 | 0x17E3F4BBsceNpDrmVerifyAct 217 | 0x17EAA97DsceMp4GetAvcAuWithoutSampleBuf 218 | 0x17F7B2FBsceUsbCamSetupVideo 219 | 0x180F7B62sceUtilityGamedataInstallAbort 220 | 0x18260574sceKernelReceiveMbx 221 | 0x1839852AsceKernelMemcpy 222 | 0x1858883DsceNetRand 223 | 0x18B04C82sceUsbAccUnregisterType 224 | 0x18B78661sceNandVerifyEcc 225 | 0x18BFBE65sceSysconCtrlLED 226 | 0x18CB51ABinflateInit_ 227 | 0x18FE80DBlongjmp 228 | 0x1909C99BsceRtcSetTime64_t 229 | 0x1910B327sceHprmPeekCurrentKey 230 | 0x19155A2FsceSircsEnd 231 | 0x191CDEFFsceSslEnd 232 | 0x19235F8CsceNetWisprStart 233 | 0x193D4036sceKernelSetGPIMask 234 | 0x19884A15sceMd5BlockInit 235 | 0x19A0DB42BIO_method_type 236 | 0x19CFF145sceKernelCreateLwMutex 237 | 0x19D579F0sceOpenPSIDGetPSID 238 | 0x19E51F54sceWlanDevGetMacAddr 239 | 0x1A0EBB69sceHttpDisableRedirect 240 | 0x1A33F9AEsceNetInetBind 241 | 0x1A46CFE7sceUsbCamStillPollInputEnd 242 | 0x1AA6CFFAsceKernelReleaseExceptionHandler 243 | 0x1AB53A58strtok_r 244 | 0x1AD5CC88sceNetAdhocDownloadAbortRecv 245 | 0x1AF94D03sceKernelDonateWakeupThread 246 | 0x1B19A313sceUmdExecInquiryCmd 247 | 0x1B385D8FsceIoLseek32Async 248 | 0x1B4217BCsceKernelSetCompiledSdkVersion603_605 249 | 0x1B5B82BCsceGzipIsValid 250 | 0x1B7C8191sceSslGetIssuerName 251 | 0x1B839B83sceMp3LowLevelInit 252 | 0x1BA2FCAEscePowerSetIdleCallback 253 | 0x1BCA32E3BIO_retry_type 254 | 0x1BDF5D13sceNetInetInetAton 255 | 0x1C0D95A6sceGeListEnQueueHead 256 | 0x1C2728A5RAND_set_rand_method 257 | 0x1C360735sceUsbWaitCancel 258 | 0x1C46158AsceKernelDmaExit 259 | 0x1C4C4C7AsceSysregEmcsmIoDisable 260 | 0x1C5BC5A0sceHprmInit 261 | 0x1C679240LinkDiscoverSkip 262 | 0x1C84B58DsceHeapReallocHeapMemoryWithOption 263 | 0x1CCB66D2sceDrmBBCipherInit 264 | 0x1CEDB9D4sceHttpFlushCache 265 | 0x1D10419C_sce_pspnet_ifunit 266 | 0x1D3256BAsceKernelRegisterChunk 267 | 0x1D371B8AsceKernelCancelVpl 268 | 0x1D686870sceUsbCamSetEvLevel 269 | 0x1D83F344atob 270 | 0x1D8A762EsceRegOpenCategory 271 | 0x1E490401scePowerIsBatteryCharging 272 | 0x1E57A8E7scePsmfPlayerConfigPlayer 273 | 0x1E6D9013scePsmfSpecifyStreamWithStreamType 274 | 0x1E958148sceUsbCamIoctl 275 | 0x1EC64594BIO_push 276 | 0x1F080078sceUsbstorBootRegisterNotify 277 | 0x1F0FC3E3sceHttpSetRecvTimeOut 278 | 0x1F4011E6sceCtrlSetSamplingMode 279 | 0x1F4AC19CsceUsbstormlnGetCommand 280 | 0x1F6752ADsceGeEdramGetSize 281 | 0x1F803938sceCtrlReadBufferPositive 282 | 0x1F9AFFF4sceUmdManMediaPresent 283 | 0x1FA4D135sceIdStorageWriteLeaf 284 | 0x1FB15A32sceKernelSetEventFlag 285 | 0x1FB2FDDDsceNetAtoi 286 | 0x1FC64E09sceKernelLockLwMutexCB 287 | 0x1FF89745sceNetAdhocctlJoinEnterGameMode 288 | 0x20388C9EsceSysregSircsClkDisable 289 | 0x203CEB0DsceRtcGetLastReincarnatedTime 290 | 0x204F23FFsceSysconGetBaryonStatus2 291 | 0x205E8D17_sce_pspnet_tsleep 292 | 0x206276C2sceDisplayInit 293 | 0x20628E6FsceUmdGetErrorStat 294 | 0x2085D15DscePowerGetBatteryLifePercent 295 | 0x208DB1BDsceHprmIsRemoteExist 296 | 0x20B317A0sceNetAdhocctlAddHandler 297 | 0x20C68C34sceUtilityEnd 298 | 0x20FFF560sceKernelCreateVTimer 299 | 0x21038913sceDisplayIsVsync 300 | 0x210567F7sceAudioEnd 301 | 0x210EAB3AsceDisplayGetAccumulatedHcount 302 | 0x21183216sceMScmWriteDataPIO 303 | 0x211A057CsceMpegAvcQueryYCbCrSize 304 | 0x2162EE67sceNetIfhandlePollSema 305 | 0x216D1BF1inflate 306 | 0x219C58F1sceHprmIsMicrophoneExist 307 | 0x219EF5CCsceNpDrmEdataGetDataSize 308 | 0x21D5A83FsceAudiocodec2Decode 309 | 0x21FF80E4sceMpegQueryStreamOffset 310 | 0x2241C828sceUsbstorMsGetVSHInfo 311 | 0x224C5F44sceNetResolverStartNtoA 312 | 0x2255551EsceHttpGetNetworkPspError 313 | 0x226D9099sceDRMInstallAbort 314 | 0x227662D7sceJpegDecodeMJpegYCbCrSuccessively 315 | 0x22C2BCC6sceNetAdhocDownloadGetServerList 316 | 0x231FC6B7_sceAtracGetContextAddress 317 | 0x23436A4AscePowerGetInnerTemp 318 | 0x234586AEsceMpegChangeGetAvcAuMode 319 | 0x235D8787scePsmfPlayerCreate 320 | 0x2370130EsceDNASCoreCheckProxyResponse 321 | 0x237DBD4FsceKernelAllocPartitionMemory 322 | 0x2380DC08vshIoDevctl 323 | 0x23A0C5BAsceKernelRegisterRtcFunc 324 | 0x23C31FFEscePowerVolatileMemLock 325 | 0x23D35CAEsceAacTermResource 326 | 0x23E51D8FsceUsbbdReqSend 327 | 0x23FFC828sceKernelGzipGetCompressedData 328 | 0x243665EDrindex 329 | 0x244172AFsceNetResolverCreate 330 | 0x24AA94F4sceHttpStorageWrite 331 | 0x24AC31EBsceUtilityGamedataInstallInitStart 332 | 0x24C32559sceKernelDipsw 333 | 0x24F04EF8sceNetAdhocTransferDeleteChild 334 | 0x24FD7BCFsceImposeGetLanguageMode 335 | 0x24FE91A1sceNetApctlDisconnect 336 | 0x25B6F372sceUsbstormlnUnregisterBuffer 337 | 0x261C6EE8sceCodecSetOutputVolume 338 | 0x263767F6sceNetFlagIfEvent 339 | 0x2673646BscePsmfVerifyPsmf 340 | 0x2674CFFEsceNandEraseAllBlock 341 | 0x267618F4sceHttpSetAuthInfoCallback 342 | 0x267A6DD2__sceSasRevParam 343 | 0x268F95CAsceUsbGpsSetInitDataLocation 344 | 0x26927D19sceVideocodecGetVersion 345 | 0x26D25A5DsceRtcTickAddMicroseconds 346 | 0x26D7A24AsceRtcTickAddHours 347 | 0x26E1E2BDsceDNASCoreSetChallenge 348 | 0x26FA0928sceSysregSircsIoDisable 349 | 0x27045362sceNetUpnpGetNatInfo 350 | 0x275987D1sceNpDrmRenameCheck 351 | 0x278C0DF5sceKernelWaitThreadEnd 352 | 0x27932388sceKernelBootFrom 353 | 0x279F9A12wmemclear 354 | 0x27A2982FsceMpegBaseInit 355 | 0x27ACC20BsceVaudioChReserveBuffering 356 | 0x27C4594CsceRtcGetTime_t 357 | 0x27CC57F0sceKernelLibcTime 358 | 0x27E22EC2sceKernelResumeDispatchThread 359 | 0x27EB27B8sceIoLseek 360 | 0x27F3292CscePowerBatteryUpdateInfo 361 | 0x27F6E642sceFontGetNumFontList 362 | 0x27F98543sceRtcFormatRFC3339LocalTime 363 | 0x281928A9sceNetTerm 364 | 0x28235C56sceAudioRoutingGetVolumeMode 365 | 0x28240568scePsmfGetCurrentStreamNumber 366 | 0x289D82FEsceDisplaySetFrameBuf 367 | 0x28A8E98AsceRegGetKeyValue 368 | 0x28B4DE33BIO_new_socket 369 | 0x28B6489CsceKernelDeleteSema 370 | 0x28CCB940sceMp4GetTrackEditList 371 | 0x28E12023scePowerGetBatteryTemp 372 | 0x28E1E988sceRtcParseRFC3339 373 | 0x29160F5DsceClockgenInit 374 | 0x291FF031sceKernelReleaseDefaultExceptionHandler 375 | 0x2935C45BsceNetApctlGetBSSDescEntry2 376 | 0x293B45B8sceKernelGetThreadId 377 | 0x2952F5ACsceKernelDcacheWBinvAll 378 | 0x29681260sceAudiocodecReleaseEDRAM 379 | 0x2995D020sceUtilitySavedataErrInitStart 380 | 0x29B3FB24scePopsManLoadModule 381 | 0x2A0C2009sceHeapGetMallinfo 382 | 0x2A2A1E07sceNetAdhocMatchingInit 383 | 0x2A2B3DE0sceUtilityLoadModule 384 | 0x2A368661sceMp3ResetPlayPosition 385 | 0x2A3D44FFsceKernelGetCallbackCount 386 | 0x2A3E5280sceKernelQueryMemoryInfo 387 | 0x2A6C3296sceHttpSetAuthInfoCB 388 | 0x2A73ADDCsceNetStrtoul 389 | 0x2ABADC63sceHeapFreeHeapMemory 390 | 0x2AC9954BsceKernelExitGameWithStatus 391 | 0x2AD0A649sceMScmGetSlotState 392 | 0x2AD8E239sceUtilityMsgDialogInitStart 393 | 0x2B6C67EAsceDNASCoreCheckGameInfoFlag 394 | 0x2B6FB0DAsceNetAdhocDownloadStartServer 395 | 0x2B7299D8sceHeapAllocHeapMemoryWithOption 396 | 0x2B7C7CF4scePowerRequestStandby 397 | 0x2B96173BsceUtilityRssSubscriberGetStatus 398 | 0x2BAA4294sceNpDrmOpen 399 | 0x2BCD50C0sceUsbCamGetEvLevel 400 | 0x2BCEC83EsceHprmPeekLatch 401 | 0x2BEB1569scePsmfPlayerBreak 402 | 0x2BEFDF23sceNetApctlGetInfo 403 | 0x2C0DB9DDsceRegGetKeysNum 404 | 0x2C34E053sceKernelReleaseWaitThread 405 | 0x2C3C82CFsceHttpFlushAuthList 406 | 0x2C6E9FE9sceKernelGetChunk 407 | 0x2C7B8B05sceHprmResume 408 | 0x2C8E6AB3__sceSasGetPauseFlag 409 | 0x2C97AB36sceIdStorageDeleteLeaf 410 | 0x2CB147F7sceAsfGetFrameData 411 | 0x2CBE959BsceUmdExecReqSenseCmd 412 | 0x2CCF071Afdprintf 413 | 0x2CE0BE69sceIdStorageEnd 414 | 0x2D0E4E0AscePsmfPlayerSetTempBuf 415 | 0x2D0F7755sceSysregEmcsmBusClockDisable 416 | 0x2D211135sceRegGetKeys 417 | 0x2D31F5B1sceVideocodecGetEDRAM 418 | 0x2D53F36EsceAudioOutput2OutputBlocking 419 | 0x2D633688sceIdStorageIsReadOnly 420 | 0x2D7C40FAsceMScmWaitHCIntr 421 | 0x2D8551ABsceKernelStdoutReset 422 | 0x2D8DAE58sceHttpStorageGetstat 423 | 0x2DD3E298sceAtracGetBufferInfoForResetting 424 | 0x2E0911AAsceKernelUnloadModule 425 | 0x2E251404sceUsbAccRegisterType 426 | 0x2E2E2B09SSL_get_rbio 427 | 0x2E3BC333sceKernelDmaChReserve 428 | 0x2E6DCDCDsceUsbMicInputBlocking 429 | 0x2E930264sceUsbCamSetupMicEx 430 | 0x2EE39A64sceZlibAdler32 431 | 0x2F305274sceNetBcopy 432 | 0x2F385E7FsceVideocodecScanHeader 433 | 0x2F67356AsceFontCalcMemorySize 434 | 0x2FE71FE7sceNetInetSetsockopt 435 | 0x2FF4E9F9sceKernelAssert 436 | 0x2FF6081BsceNandDetectChipMakersBBM 437 | 0x302AB4B8sceDRMInstallInit 438 | 0x304882E1sceMpegBaseCscAvcRange 439 | 0x3054D478sceKernelStdioRead 440 | 0x30602CE9sceNetIfhandleSignalSema 441 | 0x3069C2B5sceMp4GetAvcParamSet 442 | 0x307E6E1CsceVideocodecDelete 443 | 0x3082F4E2sceNetAdhocDownloadInitClient 444 | 0x30BE0259sceRegGetKeyValueByName 445 | 0x30C08374sceKernelGetCpuClockCounter 446 | 0x30F69334sceNetIfhandleInit 447 | 0x30FD48F0sceKernelPollEventFlag 448 | 0x310F0CCFsceGpioPortSet 449 | 0x31327F19_sceKernelLockLwMutexCB 450 | 0x314ED31EsceNetAdhocDownloadStartClient 451 | 0x315AD3A0sceKernelSetCompiledSdkVersion380_390 452 | 0x31668BAAsceAtracGetChannel 453 | 0x317D9D2CsceGpioSetPortMode 454 | 0x318A350CsceSha256Digest 455 | 0x31BCD7E0sceMp4TrackSampleBufPut 456 | 0x31BD0272sceMpegAvcCsc 457 | 0x31C4BAA8sceDisplayGetBrightness 458 | 0x31E08AFBsceIdStorageEnumId 459 | 0x31F95CDEsceUsbGpsGetPowerSaveMode 460 | 0x3251EA56sceIoPollAsync 461 | 0x3278AB0CsceNetAdhocGameModeCreateReplica 462 | 0x328C546AsceKernelWaitEventFlagCB 463 | 0x328F9E52sceKernelDeleteVTimer 464 | 0x32B156B3sceNetAdhocMatchingStop 465 | 0x32BF938EsceKernelDeleteTlspl 466 | 0x32E32DCBsceUtilityGamedataInstallShutdownStart 467 | 0x33B8C009sceAacExit 468 | 0x33BE4024sceKernelReferMsgPipeStatus 469 | 0x33D4AB37__sceSasRevType 470 | 0x340B7686sceUmdGetDiscInfo 471 | 0x342061E5sceKernelSetCompiledSdkVersion370 472 | 0x3432B2E5sceNetUpnpStart 473 | 0x34401D65sceNetAdhocctlDisconnect 474 | 0x3454E622BIO_printf 475 | 0x346F6DA8sceKernelUtilsSha1BlockUpdate 476 | 0x346FBE94sceVaudioSetEffectType 477 | 0x34885E0DsceRtcConvertUtcToLocalTime 478 | 0x3489D1F3sceG729DecodeCore 479 | 0x348D99D4sceCtrlSetSuspendingExtraSamples 480 | 0x349B864DsceKernelCancelMsgPipe 481 | 0x349D6D6CsceKernelCheckCallback 482 | 0x34B53D46sceDbmanSelectByPolling 483 | 0x34B78343sceUtilityGetSystemParamString 484 | 0x34B9FA9EsceKernelDcacheWritebackInvalidateRange 485 | 0x34E68A41sceDRMInstallGetFileInfo 486 | 0x34F9C463scePowerGetPllClockFrequencyInt 487 | 0x3505ECCEsceMlnBridgeHMAC 488 | 0x3548AEC8sceMp3GetFrameNum 489 | 0x354D27EAsceMp3GetSumDecodedSample 490 | 0x35669D4CsceKernelSetCompiledSdkVersion600_602 491 | 0x35750070sceMp3InitResource 492 | 0x358CA1BBsceKernelSetCompiledSdkVersion606 493 | 0x359C2B9FsceCodecOutputDisable 494 | 0x35DBD746sceIoWaitAsyncCB 495 | 0x36075567sceRtcGetDosTime 496 | 0x3615BC87sceRegRemoveKey 497 | 0x362CBE8FsceNetAdhocctlGetAdhocId 498 | 0x36331294sceKernelSysEventDispatch 499 | 0x36636925sceUsbCamReadMicBlocking 500 | 0x369ED59DsceKernelGetSystemTimeLow 501 | 0x369EEB6BsceKernelReferThreadEventHandlerStatus 502 | 0x36AA6E91sceImposeSetLanguageMode 503 | 0x36B23B8Bfdputs 504 | 0x36CDFADEsceDisplayWaitVblank 505 | 0x36F9B49DsceClockgenEnd 506 | 0x36FAABFBsceAtracGetNextSample 507 | 0x36FD8AA9sceAudioRoutingSetMode 508 | 0x370F456AsceDdrdbCertvry 509 | 0x37295ED8sceMpegRingbufferConstruct 510 | 0x37431849sceKernelTryLockLwMutex_600 511 | 0x374500A5sceP3daBridgeInit 512 | 0x37833CB8sceIdStorageGetFreeLeaves 513 | 0x378D4311sceNetAdhocDownloadDeleteClient 514 | 0x37B9B10DsceNpDrmVerifyRif 515 | 0x37FB5C42sceKernelGetGPI 516 | 0x381BD9E7sceImposeHomeButton 517 | 0x382898DEsceUsbstormlnRegisterBuffer 518 | 0x383E9FA8sceUsbCamGetSaturation 519 | 0x383F7BCCsceKernelTerminateDeleteThread 520 | 0x38553111sceAudioSRCChReserve 521 | 0x39240E7DsceAudioRoutingGetMode 522 | 0x39461B4DsceRegFlushRegistry 523 | 0x3951AF53scePowerWaitRequestCompletion 524 | 0x39810265sceKernelReferVplStatus 525 | 0x39AF39A6sceNetInit 526 | 0x39B0C7D3sceNetInetGetUdpcbstat 527 | 0x39B14120_vshVshBridgeStart 528 | 0x39F49610sceKernelGetPTRIG 529 | 0x3A15CD0AsceUtilityAutoConnectInitStart 530 | 0x3A20A200sceAudiocodecGetEDRAM 531 | 0x3A622550sceCtrlPeekBufferPositive 532 | 0x3A67F306sceHttpSetCookieRecvCallback 533 | 0x3A807CC8sceRtcSetTime_t 534 | 0x3AA3FA39sceAtaSelectDevice 535 | 0x3AAD51DCsceUtilityStoreCheckoutGetStatus 536 | 0x3AC3D2A4sceSysconCmdExecAsync 537 | 0x3AD32523sceIdStorageFlush 538 | 0x3AD50AE7sceNetplayDialogInitStart 539 | 0x3AD58B8CsceKernelSuspendDispatchThread 540 | 0x3AD875C3sceKernelGetThreadKTLS 541 | 0x3AEA8CB6sceFontClose 542 | 0x3AEE7261sceKernelPowerUnlock 543 | 0x3B183E26sceKernelGetThreadExitStatus 544 | 0x3B433436sysInfoWriteMAC 545 | 0x3B84732DsceKernelCpuResumeIntrWithSync 546 | 0x3BDEA96CsceKernelDmaOpEnQueue 547 | 0x3C2FA058sceMp3TermResource 548 | 0x3C37A7A6sceMpegNextAvcRpAu 549 | 0x3C4B7E82sceFontPointToPixelV 550 | 0x3C54E908sceIoReopen 551 | 0x3CAAC462sceAsfReadData 552 | 0x3CEC4078sceDRMInstallEnd 553 | 0x3CEF484FsceMp3SetLoopNum 554 | 0x3D6D25A9scePsmfPlayerSetPsmf 555 | 0x3DC0088EsceUsbCamReadMic 556 | 0x3DD5E023sceSslGetSubjectName 557 | 0x3DE38336sceSysconReadPommelReg 558 | 0x3DFAEBA9sceUtilityOskShutdownStart 559 | 0x3E0271D3sceKernelVolatileMemLock 560 | 0x3E3133D6SSL_shutdown 561 | 0x3E32ED9EsceNetUpnpStop 562 | 0x3E65A0EAsceCtrlInit 563 | 0x3E8DD3F8sceNetMCat 564 | 0x3EA82A4BscePsmfPlayerGetAudioOutSize 565 | 0x3EABA285sceHttpAddExtraHeader 566 | 0x3EC5BBF6tolower 567 | 0x3ED62233scePsmfPlayerGetCurrentPts 568 | 0x3EE30821sceKernelDcacheWritebackRange 569 | 0x3F0CF289sceUsbCamSetupStill 570 | 0x3F53E640sceKernelSignalSema 571 | 0x3F6E26B5sceAtracSetHalfwayBuffer 572 | 0x3F76BC21sceNandDumpWearBBMSize 573 | 0x3F7AD767sceRtcGetCurrentTick 574 | 0x3FAD5844sceKernelDmaOpSetupMemcpy 575 | 0x3FB264FCsceKernelRegisterExceptionHandler 576 | 0x3FC9AE6AsceKernelDevkitVersion 577 | 0x402FCF22sceKernelWaitEventFlag 578 | 0x40CB752AsceDdrdbHash 579 | 0x40D2F9F0sceHprmReadLatch 580 | 0x40D77905sceNetAdhocTransferGetChildRequest 581 | 0x40F1469CsceDisplayWaitVblankStartMulti 582 | 0x40F8F435sceNetAdhocMatchingGetPoolMaxAlloc 583 | 0x4108128BsceDNASCoreMakeConnect 584 | 0x410B34AAsceNetInetConnect 585 | 0x411106BAsceIoGetThreadCwd 586 | 0x417BED54sceNetplayDialogUpdate 587 | 0x41887EF4sceKernelReleaseRtcFunc 588 | 0x41B724A5sceCccUTF16toUTF8 589 | 0x41C54ADFvshKernelLoadModuleVSHByID 590 | 0x41E30674sceUtilitySetSystemParamString 591 | 0x41E73E95sceUsbCamPollReadVideoFrameEnd 592 | 0x41EE8797sceUsbCamUnregisterLensRotationCallback 593 | 0x41EFADE7sceAudioOneshotOutput 594 | 0x41FD8B5C_sce_pspnet_hashdone 595 | 0x41FFA822sceNandUnlock 596 | 0x42071A83sceUtilityPS3ScanInitStart 597 | 0x42307A17sceRtcIsLeapYear 598 | 0x42560F23sceMpegRegistStream 599 | 0x42778A9F__sceSasInit 600 | 0x427BEF7FsceMp4GetTrackNumOfEditList 601 | 0x42842C77sceRtcTickAddYears 602 | 0x42EC03ACsceIoWrite 603 | 0x43196845sceAudioOutput2Release 604 | 0x432D8F5CsceKernelRegisterStdoutPipe 605 | 0x434D4B3AsceUtilityGetNetParam 606 | 0x438A385AsceGeSaveContext 607 | 0x43AC7DBBscePsmfGetPsmfMark 608 | 0x43F756A2sceP3daBridgeExit 609 | 0x44054E03sceDeflateDecompress 610 | 0x440CA7D8__sceSasSetVolume 611 | 0x442BFBACscePowerGetBacklightMaximum 612 | 0x4434E59FsceResmapPrepareByPolling 613 | 0x444ED0B7sceHprmUnregitserCallback 614 | 0x446D8DE6sceKernelCreateThread 615 | 0x44A99F9DsceWlanGetDropRate 616 | 0x44B292ABsceKernelAllocModule 617 | 0x44E07129sceMp3Init 618 | 0x44F45E05sceRtcTickAddTicks 619 | 0x45310F07sceUsbMicInputInitEx 620 | 0x456E3146sceNetMCopym 621 | 0x4571CC64sceMpegAvcDecodeFlush 622 | 0x45C18506sceUtilitySetSystemParamInt 623 | 0x45C1AAF5sceDNASGetEventFlag 624 | 0x461C7724inflateEnd 625 | 0x469F6B83sceNetAdhocDownloadStopClient 626 | 0x46EBB729sceUmdCheckMedium 627 | 0x46F186C3sceDisplayWaitVblankStartCB 628 | 0x46F61F8BscePsmfPlayerGetVideoData 629 | 0x472694CDsceFontPointToPixelH 630 | 0x472E3825sceAtracSetMOutDataAndGetID 631 | 0x47347B50sceHttpCreateRequest 632 | 0x4753D878sceNetMemmove 633 | 0x476FD94Astrcat 634 | 0x478FE6F5scePowerGetBusClockFrequency 635 | 0x47940436sceHttpSetResolveTimeOut 636 | 0x47A0B729sceKernelIsCpuIntrSuspended 637 | 0x47DD934Dstrtol 638 | 0x47E2B6D8sceUmdManGetUmdDrive 639 | 0x48293280sceFontSetResolution 640 | 0x482CAE9AsceWlanDevAttach 641 | 0x48381015sceNetAdhocTransferAbortRequestSession 642 | 0x483CE86BscePowerGetBatteryVolt 643 | 0x4876AFFFsceMd5BlockResult 644 | 0x48B06520sceFontGetShadowImageRect 645 | 0x48B602B7sceJpegDeleteMJpeg 646 | 0x48D07D70sceRtcResume 647 | 0x4928BD96sceUtilityMsgDialogAbort 648 | 0x4929B40DsceHeapGetTotalFreeSize 649 | 0x492B5E4BsceMpegBaseCscInit 650 | 0x496E8A65sceMp4TrackSampleBufFlush 651 | 0x49E950ECsceUriEscape 652 | 0x49EDBB18sceNetMPullup 653 | 0x4A0592C7sceAvcodecStartEntry 654 | 0x4A114C7CsceNetInetGetsockopt 655 | 0x4A596D2DvshImposeSetParam 656 | 0x4A6078CFBIO_get_retry_reason 657 | 0x4A719FB2sceKernelFreeTlspl 658 | 0x4A833BA4sceUtilityDNASUpdate 659 | 0x4A992B24sceGpioEnd 660 | 0x4A9E5E29sceUmdWaitDriveStatCB 661 | 0x4AA9EAD6__sceSasSetVoiceATRAC3 662 | 0x4AC57943sceKernelRegisterExitCallback 663 | 0x4AE72675RAND_get_rand_method 664 | 0x4AECD179sceUtilityGamedataInstallUpdate 665 | 0x4AF959E3SSL_set_quiet_shutdown 666 | 0x4B0A8FE5sceUtilityRssSubscriberInitStart 667 | 0x4B10A7F5sceUsbstorMsRegisterEventFlag 668 | 0x4B1B5E82sceRtcCheckValid 669 | 0x4B85C861sceUtilityOskUpdate 670 | 0x4BC9BDE0scePsmfSpecifyStream 671 | 0x4BDEB2A8sceCccStrlenUTF16 672 | 0x4BF83CF4sceNetBcmp 673 | 0x4C06E472sceGeContinue 674 | 0x4C0E0274strrchr 675 | 0x4C145944sceKernelReferLwMutexStatusByID 676 | 0x4C2886CBsceNetGetMallocStatInternal 677 | 0x4C34F553sceUsbCamGetLensDirection 678 | 0x4C49A8BCsceSysregSircsIoEnable 679 | 0x4C537C72sceUtilsBufferCopyWithRange 680 | 0x4C7F62E0sceWlanGPUnRegisterCallback 681 | 0x4CA16893sceRegRemoveCategory 682 | 0x4CC7D78FsceHttpGetStatusCode 683 | 0x4CF15C43sceNetMGethdr 684 | 0x4CFA57B0sceRtcGetCurrentClock 685 | 0x4CFE4E56sceNetInetShutdown 686 | 0x4D2CE199sceNetAdhocGetSocketAlert 687 | 0x4D4E10ECsceDisplayIsVblank 688 | 0x4D6E7305sceKernelEnableIntr 689 | 0x4DA4C788sceNetAdhocPtpSend 690 | 0x4DB1E739sceUtilityNetconfInitStart 691 | 0x4DB43867vshIdStorageLookup 692 | 0x4E3A1105sceKernelWaitSema 693 | 0x4E4E4DA3vshImposeSetStatus 694 | 0x4E537366sceUsbGetDrvList 695 | 0x4E6029F1sceNetAdhocDownloadRequestSession 696 | 0x4E624A34scePsmfGetEPWithId 697 | 0x4ED4AB1EsceMp4AacDecodeInitResource 698 | 0x4EE99358sceNetResolverPollAsync 699 | 0x4F160BF4sceVideocodecReleaseEDRAM 700 | 0x4F3D84D5sceUsbCamSetBrightness 701 | 0x4F46EEDEsceSysregGetFuseId 702 | 0x4F49C9C1sceUpdateDownloadAbort 703 | 0x4F78930Afdputc 704 | 0x4FB43BCEsceNetIfhandleGetDetachEther 705 | 0x4FB5B756sceMp4GetMetaDataInfo 706 | 0x4FB913A3sceUmdManGetIntrStateFlag 707 | 0x4FD31C9DsceKernelIcacheProbe 708 | 0x4FE44D5EsceKernelCheckThreadKernelStack 709 | 0x4FED24D8sceUtilityGetNetParamLatestID 710 | 0x500F0429sceMpegFlushStream 711 | 0x503A3CBAsceMp4GetAvcAu 712 | 0x50647530sceNetFreeThreadinfo 713 | 0x506BF66CsceAacGetSumDecodedSample 714 | 0x50A14DFC__sceSasCoreWithMix 715 | 0x50C4CD57sceUtilitySavedataInitStart 716 | 0x50F0C1ECsceKernelStartModule 717 | 0x50F99EADsceUsbstorGetString 718 | 0x5145868AsceUsbCamStopMic 719 | 0x5152773BsceHttpDeleteConnection 720 | 0x515B2F33_sce_pspnet_splunlock 721 | 0x5182C394sceNandReadExtraOnly 722 | 0x52089CA1sceKernelGetThreadStackFreeSize 723 | 0x5216CBF5sceNetConfigUpInterface 724 | 0x523347D9sceAacGetLoopNum 725 | 0x525B8218sceDrmBBMacInit 726 | 0x526BB7F4sceHprmSuspend 727 | 0x5282DD5EsceKernelDipswSet 728 | 0x52DE1B97sceNetAdhocDiscoverUpdate 729 | 0x52DF196Cstrlen 730 | 0x532029B8sceMp4GetAacAuWithoutSampleBuf 731 | 0x532A522E_sceKernelExitThread 732 | 0x5333322DsceFontGetFontInfoByIndexNumber 733 | 0x538C2057sceMp4Delete 734 | 0x53B00E9AsceKernelSetVTimerHandlerWide 735 | 0x53BFD101vshMSAudioCheckICV 736 | 0x540491EFsceNetUpnpTerm 737 | 0x541E3EABsceNetAdhocTransferTermChild 738 | 0x542AD630sceKernelSetVTimerTime 739 | 0x54495B19sceChkregCheckRegion 740 | 0x54A5C62FsceUtilityStoreCheckoutShutdownStart 741 | 0x54AB2675sceKernelApplyPspRelSection 742 | 0x54D1AEA1sceNetDetachIfhandleEther 743 | 0x54D26AA4sceUsbGpsGetInitDataLocation 744 | 0x54E7DF75sceHttpIsRequestInCache 745 | 0x54EDC552sceMlnBridgeSHA1 746 | 0x54F5FB11sceIoDevctl 747 | 0x552E0C4FsceNetAdhocTransferInitParent 748 | 0x5595A71AsceImposeSetHomePopup 749 | 0x55C20A00sceKernelCreateEventFlag 750 | 0x55E14F75sceG729DecodeInit 751 | 0x55F4717DsceIoChdir 752 | 0x5601A6F0sceMp4GetAacAu 753 | 0x5605C9FESSL_set_verify_result 754 | 0x56202973sceUmdWaitDriveStatWithTimer 755 | 0x5622B7C1sceAtracSetAA3DataAndGetID 756 | 0x565C0B0EsceKernelRegisterDefaultExceptionHandler 757 | 0x5667B7B9sceNpDrmGetContentKey 758 | 0x568518C9sceUriParse 759 | 0x568BE516sceFontGetShadowGlyphImage 760 | 0x56931095sceSysconResume 761 | 0x569A1481sceHttpsSetSslCallback 762 | 0x56C039B5sceKernelCreateVpl 763 | 0x5705F6F9sceNetStrcat 764 | 0x574A8C3FsceUsbCamStartVideo 765 | 0x574B6FBCsceFontDoneLib 766 | 0x57641A81sceRegCreateKey 767 | 0x576E7F6FsceUsbstorMsSetProductInfo 768 | 0x57726BC1sceRtcGetDayOfWeek 769 | 0x5778B452sceUsbCamGetMicDataLength 770 | 0x57A51DD0sceNetAdhocDownloadCreateClient 771 | 0x57C8945BsceGeGetMtx 772 | 0x57CC57DAsceNetMemset 773 | 0x57CF62DDsceKernelGetThreadmanIdType 774 | 0x57F2E960SSL_version 775 | 0x57FCB733sceFontOpenUserFile 776 | 0x58163FBEsceDrmBBMacUpdate 777 | 0x5821060DsceUsbstormlnNotifyResponse 778 | 0x58352068BIO_new_mem 779 | 0x585F1C09sceKernelUtilsSha1BlockResult 780 | 0x586DB82CsceUsbActivate 781 | 0x5873A31FsceKernelRegisterLibraryForUser 782 | 0x588845DAsceHprmEnd 783 | 0x5894C339vshImposeChanges 784 | 0x58B1F937sceKernelPollSema 785 | 0x58B83577scePsmfPlayerSetPsmfCB 786 | 0x58DD8978sceKernelRegisterIntrHandler 787 | 0x591A4AA2sceMpegUnRegistStream 788 | 0x594BBF95sceUsbstorBootSetLoadAddr 789 | 0x59615199sceKernelDmaOpAlloc 790 | 0x5963991BsceNetApctlDelHandler 791 | 0x596AD78CsceGameUpdateRun 792 | 0x59E6D16FsceHttpEnableCache 793 | 0x59F0D619sceNetMGetclr 794 | 0x59F8491DsceChkregGetPsCode 795 | 0x5A014CE0sceNetAdhocctlGetGameModeInfo 796 | 0x5A409D1BsceG729EncodeExit 797 | 0x5A837AD4sceKernelRegisterPriorityExceptionHandler 798 | 0x5AC02755sceNandVerifyBlockWithRetry 799 | 0x5AF32783sceKernelDmaOpQuit 800 | 0x5B37EB1DsceAudiocodecInit 801 | 0x5B70FCC1scePsmfQueryStreamOffset 802 | 0x5B9ACC97sceSysconCmdExec 803 | 0x5BE0E002sceUsbWaitState 804 | 0x5BE8D595sceNetInetSelect 805 | 0x5BF4DD27sceKernelLockMutexCB 806 | 0x5BFB6B61sceSslGetNotAfter 807 | 0x5C2983C2vshChkregCheckRegion 808 | 0x5C2BE2CCsceIoGetFdList 809 | 0x5C37C0AEsceAudioSRCChRelease 810 | 0x5C3E4A9EsceFontGetCharImageRect 811 | 0x5CB5A78BsceKernelSuspendSubIntr 812 | 0x5CE9838BsceKernelDebugWrite 813 | 0x5CF9D852sceAtracSetMOutHalfwayBuffer 814 | 0x5CFFC57CsceAacInitResource 815 | 0x5D268707sceAtracGetStreamDataInfo 816 | 0x5D72B333sceMp4AacDecodeExit 817 | 0x5DCF6858sceFontGetShadowGlyphImage_Clip 818 | 0x5DD66588sceAtracSetAA3HalfwayBufferAndGetID 819 | 0x5DEAC81BsceNetApctlGetState 820 | 0x5DED429ABIO_new 821 | 0x5E335DF6sceHVAuthOpen 822 | 0x5E3D4B79sceNetAdhocMatchingSelectTarget 823 | 0x5E7C8D94sceWlanDevIsGameMode 824 | 0x5E7F79C9sceNetAdhocctlJoin 825 | 0x5EB65F26sceMp4GetNumberOfSpecificTrack 826 | 0x5EC81C55sceAudioChReserve 827 | 0x5ED4049AsceWlanGPPrevEstablishActive 828 | 0x5EE92F3CsceSysconSetDebugHandlers 829 | 0x5EEE6548sceUtilityCheckNetParam 830 | 0x5EF1C24AsceUtilityInstallShutdownStart 831 | 0x5F10D406sceKernelCpuResumeIntr 832 | 0x5F32BEAAsceKernelReferVTimerStatus 833 | 0x5F457515scePsmfGetEPidWithTimestamp 834 | 0x5F5D98A6sceGameUpdateAbort 835 | 0x5F7F368DsceUsbMicInput 836 | 0x5F9529F6__sceSasSetSL 837 | 0x5FB86AB0sceGeListDeQueue 838 | 0x60066CFEsceUsbstorGetStatus 839 | 0x60107536sceKernelDeleteLwMutex 840 | 0x6053B79CCRYPTO_malloc_locked 841 | 0x606A4649sceMpegDelete 842 | 0x6074D8F1sceNetAdhocAuthTerm 843 | 0x60B81F86sceCtrlReadBufferNegative 844 | 0x61001D64vshChkregGetPsCode 845 | 0x611E9E11sceMpegQueryStreamSize 846 | 0x6138194AsceNetResolverTerm 847 | 0x616403BAsceKernelTerminateThread 848 | 0x616F2B61sceUsbWaitStateCB 849 | 0x616FCCCDsceKernelSetBootCallbackLevel 850 | 0x617F3FE6sceDmacMemcpy 851 | 0x61AA43C9sceAacEndEntry 852 | 0x61BE5CACsceUsbCamStillInputBlocking 853 | 0x61E1E525sceKernelUtilsMd5BlockUpdate 854 | 0x61EB33F5sceAtracReleaseAtracID 855 | 0x622F83CCsceUsbCamSetSharpness 856 | 0x6231A71DsceKernelSetPTRIG 857 | 0x623A233FsceDdrSuspend 858 | 0x623AE665sceKernelTryAllocateFpl 859 | 0x62411801sceSircsInit 860 | 0x62685E98sceRtcGetLastAdjustedTime 861 | 0x627B7D42sceVideocodecGetSEI 862 | 0x627E6F3AsceKernelReferSystemStatus 863 | 0x629E2FB7sceNetResolverStartAtoN 864 | 0x62AE052Fstrspn 865 | 0x6332AA39sceUtilityNetconfGetStatus 866 | 0x63400E20sceUsbMicGetInputLength 867 | 0x63632449sceIoIoctl 868 | 0x639C3CB3vshImposeGetParam 869 | 0x63B9536AsceMpegAvcResourceGetAvcDecTopAddr 870 | 0x63D1F89DsceUsbGpsResetInitialPosition 871 | 0x63F2889CsceAudioOutput2ChangeLength 872 | 0x6402490BsceNetAdhocctlDelHandler 873 | 0x6417CDD6sceSysregSircsClkEnable 874 | 0x644395E2sceKernelGetModuleIdList 875 | 0x644E5607sceAtracResetPlayPosition 876 | 0x645E312AsceNetAdhocTransferStopChild 877 | 0x647CEF33sceAudioOutput2GetRestSample 878 | 0x64B6F978sceJpegDecodeMJpegSuccessively 879 | 0x64CD4536sceGpioResume 880 | 0x64D4540EsceKernelReferThreadProfiler 881 | 0x64D50C56sceUtilityUnloadNetModule 882 | 0x658833CCsceNetAdhocTransferStartParent 883 | 0x65F54FFB_sceKernelAllocateTlspl 884 | 0x66253C4EsceKernelRegisterDebugWrite 885 | 0x6652B8CAsceKernelSetAlarm 886 | 0x665D02F6CRYPTO_time_offset 887 | 0x6710FE77sceMp4UnregistTrack 888 | 0x67179B1BsceMpegAvcInitYCbCr 889 | 0x67585DFDsceVaudioChRelease 890 | 0x675AC5AABIO_read 891 | 0x6784E6A8sceUsbCamSetAntiFlicker 892 | 0x67AF3428sceUtilityMsgDialogShutdownStart 893 | 0x67BF0D19sceCccIsValidSJIS 894 | 0x67F0ED84sceJpegCsc 895 | 0x67F17ED7sceFontNewLib 896 | 0x681E61A7sceFontFindFont 897 | 0x682A619BsceMpegInit 898 | 0x683AAC10sceIdStorageUpdate 899 | 0x6841BE1AsceCtrlSetRapidFire 900 | 0x68651CBCsceMp4Init 901 | 0x687660FAsceCtrlGetIdleCancelThreshold 902 | 0x6885F392sceMlnpsnlAuth2BB 903 | 0x68963324sceIoLseek32 904 | 0x68A46B95__sceSasGetEndFlag 905 | 0x68A78817memchr 906 | 0x68AB0F86sceHttpsInitWithPath 907 | 0x68D42328scePsmfGetNumberOfSpecificStreams 908 | 0x68D55505sceKernelReferSysEventHandler 909 | 0x68DA9E36sceKernelDelayThreadCB 910 | 0x68DEA2FFsceAtaClearIntrStateFlag 911 | 0x68F07175scePsmfPlayerGetCurrentAudioStream 912 | 0x6929100CsceDNASGetProductCode 913 | 0x69B53541sceDisplayGetVblankRest 914 | 0x69E4AAA8sceUsbGpsSaveInitData 915 | 0x69F19666sceNetAdhocTransferCreateParent 916 | 0x69F1B678SSL_set_session 917 | 0x6A19E0AASSL_get_quiet_shutdown 918 | 0x6A2774F3sceCtrlSetSamplingCycle 919 | 0x6A548477sceZlibGetCompressedData 920 | 0x6A638D83sceIoRead 921 | 0x6A676D2DsceRtcUnregisterCallback 922 | 0x6A7900E1strtoul 923 | 0x6A8C3CD5sceAtracDecodeData 924 | 0x6AB53C27sceNetMDup 925 | 0x6AD345D7sceKernelSetGPO 926 | 0x6AF9B50AsceUmdCancelWaitDriveStat 927 | 0x6B2371C2sceKernelDeleteModule 928 | 0x6B30100FsceKernelUnlockMutex 929 | 0x6B3AE857sceAsfSeekTime 930 | 0x6B4A146CsceUmdGetDriveStat 931 | 0x6BDDCB8CsceNetApctlGetBSSDescIDListUser 932 | 0x6C05813BsceAacStartEntry 933 | 0x6C58F096sceAtaWaitBusBusy1 934 | 0x6CAEB765vshMSAudioAuth 935 | 0x6CF32CB9sceUsbCamStopVideo 936 | 0x6D08A871sceIoUnassign 937 | 0x6D212BACsceKernelWaitSemaCB 938 | 0x6D302D3DsceKernelExitVSHKernel 939 | 0x6D4BEC68sceAudioInput 940 | 0x6D5D42D7_sce_pspnet_lock_threadinfo 941 | 0x6D865ECDsceUsbstorBootGetDataSize 942 | 0x6D8B0D00sceNetAdhocTransferRecvParent 943 | 0x6DBCF897sceGzipDecompress 944 | 0x6DC7758AsceAacGetMaxOutputSample 945 | 0x6E205974sceUsbCamSetSaturation 946 | 0x6E639701sceAtaScanDevice 947 | 0x6E9EA350_sceKernelReturnFromCallback 948 | 0x6EED4811sceUsbGpsClose 949 | 0x6F314410sceMpegAvcDecodeGetDecodeSEI 950 | 0x6F56F9CFsceUtilityRssReaderUpdate 951 | 0x6F595DFAsceNetAdhocTransferSocketAbortChild 952 | 0x6F797E03sceKernelRegisterStderrPipe 953 | 0x6F82EE03sceCccUTF8toSJIS 954 | 0x6F92741BsceNetAdhocPdpCreate 955 | 0x6FC1E8AEsceMSstorEntry 956 | 0x6FC46853sceAudioChRelease 957 | 0x6FE062D1sceIdStorageLookup 958 | 0x6FF40ACCsceRtcGetTick 959 | 0x700AAD44sceHttpStorageOpen 960 | 0x7012BBDDsceHeapIsAllocatedHeapMemory 961 | 0x70210B73sceHeapDeleteHeap 962 | 0x7068E6BAsceKernelLoadExecutableObject 963 | 0x707B7629sceMpegFlushAllStream 964 | 0x70A703F8sceAudiocodecDecode 965 | 0x70ECAA10sceCccUCStoJIS 966 | 0x70F522C5sceUsbCamGetBrightness 967 | 0x71040D5C_sceKernelTryLockLwMutex 968 | 0x710BD467_sce_pspnet_get_ifindex 969 | 0x710F61B5sceKernelLoadModuleMs 970 | 0x714782D6sceMSstorRegisterCLDMSelf 971 | 0x716CD2B2sceNandWriteBlock 972 | 0x71B19E77sceIoLseekAsync 973 | 0x71B5FB67sceHprmGetHpDetect 974 | 0x71BC9871sceKernelChangeThreadPriority 975 | 0x71EC4271sceKernelLibcGettimeofday 976 | 0x71EEF62DsceSircsSend 977 | 0x721067F3sceKernelReferTlsplStatus 978 | 0x72189C48sceImposeSetUMDPopup 979 | 0x7233B5BCsceKernelApplicationType 980 | 0x72F3C145sceKernelReleaseThreadEventHandler 981 | 0x730ED8BCsceKernelReferCallbackStatus 982 | 0x7320D964sceKernelModuleAssign 983 | 0x732B042AsceMp3EndEntry 984 | 0x732F4E44BIO_pop 985 | 0x737486F2scePowerSetClockFrequency 986 | 0x73A68408sceNandSuspend 987 | 0x73BFD52DsceNetAdhocSetSocketAlert 988 | 0x740FCCD1sceMpegAvcDecodeStop 989 | 0x7443AF1DsceMp4GetMovieInfo 990 | 0x745A7B7AsceVideocodecSetMemory 991 | 0x745E19EFsceKernelDmaOpFree 992 | 0x74804D93sceG729DecodeReset 993 | 0x74829B76sceKernelReceiveMsgPipe 994 | 0x748CBED9sceKernelQueryModuleInfo 995 | 0x7491C438scePsmfGetNumberOfEPentries 996 | 0x7497EA85__sceSasConcatenateATRAC3 997 | 0x749B813AsceWlanSetHostDiscover 998 | 0x74A1CA3EsceMp4SearchSyncSampleNum 999 | 0x74AE582A__sceSasGetEnvelopeHeight 1000 | 0x74B21701sceFontPixelToPointH 1001 | 0x74CF001AsceKernelReleaseModule 1002 | 0x74DA9D25vshLflashFatfmtStartFatfmt 1003 | 0x75156E8FsceKernelResumeThread 1004 | 0x7535F226eventMgrCallbackAttach 1005 | 0x7563AFA1sceUsbCamStillWaitInputEnd 1006 | 0x756E6E6F__NetTriggerCallbacks 1007 | 0x7574FDA1_sce_pspnet_wakeup 1008 | 0x757BDC9FsceNetWisprStop 1009 | 0x7591C7DBsceKernelSetCompiledSdkVersion 1010 | 0x75D9985CsceNetGetSystemClockSec 1011 | 0x75DAEB6BsceNetAdhocTransferInitChild 1012 | 0x75ECD386sceNetAdhocctlGetState 1013 | 0x75F03FA2scePsmfPlayerSelectSpecificVideo 1014 | 0x762F7FDFsceUsbstorMsNotifyEventDone 1015 | 0x7661E728sprintf 1016 | 0x7663CB5CsceMp4AacDecode 1017 | 0x766756EFsceNandReadAccess 1018 | 0x769BEBB6sceMpegRingbufferQueryPackNum 1019 | 0x76BAD213sceNetFreeInternal 1020 | 0x76C0F4AEscePsmfPlayerSetPsmfOffset 1021 | 0x76D1363BsceHttpSaveSystemCookie 1022 | 0x76D3AEBAscePsmfGetPresentationStartTime 1023 | 0x76E33E9CsceCccIsValidUCS2 1024 | 0x76F01ACA__sceSasSetKeyOn 1025 | 0x7725CA08sceSysregUartClkEnable 1026 | 0x773DD3A3sceDisplayGetCurrentHcount 1027 | 0x774E36F4sceNetInetSendmsg 1028 | 0x7770FC23sceMlnBridgeAesCbcDecrypt 1029 | 0x7774BF4CsceHttpAddCookie 1030 | 0x779103A0sceIoRename 1031 | 0x779242A2sceRtcConvertLocalTimeToUTC 1032 | 0x77DFF087sceKernelDcacheProbeRange 1033 | 0x77E97079sceUtilsBufferCopyByPollingWithRange 1034 | 0x77ED8B3AsceDisplayWaitVblankStartMultiCB 1035 | 0x77EE5319sceHttpLoadAuthList 1036 | 0x780F88D1sceAtracGetAtracID 1037 | 0x7853182DsceUtilityGameSharingUpdate 1038 | 0x7860E0DCsceKernelResumeSubIntr 1039 | 0x787D04D5__sceSasSetPause 1040 | 0x78934841sceKernelGzipDecompress 1041 | 0x7893F79AsceKernelSetCompiledSdkVersion507 1042 | 0x78A0D3ECsceHttpEnableKeepAlive 1043 | 0x78A1A796scePowerIsSuspendRequired 1044 | 0x78B54C09sceHttpEndCache 1045 | 0x7945ECDAsceNetAdhocMatchingTerm 1046 | 0x79A1C743sceUsbAccGetAuthStat 1047 | 0x79D1C3FAsceKernelDcacheWritebackAll 1048 | 0x7A10289DsceDisplayEnd 1049 | 0x7A20E7AFsceAtracSetDataAndGetID 1050 | 0x7A2333ADsceKernelInitApitype 1051 | 0x7A483F9EsceNetAdhocDownloadDeleteServer 1052 | 0x7A662D6BsceNetAdhocPollSocket 1053 | 0x7AA671BCsceNetInetSend 1054 | 0x7AB35214strncmp 1055 | 0x7AC0321AsceMpegBaseYCrCbCopy 1056 | 0x7ACE4C04sceRtcSetWin32FileTime 1057 | 0x7ADFD01CsceMp4RegistTrack 1058 | 0x7AF7B77AsceNandReset 1059 | 0x7B810720sceUsbstorMsSetWorkBuf 1060 | 0x7B9634E1sceKernelDmaSoftRequest 1061 | 0x7BBA095CsceAtaClearDriveStat 1062 | 0x7BCC5EAEsceSysconGetTimeStamp 1063 | 0x7BE1421CsceKernelCheckExecFile 1064 | 0x7C0DC2A0sceKernelCreateMsgPipe 1065 | 0x7C0E7AC3scePsmfGetEPWithTimestamp 1066 | 0x7C16AC3AsceUsbGpsGetState 1067 | 0x7C41F2C2sceKernelSendMsgPipeCB 1068 | 0x7CA858ECsysInfoWriteUniqueId 1069 | 0x7CEB2C09sceKernelRegisterKprintfHandler 1070 | 0x7CFAB990sceNetApctlAddInternalHandler 1071 | 0x7CFB68C9sceNetAdhocTransferGetMallocStatChild 1072 | 0x7CFF8CF3_sceKernelLockLwMutex 1073 | 0x7D1C74F0sceKernelDebugEchoSet 1074 | 0x7D1FBED3sceRtcSetAlarmTick 1075 | 0x7D21A2EFsceKernelDmaOpSetupLink 1076 | 0x7D2F3D7FsceJpegFinishMJpeg 1077 | 0x7D332394sceMp4AacDecodeTermResource 1078 | 0x7DAC0C71sceUsbCamReadVideoFrameBlocking 1079 | 0x7DB31251sceAtracAddStreamData 1080 | 0x7DE281C2sceHeapCreateHeap 1081 | 0x7DE61688sceAudioInputInit 1082 | 0x7DE6711BsceRtcFormatRFC2822LocalTime 1083 | 0x7E338487getchar 1084 | 0x7E4CFEE4sceAacDecode 1085 | 0x7E65B999sceKernelCancelAlarm 1086 | 0x7E69EDA4sceHprmIsHeadphoneExist 1087 | 0x7EA32357vshMSAudioDeauth 1088 | 0x7EC5A957sceSysconGetBaryonVersion 1089 | 0x7ED29E40sceRtcSetTick 1090 | 0x7ED59BC4sceDisplaySetHoldMode 1091 | 0x7EE318AFsceUriBuild 1092 | 0x7F27BB5EsceNetAdhocPdpDelete 1093 | 0x7F30B3B1scePowerIdleTimerEnable 1094 | 0x7F696782sceMp3GetMp3ChannelNum 1095 | 0x7F75C338sceNetAdhocGameModeCreateMaster 1096 | 0x7F8A6F23bcmp 1097 | 0x7FA406DDscePowerIsRequest 1098 | 0x7FD7A631sceSysregUartIoEnable 1099 | 0x7FF54BD2sceWlanDevSetGPIO 1100 | 0x7FF82F6FsceClockgenLeptonClkEnable 1101 | 0x80001C4CsceKernelDcacheProbe 1102 | 0x800C44DFsceMpegAtracDecode 1103 | 0x805502DDsceNetInetCloseWithRST 1104 | 0x8077A433sceParseHttpStatusLine 1105 | 0x808F6063sceNetResolverStop 1106 | 0x809CE29BsceKernelExitDeleteThread 1107 | 0x80A21ABDsceNetInetSocketAbort 1108 | 0x80C9F02AsceNetStrcpy 1109 | 0x80CEC43AsceDNASCoreMakeResponse 1110 | 0x80E1933EsceNetConfigGetIfEventFlag 1111 | 0x80F1F7E0sceAudioInit 1112 | 0x810C4BC3sceIoClose 1113 | 0x812346E4sceKernelClearEventFlag 1114 | 0x8125221DsceKernelCreateMbx 1115 | 0x8160A2FEsceMpegAvcResourceFinish 1116 | 0x816A5F92sceHVAuthAuth 1117 | 0x81AEE1BEsceNetAdhocctlGetScanInfo 1118 | 0x81C44706sceUtilityRssReaderInitStart 1119 | 0x81D0D1F7memcmp 1120 | 0x81FCDA34sceRtcIsAlarmed 1121 | 0x8218B4DDsceKernelReferGlobalProfiler 1122 | 0x822357BBsceDNASCoreGetResponse 1123 | 0x82826F70sceKernelSleepThreadCB 1124 | 0x82A64030sceUsbCamStartMic 1125 | 0x82BC5777sceKernelGetSystemTimeWide 1126 | 0x82CE54EDsceKernelModuleCount 1127 | 0x8309549EsceDNASCoreSetResult 1128 | 0x8326AB05sceUtilityRssReaderGetStatus 1129 | 0x83381633sceSircsReceive 1130 | 0x8390B321SSL_use_PrivateKey 1131 | 0x83BF7AFDsceAtracSetSecondBuffer 1132 | 0x83E85EA0sceAtracGetSecondBufferInfo 1133 | 0x83FA2BBAsceNetAdhocTransferAbortReplySession 1134 | 0x840259F1sceKernelUtilsSha1Digest 1135 | 0x8406F469sceCccEncodeUTF16 1136 | 0x840E8133sceKernelWaitThreadEndCB 1137 | 0x843FBF43scePowerSetCpuClockFrequency 1138 | 0x84EE5D76sceNandSetWriteProtect 1139 | 0x84F370BCKprintf 1140 | 0x850A7FA1sceSdSetMember 1141 | 0x8523E178sceMlnpsnlAuth1BB 1142 | 0x85461EFFscePsmfPlayerSelectSpecificAudio 1143 | 0x856E7487sceCodecOutputEnable 1144 | 0x85A2A5BFsceKernelIsUserModeThread 1145 | 0x85C2B45Duncompress 1146 | 0x86004235sceNetAdhocAuthInit 1147 | 0x86255ADAsceKernelDeleteMbx 1148 | 0x862AE1A6scePowerGetBatteryElec 1149 | 0x864A9D72sceKernelDcacheInvalidateAll 1150 | 0x868120B5sceAtracSetLoopNum 1151 | 0x8687B5ABsceNetVsprintf 1152 | 0x868C15DFSSL_get_wbio 1153 | 0x8698F5DAsceDdrEnd 1154 | 0x86A03A27sceUtilityScreenshotContStart 1155 | 0x86ABDB1BsceUtilityNpSigninGetStatus 1156 | 0x86B3196AsceUmdCacheGetCacheNum 1157 | 0x86D4034DSSL_set_shutdown 1158 | 0x86D4CAD8sceSysconGetBaryonStatus 1159 | 0x86FEFCE9bzero 1160 | 0x87440F5EscePowerIsPowerOnline 1161 | 0x874624D6sceMpegFinish 1162 | 0x87533940sceUmdReplaceProhibit 1163 | 0x8754ECB8sceMp4TrackSampleBufAvailableSize 1164 | 0x87677E40sceMp3GetBitRate 1165 | 0x876DBFADsceKernelSendMsgPipe 1166 | 0x87797BDDsceHttpsLoadDefaultCert 1167 | 0x877F6D66sceNetAdhocPtpOpen 1168 | 0x87B2E651sceAudioWaitInputEnd 1169 | 0x87C263D1sceMp3GetMaxOutputSample 1170 | 0x87C78FB6prnt 1171 | 0x87D4DD36sceKernelCancelReceiveMbx 1172 | 0x87D86769sceDdrFlush 1173 | 0x87D9223CsceKernelCancelMutex 1174 | 0x87E81561sceKernelPutUserLog 1175 | 0x87F8D2DAstrtok 1176 | 0x8835D1E1sceSysregSpiClkEnable 1177 | 0x8846D2B0sceNetAdhocDownloadRecv 1178 | 0x884C9F90sceKernelTrySendMsgPipe 1179 | 0x8874DBE0sceUtilitySavedataGetStatus 1180 | 0x8885A782sceUriSweepPath 1181 | 0x8897358AsceNetAdhocTransferGetParentList 1182 | 0x88BC7406sceUtilitySavedataErrGetStatus 1183 | 0x88CC9F72sceNandCorrectEcc 1184 | 0x890B86AEsceG729DecodeTermResource 1185 | 0x8916C003sceNetAdhocctlGetNameByAddr 1186 | 0x89317C8FsceUtilityPS3ScanGetStatus 1187 | 0x8932166AsceNandWritePagesRawExtra 1188 | 0x8933B2E0sceNandEraseBlockWithRetry 1189 | 0x89360950sceNetEtherNtostr 1190 | 0x8986295EsceVaudioOutputBlocking 1191 | 0x89AA9906sceIoOpenAsync 1192 | 0x89B3D48CsceKernelDeleteVpl 1193 | 0x89B79CB1strcspn 1194 | 0x89BDCA08sceNandReadPages 1195 | 0x8A2F6963BIO_set_retry_read 1196 | 0x8A389411sceKernelDisableSubIntr 1197 | 0x8A4519F5sceSysconCtrlLeptonPower 1198 | 0x8A5500E0sceNetAdhocDownloadAbortRequestSession 1199 | 0x8A9EBDCDscePsmfPlayerSelectVideo 1200 | 0x8AA55D17sceUriMerge 1201 | 0x8AA82C92sceGzipGetInfo 1202 | 0x8AB81558sceMp3StartEntry 1203 | 0x8ABADD51sceNetApctlAddHandler 1204 | 0x8ACA11D5sceAudiocodecGetInfo 1205 | 0x8ACD1F73sceHttpSetConnectTimeOut 1206 | 0x8AF0AB9FsceNandWritePages 1207 | 0x8B615F52sceNetBzero 1208 | 0x8B7B220FsceNetInetSocket 1209 | 0x8B90B8B5sceSysregSpiClkDisable 1210 | 0x8BEA2B3EsceNetAdhocPtpRecv 1211 | 0x8C1009B2sceAudioOutput 1212 | 0x8C1E027DsceMpegGetPcmAu 1213 | 0x8C1FBE04sceKernelGzipGetComment 1214 | 0x8C5C53DEsceSysregSpiIoEnable 1215 | 0x8C87A2CAsceG729EncodeReset 1216 | 0x8C943191sceImposeGetBatteryIconStatus 1217 | 0x8CA3A97EsceNetInetGetPspError 1218 | 0x8CBC7987sceSysconResetDevice 1219 | 0x8CFED611sceUmdManStart 1220 | 0x8D33C11DsceNetConfigGetEtherAddr 1221 | 0x8D7284EAsceNetInetClose 1222 | 0x8D7E61DDsceMlnBridgeAesEcbDecrypt 1223 | 0x8DAFF657sceKernelCreateTlspl 1224 | 0x8DB83FDCsceNetAdhocctlGetPeerInfo 1225 | 0x8E798A2FsceNetMemchr 1226 | 0x8E982A74sceIoAddDrv 1227 | 0x8EB9EC49sceDisplayWaitVblankCB 1228 | 0x8EEB7BF2sceUtilsBufferCopyByPolling 1229 | 0x8EEFD953sceHttpCreateConnection 1230 | 0x8EF08FCEsceUmdWaitDriveStat 1231 | 0x8EFB3FA2scePowerGetBatteryLifeTime 1232 | 0x8F0560E0sceLfatfsStop 1233 | 0x8F2BB012sceJpegGetOutputInfo 1234 | 0x8F2DF740sceKernelStopUnloadSelfModuleWithStatus 1235 | 0x8F450998sceMp3GetSamplingRate 1236 | 0x8F4F4E96sceSysregGetFuseConfig 1237 | 0x8F58B1ECsceKernelDispatchSuspendHandlers 1238 | 0x8F58BEDFsceNetAdhocMatchingCancelTargetWithOpt 1239 | 0x8F6E3518sceImposeGetBacklightOffTime 1240 | 0x8FCB05A1sceNetIfhandleIfUp 1241 | 0x8FD9F70CsceKernelSuspendAllUserThreads 1242 | 0x8FFDF9A2sceKernelCancelSema 1243 | 0x904110FCsceKernelDmaOpAssignMultiple 1244 | 0x9042B257sceMp4Finish 1245 | 0x90521AC5sceCccIsValidUTF8 1246 | 0x9052D21ABIO_should_retry 1247 | 0x907D7766sceMScmSendTPC 1248 | 0x909C228Bsetjmp 1249 | 0x90C5573Dstrnlen 1250 | 0x912354A7sceKernelRotateThreadReadyQueue 1251 | 0x912BEE56sceRtcInit 1252 | 0x913EC15DsceUsbbdReqRecv 1253 | 0x91929A21sceMpegBaseCscAvc 1254 | 0x91A77137sceKernelRegisterSuspendHandler 1255 | 0x91B11F3AsceAsfInitParser 1256 | 0x91DE343CsceKernelSetCompiledSdkVersion500_505 1257 | 0x91E4F6A7sceKernelLibcClock 1258 | 0x91E70E35sceUtilityNetconfUpdate 1259 | 0x91EED83CsceJpegDecodeMJpegYCbCr 1260 | 0x920F104AsceKernelIcacheInvalidateAll 1261 | 0x921FCCCFsceMpegGetAvcEsAu 1262 | 0x92282A47sceKernelRegisterUserLogHandler 1263 | 0x92289EC0sceDdrResume 1264 | 0x924ABA61sceKernelStdioOpen 1265 | 0x92700CCDsceKernelDmaOpDeQueue 1266 | 0x927AC32BsceAudioSetVolumeOffset 1267 | 0x92A3B940_vshVshBridgeStop 1268 | 0x92C05851sceCccEncodeUTF8 1269 | 0x92D16FC7sceSysconEnd 1270 | 0x92E41280sceRegOpenRegistry 1271 | 0x933F6E29sceLfatfsWaitReady 1272 | 0x93440B11sceWlanDevIsPowerOn 1273 | 0x934EC2B2sceUsbGpsGetData 1274 | 0x93EF3843sceNetAdhocMatchingStart 1275 | 0x941B3877sceNetAdhocDiscoverInitStart 1276 | 0x943CBA46sceUtilityAuthDialogInitStart 1277 | 0x94416130sceKernelGetThreadmanIdList 1278 | 0x944DDBC6sceNetAdhocDiscoverGetStatus 1279 | 0x94523E09sceNetResolverDelete 1280 | 0x94561901sceDbsvrGetData 1281 | 0x946963F3sceUtilityGameSharingGetStatus 1282 | 0x94714D50sceG729EncodeTermResource 1283 | 0x94AA61EEsceKernelGetThreadCurrentPriority 1284 | 0x94B44F26_sce_pspnet_spllock 1285 | 0x94DCA9F0sceNetStrncmp 1286 | 0x94F5A53FscePowerGetBatteryRemainCapacity 1287 | 0x95035FEFsceKernelSetGPOMask 1288 | 0x951A24CCsceUsbbdClearFIFO 1289 | 0x951BEDF5sceUsbCamSetReverseMode 1290 | 0x951D310EsceHttpDisableProxyAuth 1291 | 0x953E6C10sceCccDecodeSJIS 1292 | 0x9553CC91scePsmfQueryStreamSize 1293 | 0x9569F268sceUsbstorMsSetVSHInfo 1294 | 0x957ECBE2sceSslInit 1295 | 0x958089DBsceIdStorageFormat 1296 | 0x95A84EE5scePsmfPlayerStart 1297 | 0x95AD7B34sceAsfCheckNeedMem 1298 | 0x95D7F3B8sceGpioDisableIntr 1299 | 0x95F8901EsceUsbCamGetFwUpdateResult 1300 | 0x95FC253BsceUtilityMsgDialogUpdate 1301 | 0x95FD0C2DsceAudioChangeChannelConfig 1302 | 0x9658C9F7sceWlanGPRegisterCallback 1303 | 0x9662BF86sceKernelStderrReset 1304 | 0x9668864CsceHttpSetRecvBlockSize 1305 | 0x967F6D4AsceImposeSetBacklightOffTime 1306 | 0x96BEB231sceNetApctlGetBSSDescEntry 1307 | 0x96CFAC38sceDisplayGetBacklightSel 1308 | 0x96EF9DA1sceNetTolower 1309 | 0x96F16D3EsceHttpGetCookie 1310 | 0x9702EF11sceAdler32 1311 | 0x971A3A90scePsmfCheckEPmap 1312 | 0x972CE941scePowerIdleTimerDisable 1313 | 0x9763C138sceRtcSetCurrentTick 1314 | 0x976AB1E9sceNetEnablePSPWlanReset 1315 | 0x977DE386sceKernelLoadModule 1316 | 0x9790B33CsceUtilitySavedataShutdownStart 1317 | 0x97D389A3sceNetAdhocTransferSendChild 1318 | 0x980F4895sceFontGetCharGlyphImage 1319 | 0x98220F3EsceKernelStdoutReopen 1320 | 0x984C27E7sceDisplayWaitVblankStart 1321 | 0x98A1D061sceKernelPowerRebootStart 1322 | 0x98C204C8sceNetAdhocGameModeUpdateMaster 1323 | 0x98E31A9EsceMd5Digest 1324 | 0x992C22C2sceSysconSendSetParam 1325 | 0x994471E0sceUsbCamGetImageEffectMode 1326 | 0x9944F31FsceKernelSuspendThread 1327 | 0x9951C50FsceDrmBBCipherFinal 1328 | 0x99560ABEsceNetAdhocctlGetAddrByName 1329 | 0x9988172DsceHttpSetSendTimeOut 1330 | 0x99944089__sceSasSetVoice 1331 | 0x99A695F0sceKernelRegisterLibrary 1332 | 0x99ACCB71sceIdStorageCreateAtomicLeaves 1333 | 0x99D86281sceUsbCamReadVideoFrame 1334 | 0x9A1C91D7sceUtilityMsgDialogGetStatus 1335 | 0x9A6261ECsceNetMCopydata 1336 | 0x9AC2EEACsceNetAdhocPtpFlush 1337 | 0x9ACE131EsceKernelSleepThread 1338 | 0x9AE849A7sceAtracGetRemainFrame 1339 | 0x9AFC98B2sceHttpSendRequestInCacheFirstMode 1340 | 0x9B1F1F36sceHttpCreateTemplate 1341 | 0x9B25EDF1sceRegExit 1342 | 0x9B2AC433sceNandTestBlock 1343 | 0x9B71A274scePsmfPlayerDelete 1344 | 0x9B745542sceNpDrmClearLicenseeKey 1345 | 0x9B868276sceKernelGetDebugPutchar 1346 | 0x9BADB3EBscePowerGetBusClockFrequencyFloat 1347 | 0x9BAF90F6sceKernelCanReleaseLibrary 1348 | 0x9C5CFB7DsceNetAdhocMatchingGetPoolStat 1349 | 0x9C6EAAD7sceDisplayGetVcount 1350 | 0x9C6EE447sceNetAdhocTransferSendParent 1351 | 0x9C863542sceSysregInit 1352 | 0x9C8F4FC1sceMp4TrackSampleBufConstruct 1353 | 0x9CC2797EsceRtcSuspend 1354 | 0x9CD7DE03sceAtracSetMOutHalfwayBufferAndGetID 1355 | 0x9CE06934scePowerInit 1356 | 0x9CE6F5CFsceMp4GetAacTrackInfoData 1357 | 0x9CFBC7E3sceNetStrcasecmp 1358 | 0x9D061C19sceKernelStdioClose 1359 | 0x9D3F790CsceAudiocodecCheckNeedMem 1360 | 0x9D47469CsceJpegCreateMJpeg 1361 | 0x9D689E13sceNetAdhocctlTerm 1362 | 0x9D8A385ECRYPTO_thread_id 1363 | 0x9D8F99E8sceUsbGpsSetPowerSaveMode 1364 | 0x9D9A5BA1sceKernelGetBlockHeadAddr 1365 | 0x9DB7DE7CsceHVAuthClose 1366 | 0x9DCFB7EAsceMpegChangeGetAuMode 1367 | 0x9DD1F821sceSysregEmcsmIoEnable 1368 | 0x9DF81198sceNetAdhocPtpAccept 1369 | 0x9E3C6DC6sceDisplaySetBrightness 1370 | 0x9E5C5086sceKernelUtilsMd5BlockInit 1371 | 0x9E8AAF8DsceUsbCamGetZoom 1372 | 0x9EC3676A__sceSasSetADSRmode 1373 | 0x9ED0AE87sceRtcCompareTick 1374 | 0x9F106F73sceUmdManPollSema 1375 | 0x9F267D34sceUsbGpsOpen 1376 | 0x9F313D14sceUtilityAutoConnectShutdownStart 1377 | 0x9F9AE99CsceKernelSetInitCallback 1378 | 0x9FA03CD3sceKernelDeleteThread 1379 | 0x9FC5F10DsceHttpEnableAuth 1380 | 0x9FF2B2E7scePsmfPlayerGetCurrentVideoStream 1381 | 0x9FF48DD3sceDNASStop 1382 | 0xA0229362sceNetAdhocGameModeDeleteMaster 1383 | 0xA03D29BAsceUtilityInstallUpdate 1384 | 0xA063A957sceUsbCamGetContrast 1385 | 0xA06A75C4sceJpegMJpegCscWithColorOption 1386 | 0xA084E056sceUtilityRssSubscriberUpdate 1387 | 0xA089ECA4sceKernelMemset 1388 | 0xA0B5A7C2sceIoReadAsync 1389 | 0xA0B8CA55scePsmfPlayerUpdate 1390 | 0xA0CF2FA4__sceSasSetKeyOff 1391 | 0xA0F16ABDsceNetStrcmp 1392 | 0xA1119F0DsceUsbstorBootSetStatus 1393 | 0xA11C7026sceMpegAvcDecodeMode 1394 | 0xA12A0514sceIoSetAsyncCallback 1395 | 0xA1336091sceNpDrmSetLicenseeKey 1396 | 0xA13B3D38sceLedResume 1397 | 0xA14F40B2sceKernelVolatileMemTryLock 1398 | 0xA16E55F4sceSysregSpiIoDisable 1399 | 0xA1A78C58sceKernelLoadModuleForLoadExecVSHDisc 1400 | 0xA21FEF45sceNetAdhocDownloadInitServer 1401 | 0xA2246614sceNetAdhocDiscoverTerm 1402 | 0xA232CBE6__sceSasSetTrianglarWave 1403 | 0xA249EAAEsceKernelGetKTLS 1404 | 0xA259CD67sceUsbGpsReset 1405 | 0xA291F107sceKernelMaxFreeMemSize 1406 | 0xA2BBA8BEsceAtracGetSoundSample 1407 | 0xA2BEAA6CsceAudioSetFrequency 1408 | 0xA2D5D209sceCccIsValidJIS 1409 | 0xA2F0564EsceVideocodecStop 1410 | 0xA30206C2sceMd5BlockUpdate 1411 | 0xA3589D81__sceSasCore 1412 | 0xA3B931DBsceKernelStdioWrite 1413 | 0xA3D81169scePsmfPlayerChangePlayMode 1414 | 0xA3E4154CsceSysregUartClkDisable 1415 | 0xA3E77E13sceNetApctlScanSSID2 1416 | 0xA423A21BsceNetAdhocDiscoverRequestSuspend 1417 | 0xA447103AsceWlanGPRecv 1418 | 0xA4496DE5sceHttpSetRedirectCallback 1419 | 0xA46785C9sceKernelStdioSendChar 1420 | 0xA48D2592memmove 1421 | 0xA493AA5FsceNetMGet 1422 | 0xA4FC06A4sceGeSetCallback 1423 | 0xA50E5B30sceUtilityDNASGetStatus 1424 | 0xA513BB12sceNandInit 1425 | 0xA544C486sceDisplaySetResumeMode 1426 | 0xA5512E01sceHttpDeleteRequest 1427 | 0xA554A158sceAtracGetBitrate 1428 | 0xA55C9E16sceUsbstorBootUnregisterNotify 1429 | 0xA5628F0DvshKernelLoadModuleVSH 1430 | 0xA569E425sceKernelVolatileMemUnlock 1431 | 0xA5C055CEsceNetAdhocctlCreateEnterGameMode 1432 | 0xA5DA2406sceUtilityGetSystemParamInt 1433 | 0xA5EBFE81scePsmfGetStreamSize 1434 | 0xA62C6F57sceNetAdhocTerm 1435 | 0xA62E6E80sceCccSJIStoUTF8 1436 | 0xA633048EsceAudioPollInputEnd 1437 | 0xA646E771sceDNASGetState 1438 | 0xA64B28F7sceNetAdhocTransferStartChil 1439 | 0xA66B0120sceKernelReferEventFlagStatus 1440 | 0xA6800C34sceHttpInitCache 1441 | 0xA6848DF8sceKernelSetUsersystemLibWork 1442 | 0xA68FD260sceCtrlClearRapidFire 1443 | 0xA6BAB2E9sceKernelStdout 1444 | 0xA6C724DCsceMp4GetSampleNum 1445 | 0xA6E71B93sceKernelInitFileName 1446 | 0xA703FE0FsceMp3GetInfoToAddStreamData 1447 | 0xA708C6A6sceAudioGetInputLength 1448 | 0xA70FDFBEsceNetAdhocDownloadAbortSend 1449 | 0xA7144800sceCtrlSetIdleCancelThreshold 1450 | 0xA720937CsceUsbCamStillCancelInput 1451 | 0xA72DB4F9scePsmfPlayerSetPsmfOffsetCB 1452 | 0xA735B9B2sceNetAdhocTransferTermParent 1453 | 0xA780CF7EsceMpegMallocAvcEsBuf 1454 | 0xA7BB7C67sceUtilityPsnInitStart 1455 | 0xA7BED83BCRYPTO_time 1456 | 0xA834319DsceFontOpen 1457 | 0xA83EF139sceDisplayAdjustAccumulatedHcount 1458 | 0xA83F7113scePsmfGetAudioInfo 1459 | 0xA84B084BsceKernelDmaOpAllCancel 1460 | 0xA8542C48sceLedEnd 1461 | 0xA85880D0scePower_a85880d0_IsPSPNonFat 1462 | 0xA893DA2CsceKernelDmaOpFreeLink 1463 | 0xA8AA591FsceKernelCancelFpl 1464 | 0xA8E102A0sceHeapAllocHeapMemory 1465 | 0xA8E8C846sceKernelReferMbxStatus 1466 | 0xA8F0AD39SSL_reuse 1467 | 0xA905B705sceIoCloseAll 1468 | 0xA920B39Ed2i_PrivateKey 1469 | 0xA9721D11sceNetApctlScanSSID 1470 | 0xA9C2CB9AsceKernelReferMutexStatus 1471 | 0xA9D22232scePowerSetCallbackMode 1472 | 0xA9E4FB28sceZlibDecompress 1473 | 0xA9ED66B9sceNetInetTerm 1474 | 0xAA1E5462sceG729EncodeInitResource 1475 | 0xAA2ED267sceAudiocodec2CheckNeedMem 1476 | 0xAA3B27CFSSL_get_verify_result 1477 | 0xAA3DE7B5sceFontGetShadowInfo 1478 | 0xAA73C935sceKernelExitThread 1479 | 0xAA7D94BAsceUsbCamGetAntiFlicker 1480 | 0xAAC09184sceNetResolverStartAtoNAsync 1481 | 0xAB083EA9sceUtilityScreenshotUpdate 1482 | 0xAB0E9556sceMpegAvcDecodeDetailIndex 1483 | 0xAB129D20sceIdStorageInit 1484 | 0xAB1540D5sceHttpsGetSslError 1485 | 0xAB1ABE07sceHttpInit 1486 | 0xAB49E76AsceGeListEnQueue 1487 | 0xAB7592FFmemcpy 1488 | 0xAB7DD9A5sceNetConfigSetIfEventFlag 1489 | 0xAB96437FsceIoSync 1490 | 0xABCD28B8BIO_should_io_special 1491 | 0xABE9F2C7sceUsbstorMsGetApInfo 1492 | 0xABED3790sceNetAdhocPdpSend 1493 | 0xABFDFC8BsceSdCreateList 1494 | 0xAC32C9CCscePowerRequestSuspend 1495 | 0xAC6DCBE3sceAacNotifyAddStreamData 1496 | 0xAC800B1DsceAtaDisableClkIo 1497 | 0xAC9E70E6sceJpegInitMJpeg 1498 | 0xACE23476sceKernelCheckPspConfig 1499 | 0xACE946E8sceIoGetstat 1500 | 0xAD0E88C6sceNetAdhocTransferReplySession 1501 | 0xAD5BB433scePowerEnd 1502 | 0xAD6844C6sceNetThreadAbort 1503 | 0xAD7BFDEFsceParseHttpResponseHeader 1504 | 0xAD84D37F__sceSasSetPitch 1505 | 0xAE4438C7sceNandLock 1506 | 0xAE5DE6AFsceUsbStart 1507 | 0xAE6D2027sceMp3GetMPEGVersion 1508 | 0xAE7C6E76sceKernelRegisterModule 1509 | 0xAE81C0CBsceNetAttachIfhandleEther 1510 | 0xAE948FEEsceHttpDisableAuth 1511 | 0xAEB300AEsceKernelIsRegisterSysEventHandler 1512 | 0xAEE7404DsceUmdRegisterUMDCallBack 1513 | 0xAF26BB01sceMpegAvcResourceGetAvcEsBuf 1514 | 0xAF3616C0sceKernelGetGPO 1515 | 0xAF36D708sceKernelTryAllocateVpl 1516 | 0xAF5960F3sceCtrlGetSuspendingExtraSamples 1517 | 0xAF6DFB15sceNetAdhocGameModeUpdateReplicaInternal 1518 | 0xAFD1D124BIO_gets 1519 | 0xAFE01FD3sceZlibGetInfo 1520 | 0xB011922FsceAudioGetChannelRestLength 1521 | 0xB011B11FsceKernelLockMutex 1522 | 0xB048A67DsceUsbCamWaitReadMicEnd 1523 | 0xB07C41D4sceNandGetPagesPerBlock 1524 | 0xB0975880sceNetAdhocTransferGetMallocStatParent 1525 | 0xB0A43DA7sceUmdManSignalSema 1526 | 0xB0B6A883sceLedInit 1527 | 0xB0B80E80sceNetAdhocctlCreateEnterGameModeMin 1528 | 0xB0C34B1DsceHttpSetCacheContentLengthMaxSize 1529 | 0xB0E9C31FsceKernelGzipGetInfo 1530 | 0xB0F9F98FsceSasCoreInit 1531 | 0xB0FB7FF5sceUtilityRssReaderContStart 1532 | 0xB103FA38sceUmdUseUMDInMsUsbWlan 1533 | 0xB1221EE7sceMp4Create 1534 | 0xB15357C9sceKernelReleaseNmiHandler 1535 | 0xB1644BE7sceUsbbdRegister 1536 | 0xB1A52C83scePowerGetCpuClockFrequencyFloat 1537 | 0xB1D0E5CDsceCtrlPeekLatch 1538 | 0xB1DC2AE8strchr 1539 | 0xB1F5BB87sceNetIfhandleIfStart 1540 | 0xB240A59EsceMpegRingbufferPut 1541 | 0xB24E1391sceDdrdbSiggen 1542 | 0xB287BD61sceGeDrawSync 1543 | 0xB293727FsceIoChangeAsyncPriority 1544 | 0xB29DDF9CsceIoDopen 1545 | 0xB2A628C1sceIoAssign 1546 | 0xB2B021E5sceNandWriteBlockWithVerify 1547 | 0xB2B8C3F9sceDbmanSelect 1548 | 0xB2C25152sceKernelSetSysClockAlarm 1549 | 0xB33389CEsceHttpStorageLseek 1550 | 0xB33ACB44sceDdrdbDecrypt 1551 | 0xB33FE749sceSfmt19937GenRand32 1552 | 0xB3888AD4sceNetInetGetTcpcbstat 1553 | 0xB3A59970sceKernelGetVTimerBase 1554 | 0xB3B5D042sceAtracGetOutputChannel 1555 | 0xB3CF6849sceNetApctlScan 1556 | 0xB3EDD0ECsceNetApctlTerm 1557 | 0xB3EDD801scePowerVolatileMemUnlock 1558 | 0xB3FAF831sceHttpsDisableOption 1559 | 0xB435DEC5sceKernelDcacheWritebackInvalidateAll 1560 | 0xB43D1A8CsceKernelRegisterResumeHandler 1561 | 0xB4432BC8scePowerGetBatteryChargingStatus 1562 | 0xB448EC0DsceGeBreak 1563 | 0xB44BDAEDsceRtcGetCurrentSecureTick 1564 | 0xB49A7697strncpy 1565 | 0xB4B400D1sceMp4GetSampleNumWithTimeStamp 1566 | 0xB4D1CBBFsceCccSetTable 1567 | 0xB4D6FECCsceKernelApplyElfRelSection 1568 | 0xB4D7CB74sceWlanGPSend 1569 | 0xB4F378FAsceDisplayIsForeground 1570 | 0xB509B09EsceHttpCreateRequestWithURL 1571 | 0xB53B2147sceKernelPowerLockForUser 1572 | 0xB55249D2sceKernelIsCpuIntrEnable 1573 | 0xB57E95D9sceUtilityGamedataInstallGetStatus 1574 | 0xB58E61B7sceNetAdhocMatchingSetHelloOpt 1575 | 0xB5CE388AsceNetStrncpy 1576 | 0xB5D96C2AsceNetAdhocMatchingGetHelloOpt 1577 | 0xB5DB018DsceUpdateDownloadSetServerRegion 1578 | 0xB5F6DC87sceMpegRingbufferAvailableSize 1579 | 0xB61595C0sceAudioLoopbackTest 1580 | 0xB62A4061sceUtilitySavedataErrShutdownStart 1581 | 0xB6C10DF0sceSysregAtaBusClockDisable 1582 | 0xB6C76A14sceDNASCoreCheckChallenge 1583 | 0xB6CEE597sceNetplayDialogGetStatus 1584 | 0xB6D61D02sceKernelFreePartitionMemory 1585 | 0xB7251823sceKernelAcceptMbogoSig 1586 | 0xB736E9FFsceKernelFreeVpl 1587 | 0xB75D5B0AsceNetInetInetAddr 1588 | 0xB7660A23__sceSasSetNoise 1589 | 0xB767F9A0sceGzipGetComment 1590 | 0xB77905EAsceGeEdramSetAddrTranslation 1591 | 0xB78EB9E9scePsmfGetHeaderSize 1592 | 0xB795D2EDsceNandCollectEcc 1593 | 0xB7A424A4sceLflashFatfmtStartFatfmt 1594 | 0xB7C18B77sceKernelGetVTimerBaseWide 1595 | 0xB7CA8717SSL_write 1596 | 0xB7D098C6sceKernelCreateMutex 1597 | 0xB7D3C112sceCccStrlenUTF8 1598 | 0xB7E1D8E7sceAudioChangeChannelVolume 1599 | 0xB7F46618sceKernelLoadModuleByID 1600 | 0xB8188F96sceNetIfhandleGetAttachEther 1601 | 0xB8218473sceDdrdbPrngen 1602 | 0xB8476CF4sceCccSetErrorCharUTF16 1603 | 0xB8592D5FsceUtilityStoreCheckoutUpdate 1604 | 0xB8A740F4sceIoChstat 1605 | 0xB8C4A858_sce_pspnet_tiwakeup 1606 | 0xB8D10C56scePsmfPlayerSelectAudio 1607 | 0xB8D24E78sceKernelUtilsMd5BlockResult 1608 | 0xB8D7B3FBscePowerSetBusClockFrequency 1609 | 0xB8E536EBsceUsbMicInputInit 1610 | 0xB9069BADsceIdStorageIsDirty 1611 | 0xB9085A96sceNetStrncasecmp 1612 | 0xB9096E48sceNetIfhandleTerm 1613 | 0xB9685118sceNetAdhocGetPtpStat 1614 | 0xB9848A74scePsmfPlayerGetAudioData 1615 | 0xB999184CscePowerGetLowBatteryCapacity 1616 | 0xB99EDE6AsceSslGetUsedMemoryMax 1617 | 0xB9C643C9sceKernelDebugEcho 1618 | 0xB9C780C7_sce_pspnet_selwakeup 1619 | 0xBA0A32CAsceDNASCoreCheckResult 1620 | 0xBA4051D6sceKernelCancelCallback 1621 | 0xBA6B92E2sceKernelSysClock2USec 1622 | 0xBAC31BF1sceHttpsEnableOption 1623 | 0xBADD5D46sceNandWritePagesRawAll 1624 | 0xBAFA3DF0scePowerGetCallbackMode 1625 | 0xBB2B3DDB_sce_pspnet_get_threadinfo 1626 | 0xBB4B68DEsceGameUpdateTerm 1627 | 0xBB548475sceAudioRoutingSetVolumeMode 1628 | 0xBB70706FsceHttpSendRequest 1629 | 0xBB823481sceSysregUartIoDisable 1630 | 0xBB8E7FE6sceFontOpenUserMemory 1631 | 0xBBDD6403sceAacSetLoopNum 1632 | 0xBC05EC73sceNetWisprTerm 1633 | 0xBC31C1B9sceKernelExtendKernelStack 1634 | 0xBC6B6296sceNetplayDialogShutdownStart 1635 | 0xBC6FEBC5sceKernelReferSemaStatus 1636 | 0xBC75D85BsceFontGetFontList 1637 | 0xBC80EC7CsceKernelExtendThreadStack 1638 | 0xBCA9389CsceMp4TrackSampleBufQueryMemSize 1639 | 0xBCBE14CFsceNetStrchr 1640 | 0xBD11B7C2__sceSasGetGrain 1641 | 0xBD11EEF3sceCccIsValidUnicode 1642 | 0xBD123D9EsceKernelDelaySysClockThread 1643 | 0xBD2BDE07sceUmdUnRegisterUMDCallBack 1644 | 0xBD2F1094sceKernelLoadExec 1645 | 0xBD61D4D5sceKernelFreeModule 1646 | 0xBD681969scePowerGetBusClockFrequencyInt 1647 | 0xBD745B6DsceNetWisprInit 1648 | 0xBD8AE0D8scePsmfGetPresentationEndTime 1649 | 0xBD8E0977sceCodecInitEntry 1650 | 0xBDA7D894sceUtilityHtmlViewerGetStatus 1651 | 0xBDBFCA89sceKernelRtcGetTick 1652 | 0xBDE686CDsceKernelRegisterPowerHandlers 1653 | 0xBE0998D7sceDNASTerm 1654 | 0xBE455B5DsceMScmReadDataPIO 1655 | 0xBE45C284sceMpegBaseYCrCbCopyVme 1656 | 0xBEA46419sceKernelLockLwMutex 1657 | 0xBEB47224sceCccSJIStoUTF16 1658 | 0xBED27435sceKernelAllocateVpl 1659 | 0xBEED3A47_sceKernelUnlockLwMutex 1660 | 0xBF1433F0sceNetAdhocDownloadTermClient 1661 | 0xBF6A7475sceDNASCoreGetProductCode 1662 | 0xBF79F646sceDisplayGetResumeMode 1663 | 0xBF983EF2sceKernelProbeExecutableObject 1664 | 0xBFA98062sceKernelDcacheInvalidateRange 1665 | 0xBFF3CEA5sceNetMAdj 1666 | 0xBFF7E760gets 1667 | 0xC01EC829sceVideocodecOpen 1668 | 0xC02CF6B5sceMpegQueryPcmEsSize 1669 | 0xC0584F0CsceKernelGetModuleList 1670 | 0xC07BB470sceKernelCreateFpl 1671 | 0xC0AB8932strcmp 1672 | 0xC0B3FFD2sceKernelGetVTimerTimeWide 1673 | 0xC10B6BD9sceHttpAbortRequest 1674 | 0xC11BA8C4sceKernelNotifyCallback 1675 | 0xC130D441sceUtilityPsnShutdownStart 1676 | 0xC132E22FsceMpegQueryMemSize 1677 | 0xC1376222sceNandGetTotalBlocks 1678 | 0xC152080AsceCtrlPeekBufferNegative 1679 | 0xC1734599sceKernelReferLwMutexStatus 1680 | 0xC1AF1076sceUpdateDownloadSetVersion 1681 | 0xC1E2A540sceUsbbdUnregister 1682 | 0xC21645A4sceUsbGetState 1683 | 0xC21E18B2_sce_pspnet_unlock_threadinfo 1684 | 0xC22C8327scePsmfSetPsmf 1685 | 0xC2464FA0sceUsbStop 1686 | 0xC28F6FF2sceNetIfEnqueue 1687 | 0xC29DA136sceNandDoMarkAsBadBlock 1688 | 0xC2DDBEB5sceRtcGetAlarmTick 1689 | 0xC2DF770EsceKernelIcacheInvalidateRange 1690 | 0xC32EA051sceNandReadBlockWithRetry 1691 | 0xC3325FDCsceNetMPrepend 1692 | 0xC41C2853sceRtcGetTickResolution 1693 | 0xC421875CsceNetAdhocDownloadAbortReplySession 1694 | 0xC4261339_sce_pspnet_hashinit 1695 | 0xC45C99CCsceMpegQueryUserdataEsSize 1696 | 0xC4700FA3sceUtilityInstallGetStatus 1697 | 0xC478C1DEsceNandReadPagesRawAll 1698 | 0xC484901FsceUsbCamSetZoom 1699 | 0xC492F751sceUtilityGameSharingInitStart 1700 | 0xC4C494F8sceSdGetLastIndex 1701 | 0xC54657B7sceDNASCoreSetProxyResponse 1702 | 0xC56949ADsceCccSetErrorCharSJIS 1703 | 0xC572A9C8sceUsbDeactivate 1704 | 0xC5768D02sceRegGetKeyInfoByName 1705 | 0xC58BCD9EsceNetAdhocMatchingGetMembers 1706 | 0xC59AC98AsceHttpStorageEnd 1707 | 0xC5E53685sceUsbbdReqCancelAll 1708 | 0xC6183D47sceUmdActivate 1709 | 0xC629AF26sceUtilityLoadAvModule 1710 | 0xC6330B0DsceHttpChangeHttpVersion 1711 | 0xC6395C03vshCtrlReadBufferPositive 1712 | 0xC663B3B9sceRtcFormatRFC2822 1713 | 0xC68D9437sceKernelStartVTimer 1714 | 0xC692C906sceAvcodecEndEntry 1715 | 0xC69BEBCEsceOpenPSIDGetOpenPSID 1716 | 0xC6A8BEE2sceCccDecodeUTF8 1717 | 0xC7154136sceHprmRegisterCallback 1718 | 0xC72ED6D3sceUsbCamEnterFwUpdateMode 1719 | 0xC74F04B7sceAtaExecPacketCmd 1720 | 0xC7C1FC57sceNetAdhocGetPdpStat 1721 | 0xC7C928C7sceKernelPowerUnlockForUser 1722 | 0xC7DB3A5BscePsmfGetCurrentStreamType 1723 | 0xC7EF2559sceHttpDisableKeepAlive 1724 | 0xC7F35804sceIoDelDrv 1725 | 0xC80181A2sceNetGetDropRate 1726 | 0xC8186A58sceKernelUtilsMd5Digest 1727 | 0xC8CD158CsceKernelUSec2SysClockWide 1728 | 0xC91142E4sceNetInetRecvfrom 1729 | 0xC9344A59sceNetDestroyIfhandleEther 1730 | 0xC949966CvshPowerSetWakeupCondition 1731 | 0xC9626587vshKernelLoadModuleBufferVSH 1732 | 0xC97D0510SSL_want 1733 | 0xC98CBBA7sceHttpSetResHeaderMaxSize 1734 | 0xC99DD47AsceKernelQueryLoadCoreCB 1735 | 0xC9A8CAB7sceWlanDevDetach 1736 | 0xC9C97945_sce_pspnet_tabort 1737 | 0xCA04A2B9sceKernelRegisterSubIntrHandler 1738 | 0xCA1E6945sceFontGetCharGlyphImage_Clip 1739 | 0xCA3CA3D2sceAtracGetBufferInfoForReseting 1740 | 0xCA3D34C1scePowerUnlock 1741 | 0xCA5EDA6FsceNetAdhocMatchingCreate 1742 | 0xCA719C34vshImposeGetStatus 1743 | 0xCA8B8909sceDNASNetStart 1744 | 0xCAB439DFprintf 1745 | 0xCAD31025sceUmdManStop 1746 | 0xCB05F8D6sceIoGetAsyncStat 1747 | 0xCB0A151FsceIoChangeThreadCwd 1748 | 0xCB2E439EsceAudioSetChannelDataLen 1749 | 0xCB3312D1sceVideocodecEndEntry 1750 | 0xCB49F5CEscePowerGetBatteryChargeCycle 1751 | 0xCBCD4F79__sceSasSetSimpleADSR 1752 | 0xCBD4AC51sceVaudioSetAlcMode 1753 | 0xCBE69FB3sceGameUpdateInit 1754 | 0xCBE9F02AsceUmdReplacePermit 1755 | 0xCC0919B0sceSslGetSerialNumber 1756 | 0xCC0A8BDAsceCccIsValidUTF16 1757 | 0xCC1D3699sceKernelStopUnloadSelfModule 1758 | 0xCC393E48sceNetGetMallocStat 1759 | 0xCC57EC9DsceUsbbdReqCancel 1760 | 0xCCBD167AsceHttpDisableCache 1761 | 0xCCE4A157sceKernelFindModuleByUID 1762 | 0xCD0F3BACsceKernelCreateModule 1763 | 0xCD203292sceKernelCancelEventFlag 1764 | 0xCD469448sceNetAdhocTransferStopParent 1765 | 0xCD9E4BB5sceKernelRegisterSysEventHandler 1766 | 0xCD9F1D46sceNetAdhocTransferCreateChild 1767 | 0xCDA3D8F6sceHttpStorageClose 1768 | 0xCDA85C99sceNetInetRecv 1769 | 0xCDB0DC58sceHttpEnableProxyAuth 1770 | 0xCDC3AA41sceUtilityHtmlViewerInitStart 1771 | 0xCDDF1103sceHttpStorageRead 1772 | 0xCDF8ECB9sceHttpCreateConnectionWithURL 1773 | 0xCE27DE2FsceRtcEnd 1774 | 0xCE2F7487toupper 1775 | 0xCE32CBEFvshMSAudioInit 1776 | 0xCE467D9BsceKernelDmaOpSetupNormal 1777 | 0xCE88E870sceKernelReleaseChunk 1778 | 0xCE8EB837sceMpegBaseCscVme 1779 | 0xCE9843E6sceNandGetPageSize 1780 | 0xCEADEB47sceKernelDelayThread 1781 | 0xCEB870B1sceMpegFreeAvcEsBuf 1782 | 0xCED07EAEBIO_write 1783 | 0xCF2AF7B3sceUsbstorMsGetNickname 1784 | 0xCF3547A2sceMpegAvcDecodeDetail2 1785 | 0xCF3A2CA8sceRtcTickAddWeeks 1786 | 0xCF561893sceRtcGetWin32FileTime 1787 | 0xCF705E46sceNetSprintf 1788 | 0xCF8A41B1sceKernelFindModuleByName 1789 | 0xCF8E084DsceNetAdhocctlExitGameMode 1790 | 0xCFB957C6sceNetApctlConnect 1791 | 0xCFCD367CsceG729EncodeInit 1792 | 0xCFE9E999sceUsbCamSetupVideoEx 1793 | 0xD0189004sceNetAdhocDownloadSend 1794 | 0xD021C0FBsceMp3Decode 1795 | 0xD0358BE9sceKernelDmaOpSetCallback 1796 | 0xD0792666sceNetInetInetNtop 1797 | 0xD081EC8FsceHttpGetNetworkErrno 1798 | 0xD0A56296sceMp3CheckStreamDataNeeded 1799 | 0xD0AEEE87sceKernelStopVTimer 1800 | 0xD10A1A7AsceNetInetListen 1801 | 0xD11DAB01sceHttpsGetCaList 1802 | 0xD1205C58SSL_get_shutdown 1803 | 0xD13BDE95sceKernelCheckThreadStack 1804 | 0xD17A0573sceUtilityPS3ScanShutdownStart 1805 | 0xD198B811sceKernelFreeKTLS 1806 | 0xD1B501E8sceSysconWritePommelReg 1807 | 0xD1BE2CE9sceNetConfigGetIfEvent 1808 | 0xD1C8945EsceHttpEnd 1809 | 0xD1CD40E5index 1810 | 0xD1CE4950sceMpegAvcCscMode 1811 | 0xD1E0A01E__sceSasSetGrain 1812 | 0xD1E6E175sceAtaEnableClkIo 1813 | 0xD1F59FDBsceAtracStartEntry 1814 | 0xD1FF982AsceKernelStopModule 1815 | 0xD23665F4sceUtilityAutoConnectUpdate 1816 | 0xD2422E4DsceNetConfigDownInterface 1817 | 0xD27961C9sceNetEtherStrton 1818 | 0xD293A100sceUsbCamRegisterLensRotationCallback 1819 | 0xD2AC9A7EsceMp4GetMetaData 1820 | 0xD2B18485sceCccIsValidUCS4 1821 | 0xD2B2A2A7fdgetc 1822 | 0xD2D615EFsceKernelCancelVTimerHandler 1823 | 0xD2DA2BBAsceAacResetPlayPosition 1824 | 0xD2E8363FQueryIntrHandlerInfo 1825 | 0xD2FBC957sceKernelGetModuleGPByAddress 1826 | 0xD305870EsceNandEnd 1827 | 0xD3075926scePowerIsLowBattery 1828 | 0xD36B4E6DsceNpDrmGetModuleKey 1829 | 0xD3F62265sceKernelDmaOnDebugMode 1830 | 0xD438691DsceNetAdhocTransferRecvChild 1831 | 0xD4475AA8sceRegGetKeyInfo 1832 | 0xD4876173sceUsbCamSetImageEffectMode 1833 | 0xD4B95FFBsceUtilitySavedataUpdate 1834 | 0xD4C2BD73sceUtilityAutoConnectGetStatus 1835 | 0xD5279339sceUsbCamGetReverseMode 1836 | 0xD59EAD2FsceKernelWakeupThread 1837 | 0xD5A229C9__sceSasRevEVOL 1838 | 0xD5AC9F99sceSfmt19937GenRand64 1839 | 0xD5C28CC0sceAtracEndEntry 1840 | 0xD5DA7B3CsceNetIfhandleWaitSema 1841 | 0xD5E80301sceDNASCoreTerm 1842 | 0xD5EBBBCD__sceSasSetSteepWave 1843 | 0xD60D6F2DlfxReleaseFrameBuffer 1844 | 0xD61E6961sceKernelReleaseSubIntrHandler 1845 | 0xD636B827sceKernelDipswAll 1846 | 0xD636B827sceKernelRemoveByDebugSection 1847 | 0xD6628A48sceSysregSpiClkSelect 1848 | 0xD675EBB8sceKernelSelfStopUnloadModule 1849 | 0xD6A09757sceUpdateDownloadEnd 1850 | 0xD6A5F2F7sceAtracGetMaxSample 1851 | 0xD6D016EFscePowerLock 1852 | 0xD6D097B4sceSslGetNameEntryInfo 1853 | 0xD6DA4BA1sceKernelCreateSema 1854 | 0xD70D4847sceHttpGetProxy 1855 | 0xD768752Aputchar 1856 | 0xD774BA45sceKernelDisableIntr 1857 | 0xD7763699sceWlanGetSwitchState 1858 | 0xD7A29F46sceMpegRingbufferQueryMemSize 1859 | 0xD7C51541sceAacCheckStreamDataNeeded 1860 | 0xD7D3FDCDsceKernelUnregisterSysEventHandler 1861 | 0xD81957B7sceUtilityScreenshotGetStatus 1862 | 0xD8199E4CsceKernelReferFplStatus 1863 | 0xD8250B75sceMp4PutSampleNum 1864 | 0xD84E2411CRYPTO_lock 1865 | 0xD852CDCEsceUtilityPS3ScanUpdate 1866 | 0xD865997BsceUsbCamSetResolution 1867 | 0xD8722983sceNetStrlen 1868 | 0xD8779AC6sceKernelIcacheClearAll 1869 | 0xD890B370sceKernelGetThreadKernelStackFreeSize 1870 | 0xD897C343sceNandDetectChip 1871 | 0xD8B299AEsceKernelSetVTimerHandler 1872 | 0xD8B73127sceKernelGetModuleIdByAddress 1873 | 0xD8BC3120sceKernelDmaChExclude 1874 | 0xD8C05497ERR_remove_state 1875 | 0xD8C5F121sceMpegCreate 1876 | 0xD8F54A51sceMp3GetLoopNum 1877 | 0xD9392CCBsceCccStrlenSJIS 1878 | 0xD979E9BFsceKernelAllocateFpl 1879 | 0xD97C8CB9puts 1880 | 0xD97F94D8sceDmacTryMemcpy 1881 | 0xDA1B09AAsceKernelUnLinkLibraryEntries 1882 | 0xDA5939B4sceDNASCoreGetProxyRequest 1883 | 0xDA6B76A1sceCtrlGetSamplingMode 1884 | 0xDA97F1AAsceUtilityStoreCheckoutInitStart 1885 | 0xDAA3F564sceKernelReferAlarmStatus 1886 | 0xDB025BFAsceSfmt19937FillArray32 1887 | 0xDB094E1BsceNetInetAccept 1888 | 0xDB266CCFsceHttpGetAllHeader 1889 | 0xDB286D65sceKernelDmaOpSync 1890 | 0xDB62C9CFscePowerCancelRequest 1891 | 0xDB7259D5sceG729EncodeCore 1892 | 0xDB738F35sceKernelGetSystemTime 1893 | 0xDB9D28DDscePowerUnregitserCallback 1894 | 0xDBA273FAsceVideocodecDecode 1895 | 0xDBA6C4C4sceDisplayGetFramePerSec 1896 | 0xDBB5597FsceKernelDebugRead 1897 | 0xDBB60658sceMpegFlushAu 1898 | 0xDBE5F283sceClockgenLeptonClkDisable 1899 | 0xDBF74F1BsceRtcTickAddMonths 1900 | 0xDC1A5833sceUsbstorSendData 1901 | 0xDC692EE3sceKernelTryLockLwMutex 1902 | 0xDC93CFEFsceGeGetCmd 1903 | 0xDCC80C2FsceFontGetCharInfo 1904 | 0xDD5A5D6CsceSfmt19937InitByArray 1905 | 0xDD629A24sceLoadCertFromFlash 1906 | 0xDD6E7857sceHttpSaveAuthList 1907 | 0xDDE5389DsceUtilityDNASInitStart 1908 | 0xDE730A46sceMlnBridgeAesCbcEncrypt 1909 | 0xDE78E9FCscePsmfGetNumberOfPsmfMarks 1910 | 0xDE91D3A4sceLedSuspend 1911 | 0xDEA197D4sceDisplayGetMode 1912 | 0xDEA6EDB2RAND_seed 1913 | 0xDEADBEAFpspeDebugWrite 1914 | 0xDEC0FE8CsceUsbstormlnWaitStatus 1915 | 0xDED9D28EsceNetAdhocctlGetParameter 1916 | 0xDEDA92BFsceRegRemoveRegistry 1917 | 0xDF089680scePsmfPlayerGetPsmfInfo 1918 | 0xDF52098FsceKernelTryReceiveMsgPipe 1919 | 0xDF83875EsceKernelGetActiveDefaultExceptionHandler 1920 | 0xDF9D0C92sceUsbCamGetReadVideoFrameSize 1921 | 0xDFA8BAF8scePowerUnregisterCallback 1922 | 0xDFBC5F16sceRtcParseDateTime 1923 | 0xDFE53E03sceNetAdhocPdpRecv 1924 | 0xE05AE88DsceNandReadPagesRawExtra 1925 | 0xE063D402sceAudiocodec2Init 1926 | 0xE0727056sceAudioSRCOutputBlocking 1927 | 0xE0887BC8sceImposeGetUMDPopup 1928 | 0xE08BDAC1sceNetAdhocPtpListen 1929 | 0xE0A81C7CsceNetMemcmp 1930 | 0xE0C89ACAsceAacInit 1931 | 0xE0CE3E29sceKernelGzipIsValid 1932 | 0xE0CF8091sceCccDecodeUTF16 1933 | 0xE0D68148sceGeListUpdateStallAddr 1934 | 0xE0E6BA96sceKernelGzipGetName 1935 | 0xE11BAFABsceNetApctlDelInternalHandler 1936 | 0xE11DEFDFsceUsbstormlnCancelWaitStatus 1937 | 0xE1283895scePsmfGetPsmfVersion 1938 | 0xE143A1EAsceSasCoreExit 1939 | 0xE146606DsceKernelRegisterDebugPutchar 1940 | 0xE1619D7CsceKernelSysClock2USecWide 1941 | 0xE162CB14sceNetAdhocctlGetPeerList 1942 | 0xE16F3A48sceDRMInstallInstall 1943 | 0xE16F62ECsysInfoWriteModelInfo 1944 | 0xE174218CvshMSAudioCheckICVn 1945 | 0xE175EF66__sceSasGetOutputmode 1946 | 0xE19C97D6sceUtilityNpSigninShutdownStart 1947 | 0xE1C93E47sceRtcGetTime64_t 1948 | 0xE1CD9561__sceSasSetVoicePCM 1949 | 0xE1CE83A7sceMpegGetAtracAu 1950 | 0xE1D621D7sceNetAdhocInit 1951 | 0xE20B23A6sceUsbActivateWithCharging 1952 | 0xE23E3A35sceAtracGetNextDecodePosition 1953 | 0xE23EEC33sceIoWaitAsync 1954 | 0xE24220B5sceNetUpnpInit 1955 | 0xE247B6D6sceNetInetGetpeername 1956 | 0xE26F226EsceNetAdhocctlInit 1957 | 0xE27CE4CBsceDdrdbSigvry 1958 | 0xE2A5D1EEsceSysregGetTachyonVersion 1959 | 0xE2D56B2DsceAudioOutputPanned 1960 | 0xE2F4F1C9sceNetIfDequeue 1961 | 0xE2F91F9BsceNetApctlInit 1962 | 0xE30B8C19sceNetInetInetPton 1963 | 0xE3707672sceNetAdhocTransferDeleteParent 1964 | 0xE3C30923BIO_should_read 1965 | 0xE3EB004CsceIoDread 1966 | 0xE3EE2C81sceMp3LowLevelDecode 1967 | 0xE41A11DEsceNandReadStatus 1968 | 0xE440A7D8sceNetIfhandleIfDequeue 1969 | 0xE46EB986sceZlibIsValid 1970 | 0xE47E40E4sceGeEdramGetAddr 1971 | 0xE49BFE92sceUtilityUnloadModule 1972 | 0xE4D21302sceHttpsInit 1973 | 0xE51B4B7AsceRtcTickAddDays 1974 | 0xE55F0D50sceDisplaySetBacklightSel 1975 | 0xE5659590sceResmapPrepare 1976 | 0xE58818A8sceUsbstorBootSetCapacity 1977 | 0xE5959C36sceUsbCamStillGetInputLength 1978 | 0xE5DA5E95vshMSAudioEnd 1979 | 0xE65441C1sceUsbbdStall 1980 | 0xE6554FDAsceKernelRegisterDebugRead 1981 | 0xE6605BCAsceRtcTickAddMinutes 1982 | 0xE66CB92EsceGeGetStack 1983 | 0xE6A8CAC0lfxGetNextFrame 1984 | 0xE6B74CB9sceSysconNop 1985 | 0xE7282CB6sceKernelAllocateFplCB 1986 | 0xE779ECEFsceUmdManGetInquiry 1987 | 0xE7833020sceSdSetIndex 1988 | 0xE792CD94scePsmfPlayerReleasePsmf 1989 | 0xE7A3874DsceKernelRegisterAssertHandler 1990 | 0xE7B778D8sceUtilityRssReaderShutdownStart 1991 | 0xE7BFC0EFCRYPTO_time_import 1992 | 0xE7C27D1BsceRtcGetCurrentClockLocalTime 1993 | 0xE7C29542SSL_read 1994 | 0xE7E87741sceSysconGetPommelVersion 1995 | 0xE80F00A4sceNetMPulldown 1996 | 0xE81CAF8FsceKernelCreateCallback 1997 | 0xE83742BAsceUmdDeactivate 1998 | 0xE855BF76__sceSasSetOutputmode 1999 | 0xE860E75EsceKernelUtilsMt19937Init 2000 | 0xE86A7DC1sceLoadCertEnd 2001 | 0xE88F759BsceAtracGetInternalErrorInfo 2002 | 0xE8BC6571sceIoCancel 2003 | 0xE8DB3CE6sceKernelDeflateDecompress 2004 | 0xE926D3FBsceAudioInputInitEx 2005 | 0xE95838F6sceMpegAvcCscInfo 2006 | 0xE95A012BsceIoIoctlAsync 2007 | 0xE9B2E5E6sceNetApctlScanUser 2008 | 0xE9B3061EsceKernelSendMbx 2009 | 0xE9D97901sceAudioGetChannelRestLen 2010 | 0xEA24BE03sceLedSetMode 2011 | 0xEA382A27scePowerGetPllClockFrequencyFloat 2012 | 0xEA3C6108sceNetAdhocMatchingCancelTarget 2013 | 0xEA42B353_sce_pspnet_ifioctl_sync 2014 | 0xEA748E31sceKernelChangeCurrentThreadAttr 2015 | 0xEABDB328sceGpioInit 2016 | 0xEAD3A759sceNetIfhandleIfDown 2017 | 0xEADB1BD7sceKernelPowerLock 2018 | 0xEAED89CDscePsmfGetNumberOfStreams 2019 | 0xEB00C509sceIdStorageReadLeaf 2020 | 0xEB092469sceIoDclose 2021 | 0xEB0A0022sceNandEraseBlock 2022 | 0xEB3235B5sceWlanSetDropRate 2023 | 0xEB830733sceIdStorageGetLeafSize 2024 | 0xEBA0E6C6sceNandCountChipMakersBBM 2025 | 0xEBD5C3E6sceKernelSetCompiledSdkVersion395 2026 | 0xEBFB0E3CSSL_new 2027 | 0xEC05300AsceDdrdbMul2 2028 | 0xEC0635C1sceNetAdhocctlCreate 2029 | 0xEC0A693FsceKernelAllocateVplCB 2030 | 0xEC19337DsceNetAdhocMatchingAbortSendData 2031 | 0xEC57ED1DsceUsbstorGetSubClass 2032 | 0xEC6F1CF2strcpy 2033 | 0xECA32A99sceAtracIsSecondBufferNeeded 2034 | 0xECF5D379sceMt19937Init 2035 | 0xED0FAD38sceUtilitySavedataErrUpdate 2036 | 0xED1410E0sceKernelDeleteFpl 2037 | 0xEDA8A020sceUsbRestart 2038 | 0xEDBA5844sceKernelDeleteCallback 2039 | 0xEDC13FE5scePowerGetIdleTimer 2040 | 0xEDEEB999sceHttpReadData 2041 | 0xEE232411sceFontSetAltCharacterCode 2042 | 0xEE2938C4sceSfmt19937FillArray64 2043 | 0xEE624680BIO_set_retry_special 2044 | 0xEECE61D2sceNetInetRecvmsg 2045 | 0xEEDA2E54sceDisplayGetFrameBuf 2046 | 0xEEE43F47sceKernelRegisterUserSpaceIntrStack 2047 | 0xEF097716sceNetMemcpy 2048 | 0xEF55F193sceNandCalcEcc 2049 | 0xEF5A4BD4SSL_get_session 2050 | 0xEF95A213sceDrmBBMacFinal 2051 | 0xEF9E4C70sceKernelDeleteEventFlag 2052 | 0xEFC6F80FsceUtilityGameSharingShutdownStart 2053 | 0xEFD3C963scePowerTick 2054 | 0xF006F264sceRtcSetDosTime 2055 | 0xF03FCB48sceUsbstorSetSubClass 2056 | 0xF062AEA6sceUtilityInit 2057 | 0xF0A26395sceKernelGetModuleId 2058 | 0xF0B7DA1CsceKernelDeleteMsgPipe 2059 | 0xF0EB1125sceMpegAvcDecodeYCbCr 2060 | 0xF0EB4367sceDNASCoreGetConnect 2061 | 0xF0F46C62sceHttpSetProxy 2062 | 0xF1657B22sceHttpLoadSystemCookie 2063 | 0xF16EAF4FsceNetAdhocMatchingDelete 2064 | 0xF1B73D12sceCccUTF16toSJIS 2065 | 0xF21A1FCAsceSdRemoveValue 2066 | 0xF25A5006sceNetApctlGetBSSDescIDList2 2067 | 0xF27A9C51sceIoRemove 2068 | 0xF2930C9CsceMpegAvcDecodeStopYCbCr 2069 | 0xF2A4AFE5sceRtcTickAddSeconds 2070 | 0xF2D8D1B4sceKernelLoadModuleNpDrm 2071 | 0xF2DEAA14sceSysregEnd 2072 | 0xF32A2940sceKernelModuleFromUID 2073 | 0xF3370E61sceNetResolverInit 2074 | 0xF350F666sceSysconCmdSync 2075 | 0xF3787AD8sceDNASInternalStart 2076 | 0xF3986382sceKernelReceiveMbxCB 2077 | 0xF3EFAA91scePsmfPlayerGetCurrentPlayMode 2078 | 0xF3F76017sceUtilityOskGetStatus 2079 | 0xF3FBC572sceUtilityNpSigninUpdate 2080 | 0xF40C98E6sceMt19937UInt 2081 | 0xF464F91CsceIdMgrRegisterCallback 2082 | 0xF475845DsceKernelStartThread 2083 | 0xF479F616sceDNASCoreGetHostnameBase 2084 | 0xF48963C6sceNetStrrchr 2085 | 0xF49934F6sceHttpSetMallocFunction 2086 | 0xF4BCB3EEsceIdStorageUnformat 2087 | 0xF5186D8EsceDrmBBMacFinal2 2088 | 0xF5478233sceMp3ReleaseMp3Handle 2089 | 0xF56FAC82sceNetMFreem 2090 | 0xF57765D3sceSslGetKeyUsage 2091 | 0xF5CE1134sceUtilityHtmlViewerShutdownStart 2092 | 0xF5E7EA31sceMpegAvcConvertToYuv420 2093 | 0xF5FCC995sceRtcGetCurrentNetworkTick 2094 | 0xF6107F00__sceSasUnsetATRAC3 2095 | 0xF6269B82sceUtilityOskInitStart 2096 | 0xF6414A71sceKernelFreeFpl 2097 | 0xF6427665sceKernelGetUserLevel 2098 | 0xF64910F0sceUtilityUnloadUsbModule 2099 | 0xF64BAB99sceKernelDmaOpAssign 2100 | 0xF6690A9AsceUpdateDownloadInitEx 2101 | 0xF6837A1AsceAtracSetMOutData 2102 | 0xF76147B1sceNetAdhocDownloadStopServer 2103 | 0xF77565B6sceIdStorageSuspend 2104 | 0xF77D77CBsceKernelSetCompilerVersion 2105 | 0xF78BA90AsceKernelStderr 2106 | 0xF79472D7sceNetAdhocMatchingSendData 2107 | 0xF7C51EC1sceMp4GetSampleInfo 2108 | 0xF7D13214sceNetAdhocDiscoverStop 2109 | 0xF7D8D092sceUtilityUnloadAvModule 2110 | 0xF8170FBEsceKernelDeleteMutex 2111 | 0xF82AF926sceMScmTPCSetCmd 2112 | 0xF88155F6sceUtilityNetconfShutdownStart 2113 | 0xF8825DC4sceNetMFree 2114 | 0xF8847F60sceUsbCamPollReadMicEnd 2115 | 0xF899001CsceUsbMicWaitInputEnd 2116 | 0xF8DCB679sceMpegQueryAtracEsSize 2117 | 0xF8EF08A6scePsmfPlayerGetCurrentStatus 2118 | 0xF8F0752EsceFontPixelToPointV 2119 | 0xF8FC359EsceNetAdhocDownloadReplySession 2120 | 0xF8FCD5BAsceKernelUtilsSha1BlockInit 2121 | 0xF90B2293sceUsbCamWaitReadVideoFrameEnd 2122 | 0xF919F628sceKernelTotalFreeMemSize 2123 | 0xF9275D98sceKernelLoadModuleBufferUsbWlan 2124 | 0xF93C4669sceUsbCamAutoImageReverseSW 2125 | 0xF94BAF52sceNetSendIfEvent 2126 | 0xF970D54EsceDdrdbMul1 2127 | 0xF97D9D73sceSysregEmcsmBusClockEnable 2128 | 0xF983B186__sceSasRevVON 2129 | 0xF987B1F0sceKernelReleaseIntrHandler 2130 | 0xF9D8EB63sceHttpsEnd 2131 | 0xF9E0008CsceUtilityScreenshotShutdownStart 2132 | 0xF9ECFDDDscePcactAuth1BB 2133 | 0xFA324B4EsceNetAdhocGameModeUpdateReplica 2134 | 0xFA571A75sceDNASCoreInit 2135 | 0xFA6DE6A6_sce_pspnet_if_up 2136 | 0xFA835CDEsceKernelGetTlsAddr 2137 | 0xFA8A5739sceRegCloseRegistry 2138 | 0xFA97A599scePowerVolatileMemTryLock 2139 | 0xFA9AA797sceUpdateDownloadReadData 2140 | 0xFAA4F89BsceAtracGetLoopStatus 2141 | 0xFAABB1DDsceNetInetPoll 2142 | 0xFB05FAD0sceKernelIcacheReadTag 2143 | 0xFB0A6C5DsceUsbCamStillInput 2144 | 0xFB3B18CDsceRtcRegisterCallback 2145 | 0xFB5380C5sceKernelStderrReopen 2146 | 0xFB6425C3sceKernelSetVTimerTimeWide 2147 | 0xFB7846E2sceCccJIStoUCS 2148 | 0xFB8AE27DsceKernelFindModuleByAddress 2149 | 0xFB8E22ECsceKernelEnableSubIntr 2150 | 0xFBABE411sceNetInetGetErrno 2151 | 0xFBD385FBsceWlanDropCheck 2152 | 0xFBFA697DsceKernelReceiveMsgPipeCB 2153 | 0xFC114573sceKernelGetCompiledSdkVersion 2154 | 0xFC1AB540sceUpdateDownloadInit 2155 | 0xFC4374B8sceKernelIsSubInterruptOccurred 2156 | 0xFC4D0080sceUsbstorRecvData 2157 | 0xFC6FC07BsceNetAdhocPtpConnect 2158 | 0xFCB5EB49sceKernelGetSystemStatusFlag 2159 | 0xFCBDB5ADsceMpegAvcResourceInit 2160 | 0xFCCFAD26sceKernelCancelWakeupThread 2161 | 0xFCDF7610sceNandReadId 2162 | 0xFCF8C055sceHttpDeleteTemplate 2163 | 0xFD18A0FFscePowerGetBatteryFullCapacity 2164 | 0xFD675E8DsceUpdateDownloadConnectServer 2165 | 0xFD8585E1sceNetSetDropRate 2166 | 0xFDB5BFE9scePowerGetCpuClockFrequencyInt 2167 | 0xFDB68C23sceUsbCamGetSharpness 2168 | 0xFE246728sceMpegGetAvcAu 2169 | 0xFE28C6D9sceKernelIsIntrContext 2170 | 0xFE51173DsceIdStorageResume 2171 | 0xFE8A0B46sceWlanSetWakeUp 2172 | 0xFEE03A2FscePowerGetCpuClockFrequency 2173 | 0xFEF27DC1sceKernelLoadModuleDNAS 2174 | 0xFEFA40C2sceIdStorageIsFormatted 2175 | 0xFF0C3873sceUsbstorMsUnregisterEventFlag 2176 | 0xFF5940B6sceIoCloseAsync 2177 | 0xFF6C50D8sceMScmTPCGetInt 2178 | 0xFFC36A14sceKernelReferThreadRunStatus 2179 | 2180 | 0xD632ACDBmodule_start 2181 | 0xCEE8593Cmodule_stop 2182 | 0x563FF2B2getModuleInfo 2183 | 2184 | 0x0F7C276Cmodule_start_thread_parameter 2185 | 0xCF0CC697module_stop_thread_parameter 2186 | 0xF01D73A7module_info 2187 | 0x11B97506module_sdk_version 2188 | 2189 | --------------------------------------------------------------------------------