-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibSceFios2.c
1362 lines (1191 loc) · 57.5 KB
/
libSceFios2.c
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
/*
This file was generated by genstub.py, do not edit manually!
*/
int sprx_dlsym(unsigned int handle, const char *nid, void *addr);
int sprx_dlopen(const char* libname, unsigned short *handle);
int sprx_dlclose(unsigned int handle);
static __attribute__ ((used)) void* __ptr_sceFiosArchiveGetDecompressorThreadCount;
asm(".intel_syntax noprefix\n"
".global sceFiosArchiveGetDecompressorThreadCount\n"
".type sceFiosArchiveGetDecompressorThreadCount @function\n"
"sceFiosArchiveGetDecompressorThreadCount:\n"
"jmp qword ptr [rip + __ptr_sceFiosArchiveGetDecompressorThreadCount]\n");
static __attribute__ ((used)) void* __ptr_sceFiosArchiveGetMountBufferSize;
asm(".intel_syntax noprefix\n"
".global sceFiosArchiveGetMountBufferSize\n"
".type sceFiosArchiveGetMountBufferSize @function\n"
"sceFiosArchiveGetMountBufferSize:\n"
"jmp qword ptr [rip + __ptr_sceFiosArchiveGetMountBufferSize]\n");
static __attribute__ ((used)) void* __ptr_sceFiosArchiveGetMountBufferSizeSync;
asm(".intel_syntax noprefix\n"
".global sceFiosArchiveGetMountBufferSizeSync\n"
".type sceFiosArchiveGetMountBufferSizeSync @function\n"
"sceFiosArchiveGetMountBufferSizeSync:\n"
"jmp qword ptr [rip + __ptr_sceFiosArchiveGetMountBufferSizeSync]\n");
static __attribute__ ((used)) void* __ptr_sceFiosArchiveMount;
asm(".intel_syntax noprefix\n"
".global sceFiosArchiveMount\n"
".type sceFiosArchiveMount @function\n"
"sceFiosArchiveMount:\n"
"jmp qword ptr [rip + __ptr_sceFiosArchiveMount]\n");
static __attribute__ ((used)) void* __ptr_sceFiosArchiveMountSync;
asm(".intel_syntax noprefix\n"
".global sceFiosArchiveMountSync\n"
".type sceFiosArchiveMountSync @function\n"
"sceFiosArchiveMountSync:\n"
"jmp qword ptr [rip + __ptr_sceFiosArchiveMountSync]\n");
static __attribute__ ((used)) void* __ptr_sceFiosArchiveMountWithOrder;
asm(".intel_syntax noprefix\n"
".global sceFiosArchiveMountWithOrder\n"
".type sceFiosArchiveMountWithOrder @function\n"
"sceFiosArchiveMountWithOrder:\n"
"jmp qword ptr [rip + __ptr_sceFiosArchiveMountWithOrder]\n");
static __attribute__ ((used)) void* __ptr_sceFiosArchiveMountWithOrderSync;
asm(".intel_syntax noprefix\n"
".global sceFiosArchiveMountWithOrderSync\n"
".type sceFiosArchiveMountWithOrderSync @function\n"
"sceFiosArchiveMountWithOrderSync:\n"
"jmp qword ptr [rip + __ptr_sceFiosArchiveMountWithOrderSync]\n");
static __attribute__ ((used)) void* __ptr_sceFiosArchiveSetDecompressorThreadCount;
asm(".intel_syntax noprefix\n"
".global sceFiosArchiveSetDecompressorThreadCount\n"
".type sceFiosArchiveSetDecompressorThreadCount @function\n"
"sceFiosArchiveSetDecompressorThreadCount:\n"
"jmp qword ptr [rip + __ptr_sceFiosArchiveSetDecompressorThreadCount]\n");
static __attribute__ ((used)) void* __ptr_sceFiosArchiveUnmount;
asm(".intel_syntax noprefix\n"
".global sceFiosArchiveUnmount\n"
".type sceFiosArchiveUnmount @function\n"
"sceFiosArchiveUnmount:\n"
"jmp qword ptr [rip + __ptr_sceFiosArchiveUnmount]\n");
static __attribute__ ((used)) void* __ptr_sceFiosArchiveUnmountSync;
asm(".intel_syntax noprefix\n"
".global sceFiosArchiveUnmountSync\n"
".type sceFiosArchiveUnmountSync @function\n"
"sceFiosArchiveUnmountSync:\n"
"jmp qword ptr [rip + __ptr_sceFiosArchiveUnmountSync]\n");
static __attribute__ ((used)) void* __ptr_sceFiosCacheContainsFileRangeSync;
asm(".intel_syntax noprefix\n"
".global sceFiosCacheContainsFileRangeSync\n"
".type sceFiosCacheContainsFileRangeSync @function\n"
"sceFiosCacheContainsFileRangeSync:\n"
"jmp qword ptr [rip + __ptr_sceFiosCacheContainsFileRangeSync]\n");
static __attribute__ ((used)) void* __ptr_sceFiosCacheContainsFileSync;
asm(".intel_syntax noprefix\n"
".global sceFiosCacheContainsFileSync\n"
".type sceFiosCacheContainsFileSync @function\n"
"sceFiosCacheContainsFileSync:\n"
"jmp qword ptr [rip + __ptr_sceFiosCacheContainsFileSync]\n");
static __attribute__ ((used)) void* __ptr_sceFiosCacheFlushFileRangeSync;
asm(".intel_syntax noprefix\n"
".global sceFiosCacheFlushFileRangeSync\n"
".type sceFiosCacheFlushFileRangeSync @function\n"
"sceFiosCacheFlushFileRangeSync:\n"
"jmp qword ptr [rip + __ptr_sceFiosCacheFlushFileRangeSync]\n");
static __attribute__ ((used)) void* __ptr_sceFiosCacheFlushFileSync;
asm(".intel_syntax noprefix\n"
".global sceFiosCacheFlushFileSync\n"
".type sceFiosCacheFlushFileSync @function\n"
"sceFiosCacheFlushFileSync:\n"
"jmp qword ptr [rip + __ptr_sceFiosCacheFlushFileSync]\n");
static __attribute__ ((used)) void* __ptr_sceFiosCacheFlushSync;
asm(".intel_syntax noprefix\n"
".global sceFiosCacheFlushSync\n"
".type sceFiosCacheFlushSync @function\n"
"sceFiosCacheFlushSync:\n"
"jmp qword ptr [rip + __ptr_sceFiosCacheFlushSync]\n");
static __attribute__ ((used)) void* __ptr_sceFiosCachePrefetchFH;
asm(".intel_syntax noprefix\n"
".global sceFiosCachePrefetchFH\n"
".type sceFiosCachePrefetchFH @function\n"
"sceFiosCachePrefetchFH:\n"
"jmp qword ptr [rip + __ptr_sceFiosCachePrefetchFH]\n");
static __attribute__ ((used)) void* __ptr_sceFiosCachePrefetchFHRange;
asm(".intel_syntax noprefix\n"
".global sceFiosCachePrefetchFHRange\n"
".type sceFiosCachePrefetchFHRange @function\n"
"sceFiosCachePrefetchFHRange:\n"
"jmp qword ptr [rip + __ptr_sceFiosCachePrefetchFHRange]\n");
static __attribute__ ((used)) void* __ptr_sceFiosCachePrefetchFHRangeSync;
asm(".intel_syntax noprefix\n"
".global sceFiosCachePrefetchFHRangeSync\n"
".type sceFiosCachePrefetchFHRangeSync @function\n"
"sceFiosCachePrefetchFHRangeSync:\n"
"jmp qword ptr [rip + __ptr_sceFiosCachePrefetchFHRangeSync]\n");
static __attribute__ ((used)) void* __ptr_sceFiosCachePrefetchFHSync;
asm(".intel_syntax noprefix\n"
".global sceFiosCachePrefetchFHSync\n"
".type sceFiosCachePrefetchFHSync @function\n"
"sceFiosCachePrefetchFHSync:\n"
"jmp qword ptr [rip + __ptr_sceFiosCachePrefetchFHSync]\n");
static __attribute__ ((used)) void* __ptr_sceFiosCachePrefetchFile;
asm(".intel_syntax noprefix\n"
".global sceFiosCachePrefetchFile\n"
".type sceFiosCachePrefetchFile @function\n"
"sceFiosCachePrefetchFile:\n"
"jmp qword ptr [rip + __ptr_sceFiosCachePrefetchFile]\n");
static __attribute__ ((used)) void* __ptr_sceFiosCachePrefetchFileRange;
asm(".intel_syntax noprefix\n"
".global sceFiosCachePrefetchFileRange\n"
".type sceFiosCachePrefetchFileRange @function\n"
"sceFiosCachePrefetchFileRange:\n"
"jmp qword ptr [rip + __ptr_sceFiosCachePrefetchFileRange]\n");
static __attribute__ ((used)) void* __ptr_sceFiosCachePrefetchFileRangeSync;
asm(".intel_syntax noprefix\n"
".global sceFiosCachePrefetchFileRangeSync\n"
".type sceFiosCachePrefetchFileRangeSync @function\n"
"sceFiosCachePrefetchFileRangeSync:\n"
"jmp qword ptr [rip + __ptr_sceFiosCachePrefetchFileRangeSync]\n");
static __attribute__ ((used)) void* __ptr_sceFiosCachePrefetchFileSync;
asm(".intel_syntax noprefix\n"
".global sceFiosCachePrefetchFileSync\n"
".type sceFiosCachePrefetchFileSync @function\n"
"sceFiosCachePrefetchFileSync:\n"
"jmp qword ptr [rip + __ptr_sceFiosCachePrefetchFileSync]\n");
static __attribute__ ((used)) void* __ptr_sceFiosCancelAllOps;
asm(".intel_syntax noprefix\n"
".global sceFiosCancelAllOps\n"
".type sceFiosCancelAllOps @function\n"
"sceFiosCancelAllOps:\n"
"jmp qword ptr [rip + __ptr_sceFiosCancelAllOps]\n");
static __attribute__ ((used)) void* __ptr_sceFiosClearTimeStamps;
asm(".intel_syntax noprefix\n"
".global sceFiosClearTimeStamps\n"
".type sceFiosClearTimeStamps @function\n"
"sceFiosClearTimeStamps:\n"
"jmp qword ptr [rip + __ptr_sceFiosClearTimeStamps]\n");
static __attribute__ ((used)) void* __ptr_sceFiosCloseAllFiles;
asm(".intel_syntax noprefix\n"
".global sceFiosCloseAllFiles\n"
".type sceFiosCloseAllFiles @function\n"
"sceFiosCloseAllFiles:\n"
"jmp qword ptr [rip + __ptr_sceFiosCloseAllFiles]\n");
static __attribute__ ((used)) void* __ptr_sceFiosDHClose;
asm(".intel_syntax noprefix\n"
".global sceFiosDHClose\n"
".type sceFiosDHClose @function\n"
"sceFiosDHClose:\n"
"jmp qword ptr [rip + __ptr_sceFiosDHClose]\n");
static __attribute__ ((used)) void* __ptr_sceFiosDHCloseSync;
asm(".intel_syntax noprefix\n"
".global sceFiosDHCloseSync\n"
".type sceFiosDHCloseSync @function\n"
"sceFiosDHCloseSync:\n"
"jmp qword ptr [rip + __ptr_sceFiosDHCloseSync]\n");
static __attribute__ ((used)) void* __ptr_sceFiosDHGetPath;
asm(".intel_syntax noprefix\n"
".global sceFiosDHGetPath\n"
".type sceFiosDHGetPath @function\n"
"sceFiosDHGetPath:\n"
"jmp qword ptr [rip + __ptr_sceFiosDHGetPath]\n");
static __attribute__ ((used)) void* __ptr_sceFiosDHOpen;
asm(".intel_syntax noprefix\n"
".global sceFiosDHOpen\n"
".type sceFiosDHOpen @function\n"
"sceFiosDHOpen:\n"
"jmp qword ptr [rip + __ptr_sceFiosDHOpen]\n");
static __attribute__ ((used)) void* __ptr_sceFiosDHOpenSync;
asm(".intel_syntax noprefix\n"
".global sceFiosDHOpenSync\n"
".type sceFiosDHOpenSync @function\n"
"sceFiosDHOpenSync:\n"
"jmp qword ptr [rip + __ptr_sceFiosDHOpenSync]\n");
static __attribute__ ((used)) void* __ptr_sceFiosDHRead;
asm(".intel_syntax noprefix\n"
".global sceFiosDHRead\n"
".type sceFiosDHRead @function\n"
"sceFiosDHRead:\n"
"jmp qword ptr [rip + __ptr_sceFiosDHRead]\n");
static __attribute__ ((used)) void* __ptr_sceFiosDHReadSync;
asm(".intel_syntax noprefix\n"
".global sceFiosDHReadSync\n"
".type sceFiosDHReadSync @function\n"
"sceFiosDHReadSync:\n"
"jmp qword ptr [rip + __ptr_sceFiosDHReadSync]\n");
static __attribute__ ((used)) void* __ptr_sceFiosDLLInitialize;
asm(".intel_syntax noprefix\n"
".global sceFiosDLLInitialize\n"
".type sceFiosDLLInitialize @function\n"
"sceFiosDLLInitialize:\n"
"jmp qword ptr [rip + __ptr_sceFiosDLLInitialize]\n");
static __attribute__ ((used)) void* __ptr_sceFiosDLLTerminate;
asm(".intel_syntax noprefix\n"
".global sceFiosDLLTerminate\n"
".type sceFiosDLLTerminate @function\n"
"sceFiosDLLTerminate:\n"
"jmp qword ptr [rip + __ptr_sceFiosDLLTerminate]\n");
static __attribute__ ((used)) void* __ptr_sceFiosDateFromComponents;
asm(".intel_syntax noprefix\n"
".global sceFiosDateFromComponents\n"
".type sceFiosDateFromComponents @function\n"
"sceFiosDateFromComponents:\n"
"jmp qword ptr [rip + __ptr_sceFiosDateFromComponents]\n");
static __attribute__ ((used)) void* __ptr_sceFiosDateGetCurrent;
asm(".intel_syntax noprefix\n"
".global sceFiosDateGetCurrent\n"
".type sceFiosDateGetCurrent @function\n"
"sceFiosDateGetCurrent:\n"
"jmp qword ptr [rip + __ptr_sceFiosDateGetCurrent]\n");
static __attribute__ ((used)) void* __ptr_sceFiosDateToComponents;
asm(".intel_syntax noprefix\n"
".global sceFiosDateToComponents\n"
".type sceFiosDateToComponents @function\n"
"sceFiosDateToComponents:\n"
"jmp qword ptr [rip + __ptr_sceFiosDateToComponents]\n");
static __attribute__ ((used)) void* __ptr_sceFiosDeallocatePassthruFH;
asm(".intel_syntax noprefix\n"
".global sceFiosDeallocatePassthruFH\n"
".type sceFiosDeallocatePassthruFH @function\n"
"sceFiosDeallocatePassthruFH:\n"
"jmp qword ptr [rip + __ptr_sceFiosDeallocatePassthruFH]\n");
static __attribute__ ((used)) void* __ptr_sceFiosDebugDumpDH;
asm(".intel_syntax noprefix\n"
".global sceFiosDebugDumpDH\n"
".type sceFiosDebugDumpDH @function\n"
"sceFiosDebugDumpDH:\n"
"jmp qword ptr [rip + __ptr_sceFiosDebugDumpDH]\n");
static __attribute__ ((used)) void* __ptr_sceFiosDebugDumpDate;
asm(".intel_syntax noprefix\n"
".global sceFiosDebugDumpDate\n"
".type sceFiosDebugDumpDate @function\n"
"sceFiosDebugDumpDate:\n"
"jmp qword ptr [rip + __ptr_sceFiosDebugDumpDate]\n");
static __attribute__ ((used)) void* __ptr_sceFiosDebugDumpError;
asm(".intel_syntax noprefix\n"
".global sceFiosDebugDumpError\n"
".type sceFiosDebugDumpError @function\n"
"sceFiosDebugDumpError:\n"
"jmp qword ptr [rip + __ptr_sceFiosDebugDumpError]\n");
static __attribute__ ((used)) void* __ptr_sceFiosDebugDumpFH;
asm(".intel_syntax noprefix\n"
".global sceFiosDebugDumpFH\n"
".type sceFiosDebugDumpFH @function\n"
"sceFiosDebugDumpFH:\n"
"jmp qword ptr [rip + __ptr_sceFiosDebugDumpFH]\n");
static __attribute__ ((used)) void* __ptr_sceFiosDebugDumpOp;
asm(".intel_syntax noprefix\n"
".global sceFiosDebugDumpOp\n"
".type sceFiosDebugDumpOp @function\n"
"sceFiosDebugDumpOp:\n"
"jmp qword ptr [rip + __ptr_sceFiosDebugDumpOp]\n");
static __attribute__ ((used)) void* __ptr_sceFiosDelete;
asm(".intel_syntax noprefix\n"
".global sceFiosDelete\n"
".type sceFiosDelete @function\n"
"sceFiosDelete:\n"
"jmp qword ptr [rip + __ptr_sceFiosDelete]\n");
static __attribute__ ((used)) void* __ptr_sceFiosDeleteSync;
asm(".intel_syntax noprefix\n"
".global sceFiosDeleteSync\n"
".type sceFiosDeleteSync @function\n"
"sceFiosDeleteSync:\n"
"jmp qword ptr [rip + __ptr_sceFiosDeleteSync]\n");
static __attribute__ ((used)) void* __ptr_sceFiosDirectoryCreate;
asm(".intel_syntax noprefix\n"
".global sceFiosDirectoryCreate\n"
".type sceFiosDirectoryCreate @function\n"
"sceFiosDirectoryCreate:\n"
"jmp qword ptr [rip + __ptr_sceFiosDirectoryCreate]\n");
static __attribute__ ((used)) void* __ptr_sceFiosDirectoryCreateSync;
asm(".intel_syntax noprefix\n"
".global sceFiosDirectoryCreateSync\n"
".type sceFiosDirectoryCreateSync @function\n"
"sceFiosDirectoryCreateSync:\n"
"jmp qword ptr [rip + __ptr_sceFiosDirectoryCreateSync]\n");
static __attribute__ ((used)) void* __ptr_sceFiosDirectoryCreateWithMode;
asm(".intel_syntax noprefix\n"
".global sceFiosDirectoryCreateWithMode\n"
".type sceFiosDirectoryCreateWithMode @function\n"
"sceFiosDirectoryCreateWithMode:\n"
"jmp qword ptr [rip + __ptr_sceFiosDirectoryCreateWithMode]\n");
static __attribute__ ((used)) void* __ptr_sceFiosDirectoryCreateWithModeSync;
asm(".intel_syntax noprefix\n"
".global sceFiosDirectoryCreateWithModeSync\n"
".type sceFiosDirectoryCreateWithModeSync @function\n"
"sceFiosDirectoryCreateWithModeSync:\n"
"jmp qword ptr [rip + __ptr_sceFiosDirectoryCreateWithModeSync]\n");
static __attribute__ ((used)) void* __ptr_sceFiosDirectoryDelete;
asm(".intel_syntax noprefix\n"
".global sceFiosDirectoryDelete\n"
".type sceFiosDirectoryDelete @function\n"
"sceFiosDirectoryDelete:\n"
"jmp qword ptr [rip + __ptr_sceFiosDirectoryDelete]\n");
static __attribute__ ((used)) void* __ptr_sceFiosDirectoryDeleteSync;
asm(".intel_syntax noprefix\n"
".global sceFiosDirectoryDeleteSync\n"
".type sceFiosDirectoryDeleteSync @function\n"
"sceFiosDirectoryDeleteSync:\n"
"jmp qword ptr [rip + __ptr_sceFiosDirectoryDeleteSync]\n");
static __attribute__ ((used)) void* __ptr_sceFiosDirectoryExists;
asm(".intel_syntax noprefix\n"
".global sceFiosDirectoryExists\n"
".type sceFiosDirectoryExists @function\n"
"sceFiosDirectoryExists:\n"
"jmp qword ptr [rip + __ptr_sceFiosDirectoryExists]\n");
static __attribute__ ((used)) void* __ptr_sceFiosDirectoryExistsSync;
asm(".intel_syntax noprefix\n"
".global sceFiosDirectoryExistsSync\n"
".type sceFiosDirectoryExistsSync @function\n"
"sceFiosDirectoryExistsSync:\n"
"jmp qword ptr [rip + __ptr_sceFiosDirectoryExistsSync]\n");
static __attribute__ ((used)) void* __ptr_sceFiosExists;
asm(".intel_syntax noprefix\n"
".global sceFiosExists\n"
".type sceFiosExists @function\n"
"sceFiosExists:\n"
"jmp qword ptr [rip + __ptr_sceFiosExists]\n");
static __attribute__ ((used)) void* __ptr_sceFiosExistsSync;
asm(".intel_syntax noprefix\n"
".global sceFiosExistsSync\n"
".type sceFiosExistsSync @function\n"
"sceFiosExistsSync:\n"
"jmp qword ptr [rip + __ptr_sceFiosExistsSync]\n");
static __attribute__ ((used)) void* __ptr_sceFiosFHClose;
asm(".intel_syntax noprefix\n"
".global sceFiosFHClose\n"
".type sceFiosFHClose @function\n"
"sceFiosFHClose:\n"
"jmp qword ptr [rip + __ptr_sceFiosFHClose]\n");
static __attribute__ ((used)) void* __ptr_sceFiosFHCloseSync;
asm(".intel_syntax noprefix\n"
".global sceFiosFHCloseSync\n"
".type sceFiosFHCloseSync @function\n"
"sceFiosFHCloseSync:\n"
"jmp qword ptr [rip + __ptr_sceFiosFHCloseSync]\n");
static __attribute__ ((used)) void* __ptr_sceFiosFHGetOpenParams;
asm(".intel_syntax noprefix\n"
".global sceFiosFHGetOpenParams\n"
".type sceFiosFHGetOpenParams @function\n"
"sceFiosFHGetOpenParams:\n"
"jmp qword ptr [rip + __ptr_sceFiosFHGetOpenParams]\n");
static __attribute__ ((used)) void* __ptr_sceFiosFHGetPath;
asm(".intel_syntax noprefix\n"
".global sceFiosFHGetPath\n"
".type sceFiosFHGetPath @function\n"
"sceFiosFHGetPath:\n"
"jmp qword ptr [rip + __ptr_sceFiosFHGetPath]\n");
static __attribute__ ((used)) void* __ptr_sceFiosFHGetSize;
asm(".intel_syntax noprefix\n"
".global sceFiosFHGetSize\n"
".type sceFiosFHGetSize @function\n"
"sceFiosFHGetSize:\n"
"jmp qword ptr [rip + __ptr_sceFiosFHGetSize]\n");
static __attribute__ ((used)) void* __ptr_sceFiosFHOpen;
asm(".intel_syntax noprefix\n"
".global sceFiosFHOpen\n"
".type sceFiosFHOpen @function\n"
"sceFiosFHOpen:\n"
"jmp qword ptr [rip + __ptr_sceFiosFHOpen]\n");
static __attribute__ ((used)) void* __ptr_sceFiosFHOpenSync;
asm(".intel_syntax noprefix\n"
".global sceFiosFHOpenSync\n"
".type sceFiosFHOpenSync @function\n"
"sceFiosFHOpenSync:\n"
"jmp qword ptr [rip + __ptr_sceFiosFHOpenSync]\n");
static __attribute__ ((used)) void* __ptr_sceFiosFHOpenWithMode;
asm(".intel_syntax noprefix\n"
".global sceFiosFHOpenWithMode\n"
".type sceFiosFHOpenWithMode @function\n"
"sceFiosFHOpenWithMode:\n"
"jmp qword ptr [rip + __ptr_sceFiosFHOpenWithMode]\n");
static __attribute__ ((used)) void* __ptr_sceFiosFHOpenWithModeSync;
asm(".intel_syntax noprefix\n"
".global sceFiosFHOpenWithModeSync\n"
".type sceFiosFHOpenWithModeSync @function\n"
"sceFiosFHOpenWithModeSync:\n"
"jmp qword ptr [rip + __ptr_sceFiosFHOpenWithModeSync]\n");
static __attribute__ ((used)) void* __ptr_sceFiosFHPread;
asm(".intel_syntax noprefix\n"
".global sceFiosFHPread\n"
".type sceFiosFHPread @function\n"
"sceFiosFHPread:\n"
"jmp qword ptr [rip + __ptr_sceFiosFHPread]\n");
static __attribute__ ((used)) void* __ptr_sceFiosFHPreadSync;
asm(".intel_syntax noprefix\n"
".global sceFiosFHPreadSync\n"
".type sceFiosFHPreadSync @function\n"
"sceFiosFHPreadSync:\n"
"jmp qword ptr [rip + __ptr_sceFiosFHPreadSync]\n");
static __attribute__ ((used)) void* __ptr_sceFiosFHPreadv;
asm(".intel_syntax noprefix\n"
".global sceFiosFHPreadv\n"
".type sceFiosFHPreadv @function\n"
"sceFiosFHPreadv:\n"
"jmp qword ptr [rip + __ptr_sceFiosFHPreadv]\n");
static __attribute__ ((used)) void* __ptr_sceFiosFHPreadvSync;
asm(".intel_syntax noprefix\n"
".global sceFiosFHPreadvSync\n"
".type sceFiosFHPreadvSync @function\n"
"sceFiosFHPreadvSync:\n"
"jmp qword ptr [rip + __ptr_sceFiosFHPreadvSync]\n");
static __attribute__ ((used)) void* __ptr_sceFiosFHPwrite;
asm(".intel_syntax noprefix\n"
".global sceFiosFHPwrite\n"
".type sceFiosFHPwrite @function\n"
"sceFiosFHPwrite:\n"
"jmp qword ptr [rip + __ptr_sceFiosFHPwrite]\n");
static __attribute__ ((used)) void* __ptr_sceFiosFHPwriteSync;
asm(".intel_syntax noprefix\n"
".global sceFiosFHPwriteSync\n"
".type sceFiosFHPwriteSync @function\n"
"sceFiosFHPwriteSync:\n"
"jmp qword ptr [rip + __ptr_sceFiosFHPwriteSync]\n");
static __attribute__ ((used)) void* __ptr_sceFiosFHPwritev;
asm(".intel_syntax noprefix\n"
".global sceFiosFHPwritev\n"
".type sceFiosFHPwritev @function\n"
"sceFiosFHPwritev:\n"
"jmp qword ptr [rip + __ptr_sceFiosFHPwritev]\n");
static __attribute__ ((used)) void* __ptr_sceFiosFHPwritevSync;
asm(".intel_syntax noprefix\n"
".global sceFiosFHPwritevSync\n"
".type sceFiosFHPwritevSync @function\n"
"sceFiosFHPwritevSync:\n"
"jmp qword ptr [rip + __ptr_sceFiosFHPwritevSync]\n");
static __attribute__ ((used)) void* __ptr_sceFiosFHRead;
asm(".intel_syntax noprefix\n"
".global sceFiosFHRead\n"
".type sceFiosFHRead @function\n"
"sceFiosFHRead:\n"
"jmp qword ptr [rip + __ptr_sceFiosFHRead]\n");
static __attribute__ ((used)) void* __ptr_sceFiosFHReadSync;
asm(".intel_syntax noprefix\n"
".global sceFiosFHReadSync\n"
".type sceFiosFHReadSync @function\n"
"sceFiosFHReadSync:\n"
"jmp qword ptr [rip + __ptr_sceFiosFHReadSync]\n");
static __attribute__ ((used)) void* __ptr_sceFiosFHReadv;
asm(".intel_syntax noprefix\n"
".global sceFiosFHReadv\n"
".type sceFiosFHReadv @function\n"
"sceFiosFHReadv:\n"
"jmp qword ptr [rip + __ptr_sceFiosFHReadv]\n");
static __attribute__ ((used)) void* __ptr_sceFiosFHReadvSync;
asm(".intel_syntax noprefix\n"
".global sceFiosFHReadvSync\n"
".type sceFiosFHReadvSync @function\n"
"sceFiosFHReadvSync:\n"
"jmp qword ptr [rip + __ptr_sceFiosFHReadvSync]\n");
static __attribute__ ((used)) void* __ptr_sceFiosFHSeek;
asm(".intel_syntax noprefix\n"
".global sceFiosFHSeek\n"
".type sceFiosFHSeek @function\n"
"sceFiosFHSeek:\n"
"jmp qword ptr [rip + __ptr_sceFiosFHSeek]\n");
static __attribute__ ((used)) void* __ptr_sceFiosFHStat;
asm(".intel_syntax noprefix\n"
".global sceFiosFHStat\n"
".type sceFiosFHStat @function\n"
"sceFiosFHStat:\n"
"jmp qword ptr [rip + __ptr_sceFiosFHStat]\n");
static __attribute__ ((used)) void* __ptr_sceFiosFHStatSync;
asm(".intel_syntax noprefix\n"
".global sceFiosFHStatSync\n"
".type sceFiosFHStatSync @function\n"
"sceFiosFHStatSync:\n"
"jmp qword ptr [rip + __ptr_sceFiosFHStatSync]\n");
static __attribute__ ((used)) void* __ptr_sceFiosFHSync;
asm(".intel_syntax noprefix\n"
".global sceFiosFHSync\n"
".type sceFiosFHSync @function\n"
"sceFiosFHSync:\n"
"jmp qword ptr [rip + __ptr_sceFiosFHSync]\n");
static __attribute__ ((used)) void* __ptr_sceFiosFHSyncSync;
asm(".intel_syntax noprefix\n"
".global sceFiosFHSyncSync\n"
".type sceFiosFHSyncSync @function\n"
"sceFiosFHSyncSync:\n"
"jmp qword ptr [rip + __ptr_sceFiosFHSyncSync]\n");
static __attribute__ ((used)) void* __ptr_sceFiosFHTell;
asm(".intel_syntax noprefix\n"
".global sceFiosFHTell\n"
".type sceFiosFHTell @function\n"
"sceFiosFHTell:\n"
"jmp qword ptr [rip + __ptr_sceFiosFHTell]\n");
static __attribute__ ((used)) void* __ptr_sceFiosFHToFileno;
asm(".intel_syntax noprefix\n"
".global sceFiosFHToFileno\n"
".type sceFiosFHToFileno @function\n"
"sceFiosFHToFileno:\n"
"jmp qword ptr [rip + __ptr_sceFiosFHToFileno]\n");
static __attribute__ ((used)) void* __ptr_sceFiosFHTruncate;
asm(".intel_syntax noprefix\n"
".global sceFiosFHTruncate\n"
".type sceFiosFHTruncate @function\n"
"sceFiosFHTruncate:\n"
"jmp qword ptr [rip + __ptr_sceFiosFHTruncate]\n");
static __attribute__ ((used)) void* __ptr_sceFiosFHTruncateSync;
asm(".intel_syntax noprefix\n"
".global sceFiosFHTruncateSync\n"
".type sceFiosFHTruncateSync @function\n"
"sceFiosFHTruncateSync:\n"
"jmp qword ptr [rip + __ptr_sceFiosFHTruncateSync]\n");
static __attribute__ ((used)) void* __ptr_sceFiosFHWrite;
asm(".intel_syntax noprefix\n"
".global sceFiosFHWrite\n"
".type sceFiosFHWrite @function\n"
"sceFiosFHWrite:\n"
"jmp qword ptr [rip + __ptr_sceFiosFHWrite]\n");
static __attribute__ ((used)) void* __ptr_sceFiosFHWriteSync;
asm(".intel_syntax noprefix\n"
".global sceFiosFHWriteSync\n"
".type sceFiosFHWriteSync @function\n"
"sceFiosFHWriteSync:\n"
"jmp qword ptr [rip + __ptr_sceFiosFHWriteSync]\n");
static __attribute__ ((used)) void* __ptr_sceFiosFHWritev;
asm(".intel_syntax noprefix\n"
".global sceFiosFHWritev\n"
".type sceFiosFHWritev @function\n"
"sceFiosFHWritev:\n"
"jmp qword ptr [rip + __ptr_sceFiosFHWritev]\n");
static __attribute__ ((used)) void* __ptr_sceFiosFHWritevSync;
asm(".intel_syntax noprefix\n"
".global sceFiosFHWritevSync\n"
".type sceFiosFHWritevSync @function\n"
"sceFiosFHWritevSync:\n"
"jmp qword ptr [rip + __ptr_sceFiosFHWritevSync]\n");
static __attribute__ ((used)) void* __ptr_sceFiosFileDelete;
asm(".intel_syntax noprefix\n"
".global sceFiosFileDelete\n"
".type sceFiosFileDelete @function\n"
"sceFiosFileDelete:\n"
"jmp qword ptr [rip + __ptr_sceFiosFileDelete]\n");
static __attribute__ ((used)) void* __ptr_sceFiosFileDeleteSync;
asm(".intel_syntax noprefix\n"
".global sceFiosFileDeleteSync\n"
".type sceFiosFileDeleteSync @function\n"
"sceFiosFileDeleteSync:\n"
"jmp qword ptr [rip + __ptr_sceFiosFileDeleteSync]\n");
static __attribute__ ((used)) void* __ptr_sceFiosFileExists;
asm(".intel_syntax noprefix\n"
".global sceFiosFileExists\n"
".type sceFiosFileExists @function\n"
"sceFiosFileExists:\n"
"jmp qword ptr [rip + __ptr_sceFiosFileExists]\n");
static __attribute__ ((used)) void* __ptr_sceFiosFileExistsSync;
asm(".intel_syntax noprefix\n"
".global sceFiosFileExistsSync\n"
".type sceFiosFileExistsSync @function\n"
"sceFiosFileExistsSync:\n"
"jmp qword ptr [rip + __ptr_sceFiosFileExistsSync]\n");
static __attribute__ ((used)) void* __ptr_sceFiosFileGetSize;
asm(".intel_syntax noprefix\n"
".global sceFiosFileGetSize\n"
".type sceFiosFileGetSize @function\n"
"sceFiosFileGetSize:\n"
"jmp qword ptr [rip + __ptr_sceFiosFileGetSize]\n");
static __attribute__ ((used)) void* __ptr_sceFiosFileGetSizeSync;
asm(".intel_syntax noprefix\n"
".global sceFiosFileGetSizeSync\n"
".type sceFiosFileGetSizeSync @function\n"
"sceFiosFileGetSizeSync:\n"
"jmp qword ptr [rip + __ptr_sceFiosFileGetSizeSync]\n");
static __attribute__ ((used)) void* __ptr_sceFiosFileRead;
asm(".intel_syntax noprefix\n"
".global sceFiosFileRead\n"
".type sceFiosFileRead @function\n"
"sceFiosFileRead:\n"
"jmp qword ptr [rip + __ptr_sceFiosFileRead]\n");
static __attribute__ ((used)) void* __ptr_sceFiosFileReadSync;
asm(".intel_syntax noprefix\n"
".global sceFiosFileReadSync\n"
".type sceFiosFileReadSync @function\n"
"sceFiosFileReadSync:\n"
"jmp qword ptr [rip + __ptr_sceFiosFileReadSync]\n");
static __attribute__ ((used)) void* __ptr_sceFiosFileTruncate;
asm(".intel_syntax noprefix\n"
".global sceFiosFileTruncate\n"
".type sceFiosFileTruncate @function\n"
"sceFiosFileTruncate:\n"
"jmp qword ptr [rip + __ptr_sceFiosFileTruncate]\n");
static __attribute__ ((used)) void* __ptr_sceFiosFileTruncateSync;
asm(".intel_syntax noprefix\n"
".global sceFiosFileTruncateSync\n"
".type sceFiosFileTruncateSync @function\n"
"sceFiosFileTruncateSync:\n"
"jmp qword ptr [rip + __ptr_sceFiosFileTruncateSync]\n");
static __attribute__ ((used)) void* __ptr_sceFiosFileWrite;
asm(".intel_syntax noprefix\n"
".global sceFiosFileWrite\n"
".type sceFiosFileWrite @function\n"
"sceFiosFileWrite:\n"
"jmp qword ptr [rip + __ptr_sceFiosFileWrite]\n");
static __attribute__ ((used)) void* __ptr_sceFiosFileWriteSync;
asm(".intel_syntax noprefix\n"
".global sceFiosFileWriteSync\n"
".type sceFiosFileWriteSync @function\n"
"sceFiosFileWriteSync:\n"
"jmp qword ptr [rip + __ptr_sceFiosFileWriteSync]\n");
static __attribute__ ((used)) void* __ptr_sceFiosFilenoToFH;
asm(".intel_syntax noprefix\n"
".global sceFiosFilenoToFH\n"
".type sceFiosFilenoToFH @function\n"
"sceFiosFilenoToFH:\n"
"jmp qword ptr [rip + __ptr_sceFiosFilenoToFH]\n");
static __attribute__ ((used)) void* __ptr_sceFiosGetAllDHs;
asm(".intel_syntax noprefix\n"
".global sceFiosGetAllDHs\n"
".type sceFiosGetAllDHs @function\n"
"sceFiosGetAllDHs:\n"
"jmp qword ptr [rip + __ptr_sceFiosGetAllDHs]\n");
static __attribute__ ((used)) void* __ptr_sceFiosGetAllFHs;
asm(".intel_syntax noprefix\n"
".global sceFiosGetAllFHs\n"
".type sceFiosGetAllFHs @function\n"
"sceFiosGetAllFHs:\n"
"jmp qword ptr [rip + __ptr_sceFiosGetAllFHs]\n");
static __attribute__ ((used)) void* __ptr_sceFiosGetAllOps;
asm(".intel_syntax noprefix\n"
".global sceFiosGetAllOps\n"
".type sceFiosGetAllOps @function\n"
"sceFiosGetAllOps:\n"
"jmp qword ptr [rip + __ptr_sceFiosGetAllOps]\n");
static __attribute__ ((used)) void* __ptr_sceFiosGetDefaultOpAttr;
asm(".intel_syntax noprefix\n"
".global sceFiosGetDefaultOpAttr\n"
".type sceFiosGetDefaultOpAttr @function\n"
"sceFiosGetDefaultOpAttr:\n"
"jmp qword ptr [rip + __ptr_sceFiosGetDefaultOpAttr]\n");
static __attribute__ ((used)) void* __ptr_sceFiosGetGlobalDefaultOpAttr;
asm(".intel_syntax noprefix\n"
".global sceFiosGetGlobalDefaultOpAttr\n"
".type sceFiosGetGlobalDefaultOpAttr @function\n"
"sceFiosGetGlobalDefaultOpAttr:\n"
"jmp qword ptr [rip + __ptr_sceFiosGetGlobalDefaultOpAttr]\n");
static __attribute__ ((used)) void* __ptr_sceFiosGetSuspendCount;
asm(".intel_syntax noprefix\n"
".global sceFiosGetSuspendCount\n"
".type sceFiosGetSuspendCount @function\n"
"sceFiosGetSuspendCount:\n"
"jmp qword ptr [rip + __ptr_sceFiosGetSuspendCount]\n");
static __attribute__ ((used)) void* __ptr_sceFiosGetThreadDefaultOpAttr;
asm(".intel_syntax noprefix\n"
".global sceFiosGetThreadDefaultOpAttr\n"
".type sceFiosGetThreadDefaultOpAttr @function\n"
"sceFiosGetThreadDefaultOpAttr:\n"
"jmp qword ptr [rip + __ptr_sceFiosGetThreadDefaultOpAttr]\n");
static __attribute__ ((used)) void* __ptr_sceFiosIOFilterAdd;
asm(".intel_syntax noprefix\n"
".global sceFiosIOFilterAdd\n"
".type sceFiosIOFilterAdd @function\n"
"sceFiosIOFilterAdd:\n"
"jmp qword ptr [rip + __ptr_sceFiosIOFilterAdd]\n");
static __attribute__ ((used)) void* __ptr_sceFiosIOFilterCache;
asm(".intel_syntax noprefix\n"
".global sceFiosIOFilterCache\n"
".type sceFiosIOFilterCache @function\n"
"sceFiosIOFilterCache:\n"
"jmp qword ptr [rip + __ptr_sceFiosIOFilterCache]\n");
static __attribute__ ((used)) void* __ptr_sceFiosIOFilterGetInfo;
asm(".intel_syntax noprefix\n"
".global sceFiosIOFilterGetInfo\n"
".type sceFiosIOFilterGetInfo @function\n"
"sceFiosIOFilterGetInfo:\n"
"jmp qword ptr [rip + __ptr_sceFiosIOFilterGetInfo]\n");
static __attribute__ ((used)) void* __ptr_sceFiosIOFilterPsarcDearchiver;
asm(".intel_syntax noprefix\n"
".global sceFiosIOFilterPsarcDearchiver\n"
".type sceFiosIOFilterPsarcDearchiver @function\n"
"sceFiosIOFilterPsarcDearchiver:\n"
"jmp qword ptr [rip + __ptr_sceFiosIOFilterPsarcDearchiver]\n");
static __attribute__ ((used)) void* __ptr_sceFiosIOFilterRemove;
asm(".intel_syntax noprefix\n"
".global sceFiosIOFilterRemove\n"
".type sceFiosIOFilterRemove @function\n"
"sceFiosIOFilterRemove:\n"
"jmp qword ptr [rip + __ptr_sceFiosIOFilterRemove]\n");
static __attribute__ ((used)) void* __ptr_sceFiosInitialize;
asm(".intel_syntax noprefix\n"
".global sceFiosInitialize\n"
".type sceFiosInitialize @function\n"
"sceFiosInitialize:\n"
"jmp qword ptr [rip + __ptr_sceFiosInitialize]\n");
static __attribute__ ((used)) void* __ptr_sceFiosIsIdle;
asm(".intel_syntax noprefix\n"
".global sceFiosIsIdle\n"
".type sceFiosIsIdle @function\n"
"sceFiosIsIdle:\n"
"jmp qword ptr [rip + __ptr_sceFiosIsIdle]\n");
static __attribute__ ((used)) void* __ptr_sceFiosIsInitialized;
asm(".intel_syntax noprefix\n"
".global sceFiosIsInitialized\n"
".type sceFiosIsInitialized @function\n"
"sceFiosIsInitialized:\n"
"jmp qword ptr [rip + __ptr_sceFiosIsInitialized]\n");
static __attribute__ ((used)) void* __ptr_sceFiosIsSuspended;
asm(".intel_syntax noprefix\n"
".global sceFiosIsSuspended\n"
".type sceFiosIsSuspended @function\n"
"sceFiosIsSuspended:\n"
"jmp qword ptr [rip + __ptr_sceFiosIsSuspended]\n");
static __attribute__ ((used)) void* __ptr_sceFiosIsValidHandle;
asm(".intel_syntax noprefix\n"
".global sceFiosIsValidHandle\n"
".type sceFiosIsValidHandle @function\n"
"sceFiosIsValidHandle:\n"
"jmp qword ptr [rip + __ptr_sceFiosIsValidHandle]\n");
static __attribute__ ((used)) void* __ptr_sceFiosOpCancel;
asm(".intel_syntax noprefix\n"
".global sceFiosOpCancel\n"
".type sceFiosOpCancel @function\n"
"sceFiosOpCancel:\n"
"jmp qword ptr [rip + __ptr_sceFiosOpCancel]\n");
static __attribute__ ((used)) void* __ptr_sceFiosOpDelete;
asm(".intel_syntax noprefix\n"
".global sceFiosOpDelete\n"
".type sceFiosOpDelete @function\n"
"sceFiosOpDelete:\n"
"jmp qword ptr [rip + __ptr_sceFiosOpDelete]\n");
static __attribute__ ((used)) void* __ptr_sceFiosOpGetActualCount;
asm(".intel_syntax noprefix\n"
".global sceFiosOpGetActualCount\n"
".type sceFiosOpGetActualCount @function\n"
"sceFiosOpGetActualCount:\n"
"jmp qword ptr [rip + __ptr_sceFiosOpGetActualCount]\n");
static __attribute__ ((used)) void* __ptr_sceFiosOpGetAttr;
asm(".intel_syntax noprefix\n"
".global sceFiosOpGetAttr\n"
".type sceFiosOpGetAttr @function\n"
"sceFiosOpGetAttr:\n"
"jmp qword ptr [rip + __ptr_sceFiosOpGetAttr]\n");
static __attribute__ ((used)) void* __ptr_sceFiosOpGetBuffer;
asm(".intel_syntax noprefix\n"
".global sceFiosOpGetBuffer\n"
".type sceFiosOpGetBuffer @function\n"
"sceFiosOpGetBuffer:\n"
"jmp qword ptr [rip + __ptr_sceFiosOpGetBuffer]\n");
static __attribute__ ((used)) void* __ptr_sceFiosOpGetError;
asm(".intel_syntax noprefix\n"
".global sceFiosOpGetError\n"
".type sceFiosOpGetError @function\n"
"sceFiosOpGetError:\n"
"jmp qword ptr [rip + __ptr_sceFiosOpGetError]\n");
static __attribute__ ((used)) void* __ptr_sceFiosOpGetOffset;
asm(".intel_syntax noprefix\n"
".global sceFiosOpGetOffset\n"
".type sceFiosOpGetOffset @function\n"
"sceFiosOpGetOffset:\n"
"jmp qword ptr [rip + __ptr_sceFiosOpGetOffset]\n");
static __attribute__ ((used)) void* __ptr_sceFiosOpGetPath;
asm(".intel_syntax noprefix\n"
".global sceFiosOpGetPath\n"
".type sceFiosOpGetPath @function\n"
"sceFiosOpGetPath:\n"
"jmp qword ptr [rip + __ptr_sceFiosOpGetPath]\n");
static __attribute__ ((used)) void* __ptr_sceFiosOpGetRequestCount;
asm(".intel_syntax noprefix\n"
".global sceFiosOpGetRequestCount\n"
".type sceFiosOpGetRequestCount @function\n"
"sceFiosOpGetRequestCount:\n"
"jmp qword ptr [rip + __ptr_sceFiosOpGetRequestCount]\n");
static __attribute__ ((used)) void* __ptr_sceFiosOpIsCancelled;
asm(".intel_syntax noprefix\n"
".global sceFiosOpIsCancelled\n"
".type sceFiosOpIsCancelled @function\n"
"sceFiosOpIsCancelled:\n"
"jmp qword ptr [rip + __ptr_sceFiosOpIsCancelled]\n");
static __attribute__ ((used)) void* __ptr_sceFiosOpIsDone;
asm(".intel_syntax noprefix\n"
".global sceFiosOpIsDone\n"
".type sceFiosOpIsDone @function\n"
"sceFiosOpIsDone:\n"
"jmp qword ptr [rip + __ptr_sceFiosOpIsDone]\n");
static __attribute__ ((used)) void* __ptr_sceFiosOpReschedule;
asm(".intel_syntax noprefix\n"
".global sceFiosOpReschedule\n"
".type sceFiosOpReschedule @function\n"
"sceFiosOpReschedule:\n"
"jmp qword ptr [rip + __ptr_sceFiosOpReschedule]\n");
static __attribute__ ((used)) void* __ptr_sceFiosOpRescheduleWithPriority;
asm(".intel_syntax noprefix\n"
".global sceFiosOpRescheduleWithPriority\n"
".type sceFiosOpRescheduleWithPriority @function\n"
"sceFiosOpRescheduleWithPriority:\n"
"jmp qword ptr [rip + __ptr_sceFiosOpRescheduleWithPriority]\n");
static __attribute__ ((used)) void* __ptr_sceFiosOpSetBuffer;
asm(".intel_syntax noprefix\n"
".global sceFiosOpSetBuffer\n"
".type sceFiosOpSetBuffer @function\n"
"sceFiosOpSetBuffer:\n"
"jmp qword ptr [rip + __ptr_sceFiosOpSetBuffer]\n");
static __attribute__ ((used)) void* __ptr_sceFiosOpSyncWait;
asm(".intel_syntax noprefix\n"
".global sceFiosOpSyncWait\n"
".type sceFiosOpSyncWait @function\n"
"sceFiosOpSyncWait:\n"
"jmp qword ptr [rip + __ptr_sceFiosOpSyncWait]\n");
static __attribute__ ((used)) void* __ptr_sceFiosOpSyncWaitForIO;
asm(".intel_syntax noprefix\n"
".global sceFiosOpSyncWaitForIO\n"
".type sceFiosOpSyncWaitForIO @function\n"
"sceFiosOpSyncWaitForIO:\n"
"jmp qword ptr [rip + __ptr_sceFiosOpSyncWaitForIO]\n");
static __attribute__ ((used)) void* __ptr_sceFiosOpWait;
asm(".intel_syntax noprefix\n"
".global sceFiosOpWait\n"
".type sceFiosOpWait @function\n"
"sceFiosOpWait:\n"
"jmp qword ptr [rip + __ptr_sceFiosOpWait]\n");
static __attribute__ ((used)) void* __ptr_sceFiosOpWaitUntil;
asm(".intel_syntax noprefix\n"
".global sceFiosOpWaitUntil\n"
".type sceFiosOpWaitUntil @function\n"
"sceFiosOpWaitUntil:\n"
"jmp qword ptr [rip + __ptr_sceFiosOpWaitUntil]\n");
static __attribute__ ((used)) void* __ptr_sceFiosOverlayAdd;
asm(".intel_syntax noprefix\n"
".global sceFiosOverlayAdd\n"
".type sceFiosOverlayAdd @function\n"
"sceFiosOverlayAdd:\n"
"jmp qword ptr [rip + __ptr_sceFiosOverlayAdd]\n");
static __attribute__ ((used)) void* __ptr_sceFiosOverlayGetInfo;
asm(".intel_syntax noprefix\n"
".global sceFiosOverlayGetInfo\n"
".type sceFiosOverlayGetInfo @function\n"
"sceFiosOverlayGetInfo:\n"
"jmp qword ptr [rip + __ptr_sceFiosOverlayGetInfo]\n");
static __attribute__ ((used)) void* __ptr_sceFiosOverlayGetList;
asm(".intel_syntax noprefix\n"
".global sceFiosOverlayGetList\n"
".type sceFiosOverlayGetList @function\n"
"sceFiosOverlayGetList:\n"
"jmp qword ptr [rip + __ptr_sceFiosOverlayGetList]\n");
static __attribute__ ((used)) void* __ptr_sceFiosOverlayModify;
asm(".intel_syntax noprefix\n"
".global sceFiosOverlayModify\n"
".type sceFiosOverlayModify @function\n"
"sceFiosOverlayModify:\n"