-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathall_files.txt
7258 lines (7258 loc) · 364 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
161567393 system/system/app/OppoCamera/OppoCamera.apk
122089598 system/system/system_ext/priv-app/Settings/Settings.apk
114127492 system/system/apex/com.android.vndk.current.apex
83771169 system/system/apex/com.android.art.release.apex
81663473 system/system/system_ext/priv-app/SystemUI/SystemUI.apk
80583807 system/system/system_ext/app/OppoEngineerCamera/OppoEngineerCamera.apk
51555744 system/system/system_ext/priv-app/SystemUI/oat/arm64/SystemUI.odex
48298568 odm/lib/libstfaceunlockppl.so
44840676 system/system/framework/framework-res.apk
39382512 vendor/lib64/egl/libGLES_mali.so
36339533 bootRE/boot.elf
36262320 system/system/framework/oat/arm64/services.odex
33554432 boot.img
33535214 system/system/framework/framework.jar
29717733 system/system/system_ext/app/WallpaperChooser/WallpaperChooser.apk
29214796 system/system/system_ext/priv-app/OppoLauncher/OppoLauncher.apk
28119244 vendor/lib/egl/libGLES_mali.so
26731482 system/system/system_ext/app/OppoEngineerMode/OppoEngineerMode.apk
25473097 vendor/recovery-from-boot.p
25426740 system/system/apex/com.android.i18n.apex
25425273 system/system/system_ext/priv-app/TeleService/TeleService.apk
24950280 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
20041664 bootimg/01_dtbdump_MT6768.dtb
19144998 system/system/apex/com.google.android.media.swcodec.apex
19068608 system/system/lib64/libLLVM_android.so
18219658 system/system/framework/services.jar
16863744 vendor/lib64/libcvface_api.so
16576887 system/system/system_ext/priv-app/DownloaderCenterUI/DownloaderCenterUI.apk
16569016 system/system/system_ext/priv-app/Telecom/oat/arm64/Telecom.odex
16298575 system/system/system_ext/framework/oplus-framework-res.apk
15585552 vendor/lib64/libarmnn_ndk.mtk.so
15585552 system/system/system_ext/lib64/libarmnn_ndk.mtk.so
15535752 vendor/lib/libcvface_api.so
14655309 system/system/system_ext/priv-app/OppoWirelessSettings/OppoWirelessSettings.apk
14387453 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
13512768 bootimg/00_kernel
13194232 system/system/system_ext/priv-app/Telecom/Telecom.apk
13081244 system/system/apex/com.android.permission.apex
12743950 system/system/system_ext/app/OppoGuardElf/OppoGuardElf.apk
12676104 vendor/lib64/libarmnn.so
12593102 boot/kernel
12571365 system/system/system_ext/priv-app/OppoSimSettings/OppoSimSettings.apk
12487640 system/system/framework/arm64/boot-framework.oat
11914976 vendor/lib64/libstface_fd_api.so
11637128 vendor/lib/libstface_fd_api.so
11629736 vendor/lib64/libPolarrRender.so
11445149 system/system/system_ext/app/UXDesign/UXDesign.apk
11342395 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
10675353 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
10379760 system/system/framework/arm/boot-framework.oat
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
10045372 system/system/system_ext/app/OppoGestureUI/OppoGestureUI.apk
9950296 system/system/priv-app/ManagedProvisioning/ManagedProvisioning.apk
9883722 system/system/system_ext/app/NfcNci/NfcNci.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
8728656 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
8264538 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
7953984 system/system/lib64/libbluetooth.so
7851648 system/system/system_ext/lib64/libnative.so
7660727 system/system/system_ext/app/OppoMultiApp/OppoMultiApp.apk
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
7386816 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
7226777 system/system/system_ext/app/Stk/Stk.apk
7178000 vendor/lib64/libarcsoft_scbokeh_image.so
7099173 system/system/system_ext/app/PrintSpooler/PrintSpooler.apk
7089580 system/system/apex/com.google.android.cellbroadcast.apex
7004579 system/system/app/Traceur/Traceur.apk
6903472 system/system/priv-app/EngineerMode/EngineerMode.apk
6845016 system/system/system_ext/app/SystemAppUpdateService/SystemAppUpdateService.apk
6574099 system/system/system_ext/priv-app/StorageManager/StorageManager.apk
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
6317916 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
5991941 system/system/system_ext/app/ColorEyeProtect/ColorEyeProtect.apk
5864300 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
5567746 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
4751766 vendor/lib/modules/wlan_drv_gen4m.ko
4674480 system/system/lib/libpdfium.so
4645284 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
4365376 vendor/lib64/libmtk-ril.so
4337788 my_product/overlay/SystemUIFingerprintRes_CCYH/SystemUIFingerprintRes_CCYH.apk
4268521 system/system/apex/com.google.android.extservices.apex
4210048 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
4046848 system/system/framework/arm64/boot-framework.art
4033504 vendor/lib64/libFaceBeautyCap.so
4026827 vendor/res/images/lcd_test_01.png
3939852 system/system/fonts/DroidSansFallback.ttf
3937422 system/system/framework/oplus-services.jar
3911680 system/system/framework/arm/boot-framework.art
3794898 vendor/etc/file112.wav
3778311 system/system/system_ext/app/OppoEngineerNetwork/OppoEngineerNetwork.apk
3750576 vendor/lib64/libarcsoft_high_dynamic_range_couple.so
3717672 vendor/lib64/libarcsoft_high_dynamic_range.so
3708434 system/system/framework/telephony-common.jar
3469632 vendor/lib64/libneuropilot_jni_R.so
3469608 system/system/lib64/libneuropilot_jni_R.so
3444616 system/system/lib64/libtflite_mtk_static_R.so
3444456 vendor/lib64/libtflite_mtk_static_R.so
3411352 system/system/app/OVoiceManagerService_18073/lib/arm64/libvprint.so
3408758 vendor/lib/modules/kheaders.ko
3352216 vendor/lib64/libcameracustom.so
3305728 odm/lib64/libcalibverifyW_T.so
3266652 vendor/etc/asd/class.tflite
3246109 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
3144556 vendor/lib/libcameracustom.so
3107585 system/system/system_ext/app/Shelper/Shelper.apk
3045312 system/system/system_ext/lib64/libtflite_mtk.mtk.so
3024184 system/system/lib64/libtflite_mtk.so
3024160 vendor/lib64/libtflite_mtk.so
2987144 vendor/bin/hw/wpa_supplicant
2970952 odm/lib64/libgf_hal_G3.so
2897936 vendor/etc/camera/M_Attribute_Gender_Age_1.0.model
2890352 odm/lib64/libgf_hal_G2.so
2874568 odm/lib/libgf_hal_G3.so
2814056 vendor/lib64/[email protected]
2811314 system/system/system_ext/app/CrashBox/CrashBox.apk
2806244 odm/lib/libgf_hal_G2.so
2805600 vendor/lib64/libcam.hal3a.v3.so
2714032 vendor/lib64/libMegviiHumBokehPost-mtk.so
2712968 system/system/system_ext/lib64/libnq330nfc_nci.so
2690048 vendor/lib64/libmtkcam_hwnode.so
2630568 system/system/bin/iorap.cmd.compiler
2607936 vendor/lib64/libarcsoft_dualcam_refocus_left.so
2599744 vendor/lib64/libarcsoft_dualcam_refocus_right.so
2580836 system/system/apex/com.google.android.resolv.apex
2565333 system/system/system_ext/priv-app/OppoExSystemService/OppoExSystemService.apk
2564256 odm/lib/libDiracAPI_SHARED.so
2544088 system/system/system_ext/lib64/[email protected]
2527896 vendor/lib64/pascala_truly_main_s5kgm1sp_tuning.so
2527896 vendor/lib64/pascala_truly2_main_s5kgm1sp_tuning.so
2527896 vendor/lib64/monetx_truly_main_s5kgm1sp_tuning.so
2515560 vendor/lib64/libwvhidl.so
2514992 vendor/lib/pascala_truly_main_s5kgm1sp_tuning.so
2514992 vendor/lib/pascala_truly2_main_s5kgm1sp_tuning.so
2514976 vendor/lib/monetx_truly_main_s5kgm1sp_tuning.so
2512992 system/system/lib64/libsurfaceflinger.so
2508209 system/system/framework/mediatek-ims-legacy.jar
2503784 system/system/lib/libneuropilot_jni_R.so
2503496 vendor/lib/libneuropilot_jni_R.so
2500688 vendor/lib64/libVDDualCameraBlurless.so
2499160 vendor/lib64/monetx_ofilm_front_ov16a1q_tuning.so
2495128 vendor/lib64/monetd_truly_main_ov12a10_tuning.so
2495128 vendor/lib64/monet_truly_main_ov12a10_tuning.so
2495056 vendor/lib64/monetx_hlt_depth_ov02a1b_tuning.so
2487080 system/system/lib/libtflite_mtk_static_R.so
2486948 vendor/lib/libtflite_mtk_static_R.so
2486436 vendor/lib/monetx_ofilm_front_ov16a1q_tuning.so
2482768 vendor/lib64/pascala_shengtai_wide_ov8856_tuning.so
2482768 vendor/lib64/monetx_shengtai_wide_ov8856_tuning.so
2481896 vendor/lib/monetx_hlt_depth_ov02a1b_tuning.so
2481692 vendor/lib/monet_truly_main_ov12a10_tuning.so
2480552 vendor/lib/monetd_truly_main_ov12a10_tuning.so
2474568 vendor/lib64/monet_txd_front_hi556_tuning.so
2471712 vendor/lib/pascala_shengtai_wide_ov8856_tuning.so
2470472 vendor/lib64/victor_s5k3p9sp_mipi_raw_tuning.so
2470236 vendor/lib/monetx_shengtai_wide_ov8856_tuning.so
2460708 vendor/lib/monet_txd_front_hi556_tuning.so
2457212 vendor/lib/victor_s5k3p9sp_mipi_raw_tuning.so
2445976 vendor/lib64/pascali_qtech_main_ov13b10_tuning.so
2432512 vendor/lib/pascali_qtech_main_ov13b10_tuning.so
2429520 vendor/lib64/pascali_hlt_front_s5k4h7_tuning.so
2429520 vendor/lib64/pascala_hlt_front_s5k4h7_tuning.so
2419336 vendor/lib/pascali_hlt_front_s5k4h7_tuning.so
2419336 vendor/lib/pascala_hlt_front_s5k4h7_tuning.so
2414808 vendor/bin/hw/[email protected]
2401648 system/system/system_ext/lib64/libsn100nfc_nci.so
2400912 vendor/lib64/pascali_hlt_depth_gc02m1b_tuning.so
2400912 vendor/lib64/pascala_shengtai_macro_ov02b10_tuning.so
2398960 vendor/lib64/libarcsoft_relighting_pro_image.so
2396752 vendor/lib64/monet_hlt_front_gc5035B_tuning.so
2396744 vendor/lib64/monetx_hlt_macro_gc2385_tuning.so
2396744 vendor/lib64/monetd_cxt_depth_gc2375h_tuning.so
2392648 vendor/lib64/monetx_hlt_macro_gc2375h_tuning.so
2392648 vendor/lib64/monet_lh_macro_gc2375h_tuning.so
2392648 vendor/lib64/monet_hlt_macro_gc2375h_tuning.so
2390224 vendor/lib/pascali_hlt_depth_gc02m1b_tuning.so
2390220 vendor/lib/pascala_shengtai_macro_ov02b10_tuning.so
2388552 vendor/lib64/monet_hlt_front_gc5035_tuning.so
2388552 vendor/lib64/monet_hlt_custfront_gc5035_tuning.so
2385476 vendor/lib/monetx_hlt_macro_gc2385_tuning.so
2385476 vendor/lib/monetd_cxt_depth_gc2375h_tuning.so
2384880 vendor/lib64/mediadrm/libwvdrmengine.so
2382196 vendor/lib/monet_hlt_front_gc5035B_tuning.so
2380528 system/system/lib64/libcameraservice.so
2380168 vendor/lib/monetx_hlt_macro_gc2375h_tuning.so
2379012 vendor/lib/monet_lh_macro_gc2375h_tuning.so
2379012 vendor/lib/monet_hlt_macro_gc2375h_tuning.so
2375776 vendor/lib/monet_hlt_custfront_gc5035_tuning.so
2375772 vendor/lib/monet_hlt_front_gc5035_tuning.so
2361664 vendor/lib64/libVDSuperPhotoAPI.so
2351696 vendor/lib64/monet_hlt_depth_ov02a1b_tuning.so
2350464 vendor/lib64/libmtkcam.featurepipe.streaming.so
2346517 system/system/system_ext/app/PostmanService/PostmanService.apk
2338352 vendor/lib/monet_hlt_depth_ov02a1b_tuning.so
2332008 system/system/system_ext/lib64/libst54nfc_nci.so
2326230 system/system/framework/ext.jar
2320846 system/system/framework/mediatek-telephony-common.jar
2308500 system/system/system_ext/lib/libBitmapCmp.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
2257848 vendor/lib64/egl/libGLES_meow.so
2253480 vendor/lib64/hw/audio.primary.mt6768.so
2206896 vendor/lib/libcam.hal3a.v3.so
2200744 vendor/lib/hw/audio.primary.mt6768.so
2191408 vendor/bin/mtk_agpsd
2165832 vendor/lib/libmtkcam_hwnode.so
2154950 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
2135876 vendor/lib/libarcsoft_dualcam_refocus_left.so
2127684 vendor/lib/libarcsoft_dualcam_refocus_right.so
2109672 vendor/lib64/libVDBlurlessAPI_v2.so
2101381 vendor/res/images/lcd_test_00.png
2101248 system/system/framework/oat/arm64/services.art
2048480 vendor/lib/libwvhidl.so
2030864 boot/ramdisk/init
2020608 system/system/lib64/libclang_rt.asan-aarch64-android.so
1948056 vendor/lib/mediadrm/libwvdrmengine.so
1947354 system/system/system_ext/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
1885144 system/system/lib/libclang_rt.asan-arm-android.so
1873560 system/system/system_ext/app/DataMigrate/DataMigrate.apk
1851774 system/system/apex/com.google.android.os.statsd.apex
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
1832968 vendor/lib/libmtkcam.featurepipe.streaming.so
1832280 vendor/lib/libvpx.so
1828684 system/system/system_ext/lib/[email protected]
1819504 system/system/lib64/libstagefright.so
1787976 vendor/lib64/libcrypto-ss.so
1768576 system/system/lib64/libandroid_runtime.so
1765608 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
1661413 my_product/overlay/CellBroadcastReceiverModuleOverlay.apk
1651512 vendor/lib64/libmtkcam_metastore.so
1621072 system/system/system_ext/framework/oplus-telephony-common.jar
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
1511977 my_product/decouping_wallpaper/common/inlay_wallpaper2.png
1507888 system/system/lib/libcameraservice.so
1498480 vendor/lib64/libmtkcam.featurepipe.capture.so
1482427 system/system/priv-app/SoundPicker/SoundPicker.apk
1466748 vendor/lib/egl/libGLES_meow.so
1451464 system/system/bin/bootstrap/linker64
1432600 system/system/system_ext/lib64/libgpustress_eng.so
1428438 system/system/priv-app/CellBroadcastLegacyApp/CellBroadcastLegacyApp.apk
1396280 vendor/etc/camera/fb_model/112_pre.bin
1396280 vendor/etc/camera/fb_model/012_pre.bin
1386224 vendor/lib64/libutinterface_md.so
1386128 vendor/lib64/libmtkcam.featurepipe.depthmap.so
1379432 system/system/lib64/libmediaplayerservice.so
1352592 system/system/bin/init
1331472 vendor/etc/camera/M_Attribute_AG_BMW_1.1.0.model
1327768 system/system/app/OVoiceManagerService_18073/lib/arm64/libfespl.so
1326208 my_product/decouping_wallpaper/common/inlay_wallpaper6.png
1323864 system/system/lib64/[email protected]
1322492 my_product/decouping_wallpaper/common/inlay_wallpaper7.jpg
1317760 vendor/lib64/libmtkcam.logicalmodule.so
1316644 vendor/bin/volte_ua
1308720 system/system/lib64/[email protected]
1293803 my_product/overlay/SystemUIFingerprintRes_NLGS/SystemUIFingerprintRes_NLGS.apk
1291628 my_product/decouping_wallpaper/common/inlay_wallpaper9.png
1279976 vendor/lib/libmtkcam_metastore.so
1275048 system/system/lib64/libxml2.so
1274706 my_product/decouping_wallpaper/common/inlay_wallpaper4.png
1269760 vendor/lib64/libmtkcam_fdvt.so
1260144 system/system/lib64/libaudioflinger.so
1258752 vendor/lib/libmtkcam_fdvt.so
1249848 system/system/lib64/libchrome.so
1243356 system/system/lib/libandroid_runtime.so
1235200 system/system/lib64/[email protected]
1231112 system/system/lib64/[email protected]
1231048 system/system/lib64/[email protected]
1231032 system/system/lib64/[email protected]
1226080 system/system/lib64/libsqlite.so
1205144 system/system/bin/iorapd
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
1183443 my_product/decouping_wallpaper/common/inlay_wallpaper3.png
1175009 vendor/etc/selinux/vendor_sepolicy_debug.cil
1174596 vendor/etc/selinux/vendor_sepolicy.cil
1173192 system/system/bin/simpleperf
1159360 system/system/lib64/libbcinfo.so
1156616 system/system/lib64/libblas.so
1152496 vendor/lib64/libcam.halsensor.so
1150732 vendor/lib/libcrypto-ss.so
1148608 system/system/system_ext/bin/oppo_adbd
1145480 system/system/bin/vold
1140384 system/system/lib64/libcrypto.so
1132592 system/system/lib64/[email protected]
1126716 vendor/lib/libmtkcam.featurepipe.capture.so
1124700 system/system/lib64/libclcore_g.bc
1109745 system/system/media/audio/ringtones/ringtone_026.ogg
1106160 system/system/system_ext/bin/trace
1085136 vendor/lib/libmtkcam.featurepipe.depthmap.so
1083920 vendor/bin/hw/hostapd
1080536 system/system/lib64/libperfetto.so
1077160 system/system/lib64/libclcore_debug_g.bc
1076334 vendor/lib/modules/met.ko
1075528 vendor/lib64/libdpframework.so
1067372 system/system/lib/libclcore_g.bc
1061604 system/system/bin/bootstrap/linker
1055601 my_product/overlay/SystemUIFingerprintRes_TYJW/SystemUIFingerprintRes_TYJW.apk
1049067 system/system/apex/com.google.android.tethering.apex
1047169 my_product/media/bootanimation/bootanimation.zip
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/[email protected]
1034309 vendor/etc/selinux/precompiled_sepolicy_debug
1030431 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
1016820 system/system/lib/bootstrap/libc.so
1008168 system/system/system_ext/lib64/liboiface.so
1005608 odm/lib/soundfx/libdiraceffect.so
1003780 vendor/lib/libvcodecdrv.so
1003203 vendor/etc/selinux/plat_pub_versioned.cil
986152 system/system/lib64/libaudiopolicymanagerdefault.so
974765 system/system/system_ext/media/audio/ui/weather_alarm_sun3.ogg
969776 system/system/lib64/[email protected]
966360 system/system/system_ext/media/audio/ui/weather_alarm_snow2.ogg
966067 system/system/apex/com.google.android.tzdata2.apex
962984 vendor/lib/libmtkcam.logicalmodule.so
956648 vendor/lib64/libml_util.so
947992 system/system/bin/linkerconfig
943428 vendor/lib/libutinterface_md.so
941608 system/system/lib64/[email protected]
941408 system/system/lib/libclcore_debug_g.bc
940912 vendor/lib64/libneuron_adapter.so
934956 system/system/system_ext/priv-app/DownloadProvider/DownloadProvider.apk
932624 system/system/lib64/[email protected]
930288 vendor/bin/factory
923713 system/system/system_ext/framework/com.oppo.camera.unit.sdk.jar
919000 system/system/lib/[email protected]
917270 boot/ramdisk.packed
916076 system/system/lib/[email protected]
913584 system/system/bin/tcpdump
912616 vendor/lib64/libimageio_plat_drv.so
911136 vendor/lib64/libarcsoft_dualcam_refocus_preview.so
898684 system/system/lib/libchrome.so
892524 system/system/lib/[email protected]
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/[email protected]
889080 system/system/lib/[email protected]
889054 system/system/media/audio/ringtones/ringtone_024.ogg
888940 system/system/lib/[email protected]
888292 my_product/overlay/SystemUIFingerprintRes_LGSY/SystemUIFingerprintRes_LGSY.apk
885868 system/system/lib/libxml2.so
879920 system/system/bin/netd
873992 system/system/priv-app/NetworkStackGoogle/NetworkStackGoogle.apk
868996 system/system/lib/libsqlite.so
866712 vendor/lib64/hw/hwcomposer.mt6768.so
864088 system/system/lib64/libaudioclient.so
857104 system/system/lib/libbcinfo.so
856952 vendor/lib64/librilfusion.so
844788 vendor/lib/libcam.halsensor.so
839952 vendor/lib64/libPerfectlyClearCrux.so
838880 vendor/lib64/libMtkSpeechEnh.so
836337 odm/vendor/app/mcRegistry/08080000000000000000000000000000.tlbin
834520 system/system/lib/libblas.so
833416 vendor/lib64/libfeature.stereo.provider.so
821928 system/system/lib/libcrypto.so
819646 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
805296 vendor/lib/libdpframework.so
802044 vendor/etc/camera/fb_model/eyeBright.png
801441 my_product/overlay/SystemUIFingerprintRes_JHSY/SystemUIFingerprintRes_JHSY.apk
796675 odm/vendor/app/mcRegistry/511ead0a000000000000000000000000.tabin
795936 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/[email protected]
776984 vendor/lib/libwebrtc_audio_preprocessing.so
768552 system/system/system_ext/lib64/libdav1d.so.4
768552 odm/lib64/libdav1d.so.4
755200 system/system/bin/ld.mc
754584 system/system/lib/libmediaplayerservice.so
749584 system/system/lib64/libharfbuzz_ng.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
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
737576 vendor/lib/libcharon-ss.so
736336 system/system/framework/arm64/boot-telephony-common.oat
732749 system/system/media/audio/ringtones/ringtone_003.ogg
732424 system/system/lib64/[email protected]
727528 system/system/lib/libgui.so
727248 vendor/lib64/libcharon-ss.so
724180 system/system/lib/service.incremental.so
719594 system/system/media/audio/ringtones/ringtone_005.ogg
714976 system/system/lib/[email protected]
714752 system/system/lib64/libc++.so
713720 vendor/lib/libDR.so
712540 system/system/lib/libharfbuzz_ng.so
710256 system/system/system_ext/bin/oiface
710168 system/system/lib64/libbinder.so
709192 system/system/fonts/NotoSansSymbols-Regular-Subsetted.ttf
706656 system/system/system_ext/priv-app/SettingsProvider/oat/arm64/SettingsProvider.odex
704896 vendor/lib64/libmtkcam_pipelinepolicy.so
700785 my_product/media/bootanimation/rbootanimation.zip
698856 system/system/lib64/libhidlbase.so
695396 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
678960 vendor/lib64/liblvimfs.so
674296 system/system/lib/[email protected]
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
669428 system/system/lib/[email protected]
668816 vendor/firmware/soc3_0_ram_bt_1_1_hdr.bin
668664 vendor/firmware/soc3_0_ram_bt_1a_1_hdr.bin
667680 system/system/etc/apns-conf.xml
658928 system/system/lib64/[email protected]
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/[email protected]
646704 system/system/lib64/[email protected]
644528 system/system/lib64/libfs_mgr.so
642864 system/system/lib/[email protected]
638416 vendor/lib64/libspeech_enh_lib.so
638124 vendor/lib/libstagefright_soft_aacdec.so
629081 system/system/media/audio/ringtones/ringtone_012.ogg
628632 system/system/framework/arm/boot-telephony-common.oat
628368 system/system/bin/perfetto
623976 system/system/lib64/libcodec2_vndk.so
623560 vendor/firmware/WIFI_RAM_CODE_soc1_0_1a_1.bin
621472 vendor/lib64/libminiui.so
620208 vendor/bin/volte_stack
618088 system/system/media/audio/ringtones/ringtone_016.ogg
616168 vendor/lib/libfeature.stereo.provider.so
615328 system/system/lib64/libsfplugin_ccodec.so
615184 system/system/system_ext/priv-app/SettingsProvider/oat/arm/SettingsProvider.odex
614537 odm/vendor/app/mcRegistry/05060000000000000000000000000000.tabin
612976 system/system/system_ext/lib64/liboplusrecorder.so
610736 system/system/lib64/[email protected]
609477 system/system/system_ext/etc/selinux/system_ext_sepolicy_debug.cil
609256 system/system/system_ext/lib/libstnfc-nci.so
606688 vendor/bin/volte_imcb
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
588848 system/system/lib64/libsonivox.so
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
580824 vendor/lib64/libmtkcam_3rdparty.mtk.so
577500 system/system/lib/libft2.so
577408 system/system/etc/textclassifier/textclassifier.en.model
574743 system/system/system_ext/priv-app/SettingsProvider/SettingsProvider.apk
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
571216 vendor/lib64/libmtkcam_pipeline.so
570973 vendor/firmware/soc1_0_ram_bt_1a_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
562000 vendor/lib/libMtkSpeechEnh.so
559016 vendor/lib/libvpud_vcodec.so
558840 vendor/lib64/libstrongswan.so
553400 system/system/lib64/libaudiopolicyengineconfigurable.so
553320 system/system/lib64/libmedia_jni.so
552960 system/system/framework/arm/boot-telephony-common.art
552880 vendor/lib64/libcamera_core_hwi.so
551784 vendor/lib64/egl/libMEOW_gift.so
547436 system/system/lib/libaudioflinger.so
543774 system/system/framework/am.jar
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/[email protected]
525365 system/system/media/audio/ringtones/ringtone_010.ogg
523348 system/system/lib/[email protected]
521098 system/system/system_ext/app/NetworkHealthService/NetworkHealthService.apk
515832 vendor/lib64/libcam.iopipe.so
515078 vendor/lib/modules/fmradio_drv.ko
514094 system/system/media/audio/ringtones/ringtone_008.ogg
514040 vendor/lib64/libmtkcam_3rdparty.customer.so
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
506704 system/system/lib64/libRSCpuRef.so
506400 vendor/lib64/libmfllcore.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
502272 system/system/lib64/libcamera_client.so
502120 system/system/system_ext/lib64/libslpVoiceEngine.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
499436 vendor/lib/libstrongswan.so
497864 system/system/lib/libhidlbase.so
496304 system/system/lib64/[email protected]
495496 odm/etc/dirac/diracmobile.config
495452 vendor/lib/libstereoinfoaccessor_vsdof.so
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
488912 vendor/lib/libvolte_core_shr.so
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
472656 system/system/system_ext/media/audio/ui/weather_alarm_wind2.ogg
468736 system/system/lib/[email protected]
467516 system/system/lib/[email protected]
465384 system/system/system_ext/lib/libnfc_st_dta.so
465068 system/system/lib/[email protected]
463464 system/system/lib64/libvowp23_sid_training_alexa.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
460264 vendor/lib64/libmtkcam_pipelinemodel_session.so
459312 vendor/lib64/egl/libMEOW_trace.so
458256 system/system/lib64/libaudiopolicycustomextensions.so
456472 system/system/system_ext/lib64/libswscale.so
456472 odm/lib64/libswscale.so
455942 vendor/etc/aurisys_param/Speech_AudioParam.xml
454360 vendor/lib/libh264dec_sa.ca7.so
447928 vendor/lib64/libssl-ss.so
447672 odm/bin/iwpriv_vendor
447200 vendor/bin/hw/[email protected]
445480 system/system/system_ext/media/audio/ui/weather_alarm_cloud2.ogg
444564 vendor/lib/libstagefright_soft_aacenc.so
444144 vendor/lib64/libcurl_xcap_md.so
440848 system/system/framework/arm64/boot-mediatek-telephony-common.oat
440312 system/system/lib/libcodec2_vndk.so
440168 system/system/bin/heapprofd
440068 vendor/lib/libcamera_core_hwi.so
437960 vendor/lib64/libmtkcam_featurepolicy.so
437100 vendor/lib/libmtkcam_3rdparty.mtk.so
436648 system/system/lib/[email protected]
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
431805 system/system/media/audio/ringtones/ringtone_007.ogg
431028 vendor/lib/libHEVCdec_sa.ca7.android.so
431000 vendor/lib/libmtkcam_pipeline.so
428080 system/system/bin/keystore
427796 system/system/system_ext/lib/libavutil.so
427796 odm/lib/libavutil.so
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
418102 system/system/framework/mediatek-framework.jar
417888 odm/lib64/[email protected]
417456 my_product/decouping_wallpaper/common/inlay_wallpaper_id.png
414345 system/system/system_ext/media/audio/ui/weather_alarm_thunderstorm.ogg
414048 system/system/lib64/extractors/libmtkmpeg2extractor.so
413456 vendor/lib64/[email protected]
411936 system/system/bin/ip
407672 system/system/bin/iorap.inode2filename
407240 vendor/lib64/libFrameRecord.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/[email protected]
403496 system/system/system_ext/lib64/[email protected]
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/[email protected]
399664 vendor/lib64/libcamalgo.vsf.so
399512 vendor/lib/libjpeg-alpha_vendor.so
399508 system/system/lib/libjpeg-alpha.so
398640 vendor/lib/libcam.iopipe.so
397008 vendor/lib/libmtkcam_3rdparty.customer.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
393024 vendor/lib/egl/libMEOW_gift.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
390762 my_product/decouping_wallpaper/default/oppo_default_wallpaper_lock.png
390762 my_product/decouping_wallpaper/default/oppo_default_wallpaper.png
390762 my_product/decouping_wallpaper/common/inlay_wallpaper1.png
390560 system/system/lib/libsfplugin_ccodec.so
388632 system/system/bin/traced_perf
388304 system/system/lib64/libinputreader.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
381824 vendor/lib64/libmtkcam_hwutils.so
381328 system/system/lib64/libmediametricsservice.so
380676 vendor/lib/libmfllcore.so
380506 system/system/system_ext/media/audio/ui/weather_alarm_thunderstorm3.ogg
380417 system/system/priv-app/Shell/Shell.apk
379932 vendor/lib/liblvimfs.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/[email protected]
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
372608 system/system/lib64/[email protected]
372592 system/system/etc/textclassifier/lang_id.model
370420 system/system/lib/libvowp2training_alexa.so
366758 system/system/framework/uiautomator.jar
365210 system/system/system_ext/media/audio/ui/weather_alarm_haze2.ogg
365160 vendor/bin/md_monitor
362688 system/system/bin/gsid
362600 system/system/lib64/[email protected]
361512 vendor/lib64/libfeature.vsdof.hal.so
361272 vendor/lib/libVDPostureDetection.so
361240 vendor/lib64/libcamalgo.n3d.so
360488 system/system/lib/[email protected]
359224 system/system/bin/dumpstate
358969 odm/firmware/tp/206AC/FW_NF_ILT9882N_TXD.bin
358761 odm/firmware/tp/206AC/FW_NF_ILT9882N_TXD_FAE.bin
358288 system/system/system_ext/lib/libslpVoiceEngine.so
358040 system/system/lib64/libsensorservice.so
357784 system/system/lib64/libinputflinger.so
353984 system/system/lib64/libext2fs.so
353892 vendor/lib/libvp9dec_sa.ca7.so
353076 system/system/lib64/libclcore_debug.bc
352004 vendor/lib/libcamalgo.n3d.so
350696 system/system/lib64/libFFTEm.so
350436 system/system/system_ext/etc/oiface/oiface.config
349368 vendor/lib/libprotobuf-cpp-lite-3.9.1.so
349356 system/system/lib/libprotobuf-cpp-lite.so
348498 system/system/framework/mediatek-telephony-base.jar
347320 system/system/lib64/libssl.so
347296 system/system/framework/oat/arm64/org.apache.http.legacy.odex
343432 system/system/lib64/libkeymaster_portable.so
343384 vendor/lib64/libkeymaster_portable.so
342884 system/system/app/SimAppDialog/SimAppDialog.apk
338569 system/system/system_ext/app/MtkWallpaperPicker/MtkWallpaperPicker.apk
336544 system/system/lib/libunwindstack.so
336480 vendor/lib/libopus.so
334278 system/system/apex/com.android.apex.cts.shim.apex
333936 system/system/lib64/libclcore_neon.bc
333644 system/system/lib/libandroidfw.so
333520 vendor/lib64/libutinterface_custom_md.so
332880 system/system/lib64/libpcap.so
332746 tmp/all_filenames.txt
332504 system/system/fonts/RobotoCondensed-LightItalic.ttf
332172 system/system/fonts/Roboto-LightItalic.ttf
332160 system/system/fonts/Roboto-BoldItalic.ttf
330796 system/system/fonts/Roboto-MediumItalic.ttf
330504 system/system/fonts/RobotoCondensed-BoldItalic.ttf
330448 system/system/fonts/Roboto-BlackItalic.ttf
330432 system/system/lib64/libclcore.bc
330348 system/system/fonts/RobotoCondensed-MediumItalic.ttf
330312 system/system/system_ext/bin/emdlogger1
329700 system/system/fonts/Roboto-ThinItalic.ttf
329372 system/system/fonts/RobotoCondensed-Italic.ttf
329071 odm/firmware/tp/19741/FW_NF_ILT9881H_TXD.bin
329071 odm/firmware/tp/19741/FW_NF_ILT9881H_TRULY.bin
328863 odm/firmware/tp/19741/FW_NF_ILT9881H_TXD_FAE.bin
328863 odm/firmware/tp/19741/FW_NF_ILT9881H_TRULY_FAE.bin
328744 system/system/lib64/libpcre2.so
328640 system/system/fonts/Roboto-Italic.ttf
328632 system/system/lib64/[email protected]
328296 system/system/fonts/SysSans-En-Regular.ttf
327448 system/system/system_ext/lib64/libdrmmtkutil.so
326272 system/system/system_ext/bin/horae
326024 system/system/system_ext/bin/emdlogger5
324536 system/system/system_ext/priv-app/Settings/oat/arm64/Settings.odex
324260 system/system/system_ext/priv-app/Settings/oat/arm/Settings.odex
324216 system/system/system_ext/lib64/libpcap_bak.so
324008 vendor/lib64/libmtkcam_device3_utils.so
323941 system/system/priv-app/NetworkStackGoogle/NetworkStackGoogle-arm64_v8a.apk
323632 vendor/lib/libstagefright_soft_avcdec.so
323452 system/system/lib/libclcore_debug.bc
322152 system/system/lib64/libRS_internal.so
322040 vendor/lib64/[email protected]
321952 odm/lib64/[email protected]
321944 system/system/system_ext/bin/emdlogger2
321744 vendor/lib64/libFaceBeautyPre.so
321611 system/system/etc/NOTICE.xml.gz
321528 system/system/lib64/libmtkbluetooth_jni.so
320768 system/system/lib64/libjpeg.so
320736 system/system/lib64/[email protected]
319760 system/system/system_ext/lib64/extractors/libOplusmp4extractor.so
319272 system/system/bin/secilc
318896 system/system/lib64/libyuv.so
317251 system/system/usr/hyphen-data/hyph-hu.hyb
315224 vendor/lib64/libmtkcam_device3_app.so
314976 odm/lib64/libsl_fp_impl.so
314908 vendor/lib/egl/libMEOW_trace.so
314600 vendor/lib64/libcamalgo.nr.so
314352 vendor/bin/sh
314328 system/system/bin/sh
314144 system/system/lib64/libaaudio_internal.so
313496 system/system/lib64/[email protected]
311752 vendor/lib64/libmtkcam_imgbuf.so
311568 system/system/lib64/libsfplugin_ccodec_utils.so
311336 system/system/lib64/libevent.so
310514 system/system/framework/coloros-internal-services.jar
310120 vendor/lib64/libril.so
309064 vendor/lib/libcamalgo.nr.so
308976 vendor/lib/libmtkcam_hwutils.so
308264 vendor/lib/libMtkOmxVdecEx.so
307664 system/system/fonts/Roboto-Thin.ttf
307216 vendor/lib64/libimageio_plat_pipe.so
307192 system/system/fonts/Roboto-Light.ttf
307152 vendor/lib64/libmtkcam_pipelinemodel_isp.so
306940 system/system/fonts/Roboto-Bold.ttf
306536 system/system/fonts/Roboto-Medium.ttf
306428 system/system/fonts/Roboto-Black.ttf
305968 system/system/bin/incidentd
305744 odm/lib64/libgf_hal_G6.so
305608 system/system/fonts/Roboto-Regular.ttf
305400 vendor/lib64/libhevce_sb.ca7.android.so
305175 vendor/etc/camera/fb_model/skin_dark.png
305175 vendor/etc/camera/fb_model/skin_back.png
305175 vendor/etc/camera/fb_model/skin_CCT.png
304877 system/system/system_ext/app/UAFClient/UAFClient.apk
303944 system/system/fonts/RobotoCondensed-Bold.ttf
303733 system/system/system_ext/priv-app/MtkCarrierConfig/MtkCarrierConfig.apk
303604 system/system/fonts/RobotoCondensed-Medium.ttf
302828 vendor/lib/libssl-ss.so
302816 system/system/lib64/libstagefright_omx.so
302640 vendor/lib/libvp8dec_sa.ca7.so
302304 vendor/lib64/libcamalgo.asd.so
302300 system/system/fonts/RobotoCondensed-Light.ttf
301750 system/system/media/audio/ringtones/ringtone_004.ogg
301576 vendor/lib/libmtkcam_3rdparty.core.so
301364 system/system/framework/oat/arm/org.apache.http.legacy.odex
301196 system/system/lib/libclcore_neon.bc
300664 system/system/fonts/RobotoCondensed-Regular.ttf
300344 vendor/lib/libcurl_xcap_md.so
300280 vendor/lib/libstagefright_soft_avcenc.so
299148 system/system/lib/libstagefright_wfd_mtk.so
298004 vendor/lib/libMtkOmxVenc.so
297820 system/system/lib/libclcore.bc
295860 odm/lib/[email protected]
294700 system/system/lib/libinputreader.so
293516 system/system/fonts/SourceSansPro-Regular.ttf
292976 vendor/lib64/hw/[email protected]
292608 vendor/lib64/libmtkcam_pipelinemodel_utils.so
292339 my_product/decouping_wallpaper/common/inlay_wallpaper8.jpg
292191 system/system/priv-app/WapiCertManager/WapiCertManager.apk
291955 system/system/media/audio/ringtones/ringtone_017.ogg
291864 system/system/fonts/SourceSansPro-SemiBold.ttf
290916 system/system/fonts/SourceSansPro-Bold.ttf
289856 system/system/lib64/libRScpp.so
289672 vendor/lib/libcamalgo.asd.so
289112 system/system/lib64/libui.so
288068 vendor/lib/[email protected]
288064 system/system/system_ext/lib/[email protected]
286848 system/system/lib64/[email protected]
286672 system/system/lib/libjpeg.so
286184 vendor/lib64/libpq_cust_base.so
285760 system/system/app/OVoiceManagerService_18073/lib/arm64/libduiutils.so
285664 vendor/lib/libFrameRecord.so
285404 system/system/lib/libcamera_client.so
283448 system/system/lib/[email protected]
283080 system/system/lib/libstagefright_httplive.so
282272 system/system/bin/trigger_perfetto
281688 system/system/lib/libevent.so
280360 system/system/bin/tc
280304 vendor/lib64/libcurl-ss.so
279760 system/system/lib64/libbcc.so
278544 system/system/lib64/slicer.so
278272 system/system/lib64/libdynamic_depth.so
277904 vendor/lib/libpq_cust_base.so
276976 system/system/lib64/libvowp25training_alexa.so
276200 system/system/lib/libext2fs.so
275784 system/system/system_ext/priv-app/DownloaderCenterUI/oat/arm64/DownloaderCenterUI.odex
275528 vendor/bin/applypatch
274846 system/system/system_ext/app/SecureElement/SecureElement.apk
274376 system/system/lib64/libfdtrack.so
273832 vendor/lib/libfeature.vsdof.hal.so
272840 vendor/bin/meta_tst
270184 system/system/framework/oat/arm64/oplus-service-jobscheduler.odex
269512 vendor/lib/lib3a.af.so
269504 system/system/priv-app/SmartRatSwitch/SmartRatSwitch.apk
269496 system/system/lib64/[email protected]
268832 system/system/bin/credstore
268648 system/system/system_ext/lib64/liboplusstagefright__mp3enc.so
268184 system/system/lib/libinputflinger.so
268116 system/system/lib/[email protected]
265132 system/system/fonts/FZZWXBTOT_Uni.ttf
264272 vendor/lib64/libarcsoft_hdr_couple_api.so
264040 vendor/lib64/libmtkcam_streamutils.so
263732 system/system/lib/libsensorservice.so
263592 system/system/lib/libpcre2.so
263080 system/system/fonts/NotoSerif-BoldItalic.ttf
262976 system/system/lib64/libwilhelm.so
262648 vendor/bin/mnld
262616 vendor/lib64/libaal_mtk.so
261920 system/system/lib64/libadbd_auth.so
261744 system/system/lib64/[email protected]
261645 system/system/media/audio/ringtones/ringtone_006.ogg
260864 system/system/bin/racoon
260366 system/system/framework/ims-common.jar
260268 system/system/lib/liblhdc.so
260064 system/system/lib64/libaudiopolicyservice.so
259728 system/system/system_ext/lib64/[email protected]
259304 system/system/bin/pppd
259172 vendor/lib/libh264enc_sa.ca7.so
258924 system/system/fonts/XType-Bold.otf
258912 system/system/lib/[email protected]
258762 system/system/system_ext/framework/oppo_bluetooth_common_ext.jar
258160 system/system/lib64/libbase.so
257872 vendor/lib64/libcamalgo.eis.so
257824 vendor/lib64/[email protected]
257696 system/system/lib64/libprocessgroup.so
257072 vendor/lib64/libmtkcam_device3_hal.so
256968 vendor/lib64/lib3a.af.so
256496 system/system/lib64/[email protected]
255984 system/system/bin/lshal
255926 vendor/etc/armnn_app.config
255624 system/system/lib64/libinput.so
254704 system/system/bin/fsck.f2fs
254416 odm/lib64/libgf_hal_G5.so
254208 system/system/lib64/libcamera2ndk.so
252465 vendor/app/mcRegistry/0706000000000000000000000000004d.tlbin
251680 vendor/lib/libcamalgo.lsc.so
251480 system/system/lib/libstagefright_wfd_oplus.so
251128 system/system/bin/viewcompiler
250892 vendor/lib/lib3a.af.core.so
250072 system/system/lib64/libmtp.so
249748 system/system/fonts/NotoSerif-Italic.ttf
249712 vendor/lib64/libmtkcam_ulog.so
248848 vendor/lib64/libnvram.so
248696 system/system/lib64/[email protected]
247892 system/system/fonts/NotoSerif-Bold.ttf
247770 system/system/framework/mediatek-framework-net.jar
247220 odm/etc/audio/spk.wav
246880 system/system/lib64/libaudio_param_parser-sys.so
246740 system/system/fonts/NotoSerif-Regular.ttf
246408 system/system/lib/libFFTEm.so
246384 system/system/system_ext/lib64/liboifaceim.so
245840 vendor/lib/libcamalgo.eis.so
245312 system/system/bin/e2fsck
245304 system/system/lib64/[email protected]
244340 system/system/lib/libpcap.so
243648 vendor/lib/libmtkcam_pipelinemodel_isp.so
242808 vendor/lib64/hw/sensors.mt6768.so
242624 vendor/lib64/hw/[email protected]
241499 system/system/system_ext/media/audio/ui/sound_10s.mp3
240264 system/system/lib/[email protected]
239552 vendor/lib64/lib3a.af.core.so
239344 vendor/lib64/libpq_prot.so
238192 system/system/system_ext/bin/emdlogger3
238008 vendor/lib64/libcamalgo.lsc.so
237408 vendor/lib64/libaudio_param_parser-vnd.so
236644 vendor/lib/libimageio_plat_pipe.so