-
Notifications
You must be signed in to change notification settings - Fork 8
/
update.html
2759 lines (2313 loc) · 150 KB
/
update.html
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
<html>
<head>
<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
<meta name=Generator content="Microsoft Word 12 (filtered)">
<style>
<!--
/* Font Definitions */
@font-face
{font-family:Batang;
panose-1:2 3 6 0 0 1 1 1 1 1;}
@font-face
{font-family:"Cambria Math";
panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
{font-family:"\@Batang";
panose-1:2 3 6 0 0 1 1 1 1 1;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
{margin-top:0cm;
margin-right:0cm;
margin-bottom:10.0pt;
margin-left:0cm;
line-height:115%;
font-size:11.0pt;
font-family:"Calibri","sans-serif";}
h1
{mso-style-link:"Heading 1 Char";
margin-top:24.0pt;
margin-right:0cm;
margin-bottom:0cm;
margin-left:0cm;
margin-bottom:.0001pt;
line-height:115%;
font-size:14.0pt;
font-family:"Cambria","serif";}
h1.CxSpFirst
{mso-style-link:"Heading 1 Char";
margin-top:24.0pt;
margin-right:0cm;
margin-bottom:0cm;
margin-left:0cm;
margin-bottom:.0001pt;
line-height:115%;
font-size:14.0pt;
font-family:"Cambria","serif";}
h1.CxSpMiddle
{mso-style-link:"Heading 1 Char";
margin:0cm;
margin-bottom:.0001pt;
line-height:115%;
font-size:14.0pt;
font-family:"Cambria","serif";}
h1.CxSpLast
{mso-style-link:"Heading 1 Char";
margin:0cm;
margin-bottom:.0001pt;
line-height:115%;
font-size:14.0pt;
font-family:"Cambria","serif";}
h2
{mso-style-link:"Heading 2 Char";
margin-top:10.0pt;
margin-right:0cm;
margin-bottom:0cm;
margin-left:0cm;
margin-bottom:.0001pt;
line-height:115%;
font-size:13.0pt;
font-family:"Cambria","serif";}
h3
{mso-style-link:"Heading 3 Char";
margin-top:10.0pt;
margin-right:0cm;
margin-bottom:0cm;
margin-left:0cm;
margin-bottom:.0001pt;
line-height:110%;
font-size:11.0pt;
font-family:"Cambria","serif";}
h4
{mso-style-link:"Heading 4 Char";
margin-top:10.0pt;
margin-right:0cm;
margin-bottom:0cm;
margin-left:0cm;
margin-bottom:.0001pt;
line-height:115%;
font-size:11.0pt;
font-family:"Cambria","serif";
font-style:italic;}
h5
{mso-style-link:"Heading 5 Char";
margin-top:10.0pt;
margin-right:0cm;
margin-bottom:0cm;
margin-left:0cm;
margin-bottom:.0001pt;
line-height:115%;
font-size:11.0pt;
font-family:"Cambria","serif";
color:#7F7F7F;}
h6
{mso-style-link:"Heading 6 Char";
margin:0cm;
margin-bottom:.0001pt;
line-height:110%;
font-size:11.0pt;
font-family:"Cambria","serif";
color:#7F7F7F;
font-style:italic;}
p.MsoHeading7, li.MsoHeading7, div.MsoHeading7
{mso-style-link:"Heading 7 Char";
margin:0cm;
margin-bottom:.0001pt;
line-height:115%;
font-size:11.0pt;
font-family:"Cambria","serif";
font-style:italic;}
p.MsoHeading8, li.MsoHeading8, div.MsoHeading8
{mso-style-link:"Heading 8 Char";
margin:0cm;
margin-bottom:.0001pt;
line-height:115%;
font-size:10.0pt;
font-family:"Cambria","serif";}
p.MsoHeading9, li.MsoHeading9, div.MsoHeading9
{mso-style-link:"Heading 9 Char";
margin:0cm;
margin-bottom:.0001pt;
line-height:115%;
font-size:10.0pt;
font-family:"Cambria","serif";
letter-spacing:.25pt;
font-style:italic;}
p.MsoCaption, li.MsoCaption, div.MsoCaption
{margin-top:0cm;
margin-right:0cm;
margin-bottom:10.0pt;
margin-left:0cm;
line-height:115%;
font-size:8.0pt;
font-family:"Calibri","sans-serif";
color:#365F91;
font-weight:bold;}
p.MsoTitle, li.MsoTitle, div.MsoTitle
{mso-style-link:"Title Char";
margin-top:0cm;
margin-right:0cm;
margin-bottom:10.0pt;
margin-left:0cm;
border:none;
padding:0cm;
font-size:26.0pt;
font-family:"Cambria","serif";
letter-spacing:.25pt;}
p.MsoTitleCxSpFirst, li.MsoTitleCxSpFirst, div.MsoTitleCxSpFirst
{mso-style-link:"Title Char";
margin:0cm;
margin-bottom:.0001pt;
border:none;
padding:0cm;
font-size:26.0pt;
font-family:"Cambria","serif";
letter-spacing:.25pt;}
p.MsoTitleCxSpMiddle, li.MsoTitleCxSpMiddle, div.MsoTitleCxSpMiddle
{mso-style-link:"Title Char";
margin:0cm;
margin-bottom:.0001pt;
border:none;
padding:0cm;
font-size:26.0pt;
font-family:"Cambria","serif";
letter-spacing:.25pt;}
p.MsoTitleCxSpLast, li.MsoTitleCxSpLast, div.MsoTitleCxSpLast
{mso-style-link:"Title Char";
margin-top:0cm;
margin-right:0cm;
margin-bottom:10.0pt;
margin-left:0cm;
border:none;
padding:0cm;
font-size:26.0pt;
font-family:"Cambria","serif";
letter-spacing:.25pt;}
p.MsoSubtitle, li.MsoSubtitle, div.MsoSubtitle
{mso-style-link:"Subtitle Char";
margin-top:0cm;
margin-right:0cm;
margin-bottom:30.0pt;
margin-left:0cm;
line-height:115%;
font-size:12.0pt;
font-family:"Cambria","serif";
letter-spacing:.65pt;
font-style:italic;}
a:link, span.MsoHyperlink
{color:blue;
text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
{color:purple;
text-decoration:underline;}
em
{letter-spacing:.5pt;
border:none windowtext 1.0pt;
padding:0cm;
font-weight:bold;}
p.MsoNoSpacing, li.MsoNoSpacing, div.MsoNoSpacing
{mso-style-link:"No Spacing Char";
margin:0cm;
margin-bottom:.0001pt;
font-size:11.0pt;
font-family:"Calibri","sans-serif";}
p.MsoListParagraph, li.MsoListParagraph, div.MsoListParagraph
{margin-top:0cm;
margin-right:0cm;
margin-bottom:10.0pt;
margin-left:36.0pt;
line-height:115%;
font-size:11.0pt;
font-family:"Calibri","sans-serif";}
p.MsoListParagraphCxSpFirst, li.MsoListParagraphCxSpFirst, div.MsoListParagraphCxSpFirst
{margin-top:0cm;
margin-right:0cm;
margin-bottom:0cm;
margin-left:36.0pt;
margin-bottom:.0001pt;
line-height:115%;
font-size:11.0pt;
font-family:"Calibri","sans-serif";}
p.MsoListParagraphCxSpMiddle, li.MsoListParagraphCxSpMiddle, div.MsoListParagraphCxSpMiddle
{margin-top:0cm;
margin-right:0cm;
margin-bottom:0cm;
margin-left:36.0pt;
margin-bottom:.0001pt;
line-height:115%;
font-size:11.0pt;
font-family:"Calibri","sans-serif";}
p.MsoListParagraphCxSpLast, li.MsoListParagraphCxSpLast, div.MsoListParagraphCxSpLast
{margin-top:0cm;
margin-right:0cm;
margin-bottom:10.0pt;
margin-left:36.0pt;
line-height:115%;
font-size:11.0pt;
font-family:"Calibri","sans-serif";}
p.MsoQuote, li.MsoQuote, div.MsoQuote
{mso-style-link:"Quote Char";
margin-top:10.0pt;
margin-right:18.0pt;
margin-bottom:0cm;
margin-left:18.0pt;
margin-bottom:.0001pt;
line-height:115%;
font-size:11.0pt;
font-family:"Calibri","sans-serif";
font-style:italic;}
p.MsoIntenseQuote, li.MsoIntenseQuote, div.MsoIntenseQuote
{mso-style-link:"Intense Quote Char";
margin-top:10.0pt;
margin-right:57.6pt;
margin-bottom:14.0pt;
margin-left:50.4pt;
text-align:justify;
text-justify:inter-ideograph;
line-height:115%;
border:none;
padding:0cm;
font-size:11.0pt;
font-family:"Calibri","sans-serif";
font-weight:bold;
font-style:italic;}
span.MsoSubtleEmphasis
{font-style:italic;}
span.MsoIntenseEmphasis
{font-weight:bold;}
span.MsoSubtleReference
{font-variant:small-caps;}
span.MsoIntenseReference
{font-variant:small-caps;
letter-spacing:.25pt;
text-decoration:underline;}
span.MsoBookTitle
{font-variant:small-caps;
letter-spacing:.25pt;
font-style:italic;}
p.MsoTocHeading, li.MsoTocHeading, div.MsoTocHeading
{margin-top:24.0pt;
margin-right:0cm;
margin-bottom:0cm;
margin-left:0cm;
margin-bottom:.0001pt;
line-height:115%;
font-size:14.0pt;
font-family:"Cambria","serif";
font-weight:bold;}
p.MsoTocHeadingCxSpFirst, li.MsoTocHeadingCxSpFirst, div.MsoTocHeadingCxSpFirst
{margin-top:24.0pt;
margin-right:0cm;
margin-bottom:0cm;
margin-left:0cm;
margin-bottom:.0001pt;
line-height:115%;
font-size:14.0pt;
font-family:"Cambria","serif";
font-weight:bold;}
p.MsoTocHeadingCxSpMiddle, li.MsoTocHeadingCxSpMiddle, div.MsoTocHeadingCxSpMiddle
{margin:0cm;
margin-bottom:.0001pt;
line-height:115%;
font-size:14.0pt;
font-family:"Cambria","serif";
font-weight:bold;}
p.MsoTocHeadingCxSpLast, li.MsoTocHeadingCxSpLast, div.MsoTocHeadingCxSpLast
{margin:0cm;
margin-bottom:.0001pt;
line-height:115%;
font-size:14.0pt;
font-family:"Cambria","serif";
font-weight:bold;}
span.Heading1Char
{mso-style-name:"Heading 1 Char";
mso-style-link:"Heading 1";
font-family:"Cambria","serif";
font-weight:bold;}
span.Heading2Char
{mso-style-name:"Heading 2 Char";
mso-style-link:"Heading 2";
font-family:"Cambria","serif";
font-weight:bold;}
span.Heading3Char
{mso-style-name:"Heading 3 Char";
mso-style-link:"Heading 3";
font-family:"Cambria","serif";
font-weight:bold;}
span.Heading4Char
{mso-style-name:"Heading 4 Char";
mso-style-link:"Heading 4";
font-family:"Cambria","serif";
font-weight:bold;
font-style:italic;}
span.Heading5Char
{mso-style-name:"Heading 5 Char";
mso-style-link:"Heading 5";
font-family:"Cambria","serif";
color:#7F7F7F;
font-weight:bold;}
span.Heading6Char
{mso-style-name:"Heading 6 Char";
mso-style-link:"Heading 6";
font-family:"Cambria","serif";
color:#7F7F7F;
font-weight:bold;
font-style:italic;}
span.Heading7Char
{mso-style-name:"Heading 7 Char";
mso-style-link:"Heading 7";
font-family:"Cambria","serif";
font-style:italic;}
span.Heading8Char
{mso-style-name:"Heading 8 Char";
mso-style-link:"Heading 8";
font-family:"Cambria","serif";}
span.Heading9Char
{mso-style-name:"Heading 9 Char";
mso-style-link:"Heading 9";
font-family:"Cambria","serif";
letter-spacing:.25pt;
font-style:italic;}
span.TitleChar
{mso-style-name:"Title Char";
mso-style-link:Title;
font-family:"Cambria","serif";
letter-spacing:.25pt;}
span.SubtitleChar
{mso-style-name:"Subtitle Char";
mso-style-link:Subtitle;
font-family:"Cambria","serif";
letter-spacing:.65pt;
font-style:italic;}
span.NoSpacingChar
{mso-style-name:"No Spacing Char";
mso-style-link:"No Spacing";}
span.QuoteChar
{mso-style-name:"Quote Char";
mso-style-link:Quote;
font-style:italic;}
span.IntenseQuoteChar
{mso-style-name:"Intense Quote Char";
mso-style-link:"Intense Quote";
font-weight:bold;
font-style:italic;}
.MsoChpDefault
{font-size:10.0pt;}
@page Section1
{size:595.3pt 841.9pt;
margin:72.0pt 72.0pt 72.0pt 72.0pt;}
div.Section1
{page:Section1;}
/* List Definitions */
ol
{margin-bottom:0cm;}
ul
{margin-bottom:0cm;}
-->
</style>
</head>
<body lang=EN-AU link=blue vlink=purple>
<div class=Section1>
<p class=MsoNormal><b><span lang=EN-US style='font-size:10.0pt;line-height:
115%;font-family:"Arial","sans-serif"'>UPDATE: 20/10/08 </span></b></p>
<p class=MsoNormal><b><span lang=EN-US style='font-size:10.0pt;line-height:
115%;font-family:"Arial","sans-serif"'>sceGpio_driver</span></b></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x95135905 sceGpioPortInvert </span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x5691cefa sceGpioEnableTimerCapture</span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x2cdc8edc sceGpioDisableTimerCapture</span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x6b38b826 sceGpioSetCapturePort</span></p>
<p class=MsoListParagraphCxSpLast style='text-indent:-18.0pt'><span lang=EN-US
style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0xc6928224 sceGpioGetCapturePort</span></p>
<p class=MsoNormal><b><span lang=EN-US style='font-size:10.0pt;line-height:
115%;font-family:"Arial","sans-serif"'>scePower_driver</span></b></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0xd7b9c925 scePowerGetWatchDog</span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x442bfbac scePowerGetBacklightMaximum</span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x23436a4a scePowerGetInnerTemp</span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0xf535d928 scePowerSetWakeupCondition</span></p>
<p class=MsoListParagraphCxSpLast style='text-indent:-18.0pt'><span lang=EN-US
style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x78a1a796 scePowerIsSuspendRequired</span></p>
<p class=MsoNormal><b><span lang=EN-US style='font-size:10.0pt;line-height:
115%;font-family:"Arial","sans-serif"'>sceSysreg_driver</span></b></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x3e961c02 sceSysregUsbhostResetEnable</span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0xacfa3764 sceSysregUsbhostResetDisable</span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0xda4fca1d sceSysregUsbhostClkEnable</span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x228a73e1 sceSysregUsbhostClkDisable</span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0xe321f41a sceSysregUsbhostBusClockEnable</span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x4d2ffc60 sceSysregUsbhostBusClockDisable</span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0xffeb6e00 sceSysregUsbhostQueryIntr</span></p>
<p class=MsoListParagraphCxSpLast style='text-indent:-18.0pt'><span lang=EN-US
style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x87c2ba20 sceSysregUsbhostAcquireIntr</span></p>
<p class=MsoNormal><b><span lang=EN-US style='font-size:10.0pt;line-height:
115%;font-family:"Arial","sans-serif"'>scePspNpDrm_driver</span></b></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x17e3f4bb sceNpDrmVerifyAct</span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x37b9b10d sceNpDrmVerifyRif</span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x00ad67f8 sceNpDrmGetFixedKey</span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x5667b7b9 sceNpDrmGetContentKey</span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0xd36b4e6d sceNpDrmGetModuleKey</span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x0f9547e6 sceNpDrmGetVersionKey</span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0xa1336091 sceNpDrmSetLicenseeKey</span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x9b745542 sceNpDrmClearLicenseeKey</span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x275987d1 sceNpDrmRenameCheck</span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x08d98894 sceNpDrmEdataSetupKey</span></p>
<p class=MsoListParagraphCxSpLast style='text-indent:-18.0pt'><span lang=EN-US
style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x219ef5cc sceNpDrmEdataGetDataSize</span></p>
<p class=MsoNormal><b><span lang=EN-US style='font-size:10.0pt;line-height:
115%;font-family:"Arial","sans-serif"'>scePwm_driver</span></b></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0xab6d2e36 scePwmChangeDuty</span></p>
<p class=MsoListParagraphCxSpLast style='text-indent:-18.0pt'><span lang=EN-US
style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0xf624c1a0 scePwmReferDuty</span></p>
<p class=MsoNormal><b><span lang=EN-US style='font-size:10.0pt;line-height:
115%;font-family:"Arial","sans-serif"'>sceClockgen_driver</span></b></p>
<p class=MsoListParagraph style='text-indent:-18.0pt'><span lang=EN-US
style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0xc6d4c843 sceClockgenSetProtocol</span></p>
<p class=MsoNormal><b><span lang=EN-US style='font-size:10.0pt;line-height:
115%;font-family:"Arial","sans-serif"'>sceAta_driver</span></b></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x9ca52f94 sceAtaExecIPDCmd</span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x7c6b31d8 sceAtaDisplayIPD</span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x8cada96b sceAtaAhbGetDDRSize</span></p>
<p class=MsoListParagraphCxSpLast style='text-indent:-18.0pt'><span lang=EN-US
style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0xb985f2b0 sceAtaAhbSetDDRSize</span></p>
<p class=MsoNormal><b><span lang=EN-US style='font-size:10.0pt;line-height:
115%;font-family:"Arial","sans-serif"'>sceUmdMan_driver</span></b></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x1f9afff4 sceUmdManMediaPresent</span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x84410a8e sceUmdManSetReadAheadSize</span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x63acfd28 sceUmdManSetDisableReadAhead</span></p>
<p class=MsoListParagraphCxSpLast style='text-indent:-18.0pt'><span lang=EN-US
style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x39704b6e sceUmdManSetEnableReadAhead</span></p>
<p class=MsoNormal><b><span lang=EN-US style='font-size:10.0pt;line-height:
115%;font-family:"Arial","sans-serif"'>sceUmd</span></b></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x08709f2d sceUmdAssertLeptonWakeup</span></p>
<p class=MsoListParagraphCxSpLast style='text-indent:-18.0pt'><span lang=EN-US
style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0xad18c797 sceUmdNegateLeptonWakeup</span></p>
<p class=MsoNormal><b><span lang=EN-US style='font-size:10.0pt;line-height:
115%;font-family:"Arial","sans-serif"'>sceDisplay_driver</span></b></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0xae0e8972 sceDisplaySetPseudoVsync</span></p>
<p class=MsoListParagraphCxSpLast style='text-indent:-18.0pt'><span lang=EN-US
style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x92c8f8b7 sceDisplayIsPseudoField</span></p>
<p class=MsoNormal><b><span lang=EN-US style='font-size:10.0pt;line-height:
115%;font-family:"Arial","sans-serif"'>sceAac</span></b></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x6c05813b sceAacStartEntry</span></p>
<p class=MsoListParagraphCxSpLast style='text-indent:-18.0pt'><span lang=EN-US
style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x61aa43c9 sceAacEndEntry</span></p>
<p class=MsoNormal><b><span lang=EN-US style='font-size:10.0pt;line-height:
115%;font-family:"Arial","sans-serif"'>sceMp3</span></b></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x8ab81558 sceMp3StartEntry</span></p>
<p class=MsoListParagraphCxSpLast style='text-indent:-18.0pt'><span lang=EN-US
style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x732b042a sceMp3EndEntry</span></p>
<p class=MsoNormal><b><span lang=EN-US style='font-size:10.0pt;line-height:
115%;font-family:"Arial","sans-serif"'>sceMSAudio_driver</span></b></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x66f19ca3 sceMSAudioUpdateIBD</span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x22da9981 sceMSAudioInitFringe</span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x9e37e51d sceMSAudioInitTrack</span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x5d1c9867 sceMSAudioDecryptFringe</span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x38178f2f sceMSAudioDecryptTrack</span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x67e58c07 sceMSAudioEndFringe</span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x135f2225 sceMSAudioEndTrack</span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0xda34ab8f sceMSAudioGetMediaType</span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0xa18a1df6 sceMSAudioClearMACEntry</span></p>
<p class=MsoListParagraphCxSpLast style='text-indent:-18.0pt'><span lang=EN-US
style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0xe8b25d38 sceMSAudioCalculateICVn</span></p>
<p class=MsoNormal><b><span lang=EN-US style='font-size:10.0pt;line-height:
115%;font-family:"Arial","sans-serif"'>sceAsfParser</span></b></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0xd2dd1778 sceAsfGetContentDescription</span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0xaa881a7b sceAsfGetExtContent</span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0xefc704c3 sceAsfGetHeaderExtension</span></p>
<p class=MsoListParagraphCxSpLast style='text-indent:-18.0pt'><span lang=EN-US
style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x5ec678cb sceAsfGetVariableObject</span></p>
<p class=MsoNormal><b><span lang=EN-US style='font-size:10.0pt;line-height:
115%;font-family:"Arial","sans-serif"'>sceUsb1Seg_driver</span></b></p>
<p class=MsoListParagraph style='text-indent:-18.0pt'><span lang=EN-US
style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0xd799104f sceUsb1SegGetFirmVer</span></p>
<p class=MsoNormal><b><span lang=EN-US style='font-size:10.0pt;line-height:
115%;font-family:"Arial","sans-serif"'>sceUSB_Stor_Ms_driver</span></b></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x7b810720 sceUsbstorMsSetWorkBuf</span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0xcf2af7b3 sceUsbstorMsGetNickname</span></p>
<p class=MsoListParagraphCxSpLast style='text-indent:-18.0pt'><span lang=EN-US
style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x16173d42 sceUsbstorMsSetNickname</span></p>
<p class=MsoNormal><b><span lang=EN-US style='font-size:10.0pt;line-height:
115%;font-family:"Arial","sans-serif"'>sceUsbstormln</span></b></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x1f4ac19c sceUsbstormlnGetCommand</span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x5821060d sceUsbstormlnNotifyResponse</span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x382898de sceUsbstormlnRegisterBuffer</span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x25b6f372 sceUsbstormlnUnregisterBuffer</span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0xdec0fe8c sceUsbstormlnWaitStatus</span></p>
<p class=MsoListParagraphCxSpLast style='text-indent:-18.0pt'><span lang=EN-US
style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0xe11defdf sceUsbstormlnCancelWaitStatus</span></p>
<p class=MsoNormal><b><span lang=EN-US style='font-size:10.0pt;line-height:
115%;font-family:"Arial","sans-serif"'>sceMlnBridge</span></b></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x2fdf5639 sceMlnBridgeRandInit</span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0xd0790a37 sceMlnBridgeRandFin</span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0xe79622cd sceMlnBridgeRandGetBytes</span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0xadb4797e sceMlnBridgeRsaInit</span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0xb7e04efa sceMlnBridgeRsaFin</span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x10c4fec6 sceMlnBridgeSha1MakeDigest</span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0xd455dd97 sceMlnBridgeSha256MakeDigest</span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x54edc552 sceMlnBridgeSHA1</span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x3505ecce sceMlnBridgeHMAC</span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x13e68009 sceMlnBridgeAesEcbEncrypt</span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x8d7e61dd sceMlnBridgeAesEcbDecrypt</span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0xde730a46 sceMlnBridgeAesCbcEncrypt</span></p>
<p class=MsoListParagraphCxSpLast style='text-indent:-18.0pt'><span lang=EN-US
style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x7770fc23 sceMlnBridgeAesCbcDecrypt</span></p>
<p class=MsoNormal><b><span lang=EN-US style='font-size:10.0pt;line-height:
115%;font-family:"Arial","sans-serif"'>sceMgr_driver</span></b></p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0xa45a63b6 sceMgrAesEcbEncrypt</span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;
font-family:"Courier New"'>0x19b8f2d0 sceMgrAesEcbDecrypt</span></p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-18.0pt'><span
lang=EN-US style='font-size:10.0pt;line-height:115%;font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-US style='font-size:10.0pt;line-height:115%;