-
Notifications
You must be signed in to change notification settings - Fork 0
/
libSceAbstractStorage.c
898 lines (785 loc) · 62.8 KB
/
libSceAbstractStorage.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
/*
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__ZN15AbstractStorage12Serializable12readExternalESt10shared_ptrINS_7ContentEE;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage12Serializable12readExternalESt10shared_ptrINS_7ContentEE\n"
".type _ZN15AbstractStorage12Serializable12readExternalESt10shared_ptrINS_7ContentEE @function\n"
"_ZN15AbstractStorage12Serializable12readExternalESt10shared_ptrINS_7ContentEE:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage12Serializable12readExternalESt10shared_ptrINS_7ContentEE]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage12Serializable13writeExternalESt10shared_ptrINS_7ContentEE;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage12Serializable13writeExternalESt10shared_ptrINS_7ContentEE\n"
".type _ZN15AbstractStorage12Serializable13writeExternalESt10shared_ptrINS_7ContentEE @function\n"
"_ZN15AbstractStorage12Serializable13writeExternalESt10shared_ptrINS_7ContentEE:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage12Serializable13writeExternalESt10shared_ptrINS_7ContentEE]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage12SerializableC1Ev;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage12SerializableC1Ev\n"
".type _ZN15AbstractStorage12SerializableC1Ev @function\n"
"_ZN15AbstractStorage12SerializableC1Ev:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage12SerializableC1Ev]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage12SerializableC2Ev;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage12SerializableC2Ev\n"
".type _ZN15AbstractStorage12SerializableC2Ev @function\n"
"_ZN15AbstractStorage12SerializableC2Ev:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage12SerializableC2Ev]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage12SerializableD1Ev;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage12SerializableD1Ev\n"
".type _ZN15AbstractStorage12SerializableD1Ev @function\n"
"_ZN15AbstractStorage12SerializableD1Ev:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage12SerializableD1Ev]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage12SerializableD2Ev;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage12SerializableD2Ev\n"
".type _ZN15AbstractStorage12SerializableD2Ev @function\n"
"_ZN15AbstractStorage12SerializableD2Ev:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage12SerializableD2Ev]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage14MemfileContent12readExternalESt10shared_ptrINS_7ContentEE;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage14MemfileContent12readExternalESt10shared_ptrINS_7ContentEE\n"
".type _ZN15AbstractStorage14MemfileContent12readExternalESt10shared_ptrINS_7ContentEE @function\n"
"_ZN15AbstractStorage14MemfileContent12readExternalESt10shared_ptrINS_7ContentEE:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage14MemfileContent12readExternalESt10shared_ptrINS_7ContentEE]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage14MemfileContent13writeExternalESt10shared_ptrINS_7ContentEE;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage14MemfileContent13writeExternalESt10shared_ptrINS_7ContentEE\n"
".type _ZN15AbstractStorage14MemfileContent13writeExternalESt10shared_ptrINS_7ContentEE @function\n"
"_ZN15AbstractStorage14MemfileContent13writeExternalESt10shared_ptrINS_7ContentEE:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage14MemfileContent13writeExternalESt10shared_ptrINS_7ContentEE]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage14MemfileContent14CreateInstanceESbIcSt11char_traitsIcENS_8StlAllocIcEEEN3paf6common9SharedPtrINS6_6BufferEEE;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage14MemfileContent14CreateInstanceESbIcSt11char_traitsIcENS_8StlAllocIcEEEN3paf6common9SharedPtrINS6_6BufferEEE\n"
".type _ZN15AbstractStorage14MemfileContent14CreateInstanceESbIcSt11char_traitsIcENS_8StlAllocIcEEEN3paf6common9SharedPtrINS6_6BufferEEE @function\n"
"_ZN15AbstractStorage14MemfileContent14CreateInstanceESbIcSt11char_traitsIcENS_8StlAllocIcEEEN3paf6common9SharedPtrINS6_6BufferEEE:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage14MemfileContent14CreateInstanceESbIcSt11char_traitsIcENS_8StlAllocIcEEEN3paf6common9SharedPtrINS6_6BufferEEE]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage14MemfileContent14CreateInstanceESbIcSt11char_traitsIcENS_8StlAllocIcEEEPvm;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage14MemfileContent14CreateInstanceESbIcSt11char_traitsIcENS_8StlAllocIcEEEPvm\n"
".type _ZN15AbstractStorage14MemfileContent14CreateInstanceESbIcSt11char_traitsIcENS_8StlAllocIcEEEPvm @function\n"
"_ZN15AbstractStorage14MemfileContent14CreateInstanceESbIcSt11char_traitsIcENS_8StlAllocIcEEEPvm:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage14MemfileContent14CreateInstanceESbIcSt11char_traitsIcENS_8StlAllocIcEEEPvm]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage14MemfileContent4OpenEit;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage14MemfileContent4OpenEit\n"
".type _ZN15AbstractStorage14MemfileContent4OpenEit @function\n"
"_ZN15AbstractStorage14MemfileContent4OpenEit:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage14MemfileContent4OpenEit]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage14MemfileContent4ReadEPvlPl;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage14MemfileContent4ReadEPvlPl\n"
".type _ZN15AbstractStorage14MemfileContent4ReadEPvlPl @function\n"
"_ZN15AbstractStorage14MemfileContent4ReadEPvlPl:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage14MemfileContent4ReadEPvlPl]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage14MemfileContent5CloseEv;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage14MemfileContent5CloseEv\n"
".type _ZN15AbstractStorage14MemfileContent5CloseEv @function\n"
"_ZN15AbstractStorage14MemfileContent5CloseEv:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage14MemfileContent5CloseEv]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage14MemfileContent5FlushEv;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage14MemfileContent5FlushEv\n"
".type _ZN15AbstractStorage14MemfileContent5FlushEv @function\n"
"_ZN15AbstractStorage14MemfileContent5FlushEv:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage14MemfileContent5FlushEv]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage14MemfileContent5WriteEPKvlPl;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage14MemfileContent5WriteEPKvlPl\n"
".type _ZN15AbstractStorage14MemfileContent5WriteEPKvlPl @function\n"
"_ZN15AbstractStorage14MemfileContent5WriteEPKvlPl:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage14MemfileContent5WriteEPKvlPl]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage14MemfileContent6RemoveEv;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage14MemfileContent6RemoveEv\n"
".type _ZN15AbstractStorage14MemfileContent6RemoveEv @function\n"
"_ZN15AbstractStorage14MemfileContent6RemoveEv:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage14MemfileContent6RemoveEv]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage14MemfileContent8SeekByteEliPl;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage14MemfileContent8SeekByteEliPl\n"
".type _ZN15AbstractStorage14MemfileContent8SeekByteEliPl @function\n"
"_ZN15AbstractStorage14MemfileContent8SeekByteEliPl:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage14MemfileContent8SeekByteEliPl]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage14MemfileContent8SeekTimeElPl;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage14MemfileContent8SeekTimeElPl\n"
".type _ZN15AbstractStorage14MemfileContent8SeekTimeElPl @function\n"
"_ZN15AbstractStorage14MemfileContent8SeekTimeElPl:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage14MemfileContent8SeekTimeElPl]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage14MemfileContentC1ESbIcSt11char_traitsIcENS_8StlAllocIcEEEN3paf6common9SharedPtrINS6_6BufferEEE;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage14MemfileContentC1ESbIcSt11char_traitsIcENS_8StlAllocIcEEEN3paf6common9SharedPtrINS6_6BufferEEE\n"
".type _ZN15AbstractStorage14MemfileContentC1ESbIcSt11char_traitsIcENS_8StlAllocIcEEEN3paf6common9SharedPtrINS6_6BufferEEE @function\n"
"_ZN15AbstractStorage14MemfileContentC1ESbIcSt11char_traitsIcENS_8StlAllocIcEEEN3paf6common9SharedPtrINS6_6BufferEEE:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage14MemfileContentC1ESbIcSt11char_traitsIcENS_8StlAllocIcEEEN3paf6common9SharedPtrINS6_6BufferEEE]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage14MemfileContentC2ESbIcSt11char_traitsIcENS_8StlAllocIcEEEN3paf6common9SharedPtrINS6_6BufferEEE;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage14MemfileContentC2ESbIcSt11char_traitsIcENS_8StlAllocIcEEEN3paf6common9SharedPtrINS6_6BufferEEE\n"
".type _ZN15AbstractStorage14MemfileContentC2ESbIcSt11char_traitsIcENS_8StlAllocIcEEEN3paf6common9SharedPtrINS6_6BufferEEE @function\n"
"_ZN15AbstractStorage14MemfileContentC2ESbIcSt11char_traitsIcENS_8StlAllocIcEEEN3paf6common9SharedPtrINS6_6BufferEEE:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage14MemfileContentC2ESbIcSt11char_traitsIcENS_8StlAllocIcEEEN3paf6common9SharedPtrINS6_6BufferEEE]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage14MemfileContentD0Ev;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage14MemfileContentD0Ev\n"
".type _ZN15AbstractStorage14MemfileContentD0Ev @function\n"
"_ZN15AbstractStorage14MemfileContentD0Ev:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage14MemfileContentD0Ev]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage14MemfileContentD1Ev;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage14MemfileContentD1Ev\n"
".type _ZN15AbstractStorage14MemfileContentD1Ev @function\n"
"_ZN15AbstractStorage14MemfileContentD1Ev:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage14MemfileContentD1Ev]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage14MemfileContentD2Ev;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage14MemfileContentD2Ev\n"
".type _ZN15AbstractStorage14MemfileContentD2Ev @function\n"
"_ZN15AbstractStorage14MemfileContentD2Ev:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage14MemfileContentD2Ev]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage14StorageManager10GetStorageERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_7StorageEE;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage14StorageManager10GetStorageERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_7StorageEE\n"
".type _ZN15AbstractStorage14StorageManager10GetStorageERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_7StorageEE @function\n"
"_ZN15AbstractStorage14StorageManager10GetStorageERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_7StorageEE:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage14StorageManager10GetStorageERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_7StorageEE]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage14StorageManager10InitializeEv;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage14StorageManager10InitializeEv\n"
".type _ZN15AbstractStorage14StorageManager10InitializeEv @function\n"
"_ZN15AbstractStorage14StorageManager10InitializeEv:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage14StorageManager10InitializeEv]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage14StorageManager11GetInstanceERNS_12MemAllocatorEPv;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage14StorageManager11GetInstanceERNS_12MemAllocatorEPv\n"
".type _ZN15AbstractStorage14StorageManager11GetInstanceERNS_12MemAllocatorEPv @function\n"
"_ZN15AbstractStorage14StorageManager11GetInstanceERNS_12MemAllocatorEPv:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage14StorageManager11GetInstanceERNS_12MemAllocatorEPv]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage14StorageManager11GetInstanceEv;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage14StorageManager11GetInstanceEv\n"
".type _ZN15AbstractStorage14StorageManager11GetInstanceEv @function\n"
"_ZN15AbstractStorage14StorageManager11GetInstanceEv:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage14StorageManager11GetInstanceEv]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage14StorageManager12NotifyCreateERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage14StorageManager12NotifyCreateERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb\n"
".type _ZN15AbstractStorage14StorageManager12NotifyCreateERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb @function\n"
"_ZN15AbstractStorage14StorageManager12NotifyCreateERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage14StorageManager12NotifyCreateERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage14StorageManager12NotifyRemoveERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage14StorageManager12NotifyRemoveERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb\n"
".type _ZN15AbstractStorage14StorageManager12NotifyRemoveERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb @function\n"
"_ZN15AbstractStorage14StorageManager12NotifyRemoveERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage14StorageManager12NotifyRemoveERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage14StorageManager15ReleaseInstanceEv;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage14StorageManager15ReleaseInstanceEv\n"
".type _ZN15AbstractStorage14StorageManager15ReleaseInstanceEv @function\n"
"_ZN15AbstractStorage14StorageManager15ReleaseInstanceEv:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage14StorageManager15ReleaseInstanceEv]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage14StorageManager16NotifyWriteCloseERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage14StorageManager16NotifyWriteCloseERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE\n"
".type _ZN15AbstractStorage14StorageManager16NotifyWriteCloseERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE @function\n"
"_ZN15AbstractStorage14StorageManager16NotifyWriteCloseERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage14StorageManager16NotifyWriteCloseERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage14StorageManager16RegisterListenerEPNS_17ItemEventListenerE;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage14StorageManager16RegisterListenerEPNS_17ItemEventListenerE\n"
".type _ZN15AbstractStorage14StorageManager16RegisterListenerEPNS_17ItemEventListenerE @function\n"
"_ZN15AbstractStorage14StorageManager16RegisterListenerEPNS_17ItemEventListenerE:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage14StorageManager16RegisterListenerEPNS_17ItemEventListenerE]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage14StorageManager16RegisterListenerEPNS_20StorageEventListenerE;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage14StorageManager16RegisterListenerEPNS_20StorageEventListenerE\n"
".type _ZN15AbstractStorage14StorageManager16RegisterListenerEPNS_20StorageEventListenerE @function\n"
"_ZN15AbstractStorage14StorageManager16RegisterListenerEPNS_20StorageEventListenerE:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage14StorageManager16RegisterListenerEPNS_20StorageEventListenerE]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage14StorageManager16get_storage_nameERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage14StorageManager16get_storage_nameERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE\n"
".type _ZN15AbstractStorage14StorageManager16get_storage_nameERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE @function\n"
"_ZN15AbstractStorage14StorageManager16get_storage_nameERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage14StorageManager16get_storage_nameERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage14StorageManager17NotifySetMetadataERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage14StorageManager17NotifySetMetadataERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE\n"
".type _ZN15AbstractStorage14StorageManager17NotifySetMetadataERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE @function\n"
"_ZN15AbstractStorage14StorageManager17NotifySetMetadataERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage14StorageManager17NotifySetMetadataERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage14StorageManager18GetStorageNameListEPSt6vectorISbIcSt11char_traitsIcENS_8StlAllocIcEEESaIS6_EE;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage14StorageManager18GetStorageNameListEPSt6vectorISbIcSt11char_traitsIcENS_8StlAllocIcEEESaIS6_EE\n"
".type _ZN15AbstractStorage14StorageManager18GetStorageNameListEPSt6vectorISbIcSt11char_traitsIcENS_8StlAllocIcEEESaIS6_EE @function\n"
"_ZN15AbstractStorage14StorageManager18GetStorageNameListEPSt6vectorISbIcSt11char_traitsIcENS_8StlAllocIcEEESaIS6_EE:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage14StorageManager18GetStorageNameListEPSt6vectorISbIcSt11char_traitsIcENS_8StlAllocIcEEESaIS6_EE]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage14StorageManager18UnregisterListenerEPKNS_17ItemEventListenerE;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage14StorageManager18UnregisterListenerEPKNS_17ItemEventListenerE\n"
".type _ZN15AbstractStorage14StorageManager18UnregisterListenerEPKNS_17ItemEventListenerE @function\n"
"_ZN15AbstractStorage14StorageManager18UnregisterListenerEPKNS_17ItemEventListenerE:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage14StorageManager18UnregisterListenerEPKNS_17ItemEventListenerE]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage14StorageManager18UnregisterListenerEPKNS_20StorageEventListenerE;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage14StorageManager18UnregisterListenerEPKNS_20StorageEventListenerE\n"
".type _ZN15AbstractStorage14StorageManager18UnregisterListenerEPKNS_20StorageEventListenerE @function\n"
"_ZN15AbstractStorage14StorageManager18UnregisterListenerEPKNS_20StorageEventListenerE:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage14StorageManager18UnregisterListenerEPKNS_20StorageEventListenerE]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage14StorageManager20get_service_instanceENS_11ServiceTypeE;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage14StorageManager20get_service_instanceENS_11ServiceTypeE\n"
".type _ZN15AbstractStorage14StorageManager20get_service_instanceENS_11ServiceTypeE @function\n"
"_ZN15AbstractStorage14StorageManager20get_service_instanceENS_11ServiceTypeE:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage14StorageManager20get_service_instanceENS_11ServiceTypeE]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage14StorageManager21NotifyStorageAttachedERKSbIcSt11char_traitsIcENS_8StlAllocIcEEENS_11ServiceTypeE;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage14StorageManager21NotifyStorageAttachedERKSbIcSt11char_traitsIcENS_8StlAllocIcEEENS_11ServiceTypeE\n"
".type _ZN15AbstractStorage14StorageManager21NotifyStorageAttachedERKSbIcSt11char_traitsIcENS_8StlAllocIcEEENS_11ServiceTypeE @function\n"
"_ZN15AbstractStorage14StorageManager21NotifyStorageAttachedERKSbIcSt11char_traitsIcENS_8StlAllocIcEEENS_11ServiceTypeE:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage14StorageManager21NotifyStorageAttachedERKSbIcSt11char_traitsIcENS_8StlAllocIcEEENS_11ServiceTypeE]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage14StorageManager21NotifyStorageDetachedERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage14StorageManager21NotifyStorageDetachedERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE\n"
".type _ZN15AbstractStorage14StorageManager21NotifyStorageDetachedERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE @function\n"
"_ZN15AbstractStorage14StorageManager21NotifyStorageDetachedERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage14StorageManager21NotifyStorageDetachedERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage14StorageManager4FreeEPv;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage14StorageManager4FreeEPv\n"
".type _ZN15AbstractStorage14StorageManager4FreeEPv @function\n"
"_ZN15AbstractStorage14StorageManager4FreeEPv:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage14StorageManager4FreeEPv]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage14StorageManager4LoadENS_11ServiceTypeE;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage14StorageManager4LoadENS_11ServiceTypeE\n"
".type _ZN15AbstractStorage14StorageManager4LoadENS_11ServiceTypeE @function\n"
"_ZN15AbstractStorage14StorageManager4LoadENS_11ServiceTypeE:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage14StorageManager4LoadENS_11ServiceTypeE]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage14StorageManager6MallocEm;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage14StorageManager6MallocEm\n"
".type _ZN15AbstractStorage14StorageManager6MallocEm @function\n"
"_ZN15AbstractStorage14StorageManager6MallocEm:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage14StorageManager6MallocEm]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage14StorageManager6UnloadENS_11ServiceTypeE;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage14StorageManager6UnloadENS_11ServiceTypeE\n"
".type _ZN15AbstractStorage14StorageManager6UnloadENS_11ServiceTypeE @function\n"
"_ZN15AbstractStorage14StorageManager6UnloadENS_11ServiceTypeE:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage14StorageManager6UnloadENS_11ServiceTypeE]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage14StorageManager6UpdateENS_11ServiceTypeE;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage14StorageManager6UpdateENS_11ServiceTypeE\n"
".type _ZN15AbstractStorage14StorageManager6UpdateENS_11ServiceTypeE @function\n"
"_ZN15AbstractStorage14StorageManager6UpdateENS_11ServiceTypeE:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage14StorageManager6UpdateENS_11ServiceTypeE]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage14StorageManager9TerminateEv;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage14StorageManager9TerminateEv\n"
".type _ZN15AbstractStorage14StorageManager9TerminateEv @function\n"
"_ZN15AbstractStorage14StorageManager9TerminateEv:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage14StorageManager9TerminateEv]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage14StorageManagerC1Ev;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage14StorageManagerC1Ev\n"
".type _ZN15AbstractStorage14StorageManagerC1Ev @function\n"
"_ZN15AbstractStorage14StorageManagerC1Ev:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage14StorageManagerC1Ev]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage14StorageManagerC2Ev;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage14StorageManagerC2Ev\n"
".type _ZN15AbstractStorage14StorageManagerC2Ev @function\n"
"_ZN15AbstractStorage14StorageManagerC2Ev:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage14StorageManagerC2Ev]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage14StorageManagerD1Ev;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage14StorageManagerD1Ev\n"
".type _ZN15AbstractStorage14StorageManagerD1Ev @function\n"
"_ZN15AbstractStorage14StorageManagerD1Ev:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage14StorageManagerD1Ev]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage14StorageManagerD2Ev;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage14StorageManagerD2Ev\n"
".type _ZN15AbstractStorage14StorageManagerD2Ev @function\n"
"_ZN15AbstractStorage14StorageManagerD2Ev:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage14StorageManagerD2Ev]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage15HttpTransaction15SendHttpRequestERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEiRKSt3mapIS5_S5_St4lessIS5_ESaISt4pairIS6_S5_EEEmb;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage15HttpTransaction15SendHttpRequestERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEiRKSt3mapIS5_S5_St4lessIS5_ESaISt4pairIS6_S5_EEEmb\n"
".type _ZN15AbstractStorage15HttpTransaction15SendHttpRequestERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEiRKSt3mapIS5_S5_St4lessIS5_ESaISt4pairIS6_S5_EEEmb @function\n"
"_ZN15AbstractStorage15HttpTransaction15SendHttpRequestERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEiRKSt3mapIS5_S5_St4lessIS5_ESaISt4pairIS6_S5_EEEmb:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage15HttpTransaction15SendHttpRequestERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEiRKSt3mapIS5_S5_St4lessIS5_ESaISt4pairIS6_S5_EEEmb]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage15HttpTransaction4InitEv;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage15HttpTransaction4InitEv\n"
".type _ZN15AbstractStorage15HttpTransaction4InitEv @function\n"
"_ZN15AbstractStorage15HttpTransaction4InitEv:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage15HttpTransaction4InitEv]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage15HttpTransaction4TermEv;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage15HttpTransaction4TermEv\n"
".type _ZN15AbstractStorage15HttpTransaction4TermEv @function\n"
"_ZN15AbstractStorage15HttpTransaction4TermEv:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage15HttpTransaction4TermEv]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage15HttpTransaction8SendDataEPKvm;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage15HttpTransaction8SendDataEPKvm\n"
".type _ZN15AbstractStorage15HttpTransaction8SendDataEPKvm @function\n"
"_ZN15AbstractStorage15HttpTransaction8SendDataEPKvm:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage15HttpTransaction8SendDataEPKvm]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage15HttpTransactionC1Ev;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage15HttpTransactionC1Ev\n"
".type _ZN15AbstractStorage15HttpTransactionC1Ev @function\n"
"_ZN15AbstractStorage15HttpTransactionC1Ev:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage15HttpTransactionC1Ev]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage15HttpTransactionC2Ev;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage15HttpTransactionC2Ev\n"
".type _ZN15AbstractStorage15HttpTransactionC2Ev @function\n"
"_ZN15AbstractStorage15HttpTransactionC2Ev:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage15HttpTransactionC2Ev]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage15HttpTransactionD1Ev;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage15HttpTransactionD1Ev\n"
".type _ZN15AbstractStorage15HttpTransactionD1Ev @function\n"
"_ZN15AbstractStorage15HttpTransactionD1Ev:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage15HttpTransactionD1Ev]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage15HttpTransactionD2Ev;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage15HttpTransactionD2Ev\n"
".type _ZN15AbstractStorage15HttpTransactionD2Ev @function\n"
"_ZN15AbstractStorage15HttpTransactionD2Ev:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage15HttpTransactionD2Ev]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage4Item11GetPathNameEv;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage4Item11GetPathNameEv\n"
".type _ZN15AbstractStorage4Item11GetPathNameEv @function\n"
"_ZN15AbstractStorage4Item11GetPathNameEv:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage4Item11GetPathNameEv]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage4Item11SetMetadataEPN23sceMetadataReaderWriter8MetadataE;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage4Item11SetMetadataEPN23sceMetadataReaderWriter8MetadataE\n"
".type _ZN15AbstractStorage4Item11SetMetadataEPN23sceMetadataReaderWriter8MetadataE @function\n"
"_ZN15AbstractStorage4Item11SetMetadataEPN23sceMetadataReaderWriter8MetadataE:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage4Item11SetMetadataEPN23sceMetadataReaderWriter8MetadataE]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage4Item13ParseMetadataEPN23sceMetadataReaderWriter8MetadataES3_;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage4Item13ParseMetadataEPN23sceMetadataReaderWriter8MetadataES3_\n"
".type _ZN15AbstractStorage4Item13ParseMetadataEPN23sceMetadataReaderWriter8MetadataES3_ @function\n"
"_ZN15AbstractStorage4Item13ParseMetadataEPN23sceMetadataReaderWriter8MetadataES3_:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage4Item13ParseMetadataEPN23sceMetadataReaderWriter8MetadataES3_]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage4Item14GetStorageNameEv;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage4Item14GetStorageNameEv\n"
".type _ZN15AbstractStorage4Item14GetStorageNameEv @function\n"
"_ZN15AbstractStorage4Item14GetStorageNameEv:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage4Item14GetStorageNameEv]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage4Item6RenameERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage4Item6RenameERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE\n"
".type _ZN15AbstractStorage4Item6RenameERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE @function\n"
"_ZN15AbstractStorage4Item6RenameERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage4Item6RenameERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage4Item7GetNameERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage4Item7GetNameERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE\n"
".type _ZN15AbstractStorage4Item7GetNameERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE @function\n"
"_ZN15AbstractStorage4Item7GetNameERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage4Item7GetNameERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage4Item7GetNameEv;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage4Item7GetNameEv\n"
".type _ZN15AbstractStorage4Item7GetNameEv @function\n"
"_ZN15AbstractStorage4Item7GetNameEv:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage4Item7GetNameEv]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage4Item8set_metaERN23sceMetadataReaderWriter8MetadataERKSbIcSt11char_traitsIcENS_8StlAllocIcEEESA_;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage4Item8set_metaERN23sceMetadataReaderWriter8MetadataERKSbIcSt11char_traitsIcENS_8StlAllocIcEEESA_\n"
".type _ZN15AbstractStorage4Item8set_metaERN23sceMetadataReaderWriter8MetadataERKSbIcSt11char_traitsIcENS_8StlAllocIcEEESA_ @function\n"
"_ZN15AbstractStorage4Item8set_metaERN23sceMetadataReaderWriter8MetadataERKSbIcSt11char_traitsIcENS_8StlAllocIcEEESA_:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage4Item8set_metaERN23sceMetadataReaderWriter8MetadataERKSbIcSt11char_traitsIcENS_8StlAllocIcEEESA_]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage4Item8set_metaERN23sceMetadataReaderWriter8MetadataERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEm;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage4Item8set_metaERN23sceMetadataReaderWriter8MetadataERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEm\n"
".type _ZN15AbstractStorage4Item8set_metaERN23sceMetadataReaderWriter8MetadataERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEm @function\n"
"_ZN15AbstractStorage4Item8set_metaERN23sceMetadataReaderWriter8MetadataERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEm:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage4Item8set_metaERN23sceMetadataReaderWriter8MetadataERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEm]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage4ItemC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage4ItemC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE\n"
".type _ZN15AbstractStorage4ItemC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE @function\n"
"_ZN15AbstractStorage4ItemC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage4ItemC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage4ItemD0Ev;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage4ItemD0Ev\n"
".type _ZN15AbstractStorage4ItemD0Ev @function\n"
"_ZN15AbstractStorage4ItemD0Ev:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage4ItemD0Ev]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage4ItemD1Ev;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage4ItemD1Ev\n"
".type _ZN15AbstractStorage4ItemD1Ev @function\n"
"_ZN15AbstractStorage4ItemD1Ev:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage4ItemD1Ev]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage4ItemD2Ev;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage4ItemD2Ev\n"
".type _ZN15AbstractStorage4ItemD2Ev @function\n"
"_ZN15AbstractStorage4ItemD2Ev:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage4ItemD2Ev]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage4ItemdlEPv;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage4ItemdlEPv\n"
".type _ZN15AbstractStorage4ItemdlEPv @function\n"
"_ZN15AbstractStorage4ItemdlEPv:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage4ItemdlEPv]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage4ItemnwEm;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage4ItemnwEm\n"
".type _ZN15AbstractStorage4ItemnwEm @function\n"
"_ZN15AbstractStorage4ItemnwEm:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage4ItemnwEm]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage6FolderC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage6FolderC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE\n"
".type _ZN15AbstractStorage6FolderC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE @function\n"
"_ZN15AbstractStorage6FolderC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage6FolderC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage6FolderD0Ev;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage6FolderD0Ev\n"
".type _ZN15AbstractStorage6FolderD0Ev @function\n"
"_ZN15AbstractStorage6FolderD0Ev:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage6FolderD0Ev]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage6FolderD1Ev;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage6FolderD1Ev\n"
".type _ZN15AbstractStorage6FolderD1Ev @function\n"
"_ZN15AbstractStorage6FolderD1Ev:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage6FolderD1Ev]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage6FolderD2Ev;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage6FolderD2Ev\n"
".type _ZN15AbstractStorage6FolderD2Ev @function\n"
"_ZN15AbstractStorage6FolderD2Ev:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage6FolderD2Ev]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage7AbsFreeEPv;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage7AbsFreeEPv\n"
".type _ZN15AbstractStorage7AbsFreeEPv @function\n"
"_ZN15AbstractStorage7AbsFreeEPv:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage7AbsFreeEPv]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage7Content12GetExtensionERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage7Content12GetExtensionERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE\n"
".type _ZN15AbstractStorage7Content12GetExtensionERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE @function\n"
"_ZN15AbstractStorage7Content12GetExtensionERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage7Content12GetExtensionERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage7Content12GetMimeTypesEv;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage7Content12GetMimeTypesEv\n"
".type _ZN15AbstractStorage7Content12GetMimeTypesEv @function\n"
"_ZN15AbstractStorage7Content12GetMimeTypesEv:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage7Content12GetMimeTypesEv]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage7Content6RenameERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage7Content6RenameERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE\n"
".type _ZN15AbstractStorage7Content6RenameERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE @function\n"
"_ZN15AbstractStorage7Content6RenameERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage7Content6RenameERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage7ContentC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage7ContentC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE\n"
".type _ZN15AbstractStorage7ContentC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE @function\n"
"_ZN15AbstractStorage7ContentC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage7ContentC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage7ContentD0Ev;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage7ContentD0Ev\n"
".type _ZN15AbstractStorage7ContentD0Ev @function\n"
"_ZN15AbstractStorage7ContentD0Ev:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage7ContentD0Ev]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage7ContentD1Ev;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage7ContentD1Ev\n"
".type _ZN15AbstractStorage7ContentD1Ev @function\n"
"_ZN15AbstractStorage7ContentD1Ev:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage7ContentD1Ev]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage7ContentD2Ev;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage7ContentD2Ev\n"
".type _ZN15AbstractStorage7ContentD2Ev @function\n"
"_ZN15AbstractStorage7ContentD2Ev:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage7ContentD2Ev]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage7Service11NextStorageERSbIcSt11char_traitsIcENS_8StlAllocIcEEE;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage7Service11NextStorageERSbIcSt11char_traitsIcENS_8StlAllocIcEEE\n"
".type _ZN15AbstractStorage7Service11NextStorageERSbIcSt11char_traitsIcENS_8StlAllocIcEEE @function\n"
"_ZN15AbstractStorage7Service11NextStorageERSbIcSt11char_traitsIcENS_8StlAllocIcEEE:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage7Service11NextStorageERSbIcSt11char_traitsIcENS_8StlAllocIcEEE]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage7Service13CreateStorageERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_7StorageEE;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage7Service13CreateStorageERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_7StorageEE\n"
".type _ZN15AbstractStorage7Service13CreateStorageERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_7StorageEE @function\n"
"_ZN15AbstractStorage7Service13CreateStorageERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_7StorageEE:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage7Service13CreateStorageERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_7StorageEE]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage7Service18clear_storage_listEv;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage7Service18clear_storage_listEv\n"
".type _ZN15AbstractStorage7Service18clear_storage_listEv @function\n"
"_ZN15AbstractStorage7Service18clear_storage_listEv:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage7Service18clear_storage_listEv]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage7Service4LoadENS_11ServiceTypeE;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage7Service4LoadENS_11ServiceTypeE\n"
".type _ZN15AbstractStorage7Service4LoadENS_11ServiceTypeE @function\n"
"_ZN15AbstractStorage7Service4LoadENS_11ServiceTypeE:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage7Service4LoadENS_11ServiceTypeE]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage7Service4StopEv;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage7Service4StopEv\n"
".type _ZN15AbstractStorage7Service4StopEv @function\n"
"_ZN15AbstractStorage7Service4StopEv:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage7Service4StopEv]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage7Service5StartEv;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage7Service5StartEv\n"
".type _ZN15AbstractStorage7Service5StartEv @function\n"
"_ZN15AbstractStorage7Service5StartEv:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage7Service5StartEv]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage7Service6UnLoadEPS0_;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage7Service6UnLoadEPS0_\n"
".type _ZN15AbstractStorage7Service6UnLoadEPS0_ @function\n"
"_ZN15AbstractStorage7Service6UnLoadEPS0_:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage7Service6UnLoadEPS0_]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage7ServiceC2Ev;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage7ServiceC2Ev\n"
".type _ZN15AbstractStorage7ServiceC2Ev @function\n"
"_ZN15AbstractStorage7ServiceC2Ev:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage7ServiceC2Ev]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage7ServiceD0Ev;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage7ServiceD0Ev\n"
".type _ZN15AbstractStorage7ServiceD0Ev @function\n"
"_ZN15AbstractStorage7ServiceD0Ev:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage7ServiceD0Ev]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage7ServiceD1Ev;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage7ServiceD1Ev\n"
".type _ZN15AbstractStorage7ServiceD1Ev @function\n"
"_ZN15AbstractStorage7ServiceD1Ev:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage7ServiceD1Ev]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage7ServiceD2Ev;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage7ServiceD2Ev\n"
".type _ZN15AbstractStorage7ServiceD2Ev @function\n"
"_ZN15AbstractStorage7ServiceD2Ev:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage7ServiceD2Ev]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage7StorageC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage7StorageC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE\n"
".type _ZN15AbstractStorage7StorageC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE @function\n"
"_ZN15AbstractStorage7StorageC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage7StorageC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage7StorageD0Ev;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage7StorageD0Ev\n"
".type _ZN15AbstractStorage7StorageD0Ev @function\n"
"_ZN15AbstractStorage7StorageD0Ev:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage7StorageD0Ev]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage7StorageD1Ev;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage7StorageD1Ev\n"
".type _ZN15AbstractStorage7StorageD1Ev @function\n"
"_ZN15AbstractStorage7StorageD1Ev:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage7StorageD1Ev]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage7StorageD2Ev;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage7StorageD2Ev\n"
".type _ZN15AbstractStorage7StorageD2Ev @function\n"
"_ZN15AbstractStorage7StorageD2Ev:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage7StorageD2Ev]\n");
static __attribute__ ((used)) void* __ptr__ZN15AbstractStorage9AbsMallocEm;
asm(".intel_syntax noprefix\n"
".global _ZN15AbstractStorage9AbsMallocEm\n"
".type _ZN15AbstractStorage9AbsMallocEm @function\n"
"_ZN15AbstractStorage9AbsMallocEm:\n"
"jmp qword ptr [rip + __ptr__ZN15AbstractStorage9AbsMallocEm]\n");
static __attribute__ ((used)) void* __ptr__ZNK15AbstractStorage14MemfileContent10GetServiceEv;
asm(".intel_syntax noprefix\n"
".global _ZNK15AbstractStorage14MemfileContent10GetServiceEv\n"
".type _ZNK15AbstractStorage14MemfileContent10GetServiceEv @function\n"
"_ZNK15AbstractStorage14MemfileContent10GetServiceEv:\n"
"jmp qword ptr [rip + __ptr__ZNK15AbstractStorage14MemfileContent10GetServiceEv]\n");
static __attribute__ ((used)) void* __ptr__ZNK15AbstractStorage14MemfileContent13GetCapabilityEv;
asm(".intel_syntax noprefix\n"
".global _ZNK15AbstractStorage14MemfileContent13GetCapabilityEv\n"
".type _ZNK15AbstractStorage14MemfileContent13GetCapabilityEv @function\n"
"_ZNK15AbstractStorage14MemfileContent13GetCapabilityEv:\n"
"jmp qword ptr [rip + __ptr__ZNK15AbstractStorage14MemfileContent13GetCapabilityEv]\n");
static __attribute__ ((used)) void* __ptr__ZNK15AbstractStorage14MemfileContent7GetStatEPNS_4StatE;
asm(".intel_syntax noprefix\n"
".global _ZNK15AbstractStorage14MemfileContent7GetStatEPNS_4StatE\n"
".type _ZNK15AbstractStorage14MemfileContent7GetStatEPNS_4StatE @function\n"
"_ZNK15AbstractStorage14MemfileContent7GetStatEPNS_4StatE:\n"
"jmp qword ptr [rip + __ptr__ZNK15AbstractStorage14MemfileContent7GetStatEPNS_4StatE]\n");
static __attribute__ ((used)) void* __ptr__ZNK15AbstractStorage4Item12GetThumbnailEPSt10shared_ptrINS_7ContentEE;
asm(".intel_syntax noprefix\n"
".global _ZNK15AbstractStorage4Item12GetThumbnailEPSt10shared_ptrINS_7ContentEE\n"
".type _ZNK15AbstractStorage4Item12GetThumbnailEPSt10shared_ptrINS_7ContentEE @function\n"
"_ZNK15AbstractStorage4Item12GetThumbnailEPSt10shared_ptrINS_7ContentEE:\n"
"jmp qword ptr [rip + __ptr__ZNK15AbstractStorage4Item12GetThumbnailEPSt10shared_ptrINS_7ContentEE]\n");
static __attribute__ ((used)) void* __ptr__ZNK15AbstractStorage4Item15CreateThumbnailEPvPSt10shared_ptrINS_7ContentEE;
asm(".intel_syntax noprefix\n"
".global _ZNK15AbstractStorage4Item15CreateThumbnailEPvPSt10shared_ptrINS_7ContentEE\n"
".type _ZNK15AbstractStorage4Item15CreateThumbnailEPvPSt10shared_ptrINS_7ContentEE @function\n"
"_ZNK15AbstractStorage4Item15CreateThumbnailEPvPSt10shared_ptrINS_7ContentEE:\n"
"jmp qword ptr [rip + __ptr__ZNK15AbstractStorage4Item15CreateThumbnailEPvPSt10shared_ptrINS_7ContentEE]\n");
static __attribute__ ((used)) void* __ptr__ZNK15AbstractStorage6Folder7GetTypeEv;
asm(".intel_syntax noprefix\n"
".global _ZNK15AbstractStorage6Folder7GetTypeEv\n"
".type _ZNK15AbstractStorage6Folder7GetTypeEv @function\n"
"_ZNK15AbstractStorage6Folder7GetTypeEv:\n"
"jmp qword ptr [rip + __ptr__ZNK15AbstractStorage6Folder7GetTypeEv]\n");
static __attribute__ ((used)) void* __ptr__ZNK15AbstractStorage7Content7GetTypeEv;
asm(".intel_syntax noprefix\n"
".global _ZNK15AbstractStorage7Content7GetTypeEv\n"
".type _ZNK15AbstractStorage7Content7GetTypeEv @function\n"
"_ZNK15AbstractStorage7Content7GetTypeEv:\n"
"jmp qword ptr [rip + __ptr__ZNK15AbstractStorage7Content7GetTypeEv]\n");
static __attribute__ ((used)) void* __ptr__ZNK15AbstractStorage7Storage7GetTypeEv;
asm(".intel_syntax noprefix\n"
".global _ZNK15AbstractStorage7Storage7GetTypeEv\n"
".type _ZNK15AbstractStorage7Storage7GetTypeEv @function\n"
"_ZNK15AbstractStorage7Storage7GetTypeEv:\n"
"jmp qword ptr [rip + __ptr__ZNK15AbstractStorage7Storage7GetTypeEv]\n");
static unsigned short __handle = 0;
static void __attribute__((constructor(104)))
__constructor(void) {
if(sprx_dlopen("libSceAbstractStorage", &__handle)) return;
if(sprx_dlsym(__handle, "7RnkdybfYiQ", &__ptr__ZN15AbstractStorage12Serializable12readExternalESt10shared_ptrINS_7ContentEE)) return;
if(sprx_dlsym(__handle, "gINcKTbrqk4", &__ptr__ZN15AbstractStorage12Serializable13writeExternalESt10shared_ptrINS_7ContentEE)) return;
if(sprx_dlsym(__handle, "F6tunp5+4ZM", &__ptr__ZN15AbstractStorage12SerializableC1Ev)) return;
if(sprx_dlsym(__handle, "QRnz-VjPrkY", &__ptr__ZN15AbstractStorage12SerializableC2Ev)) return;
if(sprx_dlsym(__handle, "DkAGX6EPi+g", &__ptr__ZN15AbstractStorage12SerializableD1Ev)) return;
if(sprx_dlsym(__handle, "tDhVqVa-tvU", &__ptr__ZN15AbstractStorage12SerializableD2Ev)) return;
if(sprx_dlsym(__handle, "o9RD998mN8M", &__ptr__ZN15AbstractStorage14MemfileContent12readExternalESt10shared_ptrINS_7ContentEE)) return;
if(sprx_dlsym(__handle, "KAJD5gNtjzg", &__ptr__ZN15AbstractStorage14MemfileContent13writeExternalESt10shared_ptrINS_7ContentEE)) return;
if(sprx_dlsym(__handle, "jekg6a2C-KE", &__ptr__ZN15AbstractStorage14MemfileContent14CreateInstanceESbIcSt11char_traitsIcENS_8StlAllocIcEEEN3paf6common9SharedPtrINS6_6BufferEEE)) return;
if(sprx_dlsym(__handle, "SPPYTszg6LQ", &__ptr__ZN15AbstractStorage14MemfileContent14CreateInstanceESbIcSt11char_traitsIcENS_8StlAllocIcEEEPvm)) return;
if(sprx_dlsym(__handle, "ppyod3XEauc", &__ptr__ZN15AbstractStorage14MemfileContent4OpenEit)) return;
if(sprx_dlsym(__handle, "FC7E1riolAM", &__ptr__ZN15AbstractStorage14MemfileContent4ReadEPvlPl)) return;
if(sprx_dlsym(__handle, "h64Ojqk4fbE", &__ptr__ZN15AbstractStorage14MemfileContent5CloseEv)) return;
if(sprx_dlsym(__handle, "L9n8X5qE3gI", &__ptr__ZN15AbstractStorage14MemfileContent5FlushEv)) return;
if(sprx_dlsym(__handle, "UqSO97fYNAs", &__ptr__ZN15AbstractStorage14MemfileContent5WriteEPKvlPl)) return;
if(sprx_dlsym(__handle, "nxefs8JHV5U", &__ptr__ZN15AbstractStorage14MemfileContent6RemoveEv)) return;
if(sprx_dlsym(__handle, "TI+djeSDh5s", &__ptr__ZN15AbstractStorage14MemfileContent8SeekByteEliPl)) return;
if(sprx_dlsym(__handle, "23QZTBt3E60", &__ptr__ZN15AbstractStorage14MemfileContent8SeekTimeElPl)) return;
if(sprx_dlsym(__handle, "CgSbdJjHTyc", &__ptr__ZN15AbstractStorage14MemfileContentC1ESbIcSt11char_traitsIcENS_8StlAllocIcEEEN3paf6common9SharedPtrINS6_6BufferEEE)) return;
if(sprx_dlsym(__handle, "uhxDqVGiDTY", &__ptr__ZN15AbstractStorage14MemfileContentC2ESbIcSt11char_traitsIcENS_8StlAllocIcEEEN3paf6common9SharedPtrINS6_6BufferEEE)) return;
if(sprx_dlsym(__handle, "93IuLXtj1sc", &__ptr__ZN15AbstractStorage14MemfileContentD0Ev)) return;
if(sprx_dlsym(__handle, "6g-lsIudFQY", &__ptr__ZN15AbstractStorage14MemfileContentD1Ev)) return;
if(sprx_dlsym(__handle, "r+kkC2OXw10", &__ptr__ZN15AbstractStorage14MemfileContentD2Ev)) return;
if(sprx_dlsym(__handle, "xeunZETVUSk", &__ptr__ZN15AbstractStorage14StorageManager10GetStorageERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_7StorageEE)) return;
if(sprx_dlsym(__handle, "k0BKafeYaUo", &__ptr__ZN15AbstractStorage14StorageManager10InitializeEv)) return;
if(sprx_dlsym(__handle, "iAN-9pPHZSE", &__ptr__ZN15AbstractStorage14StorageManager11GetInstanceERNS_12MemAllocatorEPv)) return;
if(sprx_dlsym(__handle, "QbKmf+2+cR0", &__ptr__ZN15AbstractStorage14StorageManager11GetInstanceEv)) return;
if(sprx_dlsym(__handle, "JWT7NbPA9Ds", &__ptr__ZN15AbstractStorage14StorageManager12NotifyCreateERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb)) return;
if(sprx_dlsym(__handle, "+fMkDXxU9E0", &__ptr__ZN15AbstractStorage14StorageManager12NotifyRemoveERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb)) return;
if(sprx_dlsym(__handle, "sFN0uAZmk04", &__ptr__ZN15AbstractStorage14StorageManager15ReleaseInstanceEv)) return;
if(sprx_dlsym(__handle, "wvDKH1RiZhU", &__ptr__ZN15AbstractStorage14StorageManager16NotifyWriteCloseERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE)) return;
if(sprx_dlsym(__handle, "FxOHF0FBNfU", &__ptr__ZN15AbstractStorage14StorageManager16RegisterListenerEPNS_17ItemEventListenerE)) return;
if(sprx_dlsym(__handle, "JvyLbYhVigM", &__ptr__ZN15AbstractStorage14StorageManager16RegisterListenerEPNS_20StorageEventListenerE)) return;
if(sprx_dlsym(__handle, "bb-T5NMDPck", &__ptr__ZN15AbstractStorage14StorageManager16get_storage_nameERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE)) return;
if(sprx_dlsym(__handle, "LPRr40DzhbA", &__ptr__ZN15AbstractStorage14StorageManager17NotifySetMetadataERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE)) return;
if(sprx_dlsym(__handle, "oIR7L2c6df8", &__ptr__ZN15AbstractStorage14StorageManager18GetStorageNameListEPSt6vectorISbIcSt11char_traitsIcENS_8StlAllocIcEEESaIS6_EE)) return;
if(sprx_dlsym(__handle, "mhLGIWhMLlk", &__ptr__ZN15AbstractStorage14StorageManager18UnregisterListenerEPKNS_17ItemEventListenerE)) return;
if(sprx_dlsym(__handle, "0Ydc18+XsSw", &__ptr__ZN15AbstractStorage14StorageManager18UnregisterListenerEPKNS_20StorageEventListenerE)) return;
if(sprx_dlsym(__handle, "piG6ktf2BTU", &__ptr__ZN15AbstractStorage14StorageManager20get_service_instanceENS_11ServiceTypeE)) return;
if(sprx_dlsym(__handle, "iLakkVdPya4", &__ptr__ZN15AbstractStorage14StorageManager21NotifyStorageAttachedERKSbIcSt11char_traitsIcENS_8StlAllocIcEEENS_11ServiceTypeE)) return;
if(sprx_dlsym(__handle, "1Ko+sKZgqqs", &__ptr__ZN15AbstractStorage14StorageManager21NotifyStorageDetachedERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE)) return;
if(sprx_dlsym(__handle, "-PYC3+W6yUE", &__ptr__ZN15AbstractStorage14StorageManager4FreeEPv)) return;
if(sprx_dlsym(__handle, "3iP9Xa6Z3z0", &__ptr__ZN15AbstractStorage14StorageManager4LoadENS_11ServiceTypeE)) return;
if(sprx_dlsym(__handle, "JREmVpFIgEY", &__ptr__ZN15AbstractStorage14StorageManager6MallocEm)) return;
if(sprx_dlsym(__handle, "kCX0k5t1v-w", &__ptr__ZN15AbstractStorage14StorageManager6UnloadENS_11ServiceTypeE)) return;
if(sprx_dlsym(__handle, "3Cp-nOwl47U", &__ptr__ZN15AbstractStorage14StorageManager6UpdateENS_11ServiceTypeE)) return;
if(sprx_dlsym(__handle, "v9CSqw6Ve0w", &__ptr__ZN15AbstractStorage14StorageManager9TerminateEv)) return;
if(sprx_dlsym(__handle, "KxTVuhlCL7o", &__ptr__ZN15AbstractStorage14StorageManagerC1Ev)) return;
if(sprx_dlsym(__handle, "YXXMdeJmxJw", &__ptr__ZN15AbstractStorage14StorageManagerC2Ev)) return;
if(sprx_dlsym(__handle, "2-S0J1RW2vQ", &__ptr__ZN15AbstractStorage14StorageManagerD1Ev)) return;
if(sprx_dlsym(__handle, "K3qnBgQ0nC4", &__ptr__ZN15AbstractStorage14StorageManagerD2Ev)) return;
if(sprx_dlsym(__handle, "rHzXUC9OHh8", &__ptr__ZN15AbstractStorage15HttpTransaction15SendHttpRequestERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEiRKSt3mapIS5_S5_St4lessIS5_ESaISt4pairIS6_S5_EEEmb)) return;
if(sprx_dlsym(__handle, "Dlri33kcH6o", &__ptr__ZN15AbstractStorage15HttpTransaction4InitEv)) return;
if(sprx_dlsym(__handle, "lH57wXDczHk", &__ptr__ZN15AbstractStorage15HttpTransaction4TermEv)) return;
if(sprx_dlsym(__handle, "xJbY3QNYIzM", &__ptr__ZN15AbstractStorage15HttpTransaction8SendDataEPKvm)) return;
if(sprx_dlsym(__handle, "tbeA-hlRlHc", &__ptr__ZN15AbstractStorage15HttpTransactionC1Ev)) return;
if(sprx_dlsym(__handle, "01BHTyfcbBs", &__ptr__ZN15AbstractStorage15HttpTransactionC2Ev)) return;
if(sprx_dlsym(__handle, "1PrEoSKt3-w", &__ptr__ZN15AbstractStorage15HttpTransactionD1Ev)) return;
if(sprx_dlsym(__handle, "MoUJZiDoHMk", &__ptr__ZN15AbstractStorage15HttpTransactionD2Ev)) return;
if(sprx_dlsym(__handle, "I69kRgYrWmY", &__ptr__ZN15AbstractStorage4Item11GetPathNameEv)) return;
if(sprx_dlsym(__handle, "GCMRCWH3PU0", &__ptr__ZN15AbstractStorage4Item11SetMetadataEPN23sceMetadataReaderWriter8MetadataE)) return;
if(sprx_dlsym(__handle, "SYb4Kmj0u88", &__ptr__ZN15AbstractStorage4Item13ParseMetadataEPN23sceMetadataReaderWriter8MetadataES3_)) return;
if(sprx_dlsym(__handle, "k2VonUL2gF8", &__ptr__ZN15AbstractStorage4Item14GetStorageNameEv)) return;
if(sprx_dlsym(__handle, "zkaNI1552m4", &__ptr__ZN15AbstractStorage4Item6RenameERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE)) return;
if(sprx_dlsym(__handle, "KAtGZCifCMo", &__ptr__ZN15AbstractStorage4Item7GetNameERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE)) return;
if(sprx_dlsym(__handle, "-sxz-ThMtGM", &__ptr__ZN15AbstractStorage4Item7GetNameEv)) return;
if(sprx_dlsym(__handle, "wyEuZhFhbOE", &__ptr__ZN15AbstractStorage4Item8set_metaERN23sceMetadataReaderWriter8MetadataERKSbIcSt11char_traitsIcENS_8StlAllocIcEEESA_)) return;
if(sprx_dlsym(__handle, "F-Tz7UzYtJ4", &__ptr__ZN15AbstractStorage4Item8set_metaERN23sceMetadataReaderWriter8MetadataERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEm)) return;
if(sprx_dlsym(__handle, "zC+hnmcVEOw", &__ptr__ZN15AbstractStorage4ItemC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE)) return;
if(sprx_dlsym(__handle, "scYjSEuq2ik", &__ptr__ZN15AbstractStorage4ItemD0Ev)) return;
if(sprx_dlsym(__handle, "QPNELEk9zkI", &__ptr__ZN15AbstractStorage4ItemD1Ev)) return;
if(sprx_dlsym(__handle, "WnE1cxQELbY", &__ptr__ZN15AbstractStorage4ItemD2Ev)) return;
if(sprx_dlsym(__handle, "Hg0GBcA80dk", &__ptr__ZN15AbstractStorage4ItemdlEPv)) return;
if(sprx_dlsym(__handle, "gid+GlhKgJM", &__ptr__ZN15AbstractStorage4ItemnwEm)) return;
if(sprx_dlsym(__handle, "oJSXws+cIv8", &__ptr__ZN15AbstractStorage6FolderC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE)) return;
if(sprx_dlsym(__handle, "GgNWVxe-YSU", &__ptr__ZN15AbstractStorage6FolderD0Ev)) return;
if(sprx_dlsym(__handle, "-1PWHzoXWyU", &__ptr__ZN15AbstractStorage6FolderD1Ev)) return;
if(sprx_dlsym(__handle, "sLg6rUpiYSM", &__ptr__ZN15AbstractStorage6FolderD2Ev)) return;
if(sprx_dlsym(__handle, "lYUGcgHYT7Y", &__ptr__ZN15AbstractStorage7AbsFreeEPv)) return;
if(sprx_dlsym(__handle, "hQiPEotip7M", &__ptr__ZN15AbstractStorage7Content12GetExtensionERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE)) return;
if(sprx_dlsym(__handle, "pekT-IsAkQU", &__ptr__ZN15AbstractStorage7Content12GetMimeTypesEv)) return;
if(sprx_dlsym(__handle, "xilbMn7q9qE", &__ptr__ZN15AbstractStorage7Content6RenameERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE)) return;
if(sprx_dlsym(__handle, "UZbuoykGKzE", &__ptr__ZN15AbstractStorage7ContentC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE)) return;
if(sprx_dlsym(__handle, "RenWwlxG9Tw", &__ptr__ZN15AbstractStorage7ContentD0Ev)) return;
if(sprx_dlsym(__handle, "JZ3wKDjl0yQ", &__ptr__ZN15AbstractStorage7ContentD1Ev)) return;
if(sprx_dlsym(__handle, "m7OSrfA7K+s", &__ptr__ZN15AbstractStorage7ContentD2Ev)) return;
if(sprx_dlsym(__handle, "spsjzV2pTSc", &__ptr__ZN15AbstractStorage7Service11NextStorageERSbIcSt11char_traitsIcENS_8StlAllocIcEEE)) return;
if(sprx_dlsym(__handle, "6Fp8jJ7A7CY", &__ptr__ZN15AbstractStorage7Service13CreateStorageERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_7StorageEE)) return;
if(sprx_dlsym(__handle, "wBaVZTLTjkg", &__ptr__ZN15AbstractStorage7Service18clear_storage_listEv)) return;
if(sprx_dlsym(__handle, "DyerRilxWZ4", &__ptr__ZN15AbstractStorage7Service4LoadENS_11ServiceTypeE)) return;
if(sprx_dlsym(__handle, "jCKhrVa9MEU", &__ptr__ZN15AbstractStorage7Service4StopEv)) return;
if(sprx_dlsym(__handle, "tIIRbXa2ZOk", &__ptr__ZN15AbstractStorage7Service5StartEv)) return;
if(sprx_dlsym(__handle, "vatp8UwS+nE", &__ptr__ZN15AbstractStorage7Service6UnLoadEPS0_)) return;
if(sprx_dlsym(__handle, "CrZTHC5yd64", &__ptr__ZN15AbstractStorage7ServiceC2Ev)) return;
if(sprx_dlsym(__handle, "IoNgvbVSw24", &__ptr__ZN15AbstractStorage7ServiceD0Ev)) return;
if(sprx_dlsym(__handle, "PEuuRn6zhF4", &__ptr__ZN15AbstractStorage7ServiceD1Ev)) return;
if(sprx_dlsym(__handle, "Ngfl7wTF7M0", &__ptr__ZN15AbstractStorage7ServiceD2Ev)) return;
if(sprx_dlsym(__handle, "tLtIJWgGINI", &__ptr__ZN15AbstractStorage7StorageC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE)) return;
if(sprx_dlsym(__handle, "4ns7J9OrJ5g", &__ptr__ZN15AbstractStorage7StorageD0Ev)) return;
if(sprx_dlsym(__handle, "aKBqHZKouts", &__ptr__ZN15AbstractStorage7StorageD1Ev)) return;
if(sprx_dlsym(__handle, "fydJOJjDxX4", &__ptr__ZN15AbstractStorage7StorageD2Ev)) return;
if(sprx_dlsym(__handle, "qtgEboQL0YE", &__ptr__ZN15AbstractStorage9AbsMallocEm)) return;
if(sprx_dlsym(__handle, "XBlKK5ijWI8", &__ptr__ZNK15AbstractStorage14MemfileContent10GetServiceEv)) return;
if(sprx_dlsym(__handle, "xP3aCoP48XI", &__ptr__ZNK15AbstractStorage14MemfileContent13GetCapabilityEv)) return;
if(sprx_dlsym(__handle, "FCSUVvY-0RM", &__ptr__ZNK15AbstractStorage14MemfileContent7GetStatEPNS_4StatE)) return;
if(sprx_dlsym(__handle, "oc6n6hdUrEM", &__ptr__ZNK15AbstractStorage4Item12GetThumbnailEPSt10shared_ptrINS_7ContentEE)) return;
if(sprx_dlsym(__handle, "Cb7xWd9-7tc", &__ptr__ZNK15AbstractStorage4Item15CreateThumbnailEPvPSt10shared_ptrINS_7ContentEE)) return;
if(sprx_dlsym(__handle, "mv9rtQAknH4", &__ptr__ZNK15AbstractStorage6Folder7GetTypeEv)) return;
if(sprx_dlsym(__handle, "ka5TVf37Akg", &__ptr__ZNK15AbstractStorage7Content7GetTypeEv)) return;
if(sprx_dlsym(__handle, "1uryzAWFUuA", &__ptr__ZNK15AbstractStorage7Storage7GetTypeEv)) return;
}
static void __attribute__((destructor(104)))
__destructor(void) {
sprx_dlclose(__handle);
}