-
Notifications
You must be signed in to change notification settings - Fork 0
/
all_files.txt
5534 lines (5534 loc) · 261 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
164231299 product/app/webview/webview.apk
78961527 system_ext/priv-app/Settings/Settings.apk
64928498 product/app/LatinIME/LatinIME.apk
62880715 system/system/apex/com.android.art.apex
57144268 system/system/framework/framework-res.apk
42936144 vendor/lib64/egl/libGLES_mali.so
42607687 system/system/apex/com.android.vndk.current.apex
39879124 vendor/lib/libstfaceunlockocl.so
39758904 system_ext/priv-app/SystemUI/SystemUI.apk
39612704 system/system/framework/oat/arm64/services.odex
36485112 system/system/apex/com.android.i18n.apex
33554432 boot.img
33099237 bootRE/boot.elf
32328680 system/system/framework/framework.jar
29742960 vendor/lib/egl/libGLES_mali.so
26676248 vendor/lib64/libarcsoft_beautyshot.so
24774996 system/system/fonts/NotoSerifCJK-Regular.ttc
23561200 system_ext/priv-app/SystemUI/oat/arm64/SystemUI.odex
21202500 bootimg/[email protected]
20103214 system/system/apex/com.android.media.swcodec.apex
19474852 system/system/fonts/NotoSansCJK-Regular.ttc
19357940 system_ext/priv-app/ThemePicker/ThemePicker.apk
18982336 system/system/apex/com.android.permission.apex
18947376 system/system/lib64/libLLVM_android.so
17643984 vendor/lib64/libcvface_api.so
16486002 system/system/framework/services.jar
15585552 vendor/lib64/libarmnn_ndk.mtk.so
15381560 product/priv-app/Dialer/Dialer.apk
14079928 vendor/lib64/libstface_fd_api.so
13737480 vendor/lib/libarmnn_ndk.mtk.so
13468038 system_ext/priv-app/Lawnchair/Lawnchair.apk
12995315 system/system/priv-app/RealmeParts/RealmeParts.apk
12676104 vendor/lib64/libarmnn.so
12150784 bootimg/00_kernel
11606967 product/priv-app/Contacts/Contacts.apk
11588150 product/app/ota/ota.apk
11433116 system/system/priv-app/Traceur/Traceur.apk
11239525 system/system/priv-app/Telecom/Telecom.apk
11207816 vendor/lib/libavcodec.so
11182352 vendor/etc/camera/gasryuv.model
11134015 product/app/messaging/messaging.apk
11091056 vendor/lib64/libnir_neon_driver_ndk.mtk.so
10840604 system/system/priv-app/RealmeDirac/RealmeDirac.apk
10777153 boot/kernel
10762974 system_ext/priv-app/EmergencyInfo/EmergencyInfo.apk
10731717 system_ext/priv-app/StorageManager/StorageManager.apk
10515464 vendor/lib64/libPolarrRender.so
10475233 system/system/apex/com.android.cellbroadcast.apex
10295552 vendor/lib64/libcamalgo.fdft.so
10129098 system/system/priv-app/TeleService/TeleService.apk
10104108 system/system/media/bootanimation.zip
9759504 vendor/lib64/libavcodec.so
9596016 system/system/framework/arm64/boot-framework.oat
9092696 system/system/lib64/libbluetooth.so
8964704 system/system/fonts/NotoColorEmoji.ttf
8916436 system/system/apex/com.android.adbd.apex
8909328 system/system/lib64/libhwui.so
8728656 vendor/lib64/libnir_neon_driver.so
8536511 system/system/apex/com.android.neuralnetworks.apex
8504232 vendor/lib64/libcmdl_ndk.mtk.so
8388608 dtbo.img
8346512 vendor/lib64/libarcsoft_scbokeh_image.so
8299407 dtbo/[email protected]
8250480 system/system/framework/arm/boot-framework.oat
8197737 system/system/app/Bluetooth/Bluetooth.apk
8005079 system/system/apex/com.android.runtime.apex
7761936 vendor/etc/camera/attribute.model
7610060 product/app/Gallery2/Gallery2.apk
7380439 product/app/DeskClock/DeskClock.apk
7344344 vendor/lib64/libmegface_rt_bokeh.so
7172056 system/system/priv-app/Telecom/oat/arm64/Telecom.odex
7008028 vendor/recovery-from-boot.p
6992991 system/system/apex/com.android.media.apex
6926181 system/system/priv-app/EngineerMode/EngineerMode.apk
6890850 system/system/priv-app/ManagedProvisioning/ManagedProvisioning.apk
6685968 system/system/lib/libbluetooth.so
6672712 vendor/lib64/libVDSuperPhotoAPI.so
6528887 system/system/priv-app/ImsService/ImsService.apk
6435149 system/system/priv-app/DocumentsUI/DocumentsUI.apk
6419228 vendor/lib/libcmdl_ndk.mtk.so
6285480 system/system/lib/libhwui.so
6269392 system/system/bin/surfaceflinger
6044846 vendor/etc/camera/merged_model_post
5999238 system/system/apex/com.android.wifi.apex
5793664 system/system/apex/com.android.extservices.apex
5633956 vendor/etc/asd/detect.tflite
5339832 vendor/lib64/liboppo_aisd.so
5204696 vendor/lib/modules/wlan_drv_gen4m.ko
5188654 system/system/apex/com.android.conscrypt.apex
5102966 system/system/app/EasterEgg/EasterEgg.apk
4587577 system/system/apex/com.android.mediaprovider.apex
4443612 system/system/app/LiveWallpapersPicker/LiveWallpapersPicker.apk
4367986 product/priv-app/ImsServiceEntitlement/ImsServiceEntitlement.apk
4352000 system/system/app/KeyChain/oat/arm64/KeyChain.odex
4210048 vendor/lib64/libarcsoft_low_light_hdr.so
4148352 vendor/lib64/libmtk-ril.so
3964448 vendor/lib64/libOPPORectify.so
3911416 system/system/lib64/libpdfium.so
3833789 product/app/Lawnicons/Lawnicons.apk
3822952 system/system/app/NfcNci/NfcNci.apk
3815840 vendor/lib64/libarcsoft_high_dynamic_range.so
3781604 system/system/lib/libpdfium.so
3750576 vendor/lib64/libarcsoft_high_dynamic_range_couple.so
3682304 system/system/framework/arm64/boot-framework.art
3643869 system/system/framework/telephony-common.jar
3547136 system/system/framework/arm/boot-framework.art
3469632 vendor/lib64/libneuropilot_jni_R.so
3373076 system/system/app/Stk/Stk.apk
3363094 system/system/app/KeyChain/KeyChain.apk
3360659 system/system/priv-app/PackageInstaller/PackageInstaller.apk
3336876 vendor/lib/libmnl.so
3283356 system/system/fonts/SamsungOne.ttf
3283356 product/fonts/SamsungOne.ttf
3266652 vendor/etc/asd/class.tflite
3193584 vendor/bin/OppoKeybox
3175034 vendor/app/EmCamera/EmCamera.apk
2957366 product/etc/res/images/charger/battery_scale.png
2949984 boot/ramdisk/init
2929736 vendor/lib64/libtflite_mtk.so
2890120 system/system/bin/iorap.cmd.compiler
2786744 vendor/lib64/libcam.hal3a.v3.so
2778421 system/system/apex/com.android.tethering.apex
2764336 vendor/lib64/libwvhidl.so
2729940 system/system/apex/com.android.resolv.apex
2714032 vendor/lib64/libMegviiHumBokehPost-mtk.so
2672040 vendor/lib64/libcameracustom.so
2658936 vendor/bin/hw/wpa_supplicant
2642576 vendor/lib64/[email protected]
2607944 vendor/lib64/libarcsoft_dualcam_refocus_left.so
2606762 system/system/framework/mediatek-telephony-common.jar
2599752 vendor/lib64/libarcsoft_dualcam_refocus_right.so
2594376 vendor/lib64/libFaceBeautyCap.so
2535144 vendor/lib64/monetx_truly_main_s5kgm1sp_tuning.so
2531668 vendor/lib/monetx_truly_main_s5kgm1sp_tuning.so
2524072 product/app/Calendar/Calendar.apk
2503496 vendor/lib/libneuropilot_jni_R.so
2502932 vendor/lib/monetx_ofilm_front_ov16a1q_tuning.so
2502312 vendor/lib64/monetx_ofilm_front_ov16a1q_tuning.so
2500688 vendor/lib64/libVDDualCameraBlurless.so
2498916 vendor/lib/monetd_truly_main_ov12a10_tuning.so
2498916 vendor/lib/monet_truly_main_ov12a10_tuning.so
2498848 vendor/lib/monetx_hlt_depth_ov02a1b_tuning.so
2498848 vendor/lib/monetd_lh_depth_gc2375h_tuning.so
2498280 vendor/lib64/monetd_truly_main_ov12a10_tuning.so
2498280 vendor/lib64/monet_truly_main_ov12a10_tuning.so
2498216 vendor/lib64/monetx_hlt_depth_ov02a1b_tuning.so
2498216 vendor/lib64/monetd_lh_depth_gc2375h_tuning.so
2493880 vendor/lib64/mediadrm/libwvdrmengine.so
2486556 vendor/lib/monetx_shengtai_wide_ov8856_tuning.so
2485928 vendor/lib64/monetx_shengtai_wide_ov8856_tuning.so
2478352 vendor/lib/monet_txd_front_hi556_tuning.so
2477736 vendor/lib64/monet_txd_front_hi556_tuning.so
2449984 vendor/lib/hw/audio.primary.mt6768.so
2431056 system/system/lib64/libcameraservice.so
2429304 vendor/lib64/libmtkcam_hwnode.so
2414808 vendor/bin/hw/[email protected]
2404628 vendor/lib/monetd_cxt_depth_gc2375h_tuning.so
2404624 vendor/lib/monetx_hlt_macro_gc2385_tuning.so
2401134 product/priv-app/SettingsIntelligence/SettingsIntelligence.apk
2400528 vendor/lib/monet_hlt_front_gc5035B_tuning.so
2399912 vendor/lib64/monetx_hlt_macro_gc2385_tuning.so
2399912 vendor/lib64/monetd_cxt_depth_gc2375h_tuning.so
2399912 vendor/lib64/monet_hlt_front_gc5035B_tuning.so
2398960 vendor/lib64/libarcsoft_relighting_pro_image.so
2396432 vendor/lib/monetx_hlt_macro_gc2375h_tuning.so
2396432 vendor/lib/monet_lh_macro_gc2375h_tuning.so
2396432 vendor/lib/monet_hlt_macro_gc2375h_tuning.so
2395808 vendor/lib64/monetx_hlt_macro_gc2375h_tuning.so
2395808 vendor/lib64/monet_lh_macro_gc2375h_tuning.so
2395808 vendor/lib64/monet_hlt_macro_gc2375h_tuning.so
2392344 vendor/lib/monet_hlt_front_gc5035_tuning.so
2392340 vendor/lib/monet_hlt_custfront_gc5035_tuning.so
2391712 vendor/lib64/monet_hlt_front_gc5035_tuning.so
2391712 vendor/lib64/monet_hlt_custfront_gc5035_tuning.so
2386728 vendor/lib64/libneuropilot_jni.so
2372548 system/system/fonts/Roboto-Regular.ttf
2361840 vendor/lib64/libtflite_mtk_static.so
2355476 vendor/lib/monet_hlt_depth_ov02a1b_tuning.so
2354856 vendor/lib64/monet_hlt_depth_ov02a1b_tuning.so
2310240 vendor/lib64/hw/audio.primary.mt6768.so
2306048 system/system/framework/oat/arm64/services.art
2286160 vendor/lib/libwvhidl.so
2240688 vendor/lib64/libprotobuf-cpp-full-3.9.1.so
2240688 system/system/lib64/libprotobuf-cpp-full.so
2235888 system/system/bin/init
2209203 vendor/app/SensorHub/SensorHub.apk
2201014 system/system/framework/ext.jar
2189588 system/system/priv-app/StatementService/StatementService.apk
2133776 vendor/lib/modules/wmt_drv.ko
2124772 vendor/bin/mtk_agpsd
2116256 system/system/lib64/libandroid_runtime.so
2109672 vendor/lib64/libVDBlurlessAPI_v2.so
2103323 system/system/apex/com.android.appsearch.apex
2094700 vendor/lib/libtflite_mtk.so
2068696 vendor/lib/mediadrm/libwvdrmengine.so
2015104 system/system/lib64/libclang_rt.asan-aarch64-android.so
1957824 vendor/lib/libvpx.so
1914544 vendor/lib64/libprotobuf-cpp-full.so
1894307 system/system/apex/com.android.os.statsd.apex
1883239 system/system/etc/selinux/plat_sepolicy.cil
1877064 vendor/lib64/egl/libGLES_meow.so
1875184 system/system/lib64/hw/audio.a2dp.default.so
1867752 vendor/lib64/[email protected]
1867752 system/system/lib64/[email protected]
1854800 system/system/lib64/libstagefright.so
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
1809791 system/system/priv-app/MediaProviderLegacy/MediaProviderLegacy.apk
1805760 vendor/lib64/libmtkcam.featurepipe.streaming.so
1804000 vendor/lib64/[email protected]
1804000 system/system/lib64/[email protected]
1793136 system/system/lib/libclang_rt.asan-arm-android.so
1787984 vendor/lib64/libcrypto-ss.so
1776352 system/system/bin/bootstrap/linker64
1742648 vendor/lib64/[email protected]
1742648 system_ext/lib64/[email protected]
1705700 vendor/lib/libneuropilot_jni.so
1688640 vendor/lib/libtflite_mtk_static.so
1630579 system/system/priv-app/MtpService/MtpService.apk
1618320 vendor/lib64/libavformat.so
1610168 system/system/lib/libprotobuf-cpp-full.so
1610004 vendor/lib/libprotobuf-cpp-full-3.9.1.so
1596424 vendor/lib/libavformat.so
1594312 system/system/bin/keystore2
1558880 system/system/lib64/[email protected]
1556580 system/system/priv-app/SoundPicker/SoundPicker.apk
1538192 system/system/lib64/[email protected]
1538064 vendor/lib64/[email protected]
1538064 system/system/lib64/[email protected]
1538040 system/system/lib64/[email protected]
1500824 vendor/lib64/[email protected]
1500824 system/system/lib64/[email protected]
1497620 system/system/lib/libandroid_runtime.so
1490303 system/system/priv-app/CellBroadcastLegacyApp/CellBroadcastLegacyApp.apk
1481216 system/system/fonts/LGSmartGothic.ttf
1481216 product/fonts/LGSmartGothic.ttf
1475696 vendor/lib64/libmtkcam.featurepipe.capture.so
1464024 vendor/lib64/libarcsoft_distortion_correction.so
1417752 system/system/bin/simpleperf
1417600 system/system/lib64/libgrpc++.so
1409452 system/system/lib/libstagefright.so
1403468 system/system/lib/hw/audio.a2dp.default.so
1402628 vendor/lib/libprotobuf-cpp-full.so
1396280 vendor/etc/camera/fb_model/112_pre.bin
1396280 vendor/etc/camera/fb_model/012_pre.bin
1382128 vendor/lib64/libutinterface_md.so
1381808 vendor/lib64/[email protected]
1381808 system/system/lib64/[email protected]
1370396 vendor/lib/libvpud_vcodec.so
1369937 boot/ramdisk.packed
1342088 system/system/bin/bootstrap/linkerconfig
1336904 vendor/lib/[email protected]
1336832 system/system/lib/[email protected]
1336776 vendor/lib64/[email protected]
1336776 system/system/lib64/[email protected]
1326568 vendor/lib64/libmtkcam.featurepipe.depthmap.so
1318196 system/system/fonts/Rosemary-Regular.ttf
1318196 product/fonts/Rosemary-Regular.ttf
1312548 vendor/bin/volte_ua
1304224 vendor/lib64/[email protected]
1304224 system/system/lib64/[email protected]
1301680 system/system/lib64/libchrome.so
1296012 system/system/bin/bootstrap/linker
1282840 vendor/lib/[email protected]
1282820 system/system/lib/[email protected]
1273320 vendor/lib64/libmtkcam_fdvt.so
1271392 system/system/lib64/libxml2.so
1261208 vendor/lib64/[email protected]
1261208 system/system/lib64/[email protected]
1260688 vendor/lib64/libchrome.so
1242720 system/system/bin/iorapd
1233656 system/system/lib64/service.incremental.so
1226520 system/system/lib64/libgui.so
1220048 system/system/lib64/libcrypto.so
1211380 vendor/lib/egl/libGLES_meow.so
1210512 vendor/lib64/libsl_fp_algo.so
1207080 system/system/lib64/libperfetto.so
1206256 system_ext/lib/[email protected]
1206216 vendor/lib/[email protected]
1197464 product/media/audio/ringtones/CyanTone.ogg
1193672 vendor/lib/libDiracAPI_SHARED.so
1189864 vendor/lib64/libarcsoft_hdr_denoise_api.so
1186512 system/system/framework/arm64/boot-core-icu4j.oat
1180640 system/system/bin/snapshotctl
1179001 system/system/priv-app/NetworkStack/NetworkStack.apk
1177584 system/system/lib64/libblas.so
1171927 product/app/ExactCalculator/ExactCalculator.apk
1171072 system/system/lib64/libaudioflinger.so
1156440 system/system/lib64/libbcinfo.so
1150736 vendor/lib/libcrypto-ss.so
1147576 system/system/lib64/libsqlite.so
1124700 system/system/lib64/libclcore_g.bc
1122016 vendor/lib/[email protected]
1122008 system/system/lib/[email protected]
1114712 system/system/lib/libmediaplayerservice.so
1100000 system/system/fonts/NotoSerifTibetan-VF.ttf
1077160 system/system/lib64/libclcore_debug_g.bc
1075412 vendor/lib/libvcodecdrv.so
1074443 system/system/app/PrintSpooler/PrintSpooler.apk
1070868 vendor/lib/libsl_fp_algo.so
1068200 vendor/lib64/[email protected]
1068200 system/system/lib64/[email protected]
1067372 system/system/lib/libclcore_g.bc
1063944 vendor/lib/modules/met.ko
1043328 vendor/lib64/libmtkcam_metastore.so
1038980 system/system/lib/libgrpc++.so
1038848 system/system/lib/[email protected]
1038744 vendor/lib/[email protected]
1038452 vendor/etc/recovery-resource.dat
1037840 vendor/lib64/libfcell.so
1037632 vendor/lib64/libdpframework.so
1030488 system/system/bin/vold
1024968 system/system/framework/arm/boot-core-icu4j.oat
1021272 product/lib64/libjni_latinime.so
1020947 vendor/etc/diracmobile.config
1009144 system/system/lib64/bootstrap/libc.so
1003256 system/system/lib64/libharfbuzz_ng.so
980311 vendor/etc/selinux/plat_pub_versioned.cil
977840 system/system/lib/libharfbuzz_ng.so
975344 system/system/priv-app/ContactsProvider/ContactsProvider.apk
974504 vendor/bin/hw/hostapd
964154 odm/etc/selinux/precompiled_sepolicy
958168 system/system/apex/com.android.tzdata.apex
956648 vendor/lib64/libml_util.so
955276 system/system/lib/[email protected]
955272 vendor/lib/[email protected]
951952 vendor/lib64/[email protected]
951952 system/system/lib64/[email protected]
950048 system/system/lib64/libaudiopolicymanagerdefault.so
949776 vendor/etc/selinux/vendor_sepolicy.cil
945292 system/system/lib/[email protected]
945284 vendor/lib/[email protected]
943432 vendor/lib/libutinterface_md.so
941408 system/system/lib/libclcore_debug_g.bc
940912 vendor/lib64/libneuron_adapter.so
940468 system/system/lib/libchrome.so
938368 system/system/lib64/libnfc-nci.so
933258 product/media/audio/alarms/Platinum.ogg
925760 system/system/lib64/[email protected]
917872 system/system/lib64/libgpumemtracer.so
911144 vendor/lib64/libarcsoft_dualcam_refocus_preview.so
910824 vendor/lib64/[email protected]
908472 vendor/lib64/libimageio_plat_drv.so
905952 system/system/bin/tcpdump
903928 vendor/lib64/libwebrtc_audio_preprocessing.so
903512 vendor/lib/libchrome.so
897612 system/system/lib/[email protected]
897596 vendor/lib/[email protected]
895428 system/system/lib/libcrypto.so
891728 vendor/lib64/[email protected]
890976 system/system/lib/libxml2.so
885856 vendor/bin/mcDriverDaemon
885824 system/system/lib64/[email protected]
881020 system/system/lib/service.incremental.so
867172 system/system/lib/[email protected]
867152 vendor/lib/[email protected]
864016 system/system/lib/libbcinfo.so
860464 system/system/lib/libgui.so
853444 system/system/lib/bootstrap/libc.so
849908 system/system/lib/libblas.so
848496 system/system/bin/snapuserd
848048 vendor/lib64/[email protected]
843584 system/system/lib64/libandroid_servers.so
843492 system/system/fonts/NotoColorEmojiFlags.ttf
827600 vendor/lib64/libPerfectlyClearCrux.so
827504 vendor/lib64/[email protected]
827504 system/system/lib64/[email protected]
825200 vendor/lib64/librilfusion.so
825174 product/app/Music/Music.apk
821693 system/system/apex/com.android.sdkext.apex
820585 vendor/app/mcRegistry/08080000000000000000000000000000.tlbin
818872 system/system/lib64/[email protected]
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
807528 vendor/lib64/libMtkSpeechEnh.so
804668 vendor/lib/libwebrtc_audio_preprocessing.so
803797 system/system/priv-app/DownloadProvider/DownloadProvider.apk
796579 vendor/app/mcRegistry/511ead0a000000000000000000000000.tabin
791572 system/system/lib/libsqlite.so
791336 vendor/lib64/[email protected]
789064 vendor/lib/libdpframework.so
788944 system/system/lib64/libaudioclient.so
784096 system/system/lib64/libclang_rt.ubsan_standalone-aarch64-android.so
783916 vendor/lib/libvc1dec_sa.ca7.so
783584 vendor/lib64/libcmdl.so
781456 vendor/lib64/[email protected]
780608 system/system/lib64/libdng_sdk.so
777720 vendor/lib/[email protected]
777712 system/system/lib/[email protected]
774800 system/system/lib64/libsepol.so
774768 system/system/lib64/libhidlbase.so
770232 vendor/lib64/libmtkcam.logicalmodule.so
763319 system/system/apex/com.android.ipsec.apex
762785 system/system/framework/voip-common.jar
753483 system/system/etc/NOTICE.xml.gz
750336 system/system/bin/ld.mc
749696 system/system/bin/gsid
743088 system/system/bin/logd
737580 vendor/lib/libcharon-ss.so
727256 vendor/lib64/libcharon-ss.so
725088 vendor/lib64/libfeature.stereo.provider.so
724448 system/system/lib64/libaudioprocessing.so
722400 system/system/lib64/libnfc_nci_jni.so
720336 vendor/lib64/[email protected]
720336 system/system/lib64/[email protected]
719700 system/system/priv-app/Tag/Tag.apk
718440 system/system/bin/mdnsd
712951 product/media/audio/ringtones/Boxbeat.ogg
708968 system/system/fonts/NotoSansSymbols-Regular-Subsetted.ttf
706472 system/system/lib64/libfs_mgr_binder.so
704256 system/system/bin/netd
700400 system/system/lib64/libc++.so
699176 vendor/lib64/[email protected]
697816 vendor/lib64/libstereoinfoaccessor_vsdof.so
694880 vendor/lib64/libcam.halsensor.so
683708 product/media/audio/ringtones/Titania.ogg
683520 system/system/bin/perfetto
682088 vendor/lib64/hw/hwcomposer.mt6768.so
681160 system/system/lib64/libmedia.so
680648 vendor/lib64/[email protected]
680648 system/system/lib64/[email protected]
680312 system/system/lib64/libcodec2_vndk.so
679856 vendor/lib/[email protected]
679848 system/system/lib/[email protected]
667680 product/etc/apns-conf.xml
659624 system/system/bin/apexd
659208 system/system/lib64/libsfplugin_ccodec.so
642952 vendor/lib64/[email protected]
637424 vendor/lib64/libspeech_enh_lib.so
631790 system/system/app/CertInstaller/CertInstaller.apk
631212 vendor/lib/libstagefright_soft_aacdec.so
630024 vendor/lib64/libmtkcam_3rdparty.customer.so
629613 product/media/audio/ringtones/Pyxis.ogg
629576 vendor/lib64/libssh.so
628076 system/system/lib/libandroid_servers.so
627664 vendor/lib64/[email protected]
627664 system/system/lib64/[email protected]
624760 system/system/lib64/libmedia_jni.so
622544 vendor/lib64/libminiui.so
620760 vendor/lib64/libVDEyeEnhance.so
620204 vendor/bin/volte_stack
619512 vendor/lib/libminiui.so
611240 system/system/lib64/libft2.so
609360 system/system/lib64/libinputreader.so
608792 system/system/lib/[email protected]
608784 vendor/lib/[email protected]
606688 vendor/bin/volte_imcb
606112 system/system/lib64/libbinder.so
605680 vendor/firmware/WIFI_RAM_CODE_soc1_0_1a_1.bin
605629 system/system/etc/preloaded-classes
603651 product/media/audio/ringtones/Yukaay.ogg
603040 system/system/lib64/[email protected]
601732 vendor/lib/libspeech_enh_lib.so
601112 vendor/lib64/libmtkcam_device3_app.so
597496 system/system/lib64/libfs_mgr.so
590728 system/system/lib64/libvintf.so
588428 system/system/lib/libft2.so
586832 system/system/lib64/libsonivox.so
586662 system/system/priv-app/CalendarProvider/CalendarProvider.apk
584896 vendor/lib64/libFactoryHALCommon.so
582016 system/system/fonts/SanFranciscoDisplayPro.ttf
582016 product/fonts/SanFranciscoDisplayPro.ttf
581072 system/system/lib64/libaudiopolicyenginedefault.so
578808 vendor/lib64/libmtkcam_3rdparty.mtk.so
578136 vendor/lib64/libmtkcam_pipeline.so
572795 system/system/framework/android.test.mock.jar
570277 vendor/firmware/soc1_0_ram_bt_1a_1_hdr.bin
568488 system/system/lib/libdng_sdk.so
565016 system/system/lib64/libunwindstack.so
564944 vendor/lib64/libmtkcam_pipelinepolicy.so
558848 vendor/lib64/libstrongswan.so
556744 system/system/lib/libsonivox.so
554376 system/system/lib/libhidlbase.so
554367 system/system/priv-app/BuiltInPrintService/BuiltInPrintService.apk
552992 vendor/lib64/[email protected]
546312 system/system/lib64/[email protected]
539080 product/app/PhotoTable/PhotoTable.apk
538320 system/system/lib64/libcamera_client.so
538272 system/system/lib64/libandroidfw.so
537788 vendor/lib/libMtkSpeechEnh.so
537176 system/system/lib/libsepol.so
535640 vendor/lib64/egl/libMEOW_trace.so
527020 system/system/lib/[email protected]
527016 vendor/lib/[email protected]
524088 vendor/lib64/libmfllcore.so
522029 system/system/framework/ims-common.jar
508030 system/system/app/CaptivePortalLogin/CaptivePortalLogin.apk
507549 product/media/audio/alarms/Argon.ogg
507368 vendor/lib64/libkeymaster_portable.so
507368 system/system/lib64/libkeymaster_portable.so
505436 system/system/fonts/NotoSansEgyptianHieroglyphs-Regular.ttf
502992 system/system/lib64/libRSCpuRef.so
500380 system/system/fonts/NotoSansCuneiform-Regular.ttf
499440 vendor/lib/libstrongswan.so
499248 system/system/bin/curl
498868 system/system/lib/libmedia.so
494808 system/system/bin/toybox
494744 vendor/bin/toybox_vendor
493052 system/system/lib/libcodec2_vndk.so
492624 vendor/lib/modules/fmradio_drv.ko
491837 system/system/usr/share/zoneinfo/tzdata
489600 vendor/bin/hw/[email protected]
489312 vendor/lib64/libVDExternal.so
487424 system/system/framework/arm64/boot-telephony-common.art
485848 system/system/lib/libc++.so
485069 system_ext/priv-app/QuickAccessWallet/QuickAccessWallet.apk
484820 vendor/lib/libvolte_core_shr.so
483792 vendor/lib64/libcam.iopipe.so
483120 system/system/bin/iptables
482526 system/system/framework/am.jar
482464 vendor/lib64/libprotobuf-cpp-lite-3.9.1.so
482464 system/system/lib64/libprotobuf-cpp-lite.so
482272 vendor/lib64/libcamera_core_hwi.so
482156 system/system/lib/libsfplugin_ccodec.so
481336 system/system/lib/libaudioclient.so
480496 vendor/lib64/libVDPostureDetection.so
480212 vendor/lib/[email protected]
480208 system/system/lib/[email protected]
477456 system/system/lib64/[email protected]
477440 vendor/lib64/[email protected]
477440 system/system/lib64/[email protected]
475136 system/system/framework/arm64/boot-core-icu4j.art
474848 vendor/lib/libh264dec_se.ca7.so
473560 system/system/bin/traced_perf
471219 product/media/audio/ringtones/Triton.ogg
471040 system/system/framework/arm/boot-telephony-common.art
469416 system/system/bin/heapprofd
468720 system/system/lib64/libmediametricsservice.so
465727 product/media/audio/ringtones/Oberon.ogg
464721 product/media/audio/alarms/Neon.ogg
462848 system/system/framework/arm/boot-core-icu4j.art
461204 system/system/lib/libclang_rt.ubsan_standalone-arm-android.so
458932 system/system/lib/libinputreader.so
455032 system/system/lib64/libinputflinger.so
454368 vendor/lib/libh264dec_sa.ca7.so
452952 system/system/priv-app/SettingsProvider/oat/arm64/SettingsProvider.odex
452784 vendor/lib64/libunwindstack-v30.so
450700 system/system/lib/libmedia_jni.so
450086 system/system/framework/org.apache.http.legacy.jar
448888 system/system/fonts/NotoSansEthiopic-VF.ttf
447936 vendor/lib64/libssl-ss.so
447672 vendor/bin/iwpriv
447672 system/system/bin/iwpriv
447516 vendor/lib/libstagefright_soft_aacenc.so
446676 vendor/lib/[email protected]
446672 system/system/lib/[email protected]
445112 vendor/lib64/[email protected]
445112 system/system/lib64/[email protected]
444152 vendor/lib64/libcurl_xcap_md.so
440168 vendor/lib64/[email protected]
440168 system/system/lib64/[email protected]
439278 system/system/priv-app/TelephonyProvider/TelephonyProvider.apk
438780 system/system/fonts/RobotoCondensedLight.ttf
438780 product/fonts/RobotoCondensedLight.ttf
438093 system/system/priv-app/Shell/Shell.apk
436760 vendor/lib/libstagefright_soft_hevcdec.so
436448 vendor/lib64/libvoh264enc.so
435620 vendor/lib/libavutil.so
435448 vendor/lib64/[email protected]
435448 system/system/lib64/[email protected]
435128 vendor/lib/libHEVCdec_sa.ca7.android.so
433712 system/system/lib/[email protected]
425880 system/system/lib64/libflatbuffers-cpp.so
425208 system/system/lib/libvintf.so
424160 vendor/lib64/[email protected]
422696 vendor/lib64/libmtkcam_pipelinemodel_session.so
422312 system/system/lib64/[email protected]
415176 product/lib64/libjni_jpegstream.so
415124 vendor/lib/libswscale.so
414568 vendor/lib64/[email protected]
413488 system/system/lib/libunwindstack.so
412896 system/system/fonts/NotoSerifEthiopic-VF.ttf
410508 system/system/lib/libbinder.so
406000 system/system/bin/ip
405681 product/media/audio/ringtones/Callisto.ogg
404882 system/system/framework/mediatek-framework.jar
403032 system/system/lib/libstagefright_httplive.so
402152 system/system/lib/[email protected]
399684 system/system/fonts/NotoSansGrantha-Regular.ttf
399228 system/system/lib/libandroidfw.so
397752 vendor/lib64/[email protected]
397752 system/system/lib64/[email protected]
397536 system/system/bin/iorap.inode2filename
397160 system/system/lib64/[email protected]
396264 vendor/lib64/libmtkcam_3rdparty.core.so
395828 system/system/lib/libRSCpuRef.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
391016 vendor/lib64/[email protected]
391016 system/system/lib64/[email protected]
390264 vendor/lib64/libmtkcam_imgbuf.so
390200 system/system/lib64/libinput.so
390000 system/system/bin/wificond
385384 system/system/bin/iorap.cmd.maintenance
384768 vendor/lib/libh264dec_sd.ca7.so
383132 vendor/lib/libjpeg-alpha_vendor.so
375472 system/system/bin/dumpstate
375160 system/system/lib64/libaudiopolicyservice.so
374089 system/system/priv-app/SettingsProvider/SettingsProvider.apk
373960 system/system/bin/installd
373626 system/system/framework/uiautomator.jar
372216 system/system/lib64/libwfds.so
370644 vendor/lib/egl/libMEOW_trace.so
370168 vendor/lib64/libavutil.so
369360 vendor/lib64/libunwindstack-v29.so
367792 system/system/app/SimAppDialog/SimAppDialog.apk
366800 vendor/firmware/ufs/SAMSUNG-KM8V7001JM-B810.bin
366768 vendor/lib64/libmtkcam_hwutils.so
365054 system/system/framework/mediatek-telephony-base.jar
363112 vendor/lib64/libjpeg-alpha_vendor.so
362232 vendor/lib/libvoh264enc.so
361272 vendor/lib/libVDPostureDetection.so
358268 system/system/fonts/NotoSansSinhalaUI-VF.ttf
358248 system/system/fonts/NotoSansSinhala-VF.ttf
357840 vendor/bin/md_monitor
356312 system/system/framework/boot-framework.vdex
355960 system/system/lib64/libjpeg.so
355352 vendor/lib64/[email protected]
355352 system/system/lib64/[email protected]
353900 vendor/lib/libvp9dec_sa.ca7.so
353076 system/system/lib64/libclcore_debug.bc
352312 system/system/lib64/libssl.so
352276 vendor/etc/dirac/19741/diracmobile.config
352220 system/system/fonts/NotoSerifSinhala-VF.ttf
351640 system/system/lib64/libcups.so
351208 system/system/lib64/libext2fs.so
348256 system/system/lib/libinputflinger.so
347872 system/system/lib/libprotobuf-cpp-lite.so
347868 vendor/lib/libprotobuf-cpp-lite-3.9.1.so
347276 vendor/lib/[email protected]
347276 system/system/lib/[email protected]
344856 vendor/lib64/[email protected]
344043 product/media/audio/ringtones/Dione.ogg
343456 system/system/lib64/libFFTEm.so
342904 system/system/framework/oat/arm64/org.apache.http.legacy.odex
342864 system/system/lib/[email protected]
341704 vendor/lib/libopus.so
341632 vendor/lib64/libsl_fp_impl.so
341544 vendor/lib64/libswscale.so
340984 vendor/lib/libDR.so
340420 system/system/fonts/NotoSerifTelugu-VF.ttf
337152 system/system/lib/libjpeg.so
336254 system/system/apex/com.android.apex.cts.shim.apex
335928 system/system/lib64/libpcre2.so
333936 system/system/lib64/libclcore_neon.bc
333536 vendor/lib64/[email protected]
333536 system/system/lib64/[email protected]
332192 vendor/lib/libstagefright_soft_avcdec.so
330792 system/system/lib64/libprocessgroup.so
330432 system/system/lib64/libclcore.bc
329724 vendor/lib/libunwindstack-v30.so
329071 vendor/firmware/tp/19741/xl_auo_ilitek_oppo_signed.bin
329026 vendor/firmware/tp/19741/txd_auo_ilitek_oppo_signed.bin
328863 vendor/firmware/tp/19741/xl_auo_ilitek.bin
328818 vendor/firmware/tp/19741/txd_auo_ilitek.bin
328704 vendor/lib64/libmtk-rilop.so
327440 vendor/lib64/[email protected]
327440 system/system/lib64/[email protected]
327184 system/system/lib64/netd_aidl_interface-V7-cpp.so
324128 system/system/lib64/libsfplugin_ccodec_utils.so
323944 system/system/lib64/libyuv.so
323452 system/system/lib/libclcore_debug.bc
322864 system/system/lib64/netd_aidl_interface-V6-cpp.so
322448 vendor/lib64/libcamalgo.nr.so
322143 system/system/apex/com.android.scheduling.apex
321472 system/system/lib64/[email protected]
320318 system/system/framework/services.jar.prof
320180 vendor/lib/[email protected]
320152 system/system/lib/[email protected]
318888 system/system/lib64/libRS_internal.so
318280 system/system/fonts/UbuntuRegular.ttf
318280 product/fonts/UbuntuRegular.ttf
317652 vendor/lib/[email protected]
317652 system/system/lib/[email protected]
317251 system/system/usr/hyphen-data/hyph-hu.hyb
317136 vendor/lib64/libutinterface_custom_md.so
316448 vendor/lib/[email protected]
316436 system/system/lib/[email protected]
316370 product/media/audio/ringtones/Sceptrum.ogg
315408 system/system/lib64/libpcap.so
315312 system/system/bin/secilc
314880 system/system/lib/[email protected]
312504 system/system/lib64/libevent.so
312128 vendor/lib64/libimageio_plat_pipe.so
311710 system/system/priv-app/BlockedNumberProvider/BlockedNumberProvider.apk
311032 system/system/lib64/libbluetooth_jni.so
310960 vendor/lib64/libmtkcam_streamutils.so
310552 system/system/lib64/[email protected]
309816 vendor/lib64/[email protected]
309816 system/system/lib64/[email protected]
308960 vendor/lib/libstagefright_soft_avcenc.so
308880 system/system/lib64/libaaudio_internal.so
307768 system/system/bin/sh
307704 vendor/bin/sh
307299 product/media/audio/alarms/Oxygen.ogg
305656 system/system/fonts/RobotoStatic-Regular.ttf
305408 vendor/lib64/libhevce_sb.ca7.android.so
305175 vendor/etc/camera/fb_model/skin_normal.png
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
305040 system/system/lib/libstagefright_wfd.so
304548 system/system/lib/libcamera_client.so
304140 system/system/fonts/NotoSerifDevanagari-VF.ttf
303992 vendor/lib64/nfc_nci.pn54x.default.so
303632 vendor/lib64/libcamalgo.n3d.so
303168 vendor/lib64/libmtkcam_featurepolicy.so
302832 vendor/lib/libssl-ss.so
302644 vendor/lib/libvp8dec_sa.ca7.so
302176 vendor/lib64/hw/[email protected]
302152 vendor/lib64/libcamalgo.asd.so
301400 system/system/bin/credstore
301196 system/system/lib/libclcore_neon.bc
301056 system/system/framework/oat/arm/org.apache.http.legacy.odex
300844 system/system/lib/libflatbuffers-cpp.so
300352 vendor/lib/libcurl_xcap_md.so
299976 system/system/lib64/libstagefright_omx.so
299252 system/system/priv-app/InputDevices/InputDevices.apk
299032 system/system/lib64/libui.so
298408 system/system/lib64/libfdtrack.so
297896 vendor/lib64/libril.so
297820 system/system/lib/libclcore.bc
297552 system/system/bin/trigger_perfetto
296872 vendor/lib64/lib3a.af.core.so
296772 vendor/lib/[email protected]
296208 vendor/lib64/libsl_fp_prepro.so
294792 vendor/lib64/[email protected]
294792 system/system/lib64/[email protected]
294424 system/system/fonts/NokiaPure-Regular.ttf
294424 product/fonts/NokiaPure-Regular.ttf
293516 system/system/fonts/SourceSansPro-Regular.ttf
292736 system/system/fonts/NotoSerifBengali-VF.ttf
291864 system/system/fonts/SourceSansPro-SemiBold.ttf
291200 system/system/bin/incidentd
290916 system/system/fonts/SourceSansPro-Bold.ttf
290775 boot/dtb.img
288568 vendor/lib64/[email protected]
288568 system/system/lib64/[email protected]
287896 system/system/lib/libinput.so
286840 vendor/lib64/libsl_fp_nosec.so
284904 system/system/lib/libevent.so
283962 vendor/etc/mmigroup/spk.wav
283962 vendor/etc/mmigroup/rec.wav
283888 vendor/lib64/[email protected]
283200 system/system/lib/[email protected]
283196 vendor/lib/[email protected]
283128 vendor/lib64/libcamalgo.vsf.so
282484 vendor/lib/libunwindstack-v29.so
282348 system/system/lib/[email protected]
282344 vendor/lib/[email protected]
282080 system/system/lib64/libvkjson.so
280848 system_ext/lib64/libnrb.so
280312 vendor/lib64/libcurl-ss.so
280224 system/system/lib64/slicer.so
279224 system/system/lib64/libstagefright_foundation.so
278424 vendor/lib64/libmtkcam_pipelinemodel_utils.so
278200 system/system/lib64/libbcc.so
278192 system/system/bin/tc
277304 vendor/lib64/lib3a.af.so
276352 system/system/lib/libpcre2.so
276120 system/system/lib64/libdynamic_depth.so
275016 system/system/fonts/NotoSansTelugu-VF.ttf
274528 system/system/lib64/libsensorservice.so
274476 system_ext/priv-app/Settings/oat/arm64/Settings.vdex
274344 vendor/bin/applypatch
273664 system/system/fonts/NotoSansTeluguUI-VF.ttf
273320 vendor/lib64/[email protected]
273320 system/system/lib64/[email protected]
272832 vendor/lib64/libwpfa.so
271088 vendor/lib/libMtkOmxVenc.so
270788 system_ext/priv-app/SystemUI/oat/arm64/SystemUI.vdex
269464 system/system/bin/fsck.f2fs
268808 vendor/lib64/libfeature.vsdof.hal.so
268128 system/system/lib64/libmediautils.so
267848 vendor/lib64/libnvram.so
267256 system/system/lib64/libRScpp.so
267144 system/system/priv-app/DownloadProviderUi/DownloadProviderUi.apk
266960 vendor/lib64/libmtkcam_device3.so
266952 vendor/bin/mnld
266384 vendor/lib64/libprotobuf-cpp-lite.so
264896 system/system/lib64/[email protected]
264432 vendor/lib64/lib3a.ae.core.so
264272 vendor/lib64/libarcsoft_hdr_couple_api.so
264232 system/system/lib64/[email protected]
263080 system/system/fonts/NotoSerif-BoldItalic.ttf
261912 vendor/lib64/libcamalgo.eis.so
260904 vendor/lib64/hw/sensors.mt6768.so
260720 vendor/bin/sshd
260696 system/system/lib64/libwilhelm.so
259776 vendor/lib/libkeymaster_portable.so
259652 vendor/lib/libMtkOmxVdecEx.so
259572 vendor/lib/[email protected]
259568 system/system/lib/[email protected]
259176 vendor/lib/libh264enc_sa.ca7.so
258613 system/system/priv-app/BackupRestoreConfirmation/BackupRestoreConfirmation.apk
258000 system/system/bin/racoon
257232 system/system/lib64/libaaudioservice.so
256560 system/system/lib64/libcamera2ndk.so
256352 vendor/lib64/libmtkcam_ulog.so
253156 system/system/fonts/NotoSansDevanagari-VF.ttf
253152 system/system/bin/pppd
253096 system/system/lib64/[email protected]
251052 vendor/lib/nfc_nci.pn54x.default.so
250704 system/system/lib64/libadbd_auth.so
249848 vendor/lib64/[email protected]
249748 system/system/fonts/NotoSerif-Italic.ttf
249712 system/system/lib64/audioflinger-aidl-cpp.so
249244 system/system/fonts/NotoSansBengali-VF.ttf
249136 system/system/bin/sload_f2fs
249112 system/system/fonts/NotoSerifKannada-VF.ttf
248984 system/system/lib64/[email protected]
247892 system/system/fonts/NotoSerif-Bold.ttf
247460 system/system/fonts/NotoSansDevanagariUI-VF.ttf
246893 product/media/audio/ringtones/Umbriel.ogg
246772 system/system/fonts/NotoSansBengaliUI-VF.ttf
246740 system/system/fonts/NotoSerif-Regular.ttf
246192 vendor/lib64/[email protected]
246192 system/system/lib64/[email protected]
246040 vendor/lib/[email protected]
246040 system/system/lib/[email protected]
245832 system/system/lib/libFFTEm.so
245708 system/system/fonts/Montserrat.ttf
245708 product/fonts/Montserrat.ttf
245632 system/system/bin/viewcompiler
242976 system/system/lib64/libbase.so
241592 vendor/lib64/libcamalgo.lsc.so
241136 vendor/lib64/[email protected]
241040 system/system/lib64/libnblog.so
240856 system/system/lib64/libmediadrm.so
240120 system/system/lib/libssl.so
239960 vendor/lib64/[email protected]
239648 system/system/bin/e2fsck
239336 vendor/lib64/[email protected]
239336 system/system/lib64/[email protected]
237256 system/system/lib/libprocessgroup.so
237156 vendor/lib/libsl_fp_impl.so
236343 product/media/audio/ringtones/Perseus.ogg
236316 tmp/all_filenames.txt
236096 vendor/lib64/[email protected]
236096 system/system/lib64/[email protected]
236048 vendor/lib64/hw/[email protected]
235652 system/system/lib/[email protected]
235648 vendor/lib/[email protected]
235424 system/system/lib64/libmtp.so
235288 vendor/lib64/[email protected]
235224 vendor/lib64/libarcsoft_dualcam_bokeh_api.so
233544 system/system/lib/libstagefright_omx.so
232520 vendor/lib64/[email protected]
232520 system/system/lib64/[email protected]
231656 system/system/lib64/audiopolicy-aidl-cpp.so
231168 system/system/lib64/[email protected]
230688 system/system/lib64/libpng.so
230568 vendor/lib64/[email protected]
230568 system/system/lib64/[email protected]
230100 product/media/audio/ringtones/Atria.ogg
229672 system/system/lib/libRS_internal.so
229252 vendor/lib/libhevce_sb.ca7.android.so
228832 system/system/bin/odsign
228552 vendor/lib64/libaal_mtk.so
228024 system/system/lib/libui.so
227240 vendor/lib64/libaudio_param_parser-vnd.so
226952 vendor/lib64/[email protected]
226952 system/system/lib64/[email protected]
225891 product/media/audio/ringtones/ArgoNavis.ogg
223820 vendor/lib/libsl_fp_nosec.so
222844 vendor/lib/libvp8enc_sa.ca7.so
222056 system/system/lib/libsfplugin_ccodec_utils.so
221508 vendor/etc/spk.wav
221424 vendor/lib64/libaudiofoundation.so
221424 system/system/lib64/libaudiofoundation.so
221296 vendor/lib64/[email protected]
221296 system_ext/lib64/[email protected]
221072 system/system/lib64/bootstrap/libm.so
220880 system/system/lib64/libfruit.so
220424 vendor/lib/libfgauge_gm30.so
220032 system/system/bin/chargeonlymode
219792 vendor/lib64/libmtkcam_stdutils.so
219662 product/media/audio/alarms/Krypton.ogg
219088 vendor/lib/hw/[email protected]
219088 system/system/lib64/[email protected]
218920 system/system/bin/incident_helper
218195 system/system/etc/boot-image.prof
218160 system/system/lib64/[email protected]
217960 system/system/lib64/libkm_compat.so
217640 system/system/lib64/[email protected]
217486 product/media/audio/ringtones/Highscore.ogg
216000 system/system/lib64/libmediandk.so
216000 product/media/audio/ringtones/Rockin.ogg
215944 vendor/bin/md_monitor_ctrl
215872 system/system/lib64/[email protected]
215280 system/system/lib64/liblayers_proto.so
215252 vendor/lib/libnvram.so
214216 system/system/lib/libfdtrack.so
214000 vendor/lib64/[email protected]
213440 system/system/lib64/libidmap2.so
213328 system/system/lib64/librtp_jni.so
212392 vendor/lib64/libpq_prot.so
211752 system/system/fonts/NotoSansKannada-VF.ttf
210992 system/system/lib64/libminikin.so
210176 vendor/lib/libutinterface_custom_md.so
209976 vendor/lib/[email protected]
209976 system/system/lib/[email protected]
209568 vendor/lib/libril.so
208940 system/system/framework/oat/arm64/services.vdex
208776 system/system/lib64/[email protected]
208248 system/system/bin/charger
208088 vendor/lib64/[email protected]
206809 product/media/audio/ringtones/CrazyDream.ogg
206720 system/system/lib64/libRSDriver.so
206144 vendor/lib64/libmtkcam_metadata.so
205040 system/system/lib/[email protected]
205036 vendor/lib/[email protected]
204720 system/system/lib/libRScpp.so
204240 system_ext/priv-app/CarrierConfig/CarrierConfig.apk
204232 vendor/lib64/libcamdrv_twin.so
203696 vendor/bin/pnscr
203328 system/system/lib64/[email protected]
203272 system/system/lib64/libEGL.so
202024 vendor/lib64/hw/[email protected]
201352 system/system/lib64/libmemunreachable.so
201268 vendor/etc/apdb/APDB_MT6768_S01__W1952
200844 system/system/lib/libstagefright_foundation.so
199568 system/system/lib64/libstagefright_framecapture_utils.so
199313 product/media/audio/alarms/Osmium.ogg
199192 vendor/lib64/[email protected]
199192 system/system/lib64/[email protected]
199048 system/system/lib64/libjsoncpp.so
198560 vendor/lib64/libakl.so
198296 vendor/lib64/[email protected]
198088 vendor/lib64/libcam.feature_utils.so
197944 vendor/lib/libcurl-ss.so
197904 system/system/lib64/[email protected]
197440 vendor/lib64/libsysenv.so
197336 vendor/lib64/libpixelflinger.so
197288 vendor/lib/[email protected]
197072 vendor/lib64/nfc_nci_nxp.so
197002 product/media/audio/ringtones/Sedna.ogg
196792 vendor/lib64/hw/[email protected]
196412 vendor/firmware/soc1_0_ram_wifi_1a_1_hdr.bin
195744 vendor/bin/ssh
195048 system/system/lib64/[email protected]
194048 system/system/bin/storaged
192080 vendor/lib/libpq_cust_base.so
192032 system/system/lib64/libmedia_omx.so
191936 vendor/lib64/[email protected]
191752 vendor/lib/libprotobuf-cpp-lite.so
191560 system/system/bin/lshal
191228 vendor/lib/libmtkcam_ulog.so
191144 vendor/lib64/libmtkutils.so
190740 vendor/lib/[email protected]
190740 system/system/lib/[email protected]
190720 vendor/lib64/libcamdrv_isp.so
189944 system_ext/priv-app/ThemePicker/oat/arm64/ThemePicker.vdex
189872 system/system/bin/iorap.prefetcherd
189000 vendor/lib64/[email protected]
188760 vendor/lib64/[email protected]
188760 system/system/lib64/[email protected]
188583 system/system/etc/selinux/mapping/31.0.cil
188464 vendor/lib64/[email protected]
188464 system/system/lib64/[email protected]
187868 system/system/lib/libsensorservice.so
187704 vendor/lib64/libacdk.so
187256 vendor/lib64/[email protected]
187256 system/system/lib64/[email protected]
187008 vendor/lib64/[email protected]
187008 system/system/lib64/[email protected]
186788 system/system/lib/libwilhelm.so
186784 system/system/lib64/libvibratorservice.so
185736 system/system/bin/sgdisk
185608 system/system/lib/libmtk_vt_service.so
185005 product/media/audio/ringtones/UrsaMinor.ogg
184920 system/system/fonts/NotoSansKannadaUI-VF.ttf
184765 system/system/overlay/CustomConfigOverlay.apk
184704 vendor/lib64/[email protected]
184704 system/system/lib64/[email protected]
184132 vendor/lib/hw/[email protected]
183984 vendor/lib64/[email protected]
183952 system/system/lib64/[email protected]
183952 system/system/fonts/SonySketch.ttf
183952 product/fonts/SonySketch.ttf
183104 vendor/lib64/libpq_cust_base.so
183104 system/system/lib64/libfilterfw.so
182856 vendor/lib/libmp4enc_xa.ca7.so
182616 vendor/lib/libMtkOmxWmaDec.so
180896 system/system/lib64/libpowermanager.so
180784 product/media/audio/alarms/Neon-old.ogg
180776 system/system/lib64/android.hardware.gnss-V1-cpp.so
180760 system/system/lib64/[email protected]