-
Notifications
You must be signed in to change notification settings - Fork 0
/
all_files.txt
7026 lines (7026 loc) · 361 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
356492815 product/priv-app/Velvet/Velvet.apk
134217728 recovery.img
134217728 boot.img
119439360 bootimg/01_dtbdump_Qualcomm_Technologies,_Inc._Bengal_SoC.dtb
115064731 product/app/YouTube/YouTube.apk
114723051 product/app/Photos/Photos.apk
110277324 product/priv-app/PrebuiltGmsCoreSc/PrebuiltGmsCoreSc.apk
104366556 product/app/PrebuiltGmail/PrebuiltGmail.apk
91059975 product/priv-app/DevicePersonalizationPrebuiltPixel2021/DevicePersonalizationPrebuiltPixel2021.apk
81541666 product/app/LatinIMEGooglePrebuilt/LatinIMEGooglePrebuilt.apk
79377129 system_ext/priv-app/Settings/Settings.apk
70913174 product/app/Maps/Maps.apk
69314478 product/priv-app/PrebuiltBugle/PrebuiltBugle.apk
66705031 product/app/GoogleTTS/GoogleTTS.apk
62890348 system/system/framework/framework-res.apk
60881809 product/priv-app/GoogleDialer/GoogleDialer.apk
60066694 product/priv-app/Phonesky/Phonesky.apk
54105743 product/app/Drive/Drive.apk
51476160 vendor/lib64/libmibokeh_712.so
48768752 product/app/WebViewGoogle/WebViewGoogle.apk.gz
46308352 system/system/framework/oat/arm64/services.odex
44211122 product/app/TrichromeLibrary/TrichromeLibrary.apk.gz
43148185 vendor/etc/camera/model/bokeh_model/segment_model
37418267 system_ext/priv-app/DerpLauncherQuickStep/DerpLauncherQuickStep.apk
35856070 bootRE/boot.elf
35821652 product/app/CalendarGooglePrebuilt/CalendarGooglePrebuilt.apk
35664946 system_ext/priv-app/SystemUI/SystemUI.apk
34705238 product/app/talkback/talkback.apk
34219498 system/system/framework/framework.jar
31351960 system_ext/priv-app/SystemUI/oat/arm64/SystemUI.odex
30522216 vendor/lib64/libllvm-qcom.so
30216384 vendor/lib64/libarcsoft_beautyshot.so
29304520 system_ext/priv-app/DerpLauncherQuickStep/oat/arm64/DerpLauncherQuickStep.odex
29063704 system_ext/priv-app/ThemePicker/oat/arm64/ThemePicker.odex
26511280 system/system/apex/com.android.i18n/etc/icu/icudt70l.dat
26454208 system_ext/priv-app/Settings/oat/arm64/Settings.odex
26283508 system/system/fonts/NotoSerifCJK-Regular.ttc
25572727 system_ext/priv-app/ThemePicker/ThemePicker.apk
23266876 vendor/lib/libllvm-qcom.so
23139664 product/media/bootanimation.zip
22729288 vendor/lib64/libsdk_sr.so
22303320 vendor/lib64/libxmi_high_dynamic_range.so
19587384 vendor/lib64/libanc_dc_base.so
19483779 product/priv-app/FilesPrebuilt/FilesPrebuilt.apk
19474972 system/system/fonts/NotoSansCJK-Regular.ttc
19469400 system/system/lib64/libLLVM_android.so
19223999 product/app/GoogleContacts/GoogleContacts.apk
18525671 system/system/framework/services.jar
18194361 system/system/priv-app/TeleService/TeleService.apk
17610045 product/priv-app/DeviceIntelligenceNetworkPrebuilt/DeviceIntelligenceNetworkPrebuilt.apk
17463584 vendor/lib64/libril-qc-hal-qmi.so
16777216 dtbo.img
16777152 dtbo/01_dtbdump_Qualcomm_Technologies,_Inc._BENGAL_IDP.dtb
16494860 product/priv-app/WellbeingPrebuilt/WellbeingPrebuilt.apk
16448964 product/app/Chrome/Chrome.apk.gz
15830553 product/priv-app/ANGLE/ANGLE.apk
14778368 bootimg/00_kernel
14702976 vendor/lib64/libllvm-glnext.so
14596816 vendor/lib64/camera/components/com.qti.node.mialgocontrol.so
14353008 vendor/lib64/libwa_dof.so
14214559 system/system/apex/com.android.permission/priv-app/[email protected]/PermissionController.apk
13867224 system/system/app/NfcNci/oat/arm64/NfcNci.odex
13841872 product/priv-app/AndroidPlatformServices/AndroidPlatformServices.apk
13648752 vendor/lib64/libopencv.so
13537848 system/system/apex/com.android.btservices/lib64/libbluetooth_jni.so
13333917 recovery/kernel
13333917 boot/kernel
13333478 system/system/apex/com.android.cellbroadcast/priv-app/[email protected]/CellBroadcastApp.apk
12676326 vendor/recovery-from-boot.p
12577735 recovery/ramdisk.packed
11990008 vendor/lib64/libwa_refocus.so
11584284 system/system/app/NfcNci/NfcNci.apk
11520488 vendor/lib64/libcamera_scene.so
11493680 system_ext/priv-app/StorageManager/StorageManager.apk
11434932 system_ext/priv-app/EmergencyInfo/EmergencyInfo.apk
11357463 product/app/PrebuiltDeskClockGoogle/PrebuiltDeskClockGoogle.apk
11324760 system/system/framework/oat/arm64/[email protected]@[email protected]@classes.odex
10935014 system_ext/priv-app/GameSpace/GameSpace.apk
10611964 vendor/lib/libllvm-glnext.so
10263473 vendor/lib/modules/qca_cld3_wlan.ko
10155488 system/system/apex/com.android.art/lib64/libart.so
10044248 vendor/lib64/libmiai_supernight.so
10015944 vendor/lib64/hw/camera.qcom.so
9895568 system/system/priv-app/TeleService/oat/arm64/TeleService.odex
9762720 vendor/lib64/libwa_rtdof.so
9488530 product/priv-app/GoogleRestorePrebuilt/GoogleRestorePrebuilt.apk
9483224 system/system/framework/arm64/boot-framework.oat
9187560 system/system/fonts/NotoColorEmojiLegacy.ttf
8952256 vendor/bin/thermal-engine
8897888 system/system/lib64/libhwui.so
8827472 system/system/app/EasterEgg/oat/arm64/EasterEgg.odex
8780034 system/system/apex/com.android.mediaprovider/priv-app/[email protected]/MediaProvider.apk
8561541 product/priv-app/SetupWizardPrebuilt/SetupWizardPrebuilt.apk
8205008 system_ext/priv-app/StorageManager/oat/arm64/StorageManager.odex
8198810 product/priv-app/ConfigUpdater/ConfigUpdater.apk
8156504 system/system/framework/arm/boot-framework.oat
7950136 system_ext/priv-app/GameSpace/oat/arm64/GameSpace.odex
7912920 system_ext/priv-app/EmergencyInfo/oat/arm64/EmergencyInfo.odex
7674714 product/priv-app/SettingsIntelligenceGooglePrebuilt/SettingsIntelligenceGooglePrebuilt.apk
7481440 vendor/lib64/libvidhance.so
7326630 product/app/DerpWalls/DerpWalls.apk
7318368 vendor/lib64/camera/com.qti.tuned.lime_sunny_s5kgm1sp_main.bin
7309894 system_ext/priv-app/GoogleServicesFramework/GoogleServicesFramework.apk
7198888 vendor/lib64/camera/com.qti.tuned.lime_sunny_s5kgm1sp_main_Normal.bin
7108188 system/system/apex/com.android.art/lib/libart.so
7105520 system/system/priv-app/ManagedProvisioning/oat/arm64/ManagedProvisioning.odex
6893568 vendor/lib64/camera/com.qti.tuned.lime_sunny_s5kgm1sp_main_india.bin
6820584 system/system/bin/surfaceflinger
6664625 product/priv-app/TurboPrebuilt/TurboPrebuilt.apk
6579916 vendor/lib/libfastcvopt.so
6565978 system/system/apex/com.android.extservices/priv-app/[email protected]/ExtServices.apk
6539419 system/system/priv-app/DocumentsUIGoogle/DocumentsUIGoogle.apk
6498008 product/priv-app/ImsServiceEntitlement/oat/arm64/ImsServiceEntitlement.odex
6462018 system/system/priv-app/ManagedProvisioning/ManagedProvisioning.apk
6454992 system/system/apex/com.android.art/lib64/libart-compiler.so
6272064 vendor/lib64/libfastcvopt.so
6269536 system/system/priv-app/LiveWallpapersPicker/oat/arm64/LiveWallpapersPicker.odex
6250873 vendor/etc/qdcm_calib_data_sw43404_amoled_video_mode_dsi_boe_panel_with_DSC.xml
6250873 vendor/etc/qdcm_calib_data_sw43404_amoled_cmd_mode_dsi_boe_panel_with_DSC.xml
6250873 vendor/etc/qdcm_calib_data_sw43404_amoled_boe_fhd+_panel_with_DSC.xml
6133464 vendor/lib64/camera/com.qti.tuned.lime_sunny_s5kgm1st_main_india.bin
6133464 vendor/lib64/camera/com.qti.tuned.citrus_sunny_s5kgm1st_main_india.bin
6133464 vendor/lib64/camera/com.qti.tuned.citrus_sunny_s5kgm1sp_main_india.bin
5926532 product/app/SoundPickerPrebuilt/SoundPickerPrebuilt.apk
5883724 system/system/priv-app/GoogleExtServices/GoogleExtServices.apk
5740298 product/app/MarkupGoogle/MarkupGoogle.apk
5697952 vendor/lib64/camera/com.qti.tuned.citrus_sunny_s5kgm1st_main.bin
5696960 vendor/lib64/camera/com.qti.tuned.lime_sunny_s5kgm1st_main.bin
5696960 vendor/lib64/camera/com.qti.tuned.citrus_sunny_s5kgm1sp_main.bin
5591753 system_ext/priv-app/PixelSetupWizard/PixelSetupWizard.apk
5590865 system_ext/app/Flipendo/Flipendo.apk
5566936 vendor/lib64/camera/com.qti.tuned.lime_sunny_s5kgm1st_main_Normal.bin
5325552 vendor/lib64/unnhal-acc-adreno.so
5299032 vendor/lib64/libswregistrationalgo.so
5246604 system/system/lib/libhwui.so
5202224 system/system/framework/oat/arm64/[email protected]@[email protected]@classes.odex
5046291 system/system/app/EasterEgg/EasterEgg.apk
4913032 system/system/apex/com.android.neuralnetworks/lib64/libneuralnetworks.so
4873928 vendor/lib64/libbeauty_face_interface.so
4672531 system/system/apex/com.android.art/javalib/core-oj.jar
4628161 system/system/apex/com.android.wifi/javalib/service-wifi.jar
4614448 system/system/app/Stk/oat/arm64/Stk.odex
4577462 product/app/GrapheneCamera/GrapheneCamera.apk
4552208 vendor/lib64/camera/com.qti.tuned.lime_ofilm_s5kgm1st_main.bin
4514040 system/system/app/KeyChain/oat/arm64/KeyChain.odex
4491392 vendor/lib64/egl/libGLESv2_adreno.so
4481488 vendor/lib64/libcamxfacialfeatures.so
4475156 vendor/lib/libcamxfacialfeatures.so
4458013 system/system/priv-app/LiveWallpapersPicker/LiveWallpapersPicker.apk
4424234 product/priv-app/ImsServiceEntitlement/ImsServiceEntitlement.apk
4408244 vendor/lib/libOmxMpeghDecSw.so
4401512 system/system/framework/oat/arm64/[email protected]@[email protected]@classes.odex
4388213 system/system/apex/com.android.btservices/app/[email protected]/Bluetooth.apk
4325071 product/app/CalculatorGooglePrebuilt/CalculatorGooglePrebuilt.apk
4189432 system/system/lib64/libpdfium.so
4151576 vendor/lib64/camera/com.qti.tuned.lime_ofilm_s5kgm1st_main_Normal.bin
4077312 vendor/lib64/camera/com.qti.tuned.lime_ofilm_s5kgm1st_main_india.bin
3964544 system/system/framework/telephony-common.jar
3802374 product/priv-app/AndroidAutoStubPrebuilt/AndroidAutoStubPrebuilt.apk
3793936 system/system/framework/arm64/boot.oat
3778616 system/system/lib/libpdfium.so
3715072 system/system/framework/arm64/boot-framework.art
3571712 system/system/framework/arm/boot-framework.art
3550546 system/system/apex/com.android.tethering/app/[email protected]/HalfSheetUX.apk
3487504 system/system/priv-app/StatementService/oat/arm64/StatementService.odex
3471140 vendor/lib/rfsa/adsp/libbitml_nsp_skel.so
3440839 system/system/app/Stk/Stk.apk
3418569 system/system/app/KeyChain/KeyChain.apk
3327052 vendor/etc/camera/Miui-Light.ttf
3290444 vendor/lib/egl/libGLESv2_adreno.so
3283356 product/fonts/SamsungOne.ttf
3209212 system/system/framework/arm/boot.oat
3196232 system/system/apex/com.android.neuralnetworks/lib/libneuralnetworks.so
3161498 system/system/priv-app/GooglePackageInstaller/GooglePackageInstaller.apk
3144776 boot/ramdisk/init
3100272 vendor/bin/hw/wpa_supplicant
3097848 system/system/apex/com.android.art/lib/libart-compiler.so
3026968 vendor/lib64/libCB.so
2990592 vendor/etc/acdbdata/nn_ns_models/fai__2.2.0_0.1__3.0.0_0.0__eai_1.00.pmd
2961984 system/system/fonts/NotoColorEmoji.ttf
2957366 product/etc/res/images/charger/battery_scale.png
2938712 vendor/lib64/unnhal-acc-common.so
2847656 system/system/apex/com.android.i18n/lib64/libicui18n.so
2841288 system/system/lib64/libcameraservice.so
2689584 vendor/lib64/libvideofilter_only.so
2643424 vendor/lib64/hw/com.qti.chi.override.so
2641392 vendor/lib64/libwvhidl.so
2616704 system/system/lib64/[email protected]
2528048 system/system/apex/com.android.i18n/javalib/core-icu4j.jar
2525504 vendor/bin/hw/[email protected]
2516992 system/system/apex/com.android.adbd/bin/adbd
2515936 system/system/app/CompanionDeviceManager/oat/arm64/CompanionDeviceManager.odex
2512432 vendor/lib64/mediadrm/libwvdrmengine.so
2501360 system/system/priv-app/MediaProviderLegacy/oat/arm64/MediaProviderLegacy.odex
2485024 system/system/bin/init
2485000 recovery/ramdisk/system/bin/init
2417928 recovery/ramdisk/system/bin/adbd
2372548 system/system/fonts/Roboto-Regular.ttf
2367640 system/system/lib64/libandroid_runtime.so
2356680 system/system/priv-app/NetworkStack/oat/arm64/NetworkStack.odex
2356656 system/system/priv-app/NetworkStackNext/oat/arm64/NetworkStackNext.odex
2319601 system/system/framework/ext.jar
2310200 vendor/lib64/libprotobuf-cpp-full-3.9.1.so
2310200 system/system/lib64/libprotobuf-cpp-full.so
2300500 vendor/lib/libCB.so
2292080 system/system/apex/com.android.resolv/lib64/libnetd_resolv.so
2269072 system/system/lib64/libclang_rt.asan-aarch64-android.so
2239400 recovery/ramdisk/system/bin/recovery
2229248 vendor/lib64/hw/vulkan.adreno.so
2220471 system/system/apex/com.android.tethering/javalib/service-connectivity.jar
2211840 system/system/framework/oat/arm64/services.art
2164520 vendor/bin/netmgrd
2138440 vendor/lib64/libgsl.so
2117512 vendor/lib64/[email protected]
2116656 system/system/priv-app/MtpService/oat/arm64/MtpService.odex
2113912 vendor/lib64/camera/com.qti.tuned.lime_acc_ov8856_ultra_india.bin
2088553 system/system/etc/selinux/plat_sepolicy.cil
2080264 system/system/lib64/[email protected]
2080064 vendor/lib64/libVkLayer_q3dtools.so
2059400 system/system/priv-app/StatementService/StatementService.apk
2027896 system/system/priv-app/Telecom/oat/arm64/Telecom.odex
2018384 system/system/priv-app/ContactsProvider/oat/arm64/ContactsProvider.odex
2011720 system/system/lib/libclang_rt.asan-arm-android.so
1991832 system/system/apex/com.android.i18n/lib64/libicuuc.so
1986720 system/system/priv-app/SoundPicker/oat/arm64/SoundPicker.odex
1969448 vendor/lib/libgsl.so
1955464 system/system/lib64/libstagefright.so
1933748 system/system/apex/com.android.i18n/lib/libicui18n.so
1922968 vendor/lib64/camera/com.qti.tuned.lime_acc_ov8856_ultra.bin
1906280 vendor/lib64/libsnsapi.so
1903961 vendor/lib/modules/audio_platform.ko
1902240 vendor/lib64/lib_lowlight.so
1897000 vendor/lib64/[email protected]
1874866 system/system/app/CompanionDeviceManager/CompanionDeviceManager.apk
1873256 system/system/lib64/libvpx.so
1873012 vendor/lib/libvpx.so
1862768 system/system/priv-app/CellBroadcastLegacyApp/oat/arm64/CellBroadcastLegacyApp.odex
1854640 vendor/lib64/libicuuc.so
1852024 system/system/framework/oat/arm64/[email protected]@[email protected]@classes.odex
1844272 vendor/lib64/libSuperSensorCPU.so
1839688 system/system/bin/bootstrap/linker64
1839688 recovery/ramdisk/system/bin/linker64
1838984 system/system/apex/com.android.runtime/bin/linker64
1832480 vendor/lib64/[email protected]
1804551 system/system/priv-app/Telecom/Telecom.apk
1804436 vendor/lib/liblistensoundmodel2.so
1799728 vendor/lib64/[email protected]
1767772 vendor/etc/camera/model/bokeh_model/cache_data
1726884 vendor/lib/hw/vulkan.adreno.so
1657704 vendor/lib64/camera/com.qti.tuned.lime_sunny_ov8856_front.bin
1656904 vendor/lib64/camera/com.qti.tuned.lime_sunny_ov8856_front_india.bin
1656904 vendor/lib64/camera/com.qti.tuned.citrus_sunny_ov8856_front_india.bin
1639234 system/system/priv-app/MediaProviderLegacy/MediaProviderLegacy.apk
1636224 vendor/lib64/camera/com.qti.tuned.lime_sunny_ov8856_front_Normal.bin
1634576 system/system/bin/keystore2
1617456 vendor/lib/libprotobuf-cpp-full-3.9.1.so
1617456 system/system/lib/libprotobuf-cpp-full.so
1616088 vendor/lib64/[email protected]
1615760 system/system/lib/libandroid_runtime.so
1612744 vendor/bin/hw/hostapd
1611208 vendor/lib64/camera/com.qti.tuned.lime_sunny_ov8856_front_global.bin
1611208 vendor/lib64/camera/com.qti.tuned.citrus_sunny_ov8856_front_global.bin
1611208 vendor/lib64/camera/com.qti.tuned.citrus_sunny_ov8856_front.bin
1599592 product/fonts/GearTinkerbell.ttf
1585360 system/system/lib64/libblas.so
1585360 system/system/apex/com.android.vndk.current/lib64/libblas.so
1553936 vendor/lib64/[email protected]
1546728 system/system/bin/simpleperf
1546040 vendor/lib64/[email protected]
1546040 system/system/lib64/[email protected]
1546024 system/system/lib64/[email protected]
1545968 system/system/lib64/[email protected]
1529654 system/system/priv-app/MtpService/MtpService.apk
1527048 system/system/lib64/libcodec2_soft_hevcenc.so
1491248 vendor/lib/libVkLayer_q3dtools.so
1481216 product/fonts/LGSmartGothic.ttf
1477028 vendor/lib/rfsa/adsp/libfastcvadsp.so
1457336 system/system/lib/libstagefright.so
1455655 system/system/priv-app/SoundPicker/SoundPicker.apk
1453422 vendor/etc/qdcm_calib_data_sharp_1080p_cmd_mode_dsi_panel.xml
1453422 vendor/etc/qdcm_calib_data_rm69299_amoled_fhd+_video_mode_dsi_visionox_panel.xml
1453422 vendor/etc/qdcm_calib_data_rm69299_amoled_fhd+_cmd_mode_dsi_visionox_panel.xml
1453422 vendor/etc/qdcm_calib_data_r66451_amoled_video_mode_dsi_visionox_90HZ_panel_with_DSC.xml
1453422 vendor/etc/qdcm_calib_data_r66451_amoled_video_mode_dsi_visionox_60HZ_panel_with_DSC.xml
1453422 vendor/etc/qdcm_calib_data_r66451_amoled_video_mode_dsi_visionox_120HZ_panel_with_DSC.xml
1453422 vendor/etc/qdcm_calib_data_r66451_amoled_cmd_mode_dsi_visionox_panel_with_DSC.xml
1453422 vendor/etc/qdcm_calib_data_r66451_amoled_cmd_mode_dsi_visionox_90HZ_panel_with_DSC.xml
1453422 vendor/etc/qdcm_calib_data_r66451_amoled_cmd_mode_dsi_visionox_60HZ_panel_with_DSC.xml
1453422 vendor/etc/qdcm_calib_data_r66451_amoled_cmd_mode_dsi_visionox_120HZ_panel_with_DSC.xml
1453422 vendor/etc/qdcm_calib_data_nt35695b_truly_fhd_command_mode_dsi_panel.xml
1453422 vendor/etc/qdcm_calib_data_Sharp_fhd_video_mode_qsync_dsi_panel.xml
1453422 vendor/etc/qdcm_calib_data_Sharp_fhd_cmd_mode_qsync_dsi_panel.xml
1453422 vendor/etc/qdcm_calib_data_Sharp_2k_video_mode_qsync_dsi_panel.xml
1453422 vendor/etc/qdcm_calib_data_Sharp_2k_cmd_mode_qsync_dsi_panel.xml
1453379 vendor/etc/qdcm_calib_data_nt35597_video_mode_dsi_truly_panel_with_DSC.xml
1453379 vendor/etc/qdcm_calib_data_nt35597_cmd_mode_dsi_truly_panel_with_DSC.xml
1453379 vendor/etc/qdcm_calib_data_Sharp_4k_video_mode_dsc_dsi_panel.xml
1453379 vendor/etc/qdcm_calib_data_Sharp_4k_cmd_mode_dsc_dsi_panel.xml
1453264 system/system/framework/oat/arm64/am.odex
1447584 vendor/lib64/[email protected]
1439208 vendor/lib64/[email protected]
1436766 boot/ramdisk.packed
1430496 system/system/bin/bootstrap/linkerconfig
1430472 system/system/apex/com.android.runtime/bin/linkerconfig
1430388 vendor/lib/[email protected]
1426272 vendor/lib64/[email protected]
1423656 system/system/apex/com.android.media/lib64/extractors/libmpeg2extractor.so
1419168 vendor/lib64/libmmcamera_faceproc2.so
1415296 system/system/lib64/libharfbuzz_ng.so
1413954 system/system/apex/com.android.wifi/app/[email protected]/WifiDialog.apk
1393680 system_ext/lib64/libmmparser_lite.so
1371872 system/system/lib64/libgui.so
1371572 system/system/apex/com.android.i18n/lib/libicuuc.so
1366456 system/system/bin/snapshotctl
1361672 vendor/lib64/[email protected]
1360032 vendor/lib64/libcne.so
1360008 system/system/lib64/libcrypto.so
1360008 system/system/apex/com.android.vndk.current/lib64/libcrypto.so
1360008 recovery/ramdisk/system/lib64/libcrypto.so
1357360 vendor/lib64/[email protected]
1350541 system/system/apex/com.android.art/javalib/bouncycastle.jar
1348418 system/system/priv-app/CellBroadcastLegacyApp/CellBroadcastLegacyApp.apk
1345272 vendor/lib64/libst_sr_models.so
1342568 vendor/lib64/libchrome.so
1342568 system/system/lib64/libchrome.so
1336824 vendor/lib/libmmcamera_faceproc2.so
1332400 vendor/lib64/libgui_vendor.so
1332400 system/system/apex/com.android.vndk.current/lib64/libgui.so
1318196 product/fonts/Rosemary-Regular.ttf
1312504 vendor/lib64/libmmcamera_faceproc.so
1310256 vendor/lib64/[email protected]
1309332 system/system/lib/libharfbuzz_ng.so
1308912 system/system/bin/bootstrap/linker
1308588 vendor/lib/[email protected]
1307184 system/system/apex/com.android.runtime/bin/linker
1297832 system/system/apex/com.android.vndk.current/lib64/libxml2.so
1294856 vendor/lib64/camera/com.qti.tuned.lime_sunny_ov8856_ultra_india.bin
1289520 system/system/lib64/libxml2.so
1289136 system/system/lib64/libaudioflinger.so
1284672 vendor/lib/[email protected]
1280776 vendor/bin/f2player
1280448 vendor/lib64/libgpudataproducer.so
1280424 system/system/framework/oat/arm/am.odex
1272936 system/system/lib64/libcodec2_soft_av1dec_gav1.so
1259015 recovery/ramdisk/sepolicy
1256513 vendor/etc/selinux/precompiled_sepolicy
1247240 vendor/lib64/libHalSuperSensorServer.so
1246512 vendor/lib/libmmcamera_faceproc.so
1237817 system/system/priv-app/NetworkStack/NetworkStack.apk
1237397 system/system/priv-app/NetworkStackNext/NetworkStackNext.apk
1227800 system/system/app/PrintSpooler/oat/arm64/PrintSpooler.odex
1220672 system/system/lib64/libbcinfo.so
1220672 system/system/apex/com.android.vndk.current/lib64/libbcinfo.so
1219203 vendor/etc/acdbdata/IDP/IDP_Handset_cal.acdb
1216824 vendor/lib/[email protected]
1216440 vendor/lib64/[email protected]
1213134 product/app/Chrome-Stub/Chrome-Stub.apk
1207632 system/system/apex/com.android.os.statsd/bin/statsd
1203056 system/system/lib64/libsqlite.so
1197464 product/media/audio/ringtones/CyanTone.ogg
1194320 system/system/lib64/service.incremental.so
1188513 system/system/apex/com.android.wifi/priv-app/[email protected]/ServiceWifiResources.apk
1181456 system/system/apex/com.android.vndk.current/lib64/libsqlite.so
1165168 vendor/lib/rfsa/adsp/libhexagon_nn_skel.so
1159096 vendor/lib64/egl/libq3dtools_esx.so
1154396 system/system/apex/com.android.appsearch/javalib/service-appsearch.jar
1143546 system_ext/priv-app/ims/ims.apk
1139296 vendor/lib64/camera/com.qti.tuned.lime_sunny_hi259_macro_india.bin
1135308 system/system/apex/com.android.art/javalib/apache-xml.jar
1134088 system/system/lib/libmediaplayerservice.so
1132664 vendor/lib64/soundfx/libaudiopreprocessing.so
1127599 vendor/gpu/kbc/unified_kbcs_64.bin
1126392 system/system/apex/com.android.art/lib64/libart-disassembler.so
1124700 system/system/lib64/libclcore_g.bc
1121920 system/system/framework/arm64/boot-core-icu4j.oat
1119128 vendor/bin/xtwifi-client
1116276 vendor/lib/[email protected]
1115280 system/system/lib64/libperfetto.so
1111623 vendor/gpu/kbc/unified_kbcs_32.bin
1100961 vendor/etc/acdbdata/QRD/QRD_Handset_cal.acdb
1100000 system/system/fonts/NotoSerifTibetan-VF.ttf
1094544 system/system/lib64/bootstrap/libc.so
1094544 system/system/apex/com.android.runtime/lib64/bionic/libc.so
1094544 recovery/ramdisk/system/lib64/libc.so
1088392 system/system/lib64/libcodec2_soft_aacdec.so
1087864 system_ext/bin/bash
1079904 vendor/lib64/libwqe.so
1078539 system/system/app/PrintSpooler/PrintSpooler.apk
1077160 system/system/lib64/libclcore_debug_g.bc
1076112 system/system/bin/snapuserd
1072176 vendor/lib64/[email protected]
1072176 system/system/lib64/[email protected]
1067372 system/system/lib/libclcore_g.bc
1064744 system/system/framework/oat/arm64/[email protected]@[email protected]@classes.odex
1054640 vendor/lib64/libc++_shared_vf.so
1054640 vendor/lib64/libc++_shared.so
1051776 vendor/lib64/camera/com.qti.tuned.lime_sunny_ov8856_ultra.bin
1049332 vendor/lib/[email protected]
1028184 system/system/lib64/libaudiopolicymanagerdefault.so
1021080 vendor/lib64/[email protected]
1018112 system/system/lib64/libnfc-nci.so
1011344 system/system/apex/com.android.uwb/lib64/libuwb_uci_jni_rust.so
1005448 vendor/etc/selinux/plat_pub_versioned.cil
1004401 vendor/lib/modules/audio_q6.ko
999838 vendor/app/IWlanService/IWlanService.apk
989528 system/system/apex/com.android.art/lib64/libopenjdkjvmti.so
986960 system/system/bin/tcpdump
965120 vendor/lib/[email protected]
964752 vendor/lib64/libcamxfdalgo.so
958748 system/system/apex/com.android.btservices/javalib/service-bluetooth.jar
953696 system/system/lib64/libaudioprocessing.so
952448 system/system/bin/vold
952322 vendor/etc/selinux/vendor_sepolicy.cil
951904 system/system/apex/com.android.art/bin/dex2oat64
950840 system/system/priv-app/CalendarProvider/oat/arm64/CalendarProvider.odex
950768 system/system/priv-app/ContactsProvider/ContactsProvider.apk
948169 system/system/apex/com.android.wifi/javalib/framework-wifi.jar
944484 system/system/framework/arm/boot-core-icu4j.oat
943384 vendor/lib/libchrome.so
943384 system/system/lib/libchrome.so
941408 system/system/lib/libclcore_debug_g.bc
939828 system/system/lib/libgui.so
938612 vendor/lib/libcamxfdalgo.so
936528 vendor/lib64/camera/com.qti.tuned.default.bin
933696 system/system/framework/oat/arm64/uiautomator.odex
929816 vendor/lib64/[email protected]
929816 system/system/lib64/[email protected]
926976 vendor/lib64/[email protected]
919776 vendor/lib64/libdng_sdk.so
919776 system/system/lib64/libdng_sdk.so
918960 system/system/lib64/libaudioclient.so
915772 system_ext/lib/libmmparser_lite.so
914896 vendor/lib64/libadreno_app_profiles.so
914112 vendor/lib64/libxtwifi_server_protocol_uri_v3.so
912448 system/system/apex/com.android.vndk.current/lib/libgui.so
912436 vendor/lib/libgui_vendor.so
908496 vendor/lib/[email protected]
905926 product/overlay/GmsConfigOverlayTurbo.apk
901464 vendor/lib64/[email protected]
895960 system/system/lib/libcrypto.so
895960 system/system/apex/com.android.vndk.current/lib/libcrypto.so
894545 system/system/apex/com.android.btservices/javalib/framework-bluetooth.jar
894192 system/system/apex/com.android.vndk.current/lib/libxml2.so
891928 system/system/apex/com.android.vndk.current/lib64/libclang_rt.ubsan_standalone-aarch64-android.so
883868 system/system/lib/libxml2.so
883128 system/system/apex/com.android.appsearch/lib64/libicing.so
882480 vendor/lib/libgpudataproducer.so
879816 system/system/lib/bootstrap/libc.so
879816 system/system/apex/com.android.runtime/lib/bionic/libc.so
878902 system/system/apex/com.android.tethering/priv-app/[email protected]/TetheringNext.apk
875568 vendor/lib/[email protected]
870088 vendor/lib64/[email protected]
869984 vendor/lib64/camera/com.qti.tuned.citrus_sunny_hi259_macro_india.bin
860080 system/system/bin/logd
859368 system/system/lib/libblas.so
859368 system/system/apex/com.android.vndk.current/lib/libblas.so
858328 vendor/bin/lowi-server
853212 system/system/lib/libbcinfo.so
853212 system/system/apex/com.android.vndk.current/lib/libbcinfo.so
849060 system/system/fonts/NotoColorEmojiFlags.ttf
839856 vendor/etc/wifi/aoa_cldb_swl14.bin
839856 vendor/etc/wifi/aoa_cldb_falcon.bin
837336 vendor/lib64/camera/com.qti.tuned.lime_sunny_hi259_macro.bin
833388 system/system/lib/service.incremental.so
832872 system/system/priv-app/DownloadProvider/oat/arm64/DownloadProvider.odex
831536 system/system/lib64/[email protected]
829270 product/app/Music/Music.apk
825656 vendor/lib64/libdng_sdk2vendor.so
822824 system/system/lib64/[email protected]
811008 system/system/framework/arm64/boot.art
803184 system/system/bin/gsid
801576 system/system/framework/oat/arm/uiautomator.odex
799064 system/system/lib64/libnfc_nci_jni.so
796357 vendor/gpu/kbc/unified_ksqs.bin
795000 vendor/lib64/liblocationservice.so
793614 vendor/etc/acdbdata/QRD/bengal-scubaqrd-snd-card/QRD_Scuba_Handset_cal.acdb
792608 system/system/bin/apexd
791832 system/system/lib/libsqlite.so
791672 vendor/lib64/libgf_hal.so
788600 vendor/lib64/libsdmextension.so
788112 vendor/lib64/camera/com.qti.tuned.citrus_sunny_hi259_macro.bin
787688 vendor/lib64/camera/com.qti.sensormodule.lime_sunny_s5kgm1st_main.bin
787640 vendor/lib64/camera/com.qti.sensormodule.citrus_sunny_s5kgm1st_main.bin
787560 vendor/lib64/camera/com.qti.sensormodule.lime_ofilm_s5kgm1st_main.bin
782749 product/app/WebViewGoogle-Stub/WebViewGoogle-Stub.apk
782720 system/system/lib64/libbinder.so
782336 system/system/framework/arm/boot.art
779520 system/system/apex/com.android.vndk.current/lib/libsqlite.so
778600 recovery/ramdisk/system/lib64/libbinder.so
778528 system/system/bin/ld.mc
770336 vendor/lib/[email protected]
770336 system/system/lib/[email protected]
766681 vendor/etc/camera/model/rt_model/segment_model
766617 system/system/framework/voip-common.jar
764072 vendor/lib64/libgf_ca.so
762976 system/system/lib64/libgpumemtracer.so
762837 system/system/priv-app/DownloadProvider/DownloadProvider.apk
761904 vendor/etc/acdbdata/IDP/IDP_Speaker_cal.acdb
759992 vendor/lib64/camera/com.qti.tuned.lime_ofilm_ov8856_front_global.bin
758064 system/system/apex/com.android.vndk.current/lib64/libbinder.so
749968 vendor/lib64/camera/com.qti.tuned.lime_ofilm_ov8856_front.bin
749512 system_ext/priv-app/QuickAccessWallet/oat/arm64/QuickAccessWallet.odex
747808 vendor/lib64/[email protected]
744472 system_ext/app/FM2/oat/arm64/FM2.odex
743960 vendor/lib64/lib-imsdpl.so
743568 system/system/lib64/libinputflinger.so
741848 system/system/lib64/libsfplugin_ccodec.so
741064 system/system/apex/com.android.vndk.current/lib64/libhidlbase.so
741040 system/system/lib64/libhidlbase.so
736920 recovery/ramdisk/system/lib64/libhidlbase.so
736024 vendor/lib64/[email protected]
735536 system/system/apex/com.android.art/lib/libopenjdkjvmti.so
734944 system/system/lib64/libcodec2_soft_aacenc.so
733868 system/system/apex/com.android.art/lib/libart-disassembler.so
733528 system/system/priv-app/TelephonyProvider/oat/arm64/TelephonyProvider.odex
732267 system/system/etc/preloaded-classes
726118 product/priv-app/PartnerSetupPrebuilt/PartnerSetupPrebuilt.apk
724400 vendor/lib64/[email protected]
724400 system/system/lib64/[email protected]
721888 vendor/lib64/libstfactory-vendor.so
719676 vendor/lib/egl/libq3dtools_esx.so
716800 vendor/etc/acdbdata/nn_ns_models/fai__2.0.0_0.1__3.0.0_0.0__eai_1.00.pmd
716784 system/system/lib64/libc++.so
716784 system/system/apex/com.android.vndk.current/lib64/libc++.so
716784 recovery/ramdisk/system/lib64/libc++.so
716704 product/fonts/Inter-MediumItalic.ttf
712951 product/media/audio/ringtones/Boxbeat.ogg
710967 system_ext/app/FM2/FM2.apk
709872 system/system/lib64/libcodec2_vndk.so
708968 system/system/fonts/NotoSansSymbols-Regular-Subsetted.ttf
708456 vendor/lib64/[email protected]
706972 vendor/lib/rfsa/adsp/libcamera_nn_skel.so
706599 system/system/etc/NOTICE.xml.gz
699224 product/fonts/Inter-Italic.ttf
698808 vendor/lib64/libhidlbase-v32.so
697112 vendor/lib64/[email protected]
694924 product/fonts/Lato-MediumItalic.ttf
694512 product/fonts/Inter-Medium.ttf
693784 vendor/lib64/[email protected]
693184 system/system/lib64/libmedia.so
692064 vendor/lib/soundfx/libaudiopreprocessing.so
691664 system/system/apex/com.android.art/bin/dex2oat32
689064 system/system/lib64/libfs_mgr_binder.so
688520 vendor/lib64/[email protected]
685424 system/system/lib64/libft2.so
683770 system/system/priv-app/TagGoogle/TagGoogle.apk
680240 product/fonts/Inter-Regular.ttf
676584 vendor/lib64/libc2d30_bltlib.so
676416 system/system/lib64/libandroid_servers.so
674544 vendor/lib64/[email protected]
673376 vendor/lib/[email protected]
673000 vendor/lib64/libft2vendor.so
670888 vendor/lib/libstagefright_soft_aacdec.so
669292 vendor/lib/[email protected]
668816 vendor/lib64/camera/com.qti.sensormodule.lime_sunny_s5kgm1sp_main.bin
668816 vendor/lib64/camera/com.qti.sensormodule.citrus_sunny_s5kgm1sp_main.bin
666888 system/system/lib/libaudioclient.so
661868 vendor/etc/acdbdata/IDP/bengal-scubaidp-snd-card/IDP_Scuba_Handset_cal.acdb
654800 vendor/bin/ipacm
654472 vendor/lib64/hw/focal_fingerprint.default.so
653808 vendor/lib64/libxtwifi_server_protocol.so
650425 system_ext/priv-app/GoogleFeedback/GoogleFeedback.apk
647768 product/fonts/GoogleSans-Italic.ttf
647267 product/media/audio/alarms/Fresh_start.ogg
644800 vendor/lib64/libalhLDC.so
643648 product/fonts/Lato-Italic.ttf
641504 vendor/lib/libsurround_3mic_proc.so
640048 vendor/lib64/[email protected]
638195 vendor/etc/acdbdata/IDP/IDP_Headset_cal.acdb
637264 system/system/lib64/libmedia_jni.so
637152 vendor/lib64/lib-imsrcs-v2.so
636396 product/fonts/Lato-Medium.ttf
633208 vendor/etc/acdbdata/QRD/bengal-scubaqrd-snd-card/QRD_Scuba_Speaker_cal.acdb
632856 vendor/lib64/[email protected]
632520 system/system/lib64/libcodec2_soft_hevcdec.so
631790 system/system/app/CertInstaller/CertInstaller.apk
629304 system/system/lib64/libinputreader.so
627721 system/system/apex/com.android.ipsec/javalib/android.net.ipsec.ike.jar
625704 vendor/lib64/camera/com.qti.tuned.lime_ofilm_ov8856_front_india.bin
624904 product/fonts/GoogleSans-Regular.ttf
620720 vendor/lib64/libdsi_netctrl.so
620712 vendor/lib64/libalCFR.so
618416 product/fonts/Lato-BoldItalic.ttf
616136 vendor/lib/libadreno_app_profiles.so
614684 vendor/lib/rfsa/adsp/libfastcvdsp_skel.so
611880 vendor/lib64/libcapiv2svacnn.so
611152 system/system/lib64/[email protected]
610024 vendor/lib64/lib-rtpcore.so
604832 system/system/lib64/libaudiopolicyenginedefault.so
603736 vendor/lib64/[email protected]
603651 product/media/audio/ringtones/Yukaay.ogg
603232 system/system/lib64/libsonivox.so
602568 vendor/lib64/com.qti.chiusecaseselector.so
602480 vendor/bin/STFlashTool
602272 recovery/ramdisk/system/lib64/libvintf.so
600260 system/system/lib/libinputflinger.so
599128 system/system/lib/libft2.so
597808 system/system/lib64/libvintf.so
594355 vendor/etc/acdbdata/QRD/QRD_Speaker_cal.acdb
593064 system/system/bin/perfetto
589720 product/fonts/Lato-Regular.ttf
587864 product/fonts/Lato-Bold.ttf
586160 system/system/lib64/libunwindstack.so
585558 product/etc/apns-conf.xml
583512 system/system/apex/com.android.media/lib64/extractors/libmidiextractor.so
582392 vendor/bin/hw/[email protected]
581486 vendor/etc/acdbdata/IDP/bengal-scubaidp-snd-card/IDP_Scuba_Speaker_cal.acdb
580184 vendor/lib64/libSuperSensor.so
580008 system/system/lib64/libfs_mgr.so
580008 recovery/ramdisk/system/lib64/libfs_mgr.so
577752 vendor/lib64/libmmcamera_mfnr.so
575544 system/system/bin/netd
575400 system_ext/framework/oat/arm64/com.qti.dpmframework.odex
573896 system/system/priv-app/BlockedNumberProvider/oat/arm64/BlockedNumberProvider.odex
572484 vendor/lib/libdng_sdk.so
572484 system/system/lib/libdng_sdk.so
572320 system/system/lib64/libcodec2_soft_avcdec.so
570278 system/system/priv-app/CalendarProvider/CalendarProvider.apk
570104 vendor/lib64/camera/com.qti.tuned.lime_ofilm_ov8856_front_Normal.bin
569136 vendor/lib64/libmmcamera_mfnr_t4.so
568000 vendor/lib64/libcamxfdengine.so
563976 vendor/lib64/unnhal-acc-hvx.so
563064 system/system/lib64/libcamera_client.so
559864 system/system/apex/com.android.vndk.current/lib64/libunwindstack.so
559864 recovery/ramdisk/system/lib64/libunwindstack.so
558404 system/system/lib/libsonivox.so
556944 system/system/apex/com.android.art/lib64/libperfetto_hprof.so
555968 system/system/priv-app/SettingsProvider/oat/arm64/SettingsProvider.odex
554600 system/system/lib64/libandroidfw.so
553764 vendor/lib/libcamxfdengine.so
552841 system/system/framework/ims-common.jar
552048 vendor/lib64/[email protected]
551724 system/system/lib/libclang_rt.ubsan_standalone-arm-android.so
551724 system/system/apex/com.android.vndk.current/lib/libclang_rt.ubsan_standalone-arm-android.so
546360 vendor/lib/libc2d30_bltlib.so
546296 vendor/lib64/[email protected]
546296 system/system/lib64/[email protected]
545200 vendor/lib64/camera/com.qti.tuned.citrus_ofilm_ov8856_front.bin
544408 system/system/bin/curl
543184 vendor/bin/hw/vendor.qti.hardware.display.composer-service
542079 system/system/priv-app/BuiltInPrintService/BuiltInPrintService.apk
541737 system/system/app/CaptivePortalLogin/CaptivePortalLogin.apk
541392 system/system/lib64/libkeymaster_portable.so
540652 system/system/lib/libsfplugin_ccodec.so
539080 product/app/PhotoTable/PhotoTable.apk
538268 vendor/lib/hw/audio.primary.bengal.so
537912 system/system/lib64/android.hardware.gnss-V2-cpp.so
537024 vendor/lib64/sensors.ssc.so
533276 system/system/lib/libbinder.so
531184 vendor/lib64/libmialgoengine.so
528844 system/system/apex/com.android.uwb/javalib/service-uwb.jar
527797 system/system/apex/com.android.art/javalib/core-libart.jar
527200 vendor/lib/[email protected]
524917 vendor/etc/acdbdata/QRD/QRD_Headset_cal.acdb
524564 vendor/lib/[email protected]
524564 system/system/lib/[email protected]
521792 system/system/lib64/libcodec2_soft_avcenc.so
519616 vendor/lib64/libloc_core.so
517823 product/media/audio/ringtones/Your_new_adventure.ogg
517736 system/system/apex/com.android.vndk.current/lib64/android.hardware.wifi.supplicant-V1-ndk.so
516596 system/system/lib/libhidlbase.so
516472 system/system/apex/com.android.vndk.current/lib/libhidlbase.so
515764 system/system/framework/boot-framework.vdex
515512 system/system/lib64/libRSCpuRef.so
515512 system/system/apex/com.android.vndk.current/lib64/libRSCpuRef.so
515400 vendor/lib64/[email protected]
514864 system/system/lib64/libmediametricsservice.so
514312 system/system/apex/com.android.vndk.current/lib/libbinder.so
513296 vendor/lib64/hw/[email protected]
513184 system/system/apex/com.android.vndk.current/lib64/android.hardware.gnss-V2-ndk.so
513064 system_ext/framework/oat/arm/com.qti.dpmframework.odex
512792 system/system/lib64/libaudiopolicyservice.so
511776 vendor/lib64/hw/[email protected]
510672 vendor/lib64/[email protected]
510056 system/system/bin/mkfs.erofs
510056 recovery/ramdisk/system/bin/mkfs.erofs
508136 vendor/lib64/camera/components/com.qti.stats.aec.so
507008 vendor/lib64/libprotobuf-cpp-lite-3.9.1.so
507008 system/system/lib64/libprotobuf-cpp-lite.so
507008 recovery/ramdisk/system/lib64/libprotobuf-cpp-lite.so
506464 system/system/lib/libcodec2_vndk.so
505436 system/system/fonts/NotoSansEgyptianHieroglyphs-Regular.ttf
502464 vendor/etc/acdbdata/QRD/bengal-scubaqrd-snd-card/QRD_Scuba_workspaceFile.qwsp
502464 vendor/etc/acdbdata/IDP/bengal-scubaidp-snd-card/IDP_Scuba_workspaceFile.qwsp
502160 vendor/bin/toybox_vendor
502160 system/system/bin/toybox
502160 recovery/ramdisk/system/bin/toybox
500380 system/system/fonts/NotoSansCuneiform-Regular.ttf
497728 vendor/lib64/libsdmcore.so
497688 system/system/lib/libmedia.so
494768 system/system/bin/iptables
494693 system/system/apex/com.android.media/javalib/updatable-media.jar
494472 system/system/lib64/libopus.so
487584 system/system/lib/libandroid_servers.so
486056 vendor/lib64/[email protected]
485524 system/system/lib/libc++.so
485524 system/system/apex/com.android.vndk.current/lib/libc++.so
483246 system/system/framework/am.jar
481992 system/system/apex/com.android.adbd/lib64/libadb_pairing_connection.so
481827 system/system/usr/share/zoneinfo/tzdata
481827 system/system/apex/com.android.tzdata/etc/tz/tzdata
481464 vendor/lib64/[email protected]
480752 vendor/lib64/libqcrilFramework.so
480368 vendor/lib64/liblowi_client.so
477280 system/system/lib64/[email protected]
477280 system/system/apex/com.android.vndk.current/lib64/[email protected]
475136 system/system/framework/arm64/boot-core-icu4j.art
473147 system_ext/priv-app/QuickAccessWallet/QuickAccessWallet.apk
471848 vendor/lib64/camera/components/com.qti.stats.awb.so
469856 vendor/lib64/libwifi-hal.so
466084 vendor/lib/libstagefright_soft_aacenc.so
465711 system/system/apex/com.android.tethering/javalib/framework-connectivity.jar
464012 vendor/lib/libcapiv2svacnn.so
462848 system/system/framework/arm/boot-core-icu4j.art
462480 system/system/lib64/libjpeg.so
462480 system/system/apex/com.android.vndk.current/lib64/libjpeg.so
461776 vendor/framework/oat/arm64/com.fingerprints.extension.odex
458400 system/system/lib64/libwfds.so
458380 system/system/lib/libinputreader.so
456088 vendor/lib64/camera/com.qti.tuned.lime_aac_gc02m1_macro_india.bin
456088 vendor/lib64/camera/com.qti.tuned.lime_aac_gc02m1_macro.bin
455736 vendor/lib/libstagefright_soft_hevcdec.so
454456 system/system/lib/libmedia_jni.so
453456 vendor/lib64/[email protected]
453456 system/system/lib64/[email protected]
452802 system/system/framework/org.apache.http.legacy.jar
452328 vendor/lib64/libwifi-hal-qcom.so
451744 vendor/lib64/[email protected]
450944 vendor/lib/[email protected]
449816 vendor/lib64/hw/[email protected]
448888 system/system/fonts/NotoSansEthiopic-VF.ttf
447872 vendor/lib64/[email protected]
447872 system/system/lib64/[email protected]
447156 system/system/priv-app/Shell/Shell.apk
444208 vendor/lib64/camera/components/com.qti.stats.pdlib.so
444144 vendor/lib64/[email protected]
443374 system/system/priv-app/TelephonyProvider/TelephonyProvider.apk
442576 system/system/apex/com.android.runtime/bin/crash_dump64
431473 system/system/apex/com.android.conscrypt/javalib/conscrypt.jar
431152 system/system/lib/[email protected]
429232 system/system/bin/installd
428608 vendor/lib64/libcapiv2vop.so
427824 vendor/lib64/camera/com.qti.tuned.lime_aacaf_hi259_macro_india.bin
426496 vendor/lib64/com.qti.feature2.gs.so
426040 system/system/bin/heapprofd
426024 system/system/apex/com.android.vndk.current/lib64/libcurl.so
425848 system/system/bin/traced_perf
424380 system/system/lib/libunwindstack.so
423184 vendor/lib64/[email protected]
422624 vendor/lib64/camera/com.qti.tuned.lime_aacaf_hi259_macro.bin
422304 system/system/lib64/[email protected]
422304 system/system/apex/com.android.vndk.current/lib64/[email protected]
421624 vendor/lib/libdsi_netctrl.so
419512 system/system/lib/libvintf.so
418552 vendor/lib64/[email protected]
418376 vendor/lib64/libloc_api_v02.so
413254 bootdts/01_dtbdump_Qualcomm_Technologies,_Inc._Bengal_SoC.dts
412896 system/system/fonts/NotoSerifEthiopic-VF.ttf
412784 vendor/lib64/libsl_fp_impl.so
411744 system/system/lib64/libinput.so
411336 system/system/lib/libcamera_client.so
409712 system/system/bin/ip
407144 vendor/lib64/libalLDC.so
403496 vendor/framework/oat/arm/com.fingerprints.extension.odex
403488 system/system/lib64/libsensorservice.so
403056 vendor/lib64/[email protected]
402784 vendor/lib64/libsdm-color.so
401804 system/system/lib/libstagefright_httplive.so
401648 vendor/lib64/[email protected]
401604 system/system/apex/com.android.vndk.current/lib/libunwindstack.so
401408 system/system/framework/arm64/boot-telephony-common.art
401192 vendor/lib64/[email protected]
401192 system/system/lib64/[email protected]
400772 vendor/lib/[email protected]
400772 system/system/lib/[email protected]
400724 system/system/lib/libandroidfw.so
399684 system/system/fonts/NotoSansGrantha-Regular.ttf
399136 system/system/lib64/libaaudio_internal.so
395200 vendor/lib64/libmiStereoFactoryRemapLib.so
395088 vendor/lib64/[email protected]
395088 system/system/lib64/[email protected]
394892 system/system/lib/libRSCpuRef.so
394892 system/system/apex/com.android.vndk.current/lib/libRSCpuRef.so
394565 product/media/audio/ringtones/Lost_and_found.ogg
390473 system/system/priv-app/SettingsProvider/SettingsProvider.apk
389900 vendor/lib/libmmcamera_mfnr.so
389856 system/system/app/CaptivePortalLogin/oat/arm64/CaptivePortalLogin.odex
389216 system/system/lib64/libssl.so
389216 system/system/apex/com.android.vndk.current/lib64/libssl.so
388520 system/system/lib64/libFFTEm.so
388192 vendor/etc/acdbdata/IDP/IDP_workspaceFile.qwsp
387912 vendor/lib64/libgnss.so
387904 vendor/lib/libsdmcore.so
386208 vendor/lib64/libOmxVenc.so
385832 vendor/lib64/camera/com.qti.tuned.lime_ofilm_gc02m1b_depth_india.bin
385832 vendor/lib64/camera/com.qti.tuned.lime_ofilm_gc02m1b_depth.bin
385768 system/system/apex/com.android.art/lib/libperfetto_hprof.so
385532 vendor/lib/libmmcamera_mfnr_t4.so
385312 system/system/lib64/libservices.core-gnss.so
381928 system/system/priv-app/BuiltInPrintService/oat/arm64/BuiltInPrintService.odex
381549 dtbodts/01_dtbdump_Qualcomm_Technologies,_Inc._BENGAL_IDP.dts
380928 system/system/framework/arm/boot-telephony-common.art
380402 system/system/framework/uiautomator.jar
379968 system/system/lib64/libext2fs.so
379968 recovery/ramdisk/system/lib64/libext2fs.so
378176 system_ext/lib64/[email protected]
377848 system/system/lib64/libsfplugin_ccodec_utils.so
377784 system/system/lib64/libmediadrm.so
377496 system/system/apex/com.android.art/bin/odrefresh
376784 vendor/etc/acdbdata/QRD/QRD_workspaceFile.qwsp
376704 system/system/priv-app/Shell/oat/arm64/Shell.odex
376568 vendor/bin/xtra-daemon
376149 system/system/apex/com.android.art/javalib/okhttp.jar
375824 system/system/bin/dumpstate
375120 vendor/lib64/[email protected]
374176 system/system/lib64/libmediautils.so
372759 system/system/app/SimAppDialog/SimAppDialog.apk
372400 system/system/bin/wificond
370536 vendor/lib64/camera/com.qti.tuned.lime_sunny_ov02b1b_depth_india.bin
370536 vendor/lib64/camera/com.qti.tuned.lime_sunny_ov02b1b_depth.bin
370536 vendor/lib64/camera/com.qti.tuned.citrus_sunny_ov02b1b_depth_india.bin
370536 vendor/lib64/camera/com.qti.tuned.citrus_sunny_ov02b1b_depth.bin
370216 product/media/audio/alarms/Sunshower.ogg
368936 recovery/ramdisk/system/lib64/librecovery_ui.so
368680 system/system/lib64/libpcre2.so
368680 system/system/apex/com.android.vndk.current/lib64/libpcre2.so
368680 recovery/ramdisk/system/lib64/libpcre2.so
365448 vendor/lib64/[email protected]
364888 system/system/lib64/libyuv.so
364888 system/system/apex/com.android.vndk.current/lib64/libyuv.so
364188 system/system/lib/android.hardware.gnss-V2-cpp.so
363520 system/system/apex/com.android.art/lib64/libdexfile.so
362768 system/system/framework/arm64/boot-core-libart.oat
362728 system/system/apex/com.android.art/lib64/libartbase.so
361560 vendor/lib64/libscveObjectTracker.so
361304 vendor/lib/libcapiv2vop.so
359527 vendor/etc/camera/112_Cyberpunk.png
359416 vendor/lib64/[email protected]
359416 system/system/lib64/[email protected]
358504 vendor/lib64/lib-imsvtcore.so
358268 system/system/fonts/NotoSansSinhalaUI-VF.ttf
358248 system/system/fonts/NotoSansSinhala-VF.ttf
356295 system/system/apex/com.android.tethering/javalib/framework-connectivity-t.jar
355892 vendor/etc/camera/106_Lost.png
355520 system/system/lib64/libprocessgroup.so
355520 system/system/apex/com.android.vndk.current/lib64/libprocessgroup.so
355520 recovery/ramdisk/system/lib64/libprocessgroup.so
354920 vendor/lib64/[email protected]
354812 vendor/lib/libstagefright_soft_avcdec.so
354208 system/system/lib64/libcups.so
353992 system/system/bin/credstore
353792 system/system/apex/com.android.sdkext/bin/derive_classpath
353076 system/system/lib64/libclcore_debug.bc
352920 system/system/bin/mdnsd
352624 system/system/app/SecureElement/oat/arm64/SecureElement.odex
352220 system/system/fonts/NotoSerifSinhala-VF.ttf
352168 system/system/lib64/liblayers_proto.so
352048 vendor/lib64/lib-uceservice.so
351832 vendor/lib64/[email protected]
351800 system/system/apex/com.android.vndk.current/lib/android.hardware.gnss-V2-ndk.so
351480 system/system/apex/com.android.vndk.current/lib/android.hardware.wifi.supplicant-V1-ndk.so
351472 vendor/lib64/hw/cdfinger.fingerprint.default.so
351400 vendor/lib/libprotobuf-cpp-lite-3.9.1.so
351400 system/system/lib/libprotobuf-cpp-lite.so
351200 vendor/lib64/[email protected]
349922 vendor/etc/camera/102_SummerDay.png
348152 system_ext/lib64/libncurses.so
347276 vendor/lib/[email protected]
346992 system/system/framework/oat/arm64/org.apache.http.legacy.odex
345888 system/system/lib/libjpeg.so
345888 system/system/apex/com.android.vndk.current/lib/libjpeg.so
343990 vendor/etc/camera/107_Central.png
343784 system/system/lib64/libpcap.so
343559 product/media/audio/alarms/Full_of_wonder.ogg
343440 vendor/lib64/[email protected]
343076 vendor/lib/libopus.so
342865 vendor/etc/camera/103_Fantasy.png
342456 system/system/lib64/libstagefright_bufferqueue_helper_novndk.so
341351 vendor/etc/camera/111_GreenOrange.png
340420 system/system/fonts/NotoSerifTelugu-VF.ttf
339912 vendor/lib/libwifi-hal-qcom.so
339616 vendor/lib64/libcamera2ndk_vendor.so
339512 system/system/lib/[email protected]
339512 system/system/apex/com.android.vndk.current/lib/[email protected]
338110 vendor/etc/camera/104_Meet.png
337036 vendor/lib/sensors.ssc.so
336576 vendor/lib64/[email protected]
334560 system/system/bin/secilc
334348 vendor/lib/rfsa/adsp/libscveT2T_skel.so
334288 vendor/lib64/libprekill.so
333936 system/system/lib64/libclcore_neon.bc
333528 vendor/lib64/[email protected]
333528 system/system/lib64/[email protected]
333304 vendor/lib64/lib-imsqimf.so
332576 system/system/lib64/libui.so
332576 system/system/apex/com.android.vndk.current/lib64/libui.so
331488 system/system/lib64/[email protected]
331280 system/system/lib64/netd_aidl_interface-V10-cpp.so
331248 system/system/lib64/libRS_internal.so
331248 system/system/apex/com.android.vndk.current/lib64/libRS_internal.so
330432 system/system/lib64/libclcore.bc
329563 tmp/all_filenames.txt
328384 system/system/bin/sh
328384 recovery/ramdisk/system/bin/sh
328376 vendor/bin/sh
325821 product/media/audio/ringtones/Leaps_and_bounds.ogg
325584 vendor/lib64/[email protected]
325584 system/system/lib64/[email protected]
324635 vendor/etc/camera/mibokeh_712_opencl.bin
324616 system/system/lib64/libevent.so
324616 system/system/apex/com.android.vndk.current/lib64/libevent.so
324581 vendor/etc/camera/105_WindSing.png
323998 vendor/app/CneApp/CneApp.apk
323452 system/system/lib/libclcore_debug.bc
322584 vendor/lib64/camera/com.qti.sensormodule.citrus_sunny_hi259_macro.bin
322552 vendor/lib64/camera/com.qti.sensormodule.lime_aacaf_hi259_macro.bin
322544 vendor/lib64/camera/com.qti.sensormodule.lime_sunny_hi259_macro.bin
321688 system/system/lib64/libstagefright_omx.so
320824 system_ext/priv-app/SystemUI/oat/arm64/SystemUI.vdex
320312 vendor/lib64/[email protected]
319256 system/system/lib64/libfdtrack.so
318048 vendor/lib/[email protected]
318048 system/system/lib/[email protected]
318044 vendor/lib/[email protected]
318044 system/system/lib/[email protected]
317484 vendor/lib/[email protected]
317296 vendor/lib64/libsdedrm.so
317251 system/system/usr/hyphen-data/hyph-hu.hyb
316979 recovery/dtb.img
316979 boot/dtb.img
316832 system/system/apex/com.android.media/lib64/extractors/libmp4extractor.so
316484 system/system/apex/com.android.adbd/lib/libadb_pairing_connection.so
316370 product/media/audio/ringtones/Sceptrum.ogg
315888 system/system/apex/com.android.conscrypt/lib64/libjavacrypto.so
314888 system/system/lib64/libvkjson.so
314760 system/system/lib64/[email protected]
314604 vendor/lib/libstagefright_soft_avcenc.so
313736 system_ext/framework/oat/arm64/qcrilhook.odex
311848 vendor/lib64/hw/[email protected]
311744 vendor/lib64/[email protected]
309800 vendor/lib64/[email protected]
309800 system/system/lib64/[email protected]
309260 system/system/lib/[email protected]
309260 system/system/apex/com.android.vndk.current/lib/[email protected]
308832 vendor/lib64/libsettings.so
307736 system/system/apex/com.android.art/lib64/libart-dexlayout.so
307664 vendor/etc/camera/Roboto-Thin.ttf
307528 vendor/lib64/qtibus.so
306120 vendor/lib64/libril.so
305688 vendor/lib64/[email protected]
305656 system/system/fonts/RobotoStatic-Regular.ttf
305376 vendor/lib64/[email protected]
305256 system/system/lib/libstagefright_wfd.so
305124 system/system/framework/oat/arm/org.apache.http.legacy.odex
304920 vendor/lib/[email protected]
304840 system/system/lib64/libdynamic_depth.so
304461 system/system/apex/com.android.btservices/etc/bluetooth/le_audio/audio_set_configurations.json
304140 system/system/fonts/NotoSerifDevanagari-VF.ttf
303192 vendor/lib64/camera/components/com.qti.stats.haf.so
303088 vendor/lib64/camera/components/com.qti.eisv3.so
302475 vendor/etc/camera/108_NorthernEurope.png
302008 vendor/lib64/libqmi.so
301522 system_ext/framework/com.qti.dpmframework.jar
301196 system/system/lib/libclcore_neon.bc
300208 system/system/apex/com.android.runtime/bin/crash_dump32
299792 vendor/lib64/[email protected]
299252 system/system/priv-app/InputDevices/InputDevices.apk
298880 vendor/lib64/[email protected]
298880 system/system/lib64/[email protected]
297920 vendor/lib64/[email protected]
297888 system/system/lib64/libntfs-3g.so
297820 system/system/lib/libclcore.bc
297816 vendor/lib64/libhdr_tm.so
297432 system/system/lib64/slicer.so
297040 vendor/lib64/libgoodixhwfingerprint.so
296952 system/system/framework/arm/boot-core-libart.oat
296556 system/system/apex/com.android.art/lib/libartbase.so
295865 vendor/etc/camera/110_BlackGold.png
295864 vendor/lib64/[email protected]
294952 system/system/lib/libpcre2.so
294952 system/system/apex/com.android.vndk.current/lib/libpcre2.so
294936 system/system/apex/com.android.vndk.current/lib64/libstagefright_bufferqueue_helper.so
294744 system/system/lib/libinput.so
294632 vendor/lib64/[email protected]
293516 system/system/fonts/SourceSansPro-Regular.ttf
292808 vendor/lib64/[email protected]
292736 system/system/fonts/NotoSerifBengali-VF.ttf
292512 vendor/lib/[email protected]
292408 vendor/lib64/libOmxMpeghEncSw.so
292184 system/system/apex/com.android.art/lib64/libjdwp.so
292168 system/system/lib64/[email protected]
291920 system/system/apex/com.android.media.swcodec/lib64/[email protected]
291864 system/system/fonts/SourceSansPro-SemiBold.ttf
291792 vendor/lib64/libdataitems.so
291532 system/system/apex/com.android.vndk.current/lib/libcurl.so
291344 vendor/lib64/[email protected]
291144 system/system/bin/incidentd
290916 system/system/fonts/SourceSansPro-Bold.ttf
290668 system/system/lib/libaaudio_internal.so
289896 vendor/lib/libscveObjectTracker.so