-
Notifications
You must be signed in to change notification settings - Fork 0
/
all_files.txt
8659 lines (8659 loc) · 464 KB
/
all_files.txt
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
137562249 system/system/app/OppoCamera/OppoCamera.apk
122934758 system/system/system_ext/priv-app/Settings/Settings.apk
114693186 system/system/system_ext/priv-app/SystemUI/SystemUI.apk
114131588 system/system/apex/com.android.vndk.current.apex
87416609 system/system/apex/com.android.art.release.apex
80583807 system/system/system_ext/app/OppoEngineerCamera/OppoEngineerCamera.apk
51242704 system/system/system_ext/priv-app/SystemUI/oat/arm64/SystemUI.odex
48298568 odm/lib/libstfaceunlockppl.so
44840676 system/system/framework/framework-res.apk
39366192 vendor/lib64/egl/libGLES_mali.so
37363970 bootRE/boot.elf
36258912 system/system/framework/oat/arm64/services.odex
33554432 boot.img
33535046 system/system/framework/framework.jar
29829427 system/system/system_ext/priv-app/OppoLauncher/OppoLauncher.apk
29795668 system/system/system_ext/app/WallpaperChooser/WallpaperChooser.apk
28109412 vendor/lib/egl/libGLES_mali.so
27516977 vendor/recovery-from-boot.p
26731482 system/system/system_ext/app/OppoEngineerMode/OppoEngineerMode.apk
25550422 system/system/system_ext/priv-app/TeleService/TeleService.apk
25426740 system/system/apex/com.android.i18n.apex
24806088 system/system/system_ext/priv-app/OppoLauncher/oat/arm64/OppoLauncher.odex
24776440 system/system/fonts/NotoSerifCJK-Regular.ttc
22092332 system/system/fonts/SysSans-Hans-Regular.ttf
21987765 system/system/system_ext/app/SafeCenter/SafeCenter.apk
20332200 system/system/fonts/NotoSansCJK-Regular.ttc
19736512 bootimg/02_dtbdump_MT6785.dtb
19144998 system/system/apex/com.google.android.media.swcodec.apex
19068608 system/system/lib64/libLLVM_android.so
18219718 system/system/framework/services.jar
16863744 vendor/lib64/libcvface_api.so
16622065 system/system/system_ext/priv-app/DownloaderCenterUI/DownloaderCenterUI.apk
16568928 system/system/system_ext/priv-app/Telecom/oat/arm64/Telecom.odex
16298575 system/system/system_ext/framework/oplus-framework-res.apk
15852122 system/system/system_ext/priv-app/OppoWirelessSettings/OppoWirelessSettings.apk
15585552 vendor/lib64/libarmnn_ndk.mtk.so
15585552 system/system/system_ext/lib64/libarmnn_ndk.mtk.so
15535752 vendor/lib/libcvface_api.so
14440826 system/system/system_ext/app/NotificationCenter/NotificationCenter.apk
14056667 system/system/system_ext/app/LogKit/LogKit.apk
13889118 system/system/system_ext/app/OTA/OTA.apk
13737480 vendor/lib/libarmnn_ndk.mtk.so
13737480 system/system/system_ext/lib/libarmnn_ndk.mtk.so
13235311 system/system/system_ext/priv-app/Telecom/Telecom.apk
13122204 system/system/apex/com.android.permission.apex
12895546 boot/kernel
12809605 system/system/system_ext/app/OppoGuardElf/OppoGuardElf.apk
12757021 bootimg/00_kernel
12676104 vendor/lib64/libarmnn.so
12612704 system/system/system_ext/priv-app/OppoSimSettings/OppoSimSettings.apk
12487528 system/system/framework/arm64/boot-framework.oat
12355632 system/system/system_ext/app/OppoGestureUI/OppoGestureUI.apk
11914976 vendor/lib64/libstface_fd_api.so
11670581 system/system/system_ext/app/UXDesign/UXDesign.apk
11637128 vendor/lib/libstface_fd_api.so
11629736 vendor/lib64/libPolarrRender.so
11588340 vendor/etc/voicecommand/training/ubmfile/keyword03/it-IT/p2/antiCmds/Model4.bin
11588340 vendor/etc/voicecommand/training/ubmfile/keyword03/it-IT/p2.3/antiCmds/Model4.bin
11588340 vendor/etc/voicecommand/training/ubmfile/keyword03/hi-IN/p2/antiCmds/Model4.bin
11588340 vendor/etc/voicecommand/training/ubmfile/keyword03/hi-IN/p2.3/antiCmds/Model4.bin
11588340 vendor/etc/voicecommand/training/ubmfile/keyword03/fr-FR/p2/antiCmds/Model4.bin
11588340 vendor/etc/voicecommand/training/ubmfile/keyword03/fr-FR/p2.3/antiCmds/Model4.bin
11588340 vendor/etc/voicecommand/training/ubmfile/keyword03/en-US/p2/antiCmds/Model4.bin
11588340 vendor/etc/voicecommand/training/ubmfile/keyword03/en-US/p2.3/antiCmds/Model4.bin
11588340 vendor/etc/voicecommand/training/ubmfile/keyword03/en-IN/p2/antiCmds/Model4.bin
11588340 vendor/etc/voicecommand/training/ubmfile/keyword03/en-IN/p2.3/antiCmds/Model4.bin
11588340 vendor/etc/voicecommand/training/ubmfile/keyword03/en-GB/p2/antiCmds/Model4.bin
11588340 vendor/etc/voicecommand/training/ubmfile/keyword03/en-GB/p2.3/antiCmds/Model4.bin
11588340 vendor/etc/voicecommand/training/ubmfile/keyword03/en-ES/p2/antiCmds/Model4.bin
11588340 vendor/etc/voicecommand/training/ubmfile/keyword03/en-ES/p2.3/antiCmds/Model4.bin
11588340 vendor/etc/voicecommand/training/ubmfile/keyword03/de-DE/p2/antiCmds/Model4.bin
11588340 vendor/etc/voicecommand/training/ubmfile/keyword03/de-DE/p2.3/antiCmds/Model4.bin
11395765 system/system/system_ext/app/SecurityPermission/SecurityPermission.apk
11305604 vendor/lib/libPolarrRender.so
11236595 system/system/system_ext/app/OTrace/OTrace.apk
11182352 vendor/etc/camera/gasryuv.model
11091056 vendor/lib64/libnir_neon_driver_ndk.mtk.so
11091056 system/system/system_ext/lib64/libnir_neon_driver_ndk.mtk.so
10758564 system/system/fonts/SysSans-Hant-Regular.ttf
10720533 my_product/priv-app/MTKFM/MTKFM.apk
10630223 system/system/media/themeInner/1-Simplicity.theme
10567752 system/system/system_ext/lib/libavcodec.so
10567752 odm/lib/libavcodec.so
10523293 system/system/app/MtkBluetooth/MtkBluetooth.apk
10379732 system/system/framework/arm/boot-framework.oat
10295056 vendor/lib64/libarcsoft_scbokeh_image.so
10275040 vendor/lib64/libcamalgo.fdft.so
10267184 vendor/lib/libcamalgo.fdft.so
10126288 system/system/system_ext/lib64/libavcodec.so
10126288 odm/lib64/libavcodec.so
9961251 system/system/system_ext/app/NfcNci/NfcNci.apk
9950296 system/system/priv-app/ManagedProvisioning/ManagedProvisioning.apk
9767384 system/system/lib64/libhwui.so
9723244 system/system/fonts/NotoColorEmoji.ttf
8958442 system/system/apex/com.google.android.permission.apex
8769134 system/system/system_ext/app/HTMLViewer/HTMLViewer.apk
8724112 vendor/lib64/libnir_neon_driver.so
8504232 vendor/lib64/libcmdl_ndk.mtk.so
8504232 system/system/system_ext/lib64/libcmdl_ndk.mtk.so
8388100 system/system/system_ext/priv-app/SettingsIntelligence/SettingsIntelligence.apk
8264606 system/system/system_ext/priv-app/ContactsProvider/ContactsProvider.apk
8218643 system/system/system_ext/priv-app/DeepThinker/DeepThinker.apk
8089902 system/system/apex/com.google.android.adbd.apex
8043416 vendor/lib64/libarcsoft_dualcam_refocus_left.so
7954400 system/system/lib64/libbluetooth.so
7851648 system/system/system_ext/lib64/libnative.so
7686400 vendor/lib64/salaa_qtech_main_s5kgm1sp_tuning.so
7660727 system/system/system_ext/app/OppoMultiApp/OppoMultiApp.apk
7627872 vendor/lib64/sarter_qtech_main_s5kgm1sp_tuning.so
7552860 vendor/lib/libarcsoft_dualcam_refocus_left.so
7551632 system/system/priv-app/AppPlatform/AppPlatform.apk
7526664 system/system/system_ext/lib64/libaiboost.so
7471560 system/system/system_ext/bin/SecrecyAutoUnlocker
7427552 system/system/lib/libhwui.so
7390416 vendor/lib64/imx471_mipi_raw1_tuning.so
7386896 system/system/framework/oat/arm64/oplus-services.odex
7362344 vendor/lib/libnir_neon_driver_ndk.mtk.so
7362344 system/system/system_ext/lib/libnir_neon_driver_ndk.mtk.so
7357474 system/system/system_ext/priv-app/BuiltInPrintService/BuiltInPrintService.apk
7344344 vendor/lib64/libmegface_rt_bokeh.so
7267843 system/system/system_ext/app/Stk/Stk.apk
7129632 vendor/lib64/sala_wide_ov8856_tuning.so
7099173 system/system/system_ext/app/PrintSpooler/PrintSpooler.apk
7089580 system/system/apex/com.google.android.cellbroadcast.apex
7051280 vendor/lib/salaa_qtech_main_s5kgm1sp_tuning.so
7006960 vendor/lib/sarter_qtech_main_s5kgm1sp_tuning.so
7004579 system/system/app/Traceur/Traceur.apk
6903472 system/system/priv-app/EngineerMode/EngineerMode.apk
6845016 system/system/system_ext/app/SystemAppUpdateService/SystemAppUpdateService.apk
6777972 vendor/lib/imx471_mipi_raw1_tuning.so
6597616 vendor/lib/sala_wide_ov8856_tuning.so
6574099 system/system/system_ext/priv-app/StorageManager/StorageManager.apk
6564680 vendor/etc/voicecommand/training/ubmfile/keyword03/it-IT/p2/antiCmds/Model1.bin
6564680 vendor/etc/voicecommand/training/ubmfile/keyword03/it-IT/p2.3/antiCmds/Model1.bin
6564680 vendor/etc/voicecommand/training/ubmfile/keyword03/hi-IN/p2/antiCmds/Model1.bin
6564680 vendor/etc/voicecommand/training/ubmfile/keyword03/hi-IN/p2.3/antiCmds/Model1.bin
6564680 vendor/etc/voicecommand/training/ubmfile/keyword03/fr-FR/p2/antiCmds/Model1.bin
6564680 vendor/etc/voicecommand/training/ubmfile/keyword03/fr-FR/p2.3/antiCmds/Model1.bin
6564680 vendor/etc/voicecommand/training/ubmfile/keyword03/en-US/p2/antiCmds/Model1.bin
6564680 vendor/etc/voicecommand/training/ubmfile/keyword03/en-US/p2.3/antiCmds/Model1.bin
6564680 vendor/etc/voicecommand/training/ubmfile/keyword03/en-IN/p2/antiCmds/Model1.bin
6564680 vendor/etc/voicecommand/training/ubmfile/keyword03/en-IN/p2.3/antiCmds/Model1.bin
6564680 vendor/etc/voicecommand/training/ubmfile/keyword03/en-GB/p2/antiCmds/Model1.bin
6564680 vendor/etc/voicecommand/training/ubmfile/keyword03/en-GB/p2.3/antiCmds/Model1.bin
6564680 vendor/etc/voicecommand/training/ubmfile/keyword03/en-ES/p2/antiCmds/Model1.bin
6564680 vendor/etc/voicecommand/training/ubmfile/keyword03/en-ES/p2.3/antiCmds/Model1.bin
6564680 vendor/etc/voicecommand/training/ubmfile/keyword03/de-DE/p2/antiCmds/Model1.bin
6564680 vendor/etc/voicecommand/training/ubmfile/keyword03/de-DE/p2.3/antiCmds/Model1.bin
6419228 vendor/lib/libcmdl_ndk.mtk.so
6419228 system/system/system_ext/lib/libcmdl_ndk.mtk.so
6377128 system/system/system_ext/lib64/libYouMeMagicVoice.so
6315324 vendor/lib/libnir_neon_driver.so
6281717 system/system/system_ext/app/OppoExServiceUI/OppoExServiceUI.apk
6063741 system/system/system_ext/app/Athena/Athena.apk
6044846 vendor/etc/camera/merged_model_post
6033006 system/system/system_ext/app/ColorEyeProtect/ColorEyeProtect.apk
5905367 system/system/system_ext/app/CertInstaller/CertInstaller.apk
5773484 system/system/system_ext/lib/libYouMeMagicVoice.so
5740982 system/system/apex/com.android.runtime.apex
5644624 system/system/apex/com.google.android.neuralnetworks.apex
5633956 vendor/etc/asd/detect.tflite
5608810 system/system/system_ext/priv-app/VpnDialogs/VpnDialogs.apk
5509024 system/system/system_ext/lib/libaiboost.so
5466924 my_product/overlay/SystemUIFingerprintRes_JSLZ/SystemUIFingerprintRes_JSLZ.apk
5405805 system/system/priv-app/ImsService/ImsService.apk
5335736 vendor/lib64/liboppo_aisd.so
5323241 system/system/system_ext/app/OsCenter/OsCenter.apk
5284150 system/system/apex/com.google.android.media.apex
5221904 system/system/apex/com.android.wifi.apex
5178718 system/system/priv-app/DocumentsUIGoogle/DocumentsUIGoogle.apk
5055517 system/system/system_ext/priv-app/MmsService/MmsService.apk
5009797 system/system/apex/com.google.android.conscrypt.apex
5003208 system/system/lib64/libpdfium.so
4755774 vendor/lib/modules/wlan_drv_gen4m.ko
4674480 system/system/lib/libpdfium.so
4645064 system/system/lib/libbluetooth.so
4628120 system/system/system_ext/lib64/libBitmapCmp.so
4463310 system/system/app/EasterEgg/EasterEgg.apk
4416796 vendor/lib/libmnl.so
4365200 vendor/lib64/libmtk-ril.so
4337788 my_product/overlay/SystemUIFingerprintRes_CCYH/SystemUIFingerprintRes_CCYH.apk
4268521 system/system/apex/com.google.android.extservices.apex
4173448 vendor/lib64/libarcsoft_low_light_hdr.so
4130810 odm/etc/audio/file112.wav
4093104 system/system/system_ext/priv-app/TelephonyProvider/TelephonyProvider.apk
4088295 system/system/apex/com.google.android.mediaprovider.apex
4077816 vendor/lib64/s5kgm1sp_mipi_raw_tuning.so
4046848 system/system/framework/arm64/boot-framework.art
4026827 vendor/res/images/lcd_test_01.png
4016944 vendor/lib64/imx682_mipi_raw_tuning.so
4013024 vendor/lib64/libFaceBeautyCap.so
4012744 vendor/lib64/libCamera_gc2375hmipiraw19661_Reserved.so
3998800 vendor/lib64/s5kgw1_mipi_raw_tuning.so
3959496 vendor/lib64/libCamera_ov02b10mipiraw_Reserved.so
3939852 system/system/fonts/DroidSansFallback.ttf
3937202 system/system/framework/oplus-services.jar
3919176 vendor/lib/libCamera_gc2375hmipiraw19661_Reserved.so
3911680 system/system/framework/arm/boot-framework.art
3902152 vendor/lib64/libCamera_gc02k0mipiraw_Reserved.so
3864484 vendor/lib/libCamera_ov02b10mipiraw_Reserved.so
3808660 vendor/lib/libCamera_gc02k0mipiraw_Reserved.so
3794898 vendor/etc/file112.wav
3778311 system/system/system_ext/app/OppoEngineerNetwork/OppoEngineerNetwork.apk
3754704 vendor/lib64/libCamera_ov02b1bmipimono_Reserved.so
3750576 vendor/lib64/libarcsoft_high_dynamic_range_couple.so
3742416 vendor/lib64/libCamera_gc02m0mipimono_Reserved.so
3740064 vendor/lib64/s5k3p9sp_mipi_raw_tuning.so
3709480 vendor/lib64/libarcsoft_high_dynamic_range.so
3708570 system/system/framework/telephony-common.jar
3665444 vendor/lib/libCamera_ov02b1bmipimono_Reserved.so
3655324 vendor/lib/libCamera_gc02m0mipimono_Reserved.so
3521056 vendor/lib64/ov8856_mipi_raw_tuning.so
3469632 vendor/lib64/libneuropilot_jni_R.so
3469608 system/system/lib64/libneuropilot_jni_R.so
3448345 odm/vendor/app/mcRegistry/05060000000000000000000000000000.tabin
3444616 system/system/lib64/libtflite_mtk_static_R.so
3444456 vendor/lib64/libtflite_mtk_static_R.so
3443092 vendor/lib/s5kgm1sp_mipi_raw_tuning.so
3411352 system/system/app/OVoiceManagerService_18073/lib/arm64/libvprint.so
3399350 vendor/lib/modules/kheaders.ko
3390360 vendor/lib64/libarcsoft_dualcam_refocus_right.so
3389872 vendor/lib/imx682_mipi_raw_tuning.so
3375132 vendor/lib/s5kgw1_mipi_raw_tuning.so
3305728 odm/lib64/libcalibverifyW_T.so
3266652 vendor/etc/asd/class.tflite
3245837 system/system/system_ext/framework/oppo-wifi-service.jar
3218928 system/system/system_ext/app/OVoiceManagerService/lib/arm64/libvprint.so
3204655 system/system/priv-app/GooglePackageInstaller/GooglePackageInstaller.apk
3140308 vendor/lib/s5k3p9sp_mipi_raw_tuning.so
3107585 system/system/system_ext/app/Shelper/Shelper.apk
3097296 vendor/lib64/libcam.hal3a.v3.so
3045312 system/system/system_ext/lib64/libtflite_mtk.mtk.so
3024184 system/system/lib64/libtflite_mtk.so
3024160 vendor/lib64/libtflite_mtk.so
3024152 vendor/lib64/ov02b1b_mipi_mono_tuning.so
3011864 vendor/lib64/gc02m0_mipi_mono_tuning.so
2990328 vendor/lib64/gc2375h_mipi_raw_19661_tuning.so
2989708 vendor/lib/ov8856_mipi_raw_tuning.so
2987144 vendor/bin/hw/wpa_supplicant
2980544 vendor/lib64/libCamera_ov8856mipiraw_Reserved.so
2970952 odm/lib64/libgf_hal_G3.so
2965340 vendor/lib/libarcsoft_dualcam_refocus_right.so
2929280 vendor/bin/hw/android.hardware.neuralnetworks@1.3-service-mtk-neuron
2928832 vendor/lib64/ov02b10_mipi_raw_tuning.so
2917347 my_product/decouping_wallpaper/default/oppo_default_wallpaper_lock.png
2917347 my_product/decouping_wallpaper/default/oppo_default_wallpaper.png
2901516 vendor/lib/libCamera_ov8856mipiraw_Reserved.so
2897936 vendor/etc/camera/M_Attribute_Gender_Age_1.0.model
2890352 odm/lib64/libgf_hal_G2.so
2886344 vendor/lib64/libCamera_salawideov8856_Reserved.so
2880128 vendor/lib64/gc02k0_mipi_raw_tuning.so
2874568 odm/lib/libgf_hal_G3.so
2814056 vendor/lib64/vendor.mediatek.hardware.mtkradioex@2.0.so
2811908 vendor/lib/libCamera_salawideov8856_Reserved.so
2811314 system/system/system_ext/app/CrashBox/CrashBox.apk
2806244 odm/lib/libgf_hal_G2.so
2800062 my_product/decouping_wallpaper/common/inlay_wallpaper1.png
2745760 system/system/system_ext/lib64/libnq330nfc_nci.so
2714032 vendor/lib64/libMegviiHumBokehPost-mtk.so
2689976 vendor/lib64/libmtkcam_hwnode.so
2685640 vendor/lib64/libCamera_s5k3p9spmipiraw_Reserved.so
2630568 system/system/bin/iorap.cmd.compiler
2629120 vendor/lib/libCamera_s5k3p9spmipiraw_Reserved.so
2598848 vendor/lib/ov02b1b_mipi_mono_tuning.so
2595528 vendor/lib64/libCamera_imx471mipiraw1_Reserved.so
2586868 vendor/lib/gc02m0_mipi_mono_tuning.so
2580836 system/system/apex/com.google.android.resolv.apex
2580156 vendor/lib/gc2375h_mipi_raw_19661_tuning.so
2565333 system/system/system_ext/priv-app/OppoExSystemService/OppoExSystemService.apk
2564256 odm/lib/libDiracAPI_SHARED.so
2544088 system/system/system_ext/lib64/vendor.mediatek.hardware.mtkradioex@1.0.so
2539008 vendor/lib/libCamera_imx471mipiraw1_Reserved.so
2520112 vendor/lib/ov02b10_mipi_raw_tuning.so
2515560 vendor/lib64/libwvhidl.so
2512656 system/system/lib64/libsurfaceflinger.so
2509160 vendor/lib64/hw/audio.primary.mt6785.so
2508209 system/system/framework/mediatek-ims-legacy.jar
2506980 vendor/lib/libcam.hal3a.v3.so
2503784 system/system/lib/libneuropilot_jni_R.so
2503496 vendor/lib/libneuropilot_jni_R.so
2487080 system/system/lib/libtflite_mtk_static_R.so
2486948 vendor/lib/libtflite_mtk_static_R.so
2473396 vendor/lib/gc02k0_mipi_raw_tuning.so
2458028 vendor/lib/hw/audio.primary.mt6785.so
2398960 vendor/lib64/libarcsoft_relighting_pro_image.so
2397552 system/system/system_ext/lib64/libsn100nfc_nci.so
2384880 vendor/lib64/mediadrm/libwvdrmengine.so
2380528 system/system/lib64/libcameraservice.so
2378440 vendor/lib64/libCamera_sarterqtechmains5kgm1sp_Reserved.so
2370240 vendor/lib64/libCamera_s5kgw1mipiraw_Reserved.so
2370064 vendor/lib64/libneuron_runtime.so
2361664 vendor/lib64/libVDSuperPhotoAPI.so
2357952 vendor/lib64/libCamera_salaaqtechmains5kgm1sp_Reserved.so
2357952 vendor/lib64/libCamera_s5kgm1spmipiraw_Reserved.so
2350568 vendor/lib64/libmtkcam.featurepipe.streaming.so
2346517 system/system/system_ext/app/PostmanService/PostmanService.apk
2337480 vendor/lib64/libCamera_imx682mipiraw_Reserved.so
2335060 vendor/lib/libCamera_sarterqtechmains5kgm1sp_Reserved.so
2332032 system/system/system_ext/lib64/libst54nfc_nci.so
2326230 system/system/framework/ext.jar
2325556 vendor/lib/libCamera_s5kgw1mipiraw_Reserved.so
2320910 system/system/framework/mediatek-telephony-common.jar
2314828 vendor/lib/libCamera_salaaqtechmains5kgm1sp_Reserved.so
2314828 vendor/lib/libCamera_s5kgm1spmipiraw_Reserved.so
2308500 system/system/system_ext/lib/libBitmapCmp.so
2293708 vendor/lib/libCamera_imx682mipiraw_Reserved.so
2281364 my_product/overlay/SystemUIFingerprintRes_XKLC/SystemUIFingerprintRes_XKLC.apk
2263744 vendor/lib64/libprotobuf-cpp-full-3.9.1.so
2263672 system/system/lib64/libprotobuf-cpp-full.so
2258428 system/system/framework/mediatek-res.apk
2257920 vendor/lib64/egl/libGLES_meow.so
2222160 vendor/lib64/libVDBlurless.so
2191408 vendor/bin/mtk_agpsd
2165788 vendor/lib/libmtkcam_hwnode.so
2164518 vendor/lib/modules/wmt_drv.ko
2152932 system/system/system_ext/lib/libtflite_mtk.mtk.so
2152656 system/system/system_ext/lib64/libneuronusdk_adapter.mtk.so
2137276 vendor/lib/libtflite_mtk.so
2137228 system/system/lib/libtflite_mtk.so
2105344 system/system/framework/oat/arm64/services.art
2101381 vendor/res/images/lcd_test_00.png
2048480 vendor/lib/libwvhidl.so
2030864 boot/ramdisk/init
2020608 system/system/lib64/libclang_rt.asan-aarch64-android.so
1980448 vendor/lib64/libcameracustom.so
1948056 vendor/lib/mediadrm/libwvdrmengine.so
1947354 system/system/system_ext/app/HealthService/HealthService.apk
1947354 my_product/app/HealthService/HealthService.apk
1928257 system/system/priv-app/CalendarProvider/CalendarProvider.apk
1920044 vendor/res/sound/ringtone.wav
1912552 system/system/system_ext/lib64/liboifacegame.so
1889798 my_product/decouping_wallpaper/common/inlay_wallpaper29.png
1885144 system/system/lib/libclang_rt.asan-arm-android.so
1873560 system/system/system_ext/app/DataMigrate/DataMigrate.apk
1871451 my_product/decouping_wallpaper/common/inlay_wallpaper28.png
1851774 system/system/apex/com.google.android.os.statsd.apex
1849240 vendor/lib/libcameracustom.so
1846101 vendor/res/images/lcd_test_02.png
1833192 vendor/etc/camera/fb_model/skinmask.bin
1833192 vendor/etc/camera/fb_model/102_pre.bin
1833192 vendor/etc/camera/fb_model/002_pre.bin
1833080 vendor/lib/libmtkcam.featurepipe.streaming.so
1832280 vendor/lib/libvpx.so
1828684 system/system/system_ext/lib/vendor.mediatek.hardware.mtkradioex@1.0.so
1819504 system/system/lib64/libstagefright.so
1787976 vendor/lib64/libcrypto-ss.so
1768576 system/system/lib64/libandroid_runtime.so
1765780 system/system/lib/libsurfaceflinger.so
1743064 vendor/lib64/libarcsoft_lensstaindetection.so
1738684 vendor/lib/libarcsoft_lensstaindetection.so
1734432 vendor/lib64/libarcsoft_distortion_correction.so
1732577 system/system/framework/mediatek-wfo-legacy.jar
1719254 system/system/priv-app/MediaProviderLegacy/MediaProviderLegacy.apk
1705496 system/system/system_ext/lib/libneuronusdk_adapter.mtk.so
1689406 system/system/system_ext/priv-app/CustCoreApp/CustCoreApp.apk
1669192 vendor/lib64/libcrypto-md.so
1661413 my_product/overlay/CellBroadcastReceiverModuleOverlay.apk
1620896 system/system/system_ext/framework/oplus-telephony-common.jar
1617835 vendor/etc/voicecommand/training/ubmfile/keyword03/it-IT/p2.5/n2
1617835 vendor/etc/voicecommand/training/ubmfile/keyword03/it-IT/p2.5/n0
1617835 vendor/etc/voicecommand/training/ubmfile/keyword03/hi-IN/p2.5/n2
1617835 vendor/etc/voicecommand/training/ubmfile/keyword03/hi-IN/p2.5/n0
1617835 vendor/etc/voicecommand/training/ubmfile/keyword03/fr-FR/p2.5/n2
1617835 vendor/etc/voicecommand/training/ubmfile/keyword03/fr-FR/p2.5/n0
1617835 vendor/etc/voicecommand/training/ubmfile/keyword03/en-US/p2.5/n2
1617835 vendor/etc/voicecommand/training/ubmfile/keyword03/en-US/p2.5/n0
1617835 vendor/etc/voicecommand/training/ubmfile/keyword03/en-IN/p2.5/n2
1617835 vendor/etc/voicecommand/training/ubmfile/keyword03/en-IN/p2.5/n0
1617835 vendor/etc/voicecommand/training/ubmfile/keyword03/en-GB/p2.5/n2
1617835 vendor/etc/voicecommand/training/ubmfile/keyword03/en-GB/p2.5/n0
1617835 vendor/etc/voicecommand/training/ubmfile/keyword03/en-ES/p2.5/n2
1617835 vendor/etc/voicecommand/training/ubmfile/keyword03/en-ES/p2.5/n0
1617835 vendor/etc/voicecommand/training/ubmfile/keyword03/de-DE/p2.5/n2
1617835 vendor/etc/voicecommand/training/ubmfile/keyword03/de-DE/p2.5/n0
1609776 system/system/lib/libprotobuf-cpp-full.so
1609748 vendor/lib/libprotobuf-cpp-full-3.9.1.so
1607270 system/system/system_ext/priv-app/BlockedNumberProvider/BlockedNumberProvider.apk
1601813 system/system/system_ext/app/OppoPowerMonitor/OppoPowerMonitor.apk
1580526 system/system/system_ext/etc/selinux/plat_sepolicy_debug.cil
1579686 system/system/etc/selinux/plat_sepolicy.cil
1560522 system/system/priv-app/MtpService/MtpService.apk
1531401 odm/vendor/app/mcRegistry/04010000000000000000000000000007.tlbin
1507868 system/system/lib/libcameraservice.so
1498600 vendor/lib64/libmtkcam.featurepipe.capture.so
1491581 my_product/decouping_wallpaper/common/inlay_wallpaper26.png
1488676 vendor/bin/volte_ua
1482427 system/system/priv-app/SoundPicker/SoundPicker.apk
1466616 vendor/lib/egl/libGLES_meow.so
1456296 vendor/lib64/libneuron_adapter.so
1451464 system/system/bin/bootstrap/linker64
1446016 vendor/lib64/libmtkcam.featurepipe.depthmap.so
1432600 system/system/system_ext/lib64/libgpustress_eng.so
1428438 system/system/priv-app/CellBroadcastLegacyApp/CellBroadcastLegacyApp.apk
1413430 vendor/app/EmCamera/EmCamera.apk
1396280 vendor/etc/camera/fb_model/112_pre.bin
1396280 vendor/etc/camera/fb_model/012_pre.bin
1379432 system/system/lib64/libmediaplayerservice.so
1352592 system/system/bin/init
1347008 vendor/lib64/libdpframework.so
1331472 vendor/etc/camera/M_Attribute_AG_BMW_1.1.0.model
1327768 system/system/app/OVoiceManagerService_18073/lib/arm64/libfespl.so
1323864 system/system/lib64/android.hardware.radio@1.5.so
1320428 my_product/decouping_wallpaper/common/inlay_wallpaper23.png
1308720 system/system/lib64/android.hardware.radio@1.0.so
1293803 my_product/overlay/SystemUIFingerprintRes_NLGS/SystemUIFingerprintRes_NLGS.apk
1290952 vendor/lib64/libmtkcam_metastore.so
1275048 system/system/lib64/libxml2.so
1260144 system/system/lib64/libaudioflinger.so
1257531 my_product/media/bootanimation/bootanimation.zip
1249848 system/system/lib64/libchrome.so
1243356 system/system/lib/libandroid_runtime.so
1240040 vendor/lib64/salaa_qtech_main_s5kgm1sp_IdxMgr.so
1240040 vendor/lib64/s5kgm1sp_mipi_raw_IdxMgr.so
1235200 system/system/lib64/android.hardware.audio.effect@2.0.so
1231112 system/system/lib64/android.hardware.audio.effect@5.0.so
1231048 system/system/lib64/android.hardware.audio.effect@6.0.so
1231032 system/system/lib64/android.hardware.audio.effect@4.0.so
1226064 system/system/lib64/libsqlite.so
1205144 system/system/bin/iorapd
1203712 vendor/lib64/imx682_mipi_raw_IdxMgr.so
1202091 my_product/decouping_wallpaper/common/inlay_wallpaper25.png
1198904 system/system/system_ext/lib/libavformat.so
1198904 odm/lib/libavformat.so
1193024 system/system/lib64/bootstrap/libc.so
1190056 vendor/lib64/libarcsoft_hdr_denoise_api.so
1189760 system/system/system_ext/lib64/libavformat.so
1189760 odm/lib64/libavformat.so
1185608 vendor/lib64/sarter_qtech_main_s5kgm1sp_IdxMgr.so
1185600 vendor/lib64/s5kgw1_mipi_raw_IdxMgr.so
1177209 vendor/etc/selinux/vendor_sepolicy_debug.cil
1176796 vendor/etc/selinux/vendor_sepolicy.cil
1173192 system/system/bin/simpleperf
1159360 system/system/lib64/libbcinfo.so
1156616 system/system/lib64/libblas.so
1150732 vendor/lib/libcrypto-ss.so
1148608 system/system/system_ext/bin/oppo_adbd
1145712 vendor/lib64/libmtkcam.logicalmodule.so
1145480 system/system/bin/vold
1140670 vendor/lib/modules/met.ko
1140384 system/system/lib64/libcrypto.so
1135644 vendor/lib/libmtkcam.featurepipe.depthmap.so
1132592 system/system/lib64/android.hardware.radio@1.4.so
1126664 vendor/lib/libmtkcam.featurepipe.capture.so
1124700 system/system/lib64/libclcore_g.bc
1109745 system/system/media/audio/ringtones/ringtone_026.ogg
1109078 my_product/decouping_wallpaper/common/inlay_wallpaper16.png
1108128 vendor/lib64/imx471_mipi_raw1_IdxMgr.so
1106160 system/system/system_ext/bin/trace
1083920 vendor/bin/hw/hostapd
1080536 system/system/lib64/libperfetto.so
1077160 system/system/lib64/libclcore_debug_g.bc
1075426 vendor/etc/voicecommand/training/ubmfile/keyword03/it-IT/supplement/13
1075426 vendor/etc/voicecommand/training/ubmfile/keyword03/hi-IN/supplement/13
1075426 vendor/etc/voicecommand/training/ubmfile/keyword03/fr-FR/supplement/13
1075426 vendor/etc/voicecommand/training/ubmfile/keyword03/en-US/supplement/13
1075426 vendor/etc/voicecommand/training/ubmfile/keyword03/en-IN/supplement/13
1075426 vendor/etc/voicecommand/training/ubmfile/keyword03/en-GB/supplement/13
1075426 vendor/etc/voicecommand/training/ubmfile/keyword03/en-ES/supplement/13
1075426 vendor/etc/voicecommand/training/ubmfile/keyword03/de-DE/supplement/13
1067372 system/system/lib/libclcore_g.bc
1061604 system/system/bin/bootstrap/linker
1060899 bootimg/01_dtbdump_MT6785.dtb
1055601 my_product/overlay/SystemUIFingerprintRes_TYJW/SystemUIFingerprintRes_TYJW.apk
1054096 vendor/lib64/s5k3p9sp_mipi_raw_IdxMgr.so
1052428 vendor/lib/libcrypto-md.so
1049067 system/system/apex/com.google.android.tethering.apex
1042672 system/system/system_ext/xbin/xkit_10
1039152 vendor/etc/selinux/plat_pub_versioned_debug.cil
1037152 system/system/lib64/libgui.so
1035376 system/system/lib64/android.hardware.radio@1.2.so
1034186 vendor/etc/selinux/precompiled_sepolicy_debug
1031388 vendor/etc/selinux/precompiled_sepolicy
1029816 system/system/lib64/service.incremental.so
1021200 system/system/lib64/libclang_rt.ubsan_standalone-aarch64-android.so
1020488 system/system/app/OVoiceManagerService_18073/lib/arm64/libwakeup.so
1019956 system/system/lib/libstagefright.so
1018480 vendor/lib/libdpframework.so
1016820 system/system/lib/bootstrap/libc.so
1015212 vendor/lib/libmtkcam_metastore.so
1012284 vendor/lib/libvcodecdrv.so
1008168 system/system/system_ext/lib64/liboiface.so
1005608 odm/lib/soundfx/libdiraceffect.so
1003203 vendor/etc/selinux/plat_pub_versioned.cil
988952 vendor/lib/salaa_qtech_main_s5kgm1sp_IdxMgr.so
988940 vendor/lib/s5kgm1sp_mipi_raw_IdxMgr.so
986152 system/system/lib64/libaudiopolicymanagerdefault.so
983413 my_product/decouping_wallpaper/common/inlay_wallpaper7.png
974765 system/system/system_ext/media/audio/ui/weather_alarm_sun3.ogg
969776 system/system/lib64/android.hardware.radio@1.3.so
966360 system/system/system_ext/media/audio/ui/weather_alarm_snow2.ogg
966067 system/system/apex/com.google.android.tzdata2.apex
962108 vendor/etc/voicecommand/training/ubmfile/keyword03/it-IT/supplement/12
962108 vendor/etc/voicecommand/training/ubmfile/keyword03/hi-IN/supplement/12
962108 vendor/etc/voicecommand/training/ubmfile/keyword03/fr-FR/supplement/12
962108 vendor/etc/voicecommand/training/ubmfile/keyword03/en-US/supplement/12
962108 vendor/etc/voicecommand/training/ubmfile/keyword03/en-IN/supplement/12
962108 vendor/etc/voicecommand/training/ubmfile/keyword03/en-GB/supplement/12
962108 vendor/etc/voicecommand/training/ubmfile/keyword03/en-ES/supplement/12
962108 vendor/etc/voicecommand/training/ubmfile/keyword03/de-DE/supplement/12
960742 vendor/etc/voicecommand/training/ubmfile/keyword03/it-IT/supplement/8
960742 vendor/etc/voicecommand/training/ubmfile/keyword03/hi-IN/supplement/8
960742 vendor/etc/voicecommand/training/ubmfile/keyword03/fr-FR/supplement/8
960742 vendor/etc/voicecommand/training/ubmfile/keyword03/en-US/supplement/8
960742 vendor/etc/voicecommand/training/ubmfile/keyword03/en-IN/supplement/8
960742 vendor/etc/voicecommand/training/ubmfile/keyword03/en-GB/supplement/8
960742 vendor/etc/voicecommand/training/ubmfile/keyword03/en-ES/supplement/8
960742 vendor/etc/voicecommand/training/ubmfile/keyword03/de-DE/supplement/8
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/it-IT/supplement/9
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/it-IT/supplement/7
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/it-IT/supplement/6
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/it-IT/supplement/5
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/it-IT/supplement/4
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/it-IT/supplement/3
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/it-IT/supplement/2
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/it-IT/supplement/10
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/it-IT/supplement/1
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/hi-IN/supplement/9
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/hi-IN/supplement/7
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/hi-IN/supplement/6
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/hi-IN/supplement/5
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/hi-IN/supplement/4
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/hi-IN/supplement/3
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/hi-IN/supplement/2
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/hi-IN/supplement/10
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/hi-IN/supplement/1
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/fr-FR/supplement/9
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/fr-FR/supplement/7
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/fr-FR/supplement/6
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/fr-FR/supplement/5
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/fr-FR/supplement/4
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/fr-FR/supplement/3
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/fr-FR/supplement/2
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/fr-FR/supplement/10
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/fr-FR/supplement/1
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-US/supplement/9
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-US/supplement/7
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-US/supplement/6
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-US/supplement/5
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-US/supplement/4
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-US/supplement/3
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-US/supplement/2
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-US/supplement/10
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-US/supplement/1
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-IN/supplement/9
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-IN/supplement/7
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-IN/supplement/6
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-IN/supplement/5
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-IN/supplement/4
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-IN/supplement/3
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-IN/supplement/2
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-IN/supplement/10
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-IN/supplement/1
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-GB/supplement/9
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-GB/supplement/7
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-GB/supplement/6
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-GB/supplement/5
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-GB/supplement/4
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-GB/supplement/3
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-GB/supplement/2
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-GB/supplement/10
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-GB/supplement/1
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-ES/supplement/9
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-ES/supplement/7
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-ES/supplement/6
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-ES/supplement/5
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-ES/supplement/4
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-ES/supplement/3
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-ES/supplement/2
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-ES/supplement/10
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-ES/supplement/1
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/de-DE/supplement/9
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/de-DE/supplement/7
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/de-DE/supplement/6
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/de-DE/supplement/5
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/de-DE/supplement/4
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/de-DE/supplement/3
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/de-DE/supplement/2
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/de-DE/supplement/10
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/de-DE/supplement/1
959576 vendor/lib/imx682_mipi_raw_IdxMgr.so
956648 vendor/lib64/libml_util.so
947992 system/system/bin/linkerconfig
944984 vendor/lib/s5kgw1_mipi_raw_IdxMgr.so
944980 vendor/lib/sarter_qtech_main_s5kgm1sp_IdxMgr.so
943136 vendor/lib64/libimageio_plat_drv.so
941608 system/system/lib64/android.hardware.gnss@1.0.so
941408 system/system/lib/libclcore_debug_g.bc
934956 system/system/system_ext/priv-app/DownloadProvider/DownloadProvider.apk
932624 system/system/lib64/android.hardware.radio@1.1.so
925904 vendor/bin/factory
923713 system/system/system_ext/framework/com.oppo.camera.unit.sdk.jar
919328 vendor/lib64/libarcsoft_dualcam_refocus_preview.so
919000 system/system/lib/android.hardware.radio@1.0.so
918288 vendor/lib64/libcam.halsensor.so
917522 boot/ramdisk.packed
916076 system/system/lib/android.hardware.radio@1.5.so
915132 my_product/decouping_wallpaper/common/inlay_wallpaper24.png
913584 system/system/bin/tcpdump
898684 system/system/lib/libchrome.so
892524 system/system/lib/android.hardware.audio.effect@2.0.so
891328 system/system/system_ext/lib/libgpustress_eng.so
891290 system/system/media/audio/ringtones/ringtone_002.ogg
890936 system/system/bin/mdnsd
890152 vendor/lib64/libwebrtc_audio_preprocessing.so
889304 system/system/lib/android.hardware.audio.effect@6.0.so
889080 system/system/lib/android.hardware.audio.effect@4.0.so
889054 system/system/media/audio/ringtones/ringtone_024.ogg
888940 system/system/lib/android.hardware.audio.effect@5.0.so
888292 my_product/overlay/SystemUIFingerprintRes_LGSY/SystemUIFingerprintRes_LGSY.apk
885868 system/system/lib/libxml2.so
882416 vendor/lib/imx471_mipi_raw1_IdxMgr.so
879920 system/system/bin/netd
873992 system/system/priv-app/NetworkStackGoogle/NetworkStackGoogle.apk
869232 system/system/lib/libsqlite.so
866704 vendor/lib64/hw/hwcomposer.mt6785.so
864088 system/system/lib64/libaudioclient.so
857104 system/system/lib/libbcinfo.so
856952 vendor/lib64/librilfusion.so
854024 vendor/lib64/libfeature.stereo.provider.so
848488 vendor/lib/libmtkcam.logicalmodule.so
839930 my_product/decouping_wallpaper/common/inlay_wallpaper_id.png
838880 vendor/lib64/libMtkSpeechEnh.so
838728 vendor/lib/s5k3p9sp_mipi_raw_IdxMgr.so
834520 system/system/lib/libblas.so
827600 vendor/lib64/libPerfectlyClearCrux.so
821928 system/system/lib/libcrypto.so
819682 system/system/framework/voip-common.jar
814752 vendor/etc/camera/fb_model/203_pre.bin
814752 vendor/etc/camera/fb_model/201_pre.bin
814752 vendor/etc/camera/fb_model/200_pre.bin
814752 vendor/etc/camera/fb_model/103_pre.bin
814752 vendor/etc/camera/fb_model/101_pre.bin
814752 vendor/etc/camera/fb_model/100_pre.bin
814752 vendor/etc/camera/fb_model/003_pre.bin
814752 vendor/etc/camera/fb_model/001_pre.bin
814752 vendor/etc/camera/fb_model/000_pre.bin
802044 vendor/etc/camera/fb_model/eyeBright.png
801441 my_product/overlay/SystemUIFingerprintRes_JHSY/SystemUIFingerprintRes_JHSY.apk
800032 vendor/lib/libarcsoft_dualcam_refocus_preview.so
792584 system/system/lib64/libandroid_servers.so
791099 system/system/system_ext/app/WifiBackupAndRestore/WifiBackupAndRestore.apk
786096 system/system/lib64/libdng_sdk.so
784103 system/system/media/audio/ringtones/ringtone_027.ogg
783912 vendor/lib/libvc1dec_sa.ca7.so
783584 vendor/lib64/libcmdl.so
781636 system/system/lib/android.hardware.radio@1.4.so
776984 vendor/lib/libwebrtc_audio_preprocessing.so
768552 system/system/system_ext/lib64/libdav1d.so.4
768552 odm/lib64/libdav1d.so.4
759953 my_product/decouping_wallpaper/common/inlay_wallpaper27.png
758444 vendor/lib/libcharon-ss.so
755200 system/system/bin/ld.mc
754584 system/system/lib/libmediaplayerservice.so
749584 system/system/lib64/libharfbuzz_ng.so
748328 vendor/lib64/libcharon-ss.so
748139 system/system/system_ext/media/audio/ui/weather_alarm_thunderstorm2.ogg
747627 system/system/app/LocationEM2/LocationEM2.apk
744536 system/system/system_ext/app/OVoiceManagerService/lib/arm64/libwakeup.so
743024 vendor/lib64/libmtkcam_fdvt.so
742584 system/system/system_ext/lib/libdav1d.so.4
742584 odm/lib/libdav1d.so.4
742336 vendor/bin/mcDriverDaemon
741760 system/system/lib64/libfs_mgr_binder.so
741192 system/system/lib64/libparameter.so
739688 system/system/media/audio/ringtones/ringtone_001.ogg
739072 vendor/lib64/libmtkcam_3rdparty.customer.so
736336 system/system/framework/arm64/boot-telephony-common.oat
732749 system/system/media/audio/ringtones/ringtone_003.ogg
732424 system/system/lib64/android.hardware.audio@6.0.so
727653 my_product/decouping_wallpaper/common/inlay_wallpaper22.jpg
727528 system/system/lib/libgui.so
724180 system/system/lib/service.incremental.so
723036 vendor/lib/libmtkcam_fdvt.so
719594 system/system/media/audio/ringtones/ringtone_005.ogg
714976 system/system/lib/android.hardware.radio@1.2.so
714752 system/system/lib64/libc++.so
713720 vendor/lib/libDR.so
712540 system/system/lib/libharfbuzz_ng.so
710320 vendor/bin/volte_stack
710256 system/system/system_ext/bin/oiface
710168 system/system/lib64/libbinder.so
710152 my_product/decouping_wallpaper/common/inlay_wallpaper12.jpg
709192 system/system/fonts/NotoSansSymbols-Regular-Subsetted.ttf
709076 vendor/bin/volte_imcb
708192 vendor/lib64/ov8856_mipi_raw_IdxMgr.so
708184 vendor/lib64/sala_wide_ov8856_IdxMgr.so
706648 system/system/system_ext/priv-app/SettingsProvider/oat/arm64/SettingsProvider.odex
704880 vendor/lib64/libmtkcam_pipelinepolicy.so
698784 system/system/lib64/libhidlbase.so
698236 vendor/lib/libimageio_plat_drv.so
693760 vendor/lib64/libstereoinfoaccessor_vsdof.so
690552 system/system/lib64/libmedia.so
690182 system/system/system_ext/media/audio/ui/weather_alarm_default.ogg
690182 system/system/media/audio/alarms/Dynamic_Weather.ogg
683633 system/system/media/audio/ringtones/ringtone_022.ogg
683257 system/system/media/audio/alarms/Rise.ogg
677552 vendor/lib/libcam.halsensor.so
674296 system/system/lib/android.hardware.gnss@1.0.so
671672 system/system/system_ext/lib64/libstnfc-nci.so
671156 system/system/apex/com.google.android.ipsec.apex
670160 system/system/app/OVoiceManagerService_18073/lib/arm64/libgender.so
670155 my_product/priv-app/HotwordEnrollmentOKGoogleCORTEXM4.apk
669428 system/system/lib/android.hardware.radio@1.3.so
668971 system/system/etc/apns-conf.xml
668816 vendor/firmware/soc3_0_ram_bt_1_1_hdr.bin
668664 vendor/firmware/soc3_0_ram_bt_1a_1_hdr.bin
658928 system/system/lib64/android.hardware.audio@5.0.so
658464 system/system/lib64/libaudioprocessing.so
656183 system/system/media/audio/ringtones/ringtone_015.ogg
655160 system/system/app/OVoiceManagerService_18073/lib/arm64/libvad.so
653720 system/system/system_ext/lib64/libneuronusdk_runtime.mtk.so
650616 system/system/lib64/android.hardware.audio@4.0.so
646704 system/system/lib64/android.hardware.gnss@2.0.so
644528 system/system/lib64/libfs_mgr.so
642864 system/system/lib/android.hardware.radio@1.1.so
638416 vendor/lib64/libspeech_enh_lib.so
638124 vendor/lib/libstagefright_soft_aacdec.so
637504 vendor/firmware/WIFI_RAM_CODE_soc1_0_2a_1.bin
629081 system/system/media/audio/ringtones/ringtone_012.ogg
628632 system/system/framework/arm/boot-telephony-common.oat
628368 system/system/bin/perfetto
625679 my_product/decouping_wallpaper/common/inlay_wallpaper19.jpg
623976 system/system/lib64/libcodec2_vndk.so
622880 vendor/lib/libfeature.stereo.provider.so
621472 vendor/lib64/libminiui.so
618088 system/system/media/audio/ringtones/ringtone_016.ogg
615328 system/system/lib64/libsfplugin_ccodec.so
615176 system/system/system_ext/priv-app/SettingsProvider/oat/arm/SettingsProvider.odex
614829 my_product/media/bootanimation/rbootanimation.zip
612976 system/system/system_ext/lib64/liboplusrecorder.so
611312 vendor/lib64/libmfllcore.so
610736 system/system/lib64/android.hardware.audio@2.0.so
609477 system/system/system_ext/etc/selinux/system_ext_sepolicy_debug.cil
609256 system/system/system_ext/lib/libstnfc-nci.so
606688 system/system/lib64/libft2.so
606669 system/system/system_ext/app/DebugLoggerUI/DebugLoggerUI.apk
606152 system/system/system_ext/app/OVoiceManagerService/lib/arm64/libvad.so
604584 vendor/lib/libarcsoft_distortion_correction.so
603732 vendor/lib/libminiui.so
600720 system/system/bin/apexd
597640 system/system/framework/oat/arm64/coloros-internal-services.odex
596348 vendor/lib/libspeech_enh_lib.so
593612 vendor/lib/libmtkcam_3rdparty.customer.so
592436 vendor/etc/voicecommand/training/ubmfile/keyword03/it-IT/p2.5/ubmModel4.bin
592436 vendor/etc/voicecommand/training/ubmfile/keyword03/hi-IN/p2.5/ubmModel4.bin
592436 vendor/etc/voicecommand/training/ubmfile/keyword03/fr-FR/p2.5/ubmModel4.bin
592436 vendor/etc/voicecommand/training/ubmfile/keyword03/en-US/p2.5/ubmModel4.bin
592436 vendor/etc/voicecommand/training/ubmfile/keyword03/en-IN/p2.5/ubmModel4.bin
592436 vendor/etc/voicecommand/training/ubmfile/keyword03/en-GB/p2.5/ubmModel4.bin
592436 vendor/etc/voicecommand/training/ubmfile/keyword03/en-ES/p2.5/ubmModel4.bin
592436 vendor/etc/voicecommand/training/ubmfile/keyword03/de-DE/p2.5/ubmModel4.bin
591704 vendor/lib64/libcam.iopipe.so
588848 system/system/lib64/libsonivox.so
588407 odm/etc/audio/audio_param/Speech_AudioParam.xml
586900 system/system/lib/libandroid_servers.so
583257 system/system/media/audio/ringtones/ringtone_025.ogg
582520 system/system/media/audio/ringtones/ringtone_011.ogg
580800 vendor/lib64/libmtkcam_3rdparty.mtk.so
578839 system/system/system_ext/priv-app/SettingsProvider/SettingsProvider.apk
577500 system/system/lib/libft2.so
577408 system/system/etc/textclassifier/textclassifier.en.model
573611 system/system/media/audio/ringtones/ringtone_018.ogg
573512 system/system/lib64/libvintf.so
572381 system/system/system_ext/etc/selinux/system_ext_sepolicy.cil
571232 vendor/lib64/libmtkcam_pipeline.so
570989 vendor/firmware/soc1_0_ram_bt_2a_1_hdr.bin
568892 system/system/lib/libdng_sdk.so
565248 system/system/framework/arm64/boot-telephony-common.art
565240 system/system/lib64/libaudiopolicyenginedefault.so
564952 system/system/bin/iorap.cmd.maintenance
563952 system/system/app/OVoiceManagerService_18073/lib/arm64/libduidns.so
563840 system/system/system_ext/app/OVoiceManagerService/lib/arm64/libduidns.so
562936 vendor/lib64/libstrongswan.so
562000 vendor/lib/libMtkSpeechEnh.so
561984 vendor/lib/ov8856_mipi_raw_IdxMgr.so
561980 vendor/lib/sala_wide_ov8856_IdxMgr.so
559016 vendor/lib/libvpud_vcodec.so
553400 system/system/lib64/libaudiopolicyengineconfigurable.so
553320 system/system/lib64/libmedia_jni.so
552960 system/system/framework/arm/boot-telephony-common.art
547436 system/system/lib/libaudioflinger.so
545848 vendor/lib64/libpq_prot.so
543924 vendor/etc/voicecommand/training/ubmfile/keyword03/it-IT/p2.5/ubmModel3.bin
543924 vendor/etc/voicecommand/training/ubmfile/keyword03/hi-IN/p2.5/ubmModel3.bin
543924 vendor/etc/voicecommand/training/ubmfile/keyword03/fr-FR/p2.5/ubmModel3.bin
543924 vendor/etc/voicecommand/training/ubmfile/keyword03/en-US/p2.5/ubmModel3.bin
543924 vendor/etc/voicecommand/training/ubmfile/keyword03/en-IN/p2.5/ubmModel3.bin
543924 vendor/etc/voicecommand/training/ubmfile/keyword03/en-GB/p2.5/ubmModel3.bin
543924 vendor/etc/voicecommand/training/ubmfile/keyword03/en-ES/p2.5/ubmModel3.bin
543924 vendor/etc/voicecommand/training/ubmfile/keyword03/de-DE/p2.5/ubmModel3.bin
543774 system/system/framework/am.jar
543416 vendor/lib64/libcamera_core_hwi.so
542428 system/system/lib/libsonivox.so
534288 system/system/lib64/libstagefright_httplive.so
532760 system/system/etc/preloaded-classes
532528 system/system/lib64/libstagefright_wfd_oplus.so
531392 my_product/priv-app/DiracAudioControlService/DiracAudioControlService.apk
525640 system/system/lib64/android.hardware.media.c2@1.0.so
525365 system/system/media/audio/ringtones/ringtone_010.ogg
523348 system/system/lib/android.hardware.audio@6.0.so
521098 system/system/system_ext/app/NetworkHealthService/NetworkHealthService.apk
515078 vendor/lib/modules/fmradio_drv.ko
514094 system/system/media/audio/ringtones/ringtone_008.ogg
512498 system/system/framework/oplus-framework.jar
511772 system/system/system_ext/media/audio/ui/weather_alarm_sun.ogg
509361 system/system/usr/share/zoneinfo/tzdata
509111 my_product/decouping_wallpaper/common/inlay_wallpaper4.jpg
506704 system/system/lib64/libRSCpuRef.so
506052 system/system/system_ext/lib/liboplusrecorder.so
505436 system/system/fonts/NotoSansEgyptianHieroglyphs-Regular.ttf
505131 system/system/system_ext/media/audio/ui/weather_alarm_sun2.ogg
504356 system/system/system_ext/media/audio/ui/weather_alarm_sun4.ogg
503532 vendor/lib/libstrongswan.so
502272 system/system/lib64/libcamera_client.so
502120 system/system/system_ext/lib64/libslpVoiceEngine.so
501396 vendor/lib/libvolte_core_shr.so
500380 system/system/fonts/NotoSansCuneiform-Regular.ttf
500058 system/system/media/audio/ringtones/ringtone_000.ogg
499940 system/system/media/audio/ringtones/ringtone_014.ogg
498144 system/system/lib/libhidlbase.so
496304 system/system/lib64/android.hardware.gnss@2.1.so
495452 vendor/lib/libstereoinfoaccessor_vsdof.so
494913 odm/etc/dirac/diracmobile.config
493752 system/system/system_ext/lib64/libnfc_st_dta.so
493422 system/system/framework/org.apache.http.legacy.jar
493240 system/system/system_ext/lib/libneuronusdk_runtime.mtk.so
491212 system/system/lib/libc++.so
489544 vendor/bin/toybox_vendor
489512 system/system/bin/toybox
489122 system/system/framework/service-jobscheduler.jar
488395 system/system/priv-app/VoiceCommand/VoiceCommand.apk
488144 system/system/system_ext/bin/cachebench_eng
488144 system/system/lib/libaudioclient.so
487752 system/system/lib/libbinder.so
487272 system/system/lib64/libprotobuf-cpp-lite.so
487248 vendor/lib64/libprotobuf-cpp-lite-3.9.1.so
487112 system/system/bin/iptables
482832 system/system/lib64/netd_aidl_interface-V4-cpp.so
480496 vendor/lib64/libVDPostureDetection.so
479608 system/system/lib/libaudioprocessing.so
474840 vendor/lib/libh264dec_se.ca7.so
473586 my_product/decouping_wallpaper/common/inlay_wallpaper21.jpg
472656 system/system/system_ext/media/audio/ui/weather_alarm_wind2.ogg
472447 my_product/decouping_wallpaper/common/inlay_wallpaper2.jpg
468736 system/system/lib/android.hardware.audio@5.0.so
467516 system/system/lib/android.hardware.gnss@2.0.so
466380 vendor/lib/libcam.iopipe.so
466145 vendor/app/mcRegistry/020b0000000000000000000000000000.tlbin
466145 vendor/app/mcRegistry/020b0000000000000000000000000000.drbin
465384 system/system/system_ext/lib/libnfc_st_dta.so
465068 system/system/lib/android.hardware.audio@4.0.so
464696 vendor/lib/libmfllcore.so
464237 my_product/decouping_wallpaper/common/inlay_wallpaper9.jpg
463472 vendor/lib64/libvowp23_sid_training_alexa.vendor.so
463464 system/system/lib64/libvowp23_sid_training_alexa.so
463456 vendor/lib64/libvowp2training_alexa.vendor.so
463456 system/system/lib64/libvowp2training_alexa.so
462367 system/system/media/audio/ringtones/ringtone_019.ogg
462058 system/system/system_ext/media/audio/ui/weather_alarm_cloud.ogg
461635 system/system/priv-app/VoiceUnlock/VoiceUnlock.apk
461456 system/system/lib64/libunwindstack.so
461336 system/system/lib64/libandroidfw.so
460320 vendor/lib64/libmtkcam_pipelinemodel_session.so
459312 vendor/lib64/egl/libMEOW_trace.so
458256 system/system/lib64/libaudiopolicycustomextensions.so
457076 vendor/etc/aurisys_param/Speech_AudioParam.xml
457076 vendor/etc/audio_param/Speech_AudioParam.xml
456472 system/system/system_ext/lib64/libswscale.so
456472 odm/lib64/libswscale.so
454360 vendor/lib/libh264dec_sa.ca7.so
453568 vendor/lib/libpq_prot.so
447928 vendor/lib64/libssl-ss.so
447672 odm/bin/iwpriv_vendor
447200 vendor/bin/hw/android.hardware.wifi@1.0-service-lazy
446931 my_product/decouping_wallpaper/common/inlay_wallpaper17.jpg
445480 system/system/system_ext/media/audio/ui/weather_alarm_cloud2.ogg
444564 vendor/lib/libstagefright_soft_aacenc.so
440848 system/system/framework/arm64/boot-mediatek-telephony-common.oat
440312 system/system/lib/libcodec2_vndk.so
440168 system/system/bin/heapprofd
439864 vendor/lib/libmtkcam_3rdparty.mtk.so
438016 vendor/lib64/libmtkcam_featurepolicy.so
437292 my_product/decouping_wallpaper/common/inlay_wallpaper3.jpg
436648 system/system/lib/android.hardware.audio@2.0.so
435820 system/system/system_ext/lib/libswscale.so
435820 odm/lib/libswscale.so
435800 vendor/lib/libstagefright_soft_hevcdec.so
434631 system/system/apex/com.google.android.sdkext.apex
434572 system/system/media/audio/ringtones/ringtone_013.ogg
433812 vendor/lib/libcamera_core_hwi.so
431856 vendor/lib64/libcurl-md.so
431805 system/system/media/audio/ringtones/ringtone_007.ogg
431028 vendor/lib/libHEVCdec_sa.ca7.android.so
431020 vendor/lib/libmtkcam_pipeline.so
428080 system/system/bin/keystore
427796 system/system/system_ext/lib/libavutil.so
427796 odm/lib/libavutil.so
425893 tmp/all_filenames.txt
423340 system/system/system_ext/media/audio/ui/weather_alarm_rain2.ogg
420253 system/system/app/CaptivePortalLoginGoogle/CaptivePortalLoginGoogle.apk
419826 system/system/system_ext/media/audio/ui/weather_alarm_rain.ogg
419426 system/system/framework/mediatek-framework.jar
417888 odm/lib64/vendor.oplus.hardware.radio@1.0.so
414345 system/system/system_ext/media/audio/ui/weather_alarm_thunderstorm.ogg
414048 system/system/lib64/extractors/libmtkmpeg2extractor.so
413456 vendor/lib64/vendor.mediatek.hardware.wifi.supplicant@2.0.so
411936 system/system/bin/ip
409400 vendor/lib64/libcamalgo.vpunr.so
408904 vendor/etc/voicecommand/training/ubmfile/keyword03/it-IT/supplement/11
408904 vendor/etc/voicecommand/training/ubmfile/keyword03/hi-IN/supplement/11
408904 vendor/etc/voicecommand/training/ubmfile/keyword03/fr-FR/supplement/11
408904 vendor/etc/voicecommand/training/ubmfile/keyword03/en-US/supplement/11
408904 vendor/etc/voicecommand/training/ubmfile/keyword03/en-IN/supplement/11
408904 vendor/etc/voicecommand/training/ubmfile/keyword03/en-GB/supplement/11
408904 vendor/etc/voicecommand/training/ubmfile/keyword03/en-ES/supplement/11
408904 vendor/etc/voicecommand/training/ubmfile/keyword03/de-DE/supplement/11
407672 system/system/bin/iorap.inode2filename
406968 vendor/lib64/libssl-md.so
405995 system/system/system_ext/media/audio/ui/weather_alarm_cloud4.ogg
403864 vendor/lib64/libmtkcam_3rdparty.core.so
403696 system/system/lib/libvintf.so
403496 vendor/lib64/vendor.mediatek.hardware.dfps@1.0.so
403496 system/system/system_ext/lib64/vendor.mediatek.hardware.dfps@1.0.so
402244 vendor/lib/libcamalgo.vpunr.so
402087 system/system/system_ext/media/audio/ui/weather_alarm_haze.ogg
401764 system/system/fonts/NotoSansTibetan-Regular.ttf
401687 system/system/system_ext/media/audio/ui/weather_alarm_wind.ogg
401072 system/system/lib/libmedia_jni.so
400198 system/system/media/audio/ringtones/ringtone_020.ogg
400040 system/system/lib64/android.hardware.media.omx@1.0.so
399664 vendor/lib64/libcamalgo.vsf.so
399536 vendor/lib64/libarcsoft_supervideostabilization.so
399512 vendor/lib/libjpeg-alpha_vendor.so
399508 system/system/lib/libjpeg-alpha.so
396096 system/system/bin/installd
395898 system/system/system_ext/media/audio/ui/weather_alarm_cloud3.ogg
395576 system/system/lib/libRSCpuRef.so
395544 system/system/system_ext/lib64/libavutil.so
395544 odm/lib64/libavutil.so
393128 system/system/lib64/libstagefright_wfd_mtk.so
391920 vendor/etc/camera/fb_model/211_pre.bin
391920 vendor/etc/camera/fb_model/210_pre.bin
391920 vendor/etc/camera/fb_model/111_pre.bin
391920 vendor/etc/camera/fb_model/110_pre.bin
391920 vendor/etc/camera/fb_model/011_pre.bin
391920 vendor/etc/camera/fb_model/010_pre.bin
391512 system/system/bin/wificond
390560 system/system/lib/libsfplugin_ccodec.so
388632 system/system/bin/traced_perf
388304 system/system/lib64/libinputreader.so
387248 vendor/lib64/libarcsoft_videostabilizer.so
387156 vendor/lib/lib3a.af.so
384760 vendor/lib/libh264dec_sd.ca7.so
383584 vendor/lib64/libjpeg-alpha_vendor.so
383576 system/system/lib64/libjpeg-alpha.so
382644 system/system/framework/arm/boot-mediatek-telephony-common.oat
381832 vendor/lib64/libmtkcam_hwutils.so
381328 system/system/lib64/libmediametricsservice.so
380506 system/system/system_ext/media/audio/ui/weather_alarm_thunderstorm3.ogg
380417 system/system/priv-app/Shell/Shell.apk
380408 odm/lib64/libremosaiclib.so
378124 system/system/system_ext/media/audio/ui/weather_alarm_snow.ogg
376664 vendor/lib/libcamalgo.vsf.so
374860 system/system/media/audio/ringtones/ringtone_0001.ogg
374752 system/system/system_ext/bin/ntfs-3g
374328 system/system/system_ext/app/FidoAsm/FidoAsm.apk
373812 system/system/lib/android.hardware.media.c2@1.0.so
373655 system/system/system_ext/app/OppoAtlasService/OppoAtlasService.apk
373156 system/system/lib/libmedia.so
373120 system/system/fonts/NotoSansTibetan-Bold.ttf
373063 system/system/media/audio/ringtones/ringtone_023.ogg
372640 system/system/lib/libvowp23_sid_training_alexa.so
372636 vendor/lib/libvowp23_sid_training_alexa.vendor.so
372608 system/system/lib64/android.hardware.drm@1.2.so
372592 system/system/etc/textclassifier/lang_id.model
370752 odm/bin/hw/vendor.oplus.hardware.biometrics.fingerprint@2.1-service
370432 vendor/lib/libvowp2training_alexa.vendor.so
370420 system/system/lib/libvowp2training_alexa.so
366800 vendor/lib64/libFaceBeautyPre.so
366758 system/system/framework/uiautomator.jar
365216 vendor/lib64/lib3a.af.so
365210 system/system/system_ext/media/audio/ui/weather_alarm_haze2.ogg
365160 vendor/bin/md_monitor
365036 vendor/etc/voicecommand/training/ubmfile/keyword03/it-IT/p2.3/ubmModel4.bin
365036 vendor/etc/voicecommand/training/ubmfile/keyword03/it-IT/p2.3/ubmModel3.bin
365036 vendor/etc/voicecommand/training/ubmfile/keyword03/it-IT/p2.3/ubmModel10.bin
365036 vendor/etc/voicecommand/training/ubmfile/keyword03/it-IT/p2.3/ubmModel0.bin
365036 vendor/etc/voicecommand/training/ubmfile/keyword03/hi-IN/p2.3/ubmModel4.bin
365036 vendor/etc/voicecommand/training/ubmfile/keyword03/hi-IN/p2.3/ubmModel3.bin
365036 vendor/etc/voicecommand/training/ubmfile/keyword03/hi-IN/p2.3/ubmModel10.bin
365036 vendor/etc/voicecommand/training/ubmfile/keyword03/hi-IN/p2.3/ubmModel0.bin
365036 vendor/etc/voicecommand/training/ubmfile/keyword03/fr-FR/p2.3/ubmModel4.bin
365036 vendor/etc/voicecommand/training/ubmfile/keyword03/fr-FR/p2.3/ubmModel3.bin
365036 vendor/etc/voicecommand/training/ubmfile/keyword03/fr-FR/p2.3/ubmModel10.bin
365036 vendor/etc/voicecommand/training/ubmfile/keyword03/fr-FR/p2.3/ubmModel0.bin
365036 vendor/etc/voicecommand/training/ubmfile/keyword03/en-IN/p2.3/ubmModel4.bin
365036 vendor/etc/voicecommand/training/ubmfile/keyword03/en-IN/p2.3/ubmModel3.bin
365036 vendor/etc/voicecommand/training/ubmfile/keyword03/en-IN/p2.3/ubmModel10.bin
365036 vendor/etc/voicecommand/training/ubmfile/keyword03/en-IN/p2.3/ubmModel0.bin
365036 vendor/etc/voicecommand/training/ubmfile/keyword03/en-GB/p2.3/ubmModel4.bin