summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReiko Asakura2021-03-10 22:00:50 -0500
committerReiko Asakura2021-03-10 22:00:50 -0500
commitb7b08fb886780eb3675dd26bc49712d339d94d5f (patch)
tree215f76622c43aa4a82b556bb1568b9d9c18f3c4e
parentAdd NIDs in SceCodecEngineUser (diff)
downloadvds-libraries-b7b08fb886780eb3675dd26bc49712d339d94d5f.tar.gz
Remove forwarded syscalls
The criteria for removal are 1. The syscall forwarder does not modify arguments or pass additional arguments. 2. The syscall is not used outside of the syscall forwarder. For the removed headers, appmgr.h is wrong, iofilemgr_syscall.h is correct, and net_syscalls.h is unknown.
Diffstat (limited to '')
-rw-r--r--include/user/appmgr.h89
-rw-r--r--include/user/kernel/iofilemgr_syscall.h83
-rw-r--r--include/user/net/net_syscalls.h20
-rw-r--r--nids/360/SceAppMgr.yml128
-rw-r--r--nids/360/SceAvcodec.yml138
-rw-r--r--nids/360/SceCodecEngineWrapper.yml6
-rw-r--r--nids/360/SceDisplay.yml7
-rw-r--r--nids/360/SceError.yml13
-rw-r--r--nids/360/SceIofilemgr.yml31
-rw-r--r--nids/360/SceKernelModulemgr.yml12
-rw-r--r--nids/360/SceKernelThreadMgr.yml94
-rw-r--r--nids/360/SceProcessmgr.yml3
-rw-r--r--nids/360/SceRtc.yml16
-rw-r--r--nids/360/SceSblACMgr.yml4
-rw-r--r--nids/360/SceSblSsMgr.yml8
15 files changed, 0 insertions, 652 deletions
diff --git a/include/user/appmgr.h b/include/user/appmgr.h
index a3ee1fd..8fa22f3 100644
--- a/include/user/appmgr.h
+++ b/include/user/appmgr.h
@@ -13,41 +13,6 @@
extern "C" {
#endif
-typedef struct SceAppMgrSaveDataData {
- int size; //!< Must be 0x4C
- unsigned int slotId; //!< Save slot to use
- SceAppMgrSaveDataSlotParam* slotParam; //!< Save slot params
- uint8_t reserved[32]; //!< Reserved data
- SceAppMgrSaveDataDataSaveItem* files; //!< Pointer to an array of files
- int fileNum; //!< Number of files to save
- SceAppMgrMountPoint mountPoint; //!< Savedata mountpoint
- unsigned int* requiredSizeKB; //!< Required size in KBs
-} SceAppMgrSaveDataData;
-
-typedef struct SceAppMgrSaveDataDataDelete {
- int size; //!< Must be 0x44
- unsigned int slotId; //!< Save slot to use
- SceAppMgrSaveDataSlotParam* slotParam; //!< Save slot params
- uint8_t reserved[32]; //!< Reserved data
- SceAppMgrSaveDataDataSaveItem* files; //!< Pointer to an array of files
- int fileNum; //!< Number of files to delete
- SceAppMgrMountPoint mountPoint; //!< Savedata mountpoint
-} SceAppMgrSaveDataDataDelete;
-
-typedef struct SceAppMgrSaveDataSlot {
- int size; //!< Must be 0x418
- unsigned int slotId; //!< Save slot to use
- SceAppMgrSaveDataSlotParam slotParam; //!< Save slot params
- uint8_t reserved[116]; //!< Reserved data
- SceAppMgrMountPoint mountPoint; //!< Savedata mountpoint
-} SceAppMgrSaveDataSlot;
-
-typedef struct SceAppMgrSaveDataSlotDelete {
- int size; //!< Must be 0x18
- unsigned int slotId; //!< Save slot to use
- SceAppMgrMountPoint mountPoint; //!< Savedata mountpoint
-} SceAppMgrSaveDataSlotDelete;
-
typedef struct SceAppMgrExecOptParam SceAppMgrExecOptParam; // Missing struct
typedef struct SceAppMgrLaunchAppOptParam SceAppMgrLaunchAppOptParam; // Missing struct
@@ -89,60 +54,6 @@ typedef struct SceAppMgrTrcNotification {
} SceAppMgrTrcNotification;
/**
- * Save data on savedata0: partition
- *
- * @param[in] data - Data to save
- *
- * @return 0 on success, < 0 on error.
- */
-int _sceAppMgrSaveDataDataSave(SceAppMgrSaveDataData* data);
-
-/**
- * Remove data on savedata0: partition
- *
- * @param[in] data - Data to remove
- *
- * @return 0 on success, < 0 on error.
- */
-int _sceAppMgrSaveDataDataRemove(SceAppMgrSaveDataDataDelete* data);
-
-/**
- * Create a savedata slot
- *
- * @param[in] data - Slot data
- *
- * @return 0 on success, < 0 on error.
- */
-int _sceAppMgrSaveDataSlotCreate(SceAppMgrSaveDataSlot* data);
-
-/**
- * Get current param of a savedata slot
- *
- * @param[out] data - Slot data
- *
- * @return 0 on success, < 0 on error.
- */
-int _sceAppMgrSaveDataSlotGetParam(SceAppMgrSaveDataSlot* data);
-
-/**
- * Set current param of a savedata slot
- *
- * @param[in] data - Slot data
- *
- * @return 0 on success, < 0 on error.
- */
-int _sceAppMgrSaveDataSlotSetParam(SceAppMgrSaveDataSlot* data);
-
-/**
- * Delete a savedata slot
- *
- * @param[in] data - Slot data
- *
- * @return 0 on success, < 0 on error.
- */
-int _sceAppMgrSaveDataSlotDelete(SceAppMgrSaveDataSlotDelete* data);
-
-/**
* Get Process ID by Title ID
*
* @param[out] pid - Process ID
diff --git a/include/user/kernel/iofilemgr_syscall.h b/include/user/kernel/iofilemgr_syscall.h
deleted file mode 100644
index a1d4fb8..0000000
--- a/include/user/kernel/iofilemgr_syscall.h
+++ /dev/null
@@ -1,83 +0,0 @@
-/*
- Vita Development Suite Libraries
-*/
-
-#ifndef _VDSUITE_USER_KERNEL_IOFILEMGR_SYSCALL_H
-#define _VDSUITE_USER_KERNEL_IOFILEMGR_SYSCALL_H
-
-#include <kernel/types.h>
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-/* Struct definitions */
-
-typedef struct SceIoUnusedSyscallParam0x8 {
- char unused[0x8];
-} SceIoUnusedSyscallParam0x8;
-
-typedef struct SceIoUnusedSyscallParam0x10 {
- char unused[0x10];
-} SceIoUnusedSyscallParam0x10;
-
-typedef struct SceIoDevctlSyscallParam {
- SceSize arglen;
- void *bufp;
- SceSize buflen;
- char unused[0xC];
- // size 0x18
-} SceIoDevctlSyscallParam;
-
-typedef struct SceIoIoctlSyscallParam {
- SceSize arglen;
- void *bufp;
- SceSize buflen;
- char unused[0x4];
- // size 0x10
-} SceIoIoctlSyscallParam;
-
-typedef struct SceIoLseekSyscallParam {
- SceOff offset;
- int whence;
- char unused[0x4];
- // size 0x10
-} SceIoLseekSyscallParam;
-
-typedef struct SceIoPreadSyscallParam {
- SceOff offset;
- char unused[0x8];
- // size 0x10
-} SceIoPreadSyscallParam;
-
-typedef SceIoPreadSyscallParam SceIoPwriteSyscallParam;
-
-/* Function declarations */
-
-SceUID _sceIoRemove(const char *filename, SceIoUnusedSyscallParam0x8* param);
-
-int _sceIoMkdir(const char *dirname, SceIoMode mode, SceIoUnusedSyscallParam0x8* param);
-
-int _sceIoRmdir(const char *dirname, SceIoUnusedSyscallParam0x8* param);
-
-int _sceIoRename(const char *oldname, const char *newname, SceIoUnusedSyscallParam0x10* param);
-
-int _sceIoDevctl(const char *devname, int cmd, const void *arg, SceIoDevctlSyscallParam* param);
-
-int _sceIoSync(const char *devname, int flag, SceIoUnusedSyscallParam0x8* param);
-
-SceUID _sceIoOpen(const char *filename, int flag, SceIoMode mode, SceIoUnusedSyscallParam0x8* param);
-
-int _sceIoIoctl(SceUID fd, int cmd, const void *argp, SceIoIoctlSyscallParam* param);
-
-SceOff _sceIoLseek(SceUID fd, SceIoLseekSyscallParam* param);
-
-SceSSize _sceIoPread(SceUID fd, void *buf, SceSize nbyte, SceIoPreadSyscallParam* param);
-
-SceSSize _sceIoPwrite(SceUID fd, const void *buf, SceSize nbyte, SceIoPwriteSyscallParam* param);
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif /* _VDSUITE_USER_KERNEL_IOFILEMGR_SYSCALL_H */
diff --git a/include/user/net/net_syscalls.h b/include/user/net/net_syscalls.h
deleted file mode 100644
index a1441cb..0000000
--- a/include/user/net/net_syscalls.h
+++ /dev/null
@@ -1,20 +0,0 @@
-/*
- Vita Development Suite Libraries
-*/
-
-#ifndef _VDSUITE_USER_NET_NET_SYSCALLS_H
-#define _VDSUITE_USER_NET_NET_SYSCALLS_H
-
-#include <net.h>
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-int sceNetSyscallConnect(int s, const SceNetSockaddr *name, unsigned int namelen);
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif /* _VDSUITE_USER_NET_NET_SYSCALLS_H */
diff --git a/nids/360/SceAppMgr.yml b/nids/360/SceAppMgr.yml
index 140a039..52db63a 100644
--- a/nids/360/SceAppMgr.yml
+++ b/nids/360/SceAppMgr.yml
@@ -5,134 +5,6 @@ modules:
SceAppMgr:
nid: 0x8AF17416
functions:
- __sceAppMgrGetAppState: 0x210C0046
- _sceAppMgrAcidDirSet: 0x6CBCBE1A
- _sceAppMgrAcquireSoundOutExclusive3: 0x13ED8FFD
- _sceAppMgrAddContAddMount: 0x581DB1BE
- _sceAppMgrAddContMount: 0x0667E10A
- _sceAppMgrAppDataMount: 0xF07B816E
- _sceAppMgrAppDataMountById: 0x9275414A
- _sceAppMgrAppMount: 0xCF1C0C0C
- _sceAppMgrAppParamGetInt: 0xDC7F8DE5
- _sceAppMgrAppParamGetString: 0xEF34CA42
- _sceAppMgrAppParamSetString: 0x5957390F
- _sceAppMgrAppUmount: 0x2FB40418
- _sceAppMgrBgdlGetQueueStatus: 0x5075AE28
- _sceAppMgrCaptureFrameBufDMACByAppId: 0xC698385C
- _sceAppMgrCaptureFrameBufIFTUByAppId: 0xF29E0732
- _sceAppMgrCheckRifGD: 0x15D7CA34
- _sceAppMgrContentInstallPeriodStart: 0xDC478FB1
- _sceAppMgrContentInstallPeriodStop: 0xC9854E6E
- _sceAppMgrConvertVs0UserDrivePath: 0x19B76D11
- _sceAppMgrDeclareShellProcess2: 0xBDF15BDC
- _sceAppMgrDestroyAppByName: 0xEB318002
- _sceAppMgrDrmClose: 0xE4CE4A0C
- _sceAppMgrDrmOpen: 0xAA5B3A37
- _sceAppMgrForceUmount: 0x2598EC8A
- _sceAppMgrGameDataMount: 0x454EB183
- _sceAppMgrGetAppInfo: 0x6E65D746
- _sceAppMgrGetAppMgrState: 0x55C60D20
- _sceAppMgrGetAppParam: 0x258C3E3C
- _sceAppMgrGetAppParam2: 0x26D43923
- _sceAppMgrGetBootParam: 0xEEFBC756
- _sceAppMgrGetBudgetInfo: 0xEACF2237
- _sceAppMgrGetCoredumpStateForShell: 0x03DD7E65
- _sceAppMgrGetCurrentBgmState: 0x81569A58
- _sceAppMgrGetCurrentBgmState2: 0x3F7B9BB5
- _sceAppMgrGetDevInfo: 0x52766019
- _sceAppMgrGetFgAppInfo: 0xAC9968B7
- _sceAppMgrGetIdByName: 0xC311CC17
- _sceAppMgrGetMediaTypeFromDrive: 0xC8D32206
- _sceAppMgrGetMediaTypeFromDriveByPid: 0xC7566C46
- _sceAppMgrGetMountProcessNum: 0x1A844716
- _sceAppMgrGetNameById: 0x08E93582
- _sceAppMgrGetPfsDrive: 0x46B208D4
- _sceAppMgrGetPidListForShell: 0x29AC9DF0
- _sceAppMgrGetRawPath: 0x9FB3E2C8
- _sceAppMgrGetRawPathOfApp0ByAppIdForShell: 0x7D210054
- _sceAppMgrGetRawPathOfApp0ByPidForShell: 0x550422F9
- _sceAppMgrGetRecommendedScreenOrientation: 0x37E94672
- _sceAppMgrGetRunningAppIdListForShell: 0xDA66AE0E
- _sceAppMgrGetSaveDataInfo: 0x6C52A377
- _sceAppMgrGetSaveDataInfoForSpecialExport: 0xDC815429
- _sceAppMgrGetStatusByAppId: 0xBF4213A3
- _sceAppMgrGetStatusById: 0x211D9558
- _sceAppMgrGetStatusByName: 0x46998AFC
- _sceAppMgrGetSystemDataFilePlayReady: 0x7C44FE5D
- _sceAppMgrGetUserDirPath: 0x84B138BF
- _sceAppMgrGetUserDirPathById: 0x617D78DA
- _sceAppMgrGetVs0UserDataDrive: 0xC361C084
- _sceAppMgrGetVs0UserModuleDrive: 0x85589E87
- _sceAppMgrInitSafeMemoryById: 0x03FA4036
- _sceAppMgrInstallDirMount: 0xED37D810
- _sceAppMgrIsCameraActive: 0x7F0C9410
- _sceAppMgrLaunchAppByName: 0xDAC0AF12
- _sceAppMgrLaunchAppByName2: 0xAEF06983
- _sceAppMgrLaunchAppByName2ForShell: 0xC6BA9596
- _sceAppMgrLaunchAppByName2ndStage: 0xDEDD2AED
- _sceAppMgrLaunchAppByNameForShell: 0x4C3B5BB8
- _sceAppMgrLaunchAppByPath4: 0x8FE4F651
- _sceAppMgrLaunchAppByUri: 0x37CE3984
- _sceAppMgrLaunchAppByUri2: 0x4B45EAC0
- _sceAppMgrLaunchVideoStreamingApp: 0x29650EE6
- _sceAppMgrLoadExec: 0xDC2F23E0
- _sceAppMgrLoadSaveDataSystemFile: 0xA630BC5D
- _sceAppMgrLoopBackFormat: 0xEA307D2C
- _sceAppMgrLoopBackMount: 0x3493CDFA
- _sceAppMgrMmsMount: 0xE56A2E1B
- _sceAppMgrOverwriteLaunchParamForShell: 0xFDE9A3E3
- _sceAppMgrPeekLaunchParamForShell: 0x8CC3DC46
- _sceAppMgrPhotoMount: 0xE98E9C52
- _sceAppMgrPhotoUmount: 0xB2EA376F
- _sceAppMgrPspSaveDataGetParams: 0x77A51E82
- _sceAppMgrPspSaveDataRead: 0xE535161F
- _sceAppMgrPspSaveDataRootMount: 0xA77DF8BA
- _sceAppMgrReceiveEvent: 0xA90546F4
- _sceAppMgrReceiveEventNum: 0x3EEEC172
- _sceAppMgrReceiveNotificationRequestForShell: 0x21A86141
- _sceAppMgrReceiveShellEvent: 0xE0DADF51
- _sceAppMgrReceiveSystemEvent: 0x7240375B
- _sceAppMgrSaveDataAddMount: 0xD1391ACE
- _sceAppMgrSaveDataDataRemove: 0xA579A39E
- _sceAppMgrSaveDataDataRemove2: 0x435E0BCB
- _sceAppMgrSaveDataDataSave: 0xB81777B7
- _sceAppMgrSaveDataDataSave2: 0xFDACCA65
- _sceAppMgrSaveDataGetQuota: 0xF28A426B
- _sceAppMgrSaveDataMount: 0x95A6B1BF
- _sceAppMgrSaveDataSlotCreate: 0xC48833AA
- _sceAppMgrSaveDataSlotDelete: 0x191CF6B1
- _sceAppMgrSaveDataSlotFileClose: 0xFE821175
- _sceAppMgrSaveDataSlotFileGetParam: 0x667CC149
- _sceAppMgrSaveDataSlotFileOpen: 0x855CDAA4
- _sceAppMgrSaveDataSlotGetParam: 0x74D789E2
- _sceAppMgrSaveDataSlotGetStatus: 0xAF8258D4
- _sceAppMgrSaveDataSlotInit: 0x79689A1D
- _sceAppMgrSaveDataSlotSetParam: 0x0E216486
- _sceAppMgrSaveDataSlotSetStatus: 0x030C0CA4
- _sceAppMgrSaveDataUmount: 0x53623420
- _sceAppMgrSendNotificationRequest: 0xF42E27AD
- _sceAppMgrSendParam: 0xD29236AD
- _sceAppMgrSendSystemEvent: 0xCEAF12B6
- _sceAppMgrSendSystemEvent2: 0xD70D5EEC
- _sceAppMgrSetBackRenderPortOwner: 0xE8357021
- _sceAppMgrSetBgmProxyApp: 0xF6B093BC
- _sceAppMgrSetNetworkDisconnectionWarningDialogState: 0xD4B0CDB4
- _sceAppMgrSetPowerSaveMode: 0xB0ECB9C2
- _sceAppMgrSetRecommendedScreenOrientationForShell: 0xD14D39F5
- _sceAppMgrSetShellScreenOrientation: 0x10E23253
- _sceAppMgrSetSystemDataFile: 0x78F5AF66
- _sceAppMgrSetSystemDataFilePlayReady: 0x8964E793
- _sceAppMgrSystemParamDateTimeGetConf: 0xB7F95389
- _sceAppMgrSystemParamGetInt: 0x18EB1DAC
- _sceAppMgrSystemParamGetString: 0xAF5F9497
- _sceAppMgrThemeDataMount: 0xD9B7A5AF
- _sceAppMgrTrophyMount: 0xF8B80AC2
- _sceAppMgrTrophyMountById: 0x3DFC9410
- _sceAppMgrUmount: 0xFFCA54E0
- _sceAppMgrUmountByPid: 0x0A419BC8
- _sceAppMgrUpdateSaveDataParam: 0xF4703412
- _sceAppMgrWorkDirMount: 0x0C49659E
- _sceAppMgrWorkDirMountById: 0x58E4CC90
sceAppMgrAcquireBgmPort: 0xAFCEAB96
sceAppMgrAcquireBgmPortForMusicPlayer: 0x44EC36FA
sceAppMgrAcquireBgmPortWithPriority: 0xAAED7419
diff --git a/nids/360/SceAvcodec.yml b/nids/360/SceAvcodec.yml
index 2c3ed73..b1e4cd4 100644
--- a/nids/360/SceAvcodec.yml
+++ b/nids/360/SceAvcodec.yml
@@ -2,144 +2,6 @@ modules:
SceAvcodec:
nid: 0xDD0E433A
libraries:
- SceAvcodec:
- nid: 0xA166C96E
- functions:
- _sceAudiodecClearContext: 0x914CC7A7
- _sceAudiodecCreateDecoder: 0x38FE5C91
- _sceAudiodecCreateDecoderExternal: 0x82710FAE
- _sceAudiodecCreateDecoderResident: 0x56CE556D
- _sceAudiodecDecode: 0x7F5DD597
- _sceAudiodecDecodeNFrames: 0x215CFCC1
- _sceAudiodecDecodeNStreams: 0x5168491A
- _sceAudiodecDeleteDecoder: 0x5C548173
- _sceAudiodecDeleteDecoderExternal: 0x7AA7D478
- _sceAudiodecDeleteDecoderResident: 0xE147D80C
- _sceAudiodecGetContextSize: 0x74A9FA86
- _sceAudiodecGetInternalError: 0x0CD84136
- _sceAudiodecInitLibrary: 0x780A3ED6
- _sceAudiodecPartlyDecode: 0xCE1AB19A
- _sceAudiodecTermLibrary: 0x4A9CDA20
- _sceAudioencClearContext: 0xAC47088A
- _sceAudioencCreateEncoder: 0x9E4796C4
- _sceAudioencCreateEncoderExternal: 0x835F98F8
- _sceAudioencCreateEncoderResident: 0x04ED53EC
- _sceAudioencDeleteEncoder: 0x83873882
- _sceAudioencDeleteEncoderExternal: 0x34E1BA94
- _sceAudioencDeleteEncoderResident: 0xCFC633F6
- _sceAudioencEncode: 0xBFCF8F3F
- _sceAudioencEncodeNFrames: 0x9CCB2033
- _sceAudioencGetContextSize: 0x14C85301
- _sceAudioencGetInternalError: 0x8874B8A7
- _sceAudioencGetOptInfo: 0x09E763CD
- _sceAudioencInitLibrary: 0x373AB413
- _sceAudioencTermLibrary: 0x263BA366
- _sceAvcdecCreateDecoder: 0x95EF1A0C
- _sceAvcdecCreateDecoderInternal: 0xED853085
- _sceAvcdecCreateDecoderNongameapp: 0x4099935D
- _sceAvcdecCsc: 0xD301B276
- _sceAvcdecCscInternal: 0x4859779A
- _sceAvcdecDecode: 0xCDB74E5D
- _sceAvcdecDecodeAuInternal: 0x1FA806E5
- _sceAvcdecDecodeAuNalAuInternal: 0xF757BE5E
- _sceAvcdecDecodeAuNalAuNongameapp: 0x9DEBBA02
- _sceAvcdecDecodeAuNongameapp: 0x5F1B6299
- _sceAvcdecDecodeAvailableSize: 0x9D576E7E
- _sceAvcdecDecodeFlush: 0x80C78430
- _sceAvcdecDecodeGetPictureInternal: 0xFEE91426
- _sceAvcdecDecodeGetPictureNongameapp: 0x4A061F8C
- _sceAvcdecDecodeGetPictureWithWorkPictureInternal: 0xCF0F24FE
- _sceAvcdecDecodeNalAu: 0x5D9FD6DB
- _sceAvcdecDecodeNalAuWithWorkPicture: 0xB6AD7638
- _sceAvcdecDecodeSetTrickModeNongameapp: 0x32057062
- _sceAvcdecDecodeSetUserDataSei1FieldMemSizeNongameapp: 0x1DBA40CB
- _sceAvcdecDecodeStop: 0xD390D6E9
- _sceAvcdecDecodeStopWithWorkPicture: 0x7C44A3CE
- _sceAvcdecDecodeWithWorkPicture: 0xB20EBBBF
- _sceAvcdecDeleteDecoder: 0x1FAD5C13
- _sceAvcdecGetSeiPictureTimingInternal: 0x1C0F4C2F
- _sceAvcdecGetSeiUserDataNongameapp: 0xAC1A4B84
- _sceAvcdecQueryDecoderMemSize: 0x0B47EBC1
- _sceAvcdecQueryDecoderMemSizeInternal: 0x008CFFE6
- _sceAvcdecQueryDecoderMemSizeNongameapp: 0x6C290F95
- _sceAvcdecRegisterCallbackInternal: 0x6B216E40
- _sceAvcdecRegisterCallbackNongameapp: 0x18144D32
- _sceAvcdecSetDecodeMode: 0x6931F869
- _sceAvcdecSetDecodeModeInternal: 0x7D2E4694
- _sceAvcdecSetInterlacedStreamMode: 0x439B6468
- _sceAvcdecSetLowDelayModeNongameapp: 0x6B5D2664
- _sceAvcdecSetRecoveryPointSEIMode: 0xA8A0DBA6
- _sceAvcdecUnregisterCallbackInternal: 0x6327330C
- _sceAvcdecUnregisterCallbackNongameapp: 0x03040F4A
- _sceAvcdecUnregisterCallbackWithCbidInternal: 0x2C86BF22
- _sceAvcdecUnregisterCallbackWithCbidNongameapp: 0xC152BBF0
- _sceAvcencCreateEncoder: 0x7DBE3302
- _sceAvcencCreateEncoderBasic: 0x83DE207F
- _sceAvcencCreateEncoderInternal: 0x81A63707
- _sceAvcencCsc: 0xC23957F9
- _sceAvcencDeleteEncoder: 0x3313DAC9
- _sceAvcencEncode: 0xC03BA7BA
- _sceAvcencEncodeFlush: 0x8F3EF1D5
- _sceAvcencEncodeStop: 0x7360B1E6
- _sceAvcencGetNalUnit: 0x58B0CC46
- _sceAvcencQueryEncoderMemSize: 0xDEA87D04
- _sceAvcencQueryEncoderMemSizeBasic: 0x5A604BA1
- _sceAvcencQueryEncoderMemSizeInternal: 0x43D4E94B
- _sceAvcencSetAvailablePreset: 0x34E914A7
- _sceAvcencSetEncoderParameter: 0x9ED5188E
- _sceJpegCreateSplitDecoder: 0x20E2D9D5
- _sceJpegCsc: 0x72811C19
- _sceJpegDecodeMJpeg: 0xCB7F8A69
- _sceJpegDecodeMJpegYCbCr: 0x925F0A72
- _sceJpegDeleteSplitDecoder: 0x45F71883
- _sceJpegEncoderCsc: 0xE035FA28
- _sceJpegEncoderEncode: 0x77F1F2A2
- _sceJpegEncoderEnd: 0xACC6B9F1
- _sceJpegEncoderGetContextSize: 0x2A9B196E
- _sceJpegEncoderInit: 0xA12E3D80
- _sceJpegEncoderInitWithParam: 0x22124B1B
- _sceJpegEncoderSetCompressionRatio: 0x271734D5
- _sceJpegEncoderSetHeaderMode: 0x3472D7E8
- _sceJpegEncoderSetOutputAddr: 0x7970C81B
- _sceJpegEncoderSetValidRegion: 0x24239139
- _sceJpegFinishMJpeg: 0x64419DEA
- _sceJpegGetOutputInfo: 0x6F6DAF2B
- _sceJpegInitMJpeg: 0x12740EA3
- _sceJpegInitMJpegWithParam: 0x7BA8FDDE
- _sceJpegMJpegCsc: 0x7E2E515F
- _sceJpegSplitDecodeMJpeg: 0xA0CB5CF8
- _sceM4vdecCreateDecoder: 0xBBFF3491
- _sceM4vdecCreateDecoderInternal: 0xBB1687CD
- _sceM4vdecCsc: 0x7D227358
- _sceM4vdecDecode: 0x36861BB9
- _sceM4vdecDecodeAvailableSize: 0x58CC2B59
- _sceM4vdecDecodeFlush: 0x1D88FBEC
- _sceM4vdecDecodeStop: 0xCF1844E7
- _sceM4vdecDecodeStopWithWorkPicture: 0x50AA1253
- _sceM4vdecDecodeWithWorkPicture: 0x15F9533D
- _sceM4vdecDeleteDecoder: 0x355B448E
- _sceM4vdecQueryDecoderMemSize: 0x704A70E8
- _sceM4vdecQueryDecoderMemSizeInternal: 0xD9F1331D
- _sceVideodecInitLibrary: 0xAE511B32
- _sceVideodecInitLibraryInternal: 0x2CFE9AF0
- _sceVideodecInitLibraryNongameapp: 0x3070B3ED
- _sceVideodecInitLibraryWithUnmapMem: 0x3A8F0E2B
- _sceVideodecInitLibraryWithUnmapMemInternal: 0xE4003992
- _sceVideodecInitLibraryWithUnmapMemNongameapp: 0xE816BAE7
- _sceVideodecQueryInstanceNongameapp: 0x309BBB68
- _sceVideodecQueryMemSize: 0xAF9BDDA7
- _sceVideodecQueryMemSizeInternal: 0x654A5F92
- _sceVideodecQueryMemSizeNongameapp: 0x8B52F56A
- _sceVideodecSetConfig: 0x89324E23
- _sceVideodecSetConfigInternal: 0xD43EEFD8
- _sceVideodecTermLibrary: 0x07B26B00
- _sceVideoencInitLibrary: 0xEEAC1039
- _sceVideoencInitLibraryInternal: 0x1CF4523E
- _sceVideoencInitLibraryWithUnmapMem: 0x67127921
- _sceVideoencInitLibraryWithUnmapMemInternal: 0x19ACF593
- _sceVideoencQueryMemSize: 0xC4EBFDF5
- _sceVideoencQueryMemSizeInternal: 0xEE5B74B7
- _sceVideoencTermLibrary: 0xFF652EAE
SceAvcodecForDriver:
nid: 0x66845469
functions:
diff --git a/nids/360/SceCodecEngineWrapper.yml b/nids/360/SceCodecEngineWrapper.yml
index 9b92d10..17823da 100644
--- a/nids/360/SceCodecEngineWrapper.yml
+++ b/nids/360/SceCodecEngineWrapper.yml
@@ -5,16 +5,10 @@ modules:
SceCodecEngineWrapper:
nid: 0x5C9EE5B9
functions:
- _sceCodecEngineAllocMemoryFromUnmapMemBlock: 0x03DCBDCA
_sceCodecEngineChangeNumWorkerCores: 0x7E5E1F38
- _sceCodecEngineChangeNumWorkerCoresDefault: 0x362E9415
- _sceCodecEngineChangeNumWorkerCoresMax: 0x04BA9415
- _sceCodecEngineCloseUnmapMemBlock: 0xAD30912D
- _sceCodecEngineFreeMemoryFromUnmapMemBlock: 0x489FF965
_sceCodecEngineGetMemoryState: 0x1E9E5A79
_sceCodecEngineGetNumRpcCalled: 0x9B157692
_sceCodecEngineGetProcessorLoad: 0x241B194B
- _sceCodecEngineOpenUnmapMemBlock: 0xB0E654EE
_sceCodecEnginePmonGetProcessorLoad: 0x3EBA4982
_sceCodecEnginePmonReset: 0xCA79BFC4
_sceCodecEnginePmonStart: 0x6AF71F08
diff --git a/nids/360/SceDisplay.yml b/nids/360/SceDisplay.yml
index a03b169..11e5f3d 100644
--- a/nids/360/SceDisplay.yml
+++ b/nids/360/SceDisplay.yml
@@ -5,13 +5,6 @@ modules:
SceDisplay:
nid: 0x5ED8F994
functions:
- _sceDisplayGetFrameBuf: 0xA753B0CA
- _sceDisplayGetFrameBufInternal: 0x86A8E436
- _sceDisplayGetMaximumFrameBufResolution: 0x2EBFC7CB
- _sceDisplayGetResolutionInfoInternal: 0xFEFEB240
- _sceDisplaySetFrameBuf: 0xF51523CB
- _sceDisplaySetFrameBufForCompat: 0x45BCB941
- _sceDisplaySetFrameBufInternal: 0x7A8CB78E
sceDisplayGetPrimaryHead: 0x7178FADA
sceDisplayGetRefreshRate: 0xA08CA60D
sceDisplayGetVcount: 0xB6FDE0BA
diff --git a/nids/360/SceError.yml b/nids/360/SceError.yml
deleted file mode 100644
index 857711b..0000000
--- a/nids/360/SceError.yml
+++ /dev/null
@@ -1,13 +0,0 @@
-modules:
- SceError:
- nid: 0x8713337B
- libraries:
- SceError:
- nid: 0x5CD2CAD1
- functions:
- _sceErrorGetExternalString: 0x85747003
- _sceErrorHistoryClearError: 0xC88F479E
- _sceErrorHistoryGetError: 0xF16DF981
- _sceErrorHistoryPostError: 0x70F9D872
- _sceErrorHistorySetDefaultFormat: 0xB94DAA2F
- _sceErrorHistoryUpdateSequenceInfo: 0x6FBE4BDC
diff --git a/nids/360/SceIofilemgr.yml b/nids/360/SceIofilemgr.yml
index a7ae667..10df384 100644
--- a/nids/360/SceIofilemgr.yml
+++ b/nids/360/SceIofilemgr.yml
@@ -5,37 +5,6 @@ modules:
SceIofilemgr:
nid: 0xF2FF276E
functions:
- _sceIoChstat: 0xD2EE455F
- _sceIoChstatAsync: 0xB4B021D9
- _sceIoChstatByFd: 0xE0BE2A30
- _sceIoCompleteMultiple: 0x9111D004
- _sceIoDevctl: 0x515AC017
- _sceIoDevctlAsync: 0x3EE3F66E
- _sceIoDopen: 0xE6E614B5
- _sceIoDread: 0x8713D662
- _sceIoGetstat: 0x8E7E11F2
- _sceIoGetstatAsync: 0xD414C89F
- _sceIoGetstatByFd: 0xE6C53567
- _sceIoIoctl: 0x1D2988F1
- _sceIoIoctlAsync: 0xE00DC256
- _sceIoLseek: 0xA604764A
- _sceIoLseekAsync: 0x2300858E
- _sceIoMkdir: 0x8F1ACC32
- _sceIoMkdirAsync: 0xF5C58B21
- _sceIoOpen: 0xCC67B6FD
- _sceIoOpenAsync: 0x09CD0FC8
- _sceIoPread: 0x539FD5C4
- _sceIoPreadAsync: 0xBCF5684D
- _sceIoPwrite: 0x9654094B
- _sceIoPwriteAsync: 0xB2D0B2F4
- _sceIoRemove: 0x78955C65
- _sceIoRemoveAsync: 0x5FFA47E2
- _sceIoRename: 0x4912F748
- _sceIoRenameAsync: 0x81794921
- _sceIoRmdir: 0xFFFB4D76
- _sceIoRmdirAsync: 0x13DC3244
- _sceIoSync: 0x5DD867F7
- _sceIoSyncAsync: 0x86DB0C0E
sceIoCancel: 0xCEF48835
sceIoChstatByFdAsync: 0xA9F89275
sceIoCloseAsync: 0x8EA3616A
diff --git a/nids/360/SceKernelModulemgr.yml b/nids/360/SceKernelModulemgr.yml
index 2ead893..50934f8 100644
--- a/nids/360/SceKernelModulemgr.yml
+++ b/nids/360/SceKernelModulemgr.yml
@@ -2,10 +2,6 @@ modules:
SceKernelModulemgr:
nid: 0x726C6635
libraries:
- SceBacktrace:
- nid: 0xB07B6A3F
- functions:
- _sceKernelBacktrace: 0xBF371A98
SceBacktraceForDriver:
nid: 0x77CB3DD6
functions:
@@ -13,14 +9,6 @@ modules:
SceModulemgr:
nid: 0xEAED1616
functions:
- _sceKernelCloseModule: 0x849E78BE
- _sceKernelLoadModule: 0xB4C5EF9E
- _sceKernelLoadStartModule: 0x60647592
- _sceKernelOpenModule: 0x9D674F45
- _sceKernelStartModule: 0x72CD301F
- _sceKernelStopModule: 0x086867A8
- _sceKernelStopUnloadModule: 0x86EAEA0A
- _sceKernelUnloadModule: 0x8E4A7716
sceKernelGetAllowedSdkVersionOnSystem: 0x4397FC4E
sceKernelGetLibraryInfoByNID: 0xEAEB1312
sceKernelGetModuleIdByAddr: 0xF5798C7C
diff --git a/nids/360/SceKernelThreadMgr.yml b/nids/360/SceKernelThreadMgr.yml
index 072df29..fc951a0 100644
--- a/nids/360/SceKernelThreadMgr.yml
+++ b/nids/360/SceKernelThreadMgr.yml
@@ -5,98 +5,7 @@ modules:
SceThreadmgr:
nid: 0x859A24B1
functions:
- __sceKernelCreateLwMutex: 0x4BB3154A
- _sceKernelCancelEvent: 0x29483405
- _sceKernelCancelEventFlag: 0xF76F3056
- _sceKernelCancelEventWithSetPattern: 0x8E68E870
- _sceKernelCancelMsgPipe: 0xCE769C83
- _sceKernelCancelMutex: 0x1B74CB89
- _sceKernelCancelRWLock: 0xD004EA15
- _sceKernelCancelSema: 0x1CAF805D
- _sceKernelCancelTimer: 0x13117B21
- _sceKernelCreateCond: 0xCC14FA59
- _sceKernelCreateEventFlag: 0x38AA5E8E
- _sceKernelCreateLwCond: 0x940B9EBE
- _sceKernelCreateMsgPipeWithLR: 0x2AAC8BFD
- _sceKernelCreateMutex: 0x92667AE5
- _sceKernelCreateRWLock: 0xB1877F5E
- _sceKernelCreateSema: 0x0D76458E
- _sceKernelCreateSema_16XX: 0xBD06F27C
- _sceKernelCreateSimpleEvent: 0x9C187FAD
- _sceKernelCreateTimer: 0x79BA0A6D
- _sceKernelDeleteLwCond: 0x75FCF058
- _sceKernelDeleteLwMutex: 0x91262C5F
_sceKernelExitCallback: 0x2682E6ED
- _sceKernelGetCallbackInfo: 0x86761234
- _sceKernelGetCondInfo: 0x05C51CE1
- _sceKernelGetEventFlagInfo: 0x106C216F
- _sceKernelGetEventInfo: 0xB395BBF1
- _sceKernelGetEventPattern: 0x70358258
- _sceKernelGetLwCondInfo: 0x6C79F2F2
- _sceKernelGetLwCondInfoById: 0xD9E78D30
- _sceKernelGetLwMutexInfoById: 0xFEC9E946
- _sceKernelGetMsgPipeInfo: 0x7AE31060
- _sceKernelGetMutexInfo: 0xE8CC3DF0
- _sceKernelGetRWLockInfo: 0x8CE3AFC7
- _sceKernelGetSemaInfo: 0x0402C633
- _sceKernelGetSystemInfo: 0x80544E0C
- _sceKernelGetSystemTime: 0xB70EBAE9
- _sceKernelGetThreadContextForVM: 0x377094D5
- _sceKernelGetThreadCpuAffinityMask: 0x212E6C35
- _sceKernelGetThreadEventInfo: 0x5DE0B7E9
- _sceKernelGetThreadExitStatus: 0xD3210C08
- _sceKernelGetThreadInfo: 0xB373D8A1
- _sceKernelGetThreadRunStatus: 0xC7FB5497
- _sceKernelGetThreadTLSAddr: 0xBACA6891
- _sceKernelGetTimerBase: 0x865DA482
- _sceKernelGetTimerEventRemainingTime: 0x215FD24D
- _sceKernelGetTimerInfo: 0xAC7FE4F3
- _sceKernelGetTimerTime: 0x6F2C41BA
- _sceKernelLockLwMutex: 0x9C572180
- _sceKernelLockMutex: 0x7FA945AD
- _sceKernelLockMutexCB: 0xDB9F5333
- _sceKernelLockReadRWLock: 0x7EB9E8B5
- _sceKernelLockReadRWLockCB: 0x5D86D763
- _sceKernelLockWriteRWLock: 0x80191FAA
- _sceKernelLockWriteRWLockCB: 0xDBD09B09
- _sceKernelPMonThreadGetCounter: 0x6B9711AC
- _sceKernelPollEvent: 0x21C7913E
- _sceKernelPollEventFlag: 0xDAB1B1C8
- _sceKernelPulseEventWithNotifyCallback: 0x3E49D3F1
- _sceKernelReceiveMsgPipeVector: 0x3DD9E4AB
- _sceKernelReceiveMsgPipeVectorCB: 0x4DBF648E
- _sceKernelRegisterThreadEventHandler: 0xCE6B49D8
- _sceKernelSendMsgPipeVector: 0x5E65E454
- _sceKernelSendMsgPipeVectorCB: 0xF6D515DC
- _sceKernelSetEventWithNotifyCallback: 0x118F646E
- _sceKernelSetThreadContextForVM: 0xD4785C41
- _sceKernelSetTimerEvent: 0xE2C0BFEF
- _sceKernelSetTimerTime: 0xFF738CD9
- _sceKernelSignalLwCond: 0xC37F6983
- _sceKernelSignalLwCondAll: 0x07D2584A
- _sceKernelSignalLwCondTo: 0x6F1A4A2E
- _sceKernelStartThread: 0xC30B1745
- _sceKernelTryReceiveMsgPipeVector: 0x03CFCF00
- _sceKernelTrySendMsgPipeVector: 0xB3D600AB
- _sceKernelUnlockLwMutex: 0x2ABC41DF
- _sceKernelWaitCond: 0x040795C7
- _sceKernelWaitCondCB: 0x452B0AB3
- _sceKernelWaitEvent: 0x4E0EA70D
- _sceKernelWaitEventCB: 0x7D483C33
- _sceKernelWaitEventFlag: 0xFCE2F728
- _sceKernelWaitEventFlagCB: 0x401E0C68
- _sceKernelWaitException: 0x6F7C4DE6
- _sceKernelWaitExceptionCB: 0x5E7876F2
- _sceKernelWaitLwCond: 0x18C65756
- _sceKernelWaitLwCondCB: 0x72DBB96B
- _sceKernelWaitMultipleEvents: 0x200CC503
- _sceKernelWaitMultipleEventsCB: 0x0558B7C1
- _sceKernelWaitSema: 0x45389B6B
- _sceKernelWaitSemaCB: 0xF8E06784
- _sceKernelWaitSignal: 0x50407BF4
- _sceKernelWaitSignalCB: 0xCEA3FC52
- _sceKernelWaitThreadEnd: 0xEA5C52F5
- _sceKernelWaitThreadEndCB: 0xFA3D4491
sceKernelCancelCallback: 0x30741EF2
sceKernelChangeActiveCpuMask: 0x001173F8
sceKernelChangeThreadCpuAffinityMask: 0x15129174
@@ -117,7 +26,6 @@ modules:
sceKernelCloseSimpleEvent: 0xFEF4CA53
sceKernelCloseTimer: 0xACE60E4A
sceKernelCreateCallback: 0xB19CF7E9
- sceKernelCreateThreadForUser: 0xC0FAF6A3
sceKernelDelayThread: 0x4B675D05
sceKernelDelayThread200: 0x97C4A7C4
sceKernelDelayThreadCB: 0x9C0180E1
@@ -153,7 +61,6 @@ modules:
sceKernelPollSema: 0x866EF048
sceKernelPulseEvent: 0x8D27BAD6
sceKernelRegisterCallbackToEvent: 0x76FB37E9
- sceKernelResumeThreadForVM: 0x7EB55DAC
sceKernelSendSignal: 0xD4C367B2
sceKernelSetEvent: 0x324218CD
sceKernelSetEventFlag: 0xEC94DFF7
@@ -164,7 +71,6 @@ modules:
sceKernelSignalSema: 0xE6B761D1
sceKernelStartTimer: 0x48091E0C
sceKernelStopTimer: 0x869E9F20
- sceKernelSuspendThreadForVM: 0x1FF5960D
sceKernelTryLockMutex: 0x72FC1F54
sceKernelTryLockReadRWLock: 0xEFDDA456
sceKernelTryLockWriteRWLock: 0x206CBB66
diff --git a/nids/360/SceProcessmgr.yml b/nids/360/SceProcessmgr.yml
index 6656c67..97ab6a2 100644
--- a/nids/360/SceProcessmgr.yml
+++ b/nids/360/SceProcessmgr.yml
@@ -15,9 +15,6 @@ modules:
sceKernelGetExtraTty: 0x2D635A00
sceKernelGetProcessName: 0x10C52C95
sceKernelGetProcessParam: 0x2BE3E066
- sceKernelGetProcessTime: 0xD37A8437
- sceKernelGetProcessTimeLow: 0xF5D0D4C6
- sceKernelGetProcessTimeWide: 0x89DA0967
sceKernelGetProcessTitleId: 0x03A48771
sceKernelGetRemoteProcessTime: 0xE6E9FCA3
sceKernelGetStderr: 0xFA5E3ADA
diff --git a/nids/360/SceRtc.yml b/nids/360/SceRtc.yml
index 9d94e37..d664d98 100644
--- a/nids/360/SceRtc.yml
+++ b/nids/360/SceRtc.yml
@@ -5,22 +5,6 @@ modules:
SceRtc:
nid: 0x3503487E
functions:
- _sceRtcConvertLocalTimeToUtc: 0x0FC8AC41
- _sceRtcConvertUtcToLocalTime: 0x1E61DDA4
- _sceRtcFormatRFC2822: 0x2CD6AC86
- _sceRtcFormatRFC2822LocalTime: 0x4C7ED349
- _sceRtcFormatRFC3339: 0x7EE2CBEF
- _sceRtcFormatRFC3339LocalTime: 0x4836474D
- _sceRtcGetCurrentAdNetworkTick: 0x76EFA8FE
- _sceRtcGetCurrentClock: 0x24947354
- _sceRtcGetCurrentClockLocalTime: 0x41A6C861
- _sceRtcGetCurrentDebugNetworkTick: 0xBF639B21
- _sceRtcGetCurrentGpsTick: 0x3BA820E5
- _sceRtcGetCurrentNetworkTick: 0x06F734FE
- _sceRtcGetCurrentRetainedNetworkTick: 0xC17EA809
- _sceRtcGetCurrentTick: 0x247EE33B
- _sceRtcGetLastAdjustedTick: 0xEA157EC5
- _sceRtcGetLastReincarnatedTick: 0xE13D0FE5
sceRtcGetAccumulativeTime: 0x258BE8EC
SceRtcForDriver:
nid: 0x0351D827
diff --git a/nids/360/SceSblACMgr.yml b/nids/360/SceSblACMgr.yml
index f102d7a..65e436e 100644
--- a/nids/360/SceSblACMgr.yml
+++ b/nids/360/SceSblACMgr.yml
@@ -2,10 +2,6 @@ modules:
SceSblACMgr:
nid: 0x7474D6F9
libraries:
- SceSblACMgr:
- nid: 0xF069F219
- functions:
- _sceSblACMgrIsGameProgram: 0x3C17A7F7
SceSblACMgrForDriver:
nid: 0x9AD8E213
functions:
diff --git a/nids/360/SceSblSsMgr.yml b/nids/360/SceSblSsMgr.yml
index dd6e6f9..fa5a24f 100644
--- a/nids/360/SceSblSsMgr.yml
+++ b/nids/360/SceSblSsMgr.yml
@@ -2,10 +2,6 @@ modules:
SceSblSsMgr:
nid: 0x4E913538
libraries:
- SceSblAimgr:
- nid: 0xD473F968
- functions:
- _sceKernelGetOpenPsId: 0x6E283E2E
SceSblDmac5Mgr:
nid: 0x437366A2
functions:
@@ -34,10 +30,6 @@ modules:
sceSblQafMgrIsAllowRemoteSysmoduleLoad: 0xF45AA706
sceSblQafMgrIsAllowScreenShotAlways: 0xD22A8731
sceSblQafMgrSetQafToken2: 0xF4B5C8A5
- SceSblRng:
- nid: 0x1843F124
- functions:
- _sceKernelGetRandomNumber: 0xC37E818C
SceSblSsMgrForDriver:
nid: 0x61E9428D
functions: