forked from vitasdk/vita-headers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.yml
8309 lines (8309 loc) · 349 KB
/
db.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
version: 2
firmware: 3.60
modules:
SceAppMgr:
nid: 0xDBB29DB7
libraries:
SceAppMgrForDriver:
kernel: true
nid: 0xDCE180F8
functions:
ksceAppMgrAcInstGetAcdirParam: 0x474AABDF
ksceAppMgrBgdlSetQueueStatus: 0x5B1BE482
ksceAppMgrCheckContentInstallPeriod: 0x193784A9
ksceAppMgrCheckPfsMounted: 0x0B1BEEE0
ksceAppMgrCloudDataClearMcId: 0xEC408FEF
ksceAppMgrCloudDataCreateHeader: 0xED87F191
ksceAppMgrCloudDataDstCreateMount: 0xB3816B42
ksceAppMgrCloudDataGetMcId: 0x1286AF64
ksceAppMgrCloudDataSetMcId: 0x0B94BB90
ksceAppMgrCloudDataSetupKey: 0x2FAA6ABD
ksceAppMgrCloudDataSrcMount: 0x6D4D6FFE
ksceAppMgrCloudDataVerifyHeader: 0x55D48190
ksceAppMgrDebugSettingNotifyUpdate: 0x7554330F
ksceAppMgrFakeSaveDataCreateMount: 0x12FC3FA8
ksceAppMgrGameDataMount: 0xCE356B2D
ksceAppMgrGetPfsProcessStatus: 0xE72D2A4A
ksceAppMgrGetSystemDataFile: 0xAEC49533
ksceAppMgrIsExclusiveProcessRunning: 0xA888C2DC
ksceAppMgrLaunchAppByPath: 0xB0A37065
ksceAppMgrLoadSafeMemory: 0xFAF3DAAA
ksceAppMgrLocalBackupGetOfflineId: 0x61B13981
ksceAppMgrLocalBackupVerifyOfflineHeader: 0x62E98C42
ksceAppMgrRegisterPath: 0xB53FB98E
ksceAppMgrSaveDataLocalBackupTargetGetList: 0x9B3F7D66
ksceAppMgrSaveDataLocalBackupTargetRemoveItem: 0xC4EF95BB
ksceAppMgrSaveDataNotifyBackupFinished: 0x6989B258
ksceAppMgrSaveSafeMemory: 0xD366AA44
ksceAppMgrSystemParamDateTimeSetConf: 0xA9AA3A68
ksceAppMgrUmount: 0xA714BB35
ksceAppMgrUpdateRifInfo: 0x894BDCB8
SceAppMgr:
kernel: false
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
_sceAppMgrLaunchAppByNameForShell: 0x4C3B5BB8
_sceAppMgrLaunchAppByName2: 0xAEF06983
_sceAppMgrLaunchAppByName2ForShell: 0xC6BA9596
_sceAppMgrLaunchAppByName2ndStage: 0xDEDD2AED
_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
sceAppMgrAcquireBtrm: 0xD752695D
sceAppMgrAcquireSoundOutExclusive: 0xACB48075
sceAppMgrAcquireSoundOutExclusive2: 0xB9365442
sceAppMgrActivateApp: 0x43631508
sceAppMgrDeactivateApp: 0xFFA093D9
sceAppMgrDeclareSystemChatApp: 0x77EE891D
sceAppMgrDestroyAppByAppId: 0x54368A0B
sceAppMgrDestroyOtherApp: 0x3EF143BF
sceAppMgrDestroyOtherAppByAppIdForShell: 0xDC70C5F7
sceAppMgrDestroyOtherAppByPidForShell: 0x5420D23C
sceAppMgrDump: 0x527795E8
sceAppMgrEnableCoredumpForTest: 0x32FD0B99
sceAppMgrEnableDuckingOnSystemChat: 0x5AB230DE
sceAppMgrEnablePrioritizingSystemChat: 0x3E1FAB92
sceAppMgrExitToLiveboardForGameApp: 0x89D1DA55
sceAppMgrFinishCoredumpForShell: 0x52FF63D1
sceAppMgrGetAppIdByAppId: 0x332C9D98
sceAppMgrGetExtraAppParam: 0x94A722BC
sceAppMgrGetProcessIdByAppIdForShell: 0x63FAC2A9
sceAppMgrGetSystemDataFile: 0xAEC49533
sceAppMgrGrowMemory3: 0x4401EDCD
sceAppMgrGrowMemory: 0x842FCE8C
sceAppMgrIsDevelopmentMode: 0x7D4F8F83
sceAppMgrIsGameBudgetAppPresent: 0xE134F5A0
sceAppMgrIsGameProgram: 0xFFF8F7F0
sceAppMgrIsNonGameProgram: 0x5F22E192
sceAppMgrIsOtherAppPresent: 0x371F6F81
sceAppMgrIsPidShellAndCrashed: 0xC648EA9B
sceAppMgrIsPsNowClient: 0x972EA7BA
sceAppMgrLaunchAppCancel: 0x5369BC0A
sceAppMgrLoadSafeMemory: 0xFAF3DAAA
sceAppMgrNotifyLiveBoardModeForShell: 0x389F048D
sceAppMgrQuitApp: 0x0DD747FB
sceAppMgrQuitForNonSuspendableApp: 0xE3F719A0
sceAppMgrReceiveShellEventNum: 0xFB67BABD
sceAppMgrReleaseBgmPort: 0xF3717E37
sceAppMgrReleaseBtrm: 0xACDCE4DB
sceAppMgrReleaseSoundOutExclusive: 0x3BA41199
sceAppMgrReleaseSoundOutExclusive2: 0x2BB68701
sceAppMgrReleaseSoundOutExclusive3: 0x626C339D
sceAppMgrRestoreBgmSettingForShell: 0xD9BCC50C
sceAppMgrRestoreDisplaySettingForShell: 0xE455922D
sceAppMgrResumeBgAppByShell: 0x64DD4321
sceAppMgrReturnLiveAreaOperationResultForShell: 0x5CF3BA39
sceAppMgrSaveDataGetCachedRequiredSizeKiB: 0x56EDE09A
sceAppMgrSaveSafeMemory: 0xD366AA44
sceAppMgrSendLiveBoardMode: 0x3E4AC082
sceAppMgrSetAppProtectionModeOnMemoryShortage: 0xAF8C7FFB
sceAppMgrSetBgmSubPriority: 0x7333C2F1
sceAppMgrSetBgmSubPriorityForSystemChat: 0x90E42B4D
sceAppMgrSetDisplayMergeConf: 0x0789D501
sceAppMgrSetFakeSettingBug51800: 0xF46C81F3
sceAppMgrSetInfobarState: 0xAD9022A1
sceAppMgrSetInfobarStateForCommonDialog: 0xD6758B4E
sceAppMgrSetInfobarStateForShellByAppId: 0xF7DFE96E
sceAppMgrSetRecommendedScreenOrientationActivated: 0x75876896
sceAppMgrSetSystemImposeState: 0xD16B91B5
sceAppMgrSetSystemImposeState2: 0x2163759A
sceAppMgrSuspendBgAppByShell: 0x5BCF6927
sceAppMgrSuspendUntilActivated: 0xECEC7F90
SceSharedFb:
kernel: false
nid: 0x32A0442E
functions:
_sceSharedFbOpen: 0xB358E1B6
sceSharedFbBegin: 0x72067C6B
sceSharedFbClose: 0x33DA3428
sceSharedFbCreate: 0xD6C643B5
sceSharedFbDelete: 0xBE5A1A81
sceSharedFbEnd: 0xFC5A62B6
sceSharedFbGetInfo: 0x819954FB
sceSharedFbGetRenderingInfo: 0x61FEEDFA
sceSharedFbGetShellRenderPort: 0xAC49FC1D
sceSharedFbUpdateProcess: 0x3889ACF8
sceSharedFbUpdateProcessBegin: 0xF9754AD9
sceSharedFbUpdateProcessEnd: 0x565A9AB6
SceAppMgrUser:
kernel: false
nid: 0xA6605D6F
functions:
_sceAppMgrGetAppState: 0x5E86319A
sceAppMgrAcidDirSet: 0x31EFA73A
sceAppMgrAcquireSoundOutExclusive3: 0xD97AC34E
sceAppMgrAddContAddMount: 0x2B40BA12
sceAppMgrAddContMount: 0x553AA57B
sceAppMgrAppDataMount: 0x291AFBDC
sceAppMgrAppDataMountById: 0xE8BD32BD
sceAppMgrAppMount: 0x127F3BEB
sceAppMgrAppParamGetInt: 0x9E57853D
sceAppMgrAppParamGetString: 0x0C733AE2
sceAppMgrAppParamSetString: 0x5B07C10B
sceAppMgrAppUmount: 0x9619C150
sceAppMgrBgdlGetQueueStatus: 0x7BC8D5B6
sceAppMgrCaptureFrameBufDMACByAppId: 0x44F8347C
sceAppMgrCaptureFrameBufIFTUByAppId: 0x8C24D566
sceAppMgrCheckRifGD: 0x6E5CBCA2
sceAppMgrContentInstallPeriodStart: 0x251A224D
sceAppMgrContentInstallPeriodStop: 0xB3DFC681
sceAppMgrConvertVs0UserDrivePath: 0xADAA658E
sceAppMgrDeclareShellProcess2: 0xF261879F
sceAppMgrDestroyAppByName: 0x4570DC15
sceAppMgrDrmClose: 0x29293B46
sceAppMgrDrmOpen: 0xD43FDF20
sceAppMgrForceUmount: 0x54AD0F7F
sceAppMgrGameDataMount: 0x4993876C
sceAppMgrGetAppInfo: 0x72ABDC61
sceAppMgrGetAppMgrState: 0x98724E3F
sceAppMgrGetAppParam: 0x9B2422E0
sceAppMgrGetAppParam2: 0x3D816DFA
sceAppMgrGetBootParam: 0x73E5D57D
sceAppMgrGetBudgetInfo: 0x5F00F261
sceAppMgrGetCoredumpStateForShell: 0x27CEDB95
sceAppMgrGetCurrentBgmState: 0xACB3826A
sceAppMgrGetCurrentBgmState2: 0x62BEBD65
sceAppMgrGetDevInfo: 0x67705391
sceAppMgrGetFgAppInfo: 0x59F8C1C1
sceAppMgrGetIdByName: 0x79F9E63A
sceAppMgrGetMediaTypeFromDrive: 0xC014AA52
sceAppMgrGetMediaTypeFromDriveByPid: 0x8F6213CA
sceAppMgrGetMountProcessNum: 0x43558909
sceAppMgrGetNameById: 0xF4D6AE3A
sceAppMgrGetPfsDrive: 0x139D9D93
sceAppMgrGetPidListForShell: 0x970FA364
sceAppMgrGetRawPath: 0x0E8D27E8
sceAppMgrGetRawPathOfApp0ByAppIdForShell: 0x81D8D15D
sceAppMgrGetRawPathOfApp0ByPidForShell: 0x0B79E4BB
sceAppMgrGetRecommendedScreenOrientation: 0x8A1A6FFC
sceAppMgrGetRunningAppIdListForShell: 0x613A70E2
sceAppMgrGetSaveDataInfo: 0x6EF25378
sceAppMgrGetSaveDataInfoForSpecialExport: 0xC80E4B0F
sceAppMgrGetStatusByAppId: 0x47958DE5
sceAppMgrGetStatusById: 0x143EA292
sceAppMgrGetStatusByName: 0x656E0ABD
sceAppMgrGetSystemDataFilePlayReady: 0x1E1E97EE
sceAppMgrGetUserDirPath: 0x5253338C
sceAppMgrGetVs0UserDataDrive: 0xC0631748
sceAppMgrGetVs0UserModuleDrive: 0x906154DE
sceAppMgrInitSafeMemoryById: 0x3E53681A
sceAppMgrInstallDirMount: 0x34003AFC
sceAppMgrIsCameraActive: 0x8B123D24
sceAppMgrLaunchAppByName: 0xC9C77E21
sceAppMgrLaunchAppByName2: 0x42945D67
sceAppMgrLaunchAppByName2ForShell: 0x6412F2D4
sceAppMgrLaunchAppByName2ndStage: 0xADAC0E8D
sceAppMgrLaunchAppByNameForShell: 0xA1D43805
sceAppMgrLaunchAppByPath4: 0xCECFC7CB
sceAppMgrLaunchAppByUri: 0x003C634F
sceAppMgrLaunchAppByUri2: 0x0ED6AF54
sceAppMgrLaunchVideoStreamingApp: 0x4C02B889
sceAppMgrLoadExec: 0xE6774ABC
sceAppMgrLoopBackFormat: 0xCE8CE150
sceAppMgrLoopBackMount: 0x33CD76DD
sceAppMgrMmsMount: 0xF4730BA8
sceAppMgrOverwriteLaunchParamForShell: 0xEC1FDACE
sceAppMgrPeekLaunchParamForShell: 0x6AD619D3
sceAppMgrPhotoMount: 0xF71CC393
sceAppMgrPhotoUmount: 0x3F1A3AEC
sceAppMgrPspSaveDataGetParams: 0xCF58EEE4
sceAppMgrPspSaveDataRead: 0x33C47470
sceAppMgrPspSaveDataRootMount: 0xC94B7E24
sceAppMgrReceiveEvent: 0xCFAD5A3A
sceAppMgrReceiveEventNum: 0x47E5DD7D
sceAppMgrReceiveNotificationRequestForShell: 0xF0DFB1EF
sceAppMgrReceiveShellEvent: 0x15AC8C52
sceAppMgrReceiveSystemEvent: 0x10B5765F
sceAppMgrSaveDataAddMount: 0x8B224917
sceAppMgrSaveDataDataRemove: 0x4544FCC5
sceAppMgrSaveDataDataSave: 0x84DE76C7
sceAppMgrSaveDataGetQuota: 0x0717E2AE
sceAppMgrSaveDataMount: 0x31F3CC59
sceAppMgrSaveDataSlotCreate: 0x5181D7B3
sceAppMgrSaveDataSlotDelete: 0x6B0E7CF0
sceAppMgrSaveDataSlotFileClose: 0xFD7A4EEC
sceAppMgrSaveDataSlotFileGetParam: 0xC176317B
sceAppMgrSaveDataSlotFileOpen: 0x91BE107E
sceAppMgrSaveDataSlotGetParam: 0x17653D70
sceAppMgrSaveDataSlotGetStatus: 0x1F3A2F25
sceAppMgrSaveDataSlotInit: 0x4F8A92F1
sceAppMgrSaveDataSlotSetParam: 0xA8065FA4
sceAppMgrSaveDataSlotSetStatus: 0x3FD3073C
sceAppMgrSaveDataUmount: 0x8F513CF5
sceAppMgrSendNotificationRequest: 0x6E4997D7
sceAppMgrSendParam: 0xBB41230E
sceAppMgrSendSystemEvent: 0x2E4E1A1E
sceAppMgrSendSystemEvent2: 0xAEF9DF01
sceAppMgrSetBackRenderPortOwner: 0x7149016E
sceAppMgrSetBgmProxyApp: 0xC42F41E9
sceAppMgrSetNetworkDisconnectionWarningDialogState: 0xE352B29C
sceAppMgrSetPowerSaveMode: 0x2CF000BD
sceAppMgrSetRecommendedScreenOrientationForShell: 0x219043FF
sceAppMgrSetShellScreenOrientation: 0x5C7BE748
sceAppMgrSetSystemDataFile: 0x345F5CC0
sceAppMgrSetSystemDataFilePlayReady: 0x442ADA77
sceAppMgrSystemParamDateTimeGetConf: 0xE39FC7D5
sceAppMgrSystemParamGetInt: 0x5B75180C
sceAppMgrSystemParamGetString: 0x09899A08
sceAppMgrTrophyMount: 0x84FE08EE
sceAppMgrTrophyMountById: 0x316207F3
sceAppMgrUmount: 0x5E375921
sceAppMgrUmountByPid: 0x919FDAE7
sceAppMgrUpdateSaveDataParam: 0x1B0BD20D
sceAppMgrWorkDirMount: 0x9B3BB24D
sceAppMgrWorkDirMountById: 0x80E86E42
SceAppUtil:
nid: 0xCE3E25D4
libraries:
SceAppUtil:
kernel: false
nid: 0x48E01D74
functions:
sceAppUtilAddCookieWebBrowser: 0xC97D5D9E
sceAppUtilAddcontMount: 0x53B2C020
sceAppUtilAddcontUmount: 0x1B36AF8C
sceAppUtilAppEventParseGameCustomData: 0x0B04C067
sceAppUtilAppEventParseIncomingDialog: 0x22297D59
sceAppUtilAppEventParseLiveArea: 0x0F4EE55F
sceAppUtilAppEventParseNearGift: 0x77380601
sceAppUtilAppEventParseNpActivity: 0xF6B75651
sceAppUtilAppEventParseNpAppDataMessage: 0x6BED9B58
sceAppUtilAppEventParseNpBasicJoinablePresence: 0x28C7D4F6
sceAppUtilAppEventParseNpInviteMessage: 0xA2496814
sceAppUtilAppEventParseScreenShotNotification: 0x2AF42D6A
sceAppUtilAppEventParseSessionInvitation: 0xA58E6FCE
sceAppUtilAppEventParseTeleport: 0x665A8B7E
sceAppUtilAppEventParseTriggerUtil: 0x8DEE696B
sceAppUtilAppEventParseWebBrowser: 0x8ED716F5
sceAppUtilAppParamGetInt: 0xCD7FD67A
sceAppUtilBgdlGetStatus: 0x96F478D6
sceAppUtilDrmClose: 0x6A140498
sceAppUtilDrmOpen: 0x2DB7BE3B
sceAppUtilInit: 0xDAFFE671
sceAppUtilLaunchWebBrowser: 0xF19D0423
sceAppUtilLoadSafeMemory: 0x3424D772
sceAppUtilMusicMount: 0xB5EDCBFF
sceAppUtilMusicUmount: 0xA7FE1BF7
sceAppUtilPhotoMount: 0xEE85804D
sceAppUtilPhotoUmount: 0x9651B941
sceAppUtilPspSaveDataGetDirNameList: 0x9942071D
sceAppUtilPspSaveDataLoad: 0x7402C6EA
sceAppUtilReceiveAppEvent: 0xEE0DBED9
sceAppUtilResetCookieWebBrowser: 0x4FAAD133
sceAppUtilSaveDataDataRemove: 0xD1C6AB8E
sceAppUtilSaveDataDataSave: 0x607647BA
sceAppUtilSaveDataGetQuota: 0xC560E716
sceAppUtilSaveDataMount: 0xE61453B0
sceAppUtilSaveDataSlotCreate: 0x7E8FE96A
sceAppUtilSaveDataSlotDelete: 0x266A7646
sceAppUtilSaveDataSlotGetParam: 0x93F0D89F
sceAppUtilSaveDataSlotSearch: 0xE6057A85
sceAppUtilSaveDataSlotSetParam: 0x98630136
sceAppUtilSaveDataUmount: 0xEB720402
sceAppUtilSaveSafeMemory: 0x9D8AC677
sceAppUtilShutdown: 0xB220B00B
sceAppUtilStoreBrowse: 0x85FA94EE
sceAppUtilSystemParamGetInt: 0x5DFB9CA0
sceAppUtilSystemParamGetString: 0x6E6AA267
SceAppUtilCache:
kernel: false
nid: 0xE96B941B
functions:
sceAppUtilCacheMount: 0x0AA56143
SceAppUtilExt:
kernel: false
nid: 0x76D1A509
functions:
sceAppUtilExtVideoMount: 0xA0380CF7
sceAppUtilExtVideoUmount: 0x02E1E2C4
SceAtrac:
nid: 0x738129ED
libraries:
SceAtrac:
kernel: false
nid: 0x9AAEDAA0
functions:
sceAtracAddStreamData: 0x53656F1C
sceAtracCreateDecoderGroup: 0x01BFB98C
sceAtracDecode: 0x29C74EE3
sceAtracDeleteDecoderGroup: 0x6CA2F08A
sceAtracGetContentInfo: 0x68DFC199
sceAtracGetDecoderGroupInfo: 0xBF34605D
sceAtracGetDecoderStatus: 0x90B512AC
sceAtracGetInternalError: 0x67981334
sceAtracGetLoopInfo: 0xDC768033
sceAtracGetNextOutputPosition: 0xACA5F9CC
sceAtracGetOutputSamples: 0x37B3F335
sceAtracGetOutputableSamples: 0x5B36CDB5
sceAtracGetRemainSamples: 0xDC27E7C2
sceAtracGetStreamInfo: 0xD9409E57
sceAtracGetSubBufferInfo: 0xE7D9DC4F
sceAtracGetVacantSize: 0x9BDB14F7
sceAtracIsSubBufferNeeded: 0x722F5004
sceAtracQueryDecoderGroupMemSize: 0x1A34B331
sceAtracReleaseHandle: 0x008EF251
sceAtracResetNextOutputPosition: 0xD81D7280
sceAtracSetDataAndAcquireHandle: 0xD1997678
sceAtracSetLoopNum: 0x5C22E927
sceAtracSetOutputSamples: 0x075B0C63
sceAtracSetSubBuffer: 0x272B4CBA
SceAudio:
nid: 0x0DA7714A
libraries:
SceAudio:
kernel: false
nid: 0x438BB957
functions:
sceAudioOutGetAdopt: 0x12FB1767
sceAudioOutGetConfig: 0x9C8EDAEA
sceAudioOutGetRestSample: 0x9A5370C4
sceAudioOutOpenPort: 0x5BC341E4
sceAudioOutOutput: 0x02DB3F5F
sceAudioOutReleasePort: 0x69E2E6B5
sceAudioOutSetAlcMode: 0x940CE469
sceAudioOutSetConfig: 0xB8BA0D07
sceAudioOutSetVolume: 0x64167F11
SceAudioIn:
nid: 0x3DFB6F18
libraries:
SceAudioIn:
kernel: false
nid: 0xF8DC61A3
functions:
sceAudioInGetAdopt: 0x566AC433
sceAudioInGetStatus: 0x2F940377
sceAudioInInput: 0x638ADD2D
sceAudioInOpenPort: 0x39B50DC1
sceAudioInReleasePort: 0x3A61B8C4
SceAudiodec:
nid: 0xC
libraries:
SceAudiodecUser:
kernel: false
nid: 0x2AA62046
functions:
sceAudiodecClearContext: 0xF72F9B64
sceAudiodecCreateDecoder: 0x4DFD3AAA
sceAudiodecCreateDecoderExternal: 0x56085DFB
sceAudiodecCreateDecoderResident: 0x98B44E1B
sceAudiodecDecode: 0xCCDABA04
sceAudiodecDecodeNFrames: 0x8018AA9B
sceAudiodecDecodeNStreams: 0x68F4A9CB
sceAudiodecDeleteDecoder: 0xE7A24E16
sceAudiodecDeleteDecoderExternal: 0xE4EA05BB
sceAudiodecDeleteDecoderResident: 0x164DAEDA
sceAudiodecGetContextSize: 0xDB712ABC
sceAudiodecGetInternalError: 0x883B0CF5
sceAudiodecInitLibrary: 0x445C2CEF
sceAudiodecPartlyDecode: 0x2742E642
sceAudiodecTermLibrary: 0x45719B9D
SceAudioenc:
nid: 0xE
libraries:
SceAudioencUser:
kernel: false
nid: 0xA938B1A6
functions:
sceAudioencClearContext: 0x9386F42D
sceAudioencCreateEncoder: 0x64C04AE8
sceAudioencCreateEncoderExternal: 0x9B1E8DE2
sceAudioencCreateEncoderResident: 0xDD13004C
sceAudioencDeleteEncoder: 0xC6BA5EE6
sceAudioencDeleteEncoderExternal: 0x552E8882
sceAudioencDeleteEncoderResident: 0x80765849
sceAudioencEncode: 0xD85DB29C
sceAudioencEncodeNFrames: 0xAFCEDA50
sceAudioencGetContextSize: 0xEAD4AF38
sceAudioencGetInternalError: 0x452246D0
sceAudioencGetOptInfo: 0xD01C63A3
sceAudioencInitLibrary: 0x76EE4DC6
sceAudioencTermLibrary: 0xAB32D022
SceAVConfig:
nid: 0x222DDEB1
libraries:
SceAVConfig:
kernel: false
nid: 0x79E0F03F
functions:
sceAVConfigChangeReg: 0xD0595CE4
sceAVConfigClearAutoSuspend2: 0xBD9C52B1
sceAVConfigDisplayOn: 0x28AAF909
sceAVConfigGetAcStatus: 0x8B6E1E99
sceAVConfigGetBtVol: 0x174C1E53
sceAVConfigGetConnectedAudioDevice: 0x32A0CECF
sceAVConfigGetDisplayMaxBrightness: 0x6ABA67F4
sceAVConfigGetMasterVol: 0xC609B4D9
sceAVConfigGetShutterVol: 0xAD76BD2D
sceAVConfigGetSystemVol: 0xFC227CC8
sceAVConfigGetVolCtrlEnable: 0x830B950B
sceAVConfigHdmiCecCmdOneTouchPlay: 0x0235CA9E
sceAVConfigHdmiCecDisable: 0x23DF089D
sceAVConfigHdmiCecEnable: 0xFA836E80
sceAVConfigHdmiClearCecInfo: 0x2BC5A4E8
sceAVConfigHdmiGetCecInfo: 0x4D0AB59F
sceAVConfigHdmiGetMonitorInfo: 0x1DD86805
sceAVConfigHdmiGetOutScalingRatio: 0x5910A9CB
sceAVConfigHdmiSetOutScalingRatio: 0x0DE7CEAB
sceAVConfigHdmiSetResolution: 0x4D37F036
sceAVConfigHdmiSetRgbRangeMode: 0x67E1A494
sceAVConfigMuteOn: 0xA16F1898
sceAVConfigRegisterCallback: 0xFB5E3E74
sceAVConfigSendVolKey: 0x439A3051
sceAVConfigSetAutoDisplayDimming: 0x07AAAA16
sceAVConfigSetAutoSuspend2: 0x764CA1B3
sceAVConfigSetAutoSuspend: 0x5023700F
sceAVConfigSetDisplayBrightness: 0xE0C1B743
sceAVConfigSetDisplayColorSpaceMode: 0x3414347F
sceAVConfigSetMasterVol: 0xD67544D0
sceAVConfigSetSystemVol: 0xDC2EA264
sceAVConfigUnRegisterCallback: 0xDD78C3BA
sceAVConfigWriteMasterVol: 0x65F03D6A
sceAVConfigWriteRegSystemVol: 0xC411D984
SceAvPlayer:
nid: 0xD9653DF7
libraries:
SceAvPlayer:
kernel: false
nid: 0xFA10CE65
functions:
sceAvPlayerAddSource: 0xBC83C8FD
sceAvPlayerClose: 0x7AA29B2D
sceAvPlayerCurrentTime: 0x804DCECD
sceAvPlayerDisableStream: 0x15365ECE
sceAvPlayerEnableStream: 0x70127AB8
sceAvPlayerGetAudioData: 0xA10FC252
sceAvPlayerGetStreamInfo: 0x34E2D370
sceAvPlayerGetVideoData: 0x8BC3221B
sceAvPlayerGetVideoDataEx: 0x22986CD1
sceAvPlayerInit: 0x4C847ADF
sceAvPlayerIsActive: 0x2E4FF35F
sceAvPlayerJumpToTime: 0x5B7DB4BC
sceAvPlayerPause: 0x34FD744B
sceAvPlayerPostInit: 0x3F51D38A
sceAvPlayerResume: 0x11FF162D
sceAvPlayerSetLooping: 0xEC103ADF
sceAvPlayerSetTrickSpeed: 0x86E0CF55
sceAvPlayerStart: 0x2ACB4217
sceAvPlayerStop: 0xBD35E360
sceAvPlayerStreamCount: 0x2CD86FD6
SceBt:
nid: 0xF56868B7
libraries:
SceBt:
kernel: false
nid: 0x9785DB68
functions:
sceBtAvrcpReadVolume: 0x01000531
sceBtAvrcpSendButton: 0x9F8724E7
sceBtAvrcpSendVolume: 0xC5C7003B
sceBtAvrcpSetPlayStatus: 0x0DADD51A
sceBtAvrcpSetTitle: 0xDD3947B9
sceBtDeleteRegisteredInfo: 0xACC959A0
sceBtFreqAudio: 0x376DE456
sceBtGetConfiguration: 0x9D619F35
sceBtGetConnectingInfo: 0xD9B65CAA
sceBtGetDeviceId: 0xBE01ACE7
sceBtGetDeviceName: 0x80977A26
sceBtGetInfoForTest: 0xF7756C1F
sceBtGetLastError: 0x4E159A08
sceBtGetRegisteredInfo: 0xB6C9A094
sceBtGetStatusForTest: 0x48A27F7E
sceBtHfpGetCurrentPhoneNumber: 0xB0CD46A4
sceBtHfpRequest: 0xD924787E
sceBtHidGetReportDescriptor: 0x95614634
sceBtHidTransfer: 0x88B34B5B
sceBtHidVuGetReportFeature: 0x3F353762
sceBtHidVuGetReportInput: 0x3CE546C2
sceBtHidVuReadEvent: 0x847B87A3
sceBtHidVuRegisterCallback: 0x12CD34CC
sceBtHidVuSetInterruptOutput: 0xFCDA0ED1
sceBtHidVuSetReportFeature: 0x26F68B2F
sceBtHidVuSetReportOutput: 0x6FBD1E7E
sceBtHidVuUnregisterCallback: 0xE15FA065
sceBtPairingOOB: 0xCBC4FF55
sceBtPushBip: 0xE4EA1E59
sceBtPushOpp: 0xED78EEC3
sceBtReadEvent: 0x26BAC23D
sceBtRecvAudio: 0x469DD0DA
sceBtRecvBip: 0xCEF8F261
sceBtRecvOpp: 0xA865A081
sceBtRecvSpp: 0x112A61AC
sceBtRegisterCallback: 0xA23FB154
sceBtReplyPinCode: 0xA4FD7F9A
sceBtReplyUserConfirmation: 0xCAABAAC8
sceBtSendAudio: 0xE30602A4
sceBtSendL2capEchoRequestForTest: 0xCA304973
sceBtSendSpp: 0x1FBA44DE
sceBtSetConfiguration: 0x9B1F2964
sceBtSetContentProtection: 0x5F9ABEAE
sceBtSetInquiryResultForTest: 0x2BADF3A9
sceBtSetInquiryScan: 0x78855913
sceBtSetL2capEchoResponseBufferForTest: 0xB624CFFC
sceBtSetStatusForTest: 0x32DA3573
sceBtStartAudio: 0x3679D50F
sceBtStartConnect: 0xFF3C57EB
sceBtStartDisconnect: 0x18286FFF
sceBtStartInquiry: 0xA5CDDB17
sceBtStopAudio: 0xE423D1CC
sceBtStopInquiry: 0xF1C4D466
sceBtUnregisterCallback: 0x605EF71F
SceBtForDriver:
kernel: true
nid: 0xD48CA62D
functions:
ksceBtAvrcpReadVolume: 0xC9C70056
ksceBtAvrcpSendButton: 0xEC5F8519
ksceBtAvrcpSendVolume: 0x7689DA3D
ksceBtAvrcpSetPlayStatus: 0xC5E7349C
ksceBtAvrcpSetTitle: 0x91EF55AD
ksceBtDeleteRegisteredInfo: 0xE6F659E0
ksceBtFreqAudio: 0xDA20DCC8
ksceBtGetConfiguration: 0x94C66A3B
ksceBtGetConnectingInfo: 0xE9936446
ksceBtGetDeviceName: 0x633F784C
ksceBtGetInfoForTest: 0x2C9DD7BB
ksceBtGetLastError: 0xAD31A43E
ksceBtGetRegisteredInfo: 0xF86D25E2
ksceBtGetStatusForTest: 0x83781649
ksceBtGetVidPid: 0x780A5557
ksceBtHfpGetCurrentPhoneNumber: 0x7BC66D6D
ksceBtHfpRequest: 0x6E49D11D
ksceBtHidGetReportDescriptor: 0x06CB4ABA
ksceBtHidTransfer: 0xF9DCEC77
ksceBtPushBip: 0x7FF77792
ksceBtPushOpp: 0x21C788E2
ksceBtReadEvent: 0x5ABB9A9D
ksceBtRecvAudio: 0xCD7C0492
ksceBtRecvBip: 0xE8E95977
ksceBtRecvOpp: 0x8008AA2C
ksceBtRecvSpp: 0xC09D9E7C
ksceBtRegisterCallback: 0x120AC1F7
ksceBtReplyPinCode: 0xBB69A62A
ksceBtReplyUserConfirmation: 0xB5FA291C
ksceBtSendAudio: 0x47F19727
ksceBtSendL2capEchoRequestForTest: 0xE3A66814
ksceBtSendSpp: 0x92241DFB
ksceBtSetConfiguration: 0xEBDCC992
ksceBtSetContentProtection: 0x08632086
ksceBtSetInquiryResultForTest: 0x1C26F878
ksceBtSetInquiryScan: 0x4F5A852E
ksceBtSetL2capEchoResponseBufferForTest: 0x0B7D8E0E
ksceBtSetStatusForTest: 0x9C195411
ksceBtStartAudio: 0x8D47CABD
ksceBtStartConnect: 0x6059113A
ksceBtStartDisconnect: 0x50710281
ksceBtStartInquiry: 0x9DC7E7E5
ksceBtStopAudio: 0xCAE5A9F3
ksceBtStopInquiry: 0x6A1D9598
ksceBtUnregisterCallback: 0xBF72E1BE
ksceBtHidVuGetReportFeature: 0xCA9B885C
ksceBtHidVuGetReportInput: 0x3BBC1EE1
ksceBtHidVuReadEvent: 0x3333A878
ksceBtHidVuRegisterCallback: 0xAB57F8C1
ksceBtHidVuSetInterruptOutput: 0xD2449052
ksceBtHidVuSetReportFeature: 0x014A1D28
ksceBtHidVuSetReportOutput: 0xAB2032A3
ksceBtHidVuUnregisterCallback: 0x1AB31C7D
SceCamera:
nid: 0xEC26CAF9
libraries:
SceCamera:
kernel: false
nid: 0xDA91B3ED
functions:
sceCameraClose: 0xCD6E1CFC
sceCameraGetAntiFlicker: 0x9FDACB99
sceCameraGetAutoControlHold: 0x06A21BBB
sceCameraGetBacklight: 0x8DD1292B
sceCameraGetBrightness: 0x85D5951D
sceCameraGetContrast: 0x8FBE84BE
sceCameraGetDeviceLocation: 0x274EF751
sceCameraGetEV: 0x8B5E6147
sceCameraGetEffect: 0x7E8EF3B2
sceCameraGetExposureCeiling: 0x5FA5B1BB
sceCameraGetGain: 0x2C36D6F3
sceCameraGetISO: 0x4EBD5C68
sceCameraGetNightmode: 0x12B6FF26
sceCameraGetReverse: 0x44F6043F
sceCameraGetSaturation: 0x624F7653
sceCameraGetSharpness: 0xAA72C3DC
sceCameraGetWhiteBalance: 0xDBFFA1DA
sceCameraGetZoom: 0x06D3816C
sceCameraIsActive: 0x103A75B8
sceCameraOpen: 0xA462F801
sceCameraRead: 0x79B5C2DE
sceCameraSetAntiFlicker: 0xE312958A
sceCameraSetAutoControlHold: 0x3A0DABBD
sceCameraSetBacklight: 0xAE071044
sceCameraSetBrightness: 0x98D71588
sceCameraSetContrast: 0x06FB2900
sceCameraSetEV: 0x62AFF0B8
sceCameraSetEffect: 0xE9D2CFB1
sceCameraSetExposureCeiling: 0x04F34BEE
sceCameraSetGain: 0xE65CFE86
sceCameraSetISO: 0x3CF630A1
sceCameraSetNightmode: 0x3F26233E
sceCameraSetReverse: 0x1175F477
sceCameraSetSaturation: 0xF9F7CA3D
sceCameraSetSharpness: 0xD1A5BB0B
sceCameraSetWhiteBalance: 0x4D4514AC
sceCameraSetZoom: 0xF7464216
sceCameraStart: 0xA8FEAE35
sceCameraStop: 0x1DD9C9CE
SceClipboard:
nid: 0xB4042D2E
libraries:
SceClipboard:
kernel: false
nid: 0x6B346AA8
functions:
sceClipboardGetText: 0x5BB10CC2
sceClipboardSetText: 0x43A94D3E
SceCodecEngine:
nid: 0x18
libraries:
SceCodecEngineUser:
kernel: false
nid: 0x469AB062
functions:
sceCodecEngineAllocMemoryFromUnmapMemBlock: 0x1A3A53E5
sceCodecEngineCloseUnmapMemBlock: 0x95EA3B3E
sceCodecEngineFreeMemoryFromUnmapMemBlock: 0x6A31831D
sceCodecEngineOpenUnmapMemBlock: 0xF0B4C892
SceCodecEnginePerf:
nid: 0x1A
libraries:
SceCodecEnginePerf:
kernel: false
nid: 0x9BF4FFAD
functions:
sceCodecEnginePmonGetProcessorLoad: 0x2C9DA711
sceCodecEnginePmonReset: 0x5D75DF62
sceCodecEnginePmonStart: 0x0635EB77
sceCodecEnginePmonStop: 0xD2EFAEA1
SceCommonDialog:
nid: 0x124B6C74
libraries:
SceCommonDialog:
kernel: false
nid: 0xE537816C
functions:
sceCameraImportDialogAbort: 0x8852B9A4
sceCameraImportDialogGetResult: 0x7B339AA2
sceCameraImportDialogGetStatus: 0x86AE7314
sceCameraImportDialogInit: 0xE525BDB0
sceCameraImportDialogTerm: 0x8ED0C83C
sceCommonDialogGetWorkerThreadId: 0xD4C37375
sceCommonDialogIsRunning: 0x043A353E
sceCommonDialogSetConfigParam: 0xBECD35C8
sceCommonDialogUpdate: 0x90530F2F
sceCompanionUtilDialogAbort: 0x686C27EB
sceCompanionUtilDialogGetResult: 0x4A101FA7
sceCompanionUtilDialogGetStatus: 0xB981474F
sceCompanionUtilDialogInit: 0x0F68448E
sceCompanionUtilDialogTerm: 0xC3E6B1EC
sceCrossControllerDialogAbort: 0xDDC52A46
sceCrossControllerDialogGetResult: 0x8E35EA7B
sceCrossControllerDialogGetStatus: 0x44B9E931
sceCrossControllerDialogInit: 0x2339FBD5
sceCrossControllerDialogTerm: 0x6E572EBF
sceImeDialogAbort: 0x594A220E
sceImeDialogGetResult: 0x2EB3D046
sceImeDialogGetStatus: 0xCF0431FD
sceImeDialogInit: 0x1E7043BF
sceImeDialogTerm: 0x838A3AF4
sceMsgDialogAbort: 0x0CC66115
sceMsgDialogClose: 0xC296D396
sceMsgDialogGetResult: 0xBB3BFC89
sceMsgDialogGetStatus: 0x4107019E
sceMsgDialogInit: 0x755FF270
sceMsgDialogProgressBarInc: 0x7BE0E08B
sceMsgDialogProgressBarSetMsg: 0x0150A451
sceMsgDialogProgressBarSetValue: 0x9CDA5E0D
sceMsgDialogTerm: 0x81ACF695
sceNetCheckDialogAbort: 0x2D8EDF09
sceNetCheckDialogGetPS3ConnectInfo: 0x39467634
sceNetCheckDialogGetResult: 0xB05FCE9E
sceNetCheckDialogGetStatus: 0x8027292A
sceNetCheckDialogInit: 0xA38A4A0D
sceNetCheckDialogTerm: 0x8BE51C15
sceNpFriendListDialogAbort: 0x58FA2062
sceNpFriendListDialogGetResult: 0xD29FE607
sceNpFriendListDialogGetStatus: 0x1FD5D373
sceNpFriendListDialogInit: 0x93FCFEC6
sceNpFriendListDialogTerm: 0x4A880C6A
sceNpFriendList2DialogAbort: 0xFC67B971
sceNpFriendList2DialogGetResult: 0xC0CF1ED4
sceNpFriendList2DialogGetStatus: 0xAC735AF9
sceNpFriendList2DialogInit: 0xBBCDF66D
sceNpFriendList2DialogTerm: 0x05B18EA3
sceNpMessageDialogAbort: 0x47AB6D04
sceNpMessageDialogGetResult: 0x7EC95C61
sceNpMessageDialogGetStatus: 0x2A0D060F
sceNpMessageDialogInit: 0x4535A358
sceNpMessageDialogTerm: 0x7AB50F63
sceNpProfileDialogAbort: 0x2B02BE3F
sceNpProfileDialogGetResult: 0x749CAFFC
sceNpProfileDialogGetStatus: 0xFDFE6042
sceNpProfileDialogInit: 0x5E0AFDF8
sceNpProfileDialogTerm: 0x04B63D6F
sceNpSnsFacebookDialogAbort: 0x7E22AD33
sceNpSnsFacebookDialogGetResult: 0x36C5E9A5
sceNpSnsFacebookDialogGetResultLongToken: 0xA8682304
sceNpSnsFacebookDialogGetStatus: 0x147650E8
sceNpSnsFacebookDialogInit: 0x6821F09B
sceNpSnsFacebookDialogTerm: 0xDE1F3928
sceNpTrophySetupDialogAbort: 0xDC346979
sceNpTrophySetupDialogGetResult: 0xE37069D5
sceNpTrophySetupDialogGetStatus: 0xC3A59547
sceNpTrophySetupDialogInit: 0x9E2C02C9
sceNpTrophySetupDialogTerm: 0xA81082DD
scePhotoImportDialogAbort: 0x4B125581
scePhotoImportDialogGetResult: 0xD855414C
scePhotoImportDialogGetStatus: 0x032206D8
scePhotoImportDialogInit: 0x73EE7C9C
scePhotoImportDialogTerm: 0x7FE5BD77
scePhotoReviewDialogAbort: 0x74FF2A8B
scePhotoReviewDialogGetResult: 0xFFA35858
scePhotoReviewDialogGetStatus: 0xF4F600CA
scePhotoReviewDialogInit: 0xCD990375
scePhotoReviewDialogTerm: 0xC700B2DF
scePspSaveDataDialogContinue: 0x4A40C37F
scePspSaveDataDialogGetResult: 0x61C45E12
scePspSaveDataDialogInit: 0x4458B053
scePspSaveDataDialogTerm: 0xB8E37F7C
sceRemoteOSKDialogAbort: 0x2314D273
sceRemoteOSKDialogGetResult: 0xF22D7884
sceRemoteOSKDialogGetStatus: 0x356F222A
sceRemoteOSKDialogInit: 0x24EB7636
sceRemoteOSKDialogTerm: 0xA15121F7
sceSaveDataDialogAbort: 0x013E7F74
sceSaveDataDialogContinue: 0x19192C8B
sceSaveDataDialogFinish: 0x6C49924B
sceSaveDataDialogGetResult: 0xB2FF576E
sceSaveDataDialogGetStatus: 0x6E258046
sceSaveDataDialogGetSubStatus: 0xBA0542CA
sceSaveDataDialogInit: 0xBF5248FA
sceSaveDataDialogProgressBarInc: 0xBDE00A83
sceSaveDataDialogProgressBarSetValue: 0x5C322D1E
sceSaveDataDialogSubClose: 0x415D6068
sceSaveDataDialogTerm: 0x2192A10A
sceStoreCheckoutDialogAbort: 0xD699D9B4
sceStoreCheckoutDialogGetResult: 0x07ED1E26
sceStoreCheckoutDialogGetStatus: 0x7004BB2E
sceStoreCheckoutDialogInit: 0x52ECD8A5
sceStoreCheckoutDialogTerm: 0xB787F4B0
sceTwDialogAbort: 0x9BEBB77B
sceTwDialogGetResult: 0x87F3F43E
sceTwDialogGetStatus: 0xD5A6B473
sceTwDialogInit: 0x93E51B04
sceTwDialogTerm: 0x2702905B
sceTwLoginDialogAbort: 0xB5ED4A32
sceTwLoginDialogGetResult: 0x5F7F4149
sceTwLoginDialogGetStatus: 0x8ACC1F0B
sceTwLoginDialogTerm: 0xD6387E24
sceVideoImportDialogAbort: 0xECA699FD
sceVideoImportDialogGetResult: 0x7759D5AD
sceVideoImportDialogGetStatus: 0xBE7C198A
sceVideoImportDialogInit: 0xF0CC86F9
sceVideoImportDialogTerm: 0x52E1CF8F
SceNpWebApiCommonDialog:
kernel: false
nid: 0x883CFD5C
functions:
sceGameCustomDataDialogInit: 0x23C9840E
sceGameCustomDataDialogGetStatus: 0x114F831A
sceGameCustomDataDialogAbort: 0xF5A1FA42
sceGameCustomDataDialogGetResult: 0xC2B39806
sceGameCustomDataDialogTerm: 0xE183B9F3
sceInvitationDialogInit: 0x8723A5F2
sceInvitationDialogGetStatus: 0x5B735F60
sceInvitationDialogAbort: 0x853E5D3B
sceInvitationDialogGetResult: 0xEA14FB1E
sceInvitationDialogTerm: 0x4136382C
SceCoredump:
nid: 0x3E0F5EBD
libraries:
SceCoredump:
kernel: false
nid: 0xA143A77F
functions:
sceCoredumpRegisterCoredumpHandler: 0x031DC61E
sceCoredumpUnregisterCoredumpHandler: 0x6037A2C3
SceCoredumpNounlink:
kernel: false
nid: 0x2646E9D8
functions:
sceCoredumpWriteUserData: 0xDF335DCF
SceCtrl:
nid: 0x3BAF0220
libraries:
SceCtrl:
kernel: false
nid: 0xD197E3C7
functions:
sceCtrlClearRapidFire: 0xD8294C9C
sceCtrlGetSamplingMode: 0xEC752AAF
sceCtrlGetSamplingModeExt: 0xBD27F830
sceCtrlGetControllerPortInfo: 0x324F1B66
sceCtrlPeekBufferNegative: 0x104ED1A7
sceCtrlPeekBufferNegative2: 0x81A89660
sceCtrlPeekBufferPositive: 0xA9C3CED6
sceCtrlPeekBufferPositive2: 0x15F81E8C
sceCtrlPeekBufferPositiveExt: 0xA59454D3
sceCtrlPeekBufferPositiveExt2: 0x860BF292
sceCtrlReadBufferNegative: 0x15F96FB0
sceCtrlReadBufferNegative2: 0x27A0C5FB
sceCtrlReadBufferPositive: 0x67E7AB83
sceCtrlReadBufferPositive2: 0xC4226A3E
sceCtrlReadBufferPositiveExt: 0xE2D99296
sceCtrlReadBufferPositiveExt2: 0xA7178860
sceCtrlSetActuator: 0xDBCAA0C9
sceCtrlSetButtonIntercept: 0x433D71F4
sceCtrlGetButtonIntercept: 0x6FAFAD05
sceCtrlSetLightBar: 0xDA11D433
sceCtrlResetLightBar: 0x7E110E90
sceCtrlSetRapidFire: 0xE9CB69C8
sceCtrlSetSamplingMode: 0xA497B150
sceCtrlSetSamplingModeExt: 0xB1DC4378
sceCtrlDisconnect: 0x16D26DC7
sceCtrlSingleControllerMode: 0x031BE396
sceCtrlGetBatteryInfo: 0x8F9B1CE5
sceCtrlSetButtonRemappingInfo: 0x8A187F98
sceCtrlRegisterBdRMCCallback: 0x0A06B7E4
sceCtrlUnregisterBdRMCCallback: 0x103EB2B0
sceCtrlIsMultiControllerSupported: 0x1FFFD965
sceCtrlGetAnalogStickCheckMode: 0x35BCD3BB