-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnids_resolver.cpp
5184 lines (5176 loc) · 246 KB
/
nids_resolver.cpp
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
#include "nids_resolver.h"
#include <map>
#include <vector>
static std::map< std::string, std::vector< std::pair<uint32_t, std::string> > > nids;
void init_nids()
{
static bool inited = false;
if (inited) return;
inited = true;
// TODO fill nids table
nids["SceAppMgrUser"] = {
{ 0x10b5765f, "sceAppMgrReceiveSystemEvent" },
{ 0x5e86319a, "_sceAppMgrGetAppState" },
{ 0xe352b29c, "sceAppMgrSetNetworkDisconnectionWarningDialogState" },
{ 0xe6774abc, "sceAppMgrLoadExec" },
};
nids["SceAppMgr"] = {
{ 0xad9022a1, "sceAppMgrSetInfobarState" },
{ 0xafceab96, "sceAppMgrAcquireBgmPort" },
{ 0xf3717e37, "sceAppMgrReleaseBgmPort" },
};
nids["SceAppUtil"] = {
{ 0x0f4ee55f, "sceAppUtilAppEventParseLiveArea" },
{ 0x1b36af8c, "sceAppUtilAddcontUmount" },
{ 0x22297d59, "sceAppUtilAppEventParseIncomingDialog" },
{ 0x266a7646, "sceAppUtilSaveDataSlotDelete" },
{ 0x28c7d4f6, "sceAppUtilAppEventParseNpBasicJoinablePresence" },
{ 0x2af42d6a, "sceAppUtilAppEventParseScreenShotNotification" },
{ 0x2db7be3b, "sceAppUtilDrmOpen" },
{ 0x3424d772, "sceAppUtilLoadSafeMemory" },
{ 0x4faad133, "sceAppUtilResetCookieWebBrowser" },
{ 0x53b2c020, "sceAppUtilAddcontMount" },
{ 0x5dfb9ca0, "sceAppUtilSystemParamGetInt" },
{ 0x607647ba, "sceAppUtilSaveDataDataSave" },
{ 0x6a140498, "sceAppUtilDrmClose" },
{ 0x6bed9b58, "sceAppUtilAppEventParseNpAppDataMessage" },
{ 0x6e6aa267, "sceAppUtilSystemParamGetString" },
{ 0x7402c6ea, "sceAppUtilPspSaveDataLoad" },
{ 0x77380601, "sceAppUtilAppEventParseNearGift" },
{ 0x7e8fe96a, "sceAppUtilSaveDataSlotCreate" },
{ 0x85fa94ee, "sceAppUtilStoreBrowse" },
{ 0x8dee696b, "sceAppUtilAppEventParseTriggerUtil" },
{ 0x8ed716f5, "sceAppUtilAppEventParseWebBrowser" },
{ 0x93f0d89f, "sceAppUtilSaveDataSlotGetParam" },
{ 0x9651b941, "sceAppUtilPhotoUmount" },
{ 0x96f478d6, "sceAppUtilBgdlGetStatus" },
{ 0x98630136, "sceAppUtilSaveDataSlotSetParam" },
{ 0x9942071d, "sceAppUtilPspSaveDataGetDirNameList" },
{ 0x9d8ac677, "sceAppUtilSaveSafeMemory" },
{ 0xa2496814, "sceAppUtilAppEventParseNpInviteMessage" },
{ 0xa7fe1bf7, "sceAppUtilMusicUmount" },
{ 0xb220b00b, "sceAppUtilShutdown" },
{ 0xb5edcbff, "sceAppUtilMusicMount" },
{ 0xc560e716, "sceAppUtilSaveDataGetQuota" },
{ 0xc97d5d9e, "sceAppUtilAddCookieWebBrowser" },
{ 0xcd7fd67a, "sceAppUtilAppParamGetInt" },
{ 0xd1c6ab8e, "sceAppUtilSaveDataDataRemove" },
{ 0xdaffe671, "sceAppUtilInit" },
{ 0xe6057a85, "sceAppUtilSaveDataSlotSearch" },
{ 0xe61453b0, "sceAppUtilSaveDataMount" },
{ 0xeb720402, "sceAppUtilSaveDataUmount" },
{ 0xee0dbed9, "sceAppUtilReceiveAppEvent" },
{ 0xee85804d, "sceAppUtilPhotoMount" },
{ 0xf19d0423, "sceAppUtilLaunchWebBrowser" },
};
nids["SceAtrac"] = {
{ 0x008ef251, "sceAtracReleaseHandle" },
{ 0x01bfb98c, "sceAtracCreateDecoderGroup" },
{ 0x075b0c63, "sceAtracSetOutputSamples" },
{ 0x1a34b331, "sceAtracQueryDecoderGroupMemSize" },
{ 0x272b4cba, "sceAtracSetSubBuffer" },
{ 0x29c74ee3, "sceAtracDecode" },
{ 0x37b3f335, "sceAtracGetOutputSamples" },
{ 0x53656f1c, "sceAtracAddStreamData" },
{ 0x5b36cdb5, "sceAtracGetOutputableSamples" },
{ 0x5c22e927, "sceAtracSetLoopNum" },
{ 0x67981334, "sceAtracGetInternalError" },
{ 0x68dfc199, "sceAtracGetContentInfo" },
{ 0x6ca2f08a, "sceAtracDeleteDecoderGroup" },
{ 0x722f5004, "sceAtracIsSubBufferNeeded" },
{ 0x90b512ac, "sceAtracGetDecoderStatus" },
{ 0x9bdb14f7, "sceAtracGetVacantSize" },
{ 0xaca5f9cc, "sceAtracGetNextOutputPosition" },
{ 0xbf34605d, "sceAtracGetDecoderGroupInfo" },
{ 0xd1997678, "sceAtracSetDataAndAcquireHandle" },
{ 0xd81d7280, "sceAtracResetNextOutputPosition" },
{ 0xd9409e57, "sceAtracGetStreamInfo" },
{ 0xdc27e7c2, "sceAtracGetRemainSamples" },
{ 0xdc768033, "sceAtracGetLoopInfo" },
{ 0xe7d9dc4f, "sceAtracGetSubBufferInfo" },
};
nids["SceAudiodecUser"] = {
{ 0x445c2cef, "sceAudiodecInitLibrary" },
{ 0x45719b9d, "sceAudiodecTermLibrary" },
{ 0x4dfd3aaa, "sceAudiodecCreateDecoder" },
{ 0x56085dfb, "sceAudiodecCreateDecoderExternal" },
{ 0x68f4a9cb, "sceAudiodecDecodeNStreams" },
{ 0x8018aa9b, "sceAudiodecDecodeNFrames" },
{ 0x883b0cf5, "sceAudiodecGetInternalError" },
{ 0xccdaba04, "sceAudiodecDecode" },
{ 0xdb712abc, "sceAudiodecGetContextSize" },
{ 0xe4ea05bb, "sceAudiodecDeleteDecoderExternal" },
{ 0xe7a24e16, "sceAudiodecDeleteDecoder" },
{ 0xf72f9b64, "sceAudiodecClearContext" },
};
nids["SceAudioencUser"] = {
{ 0x452246d0, "sceAudioencGetInternalError" },
{ 0x552e8882, "sceAudioencDeleteEncoderExternal" },
{ 0x64c04ae8, "sceAudioencCreateEncoder" },
{ 0x76ee4dc6, "sceAudioencInitLibrary" },
{ 0x9386f42d, "sceAudioencClearContext" },
{ 0x9b1e8de2, "sceAudioencCreateEncoderExternal" },
{ 0xab32d022, "sceAudioencTermLibrary" },
{ 0xc6ba5ee6, "sceAudioencDeleteEncoder" },
{ 0xd01c63a3, "sceAudioencGetOptInfo" },
{ 0xd85db29c, "sceAudioencEncode" },
{ 0xead4af38, "sceAudioencGetContextSize" },
};
nids["SceAudioIn"] = {
{ 0x2f940377, "sceAudioInGetStatus" },
{ 0x39b50dc1, "sceAudioInOpenPort" },
{ 0x3a61b8c4, "sceAudioInReleasePort" },
{ 0x566ac433, "sceAudioInGetAdopt" },
{ 0x638add2d, "sceAudioInInput" },
};
nids["SceAudio"] = {
{ 0x02db3f5f, "sceAudioOutOutput" },
{ 0x12fb1767, "sceAudioOutGetAdopt" },
{ 0x5bc341e4, "sceAudioOutOpenPort" },
{ 0x64167f11, "sceAudioOutSetVolume" },
{ 0x69e2e6b5, "sceAudioOutReleasePort" },
{ 0x940ce469, "sceAudioOutSetAlcMode" },
{ 0x9a5370c4, "sceAudioOutGetRestSample" },
{ 0x9c8edaea, "sceAudioOutGetConfig" },
{ 0xb8ba0d07, "sceAudioOutSetConfig" },
};
nids["SceAvPlayer"] = {
{ 0x11ff162d, "sceAvPlayerResume" },
{ 0x15365ece, "sceAvPlayerDisableStream" },
{ 0x22986cd1, "sceAvPlayerGetVideoDataEx" },
{ 0x2acb4217, "sceAvPlayerStart" },
{ 0x2cd86fd6, "sceAvPlayerStreamCount" },
{ 0x2e4ff35f, "sceAvPlayerIsActive" },
{ 0x34e2d370, "sceAvPlayerGetStreamInfo" },
{ 0x34fd744b, "sceAvPlayerPause" },
{ 0x3f51d38a, "sceAvPlayerPostInit" },
{ 0x4c847adf, "sceAvPlayerInit" },
{ 0x5b7db4bc, "sceAvPlayerJumpToTime" },
{ 0x70127ab8, "sceAvPlayerEnableStream" },
{ 0x7aa29b2d, "sceAvPlayerClose" },
{ 0x804dcecd, "sceAvPlayerCurrentTime" },
{ 0x86e0cf55, "sceAvPlayerSetTrickSpeed" },
{ 0x8bc3221b, "sceAvPlayerGetVideoData" },
{ 0xa10fc252, "sceAvPlayerGetAudioData" },
{ 0xbc83c8fd, "sceAvPlayerAddSource" },
{ 0xbd35e360, "sceAvPlayerStop" },
{ 0xec103adf, "sceAvPlayerSetLooping" },
};
nids["SceCamera"] = {
{ 0x04f34bee, "sceCameraSetExposureCeiling" },
{ 0x06a21bbb, "sceCameraGetAutoControlHold" },
{ 0x06d3816c, "sceCameraGetZoom" },
{ 0x06fb2900, "sceCameraSetContrast" },
{ 0x103a75b8, "sceCameraIsActive" },
{ 0x1175f477, "sceCameraSetReverse" },
{ 0x12b6ff26, "sceCameraGetNightmode" },
{ 0x1dd9c9ce, "sceCameraStop" },
{ 0x274ef751, "sceCameraGetDeviceLocation" },
{ 0x2c36d6f3, "sceCameraGetGain" },
{ 0x3a0dabbd, "sceCameraSetAutoControlHold" },
{ 0x3cf630a1, "sceCameraSetISO" },
{ 0x3f26233e, "sceCameraSetNightmode" },
{ 0x44f6043f, "sceCameraGetReverse" },
{ 0x4d4514ac, "sceCameraSetWhiteBalance" },
{ 0x4ebd5c68, "sceCameraGetISO" },
{ 0x5fa5b1bb, "sceCameraGetExposureCeiling" },
{ 0x624f7653, "sceCameraGetSaturation" },
{ 0x62aff0b8, "sceCameraSetEV" },
{ 0x79b5c2de, "sceCameraRead" },
{ 0x7e8ef3b2, "sceCameraGetEffect" },
{ 0x85d5951d, "sceCameraGetBrightness" },
{ 0x8b5e6147, "sceCameraGetEV" },
{ 0x8dd1292b, "sceCameraGetBacklight" },
{ 0x8fbe84be, "sceCameraGetContrast" },
{ 0x98d71588, "sceCameraSetBrightness" },
{ 0x9fdacb99, "sceCameraGetAntiFlicker" },
{ 0xa462f801, "sceCameraOpen" },
{ 0xa8feae35, "sceCameraStart" },
{ 0xaa72c3dc, "sceCameraGetSharpness" },
{ 0xae071044, "sceCameraSetBacklight" },
{ 0xcd6e1cfc, "sceCameraClose" },
{ 0xd1a5bb0b, "sceCameraSetSharpness" },
{ 0xdbffa1da, "sceCameraGetWhiteBalance" },
{ 0xe312958a, "sceCameraSetAntiFlicker" },
{ 0xe65cfe86, "sceCameraSetGain" },
{ 0xe9d2cfb1, "sceCameraSetEffect" },
{ 0xf7464216, "sceCameraSetZoom" },
{ 0xf9f7ca3d, "sceCameraSetSaturation" },
};
nids["SceClipboard"] = {
{ 0x43a94d3e, "sceClipboardSetText" },
{ 0x5bb10cc2, "sceClipboardGetText" },
};
nids["SceCodecEnginePerf"] = {
{ 0x0635eb77, "sceCodecEnginePmonStart" },
{ 0x2c9da711, "sceCodecEnginePmonGetProcessorLoad" },
{ 0x5d75df62, "sceCodecEnginePmonReset" },
{ 0xd2efaea1, "sceCodecEnginePmonStop" },
};
nids["SceCodecEngineUser"] = {
{ 0x1a3a53e5, "sceCodecEngineAllocMemoryFromUnmapMemBlock" },
{ 0x6a31831d, "sceCodecEngineFreeMemoryFromUnmapMemBlock" },
{ 0x95ea3b3e, "sceCodecEngineCloseUnmapMemBlock" },
{ 0xf0b4c892, "sceCodecEngineOpenUnmapMemBlock" },
};
nids["SceCommonDialog"] = {
{ 0x013e7f74, "sceSaveDataDialogAbort" },
{ 0x0150a451, "sceMsgDialogProgressBarSetMsg" },
{ 0x032206d8, "scePhotoImportDialogGetStatus" },
{ 0x043a353e, "sceCommonDialogIsRunning" },
{ 0x04b63d6f, "sceNpProfileDialogTerm" },
{ 0x07ed1e26, "sceStoreCheckoutDialogGetResult" },
{ 0x0cc66115, "sceMsgDialogAbort" },
{ 0x147650e8, "sceNpSnsFacebookDialogGetStatus" },
{ 0x19192c8b, "sceSaveDataDialogContinue" },
{ 0x1e7043bf, "sceImeDialogInit" },
{ 0x1fd5d373, "sceNpFriendListDialogGetStatus" },
{ 0x2192a10a, "sceSaveDataDialogTerm" },
{ 0x2339fbd5, "sceCrossControllerDialogInit" },
{ 0x2702905b, "sceTwDialogTerm" },
{ 0x2a0d060f, "sceNpMessageDialogGetStatus" },
{ 0x2b02be3f, "sceNpProfileDialogAbort" },
{ 0x2d8edf09, "sceNetCheckDialogAbort" },
{ 0x2eb3d046, "sceImeDialogGetResult" },
{ 0x36c5e9a5, "sceNpSnsFacebookDialogGetResult" },
{ 0x39467634, "sceNetCheckDialogGetPS3ConnectInfo" },
{ 0x4107019e, "sceMsgDialogGetStatus" },
{ 0x415d6068, "sceSaveDataDialogSubClose" },
{ 0x4458b053, "scePspSaveDataDialogInit" },
{ 0x44b9e931, "sceCrossControllerDialogGetStatus" },
{ 0x4535a358, "sceNpMessageDialogInit" },
{ 0x47ab6d04, "sceNpMessageDialogAbort" },
{ 0x4a40c37f, "scePspSaveDataDialogContinue" },
{ 0x4a880c6a, "sceNpFriendListDialogTerm" },
{ 0x4b125581, "scePhotoImportDialogAbort" },
{ 0x52ecd8a5, "sceStoreCheckoutDialogInit" },
{ 0x58fa2062, "sceNpFriendListDialogAbort" },
{ 0x594a220e, "sceImeDialogAbort" },
{ 0x5c322d1e, "sceSaveDataDialogProgressBarSetValue" },
{ 0x5e0afdf8, "sceNpProfileDialogInit" },
{ 0x5f7f4149, "sceTwLoginDialogGetResult" },
{ 0x61c45e12, "scePspSaveDataDialogGetResult" },
{ 0x6821f09b, "sceNpSnsFacebookDialogInit" },
{ 0x6c49924b, "sceSaveDataDialogFinish" },
{ 0x6e258046, "sceSaveDataDialogGetStatus" },
{ 0x6e572ebf, "sceCrossControllerDialogTerm" },
{ 0x7004bb2e, "sceStoreCheckoutDialogGetStatus" },
{ 0x73ee7c9c, "scePhotoImportDialogInit" },
{ 0x749caffc, "sceNpProfileDialogGetResult" },
{ 0x74ff2a8b, "scePhotoReviewDialogAbort" },
{ 0x755ff270, "sceMsgDialogInit" },
{ 0x7ab50f63, "sceNpMessageDialogTerm" },
{ 0x7b339aa2, "sceCameraImportDialogGetResult" },
{ 0x7be0e08b, "sceMsgDialogProgressBarInc" },
{ 0x7e22ad33, "sceNpSnsFacebookDialogAbort" },
{ 0x7ec95c61, "sceNpMessageDialogGetResult" },
{ 0x7fe5bd77, "scePhotoImportDialogTerm" },
{ 0x8027292a, "sceNetCheckDialogGetStatus" },
{ 0x81acf695, "sceMsgDialogTerm" },
{ 0x838a3af4, "sceImeDialogTerm" },
{ 0x86ae7314, "sceCameraImportDialogGetStatus" },
{ 0x87f3f43e, "sceTwDialogGetResult" },
{ 0x8852b9a4, "sceCameraImportDialogAbort" },
{ 0x8acc1f0b, "sceTwLoginDialogGetStatus" },
{ 0x8be51c15, "sceNetCheckDialogTerm" },
{ 0x8e35ea7b, "sceCrossControllerDialogGetResult" },
{ 0x8ed0c83c, "sceCameraImportDialogTerm" },
{ 0x90530f2f, "sceCommonDialogUpdate" },
{ 0x93e51b04, "sceTwDialogInit" },
{ 0x93fcfec6, "sceNpFriendListDialogInit" },
{ 0x9bebb77b, "sceTwDialogAbort" },
{ 0x9cda5e0d, "sceMsgDialogProgressBarSetValue" },
{ 0x9e2c02c9, "sceNpTrophySetupDialogInit" },
{ 0xa38a4a0d, "sceNetCheckDialogInit" },
{ 0xa81082dd, "sceNpTrophySetupDialogTerm" },
{ 0xa8682304, "sceNpSnsFacebookDialogGetResultLongToken" },
{ 0xb05fce9e, "sceNetCheckDialogGetResult" },
{ 0xb2ff576e, "sceSaveDataDialogGetResult" },
{ 0xb5ed4a32, "sceTwLoginDialogAbort" },
{ 0xb787f4b0, "sceStoreCheckoutDialogTerm" },
{ 0xb8e37f7c, "scePspSaveDataDialogTerm" },
{ 0xba0542ca, "sceSaveDataDialogGetSubStatus" },
{ 0xbb3bfc89, "sceMsgDialogGetResult" },
{ 0xbde00a83, "sceSaveDataDialogProgressBarInc" },
{ 0xbecd35c8, "sceCommonDialogSetConfigParam" },
{ 0xbf5248fa, "sceSaveDataDialogInit" },
{ 0xc296d396, "sceMsgDialogClose" },
{ 0xc3a59547, "sceNpTrophySetupDialogGetStatus" },
{ 0xc700b2df, "scePhotoReviewDialogTerm" },
{ 0xcd990375, "scePhotoReviewDialogInit" },
{ 0xcf0431fd, "sceImeDialogGetStatus" },
{ 0xd29fe607, "sceNpFriendListDialogGetResult" },
{ 0xd4c37375, "sceCommonDialogGetWorkerThreadId" },
{ 0xd5a6b473, "sceTwDialogGetStatus" },
{ 0xd6387e24, "sceTwLoginDialogTerm" },
{ 0xd699d9b4, "sceStoreCheckoutDialogAbort" },
{ 0xd855414c, "scePhotoImportDialogGetResult" },
{ 0xdc346979, "sceNpTrophySetupDialogAbort" },
{ 0xddc52a46, "sceCrossControllerDialogAbort" },
{ 0xde1f3928, "sceNpSnsFacebookDialogTerm" },
{ 0xe37069d5, "sceNpTrophySetupDialogGetResult" },
{ 0xe525bdb0, "sceCameraImportDialogInit" },
{ 0xf4f600ca, "scePhotoReviewDialogGetStatus" },
{ 0xfdfe6042, "sceNpProfileDialogGetStatus" },
{ 0xffa35858, "scePhotoReviewDialogGetResult" },
};
nids["SceCoredumpNounlink"] = {
{ 0xdf335dcf, "sceCoredumpWriteUserData" },
};
nids["SceCoredump"] = {
{ 0x031dc61e, "sceCoredumpRegisterCoredumpHandler" },
{ 0x6037a2c3, "sceCoredumpUnregisterCoredumpHandler" },
};
nids["SceCtrl"] = {
{ 0x104ed1a7, "sceCtrlPeekBufferNegative" },
{ 0x15f96fb0, "sceCtrlReadBufferNegative" },
{ 0x67e7ab83, "sceCtrlReadBufferPositive" },
{ 0xa497b150, "sceCtrlSetSamplingMode" },
{ 0xa9c3ced6, "sceCtrlPeekBufferPositive" },
{ 0xd8294c9c, "sceCtrlClearRapidFire" },
{ 0xe9cb69c8, "sceCtrlSetRapidFire" },
{ 0xec752aaf, "sceCtrlGetSamplingMode" },
};
nids["SceDbg"] = {
{ 0x1af3678b, "sceDbgAssertionHandler" },
{ 0x3deaecd3, "sceDbgSetBreakOnWarningState" },
{ 0x6605ab19, "sceDbgLoggingHandler" },
{ 0x941622fa, "sceDbgSetMinimumLogLevel" },
{ 0xed4a00ba, "sceDbgSetBreakOnErrorState" },
};
nids["SceDeci4pUserp"] = {
{ 0x28578fe8, "sceKernelDeci4pOpen" },
{ 0x3bc66bd8, "sceKernelDeci4pEnableWatchpoint" },
{ 0x5a4cdf97, "sceKernelDeci4pDisableWatchpoint" },
{ 0x63b0c50f, "sceKernelDeci4pClose" },
{ 0x73371f35, "sceKernelDeci4pRegisterCallback" },
{ 0x971e1c66, "sceKernelDeci4pRead" },
{ 0xc4e1d86d, "sceKernelDeci4pIsProcessAttached" },
{ 0xcda3aaac, "sceKernelDeci4pWrite" },
};
nids["SceDeflt"] = {
{ 0x110d5050, "sceDeflateDecompress" },
{ 0x14a0698d, "sceZlibIsValid" },
{ 0x1b8e5862, "sceGzipGetInfo" },
{ 0x25b8c7a2, "sceDeflateDecompressPartial" },
{ 0x4c0a685d, "sceZlibGetInfo" },
{ 0xaebaabe6, "sceGzipGetName" },
{ 0xbabcf5cf, "sceGzipGetComment" },
{ 0xcd83a464, "sceZlibAdler32" },
{ 0xda404fe4, "sceZipGetInfo" },
{ 0xdedadc31, "sceGzipIsValid" },
{ 0xe1844802, "sceGzipGetCompressedData" },
{ 0xe38f754d, "sceZlibDecompress" },
{ 0xe3cb51a3, "sceGzipDecompress" },
{ 0xe680a65a, "sceZlibGetCompressedData" },
{ 0xf720a8f6, "sceGzipCrc32" },
};
nids["SceDisplayUser"] = {
{ 0x42ae6bbc, "sceDisplayGetFrameBuf" },
{ 0x7a410b64, "sceDisplaySetFrameBuf" },
};
nids["SceDisplay"] = {
{ 0x05f27764, "sceDisplayWaitVblankStartMultiCB" },
{ 0x3e796ef5, "sceDisplayWaitSetFrameBufMultiCB" },
{ 0x5795e898, "sceDisplayWaitVblankStart" },
{ 0x6bdf4c4d, "sceDisplayRegisterVblankStartCallback" },
{ 0x78b41b92, "sceDisplayWaitVblankStartCB" },
{ 0x7d9864a8, "sceDisplayWaitSetFrameBufMulti" },
{ 0x814c90af, "sceDisplayWaitSetFrameBufCB" },
{ 0x9423560c, "sceDisplayWaitSetFrameBuf" },
{ 0x98436a80, "sceDisplayUnregisterVblankStartCallback" },
{ 0xa08ca60d, "sceDisplayGetRefreshRate" },
{ 0xb6fde0ba, "sceDisplayGetVcount" },
{ 0xdd0a13b8, "sceDisplayWaitVblankStartMulti" },
};
nids["SceDTrace"] = {
{ 0x413c420e, "sceDTraceHelperIoctl" },
{ 0x63f0c4f5, "sceDTraceClientIoctl" },
{ 0x761062e9, "sceDTraceClientOpen" },
{ 0xa47807d7, "sceDTraceAddHelperDof" },
{ 0xb8232491, "sceDTraceClientClose" },
{ 0xf2c9207a, "sceDTraceRemoveHelperDof" },
};
nids["SceFace"] = {
{ 0x17f3dc79, "sceFaceAgeRangeEstimate" },
{ 0x37704de9, "sceFaceShapeTrack" },
{ 0x4468b054, "sceFaceIdentifyGetWorkingMemorySize" },
{ 0x64f45021, "sceFaceShapeFit" },
{ 0x67f0585a, "sceFaceAttribute" },
{ 0x707b9a1d, "sceFacePartsGetWorkingMemorySize" },
{ 0x70c9cf95, "sceFacePartsEx" },
{ 0x73e9791d, "sceFaceAgeGetWorkingMemorySize" },
{ 0x7d71725d, "sceFaceDetectionLocal" },
{ 0x87550392, "sceFaceParts" },
{ 0x8f8e9fb1, "sceFaceIdentifySimilarity" },
{ 0xa905a467, "sceFaceAttributeGetWorkingMemorySize" },
{ 0xb794c6cb, "sceFaceAgeRangeIntegrate" },
{ 0xc0812127, "sceFaceShapeGetWorkingMemorySize" },
{ 0xcc98b939, "sceFacePartsResultCheck" },
{ 0xcf07e1c4, "sceFaceAllPartsGetWorkingMemorySize" },
{ 0xe521eb6f, "sceFaceAllParts" },
{ 0xf24b851d, "sceFaceDetectionGetWorkingMemorySize" },
{ 0xf3045394, "sceFaceDetection" },
{ 0xf7e4ec1f, "sceFaceEstimatePoseRegion" },
{ 0xf852e35d, "sceFaceIdentifyGetFeature" },
};
nids["SceFiber"] = {
{ 0x189599b4, "sceFiberGetInfo" },
{ 0x3b42921f, "sceFiberReturnToThread" },
{ 0x414d8ca5, "sceFiberGetSelf" },
{ 0x4ec01f9c, "sceFiberPopUserMarkerWithHud" },
{ 0x67f70867, "sceFiberStopContextSizeCheck" },
{ 0x7d0c7ddb, "_sceFiberAttachContextAndRun" },
{ 0x7df23243, "sceFiberRun" },
{ 0x801ab334, "sceFiberOptParamInitialize" },
{ 0x9c414b09, "sceFiberPushUserMarkerWithHud" },
{ 0xc6a3f9bb, "_sceFiberInitializeWithInternalOptionImpl" },
{ 0xcd543a71, "sceFiberStartContextSizeCheck" },
{ 0xe00b9afe, "_sceFiberAttachContextAndSwitch" },
{ 0xe160f844, "sceFiberFinalize" },
{ 0xe4283144, "sceFiberSwitch" },
{ 0xf24a298c, "_sceFiberInitializeImpl" },
};
nids["SceFios2"] = {
{ 0x030306f4, "sceFiosRenameSync" },
{ 0x057252f2, "sceFiosIOFilterPsarcDearchiver" },
{ 0x06d97629, "sceFiosSyncSync" },
{ 0x0c81d80e, "sceFiosOpIsCancelled" },
{ 0x0df32816, "sceFiosSync" },
{ 0x125efd34, "sceFiosExistsSync" },
{ 0x132b6de6, "sceFiosFileWriteSync" },
{ 0x13efe5f0, "sceFiosFHOpenWithMode" },
{ 0x156eafdc, "sceFiosGetSuspendCount" },
{ 0x157515cb, "sceFiosOpGetPath" },
{ 0x15857180, "sceFiosArchiveGetMountBufferSize" },
{ 0x159b1fa8, "sceFiosDebugDumpDate" },
{ 0x1915052a, "sceFiosUpdateParameters" },
{ 0x1b9a575e, "sceFiosOpIsDone" },
{ 0x1bc977fa, "sceFiosFHReadvSync" },
{ 0x1c0bcad5, "sceFiosOverlayGetList" },
{ 0x1c488b32, "sceFiosFileReadSync" },
{ 0x1e920b1d, "sceFiosCancelAllOps" },
{ 0x1e962f57, "sceFiosFHPwriteSync" },
{ 0x1f3cc428, "sceFiosDHCloseSync" },
{ 0x202079f9, "sceFiosOpSyncWaitForIO" },
{ 0x218a43ee, "sceFiosOpGetActualCount" },
{ 0x22e35018, "sceFiosIOFilterRemove" },
{ 0x233b070c, "sceFiosFileExistsSync" },
{ 0x25e399e5, "sceFiosRename" },
{ 0x267e6ce3, "sceFiosFHWritevSync" },
{ 0x26d03e20, "sceFiosDevctl" },
{ 0x27ae468b, "sceFiosOverlayAdd" },
{ 0x280d284a, "sceFiosDateFromComponents" },
{ 0x2904b539, "sceFiosTerminate" },
{ 0x29104bf3, "sceFiosIsIdle" },
{ 0x2ac79dfc, "sceFiosOpWait" },
{ 0x2b39453b, "sceFiosFHTruncate" },
{ 0x2b406deb, "sceFiosDHGetPath" },
{ 0x30583fcb, "sceFiosGetGlobalDefaultOpAttr" },
{ 0x30f56704, "sceFiosOverlayModify" },
{ 0x34bc3713, "sceFiosDHOpenSync" },
{ 0x35a82737, "sceFiosTimeIntervalFromNanoseconds" },
{ 0x37143ae3, "sceFiosFHGetPath" },
{ 0x3904f205, "sceFiosOpCancel" },
{ 0x397bf626, "sceFiosTimeIntervalToNanoseconds" },
{ 0x428e927d, "sceFiosIOFilterCache" },
{ 0x42c278e5, "sceFiosFileWrite" },
{ 0x44b9f8eb, "sceFiosDebugDumpDH" },
{ 0x45182328, "sceFiosFHCloseSync" },
{ 0x48d50d97, "sceFiosDirectoryExists" },
{ 0x4d42f95c, "sceFiosFHPreadvSync" },
{ 0x4e2fd311, "sceFiosSetGlobalDefaultOpAttr" },
{ 0x510953dc, "sceFiosSuspend" },
{ 0x51e677df, "sceFiosDebugDumpError" },
{ 0x5506acab, "sceFiosDebugDumpFH" },
{ 0x5b8d48c4, "sceFiosShutdownAndCancelOps" },
{ 0x5ba4bd6d, "sceFiosVprintf" },
{ 0x5c593c1e, "sceFiosDateGetCurrent" },
{ 0x5cff6ea0, "sceFiosDateToComponents" },
{ 0x5e75937a, "sceFiosPathcmp" },
{ 0x681184a2, "sceFiosGetAllDHs" },
{ 0x68c436e4, "sceFiosOpGetBuffer" },
{ 0x6a51e688, "sceFiosFHPread" },
{ 0x6e1252b8, "sceFiosFileTruncateSync" },
{ 0x6ec156da, "sceFiosDateFromSceDateTime" },
{ 0x6f12d8a5, "sceFiosExists" },
{ 0x716bb121, "sceFiosArchiveGetDecompressorThreadCount" },
{ 0x726e01be, "sceFiosDirectoryExistsSync" },
{ 0x72a0a851, "sceFiosDHRead" },
{ 0x742addc4, "sceFiosFHPwritevSync" },
{ 0x764dfa7a, "sceFiosDelete" },
{ 0x76945919, "sceFiosFHReadSync" },
{ 0x774c2c05, "sceFiosInitialize" },
{ 0x789215c3, "sceFiosFileGetSizeSync" },
{ 0x79d9bb50, "sceFiosFileGetSize" },
{ 0x7c4e0c42, "sceFiosFHPreadv" },
{ 0x7c9b14eb, "sceFiosIOFilterGetInfo" },
{ 0x7db0afaf, "sceFiosFHReadv" },
{ 0x7ff33797, "sceFiosResolveSync" },
{ 0x8179ccfa, "sceFiosPathNormalize" },
{ 0x84080161, "sceFiosFileRead" },
{ 0x8758e62f, "sceFiosFileExists" },
{ 0x8a243e74, "sceFiosOverlayResolveSync" },
{ 0x8b6cab52, "sceFiosFHIoctlSync" },
{ 0x8f62832c, "sceFiosGetAllOps" },
{ 0x90ab9195, "sceFiosGetAllFHs" },
{ 0x9198ed8b, "sceFiosDirectoryCreate" },
{ 0x92e76bbd, "sceFiosArchiveMount" },
{ 0x94fdffee, "sceFiosDateToSceDateTime" },
{ 0x968cadbd, "sceFiosOpReschedule" },
{ 0x984024e5, "sceFiosFHWriteSync" },
{ 0x988dd7ff, "sceFiosFHWritev" },
{ 0x9c1084c5, "sceFiosOpGetRequestCount" },
{ 0xa2c610e6, "sceFiosDirectoryCreateWithModeSync" },
{ 0xa75f3c4a, "sceFiosFHSeek" },
{ 0xa88edca8, "sceFiosFHClose" },
{ 0xa909cce3, "sceFiosFHSyncSync" },
{ 0xaac54b44, "sceFiosDeleteSync" },
{ 0xabfee706, "sceFiosOpGetAttr" },
{ 0xacbaf3e0, "sceFiosStatSync" },
{ 0xaf7faadf, "sceFiosPrintf" },
{ 0xb09afbdf, "sceFiosFHRead" },
{ 0xb26dc24d, "sceFiosArchiveUnmountSync" },
{ 0xb309e327, "sceFiosIsValidHandle" },
{ 0xb5302e30, "sceFiosFileDeleteSync" },
{ 0xb647278b, "sceFiosFileDelete" },
{ 0xb66a3dc8, "sceFiosFHIoctl" },
{ 0xb7e79cad, "sceFiosDHReadSync" },
{ 0xb9573146, "sceFiosDirectoryDeleteSync" },
{ 0xbbc9afd5, "sceFiosFHPwritev" },
{ 0xbf099e16, "sceFiosOpGetError" },
{ 0xbf2d3cc1, "sceFiosResume" },
{ 0xbf699bd4, "sceFiosFHOpen" },
{ 0xc3e7c3db, "sceFiosFHOpenSync" },
{ 0xc40600dd, "sceFiosDevctlSync" },
{ 0xc4822276, "sceFiosArchiveMountSync" },
{ 0xc5513e13, "sceFiosFileTruncate" },
{ 0xc55db73b, "sceFiosFHGetOpenParams" },
{ 0xc5c26581, "sceFiosFHGetSize" },
{ 0xc781d7b4, "sceFiosChangeStatSync" },
{ 0xc897f6a7, "sceFiosGetDefaultOpAttr" },
{ 0xcc21c849, "sceFiosPathncmp" },
{ 0xcc823b47, "sceFiosOpWaitUntil" },
{ 0xcd0e86d0, "sceFiosArchiveSetDecompressorThreadCount" },
{ 0xcf1faa6f, "sceFiosFHPwrite" },
{ 0xd0b19c9f, "sceFiosResolve" },
{ 0xd2466ea5, "sceFiosIsSuspended" },
{ 0xd2cd9af2, "sceFiosChangeStat" },
{ 0xd55b8555, "sceFiosIOFilterAdd" },
{ 0xd7f33130, "sceFiosFHTell" },
{ 0xd97c4df7, "sceFiosFHStat" },
{ 0xda93677c, "sceFiosDirectoryDelete" },
{ 0xddd6bf6b, "sceFiosDirectoryCreateWithMode" },
{ 0xdf3352fc, "sceFiosArchiveGetMountBufferSizeSync" },
{ 0xe037b076, "sceFiosDirectoryCreateSync" },
{ 0xe2805059, "sceFiosFHPreadSync" },
{ 0xe438d4f0, "sceFiosDebugDumpOp" },
{ 0xe485f35e, "sceFiosFHSync" },
{ 0xe4ea92fa, "sceFiosOpDelete" },
{ 0xe663138e, "sceFiosFHWrite" },
{ 0xe6a66c70, "sceFiosOpSyncWait" },
{ 0xe76c8ec3, "sceFiosTimeGetCurrent" },
{ 0xea9855ba, "sceFiosDHOpen" },
{ 0xee681e1d, "sceFiosFHOpenWithModeSync" },
{ 0xf21213b9, "sceFiosOpGetOffset" },
{ 0xf3c84d0f, "sceFiosOverlayRemove" },
{ 0xf4c6b72a, "sceFiosOverlayGetInfo" },
{ 0xf4f54e09, "sceFiosIsInitialized" },
{ 0xf6cacfc7, "sceFiosDHClose" },
{ 0xf85c208b, "sceFiosCloseAllFiles" },
{ 0xf8beac88, "sceFiosFHStatSync" },
{ 0xfe1e1d28, "sceFiosArchiveUnmount" },
{ 0xfef940b7, "sceFiosFHTruncateSync" },
{ 0xff04af72, "sceFiosStat" },
};
nids["SceFpu"] = {
{ 0x19881ec8, "sceFpuLog2f" },
{ 0x33e1ac14, "sceFpuSinf" },
{ 0x35652326, "sceFpuExp10f" },
{ 0x4d1ae0f1, "sceFpuAsinf" },
{ 0x53ff26af, "sceFpuAtanf" },
{ 0x64a8f9fe, "sceFpuAcosf" },
{ 0x6fbda1c9, "sceFpuTanf" },
{ 0x936f0d27, "sceFpuLogf" },
{ 0xa3a88ad0, "sceFpuExp2f" },
{ 0xabbb6168, "sceFpuLog10f" },
{ 0xc8a4989b, "sceFpuAtan2f" },
{ 0xdb66ba89, "sceFpuCosf" },
{ 0xdf622e56, "sceFpuPowf" },
{ 0xefa16c6e, "sceFpuExpf" },
};
nids["SceGameUpdate"] = {
{ 0x14116007, "sceGameUpdateAbort" },
{ 0x2f401247, "sceGameUpdateInit" },
{ 0x3c616238, "sceGameUpdateRun" },
{ 0x48d879ba, "sceGameUpdateTerm" },
};
nids["SceGxm"] = {
{ 0x008402c6, "sceGxmMapFragmentUsseMemory" },
{ 0x029b4f1c, "sceGxmProgramIsDiscardUsed" },
{ 0x0389861d, "sceGxmPrecomputedVertexStateSetAllUniformBuffers" },
{ 0x0468e3f2, "sceGxmRemoveRazorGpuCaptureBuffer" },
{ 0x04bb3c59, "sceGxmProgramGetType" },
{ 0x05032658, "sceGxmShaderPatcherCreate" },
{ 0x06752183, "sceGxmSetFrontPointLineWidth" },
{ 0x06ff9151, "sceGxmProgramGetParameter" },
{ 0x0733d8ae, "sceGxmFinish" },
{ 0x07dfee4b, "sceGxmColorSurfaceGetClip" },
{ 0x082200e1, "sceGxmDepthStencilSurfaceIsEnabled" },
{ 0x099134f5, "sceGxmUnmapVertexUsseMemory" },
{ 0x0b94c50a, "sceGxmDestroyRenderTarget" },
{ 0x0b9d13ce, "sceGxmSetDeferredContextVdmBuffer" },
{ 0x0c44acd7, "sceGxmDepthStencilSurfaceSetForceLoadMode" },
{ 0x0d189c30, "sceGxmTextureGetPalette" },
{ 0x0de9aeb7, "sceGxmSetTwoSidedEnable" },
{ 0x0e0ebb57, "sceGxmColorSurfaceIsEnabled" },
{ 0x0fd1e589, "sceGxmShaderPatcherAddRefVertexProgram" },
{ 0x104f23f4, "sceGxmProgramIsFragColorUsed" },
{ 0x11628789, "sceGxmDepthStencilSurfaceGetStrideInSamples" },
{ 0x11dc8dc9, "sceGxmTextureInitCube" },
{ 0x12625c34, "sceGxmSetFrontVisibilityTestIndex" },
{ 0x126a3eb3, "sceGxmTextureGetWidth" },
{ 0x126cdaa3, "sceGxmTextureSetVAddrMode" },
{ 0x12aaa7af, "sceGxmDepthStencilSurfaceSetForceStoreMode" },
{ 0x12d18b3d, "sceGxmSetWarningEnabled" },
{ 0x14bd831f, "sceGxmSetFrontDepthFunc" },
{ 0x14c4e7d3, "sceGxmDrawInstanced" },
{ 0x17b3bf86, "sceGxmSetBackDepthBias" },
{ 0x17cf46b9, "sceGxmSetBackVisibilityTestEnable" },
{ 0x1997dc17, "sceGxmProgramParameterGetCategory" },
{ 0x1a68c8d2, "sceGxmSetBackStencilFunc" },
{ 0x1bf8b853, "sceGxmSetWClampEnable" },
{ 0x1ca9fe0b, "sceGxmTextureSetMipFilter" },
{ 0x200a96e1, "sceGxmColorSurfaceGetDitherMode" },
{ 0x207af96b, "sceGxmCreateRenderTarget" },
{ 0x249d5b00, "sceGxmCreateDeferredContext" },
{ 0x269b56be, "sceGxmDepthStencilSurfaceGetBackgroundDepth" },
{ 0x277794c4, "sceGxmProgramFindParameterByName" },
{ 0x27cad127, "sceGxmSetDeferredContextVertexBuffer" },
{ 0x29118bf1, "sceGxmPrecomputedFragmentStateSetTexture" },
{ 0x29c34df5, "sceGxmSetFragmentTexture" },
{ 0x2a1bcddb, "sceGxmGetContextType" },
{ 0x2ae22788, "sceGxmTextureGetUAddrMode" },
{ 0x2b528462, "sceGxmShaderPatcherRegisterProgram" },
{ 0x2b5c0444, "sceGxmMidSceneFlush" },
{ 0x2c5550f0, "sceGxmShaderPatcherGetFragmentProgramRefCount" },
{ 0x2db6026c, "sceGxmColorSurfaceGetData" },
{ 0x2de55da5, "sceGxmTextureGetLodBias" },
{ 0x2ea178be, "sceGxmTextureSetWidth" },
{ 0x2f5cc20c, "sceGxmDepthStencilSurfaceGetForceLoadMode" },
{ 0x30459117, "sceGxmSetFrontVisibilityTestEnable" },
{ 0x31ff8abd, "sceGxmSetVertexProgram" },
{ 0x3276c475, "sceGxmPushUserMarker" },
{ 0x32f280f0, "sceGxmDepthStencilSurfaceSetBackgroundDepth" },
{ 0x34bf64e3, "sceGxmPrecomputedVertexStateSetDefaultUniformBuffer" },
{ 0x36d85916, "sceGxmEndCommandList" },
{ 0x3a7b1633, "sceGxmPrecomputedDrawSetParamsInstanced" },
{ 0x3c9ddb4a, "sceGxmShaderPatcherGetFragmentUsseMemAllocated" },
{ 0x3d25fce9, "sceGxmPadHeartbeat" },
{ 0x3eb3380b, "sceGxmSetViewport" },
{ 0x416764e3, "sceGxmTextureSetMinFilter" },
{ 0x41bbd792, "sceGxmGetPrecomputedDrawSize" },
{ 0x4281763e, "sceGxmTextureSetUAddrMode" },
{ 0x45027bab, "sceGxmColorSurfaceSetDitherMode" },
{ 0x45229c39, "sceGxmTransferFinish" },
{ 0x46136ca9, "sceGxmTextureGetVAddrMode" },
{ 0x4709cf5a, "sceGxmBeginSceneEx" },
{ 0x4811aecb, "sceGxmTextureInitLinear" },
{ 0x49553737, "sceGxmRenderTargetGetDriverMemBlock" },
{ 0x4cd2d19f, "sceGxmShaderPatcherAddRefFragmentProgram" },
{ 0x4ed2e49d, "sceGxmShaderPatcherCreateFragmentProgram" },
{ 0x4fa073a6, "sceGxmPopUserMarker" },
{ 0x512bb86c, "sceGxmTextureGetNormalizeMode" },
{ 0x52fde962, "sceGxmColorSurfaceGetType" },
{ 0x5331bed3, "sceGxmTextureValidate" },
{ 0x5341bd46, "sceGxmTextureGetData" },
{ 0x537ca400, "sceGxmColorSurfaceSetData" },
{ 0x5420a086, "sceGxmTextureGetHeight" },
{ 0x544aa05a, "sceGxmDepthStencilSurfaceGetForceStoreMode" },
{ 0x5748367e, "sceGxmFragmentProgramIsEnabled" },
{ 0x575958a8, "sceGxmSetFrontFragmentProgramEnable" },
{ 0x5765de9f, "sceGxmSetFrontLineFillLastPixelEnable" },
{ 0x58d0eb0a, "sceGxmTextureSetStride" },
{ 0x5a783dc3, "sceGxmPrecomputedFragmentStateSetAllUniformBuffers" },
{ 0x5c79d59a, "sceGxmProgramParameterGetResourceIndex" },
{ 0x5dbfba2c, "sceGxmTextureInitSwizzledArbitrary" },
{ 0x5f9a3a16, "sceGxmColorSurfaceSetFormat" },
{ 0x60cf708e, "sceGxmSetDefaultRegionClipAndViewport" },
{ 0x613639fa, "sceGxmColorSurfaceInitDisabled" },
{ 0x62312bf8, "sceGxmTransferCopy" },
{ 0x630d4b2e, "sceGxmShaderPatcherForceUnregisterProgram" },
{ 0x633caa54, "sceGxmProgramFindParameterBySemantic" },
{ 0x65dd0c84, "sceGxmSetUniformDataF" },
{ 0x6679bef0, "sceGxmTextureInitLinearStrided" },
{ 0x69ddff5e, "sceGxmTransferFill" },
{ 0x6a29eb06, "sceGxmPrecomputedVertexStateSetTexture" },
{ 0x6a6013e1, "sceGxmSyncObjectCreate" },
{ 0x6abf3f76, "sceGxmGetParameterBufferThreshold" },
{ 0x6af88a5d, "sceGxmProgramParameterGetName" },
{ 0x6b96edf7, "sceGxmColorSurfaceSetScaleMode" },
{ 0x6c936214, "sceGxmPrecomputedDrawSetVertexStream" },
{ 0x6e3fa74d, "sceGxmColorSurfaceGetScaleMode" },
{ 0x6e61ddf5, "sceGxmProgramParameterGetIndex" },
{ 0x70c86868, "sceGxmSetRegionClip" },
{ 0x7767ec49, "sceGxmSetVisibilityBuffer" },
{ 0x7b1fabb6, "sceGxmReserveFragmentDefaultUniformBuffer" },
{ 0x7b9023c3, "sceGxmProgramParameterGetType" },
{ 0x7d2f83c1, "sceGxmShaderPatcherGetVertexUsseMemAllocated" },
{ 0x80ccedbb, "sceGxmUnmapFragmentUsseMemory" },
{ 0x814f61eb, "sceGxmSetViewportEnable" },
{ 0x828c68e8, "sceGxmUnmapMemory" },
{ 0x8504038d, "sceGxmDepthStencilSurfaceGetFormat" },
{ 0x855814c4, "sceGxmTextureSetData" },
{ 0x85d4defe, "sceGxmDepthStencilSurfaceGetBackgroundMask" },
{ 0x85de8506, "sceGxmGetPrecomputedFragmentStateSize" },
{ 0x86456f7b, "sceGxmColorSurfaceSetClip" },
{ 0x866a0517, "sceGxmSetBackStencilRef" },
{ 0x871e5009, "sceGxmProgramParameterIsRegFormat" },
{ 0x8734ff4e, "sceGxmBeginScene" },
{ 0x873b07c0, "sceGxmIsDebugVersion" },
{ 0x87632b9c, "sceGxmGetDeferredContextVertexBuffer" },
{ 0x884d0d08, "sceGxmPrecomputedDrawSetParams" },
{ 0x889ae88c, "sceGxmSyncObjectDestroy" },
{ 0x895df2e9, "sceGxmSetVertexStream" },
{ 0x89613ef2, "sceGxmProgramIsDepthReplaceUsed" },
{ 0x8bd94593, "sceGxmWaitEvent" },
{ 0x8bde825a, "sceGxmGetNotificationRegion" },
{ 0x8dcb0edb, "sceGxmSetBackPointLineWidth" },
{ 0x8fa3f9c3, "sceGxmProgramGetDefaultUniformBufferSize" },
{ 0x8fa6fe44, "sceGxmSetFrontStencilRef" },
{ 0x91236858, "sceGxmPrecomputedFragmentStateSetDefaultUniformBuffer" },
{ 0x920666c6, "sceGxmTextureGetMinFilter" },
{ 0x944d3f83, "sceGxmBeginCommandList" },
{ 0x96a7e6dd, "sceGxmShaderPatcherGetUserData" },
{ 0x97118913, "sceGxmReserveVertexDefaultUniformBuffer" },
{ 0x9d83ca3b, "sceGxmGetPrecomputedVertexStateSize" },
{ 0x9dbbc71c, "sceGxmShaderPatcherGetHostMemAllocated" },
{ 0x9eb4380f, "sceGxmSetVertexTexture" },
{ 0x9f448e79, "sceGxmNotificationWait" },
{ 0xa197f096, "sceGxmPrecomputedDrawInit" },
{ 0xa1a16ff6, "sceGxmShaderPatcherGetVertexProgramRefCount" },
{ 0xa41db0d6, "sceGxmDepthStencilSurfaceInitDisabled" },
{ 0xa4297e57, "sceGxmProgramIsNativeColorUsed" },
{ 0xa4433427, "sceGxmShaderPatcherCreateMaskUpdateFragmentProgram" },
{ 0xa6d9f4da, "sceGxmTextureSetGammaMode" },
{ 0xa824eb24, "sceGxmSetFragmentDefaultUniformBuffer" },
{ 0xa949a803, "sceGxmShaderPatcherGetProgramFromId" },
{ 0xaaa97f81, "sceGxmSetFrontDepthBias" },
{ 0xaafc062b, "sceGxmDepthStencilSurfaceGetBackgroundStencil" },
{ 0xac1ff2da, "sceGxmShaderPatcherReleaseVertexProgram" },
{ 0xad2f48d9, "sceGxmSetFragmentProgram" },
{ 0xad8c2eba, "sceGxmGetDeferredContextVdmBuffer" },
{ 0xae7886fe, "sceGxmSetBackVisibilityTestIndex" },
{ 0xae7fbb51, "sceGxmTextureGetMagFilter" },
{ 0xaee7fdd1, "sceGxmTextureSetHeight" },
{ 0xb042a4d2, "sceGxmSetBackDepthFunc" },
{ 0xb0bd52f3, "sceGxmTextureGetStride" },
{ 0xb0f1e4ec, "sceGxmInitialize" },
{ 0xb291c959, "sceGxmGetRenderTargetMemSizes" },
{ 0xb32917f0, "sceGxmSetYuvProfile" },
{ 0xb452f1fb, "sceGxmPrecomputedFragmentStateSetUniformBuffer" },
{ 0xb627de66, "sceGxmTerminate" },
{ 0xb65ee6f7, "sceGxmTextureSetLodBias" },
{ 0xb6c6f571, "sceGxmPrecomputedDrawSetAllVertexStreams" },
{ 0xb7626a93, "sceGxmSetPrecomputedVertexState" },
{ 0xb79e43dd, "sceGxmTextureSetLodMin" },
{ 0xb7bba6d5, "sceGxmShaderPatcherCreateVertexProgram" },
{ 0xb85cc13e, "sceGxmProgramParameterGetSemanticIndex" },
{ 0xb8645a9a, "sceGxmSetFrontStencilFunc" },
{ 0xb98c5b0d, "sceGxmDisplayQueueFinish" },
{ 0xbb58267d, "sceGxmProgramParameterGetContainerIndex" },
{ 0xbc059afc, "sceGxmDraw" },
{ 0xbc52320e, "sceGxmVertexProgramGetProgram" },
{ 0xbd2998d1, "sceGxmProgramParameterGetComponentCount" },
{ 0xbe2743d1, "sceGxmShaderPatcherReleaseFragmentProgram" },
{ 0xbe524a2c, "sceGxmTextureGetLodMin" },
{ 0xbe5a68ef, "sceGxmPrecomputedVertexStateGetDefaultUniformBuffer" },
{ 0xbe937f8d, "sceGxmPrecomputedVertexStateInit" },
{ 0xbf5e2090, "sceGxmProgramGetSize" },
{ 0xc18b706b, "sceGxmSetBackDepthWriteEnable" },
{ 0xc383de39, "sceGxmPrecomputedFragmentStateSetAllTextures" },
{ 0xc40c9127, "sceGxmPrecomputedVertexStateSetAllTextures" },
{ 0xc61e34fc, "sceGxmMapMemory" },
{ 0xc68015e4, "sceGxmSetVertexUniformBuffer" },
{ 0xc6924709, "sceGxmProgramGetFragmentProgramInputs" },
{ 0xc694d039, "sceGxmShaderPatcherGetBufferMemAllocated" },
{ 0xc697cae5, "sceGxmSetVertexDefaultUniformBuffer" },
{ 0xc6b3fcd0, "sceGxmSetDeferredContextFragmentBuffer" },
{ 0xc7a8cb77, "sceGxmSetUserMarker" },
{ 0xc83f0ab3, "sceGxmSetBackVisibilityTestOp" },
{ 0xc88eb702, "sceGxmSetBackLineFillLastPixelEnable" },
{ 0xca9d41d1, "sceGxmDepthStencilSurfaceInit" },
{ 0xce0b0a76, "sceGxmFragmentProgramGetPassType" },
{ 0xce8ddad0, "sceGxmTextureSetNormalizeMode" },
{ 0xce94ca15, "sceGxmTextureGetMipFilter" },
{ 0xcecb584a, "sceGxmPrecomputedFragmentStateGetDefaultUniformBuffer" },
{ 0xd096336e, "sceGxmSetWClampValue" },
{ 0xd0e3cd9a, "sceGxmSetFrontVisibilityTestOp" },
{ 0xd0edab4c, "sceGxmRenderTargetGetHostMem" },
{ 0xd10f7ead, "sceGxmTransferDownscale" },
{ 0xd2dc4643, "sceGxmTextureSetMipmapCount" },
{ 0xd572d547, "sceGxmTextureInitSwizzled" },
{ 0xd5d5fccd, "sceGxmProgramGetParameterCount" },
{ 0xd6a2ff2f, "sceGxmDestroyDeferredContext" },
{ 0xdba8d061, "sceGxmProgramParameterGetArraySize" },
{ 0xdbf97ed6, "sceGxmPrecomputedVertexStateSetUniformBuffer" },
{ 0xdd6aabfa, "sceGxmTextureSetPalette" },
{ 0xe05277d6, "sceGxmVertexFence" },
{ 0xe0e3b3f8, "sceGxmFragmentProgramGetProgram" },
{ 0xe11603b1, "sceGxmProgramGetOutputRegisterFormat" },
{ 0xe1ca72ae, "sceGxmSetCullMode" },
{ 0xe23c838c, "sceGxmProgramIsEquivalent" },
{ 0xe26b4834, "sceGxmSetBackFragmentProgramEnable" },
{ 0xe297d7af, "sceGxmPrecomputedFragmentStateInit" },
{ 0xe3df5e3b, "sceGxmTextureInitCubeArbitrary" },
{ 0xe63c53d8, "sceGxmProgramIsSpriteCoordUsed" },
{ 0xe6d9c4ce, "sceGxmProgramParameterGetSemantic" },
{ 0xe6f0db27, "sceGxmTextureInitTiled" },
{ 0xe84ce5b4, "sceGxmCreateContext" },
{ 0xe868d2b3, "sceGxmTextureGetFormat" },
{ 0xe8e139dd, "sceGxmExecuteCommandList" },
{ 0xe9e81073, "sceGxmAddRazorGpuCaptureBuffer" },
{ 0xea0fc310, "sceGxmSetFragmentUniformBuffer" },
{ 0xeaa5b100, "sceGxmShaderPatcherDestroy" },
{ 0xec5c26b5, "sceGxmDisplayQueueAddEntry" },
{ 0xed0f6e25, "sceGxmColorSurfaceInit" },
{ 0xed3f78b8, "sceGxmDrawPrecomputed" },
{ 0xed8b6c69, "sceGxmProgramCheck" },
{ 0xeddc5fb2, "sceGxmDestroyContext" },
{ 0xee0b4df0, "sceGxmColorSurfaceGetGammaMode" },
{ 0xeed86975, "sceGxmSetWBufferEnable" },
{ 0xf103af8a, "sceGxmShaderPatcherUnregisterProgram" },
{ 0xf23fce81, "sceGxmTextureGetGammaMode" },
{ 0xf28a688a, "sceGxmDepthStencilSurfaceSetBackgroundMask" },
{ 0xf32cbf34, "sceGxmSetFrontDepthWriteEnable" },
{ 0xf33d9980, "sceGxmColorSurfaceGetStrideInPixels" },
{ 0xf3c1c6c6, "sceGxmColorSurfaceGetFormat" },
{ 0xf5c89643, "sceGxmColorSurfaceSetGammaMode" },
{ 0xf5d3f3e8, "sceGxmDepthStencilSurfaceSetBackgroundStencil" },
{ 0xf65d4917, "sceGxmTextureGetType" },
{ 0xf66ec6fe, "sceGxmSetBackPolygonMode" },
{ 0xf7aa978b, "sceGxmProgramParameterIsSamplerCube" },
{ 0xf7b7b1e4, "sceGxmTextureGetMipmapCount" },
{ 0xf8952750, "sceGxmSetPrecomputedFragmentState" },
{ 0xf9b8fcfd, "sceGxmShaderPatcherSetUserData" },
{ 0xfa081d05, "sceGxmGetDeferredContextFragmentBuffer" },
{ 0xfa437510, "sceGxmMapVertexUsseMemory" },
{ 0xfa695fd7, "sceGxmTextureSetMagFilter" },
{ 0xfb01c7e5, "sceGxmProgramGetVertexProgramOutputs" },
{ 0xfc943596, "sceGxmTextureSetFormat" },
{ 0xfd93209d, "sceGxmSetFrontPolygonMode" },
{ 0xfe300e2f, "sceGxmEndScene" },
};
nids["SceHandwriting"] = {
{ 0x09af9bf8, "sceHandwritingSetMode" },
{ 0x12e4f99a, "sceHandwritingRecognize" },
{ 0x356b2931, "sceHandwritingTerm" },
{ 0x446f171e, "sceHandwritingInit" },
{ 0x4c3a8d49, "sceHandwritingGetBufferSize" },
{ 0x69324689, "sceHandwritingRegisterInfo" },
{ 0x6abbd675, "sceHandwritingRegisterTerm" },
{ 0x6ba4a521, "sceHandwritingRegisterDelete" },
{ 0x76395d93, "sceHandwritingRegisterInit" },
{ 0x79ca5d3f, "sceHandwritingRegisterSet" },
{ 0xb886450e, "sceHandwritingRegisterGetResult" },
};
nids["SceHeap"] = {
{ 0x00be8fc3, "sceHeapReallocHeapMemoryWithOption" },
{ 0x76c5b003, "sceHeapGetTotalFreeSize" },
{ 0x9e6716ba, "sceHeapReallocHeapMemory" },
{ 0xa130d00c, "sceHeapDeleteHeap" },
{ 0xa7571ad8, "sceHeapCreateHeap" },
{ 0xaa50462f, "sceHeapIsAllocatedHeapMemory" },
{ 0xad2645b0, "sceHeapGetMallinfo" },
{ 0xb6fc0ba1, "sceHeapAllocHeapMemory" },
{ 0xd09ffc11, "sceHeapFreeHeapMemory" },
{ 0xd4c09869, "sceHeapAllocHeapMemoryWithOption" },
};
nids["SceHmac"] = {
{ 0x05ae1466, "sceHmacSha0BlockResult" },
{ 0x0c9fa657, "sceHmacSha256BlockUpdate" },
{ 0x272feffe, "sceHmacSha512BlockInit" },
{ 0x2ab46bb5, "sceHmacSha224BlockResult" },
{ 0x359ed31e, "sceHmacSha224Digest" },
{ 0x393ff6bc, "sceHmacSha224BlockInit" },
{ 0x55871d87, "sceHmacSha1Digest" },
{ 0x5a52150f, "sceHmacSha256BlockResult" },
{ 0x64219ff5, "sceHmacSha512BlockResult" },
{ 0x6eeb05d3, "sceHmacMd5Digest" },
{ 0x6ef06490, "sceHmacSha1BlockUpdate" },
{ 0x8fdfce5b, "sceHmacSha512Digest" },
{ 0x96ad3a67, "sceHmacSha256BlockInit" },
{ 0x9bccc484, "sceHmacMd5BlockResult" },
{ 0x9c3b4844, "sceHmacSha384Digest" },
{ 0x9cb7f0ef, "sceHmacSha0BlockUpdate" },
{ 0x9fd439e9, "sceHmacMd5BlockUpdate" },
{ 0xa2285a9a, "sceHmacSha1BlockInit" },
{ 0xb77629eb, "sceHmacSha224BlockUpdate" },
{ 0xb786f59f, "sceHmacSha384BlockInit" },
{ 0xba308cda, "sceHmacSha384BlockResult" },
{ 0xc16d8ab6, "sceHmacSha384BlockUpdate" },
{ 0xccb91784, "sceHmacSha0Digest" },
{ 0xd0af51c6, "sceHmacSha1BlockResult" },
{ 0xd44f6b32, "sceHmacSha0BlockInit" },
{ 0xd6e232cd, "sceHmacMd5BlockInit" },
{ 0xe254d9a1, "sceHmacSha256Digest" },
{ 0xeca83992, "sceHmacSha512BlockUpdate" },
};
nids["SceHttp"] = {
{ 0x00659635, "sceHttpsDisableOptionPrivate" },
{ 0x03a6c89e, "sceHttpParseResponseHeader" },
{ 0x07d9f8bb, "sceHttpDestroyEpoll" },
{ 0x0daca8d4, "sceHttpCookieFlush" },
{ 0x0f1fd1b3, "sceHttpSetEpoll" },
{ 0x11c03867, "sceHttpSetCookieSendCallback" },
{ 0x11ec42d0, "sceHttpSetAuthEnabled" },
{ 0x11f6c27f, "sceHttpGetAllResponseHeaders" },
{ 0x1274d318, "sceHttpUriUnescape" },
{ 0x179c56db, "sceHttpParseStatusLine" },
{ 0x1b6ef66e, "sceHttpGetCookieEnabled" },
{ 0x1d45f24e, "sceHttpUriParse" },
{ 0x1da2a673, "sceHttpUriEscape" },
{ 0x1ea3bb9c, "sceHttpSetDefaultAcceptEncodingGZIPEnabled" },
{ 0x214926d9, "sceHttpInit" },
{ 0x237ca86e, "sceHttpSetConnectTimeOut" },
{ 0x23978cbc, "sceHttpSetIcmOption" },
{ 0x27071691, "sceHttpGetStatusCode" },
{ 0x27a98bda, "sceHttpSetNonblock" },
{ 0x2b79bde0, "sceHttpsGetSslError" },
{ 0x2d3f1281, "sceHttpSslIsCtxCreated" },
{ 0x31c00fba, "sceHttpAddRequestHeaderRaw" },
{ 0x34891c3f, "sceHttpSetAutoRedirect" },
{ 0x37c30c90, "sceHttpSetRequestContentLength" },
{ 0x3d3d29ad, "sceHttpDeleteRequest" },
{ 0x3d44a6e5, "sceHttpAbortRequestForce" },
{ 0x4259fb9e, "sceHttpCookieExport" },
{ 0x42e7dff1, "sceHttpAbortWaitRequest" },
{ 0x47664424, "sceHttpUriBuild" },
{ 0x48650a83, "sceHttpWaitRequestCB" },
{ 0x4e08167d, "sceHttpSetRedirectCallback" },
{ 0x50737a3f, "sceHttpUriSweepPath" },
{ 0x56c95d94, "sceHttpsFreeCaList" },
{ 0x5c4080bc, "sceHttpSetCookieTotalMaxSize" },
{ 0x5ceb6554, "sceHttpSetEpollId" },
{ 0x5daa4def, "sceHttpSetCookieMaxNum" },
{ 0x5eb5f548, "sceHttpRemoveRequestHeader" },
{ 0x61a4adde, "sceHttpGetIcmOption" },
{ 0x62241dab, "sceHttpCreateTemplate" },
{ 0x635f961f, "sceHttpSetCookieMaxNumPerDomain" },
{ 0x65fe983f, "sceHttpGetEpoll" },
{ 0x6727874c, "sceHttpGetAuthEnabled" },
{ 0x6ead73eb, "sceHttpGetAutoRedirect" },
{ 0x70220bfa, "sceHttpGetCookie" },
{ 0x7295c704, "sceHttpSetAcceptEncodingGZIPEnabled" },
{ 0x72cb0741, "sceHttpsEnableOptionPrivate" },
{ 0x75027d1d, "sceHttpUriMerge" },
{ 0x7b51b122, "sceHttpAddRequestHeader" },
{ 0x7c99af67, "sceHttpCreateEpoll" },
{ 0x7ede3979, "sceHttpReadData" },
{ 0x8455b5b3, "sceHttpSetResolveTimeOut" },
{ 0x8577833f, "sceHttpsUnloadCert" },
{ 0x8ae3f008, "sceHttpSetSendTimeOut" },
{ 0x8bab3971, "sceHttpRedirectCacheFlush" },
{ 0x8ef6af55, "sceHttpGetCookieStats" },
{ 0x94bf196e, "sceHttpSetRecvTimeOut" },
{ 0x94f7256a, "sceHttpWaitRequest" },
{ 0x9a68c3de, "sceHttpGetLastErrno" },
{ 0x9ab56ea7, "sceHttpSetResolveRetry" },
{ 0x9ca58b99, "sceHttpSendRequest" },
{ 0x9df48282, "sceHttpCookieImport" },
{ 0x9e031d7c, "sceHttpGetEpollId" },
{ 0x9fbe2869, "sceHttpsEnableOption" },
{ 0xa0926037, "sceHttpsSetSslCallback" },
{ 0xae8d7c33, "sceHttpsLoadCert" },
{ 0xaeb3307e, "sceHttpCreateConnection" },
{ 0xaee573a3, "sceHttpSetCookieEnabled" },
{ 0xaf03924c, "sceHttpAuthCacheFlush" },
{ 0xb0284270, "sceHttpCreateRequest" },
{ 0xbaa34d18, "sceHttpRequestGetAllHeaders" },
{ 0xbbfa3c2a, "sceHttpGetAcceptEncodingGZIPEnabled" },
{ 0xbd5da1d0, "sceHttpCreateRequestWithURL" },
{ 0xbedb988d, "sceHttpAddCookie" },
{ 0xc616c200, "sceHttpCreateConnectionWithURL" },
{ 0xc6d60403, "sceHttpsDisableOption" },
{ 0xc9076666, "sceHttpTerm" },
{ 0xcfb1da4b, "sceHttpUnsetEpoll" },
{ 0xd4f32a23, "sceHttpSetCookieRecvCallback" },