-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathall_files.txt
More file actions
6430 lines (6430 loc) · 314 KB
/
Copy pathall_files.txt
File metadata and controls
6430 lines (6430 loc) · 314 KB
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
139466280 product/priv-app/Velvet/Velvet.apk
105872774 system/system/priv-app/OneDrive_Samsung_v3/OneDrive_Samsung_v3.apk
89030092 product/priv-app/GmsCore/GmsCore.apk
80742645 product/app/Maps/Maps.apk
75652996 system/system/priv-app/SecSettings/SecSettings.apk
67872284 product/app/TrichromeLibrary/TrichromeLibrary.apk
67108864 recovery.img
67108864 boot.img
62160109 system/system/framework/framework-res.apk
57285731 product/app/Gmail2/Gmail2.apk
56463618 product/app/YouTube/YouTube.apk
54870930 bootimg/02_dtbdump_Qualcomm_Technologies,_Inc._SDM439_MTP.dtb
54079784 system/system/app/HoneyBoard/HoneyBoard.apk
48541282 system/system/apex/com.android.vndk.current.apex
47661772 system/system/framework/oat/arm/services.odex
41577148 system/system/system_ext/priv-app/SystemUI/SystemUI.apk
41532159 system/system/apex/com.android.art.release.apex
40254449 system/system/framework/framework.jar
38093933 product/priv-app/Phonesky/Phonesky.apk
36733619 bootRE/boot.elf
35377493 system/system/priv-app/SamsungMessages_12/SamsungMessages_12.apk
34470456 vendor/lib/libarcsoft_faceid.so
33402555 system/system/priv-app/GalaxyApps_OPEN/GalaxyApps_OPEN.apk
30899430 product/app/GoogleTTS/GoogleTTS.apk
27074769 system/system/framework/services.jar
26568531 system/system/priv-app/SamsungCloudClient/SamsungCloudClient.apk
25507085 system/system/priv-app/PhotoEditor_Lite/PhotoEditor_Lite.apk
25410356 system/system/apex/com.android.i18n.apex
25046172 product/app/Chrome/Chrome.apk
24776440 system/system/fonts/NotoSerifCJK-Regular.ttc
23978244 system/system/priv-app/TalkbackSE/TalkbackSE.apk
23658788 system/system/app/SamsungCalendar/SamsungCalendar.apk
23540371 system/system/app/ClockPackage/ClockPackage.apk
23254882 system/system/priv-app/TelephonyUI/TelephonyUI.apk
22881468 vendor/lib/libllvm-qcom.so
22435075 system/system/priv-app/SamsungContacts/SamsungContacts.apk
21420692 system/system/priv-app/GameHome/GameHome.apk
20970910 system/system/priv-app/SamsungGallery2018/SamsungGallery2018.apk
20505212 system/system/priv-app/SamsungBilling/SamsungBilling.apk
20332200 system/system/fonts/NotoSansCJK-Regular.ttc
18763657 system/system/priv-app/Crane/Crane.apk
18317408 system/system/priv-app/SamsungExperienceService/SamsungExperienceService.apk
18098592 system/system/priv-app/SamsungDialer/SamsungDialer.apk
17773250 system/system/app/Weather_SEP12.0/Weather_SEP12.0.apk
17346453 system/system/priv-app/Accessibility/Accessibility.apk
17049808 system/system/app/SmartCapture/SmartCapture.apk
16593384 system/system/fonts/SECCJK-Regular.ttc
16516359 system/system/app/FactoryAPP/FactoryAPP.apk
16304252 system/system/fonts/SamsungColorEmoji.ttf
15989107 system/system/priv-app/SamsungInCallUI/SamsungInCallUI.apk
15952784 vendor/lib/libarcsoft_beautyshot.so
15952784 vendor/lib/libarcsoft_beauty_performance.so
15952784 system/system/lib/libarcsoft_beautyshot.so
15952784 system/system/lib/libarcsoft_beauty_performance.so
14987558 system/system/apex/com.google.android.media.swcodec.apex
14969221 system/system/priv-app/SamsungAccount/SamsungAccount.apk
14926208 system/system/lib/libLLVM_android.so
14675184 system/system/priv-app/SamSungCamera/SamSungCamera.apk
14451944 system/system/priv-app/DynamicLockscreen/DynamicLockscreen.apk
14050590 system/system/app/HoneyMigrator/HoneyMigrator.apk
13943810 product/priv-app/GmsCore/m/independent/AndroidPlatformServices.apk
13799733 system/system/priv-app/Telecom/Telecom.apk
13208777 system/system/priv-app/SecMyFiles2020/SecMyFiles2020.apk
13022368 product/usr/srec/en-US/pumpkin.mmap
12512412 vendor/lib/hw/vulkan.pastel.so
12046971 system/system/app/HiyaService/HiyaService.apk
11935744 bootimg/00_kernel
11511274 system/system/priv-app/TouchWizHome_2017/TouchWizHome_2017.apk
11043083 recovery/kernel
11043083 boot/kernel
10830976 system/system/framework/arm/boot-framework.oat
10780637 system/system/recovery-from-boot.p
10590680 recovery/ramdisk.packed
10347057 system/system/priv-app/Fmm/Fmm.apk
10309601 system/system/saiv/imageclassification_2.5_od/db/osc_detection_reduce_4class_1branch.caffemodel
10201452 system/system/app/SamsungTTS_no_vdata/SamsungTTS_no_vdata.apk
10061496 system/system/fonts/NotoColorEmoji.ttf
9823087 system/system/priv-app/ThemeStore/ThemeStore.apk
9819988 vendor/lib/libllvm-glnext.so
9772793 system/system/priv-app/ClockPack_v60/ClockPack_v60.apk
9469546 system/system/priv-app/Discover/Discover.apk
9208896 system/system/lib/libarcsoft_singlecam_bokeh.so
9143969 vendor/lib/modules/pronto_wlan.ko
9136359 product/app/WebViewGoogle/WebViewGoogle.apk
8956367 system/system/priv-app/ManagedProvisioning/ManagedProvisioning.apk
8945071 system/system/apex/com.google.android.permission.apex
8882979 system/system/priv-app/SmartManager_v5/SmartManager_v5.apk
8804128 vendor/lib/libOpenCv.camera.samsung.so
8804128 system/system/lib/libOpenCv.camera.samsung.so
8766127 system/system/priv-app/RubinVersion29/RubinVersion29.apk
8718156 vendor/lib/libarcsoft_bokeh_basic.so
8718156 system/system/lib/libarcsoft_bokeh_basic.so
8636538 system/system/app/DAAgent/DAAgent.apk
8388608 dtbo.img
8156264 vendor/bin/thermal-engine
8053468 system/system/lib/libhwui.so
8010071 system/system/app/RcsSettings/RcsSettings.apk
8001860 system/system/lib/libArcSoftSpotlight.so
7820968 system/system/priv-app/Telecom/oat/arm/Telecom.odex
7765522 system/system/app/StickerCenter/StickerCenter.apk
7745445 system/system/priv-app/SamsungVideoPlayer/SamsungVideoPlayer.apk
7600644 system/system/priv-app/DigitalWellbeing/DigitalWellbeing.apk
7507968 system/system/framework/arm/boot-framework.art
7458775 system/system/app/Traceur/Traceur.apk
7371866 system/system/system_ext/priv-app/EmergencyInfo/EmergencyInfo.apk
7310764 system/system/apex/com.google.android.cellbroadcast.apex
7032848 system/system/system_ext/priv-app/StorageManager/StorageManager.apk
6889484 modem/image/adsp.b04
6857467 system/system/tts/lang_SMT/smt_en_US_f00.am
6831284 system/system/saiv/face/fr/SAIT_FR11.bin
6794792 dtbo/09_dtbdump_SAMSUNG_SDM439_QRD_EVB.dtb
6546024 system/system/priv-app/Finder/Finder.apk
6524920 system/system/priv-app/SmartManager_v6_DeviceSecurity/SmartManager_v6_DeviceSecurity.apk
6489121 system/system/system_ext/priv-app/SetupWizard/SetupWizard.apk
6469109 system/system/system_ext/priv-app/GoogleServicesFramework/GoogleServicesFramework.apk
6420446 system/system/priv-app/EasySetup/EasySetup.apk
6418428 system/system/lib/libsec-ims.so
6151488 system/system/priv-app/Quickboard/Quickboard.apk
6107928 system/system/lib/libmegvii_single_rt_bokeh.so
6097028 system/system/priv-app/ShareLive/ShareLive.apk
6091987 system/system/priv-app/DeviceKeystring/DeviceKeystring.apk
5934080 system/system/saiv/face/ed/model_3_parts_front_38pt.dat
5925370 system/system/app/FBAppManager_NS/FBAppManager_NS.apk
5904372 system/system/lib/libamipengine.so
5904372 system/system/lib/libArcFilterCapture.so
5850965 product/priv-app/ConfigUpdater/ConfigUpdater.apk
5793663 system/system/priv-app/PeopleStripe/PeopleStripe.apk
5762501 system/system/app/MDMApp/MDMApp.apk
5684396 product/priv-app/GoogleRestore/GoogleRestore.apk
5648277 system/system/saiv/smartcropping_2.0/db/smartcrop_saliency_train
5547293 product/priv-app/Turbo/Turbo.apk
5519396 system/system/apex/com.android.wifi.apex
5497299 system/system/priv-app/OMCAgent5/OMCAgent5.apk
5326902 system/system/saiv/imageclassification_2.5_od/db/preview_verification.caffemodel
5298079 system/system/app/Bluetooth/Bluetooth.apk
5192536 system/system/priv-app/CocktailBarService_v3.2/CocktailBarService_v3.2.apk
5191006 system/system/priv-app/DocumentsUIGoogle/DocumentsUIGoogle.apk
5163156 system/system/priv-app/FotaAgent/FotaAgent.apk
5159378 system/system/priv-app/BiometricSetting/BiometricSetting.apk
5092254 system/system/hidden/INTERNAL_SDCARD/Samsung/Music/Over_the_Horizon.mp3
5051798 system/system/app/UnifiedWFC/UnifiedWFC.apk
4996765 system/system/app/UniversalMDMClient/UniversalMDMClient.apk
4969726 system/system/framework/telephony-common.jar
4897492 system/system/lib/libpdfium.so
4805056 product/usr/srec/en-US/lstm_model.uint8.data
4794462 system/system/priv-app/SecSetupWizard_Global/SecSetupWizard_Global.apk
4754420 system/system/priv-app/TeleService/TeleService.apk
4720319 system/system/app/EmergencyModeService/EmergencyModeService.apk
4669412 system/system/priv-app/imsservice/imsservice.apk
4577828 product/usr/srec/en-US/rescoring.fst.compact
4536436 system/system/lib/libsmart_cropping.camera.samsung.so
4477868 system/system/priv-app/AppsEdgePanel_v3.2/AppsEdgePanel_v3.2.apk
4472936 system/system/lib/libmegvii_single_glrt_bokeh.so
4429089 system/system/app/ClipboardEdge/ClipboardEdge.apk
4340711 system/system/app/SoundPicker_R/SoundPicker_R.apk
4278644 system/system/lib/libarcsoft_high_dynamic_range.so
4272430 system/system/apex/com.google.android.adbd.apex
4261131 system/system/tts/lang_SMT/smt_en_US.lng
4256937 system/system/priv-app/HybridRadio/HybridRadio.apk
4104179 system/system/app/AllShareAware/AllShareAware.apk
4095040 system/system/lib/libmorpho_image_refiner_mfnr.so
4029532 system/system/lib/libpalmMobileDetectorFull.camera.samsung.so
4002281 system/system/apex/com.google.android.extservices.apex
3943836 system/system/lib/libbluetooth.so
3871091 system/system/app/SetupWizardLegalProvider/SetupWizardLegalProvider.apk
3851616 system/system/framework/oat/arm/semwifi-service.odex
3844650 system/system/app/MdxKitService/MdxKitService.apk
3805643 system/system/app/AllshareFileShare/AllshareFileShare.apk
3794040 system/system/priv-app/DressRoom/DressRoom.apk
3786458 system/system/priv-app/NetworkDiagnostic/NetworkDiagnostic.apk
3686887 system/system/apex/com.google.android.mediaprovider.apex
3667120 product/usr/srec/en-US/dnn
3645040 product/usr/srec/en-US/CLG.prewalk.fst
3603004 vendor/lib/libsec-ril-dsds.so
3602880 vendor/lib/libsec-ril.so
3529616 system/system/etc/textclassifier/actions_suggestions.en.model
3401093 system/system/priv-app/SamsungContactsProvider/SamsungContactsProvider.apk
3334904 system/system/app/CocktailQuickTool/CocktailQuickTool.apk
3326536 product/usr/srec/en-US/g2p_fst
3287464 vendor/etc/saiv/fd/fast_face_detect_model_full_angle_16_CHAR.dat
3273336 vendor/lib/libmmcamera_tuning_lookup.so
3260740 modem/image/wcnss.b06
3204655 system/system/priv-app/GooglePackageInstaller/GooglePackageInstaller.apk
3119588 system/system/priv-app/KnoxGuard/KnoxGuard.apk
3096886 system/system/apex/com.google.android.media.apex
2971516 vendor/lib/libfastcvopt.so
2948357 system/system/priv-app/SmartCallProvider/SmartCallProvider.apk
2940228 vendor/lib/libcodec2_soft_eac3dec.so
2900004 vendor/lib/libstagefright_soft_ddpdec.so
2871441 system/system/priv-app/SoundAlive_80/SoundAlive_80.apk
2828428 system/system/lib/libObjectAndSceneClassification_2.5_OD.camera.samsung.so
2771656 vendor/lib/libHMT.so
2770519 system/system/priv-app/SendHelpMessage/SendHelpMessage.apk
2768836 system/system/app/EmergencyLauncher/EmergencyLauncher.apk
2762676 product/app/GoogleCalendarSyncAdapter/GoogleCalendarSyncAdapter.apk
2750492 system/system/lib/libArcFilter.so
2742300 system/system/lib/libArcFilterPreview.so
2735964 system/system/priv-app/ImsLogger/ImsLogger.apk
2672325 system/system/apex/com.android.runtime.apex
2658544 vendor/lib/egl/libGLESv2_adreno.so
2651816 system/system/lib/libimagecodec.quram.so
2644976 system/system/app/SecurityLogAgent/SecurityLogAgent.apk
2597209 vendor/lib/modules/audio_platform.ko
2558882 system/system/framework/knoxsdk.jar
2552572 system/system/priv-app/SecCarrierProvider/SecCarrierProvider.apk
2474320 system/system/apex/com.google.android.neuralnetworks.apex
2466181 system/system/apex/com.google.android.conscrypt.apex
2449369 system/system/priv-app/SecSettingsIntelligence/SecSettingsIntelligence.apk
2442060 vendor/lib/libcodec2_soft_ac4dec.so
2396160 system/system/framework/oat/arm/services.art
2395322 system/system/app/SmartSwitchAgent/SmartSwitchAgent.apk
2384784 system/system/lib/libtextclassifier.so
2362008 vendor/lib/libCB.so
2349328 vendor/lib/libarcsoft_dehaze.so
2349328 system/system/lib/libarcsoft_dehaze.so
2310132 vendor/lib/libmmcamera2_sensor_modules.so
2309028 vendor/lib/soundfx/libswdap.so
2303204 system/system/lib/libswdap_legacy.so
2296340 vendor/lib/libstagefright_soft_ac4dec.so
2242170 product/priv-app/AndroidAutoStub/AndroidAutoStub.apk
2220354 system/system/framework/ext.jar
2189634 system/system/priv-app/SecSoundPicker/SecSoundPicker.apk
2158681 system/system/priv-app/GameOptimizingService/GameOptimizingService.apk
2137384 vendor/lib/libwvhidl.so
2130662 product/priv-app/CarrierWifi/CarrierWifi.apk
2107292 vendor/lib/libseemore.so
2107292 system/system/lib/libseemore.so
2095749 system/system/framework/semwifi-service.jar
2084083 system/system/priv-app/TaskEdgePanel_v3.2/TaskEdgePanel_v3.2.apk
2069913 system/system/priv-app/SPPPushClient/SPPPushClient.apk
2039440 system/system/lib/libvpx.so
2039096 vendor/lib/libvpx.so
2034032 vendor/lib/mediadrm/libwvdrmengine.so
2026248 modem/image/fingerpr.b02
1958732 vendor/lib/libgsl.so
1950342 system/system/priv-app/MultipleWallpaperResource/MultipleWallpaperResource.apk
1940941 system/system/priv-app/AppLock/AppLock.apk
1939344 vendor/bin/hw/wpa_supplicant
1931024 system/system/lib/libevs_float.so
1917708 system/system/lib/libtflite.so
1885144 system/system/lib/libclang_rt.asan-arm-android.so
1877231 system/system/priv-app/CallBGProvider/CallBGProvider.apk
1835336 system/system/lib/libsthmbc.so
1823076 system/system/apex/com.google.android.resolv.apex
1800540 vendor/lib/liblistensoundmodel2.so
1800520 system/system/system_ext/lib/liblistensoundmodel2.qti.so
1793003 recovery/dtbo.img
1754700 vendor/etc/selinux/vendor_sepolicy.cil
1751086 system/system/priv-app/SetupIndiaServicesTnC/SetupIndiaServicesTnC.apk
1732260 system/system/bin/iorap.cmd.compiler
1730524 vendor/lib/libarcsoft_dualcam_refocus_image.so
1689716 system/system/lib/libcameraservice.so
1681606 system/system/priv-app/LiveWallpapersPicker/LiveWallpapersPicker.apk
1675936 vendor/lib/libVkLayer_q3dtools.so
1673087 system/system/app/MAPSAgent/MAPSAgent.apk
1657857 system/system/app/EasterEgg/EasterEgg.apk
1646468 vendor/lib/libprotobuf-cpp-full-3.9.1.so
1646288 system/system/lib/libprotobuf-cpp-full.so
1625863 system/system/media/audio/ringtones/Flight.ogg
1607092 system/system/lib/libsurfaceflinger.so
1581553 system/system/priv-app/Attribution/Attribution.apk
1579764 system/system/etc/selinux/plat_sepolicy.cil
1559924 boot/ramdisk/init
1549868 vendor/bin/netmgrd
1528192 tz.img
1517020 system/system/app/VideoTrimmer/VideoTrimmer.apk
1481322 product/app/GoogleContactsSyncAdapter/GoogleContactsSyncAdapter.apk
1431772 system/system/fonts/SECCJK-Regular-Extra.ttf
1411200 vendor/etc/saiv/ld/regress_matrix_short_35pt.dat
1375843 system/system/app/SamsungOne/SamsungOne.apk
1371179 system/system/app/Stk/Stk.apk
1368022 recovery/ramdisk/sepolicy
1359496 system/system/lib/libtflite_v113_jni.so
1358028 system/system/lib/libQREngine_common.camera.samsung.so
1337585 system/system/app/Stk2/Stk2.apk
1335719 system/system/app/Foundation/Foundation.apk
1331390 product/usr/srec/en-US/lexicon.U.fst
1330304 system/system/priv-app/CMHProvider/CMHProvider.apk
1328844 system/system/app/SafetyInformation/SafetyInformation.apk
1327121 vendor/lib/modules/audio_q6.ko
1324484 vendor/lib/libmmcamera_faceproc2.so
1324484 system/system/lib/libmmcamera_faceproc2.so
1276520 recovery/ramdisk/system/bin/adbd
1276064 system/system/lib/libandroid_runtime.so
1252040 odm/etc/selinux/precompiled_sepolicy
1250542 system/system/etc/epdg_apns_conf.xml
1246512 vendor/lib/libmmcamera_faceproc.so
1246512 system/system/lib/libmmcamera_faceproc.so
1246160 vendor/lib/hw/camera.msm8937.so
1241579 system/system/apex/com.google.android.tethering.apex
1238104 system/system/fonts/SamsungKorean-Light.ttf
1235644 system/system/fonts/SamsungKorean-Bold.ttf
1232284 vendor/lib/libsavsvc.so
1232248 system/system/lib/libsavsvc.so
1224244 system/system/lib/libaplayer.so
1221982 system/system/priv-app/NSDSWebApp/NSDSWebApp.apk
1218742 system/system/etc/apns-conf.xml
1218276 system/system/fonts/SamsungKorean-Regular.ttf
1215012 modem/image/adsp.b10
1208702 system/system/apex/com.google.android.os.statsd.apex
1186376 system/system/media/audio/ringtones/Sparkle.ogg
1164525 system/system/priv-app/CIDManager/CIDManager.apk
1156477 system/system/media/audio/ringtones/Glassy_Bell.ogg
1148156 system/system/lib/libsmat.so
1146452 vendor/lib/rfsa/adsp/libfastcvadsp.so
1135932 system/system/media/audio/ringtones/Over_the_Horizon.ogg
1135476 system/system/lib/libstagefright.so
1134953 system/system/media/audio/ringtones/Interstellar.ogg
1115708 vendor/lib/hw/vulkan.adreno.so
1115032 system/system/lib/libaacwrapper.so
1103400 recovery/ramdisk/system/lib/libc.so
1103368 system/system/lib/bootstrap/libc.so
1085284 vendor/lib/libgpudataproducer.so
1077184 system/system/priv-app/StoryService/StoryService.apk
1067900 recovery/ramdisk/system/bin/linker
1067836 system/system/bin/bootstrap/linker
1067372 system/system/lib/libclcore_g.bc
1051764 system/system/priv-app/ThemeCenter/ThemeCenter.apk
1040569 system/system/priv-app/FBServices/FBServices.apk
1037192 system/system/bin/init
1037184 recovery/ramdisk/system/bin/init
1034632 system/system/priv-app/LogWriter/LogWriter.apk
1033820 recovery/ramdisk/res/images/wipe_data_sdcard_warning_text.png
1030344 system/system/priv-app/DeviceQualityAgent/DeviceQualityAgent.apk
1017236 product/usr/srec/en-US/g2p.data
996540 system/system/media/audio/ringtones/Haze.ogg
988484 system/system/bin/vold
981196 system/system/lib/libsqlite.so
970788 system/system/priv-app/KLMSAgent/KLMSAgent.apk
968152 system/system/lib/libImageScreener.camera.samsung.so
966067 system/system/apex/com.google.android.tzdata2.apex
964104 system/system/priv-app/NetworkStackGoogle/NetworkStackGoogle.apk
952746 system/system/app/NfwLocationPrivacy/NfwLocationPrivacy.apk
947896 vendor/lib/egl/libq3dtools_esx.so
947551 modem/image/vaultkee.b02
947128 system/system/lib/android.hardware.wifi.supplicant@1.0.so
943866 system/system/system_ext/framework/vendor.qti.hardware.data.iwlan-V1.0-java.jar
942644 system/system/lib/libblas.so
941408 system/system/lib/libclcore_debug_g.bc
936836 system/system/lib/android.hardware.radio@1.0.so
933828 system/system/system_ext/lib/libmmparser_lite.so
927722 system/system/saiv/face/mvfd/fast_face_detect_model_full_angle_16_CHAR_frontal_use_model_17.dat
926108 system/system/lib/libxml2.so
920872 system/system/lib/libmediaplayerservice.so
920620 system/system/lib/libchrome.so
917490 system/system/priv-app/BlueLightFilter/BlueLightFilter.apk
917232 system/system/media/audio/ringtones/Flying_Balloon.ogg
896528 system/system/lib/libbcinfo.so
896332 system/system/lib/android.hardware.audio.effect@2.0.so
894916 system/system/bin/simpleperf
893477 vendor/etc/selinux/plat_pub_versioned.cil
893444 system/system/lib/android.hardware.audio.effect@6.0.so
893328 system/system/lib/android.hardware.audio.effect@4.0.so
893272 system/system/lib/android.hardware.audio.effect@5.0.so
888660 vendor/lib/libwebrtc_audio_preprocessing.so
888514 boot/ramdisk.packed
881688 system/system/app/SimMobilityKit/SimMobilityKit.apk
880216 product/usr/srec/en-US/wordlist.syms
873673 system/system/app/PhotoTable/PhotoTable.apk
859899 system/system/priv-app/MediaProviderLegacy/MediaProviderLegacy.apk
855176 recovery/ramdisk/system/lib/libcrypto.so
853881 system/system/priv-app/SecTelephonyProvider/SecTelephonyProvider.apk
851723 system/system/media/audio/ringtones/Pick_It_Up.ogg
847547 system/system/priv-app/MtpService/MtpService.apk
846992 system/system/lib/libcrypto.so
846425 system/system/priv-app/SamsungDeviceHealthManagerService/SamsungDeviceHealthManagerService.apk
829076 system/system/priv-app/SDMConfig/SDMConfig.apk
828604 system/system/lib/libImageSequenceStabilizer.camera.samsung.so
818974 system/system/framework/voip-common.jar
813024 vendor/lib/libmmcamera_gc02m1_hs60_kg.so
812632 vendor/lib/libmmcamera_gc2375h.so
812488 vendor/lib/libmmcamera_gc2375h_kg.so
812112 vendor/lib/libmmcamera_s5k3l6.so
811672 vendor/lib/libmmcamera_ov13b10_change.so
811416 vendor/lib/libmmcamera_ov13b10_qt.so
811364 vendor/lib/libmmcamera_irs1645.so
810912 vendor/lib/libmmcamera_s5k3m2xm.so
810592 vendor/lib/libmmcamera_s5k5e9.so
810536 vendor/lib/libmmcamera_ov13b10.so
810492 vendor/lib/libmmcamera_hi556_txd.so
810480 vendor/lib/libmmcamera_hi556.so
810384 vendor/lib/libmmcamera_gc5035_ly.so
810384 vendor/lib/libmmcamera_gc5035.so
810332 vendor/lib/libmmcamera_hi1336.so
810080 vendor/lib/libmmcamera_olive_ov02a10_ofilm.so
810052 system/system/bin/iorapd
809892 vendor/lib/libmmcamera_csidtg.so
807904 system/system/lib/android.hardware.radio@1.4.so
785116 system/system/lib/libharfbuzz_ng.so
778165 system/system/app/PrintSpooler/PrintSpooler.apk
776224 vendor/lib/libarcsoft_dualcam_refocus_video.so
773552 vendor/lib/libc2d30-a3xx.so
769909 system/system/media/audio/ringtones/Dreamscape.ogg
760816 system/system/lib/libSamsungPkcs11Wrapper.secsmartcard.samsung.so
758792 vendor/lib/vendor.qti.gnss@1.1.so
757876 vendor/lib/vendor.qti.gnss@1.0.so
751816 system/system/lib/libsomxaacd.so
750656 system/system/lib/libperfetto.so
748992 system/system/lib/service.incremental.so
746646 system/system/priv-app/FaceService/FaceService.apk
745496 system/system/lib/libcharon.so
744972 system/system/lib/liberis_strongswan.so
744006 modem/image/adsp.b05
740508 system/system/lib/libstrongswan.so
738792 system/system/lib/libgui.so
738773 system/system/priv-app/ClipboardSaveService/ClipboardSaveService.apk
738704 system/system/lib/libandroid_servers.so
738532 system/system/lib/android.hardware.wifi@1.0.so
737540 system/system/lib/android.hardware.radio@1.2.so
720564 system/system/bin/mdnsd
714108 vendor/bin/hw/hostapd
711752 system/system/bin/linkerconfig
709192 system/system/fonts/NotoSansSymbols-Regular-Subsetted.ttf
704918 system/system/framework/org.apache.http.legacy.jar
699118 system/system/saiv/face/mvfd/fast_face_detect_model_full_Front_16_CHAR_tdown1.dat
699118 system/system/saiv/face/mvfd/fast_face_detect_model_full_Front_16_CHAR_right1.dat
699118 system/system/saiv/face/mvfd/fast_face_detect_model_full_Front_16_CHAR_left1.dat
698880 system/system/saiv/face/ed/model_1_pose_front_13pt.dat
697760 system/system/etc/textclassifier/textclassifier.fr.model
697584 system/system/etc/textclassifier/textclassifier.it.model
697568 system/system/etc/textclassifier/textclassifier.es.model
693824 system/system/etc/textclassifier/textclassifier.ru.model
693632 system/system/etc/textclassifier/textclassifier.nl.model
693552 system/system/etc/textclassifier/textclassifier.pt.model
693520 system/system/etc/textclassifier/textclassifier.tr.model
693520 system/system/etc/textclassifier/textclassifier.pl.model
693072 system/system/lib/libFrucSSMLib.so
692268 system/system/lib/android.hardware.radio@1.3.so
691910 vendor/etc/acdbdata/QRD/shipping/Verizen/QRD439_Verizen_Speaker_cal.acdb
691910 vendor/etc/acdbdata/QRD/shipping/CHARTER/QRD439_CHARTER_Speaker_cal.acdb
690736 system/system/lib/libagifencoder.quram.so
687504 system/system/etc/textclassifier/textclassifier.ar.model
687216 system/system/etc/textclassifier/textclassifier.ko.model
685024 system/system/lib/libaudioprocessing.so
676716 system/system/priv-app/DiagMonAgent71/DiagMonAgent71.apk
674938 system/system/system_ext/priv-app/GoogleFeedback/GoogleFeedback.apk
673732 system/system/lib/android.hardware.gnss@1.0.so
671784 vendor/bin/sigma_dut
671718 system/system/saiv/face/mvfd/fast_face_detect_model_full_Front_16_CHAR_frontal1.dat
671156 system/system/apex/com.google.android.ipsec.apex
668620 system/system/lib/libsavscmn.so
668600 vendor/lib/libsavscmn.so
667304 system/system/app/GearManagerStub/GearManagerStub.apk
666572 vendor/lib/hw/audio.primary.msm8937.so
665720 system/system/bin/tcpdump
662628 system/system/lib/android.hardware.radio@1.1.so
659193 vendor/lib/modules/audio_tfa98xx.ko
658432 modem/image/fingerpr.b03
656880 system/system/lib/liberis_charon.so
655449 vendor/lib/modules/audio_analog_cdc.ko
655360 modem/image/wcnss.b11
651780 vendor/lib/libstagefright_soft_aacdec.so
650639 system/system/app/SLocation/SLocation.apk
643144 vendor/lib/libsurround_3mic_proc.so
641872 system/system/lib/libsmsd.so
640814 system/system/framework/imsmanager.jar
630276 system/system/lib/extractors/libsecmpeg2extractor.so
629862 vendor/etc/acdbdata/QRD/shipping/RowQor/QRD439_RowQor_Speaker_cal.acdb
629862 vendor/etc/acdbdata/QRD/shipping/RowAir/QRD439_RowAir_Speaker_cal.acdb
629549 vendor/etc/acdbdata/QRD/shipping/PrcQor/QRD439_PrcQor_Speaker_cal.acdb
629534 vendor/etc/acdbdata/QRD/shipping/PrcAir/QRD439_PrcAir_Speaker_cal.acdb
629292 vendor/lib/vendor.qti.gnss@2.1.so
629284 system/system/lib/libft2.so
629145 system/system/app/sveservice/sveservice.apk
628546 vendor/etc/acdbdata/QRD/shipping/LatamAir/QRD439_LatamAir_Speaker_cal.acdb
628545 vendor/etc/acdbdata/QRD/shipping/LatamQor/QRD439_LatamQor_Speaker_cal.acdb
627168 system/system/etc/textclassifier/textclassifier.zh.model
623527 system/system/tts/lang_SMT/smt_en_US_f00.dt
623436 system/system/framework/vsimmanager.jar
622116 vendor/lib/rfsa/adsp/libfastcvadsp_skel.so
621024 system/system/etc/textclassifier/textclassifier.th.model
618212 modem/image/venus.b02
613944 system/system/bin/netd
612601 vendor/lib/modules/audio_wcd9335.ko
608913 recovery/dtb.img
608913 boot/dtb.img
606542 vendor/etc/acdbdata/QRD/QRD_Speaker_cal.acdb
603818 system/system/priv-app/SettingsBixby/SettingsBixby.apk
602750 vendor/etc/acdbdata/MTP/msm8952-tasha-snd-card/MTP_WCD9335_Speaker_cal.acdb
602087 vendor/etc/acdbdata/MTP/MTP_Speaker_cal.acdb
590348 system/system/saiv/imageclassification_2.5_od/db/OSC2.5_2ndtrained_reduce_fix.db
590043 system/system/app/CertInstaller/CertInstaller.apk
589824 system/system/framework/arm/boot-telephony-common.art
589360 vendor/lib/liblocationservice.so
589269 system/system/priv-app/OmaCP/OmaCP.apk
588432 system/system/lib/libdng_sdk.so
585536 vendor/lib/libmmcamera2_imglib_modules.so
585096 vendor/lib/libmmcamera_imglib.so
583197 system/system/etc/NOTICE.xml.gz
582212 system/system/lib/libQmageDecoder.so
580116 system/system/saiv/imageclassification_2.5_od/db/preview_verification_svm.db
577408 system/system/etc/textclassifier/textclassifier.en.model
572914 vendor/etc/acdbdata/QRD/shipping/Canada/tfa/QRD439_Canada_TFA_Speaker_cal.acdb
571514 vendor/etc/acdbdata/QRD/msm8917-tmo-snd-card/QRD_TMO_Speaker_cal.acdb
565360 system/system/bin/ld.mc
565104 vendor/lib/librs_adreno.so
565063 recovery/ramdisk/res/images/wipe_data_confirmation_text.png
562626 vendor/etc/acdbdata/QRD/msm8952-sku2-snd-card/QRD_SKU2_Speaker_cal.acdb
557973 system/system/app/SecHTMLViewer/SecHTMLViewer.apk
555192 system/system/bin/ss_conn_daemon2
554184 vendor/lib/libsavsac.so
554176 system/system/lib/libsavsac.so
553609 product/priv-app/GooglePartnerSetup/GooglePartnerSetup.apk
547880 system/system/etc/textclassifier/textclassifier.de.model
547274 vendor/etc/acdbdata/QRD/msm8940-sku6-snd-card/QRD_SKU6_Speaker_cal.acdb
547104 system/system/lib/libAudioTranscoder.so
546944 product/usr/srec/en-US/offensive_word_normalizer.mfar
543828 system/system/priv-app/SettingsProvider/oat/arm/SettingsProvider.odex
543774 system/system/framework/am.jar
541762 system/system/priv-app/SecDownloadProvider/SecDownloadProvider.apk
538544 system/system/etc/textclassifier/textclassifier.ja.model
535996 system/system/lib/libaudioflinger.so
534456 system/system/lib/libaudiopolicymanagerdefault.so
532780 vendor/lib/libmmcamera2_stats_modules.so
532680 system/system/lib/libsec_skpm.so
532448 system/system/etc/preloaded-classes
531620 vendor/lib/libmmcamera2_q3a_core.so
530832 system/system/lib/android.hardware.wifi.supplicant@1.2.so
528080 vendor/etc/saiv/gae/PmAgeModel.bin
526412 system/system/lib/android.hardware.audio@6.0.so
526164 system/system/lib/libclang_rt.ubsan_standalone-arm-android.so
523916 vendor/lib/libcodec2_sec_wmadec.so
521772 vendor/etc/acdbdata/QRD/shipping/TMobile/QRD439_TMobile_Speaker_cal.acdb
521772 vendor/etc/acdbdata/QRD/shipping/Generic/QRD439_Generic_Speaker_cal.acdb
521771 vendor/etc/acdbdata/QRD/shipping/TRF/QRD439_TRF_Speaker_cal.acdb
509948 system/system/usr/share/zoneinfo/tzdata
506176 system/system/bin/logd
505436 system/system/fonts/NotoSansEgyptianHieroglyphs-Regular.ttf
505112 system/system/media/audio/ringtones/Finding_Galaxy.ogg
504636 vendor/etc/acdbdata/QRD/shipping/ATT/QRD439_ATT_Speaker_cal.acdb
504635 vendor/etc/acdbdata/QRD/shipping/AIO/QRD439_AIO_Speaker_cal.acdb
503088 system/system/lib/libsamsung_videoengine_9_0.so
501248 system/system/saiv/face/ed/model_1_pose_right_11pt.dat
501248 system/system/saiv/face/ed/model_1_pose_left_11pt.dat
500380 system/system/fonts/NotoSansCuneiform-Regular.ttf
500212 product/usr/srec/en-US/portable_lstm
499244 system/system/system_ext/lib/vendor.qti.hardware.cvp@1.0-adapter-helper.so
495396 system/system/lib/libc++.so
495396 recovery/ramdisk/system/lib/libc++.so
489216 system/system/lib/libarcsoft_panorama.so
485762 system/system/media/audio/ui/Media_preview_Over_the_horizon.ogg
484936 system/system/lib/libfs_mgr_binder.so
481913 system/system/app/CaptivePortalLoginGoogle/CaptivePortalLoginGoogle.apk
481232 system/system/lib/libhidlbase.so
480428 vendor/bin/lowi-server
479388 vendor/bin/ipacm
479116 recovery/ramdisk/system/lib/libhidlbase.so
477448 system/system/lib/libaudioclient.so
471632 system/system/lib/libartbase.so
470912 system/system/lib/android.hardware.audio@5.0.so
470200 system/system/lib/libcodec2_vndk.so
470148 vendor/lib/libcodec2_vndk.so
469028 vendor/lib/vendor.qti.hardware.radio.ims@1.6.so
468750 system/system/media/audio/ringtones/Starburst.ogg
468284 system/system/bin/apexd
467784 system/system/lib/libbinder.so
467480 system/system/lib/android.hardware.gnss@2.0.so
467232 system/system/lib/android.hardware.audio@4.0.so
465164 vendor/lib/libril.so
464784 system/system/lib/libArcStickerEngine.so
463436 system/system/lib/libmidas_DNNInterface.camera.samsung.so
462703 vendor/etc/acdbdata/QRD/shipping/USCC/QRD439_USCC_Speaker_cal.acdb
462703 vendor/etc/acdbdata/QRD/shipping/Canada/fs/QRD439_Canada_FS_Speaker_cal.acdb
462021 product/usr/srec/en-US/config.pumpkin
461076 vendor/lib/libcapiv2svacnn.so
459908 system/system/lib/libsensorservice.so
454745 system/system/priv-app/IPService/IPService.apk
453284 system/system/lib/libmediarelayengine.so
451412 vendor/lib/libstagefright_soft_hevcdec.so
451080 system/system/lib/libsecimaging.camera.samsung.so
446500 vendor/lib/vendor.qti.hardware.cvp@1.0.so
446488 system/system/system_ext/lib/vendor.qti.hardware.cvp@1.0.so
446364 system/system/fonts/SECTibetan-Regular.ttf
445350 vendor/etc/acdbdata/QRD/shipping/Verizen/QRD439_Verizen_Handset_cal.acdb
445350 vendor/etc/acdbdata/QRD/shipping/CHARTER/QRD439_CHARTER_Handset_cal.acdb
445280 system/system/bin/iorap.cmd.maintenance
443512 system/system/bin/perfetto
442124 system/system/lib/libmmjpeg_interface.so
438908 system/system/lib/android.hardware.audio@2.0.so
437444 vendor/lib/libstagefright_soft_aacenc.so
434864 product/usr/srec/en-US/embedded_normalizer.mfar
433304 system/system/lib/libcups.so
431475 modem/image/ssu.b02
431318 vendor/etc/acdbdata/QRD/shipping/Canada/tfa/QRD439_Canada_TFA_Handset_cal.acdb
430772 system/system/priv-app/EpdgService/EpdgService.apk
430080 system/system/framework/arm/boot-knoxsdk.art
428446 system/system/framework/service-jobscheduler.jar
425120 modem/image/adsp.b07
421428 vendor/lib/libdsi_netctrl.so
417552 system/system/lib/netd_aidl_interface-V4-cpp.so
416548 system/system/lib/libsfplugin_ccodec.so
416356 system/system/lib/libmedia_jni.so
415104 system/system/lib/libvintf.so
413760 system/system/lib/libfs_mgr.so
412980 recovery/ramdisk/system/lib/libfs_mgr.so
412679 bootdts/02_dtbdump_Qualcomm_Technologies,_Inc._SDM439_MTP.dts
411730 product/usr/srec/en-US/c_fst
411558 vendor/etc/acdbdata/QRD/shipping/ATT/QRD439_ATT_Handset_cal.acdb
411557 vendor/etc/acdbdata/QRD/shipping/AIO/QRD439_AIO_Handset_cal.acdb
410865 vendor/etc/acdbdata/QRD/shipping/TMobile/QRD439_TMobile_Handset_cal.acdb
410865 vendor/etc/acdbdata/QRD/shipping/Generic/QRD439_Generic_Handset_cal.acdb
409648 recovery/ramdisk/system/bin/recovery
409076 system/system/priv-app/SamsungCalendarProvider/SamsungCalendarProvider.apk
408833 vendor/etc/acdbdata/QRD/shipping/TRF/QRD439_TRF_Handset_cal.acdb
407120 system/system/lib/libHpr_RecFace_dl_v1.0.camera.samsung.so
406463 bootdts/01_dtbdump_Qualcomm_Technologies,_Inc._MSM8953_+_PMI632_SOC.dts
406004 vendor/lib/libc2d30_bltlib.so
405465 vendor/etc/acdbdata/MTP/msm8952-tasha-snd-card/MTP_WCD9335_Handset_cal.acdb
405456 system/system/lib/libmedia.so
403861 modem/image/rsuproxy.b02
402997 system/system/priv-app/SettingsProvider/SettingsProvider.apk
402692 system/system/fonts/SECTibetan-Bold.ttf
401764 system/system/fonts/NotoSansTibetan-Regular.ttf
401548 vendor/lib/vendor.qti.hardware.radio.ims@1.5.so
399020 system/system/lib/libRSCpuRef.so
399018 system/system/framework/rcsopenapi.jar
396834 vendor/etc/acdbdata/QRD/shipping/USCC/QRD439_USCC_Handset_cal.acdb
396834 vendor/etc/acdbdata/QRD/shipping/Canada/fs/QRD439_Canada_FS_Handset_cal.acdb
395208 system/system/media/audio/ringtones/Shimmer.ogg
394656 system/system/lib/libmaet.so
394614 vendor/etc/acdbdata/MTP/MTP_Handset_cal.acdb
390396 vendor/lib/vendor.samsung.hardware.radio@2.0.so
389936 system/system/etc/ipm/auf.tflite
387602 product/usr/srec/en-US/semantics.pumpkin
384478 system/system/priv-app/wallpaper-res/wallpaper-res.apk
383764 vendor/lib/vendor.samsung.hardware.wifi.supplicant@3.0.so
382692 system/system/lib/libarcsoft_hdr_detection.so
381099 system/system/priv-app/BuiltInPrintService/BuiltInPrintService.apk
379218 vendor/etc/acdbdata/QRD/msm8917-tmo-snd-card/QRD_TMO_Handset_cal.acdb
378848 system/system/lib/libarcsoft_low_light_shot.so
377692 modem/image/adsp.b03
377436 system/system/lib/android.hardware.media.c2@1.0.so
375412 system/system/lib/libSamsungAPVoiceEngine.so
375396 vendor/lib/libFaceAuth.so
374068 system/system/bin/keystore
373120 system/system/fonts/NotoSansTibetan-Bold.ttf
372592 system/system/etc/textclassifier/lang_id.model
370964 vendor/lib/vendor.qti.hardware.radio.ims@1.4.so
370396 vendor/bin/toybox_vendor
370376 system/system/bin/toybox
370376 recovery/ramdisk/system/bin/toybox
369164 system/system/bin/curl
366758 system/system/framework/uiautomator.jar
366744 vendor/lib/vendor.qti.hardware.radio.ims@1.0.so
365588 vendor/lib/libsnaace.so
365584 system/system/lib/libsnaace.so
361874 vendor/etc/acdbdata/QRD/shipping/RowQor/QRD439_RowQor_Handset_cal.acdb
361874 vendor/etc/acdbdata/QRD/shipping/RowAir/QRD439_RowAir_Handset_cal.acdb
361874 vendor/etc/acdbdata/QRD/shipping/PrcAir/QRD439_PrcAir_Handset_cal.acdb
361873 vendor/etc/acdbdata/QRD/shipping/PrcQor/QRD439_PrcQor_Handset_cal.acdb
361108 system/system/lib/android.hardware.gnss@2.1.so
360220 vendor/lib/libcapiv2vop.so
359406 vendor/etc/acdbdata/QRD/shipping/LatamQor/QRD439_LatamQor_Handset_cal.acdb
359405 vendor/etc/acdbdata/QRD/shipping/LatamAir/QRD439_LatamAir_Handset_cal.acdb
358898 dtbodts/05_dtbdump_SAMSUNG_SDM439_QRD_DVT1.dts
358898 dtbodts/04_dtbdump_SAMSUNG_SDM439_QRD_DVT2.dts
358897 dtbodts/09_dtbdump_SAMSUNG_SDM439_QRD_EVB.dts
358897 dtbodts/08_dtbdump_SAMSUNG_SDM439_QRD_MP3.dts
358897 dtbodts/07_dtbdump_SAMSUNG_SDM439_QRD_MP4.dts
358897 dtbodts/06_dtbdump_SAMSUNG_SDM439_QRD_PVT.dts
358897 dtbodts/03_dtbdump_SAMSUNG_SDM439_QRD_EVT.dts
358897 dtbodts/02_dtbdump_SAMSUNG_SDM439_QRD_MP1.dts
358897 dtbodts/01_dtbdump_SAMSUNG_SDM439_QRD_MP2.dts
358428 system/system/lib/libFacePreProcessing.camera.samsung.so
358386 vendor/etc/acdbdata/QRD/QRD_Handset_cal.acdb
358092 system/system/lib/android.hardware.wifi.supplicant@1.1.so
358072 vendor/lib/libprotobuf-cpp-lite-3.9.1.so
358068 system/system/lib/libprotobuf-cpp-lite.so
358068 recovery/ramdisk/system/lib/libprotobuf-cpp-lite.so
357664 system/system/bin/iptables
357650 vendor/etc/acdbdata/QRD/msm8952-sku2-snd-card/QRD_SKU2_Handset_cal.acdb
353398 system/system/system_ext/priv-app/CarrierConfig/CarrierConfig.apk
350408 vendor/lib/libmmcamera2_isp_modules.so
348242 system/system/media/audio/ringtones/Bubble.ogg
347644 modem/image/widevine.b02
347332 system/system/fonts/RobotoCondensed-LightItalic.ttf
347052 system/system/fonts/Roboto-LightItalic.ttf
347012 system/system/fonts/Roboto-BoldItalic.ttf
346572 system/system/lib/libunwindstack.so
346112 vendor/etc/saiv/ld/regress_matrix_short_13pt.dat
345840 system/system/fonts/Roboto-MediumItalic.ttf
345788 system/system/fonts/Roboto-BlackItalic.ttf
345452 system/system/fonts/RobotoCondensed-BoldItalic.ttf
344820 system/system/fonts/RobotoCondensed-MediumItalic.ttf
344732 vendor/lib/libstagefright_soft_avcdec.so
344588 system/system/fonts/Roboto-ThinItalic.ttf
344519 system/system/apex/com.google.android.sdkext.apex
344024 system/system/fonts/RobotoCondensed-Italic.ttf
343276 system/system/fonts/Roboto-Italic.ttf
343092 vendor/lib/vendor.qti.hardware.radio.ims@1.3.so
342048 vendor/lib/libloc_api_v02.so
341788 system/system/lib/libpredeflicker_native.so
340508 system/system/lib/libomafldrm.so
339360 system/system/lib/libandroidfw.so
338840 recovery/ramdisk/system/lib/libunwindstack.so
338811 system/system/app/AutomationTest_FB/AutomationTest_FB.apk
336048 vendor/lib/vendor.qti.gnss@4.0.so
334704 vendor/lib/libmmcamera2_cpp_module.so
334580 vendor/lib/libopus.so
334278 system/system/apex/com.android.apex.cts.shim.apex
333868 system/system/priv-app/InputDevices/InputDevices.apk
331745 vendor/lib/modules/audio_native.ko
330960 system/system/lib/libsonivox.so
328508 vendor/lib/libfastcvadsp_stub.so
326532 vendor/apex/com.samsung.android.camera.unihal.signed.apex
324848 system/system/lib/libMattingCore.camera.samsung.so
324776 vendor/lib/vendor.qti.hardware.radio.ims@1.2.so
323452 system/system/lib/libclcore_debug.bc
322924 system/system/fonts/Roboto-Thin.ttf
322412 system/system/bin/ip
322044 system/system/fonts/Roboto-Bold.ttf
321820 system/system/fonts/Roboto-Light.ttf
321172 system/system/fonts/Roboto-Black.ttf
320932 system/system/fonts/Roboto-Medium.ttf
319960 system/system/fonts/Roboto-Regular.ttf
319780 vendor/lib/hw/android.hardware.bluetooth@1.0-impl-qti.so
318992 system/system/bin/installd
318988 system/system/fonts/RobotoCondensed-Bold.ttf
318604 system/system/lib/extractors/libsecmidiextractor.so
317850 vendor/etc/acdbdata/QRD/msm8940-sku6-snd-card/QRD_SKU6_Handset_cal.acdb
317476 system/system/lib/libjpeg.so
317344 system/system/fonts/RobotoCondensed-Medium.ttf
317251 system/system/usr/hyphen-data/hyph-hu.hyb
316532 system/system/lib/libcamera_client.so
316404 system/system/fonts/RobotoCondensed-Light.ttf
316400 system/system/lib/libstagefright_httplive_sec.so
315572 vendor/lib/vendor.samsung.hardware.radio@2.1.so
315336 system/system/fonts/RobotoCondensed-Regular.ttf
314884 system/system/lib/libaudiopolicyenginedefault.so
313296 vendor/lib/libsdmcore.so
310476 system/system/system_ext/lib/libavenhancements.so
310160 system/system/lib/libsecimaging_pdk.camera.samsung.so
307380 vendor/lib/camera.device@3.4-external-impl.so
306888 modem/image/smplap64.b02
306736 vendor/lib/libstagefright_soft_avcenc.so
304922 system/system/framework/motionrecognitionservice.jar
303992 system/system/bin/heapprofd
303776 system/system/lib/libmediacaptureservice.so
302190 bootimg/01_dtbdump_Qualcomm_Technologies,_Inc._MSM8953_+_PMI632_SOC.dtb
301196 system/system/lib/libclcore_neon.bc
300212 system/system/framework/oat/arm/ssrm.odex
298988 system/system/lib/libyuv.so
297820 system/system/lib/libclcore.bc
297118 system/system/priv-app/Shell/Shell.apk
296068 recovery/ramdisk/system/lib/librecovery_ui.so
295886 system/system/system_ext/framework/vendor.qti.data.factory-V1.0-java.jar
294557 system/system/priv-app/NetworkStackGoogle/NetworkStackGoogle-armeabi_v7a.apk
294438 system/system/media/audio/ringtones/Reflection.ogg
294108 system/system/lib/libstagefright_httplive.so
293168 system/system/framework/oat/arm/org.apache.http.legacy.odex
292836 vendor/lib/libgarden.so
289688 system/system/priv-app/SmartEpdgTestApp/SmartEpdgTestApp.apk
289392 system/system/bin/dumpstate
288692 system/system/bin/wificond
288352 vendor/lib/libscveObjectTracker.so
287512 vendor/lib/libhyper.so
285868 tmp/all_filenames.txt
285412 vendor/lib/hw/android.hardware.gnss@2.1-impl-qti.so
285075 system/system/media/audio/ringtones/Smooth_Wave.ogg
284537 system/system/etc/old-apns-conf.xml
284232 system/system/lib/android.hardware.media.omx@1.0.so
283928 vendor/lib/libsfplugin_ccodec_utils.so
283920 system/system/lib/libsfplugin_ccodec_utils.so
283132 system/system/lib/libevent.so
281756 system/system/lib/libext2fs.so
281756 recovery/ramdisk/system/lib/libext2fs.so
281364 system/system/lib/libFFTEm.so
281112 modem/image/smplap32.b02
280208 system/system/bin/gsid
279568 system/system/bin/iorap.inode2filename
279428 vendor/lib/vendor.qti.hardware.fingerprint@1.0.so
278799 vendor/bin/init.qcom.post_boot.sh
278430 system/system/framework/ims-common.jar
278284 vendor/lib/libsdmextension.so
276673 modem/image/gptest.b02
275012 system/system/lib/libmediametricsservice.so
273755 recovery/ramdisk/res/images/installing_security_text.png
273096 system/system/lib/libinputflinger.so
271976 vendor/lib/libois_lc898122.so
271976 vendor/lib/libois_bu63165.so
271868 system/system/lib/android.hardware.drm@1.2.so
271816 system/system/lib/libcurl2.so
270664 system/system/lib/libfmradio_jni.so
270576 vendor/lib/libloc_core.so
270516 system/system/lib/libmtp_samsung.so
270008 system/system/lib/libwfds.so
267304 system/system/bin/traced_perf
266720 system/system/lib/libpcre2.so
266720 recovery/ramdisk/system/lib/libpcre2.so
265924 vendor/lib/libwifi-hal.so
265532 system/system/lib/libinputreader.so
264128 vendor/lib/rfsa/adsp/libscveT2T_skel.so
264102 system/system/system_ext/framework/vendor.qti.data.factory-V2.2-java.jar
263392 system/system/lib/libcurl.so
263080 system/system/fonts/NotoSerif-BoldItalic.ttf
261924 system/system/lib/android.hardware.drm@1.0.so
261772 system/system/priv-app/VpnDialogs/VpnDialogs.apk
261588 vendor/bin/hw/android.hardware.wifi@1.0-service
261079 system/system/media/audio/ringtones/Icecubes.ogg
259720 system/system/lib/libamrnb_float.so
259421 system/system/app/SimAppDialog/SimAppDialog.apk
258037 system/system/priv-app/CSC/CSC.apk
257228 vendor/lib/libwifi-hal-qcom.so
256199 system/system/app/ImsSettings/ImsSettings.apk
256132 vendor/lib/libOmxVdec.so
254480 vendor/lib/libmmcamera2_iface_modules.so
253491 recovery/ramdisk/res/images/installing_text.png
251096 vendor/lib/libgnss.so
250828 vendor/bin/xtra-daemon
249748 system/system/fonts/NotoSerif-Italic.ttf
249600 system/system/lib/libsccore.so
248948 vendor/lib/libOmxVenc.so
248512 system/system/bin/applypatch
247892 system/system/fonts/NotoSerif-Bold.ttf
246972 vendor/etc/selinux/vendor_mac_permissions.xml
246740 system/system/fonts/NotoSerif-Regular.ttf
245268 system/system/lib/libjni_snapcammosaic.so
243638 system/system/system_ext/framework/vendor.qti.data.factory-V2.1-java.jar
242356 system/system/lib/android.hardware.graphics.composer@2.4.so
242092 system/system/app/SmartTethering/SmartTethering.apk
240268 modem/image/cmnlib64.b02
240036 system/system/lib/libpcap.so
239009 vendor/etc/sensors/sensor_def_qcomdev.conf
236388 modem/image/ssu.b03
235940 modem/image/rsuproxy.b03
235740 system/system/lib/libbluetooth_jni.so
234972 system/system/lib/vendor.samsung.hardware.camera.device@5.0.so
234960 product/usr/srec/en-US/embedded_class_denorm.mfar
234259 system/system/priv-app/serviceModeApp_FB/serviceModeApp_FB.apk
233760 system/system/lib/android.hardware.renderscript@1.0.so
233588 vendor/lib/lib_SoundAlive_3DPosition_ver202.so
233536 system/system/lib/libssl.so
231816 system/system/lib/extractors/libsecmp4extractor.so
231632 system/system/lib/libRS_internal.so
230928 vendor/firmware/dbmd8_va_fw.bin
230744 vendor/lib/liblowi_client.so
230680 system/system/lib/android.hardware.gnss@1.1.so
228884 vendor/lib/sensors.ssc.so
228297 vendor/lib/modules/audio_wcd_core.ko
227316 system/system/bin/fsck.f2fs
227316 recovery/ramdisk/system/bin/fsck.f2fs
225780 system/system/lib/vendor.samsung.hardware.gnss@2.0.so
225768 vendor/lib/vendor.samsung.hardware.gnss@2.0.so
225734 system/system/priv-app/BackupRestoreConfirmation/BackupRestoreConfirmation.apk
225709 system/system/media/audio/ringtones/Homecoming.ogg
223808 vendor/lib/soundfx/libqcreverb.so
223318 system/system/framework/android.test.mock.jar
223194 recovery/ramdisk/res/images/factory_data_reset_text.png
222688 recovery/ramdisk/system/bin/fastbootd
222208 system/system/lib/libui.so
221104 vendor/bin/cnss_diag
218776 vendor/lib/soundfx/libqcvirt.so
217260 vendor/bin/sh
217240 system/system/bin/sh
217240 recovery/ramdisk/system/bin/sh
216872 system/system/bin/tc
216596 system/system/lib/libsnamrnb.so
216592 vendor/lib/libsnamrnb.so
216556 system/system/priv-app/SettingsReceiver/SettingsReceiver.apk
216500 system/system/lib/libbcc.so
215549 system/system/priv-app/DownloadProviderUi/DownloadProviderUi.apk
215460 system/system/lib/libsnamrwb.so
215456 vendor/lib/libsnamrwb.so
214872 vendor/lib/vendor.qti.gnss@3.0.so
214296 system/system/framework/oat/arm/services.vdex
213445 system/system/priv-app/MtpApplication/MtpApplication.apk
213264 system/system/lib/libRScpp.so
212208 system/system/lib/libdynamic_depth.so
211344 vendor/lib/hw/android.hardware.audio.effect@2.0-impl.so
211220 system/system/bin/secilc
211204 modem/image/smplap64.b03
210708 vendor/lib/hw/android.hardware.audio.effect@6.0-impl.so
210644 vendor/lib/hw/android.hardware.audio.effect@4.0-impl.so
210639 system/system/media/audio/ringtones/Asteroid.ogg
210636 vendor/lib/hw/android.hardware.audio.effect@5.0-impl.so
210628 system/system/lib/libamrwb_float.so
210530 system/system/priv-app/SecMediaProvider/SecMediaProvider.apk
209956 system/system/bin/incidentd
208888 system/system/bin/sload_f2fs
208888 recovery/ramdisk/system/bin/sload_f2fs
208436 vendor/lib/hw/hwcomposer.msm8937.so
207936 modem/image/smplap32.b03
206952 system/system/lib/android.hardware.broadcastradio@1.1.so
205928 vendor/lib/libstagefright_bufferqueue_helper_vendor.so
204409 vendor/etc/acdbdata/MTP/msm8952-tasha-snd-card/MTP_WCD9335_Headset_cal.acdb
204154 system/system/framework/secsmartcard.jar
203848 vendor/lib/hw/face.default.so
202872 vendor/lib/vendor.qti.gnss@1.2.so
202016 system/system/lib/slicer.so
201712 vendor/lib/libstagefright_omx_vendor.so
201676 system/system/lib/libstagefright_omx.so
201172 vendor/lib/libadsprpc.so
201092 vendor/lib/libsdsprpc.so
201092 vendor/lib/libmdsprpc.so
201088 vendor/lib/libcdsprpc.so
201020 system/system/bin/lpm
200542 vendor/etc/acdbdata/QRD/shipping/Verizen/QRD439_Verizen_Headset_cal.acdb
200542 vendor/etc/acdbdata/QRD/shipping/CHARTER/QRD439_CHARTER_Headset_cal.acdb
200448 vendor/lib/libcodec2_hidl@1.0.so
200403 system/system/app/DRParser/DRParser.apk
200248 vendor/lib/vendor.qti.hardware.radio.ims@1.1.so
200248 system/system/system_ext/lib/vendor.qti.hardware.scve.panorama@1.0-adapter-helper.so
199187 dtbo/08_dtbdump_SAMSUNG_SDM439_QRD_MP3.dtb
199187 dtbo/07_dtbdump_SAMSUNG_SDM439_QRD_MP4.dtb
199187 dtbo/06_dtbdump_SAMSUNG_SDM439_QRD_PVT.dtb
199187 dtbo/05_dtbdump_SAMSUNG_SDM439_QRD_DVT1.dtb
199187 dtbo/04_dtbdump_SAMSUNG_SDM439_QRD_DVT2.dtb
199187 dtbo/03_dtbdump_SAMSUNG_SDM439_QRD_EVT.dtb
199187 dtbo/02_dtbdump_SAMSUNG_SDM439_QRD_MP1.dtb
199187 dtbo/01_dtbdump_SAMSUNG_SDM439_QRD_MP2.dtb
199096 vendor/lib/libengmode2lite.so
199096 recovery/ramdisk/system/lib/libengmode2lite_recovery.so
198500 system/system/lib/android.hardware.camera.device@1.0.so
197902 vendor/etc/acdbdata/QRD/shipping/Canada/tfa/QRD439_Canada_TFA_Headset_cal.acdb
195156 vendor/lib/libscveObjectSegmentation.so
194848 system/system/bin/spqr
194428 system/system/system_ext/lib/com.quicinc.cne.api@1.0.so
194329 system/system/framework/gamesdk.jar
194304 vendor/lib/libsdm-color.so
194296 system/system/bin/e2fsck
194296 recovery/ramdisk/system/bin/e2fsck
194144 vendor/lib/libmmcamera2_stats_lib.so
193956 system/system/lib/libfdtrack.so
193916 system/system/system_ext/lib/libdiag_system.so
193448 system/system/system_ext/lib/vendor.qti.hardware.display.composer@3.0.so
193184 system/system/etc/textclassifier/textclassifier.universal.model
192272 system/system/bin/trigger_perfetto
191328 modem/image/prov.b02
191254 system/system/framework/ssrm.jar
190708 vendor/lib/libqmi.so
190654 system/system/system_ext/framework/vendor.qti.data.factory-V2.0-java.jar
190388 system/system/lib/libprocessgroup.so
190388 recovery/ramdisk/system/lib/libprocessgroup.so
190124 system/system/lib/android.hardware.graphics.composer@2.3.so
189412 system/system/media/shutdown.qmg
189228 system/system/lib/libwilhelm.so
187961 vendor/lib/modules/audio_wcd_cpe.ko
187376 vendor/lib/libqmi_legacy.so
186724 system/system/lib/libinput.so
186536 vendor/lib/egl/libGLESv1_CM_adreno.so
186116 vendor/lib/camera.device@3.2-impl.so
185913 vendor/etc/acdbdata/MTP/MTP_Headset_cal.acdb
185572 system/system/lib/libSFEffect.fonteffect.samsung.so
184996 vendor/lib/libdiag.so
184768 vendor/lib/vendor.qti.hardware.radio.qtiradio@2.2.so
184764 system/system/lib/libapex_cmn.so
184264 modem/image/skm.b02
183644 modem/image/cmnlib.b02
183444 system/system/lib/libbase.so
183444 recovery/ramdisk/system/lib/libbase.so
183259 system/system/priv-app/SOAgent/SOAgent.apk
182833 product/usr/srec/en-US/hmm_symbols
182560 vendor/lib/vendor.qti.hardware.data.dynamicdds@1.0.so
182556 system/system/system_ext/lib/vendor.qti.hardware.data.dynamicdds@1.0.so
182424 system/system/bin/pppd
181868 system/system/bin/viewcompiler
181205 vendor/etc/NOTICE.xml.gz
180840 system/system/lib/android.hardware.graphics.composer@2.1.so
180242 vendor/etc/acdbdata/QRD/msm8917-tmo-snd-card/QRD_TMO_Headset_cal.acdb
180224 system/system/framework/arm/boot-voip-common.art
179492 vendor/lib/camera.device@3.6-external-impl.so
178844 system/system/bin/racoon
177792 vendor/lib/libmmjpeg.so
177360 vendor/lib/soundfx/libqcbassboost.so
177136 recovery/ramdisk/system/bin/minadbd
177044 system/system/lib/android.hardware.broadcastradio@1.0.so
176764 system/system/priv-app/FBInstaller_NS/FBInstaller_NS.apk
176708 system/system/bin/lshal
176648 system/system/lib/android.hardware.drm@1.1.so
176301 vendor/etc/acdbdata/QRD/shipping/TMobile/QRD439_TMobile_Headset_cal.acdb
176301 vendor/etc/acdbdata/QRD/shipping/Generic/QRD439_Generic_Headset_cal.acdb
176285 vendor/etc/acdbdata/QRD/shipping/TRF/QRD439_TRF_Headset_cal.acdb
176094 vendor/etc/acdbdata/QRD/shipping/ATT/QRD439_ATT_Headset_cal.acdb
176020 vendor/etc/saiv/gae/PmAgeFeatSelIdx.bin
176005 vendor/etc/acdbdata/QRD/shipping/AIO/QRD439_AIO_Headset_cal.acdb
175680 system/system/lib/vendor.samsung.hardware.biometrics.face@2.0.so
175656 vendor/lib/vendor.samsung.hardware.biometrics.face@2.0.so
175656 system/system/lib/libkeymaster_portable.so
175166 vendor/etc/acdbdata/QRD/shipping/PrcAir/QRD439_PrcAir_Headset_cal.acdb
174956 vendor/lib/vendor.qti.hardware.radio.qtiradio@2.1.so
174802 vendor/etc/acdbdata/QRD/shipping/RowQor/QRD439_RowQor_Headset_cal.acdb
174802 vendor/etc/acdbdata/QRD/shipping/RowAir/QRD439_RowAir_Headset_cal.acdb
174577 vendor/etc/acdbdata/QRD/shipping/PrcQor/QRD439_PrcQor_Headset_cal.acdb
174384 system/system/lib/android.hardware.camera.device@3.5.so
174220 vendor/lib/vendor.qti.hardware.scve.panorama@1.0.so
174220 system/system/system_ext/lib/vendor.qti.hardware.scve.panorama@1.0.so
174095 vendor/etc/acdbdata/QRD/shipping/USCC/QRD439_USCC_Headset_cal.acdb
174095 vendor/etc/acdbdata/QRD/shipping/Canada/fs/QRD439_Canada_FS_Headset_cal.acdb
173826 vendor/etc/acdbdata/QRD/msm8940-sku6-snd-card/QRD_SKU6_Headset_cal.acdb
173812 vendor/lib/libcamera2ndk_vendor.so
172816 system/system/lib/libadbd_auth.so
172816 recovery/ramdisk/system/lib/libadbd_auth.so
172306 vendor/etc/acdbdata/QRD/QRD_Headset_cal.acdb
172214 vendor/etc/acdbdata/QRD/shipping/LatamQor/QRD439_LatamQor_Headset_cal.acdb
172214 vendor/etc/acdbdata/QRD/shipping/LatamAir/QRD439_LatamAir_Headset_cal.acdb
171208 system/system/lib/libfruit.so
170577 vendor/lib/modules/audio_machine_ext_sdm450.ko
170136 system/system/lib/libmediadrm.so
169028 system/system/lib/libaaudio_internal.so
168996 system/system/lib/android.hardware.camera.device@3.6.so