-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathall_files.txt
5501 lines (5501 loc) · 264 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
133486789 product/app/webview/webview.apk
47185920 vendor/dummy
47185920 system/system/dummy
47185920 product/dummy
36321832 product/priv-app/MtkSettings/MtkSettings.apk
34741696 vendor/lib64/libPVROCL.so
33868261 system/system/framework/framework-res.apk
33554432 recovery.img
33554432 boot.img
30314508 bootRE/boot.elf
27026058 system/system/framework/framework.jar
26395496 system/system/framework/oat/arm64/services.odex
25265440 vendor/lib/libPVROCL.so
24776440 system/system/fonts/NotoSerifCJK-Regular.ttc
24314784 system/system/apex/com.android.runtime.debug/etc/icu/icudt63l.dat
22933440 bootimg/02_dtbdump_MT6765.dtb
20332200 system/system/fonts/NotoSansCJK-Regular.ttc
19280400 system/system/lib64/libLLVM_android.so
18628779 product/app/LatinIME/LatinIME.apk
16051220 product/priv-app/MtkSystemUI/MtkSystemUI.apk
15915798 product/app/Camera0/Camera0.apk
13839040 product/priv-app/MtkDialer/MtkDialer.apk
13559416 system/system/framework/arm64/boot-framework.oat
12526436 system/system/framework/services.jar
11533915 product/priv-app/MtkGallery2/MtkGallery2.apk
11344916 system/system/framework/arm/boot-framework.oat
11125698 system/system/priv-app/MtkMms/MtkMms.apk
10736708 product/priv-app/MtkContacts/MtkContacts.apk
10278864 vendor/lib64/libcamalgo.fdft.so
9935879 recovery/kernel
9806553 boot/kernel
9711416 bootimg/00_kernel
9477229 system/system/priv-app/MtkTeleService/MtkTeleService.apk
9384876 system/system/fonts/NotoColorEmoji.ttf
9285632 system/system/framework/arm64/boot-framework.art
8902928 system/system/priv-app/MtkDeskClock/MtkDeskClock.apk
8798240 vendor/lib64/libufwriter.so
8712104 system/system/apex/com.android.runtime.debug/lib64/libartd.so
8680123 product/priv-app/MtkLauncher3QuickStep/MtkLauncher3QuickStep.apk
8388608 dtbo.img
8388544 dtbo/[email protected]
8181768 system/system/apex/com.android.runtime.debug/lib64/libpac.so
8111831 product/app/MtkEmail/MtkEmail.apk
7987928 system/system/lib64/libhwui.so
7937972 system/system/priv-app/CellBroadcastReceiver/CellBroadcastReceiver.apk
7690880 system/system/apex/com.android.runtime.debug/lib64/libart.so
7603831 system/system/priv-app/ManagedProvisioning/ManagedProvisioning.apk
7147149 system/system/priv-app/EngineerMode/EngineerMode.apk
7114615 system/system/priv-app/ImsService/ImsService.apk
6991872 system/system/framework/arm/boot-framework.art
6648662 recovery/ramdisk.packed
6501224 system/system/framework/oat/arm64/wifi-service.odex
6314828 system/system/apex/com.android.runtime.debug/lib/libartd.so
6121797 system/system/priv-app/MtkTelecom/MtkTelecom.apk
6119856 vendor/lib/libufwriter.so
5987128 system/system/apex/com.android.runtime.debug/lib/libart.so
5960256 system/system/lib/libhwui.so
5624540 product/priv-app/MtkEmergencyInfo/MtkEmergencyInfo.apk
5573268 system/system/apex/com.android.runtime.debug/lib/libpac.so
5556970 system/system/app/Traceur/Traceur.apk
5273299 system/system/priv-app/MtkPermissionController/MtkPermissionController.apk
5245490 product/priv-app/StorageManager/StorageManager.apk
5231949 system/system/priv-app/MtkDownloadProvider/MtkDownloadProvider.apk
5159752 vendor/lib/modules/wlan_drv_gen4m.ko
5085472 system/system/lib64/libbluetooth.so
5074279 product/app/Camera/Camera.apk
5008088 system/system/lib64/libpdfium.so
4979549 system/system/apex/com.android.runtime.debug/javalib/core-oj.jar
4938527 system/system/priv-app/DocumentsUI/DocumentsUI.apk
4926704 product/app/MtkBrowser/MtkBrowser.apk
4698840 system/system/lib/libpdfium.so
4186744 system/system/apex/com.android.runtime.debug/lib64/libartd-compiler.so
4168488 vendor/lib64/libmtk-ril.so
4026827 vendor/res/images/lcd_test_01.png
3703184 vendor/lib64/[email protected]
3703016 system/system/lib64/[email protected]
3651352 system/system/framework/arm64/boot.oat
3573744 vendor/lib64/libwvhidl.so
3443760 vendor/lib64/mediadrm/libwvdrmengine.so
3415552 system/system/apex/com.android.media.swcodec/lib64/libcodec2_soft_hevcenc.so
3391125 system/system/framework/wifi-service.jar
3340972 vendor/lib/libmnl.so
3327068 system/system/lib/libbluetooth.so
3317822 system/system/apex/com.android.runtime.debug/javalib/core-libart.jar
3314304 system/system/apex/com.android.runtime.debug/lib64/libart-compiler.so
3250939 system/system/app/LiveWallpapersPicker/LiveWallpapersPicker.apk
3240942 system/system/framework/mediatek-telephony-common.jar
3137404 system/system/framework/arm/boot.oat
3081496 system/system/apex/com.android.runtime.debug/lib/libartd-compiler.so
3007999 system/system/framework/ext.jar
2852530 system/system/framework/telephony-common.jar
2725048 vendor/lib64/libcam.hal3a.v3.so
2720480 system/system/apex/com.android.runtime.debug/lib64/libvixld.so
2696544 vendor/lib/libwvhidl.so
2670592 system/system/framework/arm64/boot.art
2638260 system/system/lib/[email protected]
2620120 product/app/MtkCalendar/MtkCalendar.apk
2602656 vendor/lib/mediadrm/libwvdrmengine.so
2594800 vendor/bin/hw/wpa_supplicant
2557944 system/system/apex/com.android.runtime.debug/lib64/libicui18n.so
2461576 system/system/apex/com.android.runtime.debug/lib/libart-compiler.so
2430592 system/system/lib64/libneuropilot.so
2421192 vendor/lib64/libmtkcam_hwnode.so
2388702 system/system/app/NfcNci/NfcNci.apk
2342905 product/priv-app/SettingsIntelligence/SettingsIntelligence.apk
2304496 system/system/framework/mediatek-ims-legacy.jar
2283004 system/system/framework/mediatek-res.apk
2262928 system/system/lib64/libclang_rt.asan-aarch64-android.so
2169808 vendor/lib64/hw/audio.primary.mt6765.so
2141904 vendor/bin/mtk_agpsd
2138368 system/system/lib64/libcameraservice.so
2126656 vendor/lib/modules/wmt_drv.ko
2108456 system/system/lib64/libandroid_runtime.so
2101381 vendor/res/images/lcd_test_00.png
2100052 system/system/apex/com.android.runtime.debug/lib/libvixld.so
2096504 vendor/lib/hw/audio.primary.mt6765.so
2074024 system/system/apex/com.android.runtime.debug/lib64/libvixl.so
2064166 system/system/priv-app/AtciService/AtciService.apk
2052301 system/system/priv-app/MusicBspPlus/MusicBspPlus.apk
2049748 system/system/lib/libclang_rt.asan-arm-android.so
2040653 product/priv-app/PrivacyProtectionLock/PrivacyProtectionLock.apk
1999952 vendor/lib64/egl/libGLES_meow.so
1983304 system/system/lib64/libtflite.so
1967136 system/system/lib64/vndk-29/[email protected]
1967128 system/system/lib64/[email protected]
1961984 system/system/framework/arm/boot.art
1957824 vendor/lib/libvpx.so
1947968 system/system/framework/arm64/boot-telephony-common.oat
1921765 system/system/app/MtkBluetooth/MtkBluetooth.apk
1920044 vendor/res/sound/ringtone.wav
1914760 vendor/lib64/libusc.so
1910072 system/system/lib64/vndk-29/libprotobuf-cpp-full.so
1910072 system/system/lib64/libprotobuf-cpp-full.so
1899016 vendor/lib64/libcameracustom.so
1867400 boot/ramdisk/init
1846101 vendor/res/images/lcd_test_02.png
1833448 system/system/lib/libneuropilot.so
1789264 system/system/apex/com.android.runtime.debug/lib64/libicuuc.so
1787784 system/system/lib64/vndk-29/[email protected]
1786540 system/system/apex/com.android.runtime.debug/lib/libicui18n.so
1757672 system/system/lib64/libneuralnetworks.so
1752056 system/system/lib64/libstagefright.so
1743832 vendor/lib64/libmtkcam.featurepipe.streaming.so
1738840 system/system/apex/com.android.media.swcodec/lib64/libvpx.so
1695744 system/system/framework/oat/arm64/services.art
1674032 vendor/lib64/[email protected]
1669216 vendor/lib64/libcrypto-mdapp.so
1663616 system/system/framework/arm/boot-telephony-common.oat
1636936 system/system/lib64/libsurfaceflinger.so
1636576 vendor/lib64/[email protected]
1617047 system/system/priv-app/PackageInstaller/PackageInstaller.apk
1605544 system/system/lib64/vndk-29/[email protected]
1605544 system/system/lib64/[email protected]
1603048 system/system/bin/bootstrap/linker64
1603048 system/system/apex/com.android.runtime.debug/bin/linker64
1601448 system/system/lib64/vndk-29/[email protected]
1601416 system/system/lib64/[email protected]
1601344 system/system/lib64/vndk-29/[email protected]
1601328 system/system/lib64/[email protected]
1595184 vendor/bin/volte_ua
1591336 system/system/apex/com.android.resolv/lib64/libnetd_resolv.so
1591296 vendor/lib64/egl/libGLESv2_mtk.so
1588016 system/system/lib64/vndk-29/[email protected]
1588016 system/system/lib64/[email protected]
1576812 system/system/apex/com.android.runtime.debug/lib/libvixl.so
1561203 vendor/app/EmCamera/EmCamera.apk
1531960 system/system/framework/arm64/boot-core-libart.oat
1522259 system/system/app/EasterEgg/EasterEgg.apk
1479888 system/system/lib/libandroid_runtime.so
1476336 vendor/lib64/libutinterface_md.so
1474760 system/system/etc/selinux/plat_sepolicy.cil
1453656 system/system/lib/libtflite.so
1450448 vendor/lib64/libmtkcam.featurepipe.capture.so
1450160 system/system/lib64/vndk-29/[email protected]
1450160 system/system/lib64/[email protected]
1445920 recovery/ramdisk/system/bin/linker64
1422251 product/app/AutoBootController/AutoBootController.apk
1414928 system/system/lib64/vndk-sp-29/libbcinfo.so
1414896 system/system/lib64/libbcinfo.so
1414492 vendor/lib/libusc.so
1399661 vendor/thh/ta/c09c9c5daa504b78b0e46eda61556c3a.ta
1398994 system/system/apex/com.android.runtime.debug/javalib/bouncycastle.jar
1390904 system/system/bin/iorapd
1388020 system/system/lib/vndk-29/[email protected]
1387868 system/system/lib/[email protected]
1374724 system/system/lib/vndk-29/libprotobuf-cpp-full.so
1372784 system/system/lib64/vndk-29/[email protected]
1372784 system/system/lib64/[email protected]
1361376 vendor/lib64/libmtkcam.featurepipe.depthmap.so
1349548 system/system/lib/libcameraservice.so
1335296 system/system/lib64/vndk-29/[email protected]
1334056 vendor/lib64/[email protected]
1331960 system/system/apex/com.android.media.swcodec/lib64/libcodec2_soft_av1dec.so
1320184 system/system/lib64/vndk-29/libxml2.so
1319080 system/system/lib64/vndk-29/[email protected]
1319080 system/system/lib64/[email protected]
1316064 system/system/lib64/libxml2.so
1310880 vendor/lib64/[email protected]
1307100 system/system/apex/com.android.runtime.debug/lib/libicuuc.so
1301960 product/lib64/libjni_latinime.so
1299192 vendor/lib64/[email protected]
1296380 system/system/lib/libneuralnetworks.so
1293356 system/system/framework/arm/boot-core-libart.oat
1288272 system/system/lib/vndk-29/[email protected]
1282442 product/app/DataProtection/DataProtection.apk
1277784 vendor/lib64/libneuropilot_hal_utils.so
1277784 system/system/lib64/libneuropilot_hal_utils.so
1273320 vendor/lib64/libmtkcam_fdvt.so
1264696 system/system/lib64/libcrypto.so
1264696 system/system/apex/com.android.runtime.debug/lib64/libcrypto.so
1264696 system/system/apex/com.android.conscrypt/lib64/libcrypto.so
1260720 system/system/lib64/libchrome.so
1257396 system/system/bin/bootstrap/linker
1257396 system/system/apex/com.android.runtime.debug/bin/linker
1252348 vendor/lib/egl/libGLES_meow.so
1246648 vendor/lib/egl/libGLESv2_mtk.so
1235048 system/system/lib64/bootstrap/libc.so
1235048 system/system/apex/com.android.runtime.debug/lib64/bionic/libc.so
1235048 recovery/ramdisk/system/lib64/libc.so
1234880 vendor/lib64/[email protected]
1228507 system/system/apex/com.android.runtime.debug/javalib/apache-xml.jar
1215864 vendor/lib64/[email protected]
1199560 vendor/lib64/libimageio_plat_drv.so
1186265 system/system/priv-app/MtkContactsProvider/MtkContactsProvider.apk
1185264 system/system/lib64/vndk-sp-29/libblas.so
1185264 system/system/lib64/libblas.so
1168224 system/system/lib/vndk-29/[email protected]
1168164 system/system/lib/vndk-29/[email protected]
1168120 system/system/lib/vndk-29/[email protected]
1168104 system/system/lib/[email protected]
1168076 system/system/lib/[email protected]
1168000 system/system/lib/[email protected]
1159432 system/system/lib64/libsqlite.so
1150448 system/system/lib/libsurfaceflinger.so
1149976 system/system/lib64/vndk-29/libcrypto.so
1149976 recovery/ramdisk/system/lib64/libcrypto.so
1146440 system/system/lib64/vndk-29/libsqlite.so
1137740 system/system/lib/bootstrap/libc.so
1137740 system/system/apex/com.android.runtime.debug/lib/bionic/libc.so
1137640 system/system/lib64/libcamalgo_sys.cfb.so
1125976 system/system/bin/mdnsd
1124700 system/system/lib64/libclcore_g.bc
1119408 system/system/lib64/[email protected]
1119376 system/system/lib64/vndk-29/[email protected]
1116112 system/system/lib/libcamalgo_sys.cfb.so
1105896 system/system/apex/com.android.runtime.debug/bin/dex2oatd
1083720 system/system/xbin/trace
1077236 system/system/lib/vndk-29/[email protected]
1077160 system/system/lib64/libclcore_debug_g.bc
1077124 system/system/lib/[email protected]
1067372 system/system/lib/libclcore_g.bc
1055904 vendor/lib64/[email protected]
1053960 vendor/lib64/libdpframework.so
1052440 vendor/lib/libcrypto-mdapp.so
1048024 system/system/lib64/vndk-29/libclang_rt.ubsan_standalone-aarch64-android.so
1048024 system/system/lib64/libclang_rt.ubsan_standalone-aarch64-android.so
1048024 system/system/apex/com.android.media.swcodec/lib64/libclang_rt.ubsan_standalone-aarch64-android.so
1032192 system/system/framework/arm64/boot-telephony-common.art
1017452 vendor/lib/libvcodecdrv.so
1015412 system/system/lib/libbcinfo.so
1014724 system/system/lib/vndk-sp-29/libbcinfo.so
1004872 vendor/lib/libutinterface_md.so
998000 system/system/lib64/vndk-29/[email protected]
996668 system/system/lib/vndk-29/libcrypto.so
991232 system/system/framework/arm64/boot-core-libart.art
986632 system/system/lib64/libgui.so
985768 system/system/lib/[email protected]
985728 system/system/lib/vndk-29/[email protected]
983920 system/system/lib64/libperfetto.so
967844 system/system/lib/libstagefright.so
960884 vendor/lib/libneuropilot_hal_utils.so
960884 system/system/lib/libneuropilot_hal_utils.so
955820 vendor/app/SensorHub/SensorHub.apk
947232 system/system/lib64/vndk-29/libgui.so
946836 system/system/lib/vndk-29/[email protected]
943464 vendor/lib64/[email protected]
943371 system/system/app/PrintSpooler/PrintSpooler.apk
942092 system/system/lib/vndk-29/libxml2.so
941408 system/system/lib/libclcore_debug_g.bc
940776 vendor/bin/hw/hostapd
934728 system/system/lib64/libaudioflinger.so
931404 system/system/lib/[email protected]
931300 system/system/lib/vndk-29/[email protected]
929676 system/system/lib/libxml2.so
920680 system/system/lib64/libtextclassifier.so
917136 system/system/apex/com.android.runtime.debug/lib64/libopenjdkjvmtid.so
915864 system/system/apex/com.android.media.swcodec/lib64/libcodec2_soft_aacdec.so
909576 bootimg/01_dtbdump_MT6765.dtb
903928 vendor/lib64/libwebrtc_audio_preprocessing.so
903440 system/system/lib/libchrome.so
901728 vendor/lib/modules/met.ko
901680 system/system/bin/vold
899544 system/system/lib/[email protected]
899460 system/system/lib/vndk-29/[email protected]
899404 system/system/lib/libcrypto.so
899404 system/system/apex/com.android.runtime.debug/lib/libcrypto.so
899404 system/system/apex/com.android.conscrypt/lib/libcrypto.so
899312 system/system/bin/tcpdump
890232 vendor/lib64/librilfusion.so
870432 vendor/lib64/libglslcompiler.so
860704 system/system/lib64/libaudiopolicymanagerdefault.so
856856 system/system/lib64/libnfc-nci.so
856320 system/system/lib64/[email protected]
856312 system/system/lib64/vndk-29/[email protected]
848008 system/system/lib64/[email protected]
848000 system/system/lib64/vndk-29/[email protected]
845984 system/system/lib64/vndk-sp-29/libc++.so
845976 system/system/apex/com.android.runtime.debug/lib64/libc++.so
845968 system/system/lib64/libc++.so
845968 system/system/apex/com.android.media/lib64/libc++.so
845968 system/system/apex/com.android.media.swcodec/lib64/libc++.so
845968 system/system/apex/com.android.conscrypt/lib64/libc++.so
845968 recovery/ramdisk/system/lib64/libc++.so
843104 system/system/bin/gdbserver64
839508 system/system/lib/libblas.so
839492 system/system/lib/vndk-sp-29/libblas.so
837787 recovery/ramdisk/sepolicy
829596 system/system/lib/libsqlite.so
821181 vendor/etc/selinux/plat_pub_versioned.cil
820840 system/system/lib/vndk-29/libsqlite.so
812108 system/system/lib/vndk-29/[email protected]
811972 system/system/lib/[email protected]
809656 system/system/bin/strace
809332 boot/ramdisk.packed
808960 vendor/lib/libdpframework.so
804668 vendor/lib/libwebrtc_audio_preprocessing.so
797320 system/system/lib64/libdng_sdk.so
792208 system/system/lib64/[email protected]
792176 system/system/lib64/vndk-29/[email protected]
784640 vendor/lib64/[email protected]
783916 vendor/lib/libvc1dec_sa.ca7.so
782432 vendor/lib64/libMtkSpeechEnh.so
778240 system/system/framework/arm/boot-telephony-common.art
776496 system/system/lib64/libclang_rt.hwasan-aarch64-android.so
775816 system/system/lib64/vndk-sp-29/libhidlbase.so
775800 system/system/lib64/libhidlbase.so
775800 system/system/apex/com.android.media/lib64/libhidlbase.so
775784 system/system/apex/com.android.media.swcodec/lib64/libhidlbase.so
771947 vendor/etc/selinux/precompiled_sepolicy
771760 vendor/bin/volte_stack
771624 recovery/ramdisk/system/lib64/libhidlbase.so
770048 system/system/framework/arm/boot-core-libart.art
766672 product/app/QuickSearchBox/QuickSearchBox.apk
764344 system/system/bin/simpleperf
762148 vendor/etc/selinux/vendor_sepolicy.cil
752416 system/system/lib64/vndk-29/[email protected]
752416 system/system/lib64/[email protected]
750000 system/system/lib64/libaudioclient.so
750000 product/app/NetworkDataController/NetworkDataController.apk
743640 vendor/lib64/libcharon-ss.so
742776 system/system/bin/init
738656 recovery/ramdisk/system/bin/init
737486 system/system/priv-app/NetworkStack/NetworkStack.apk
736424 vendor/bin/factory
732184 system/system/bin/statsd
717968 system/system/apex/com.android.runtime.debug/lib64/libopenjdkjvmti.so
715368 system/system/lib/vndk-29/[email protected]
709408 system/system/lib64/vndk-29/[email protected]
709192 system/system/fonts/NotoSansSymbols-Regular-Subsetted.ttf
706528 vendor/lib64/egl/libGLESv1_CM_mtk.so
697808 vendor/lib64/libstereoinfoaccessor_vsdof.so
695952 system/system/lib64/libnfc_nci_jni.so
693168 system/system/lib64/libbrotli.so
691952 vendor/lib64/libfeature.stereo.provider.so
690392 vendor/lib64/hw/hwcomposer.mt6765.so
687740 system/system/lib/libgui.so
684504 vendor/bin/volte_imcb
683024 vendor/lib64/hw/vulkan.mt6765.so
681984 vendor/lib64/[email protected]
681872 system/system/lib64/libmedia.so
677856 vendor/lib64/libsrv_um.so
674176 system/system/bin/ld.mc
670408 system/system/lib64/libharfbuzz_ng.so
669376 system/system/lib64/vndk-29/libclang_rt.scudo-aarch64-android.so
665048 system/system/lib64/vndk-29/[email protected]
661192 system/system/lib64/libstagefright_bufferqueue_helper.so
661068 system/system/apex/com.android.runtime.debug/lib/libopenjdkjvmtid.so
660278 system/system/priv-app/MtkCalendarProvider/MtkCalendarProvider.apk
658269 product/priv-app/FMRadio/FMRadio.apk
657216 system/system/lib/vndk-29/libgui.so
652732 system/system/lib/libtextclassifier.so
651360 system/system/apex/com.android.media.swcodec/lib64/libcodec2_vndk.so
651344 system/system/lib64/libcodec2_vndk.so
645864 vendor/lib64/libspeech_enh_lib.so
642904 system/system/apex/com.android.media/lib64/libbinder.so
642888 system/system/lib64/libbinder.so
640500 vendor/lib/libglslcompiler.so
640040 recovery/ramdisk/system/bin/recovery
635520 system/system/apex/com.android.media.swcodec/lib64/libcodec2_soft_aacenc.so
634984 system/system/apex/com.android.runtime.debug/bin/dex2oat
631972 system/system/lib/[email protected]
631940 system/system/lib/vndk-29/[email protected]
631396 vendor/lib/libstagefright_soft_aacdec.so
630140 system/system/lib/libharfbuzz_ng.so
627648 system/system/lib/vndk-29/[email protected]
627640 system/system/lib/[email protected]
627596 system/system/lib/libmediaplayerservice.so
624776 system/system/framework/arm64/boot-mediatek-telephony-common.oat
623008 system/system/lib64/libft2.so
622680 system/system/lib64/libandroid_servers.so
622552 vendor/lib64/libminiui.so
621460 system/system/lib/vndk-sp-29/libc++.so
621460 system/system/lib/libc++.so
621460 system/system/apex/com.android.runtime.debug/lib/libc++.so
621460 system/system/apex/com.android.conscrypt/lib/libc++.so
619508 vendor/lib/libminiui.so
618264 system/system/lib64/vndk-29/[email protected]
618264 system/system/apex/com.android.media.swcodec/lib64/[email protected]
618240 system/system/lib64/[email protected]
616632 vendor/lib64/hw/gralloc.mt6765.so
615832 vendor/lib/libsrv_um.so
610052 vendor/lib/libspeech_enh_lib.so
607447 system/system/priv-app/MtkTelephonyProvider/MtkTelephonyProvider.apk
606664 system/system/lib64/libcampostalgo_featurepipe.so
606224 vendor/firmware/WIFI_RAM_CODE_soc1_0_1_1.bin
601520 system/system/bin/perfetto
601120 vendor/lib64/libmtkcam_device3_app.so
596468 system/system/bin/gdbserver
594884 system/system/lib/libft2.so
592504 system/system/lib64/libsfplugin_ccodec.so
588504 system/system/lib/[email protected]
588492 system/system/lib/vndk-29/[email protected]
584272 system/system/lib/libdng_sdk.so
582056 vendor/lib64/libcam.iopipe.so
580000 system/system/lib64/libsonivox.so
573648 system/system/bin/netd
570701 vendor/firmware/soc1_0_ram_bt_1_1_hdr.bin
569828 product/priv-app/Omacp/Omacp.apk
567704 system/system/apex/com.android.runtime.debug/lib64/libartbase.so
565960 system/system/apex/com.android.media/lib64/extractors/libmidiextractor.so
565552 vendor/lib64/libmtkcam_pipeline.so
562960 vendor/lib64/libstrongswan.so
561466 system/system/etc/apns-conf.xml
561000 system/system/lib64/vndk-29/libstagefright_bufferqueue_helper.so
561000 system/system/apex/com.android.media.swcodec/lib64/libstagefright_bufferqueue_helper.so
560012 system/system/lib/libsonivox.so
555196 system/system/lib/vndk-sp-29/libhidlbase.so
555164 system/system/lib/libhidlbase.so
554496 system/system/priv-app/Stk1/Stk1.apk
554392 vendor/lib/egl/libGLESv1_CM_mtk.so
552968 system/system/lib/[email protected]
552908 system/system/lib/vndk-29/[email protected]
552832 vendor/lib/hw/gralloc.mt6765.so
548932 system/system/lib/vndk-29/libclang_rt.scudo-arm-android.so
548816 system/system/lib64/libjni_jpegstream_mtk.so
547656 system/system/etc/textclassifier/textclassifier.en.model
543656 vendor/lib64/libmtkcam_pipelinepolicy.so
543016 vendor/lib/hw/vulkan.mt6765.so
541816 system/system/framework/arm/boot-mediatek-telephony-common.oat
541024 vendor/lib64/libmtkcam.logicalmodule.so
535640 vendor/lib64/egl/libMEOW_trace.so
529344 system/system/apex/com.android.media.swcodec/lib64/libcodec2_soft_hevcdec.so
526980 system/system/apex/com.android.runtime.debug/lib/libopenjdkjvmti.so
526472 system/system/lib64/libvintf.so
525216 vendor/lib/libMtkSpeechEnh.so
521908 vendor/lib/libvolte_core_shr.so
506832 system/system/apex/com.android.media.swcodec/lib64/libcodec2_soft_avcdec.so
505436 system/system/fonts/NotoSansEgyptianHieroglyphs-Regular.ttf
504952 system/system/lib64/libaudioprocessing.so
504430 system/system/usr/share/zoneinfo/tzdata
504430 system/system/apex/com.android.tzdata/etc/tz/tzdata
504430 system/system/apex/com.android.runtime.debug/etc/tz/tzdata
503032 system/system/apex/com.android.runtime.debug/lib64/libartbased.so
502604 system/system/lib/vndk-29/[email protected]
500380 system/system/fonts/NotoSansCuneiform-Regular.ttf
500200 system/system/lib64/vndk-sp-29/libRSCpuRef.so
500200 system/system/lib64/libRSCpuRef.so
497936 system/system/lib64/vndk-29/libbinder.so
497936 system/system/apex/com.android.media.swcodec/lib64/libbinder.so
497691 system/system/app/LocationEM2/LocationEM2.apk
493672 system/system/lib64/[email protected]
493616 system/system/lib64/vndk-29/[email protected]
493616 system/system/apex/com.android.media.swcodec/lib64/[email protected]
491928 vendor/lib/modules/fmradio_drv.ko
491872 system/system/lib64/libcamera_client.so
491814 system/system/framework/org.apache.http.legacy.jar
486728 recovery/ramdisk/system/bin/toybox
486696 vendor/bin/toybox_vendor
486696 system/system/bin/toybox
486604 system/system/lib/vndk-29/libclang_rt.ubsan_standalone-arm-android.so
486064 vendor/lib64/libcam.halsensor.so
485976 system/system/lib64/libmedia_jni.so
479088 vendor/lib64/[email protected]
477640 system/system/bin/keystore
475032 system/system/lib64/netd_aidl_interface-V2-cpp.so
474848 vendor/lib/libh264dec_se.ca7.so
473008 system/system/lib/vndk-29/[email protected]
470888 system/system/apex/com.android.media.swcodec/lib64/libcodec2_soft_avcenc.so
468712 system/system/lib64/[email protected]
465712 system/system/lib/libcodec2_vndk.so
465192 system/system/lib64/libcups.so
464680 system/system/lib64/libaudiopolicyenginedefault.so
464468 system/system/lib/libandroid_servers.so
461432 system/system/bin/met-cmd
456988 vendor/etc/aurisys_param/Speech_AudioParam.xml
456600 system/system/lib64/libaudiopolicycustomextensions.so
456416 system/system/lib64/[email protected]
456408 system/system/lib64/vndk-29/[email protected]
454368 vendor/lib/libh264dec_sa.ca7.so
454136 system/system/bin/heapprofd
452424 system/system/lib64/vndk-29/[email protected]
452392 system/system/lib64/[email protected]
448976 system/system/lib64/[email protected]
448968 system/system/lib64/vndk-29/[email protected]
447516 vendor/lib/libstagefright_soft_aacenc.so
445624 system/system/lib64/[email protected]
445608 system/system/lib64/vndk-sp-29/[email protected]
445096 system/system/lib/vndk-29/[email protected]
445056 system/system/lib/[email protected]
443188 system/system/apex/com.android.runtime.debug/lib/libartbase.so
439496 system/system/bin/apexd
437696 system/system/lib/libcampostalgo_featurepipe.so
436760 vendor/lib/libstagefright_soft_hevcdec.so
434848 system/system/framework/mediatek-wfo-legacy.jar
434766 system/system/app/DebugLoggerUI/DebugLoggerUI.apk
433928 system/system/lib64/libadbd_services.so
433452 system/system/lib/libbinder.so
431864 vendor/lib64/libcurl-md.so
431814 system/system/apex/com.android.conscrypt/javalib/conscrypt.jar
431032 vendor/lib/libHEVCdec_sa.ca7.android.so
429800 recovery/ramdisk/system/lib64/libadbd_services.so
428592 vendor/lib64/egl/libMEOW_gift.so
427768 vendor/lib64/libcurl_xcap_md.so
427424 vendor/bin/hw/[email protected]
426168 system/system/lib64/libpostalgo_3rdparty.core.so
420704 system/system/lib/libaudioclient.so
419882 system/system/priv-app/MediaProvider/MediaProvider.apk
419584 system/system/lib64/libandroidfw.so
417664 system/system/lib64/vndk-29/[email protected]
417504 vendor/lib64/libFrameRecord.so
415112 vendor/lib64/libmtkcam_pipelinemodel_session.so
413880 system/system/lib64/extractors/libmtkmpeg2extractor.so
413832 vendor/bin/camtest_metadata
411344 vendor/lib64/libutinterface_custom_md.so
410226 system/system/apex/com.android.runtime.debug/javalib/okhttp.jar
409280 system/system/apex/com.android.media.swcodec/lib64/libopus.so
407356 system/system/lib/libjni_jpegstream_mtk.so
406640 system/system/lib/libaudioflinger.so
406344 system/system/apex/com.android.media/lib64/extractors/libmpeg2extractor.so
404986 system/system/framework/mediatek-framework.jar
402928 vendor/lib64/libssl-mdapp.so
401764 system/system/fonts/NotoSansTibetan-Regular.ttf
399256 vendor/lib64/[email protected]
399128 system/system/bin/ip
398544 system/system/bin/wificond
398160 vendor/lib64/libimageio_plat_pipe.so
396256 vendor/lib64/libmtkcam_3rdparty.core.so
395880 system/system/apex/com.android.runtime.debug/bin/oatdumpd
395748 system/system/lib/vndk-sp-29/libRSCpuRef.so
395744 system/system/lib/libRSCpuRef.so
394944 system/system/bin/ip6tables
394384 vendor/lib64/libmtkcam_imgbuf.so
393900 system/system/lib/vndk-29/libstagefright_bufferqueue_helper.so
393884 system/system/lib/libstagefright_bufferqueue_helper.so
386592 system/system/lib64/vndk-29/libcurl.so
386424 system/system/bin/charger
385504 system/system/bin/iptables
384768 vendor/lib/libh264dec_sd.ca7.so
384660 system/system/lib/vndk-29/libssl.so
383132 vendor/lib/libjpeg-alpha_vendor.so
383128 system/system/lib/libjpeg-alpha.so
382120 system/system/lib64/libunwindstack.so
382120 system/system/apex/com.android.runtime.debug/lib64/libunwindstack.so
380508 system/system/lib/libsfplugin_ccodec.so
378992 system/system/apex/com.android.runtime.debug/lib/libartbased.so
377848 system/system/lib/libvintf.so
377560 system/system/apex/com.android.runtime.debug/lib64/libartd-dexlayout.so
376776 system/system/lib64/libbcc.so
373832 system/system/lib/libaudioprocessing.so
373464 system/system/lib64/vndk-sp-29/libunwindstack.so
373464 recovery/ramdisk/system/lib64/libunwindstack.so
373120 system/system/fonts/NotoSansTibetan-Bold.ttf
372428 system/system/etc/textclassifier/lang_id.model
371664 system/system/lib64/vndk-29/[email protected]
371656 system/system/lib64/[email protected]
371264 system/system/lib64/vndk-29/[email protected]
370644 vendor/lib/egl/libMEOW_trace.so
369054 system/system/priv-app/BlockedNumberProvider/BlockedNumberProvider.apk
363548 system/system/lib/libmedia.so
363112 vendor/lib64/libjpeg-alpha_vendor.so
363110 system/system/framework/mediatek-telephony-base.jar
363104 system/system/lib64/libjpeg-alpha.so
362976 system/system/lib64/libfs_mgr.so
362976 recovery/ramdisk/system/lib64/libfs_mgr.so
358761 vendor/firmware/ilitek_fw.bin
358016 vendor/bin/md_monitor
356868 system/system/lib/libmedia_jni.so
356032 system/system/lib/[email protected]
356024 system/system/lib/vndk-29/[email protected]
355896 vendor/lib64/libcamdrv_twin.so
355328 system/system/lib64/libssl.so
355328 system/system/apex/com.android.conscrypt/lib64/libssl.so
353076 system/system/lib64/libclcore_debug.bc
351824 system/system/lib64/libFFTEm.so
351000 system/system/bin/installd
349780 vendor/lib/libvp9dec_sa.ca7.so
349720 vendor/lib64/libmtkcam_hwutils.so
349256 system/system/lib64/libmtkbluetooth_jni.so
348824 system/system/lib64/vndk-29/[email protected]
348824 system/system/lib64/[email protected]
345708 system/system/lib/vndk-29/libbinder.so
344216 vendor/lib64/libmtkcam_3rdparty.mtk.so
343016 system/system/lib/[email protected]
343008 system/system/bin/dumpstate
342272 vendor/lib64/[email protected]
341704 vendor/lib/libopus.so
341536 system/system/lib64/vndk-29/[email protected]
341536 system/system/lib64/[email protected]
341048 vendor/lib64/libmtk-rilop.so
340984 vendor/lib/libDR.so
340776 system/system/apex/com.android.runtime.debug/lib64/libdexfile.so
339818 system/system/priv-app/MtkMmsAppService/MtkMmsAppService.apk
338912 system/system/lib64/vndk-29/libssl.so
338452 system/system/lib/vndk-sp-29/[email protected]
338440 system/system/lib/[email protected]
338432 system/system/apex/com.android.runtime.debug/lib64/libdexfiled.so
337888 vendor/lib64/libIMGegl.so
336936 recovery/ramdisk/system/lib64/librecovery_ui.so
335052 system/system/app/CaptivePortalLogin/CaptivePortalLogin.apk
333376 system/system/lib64/vndk-29/[email protected]
333376 system/system/lib64/[email protected]
333048 system/system/lib/[email protected]
333040 system/system/lib/vndk-29/[email protected]
332504 system/system/fonts/RobotoCondensed-LightItalic.ttf
332172 system/system/fonts/Roboto-LightItalic.ttf
332168 vendor/lib/libstagefright_soft_avcdec.so
332160 system/system/fonts/Roboto-BoldItalic.ttf
330896 system/system/lib64/libpcap.so
330796 system/system/fonts/Roboto-MediumItalic.ttf
330536 system/system/lib64/libkeymaster_portable.so
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
329700 system/system/fonts/Roboto-ThinItalic.ttf
329372 system/system/fonts/RobotoCondensed-Italic.ttf
329096 vendor/lib64/lib3a.af.core.so
328872 system/system/lib64/libadbd.so
328872 recovery/ramdisk/system/lib64/libadbd.so
328640 system/system/fonts/Roboto-Italic.ttf
328600 system/system/apex/com.android.runtime.debug/lib64/libart-dexlayout.so
328436 system/system/lib/vndk-29/[email protected]
328424 system/system/lib/[email protected]
327857 system/system/priv-app/Shell/Shell.apk
327040 system/system/lib/[email protected]
327032 system/system/lib/vndk-29/[email protected]
325776 system/system/lib64/libwfds.so
325720 system/system/lib64/vndk-29/libclang_rt.scudo_minimal-aarch64-android.so
325624 vendor/lib64/libril.so
324553 system/system/priv-app/MtkSettingsProvider/MtkSettingsProvider.apk
323848 system/system/bin/trigger_perfetto
323568 system/system/lib64/libdrmmtkutil.so
323452 system/system/lib/libclcore_debug.bc
323432 system/system/lib64/vndk-29/libjpeg.so
323432 system/system/lib64/libjpeg.so
322752 system/system/lib64/libRS_internal.so
322744 system/system/lib64/vndk-sp-29/libRS_internal.so
322448 vendor/lib64/libcamalgo.nr.so
322400 system/system/lib64/libpcap_bak.so
322044 system/system/lib/vndk-29/libclang_rt.scudo_minimal-arm-android.so
320654 system/system/app/BuiltInPrintService/BuiltInPrintService.apk
317251 system/system/usr/hyphen-data/hyph-hu.hyb
316370 product/media/audio/ringtones/Sceptrum.ogg
315832 system/system/lib64/vndk-29/libpcre2.so
315832 system/system/lib64/libpcre2.so
315832 recovery/ramdisk/system/lib64/libpcre2.so
314264 system/system/lib/libandroidfw.so
314040 system/system/lib64/vndk-29/[email protected]
314040 system/system/lib64/[email protected]
314040 system/system/bin/viewcompiler
313720 recovery/ramdisk/system/bin/charger
313588 system/system/lib/libpostalgo_3rdparty.core.so
312208 system/system/lib64/vndk-29/libevent.so
312208 system/system/lib64/libevent.so
311605 system/system/etc/preloaded-classes
310904 vendor/lib64/libmtkcam_streamutils.so
310184 vendor/lib64/[email protected]
309008 system/system/bin/secilc
308960 vendor/lib/libstagefright_soft_avcenc.so
308688 system/system/lib64/libstagefright_omx.so
307664 system/system/fonts/Roboto-Thin.ttf
307288 vendor/lib64/libmtkcam_featurepolicy.so
307192 system/system/fonts/Roboto-Light.ttf
306940 system/system/fonts/Roboto-Bold.ttf
306536 system/system/fonts/Roboto-Medium.ttf
306428 system/system/fonts/Roboto-Black.ttf
305608 system/system/fonts/Roboto-Regular.ttf
305408 vendor/lib64/libhevce_sb.ca7.android.so
304752 system/system/lib64/vndk-29/[email protected]
304744 system/system/lib64/[email protected]
303944 system/system/fonts/RobotoCondensed-Bold.ttf
303688 vendor/bin/sh
303672 system/system/bin/sh
303672 recovery/ramdisk/system/bin/sh
303632 vendor/lib64/libcamalgo.n3d.so
303604 system/system/fonts/RobotoCondensed-Medium.ttf
302644 vendor/lib/libvp8dec_sa.ca7.so
302300 system/system/fonts/RobotoCondensed-Light.ttf
302176 vendor/lib64/hw/[email protected]
302152 vendor/lib64/libcamalgo.asd.so
301528 system/system/lib64/liblshal.so
301440 system/system/lib64/libaaudio.so
301196 system/system/lib/libclcore_neon.bc
300664 system/system/fonts/RobotoCondensed-Regular.ttf
300400 vendor/lib64/libcamera2ndk_vendor.so
300383 system/system/priv-app/WapiCertManager/WapiCertManager.apk
299936 vendor/lib64/[email protected]
299912 system/system/apex/com.android.media/lib64/extractors/libmp4extractor.so
299568 system/system/lib64/vndk-29/libyuv.so
299568 system/system/lib64/libyuv.so
299136 system/system/lib/vndk-29/[email protected]
299088 system/system/bin/incidentd
298944 system/system/bin/emdlogger1
298816 system/system/bin/emdlogger5
298808 system/system/bin/emdlogger2
298764 vendor/lib/egl/libMEOW_gift.so
297896 vendor/lib64/libmtkcam_metastore.so
297820 system/system/lib/libclcore.bc
296544 system/system/lib64/libRScpp.so
296488 vendor/lib64/lib3a.af.so
296192 vendor/lib/libutinterface_custom_md.so
295628 system/system/lib/vndk-29/libjpeg.so
295628 system/system/lib/libjpeg.so
295104 system/system/lib64/vndk-29/[email protected]
295104 system/system/lib64/[email protected]
293516 system/system/fonts/SourceSansPro-Regular.ttf
293268 vendor/lib/libFrameRecord.so
292184 system/system/lib64/libmedia_omx.so
292152 vendor/lib/libcurl_xcap_md.so
292152 vendor/lib/libcurl-md.so
291864 system/system/fonts/SourceSansPro-SemiBold.ttf
291192 system/system/lib/libunwindstack.so
291192 system/system/apex/com.android.runtime.debug/lib/libunwindstack.so
290916 system/system/fonts/SourceSansPro-Bold.ttf
290248 system/system/apex/com.android.media.swcodec/lib64/libsfplugin_ccodec_utils.so
290232 system/system/lib64/libsfplugin_ccodec_utils.so
289760 vendor/lib64/[email protected]
289760 system/system/lib64/[email protected]
288548 system/system/lib/libstagefright_wfd_mtk.so
288168 system/system/lib64/libext2fs.so
288168 recovery/ramdisk/system/lib64/libext2fs.so
285840 system/system/lib/libstagefright_httplive.so
285800 system/system/lib/vndk-29/libevent.so
285800 system/system/lib/libevent.so
285696 system/system/lib64/libc_malloc_debug.so
285696 system/system/apex/com.android.runtime.debug/lib64/libc_malloc_debug.so
285512 system/system/lib64/vndk-29/[email protected]
284947 system/system/etc/NOTICE.xml.gz
284056 vendor/lib/libIMGegl.so
283696 system/system/apex/com.android.conscrypt/lib64/libjavacrypto.so
283504 system/system/lib64/vndk-29/[email protected]
283504 system/system/lib64/[email protected]
283448 system/system/apex/com.android.runtime.debug/lib64/libjdwp.so
283128 vendor/lib64/libcamalgo.vsf.so
283112 system/system/apex/com.android.media.swcodec/lib64/[email protected]
282484 system/system/lib/vndk-sp-29/libunwindstack.so
282464 vendor/lib64/libmtkcam_pipelinemodel_utils.so
279960 system/system/lib64/libinputflinger.so
279768 system/system/lib64/vndk-29/libprotobuf-cpp-lite.so
279768 system/system/lib64/libprotobuf-cpp-lite.so
279624 system/system/apex/com.android.runtime.debug/lib/libdexfile.so
279080 system/system/lib/vndk-29/[email protected]
279072 system/system/lib/[email protected]
278704 system/system/apex/com.android.runtime.debug/lib/libartd-dexlayout.so
277720 system/system/lib64/[email protected]
277704 vendor/lib64/[email protected]
276584 system/system/lib64/slicer.so
276348 system/system/lib/libcamera_client.so
276184 system/system/lib64/vndk-29/[email protected]
276184 system/system/apex/com.android.runtime.debug/lib64/libjavacore.so
276152 system/system/lib64/[email protected]
276144 system/system/apex/com.android.media/lib64/[email protected]
274432 system/system/framework/arm64/boot-bouncycastle.art
273768 system/system/lib64/libinputreader.so
273296 system/system/framework/arm64/boot-okhttp.oat
272824 vendor/lib64/libwpfa.so
272704 vendor/lib64/libcamdrv_isp.so
272696 system/system/lib/vndk-29/[email protected]
271780 system/system/lib/vndk-29/libcurl.so
271249 system/system/app/CertInstaller/CertInstaller.apk
271064 vendor/bin/mnld
270216 vendor/bin/meta_tst
269736 system/system/lib64/libcampostalgo.so
269349 vendor/thh/ta/14498ace2a8f11e880c8509a4c146f4c.ta
269152 system/system/lib64/vndk-29/libstagefright_omx.so
268792 vendor/lib64/libfeature.vsdof.hal.so
267544 system/system/bin/tc
267520 system/system/bin/gpuservice
266820 system/system/lib/vndk-29/libpcre2.so
266820 system/system/lib/libpcre2.so
265992 vendor/lib/libssl-mdapp.so
265736 vendor/lib/libmtkcam_imgbuf.so
265132 system/system/lib/vndk-29/[email protected]
265128 system/system/lib/[email protected]
264432 vendor/lib64/lib3a.ae.core.so
264408 system/system/lib64/libwilhelm.so
263209 system/system/priv-app/MtkDownloadProviderUi/MtkDownloadProviderUi.apk
263080 system/system/fonts/NotoSerif-BoldItalic.ttf
262840 product/priv-app/MtkCarrierConfig/MtkCarrierConfig.apk
262504 system/system/lib64/[email protected]
262496 system/system/lib64/vndk-29/[email protected]
261992 system/system/bin/racoon
261912 vendor/lib64/libcamalgo.eis.so
261192 system/system/apex/com.android.runtime.debug/bin/oatdump
259176 vendor/lib/libh264enc_sa.ca7.so
259144 system/system/lib64/libaudiopolicyservice.so
258504 vendor/lib64/libmtkcam_device3.so
257428 system/system/apex/com.android.runtime.debug/lib/libdexfiled.so
256816 system/system/lib64/vndk-29/[email protected]
256816 system/system/lib64/[email protected]
256360 vendor/lib64/libmtkcam_ulog.so
254512 system/system/lib64/[email protected]
254488 system/system/lib64/vndk-29/[email protected]
254488 system/system/apex/com.android.media.swcodec/lib64/[email protected]
254040 system/system/bin/pppd
253560 system/system/lib/libFFTEm.so
251872 system/system/lib/libpcap.so
251488 vendor/lib64/[email protected]
251488 system/system/lib64/[email protected]
251208 system/system/lib64/vndk-sp-29/libprocessgroup.so
251208 system/system/lib64/libprocessgroup.so
251208 system/system/apex/com.android.media/lib64/libprocessgroup.so
251208 system/system/apex/com.android.media.swcodec/lib64/libprocessgroup.so
251208 recovery/ramdisk/system/lib64/libprocessgroup.so
249748 system/system/fonts/NotoSerif-Italic.ttf
248912 system/system/lib64/vndk-29/libkeymaster_portable.so
248208 system/system/lib/libdrmmtkutil.so
247892 system/system/fonts/NotoSerif-Bold.ttf
247472 system/system/lib64/vndk-29/[email protected]
247472 system/system/lib64/[email protected]
247052 system/system/lib/vndk-29/[email protected]
247052 system/system/lib/[email protected]
246840 system/system/lib64/libcamera2ndk.so
246740 system/system/fonts/NotoSerif-Regular.ttf
246512 system/system/lib64/[email protected]
246456 system/system/lib64/[email protected]
245120 system/system/apex/com.android.runtime.debug/lib64/libprofile.so
244324 system/system/lib/vndk-29/[email protected]
244324 system/system/lib/[email protected]
243168 system/system/lib64/vndk-29/[email protected]
242920 system/system/lib64/[email protected]
242912 system/system/lib64/vndk-29/[email protected]
242376 system/system/lib/libssl.so
242376 system/system/apex/com.android.conscrypt/lib/libssl.so
241592 vendor/lib64/libcamalgo.lsc.so
240776 system/system/lib64/vndk-29/[email protected]
240776 system/system/lib64/[email protected]
240008 vendor/lib64/hw/sensors.mt6765.so
239952 system/system/lib/libRS_internal.so
239936 system/system/lib/vndk-sp-29/libRS_internal.so
239864 system/system/lib64/libmtp.so
239776 system/system/lib64/vndk-29/libmedia_omx.so
239616 system/system/apex/com.android.tzdata/etc/icu/icu_tzdata.dat
238268 tmp/all_filenames.txt
237264 system/system/lib64/vndk-29/[email protected]
237264 system/system/lib64/[email protected]
236656 system/system/lib64/libmediadrm.so
236343 product/media/audio/ringtones/Perseus.ogg
236320 system/system/bin/e2fsck
236268 vendor/lib/libril.so
236056 vendor/lib64/hw/[email protected]
235776 vendor/lib64/[email protected]
235596 system/system/framework/arm/boot-okhttp.oat
233480 system/system/apex/com.android.runtime.debug/lib/libart-dexlayout.so
233400 system/system/lib64/vndk-29/[email protected]
232496 system/system/lib64/libaudio_param_parser-sys.so
232331 system/system/app/OsuLogin/OsuLogin.apk
232066 product/app/MtkWallpaperPicker/MtkWallpaperPicker.apk
230176 system/system/lib/vndk-29/[email protected]
230164 system/system/lib/[email protected]
229788 system/system/lib/libc_malloc_debug.so
229788 system/system/apex/com.android.runtime.debug/lib/libc_malloc_debug.so
229352 system/system/lib64/bootstrap/libm.so
229352 system/system/apex/com.android.runtime.debug/lib64/bionic/libm.so
229352 recovery/ramdisk/system/lib64/libm.so
229344 system/system/bin/incident_helper
229252 vendor/lib/libhevce_sb.ca7.android.so
228552 vendor/lib64/libaal_mtk.so
228256 system/system/lib64/vndk-29/libexif.so
228256 system/system/lib64/libexif.so
227232 system/system/lib64/libsensorservice.so
227024 system/system/apex/com.android.media.swcodec/lib64/libcodec2_soft_h263enc.so
227016 system/system/apex/com.android.media.swcodec/lib64/libcodec2_soft_mpeg4enc.so
226672 system/system/lib64/[email protected]
226656 system/system/lib64/vndk-29/[email protected]
226656 system/system/apex/com.android.media.swcodec/lib64/[email protected]
226176 system/system/lib64/libaaudioservice.so
225891 product/media/audio/ringtones/ArgoNavis.ogg
225280 system/system/framework/arm64/boot-okhttp.art
225280 system/system/framework/arm/boot-bouncycastle.art
224400 system/system/apex/com.android.runtime.debug/lib64/libopenjdkd.so
224400 system/system/apex/com.android.runtime.debug/lib64/libopenjdk.so
224312 system/system/lib64/vndk-29/[email protected]
224304 system/system/lib64/[email protected]
224296 system/system/apex/com.android.media.swcodec/lib64/[email protected]
223856 system/system/lib64/vndk-29/[email protected]
223500 system/system/lib/vndk-29/[email protected]
223488 system/system/lib/[email protected]
223080 vendor/lib64/libaudio_param_parser-vnd.so
221316 vendor/lib/libMtkOmxVdecEx.so
220704 system/system/lib/libext2fs.so
220685 system/system/app/SimAppDialog/SimAppDialog.apk
220568 system/system/lib64/[email protected]
220428 vendor/lib/libfgauge_gm30.so
219720 system/system/bin/emdlogger3
219092 vendor/lib/hw/[email protected]
218388 system/system/apex/com.android.conscrypt/lib/libjavacrypto.so
218096 system/system/bin/mediametrics
217584 system/system/bin/logd
217320 vendor/lib64/[email protected]
216888 system/system/lib64/libEGL.so
216816 system/system/lib64/libkeystore_aidl.so
216412 system/system/lib/[email protected]
216408 vendor/lib/[email protected]
216148 system/system/lib/libinputreader.so
215944 vendor/bin/md_monitor_ctrl
215696 system/system/lib64/vndk-29/[email protected]
215664 system/system/lib/libRScpp.so
215512 vendor/lib64/libmtkcam_metadata.so
215464 system/system/apex/com.android.runtime.debug/lib64/libprofiled.so
215080 system/system/lib/vndk-29/libyuv.so
215076 system/system/lib/libyuv.so
214832 system/system/lib64/vndk-29/libpng.so
214832 system/system/lib64/libpng.so
214832 recovery/ramdisk/system/lib64/libpng.so
214488 system/system/lib/vndk-29/[email protected]
214480 system/system/lib/[email protected]
213832 system/system/lib64/libinput.so
213392 system/system/lib/libinputflinger.so
213096 system/system/lib/vndk-29/[email protected]
212992 system/system/framework/arm64/boot-ext.art
212728 system/system/lib64/libmediandk.so
212384 vendor/lib64/libpq_prot.so
212368 system/system/apex/com.android.runtime.debug/lib/libprofile.so
211552 system/system/lib64/libstagefright_foundation.so
211296 system/system/lib64/vndk-sp-29/libRSDriver.so
211296 system/system/lib64/libRSDriver.so
210296 system/system/lib/libcampostalgo.so
210152 system/system/lib64/liblayers_proto.so
209024 system/system/lib64/[email protected]
208980 vendor/lib/[email protected]
208980 system/system/lib/[email protected]
208448 system/system/lib/libstagefright_omx.so
208444 system/system/lib/vndk-29/libstagefright_omx.so
207896 system/system/apex/com.android.media.swcodec/lib64/libcodec2_soft_mpeg2dec.so
207872 system/system/lib/libprotobuf-cpp-lite.so
207868 system/system/lib/vndk-29/libprotobuf-cpp-lite.so
207808 system/system/lib64/libsoftkeymasterdevice.so
207600 system/system/lib64/libpostalgo_stdutils.so
207452 system/system/apex/com.android.runtime.debug/lib/libjdwp.so
207160 system/system/apex/com.android.media.swcodec/lib64/libcodec2_soft_amrwbenc.so
206809 product/media/audio/ringtones/CrazyDream.ogg
206416 system/system/lib/vndk-29/[email protected]
206408 system/system/lib/[email protected]
205152 vendor/bin/aee_aedv
204920 system/system/lib64/vndk-29/[email protected]
204920 system/system/lib64/[email protected]
204872 system/system/bin/storaged
204552 system/system/lib64/librtp_jni.so
204360 system/system/apex/com.android.media/lib64/extractors/libmkvextractor.so
203836 system/system/lib/vndk-29/[email protected]
203836 system/system/lib/[email protected]
203224 system/system/apex/com.android.runtime.debug/lib64/libandroidicu.so
203048 system/system/framework/arm64/boot-bouncycastle.oat
201896 product/app/MtkGallery2/galleryfeature/Gallery2PqTool/Gallery2PqTool.apk
201880 vendor/lib64/[email protected]
201880 system/system/lib64/[email protected]
201584 system/system/lib64/libstatslog.so
200144 system/system/lib64/libpixelflinger.so
199336 system/system/lib64/libnblog.so
199236 system/system/lib/libsfplugin_ccodec_utils.so
198744 vendor/lib64/libmtkcam_stdutils.so
198120 vendor/lib64/libcam.feature_utils.so
197768 system/system/lib64/vndk-29/[email protected]
197440 system/system/lib64/vndk-29/[email protected]
197336 vendor/lib64/libpixelflinger.so
197016 system/system/lib64/vndk-29/[email protected]
197000 system/system/lib64/vndk-29/[email protected]
196792 vendor/lib64/hw/[email protected]
195600 system/system/lib64/[email protected]
195348 system/system/lib/vndk-29/[email protected]
195348 system/system/lib/[email protected]
195248 vendor/lib64/[email protected]
195248 system/system/lib64/vndk-29/[email protected]
195248 system/system/lib64/[email protected]
195240 system/system/lib64/[email protected]
195240 recovery/ramdisk/system/lib64/[email protected]
195164 system/system/apex/com.android.runtime.debug/lib/libjavacore.so
195132 vendor/lib/libmtkcam_ulog.so
194992 vendor/firmware/soc1_0_ram_wifi_1_1_hdr.bin
194976 system/system/lib64/[email protected]
194960 system/system/lib64/vndk-29/[email protected]
194432 system/system/lib64/libmemunreachable.so
193854 system/system/framework/OPCommonTelephony.jar
193437 vendor/etc/apdb/APDB_MT6765_S01__W2030
192824 system/system/lib/vndk-29/[email protected]
192820 system/system/lib/[email protected]
192392 system/system/lib64/vndk-29/[email protected]
192392 system/system/lib64/[email protected]
192392 system/system/bin/aee_aed64