-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
compiled-classes-phone
8334 lines (8334 loc) · 331 KB
/
compiled-classes-phone
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
#
# Copyright (C) 2016 The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
#
#
# Compiled-classes filter file for phones.
#
# Using a compiled-classes file filters non-mentioned classes from being compiled into
# the boot.oat file(s), reducing the size of the boot image. This is a tradeoff, as classes
# that have not been compiled must be run with the interpreter or through JIT.
#
# This file has been derived for mainline phone (and tablet) usage in concern with the
# preloaded-classes file, but is not used by default. To use this file, add a copy statement
# to your device.mk, e.g.,
#
# PRODUCT_COPY_FILES += \
# frameworks/base/compiled-classes-phone:system/etc/compiled-classes
#
android.R$styleable
android.accessibilityservice.AccessibilityServiceInfo
android.accessibilityservice.AccessibilityServiceInfo$1
android.accessibilityservice.AccessibilityServiceInfo$CapabilityInfo
android.accessibilityservice.IAccessibilityServiceClient
android.accessibilityservice.IAccessibilityServiceConnection
android.accessibilityservice.IAccessibilityServiceConnection$Stub
android.accounts.AbstractAccountAuthenticator
android.accounts.AbstractAccountAuthenticator$Transport
android.accounts.Account
android.accounts.Account$1
android.accounts.AccountAndUser
android.accounts.AccountAuthenticatorResponse
android.accounts.AccountAuthenticatorResponse$1
android.accounts.AccountManager
android.accounts.AccountManager$1
android.accounts.AccountManager$11
android.accounts.AccountManager$19
android.accounts.AccountManager$3
android.accounts.AccountManager$4
android.accounts.AccountManager$AmsTask
android.accounts.AccountManager$AmsTask$1
android.accounts.AccountManager$AmsTask$Response
android.accounts.AccountManager$BaseFutureTask
android.accounts.AccountManager$BaseFutureTask$1
android.accounts.AccountManager$BaseFutureTask$Response
android.accounts.AccountManager$Future2Task
android.accounts.AccountManager$Future2Task$1
android.accounts.AccountManagerCallback
android.accounts.AccountManagerFuture
android.accounts.AccountsException
android.accounts.AuthenticatorDescription
android.accounts.AuthenticatorDescription$1
android.accounts.AuthenticatorException
android.accounts.IAccountAuthenticator
android.accounts.IAccountAuthenticator$Stub
android.accounts.IAccountAuthenticator$Stub$Proxy
android.accounts.IAccountAuthenticatorResponse
android.accounts.IAccountAuthenticatorResponse$Stub
android.accounts.IAccountAuthenticatorResponse$Stub$Proxy
android.accounts.IAccountManager
android.accounts.IAccountManager$Stub
android.accounts.IAccountManager$Stub$Proxy
android.accounts.IAccountManagerResponse
android.accounts.IAccountManagerResponse$Stub
android.accounts.IAccountManagerResponse$Stub$Proxy
android.accounts.OnAccountsUpdateListener
android.accounts.OperationCanceledException
android.animation.AnimationHandler
android.animation.AnimationHandler$1
android.animation.AnimationHandler$2
android.animation.AnimationHandler$AnimationFrameCallback
android.animation.AnimationHandler$AnimationFrameCallbackProvider
android.animation.AnimationHandler$MyFrameCallbackProvider
android.animation.Animator
android.animation.Animator$AnimatorConstantState
android.animation.Animator$AnimatorListener
android.animation.Animator$AnimatorPauseListener
android.animation.AnimatorInflater
android.animation.AnimatorInflater$PathDataEvaluator
android.animation.AnimatorListenerAdapter
android.animation.AnimatorSet
android.animation.AnimatorSet$AnimatorSetListener
android.animation.AnimatorSet$Builder
android.animation.AnimatorSet$Node
android.animation.ArgbEvaluator
android.animation.FloatArrayEvaluator
android.animation.FloatEvaluator
android.animation.FloatKeyframeSet
android.animation.IntEvaluator
android.animation.IntKeyframeSet
android.animation.Keyframe
android.animation.Keyframe$FloatKeyframe
android.animation.Keyframe$IntKeyframe
android.animation.Keyframe$ObjectKeyframe
android.animation.KeyframeSet
android.animation.Keyframes
android.animation.Keyframes$FloatKeyframes
android.animation.Keyframes$IntKeyframes
android.animation.LayoutTransition
android.animation.LayoutTransition$1
android.animation.LayoutTransition$2
android.animation.LayoutTransition$3
android.animation.LayoutTransition$4
android.animation.LayoutTransition$5
android.animation.LayoutTransition$CleanupCallback
android.animation.LayoutTransition$TransitionListener
android.animation.ObjectAnimator
android.animation.PathKeyframes
android.animation.PathKeyframes$1
android.animation.PathKeyframes$2
android.animation.PathKeyframes$3
android.animation.PathKeyframes$4
android.animation.PathKeyframes$FloatKeyframesBase
android.animation.PathKeyframes$IntKeyframesBase
android.animation.PathKeyframes$SimpleKeyframes
android.animation.PropertyValuesHolder
android.animation.PropertyValuesHolder$FloatPropertyValuesHolder
android.animation.PropertyValuesHolder$IntPropertyValuesHolder
android.animation.RectEvaluator
android.animation.RevealAnimator
android.animation.StateListAnimator
android.animation.StateListAnimator$1
android.animation.StateListAnimator$StateListAnimatorConstantState
android.animation.StateListAnimator$Tuple
android.animation.TimeAnimator
android.animation.TimeAnimator$TimeListener
android.animation.TimeInterpolator
android.animation.TypeEvaluator
android.animation.ValueAnimator
android.animation.ValueAnimator$AnimatorUpdateListener
android.annotation.TargetApi
android.app.ActionBar
android.app.ActionBar$LayoutParams
android.app.ActionBar$OnMenuVisibilityListener
android.app.ActionBar$OnNavigationListener
android.app.ActionBar$Tab
android.app.ActionBar$TabListener
android.app.Activity
android.app.Activity$HostCallbacks
android.app.Activity$NonConfigurationInstances
android.app.ActivityManager
android.app.ActivityManager$AppTask
android.app.ActivityManager$MemoryInfo
android.app.ActivityManager$MemoryInfo$1
android.app.ActivityManager$ProcessErrorStateInfo
android.app.ActivityManager$ProcessErrorStateInfo$1
android.app.ActivityManager$RecentTaskInfo
android.app.ActivityManager$RecentTaskInfo$1
android.app.ActivityManager$RunningAppProcessInfo
android.app.ActivityManager$RunningAppProcessInfo$1
android.app.ActivityManager$RunningServiceInfo
android.app.ActivityManager$RunningServiceInfo$1
android.app.ActivityManager$RunningTaskInfo
android.app.ActivityManager$RunningTaskInfo$1
android.app.ActivityManager$StackId
android.app.ActivityManager$StackInfo
android.app.ActivityManager$StackInfo$1
android.app.ActivityManager$TaskDescription
android.app.ActivityManager$TaskDescription$1
android.app.ActivityManager$TaskThumbnail
android.app.ActivityManager$TaskThumbnail$1
android.app.ActivityManager$TaskThumbnailInfo
android.app.ActivityManager$TaskThumbnailInfo$1
android.app.ActivityManagerInternal
android.app.ActivityManagerInternal$SleepToken
android.app.ActivityManagerNative
android.app.ActivityManagerNative$1
android.app.ActivityManagerProxy
android.app.ActivityOptions
android.app.ActivityOptions$OnAnimationFinishedListener
android.app.ActivityOptions$OnAnimationStartedListener
android.app.ActivityThread
android.app.ActivityThread$1
android.app.ActivityThread$2
android.app.ActivityThread$3
android.app.ActivityThread$ActivityClientRecord
android.app.ActivityThread$ActivityConfigChangeData
android.app.ActivityThread$AppBindData
android.app.ActivityThread$ApplicationThread
android.app.ActivityThread$BindServiceData
android.app.ActivityThread$ContextCleanupInfo
android.app.ActivityThread$CreateServiceData
android.app.ActivityThread$DropBoxReporter
android.app.ActivityThread$EventLoggingReporter
android.app.ActivityThread$GcIdler
android.app.ActivityThread$H
android.app.ActivityThread$Idler
android.app.ActivityThread$NewIntentData
android.app.ActivityThread$Profiler
android.app.ActivityThread$ProviderClientRecord
android.app.ActivityThread$ProviderKey
android.app.ActivityThread$ProviderRefCount
android.app.ActivityThread$ReceiverData
android.app.ActivityThread$ResultData
android.app.ActivityThread$ServiceArgsData
android.app.ActivityThread$StopInfo
android.app.ActivityTransitionCoordinator
android.app.ActivityTransitionCoordinator$1
android.app.ActivityTransitionCoordinator$2
android.app.ActivityTransitionCoordinator$ContinueTransitionListener
android.app.ActivityTransitionCoordinator$FixedEpicenterCallback
android.app.ActivityTransitionCoordinator$SharedElementOriginalState
android.app.ActivityTransitionState
android.app.AlarmManager$AlarmClockInfo
android.app.AlarmManager$AlarmClockInfo$1
android.app.AlarmManager$ListenerWrapper
android.app.AlarmManager$OnAlarmListener
android.app.AlertDialog
android.app.AlertDialog$Builder
android.app.AppGlobals
android.app.AppOpsManager
android.app.AppOpsManager$1
android.app.AppOpsManager$OnOpChangedInternalListener
android.app.AppOpsManager$OnOpChangedListener
android.app.AppOpsManager$OpEntry
android.app.AppOpsManager$OpEntry$1
android.app.AppOpsManager$PackageOps
android.app.AppOpsManager$PackageOps$1
android.app.Application
android.app.Application$ActivityLifecycleCallbacks
android.app.ApplicationErrorReport
android.app.ApplicationErrorReport$1
android.app.ApplicationErrorReport$CrashInfo
android.app.ApplicationLoaders
android.app.ApplicationPackageManager
android.app.ApplicationPackageManager$MoveCallbackDelegate
android.app.ApplicationPackageManager$OnPermissionsChangeListenerDelegate
android.app.ApplicationPackageManager$ResourceName
android.app.ApplicationThreadNative
android.app.ApplicationThreadProxy
android.app.AutomaticZenRule
android.app.BackStackRecord
android.app.BackStackRecord$Op
android.app.BackStackRecord$TransitionState
android.app.BackStackState
android.app.BackStackState$1
android.app.BroadcastOptions
android.app.ContextImpl
android.app.ContextImpl$1
android.app.ContextImpl$ApplicationContentResolver
android.app.DatePickerDialog
android.app.DatePickerDialog$OnDateSetListener
android.app.Dialog
android.app.Dialog$-void__init__android_content_Context_context_int_themeResId_boolean_createContextThemeWrapper_LambdaImpl0
android.app.Dialog$ListenersHandler
android.app.DialogFragment
android.app.DownloadManager
android.app.DownloadManager$CursorTranslator
android.app.DownloadManager$Query
android.app.DownloadManager$Request
android.app.EnterTransitionCoordinator
android.app.EnterTransitionCoordinator$1
android.app.EnterTransitionCoordinator$4
android.app.EnterTransitionCoordinator$5
android.app.EnterTransitionCoordinator$5$1
android.app.EnterTransitionCoordinator$5$1$1
android.app.EnterTransitionCoordinator$6
android.app.EnterTransitionCoordinator$7
android.app.EnterTransitionCoordinator$8
android.app.ExitTransitionCoordinator
android.app.ExitTransitionCoordinator$10
android.app.ExitTransitionCoordinator$11
android.app.ExitTransitionCoordinator$4
android.app.Fragment
android.app.Fragment$1
android.app.Fragment$SavedState
android.app.FragmentBreadCrumbs
android.app.FragmentContainer
android.app.FragmentController
android.app.FragmentHostCallback
android.app.FragmentManager
android.app.FragmentManager$BackStackEntry
android.app.FragmentManager$OnBackStackChangedListener
android.app.FragmentManagerImpl
android.app.FragmentManagerImpl$1
android.app.FragmentManagerImpl$2
android.app.FragmentManagerImpl$3
android.app.FragmentManagerImpl$4
android.app.FragmentManagerImpl$5
android.app.FragmentManagerImpl$AnimateOnHWLayerIfNeededListener
android.app.FragmentManagerState
android.app.FragmentManagerState$1
android.app.FragmentState
android.app.FragmentState$1
android.app.FragmentTransaction
android.app.IActivityContainer
android.app.IActivityContainer$Stub
android.app.IActivityContainerCallback
android.app.IActivityController
android.app.IActivityManager
android.app.IActivityManager$ContentProviderHolder
android.app.IActivityManager$ContentProviderHolder$1
android.app.IActivityManager$WaitResult
android.app.IAlarmCompleteListener
android.app.IAlarmCompleteListener$Stub
android.app.IAlarmListener
android.app.IAlarmListener$Stub
android.app.IAlarmManager
android.app.IAlarmManager$Stub
android.app.IAlarmManager$Stub$Proxy
android.app.IAppTask
android.app.IAppTask$Stub
android.app.IAppTask$Stub$Proxy
android.app.IApplicationThread
android.app.IInstrumentationWatcher
android.app.IInstrumentationWatcher$Stub
android.app.INotificationManager
android.app.INotificationManager$Stub
android.app.INotificationManager$Stub$Proxy
android.app.IProcessObserver
android.app.IProcessObserver$Stub
android.app.IProcessObserver$Stub$Proxy
android.app.ISearchManager
android.app.ISearchManager$Stub
android.app.ISearchManager$Stub$Proxy
android.app.IServiceConnection
android.app.IServiceConnection$Stub
android.app.IServiceConnection$Stub$Proxy
android.app.IStopUserCallback
android.app.ITaskStackListener
android.app.ITaskStackListener$Stub
android.app.ITaskStackListener$Stub$Proxy
android.app.ITransientNotification
android.app.ITransientNotification$Stub
android.app.ITransientNotification$Stub$Proxy
android.app.IUiAutomationConnection
android.app.IUiAutomationConnection$Stub
android.app.IUiModeManager
android.app.IUiModeManager$Stub
android.app.IUiModeManager$Stub$Proxy
android.app.IUidObserver
android.app.IUidObserver$Stub
android.app.IUserSwitchObserver
android.app.IUserSwitchObserver$Stub
android.app.IUserSwitchObserver$Stub$Proxy
android.app.IWallpaperManager
android.app.IWallpaperManager$Stub
android.app.IWallpaperManager$Stub$Proxy
android.app.IWallpaperManagerCallback
android.app.IWallpaperManagerCallback$Stub
android.app.IWallpaperManagerCallback$Stub$Proxy
android.app.Instrumentation
android.app.IntentReceiverLeaked
android.app.IntentService
android.app.IntentService$ServiceHandler
android.app.JobSchedulerImpl
android.app.KeyguardManager
android.app.ListActivity
android.app.ListActivity$1
android.app.ListActivity$2
android.app.ListFragment
android.app.ListFragment$1
android.app.ListFragment$2
android.app.LoadedApk
android.app.LoadedApk$ReceiverDispatcher
android.app.LoadedApk$ReceiverDispatcher$Args
android.app.LoadedApk$ReceiverDispatcher$InnerReceiver
android.app.LoadedApk$ServiceDispatcher
android.app.LoadedApk$ServiceDispatcher$ConnectionInfo
android.app.LoadedApk$ServiceDispatcher$DeathMonitor
android.app.LoadedApk$ServiceDispatcher$InnerConnection
android.app.LoadedApk$ServiceDispatcher$RunConnection
android.app.LoadedApk$WarningContextClassLoader
android.app.LoaderManager
android.app.LoaderManager$LoaderCallbacks
android.app.LoaderManagerImpl
android.app.LoaderManagerImpl$LoaderInfo
android.app.NativeActivity
android.app.Notification
android.app.Notification$1
android.app.Notification$Action
android.app.Notification$Action$1
android.app.Notification$Action$Builder
android.app.Notification$BigPictureStyle
android.app.Notification$BigTextStyle
android.app.Notification$Builder
android.app.Notification$BuilderRemoteViews
android.app.Notification$DecoratedCustomViewStyle
android.app.Notification$DecoratedMediaCustomViewStyle
android.app.Notification$Extender
android.app.Notification$InboxStyle
android.app.Notification$MediaStyle
android.app.Notification$MessagingStyle
android.app.Notification$Style
android.app.Notification$WearableExtender
android.app.NotificationManager
android.app.NotificationManager$Policy
android.app.NotificationManager$Policy$1
android.app.OnActivityPausedListener
android.app.PackageDeleteObserver
android.app.PackageDeleteObserver$1
android.app.PackageInstallObserver
android.app.PackageInstallObserver$1
android.app.PendingIntent
android.app.PendingIntent$1
android.app.PendingIntent$CanceledException
android.app.PendingIntent$FinishedDispatcher
android.app.PendingIntent$OnFinished
android.app.Presentation
android.app.ProfilerInfo
android.app.ProgressDialog
android.app.QueuedWork
android.app.ReceiverRestrictedContext
android.app.RemoteInput
android.app.RemoteInput$1
android.app.RemoteInput$Builder
android.app.ResourcesManager
android.app.ResourcesManager$1
android.app.ResourcesManager$ActivityResources
android.app.ResultInfo
android.app.ResultInfo$1
android.app.SearchableInfo
android.app.SearchableInfo$1
android.app.Service
android.app.ServiceConnectionLeaked
android.app.SharedElementCallback
android.app.SharedElementCallback$1
android.app.SharedElementCallback$OnSharedElementsReadyListener
android.app.SharedPreferencesImpl
android.app.SharedPreferencesImpl$1
android.app.SharedPreferencesImpl$2
android.app.SharedPreferencesImpl$EditorImpl
android.app.SharedPreferencesImpl$EditorImpl$1
android.app.SharedPreferencesImpl$EditorImpl$2
android.app.SharedPreferencesImpl$EditorImpl$3
android.app.SharedPreferencesImpl$MemoryCommitResult
android.app.StatusBarManager
android.app.SynchronousUserSwitchObserver
android.app.SystemServiceRegistry
android.app.SystemServiceRegistry$1
android.app.SystemServiceRegistry$10
android.app.SystemServiceRegistry$11
android.app.SystemServiceRegistry$12
android.app.SystemServiceRegistry$13
android.app.SystemServiceRegistry$14
android.app.SystemServiceRegistry$15
android.app.SystemServiceRegistry$16
android.app.SystemServiceRegistry$17
android.app.SystemServiceRegistry$18
android.app.SystemServiceRegistry$19
android.app.SystemServiceRegistry$2
android.app.SystemServiceRegistry$20
android.app.SystemServiceRegistry$21
android.app.SystemServiceRegistry$22
android.app.SystemServiceRegistry$23
android.app.SystemServiceRegistry$24
android.app.SystemServiceRegistry$25
android.app.SystemServiceRegistry$26
android.app.SystemServiceRegistry$27
android.app.SystemServiceRegistry$28
android.app.SystemServiceRegistry$29
android.app.SystemServiceRegistry$3
android.app.SystemServiceRegistry$30
android.app.SystemServiceRegistry$31
android.app.SystemServiceRegistry$32
android.app.SystemServiceRegistry$33
android.app.SystemServiceRegistry$34
android.app.SystemServiceRegistry$35
android.app.SystemServiceRegistry$36
android.app.SystemServiceRegistry$37
android.app.SystemServiceRegistry$38
android.app.SystemServiceRegistry$39
android.app.SystemServiceRegistry$4
android.app.SystemServiceRegistry$40
android.app.SystemServiceRegistry$41
android.app.SystemServiceRegistry$42
android.app.SystemServiceRegistry$43
android.app.SystemServiceRegistry$44
android.app.SystemServiceRegistry$45
android.app.SystemServiceRegistry$46
android.app.SystemServiceRegistry$47
android.app.SystemServiceRegistry$48
android.app.SystemServiceRegistry$49
android.app.SystemServiceRegistry$5
android.app.SystemServiceRegistry$50
android.app.SystemServiceRegistry$51
android.app.SystemServiceRegistry$52
android.app.SystemServiceRegistry$53
android.app.SystemServiceRegistry$54
android.app.SystemServiceRegistry$55
android.app.SystemServiceRegistry$56
android.app.SystemServiceRegistry$57
android.app.SystemServiceRegistry$58
android.app.SystemServiceRegistry$59
android.app.SystemServiceRegistry$6
android.app.SystemServiceRegistry$60
android.app.SystemServiceRegistry$61
android.app.SystemServiceRegistry$62
android.app.SystemServiceRegistry$63
android.app.SystemServiceRegistry$64
android.app.SystemServiceRegistry$65
android.app.SystemServiceRegistry$66
android.app.SystemServiceRegistry$67
android.app.SystemServiceRegistry$68
android.app.SystemServiceRegistry$69
android.app.SystemServiceRegistry$7
android.app.SystemServiceRegistry$70
android.app.SystemServiceRegistry$71
android.app.SystemServiceRegistry$72
android.app.SystemServiceRegistry$73
android.app.SystemServiceRegistry$74
android.app.SystemServiceRegistry$8
android.app.SystemServiceRegistry$9
android.app.SystemServiceRegistry$CachedServiceFetcher
android.app.SystemServiceRegistry$ServiceFetcher
android.app.SystemServiceRegistry$StaticApplicationContextServiceFetcher
android.app.SystemServiceRegistry$StaticServiceFetcher
android.app.TaskStackBuilder
android.app.TimePickerDialog
android.app.TimePickerDialog$OnTimeSetListener
android.app.UiModeManager
android.app.WallpaperInfo
android.app.WallpaperManager
android.app.WallpaperManager$Globals
android.app.admin.DeviceAdminInfo
android.app.admin.DeviceAdminInfo$1
android.app.admin.DeviceAdminInfo$PolicyInfo
android.app.admin.DevicePolicyManager
android.app.admin.DevicePolicyManagerInternal
android.app.admin.DevicePolicyManagerInternal$OnCrossProfileWidgetProvidersChangeListener
android.app.admin.IDevicePolicyManager
android.app.admin.IDevicePolicyManager$Stub
android.app.admin.IDevicePolicyManager$Stub$Proxy
android.app.admin.SecurityLog
android.app.admin.SecurityLog$SecurityEvent
android.app.admin.SecurityLog$SecurityEvent$1
android.app.admin.SystemUpdatePolicy
android.app.admin.SystemUpdatePolicy$1
android.app.assist.AssistContent
android.app.assist.AssistStructure
android.app.backup.BackupAgent
android.app.backup.BackupAgentHelper
android.app.backup.BackupDataInput
android.app.backup.BackupDataInput$EntityHeader
android.app.backup.BackupDataOutput
android.app.backup.BackupHelper
android.app.backup.BackupHelperDispatcher
android.app.backup.BackupHelperDispatcher$Header
android.app.backup.BackupManager
android.app.backup.BackupTransport
android.app.backup.BackupTransport$TransportImpl
android.app.backup.FileBackupHelperBase
android.app.backup.FullBackup
android.app.backup.FullBackupDataOutput
android.app.backup.IBackupManager
android.app.backup.IBackupManager$Stub
android.app.backup.IBackupManager$Stub$Proxy
android.app.backup.IBackupObserver
android.app.backup.IFullBackupRestoreObserver
android.app.backup.IRestoreSession
android.app.backup.RestoreDescription
android.app.backup.RestoreSet
android.app.backup.SharedPreferencesBackupHelper
android.app.job.IJobCallback
android.app.job.IJobCallback$Stub
android.app.job.IJobCallback$Stub$Proxy
android.app.job.IJobScheduler
android.app.job.IJobScheduler$Stub
android.app.job.IJobScheduler$Stub$Proxy
android.app.job.IJobService
android.app.job.IJobService$Stub
android.app.job.IJobService$Stub$Proxy
android.app.job.JobInfo
android.app.job.JobInfo$1
android.app.job.JobInfo$Builder
android.app.job.JobInfo$TriggerContentUri
android.app.job.JobInfo$TriggerContentUri$1
android.app.job.JobParameters
android.app.job.JobParameters$1
android.app.job.JobScheduler
android.app.job.JobService
android.app.job.JobService$JobHandler
android.app.job.JobService$JobInterface
android.app.trust.IStrongAuthTracker
android.app.trust.IStrongAuthTracker$Stub
android.app.trust.IStrongAuthTracker$Stub$Proxy
android.app.trust.ITrustListener
android.app.trust.ITrustListener$Stub
android.app.trust.ITrustListener$Stub$Proxy
android.app.trust.ITrustManager
android.app.trust.ITrustManager$Stub
android.app.trust.ITrustManager$Stub$Proxy
android.app.trust.TrustManager
android.app.trust.TrustManager$1
android.app.trust.TrustManager$2
android.app.trust.TrustManager$TrustListener
android.app.usage.ConfigurationStats
android.app.usage.ConfigurationStats$1
android.app.usage.IUsageStatsManager
android.app.usage.IUsageStatsManager$Stub
android.app.usage.IUsageStatsManager$Stub$Proxy
android.app.usage.NetworkStatsManager
android.app.usage.TimeSparseArray
android.app.usage.UsageEvents
android.app.usage.UsageEvents$1
android.app.usage.UsageEvents$Event
android.app.usage.UsageStats
android.app.usage.UsageStats$1
android.app.usage.UsageStatsManager
android.app.usage.UsageStatsManagerInternal
android.app.usage.UsageStatsManagerInternal$AppIdleStateChangeListener
android.appwidget.AppWidgetHost
android.appwidget.AppWidgetHost$Callbacks
android.appwidget.AppWidgetHost$UpdateHandler
android.appwidget.AppWidgetHostView
android.appwidget.AppWidgetHostView$1
android.appwidget.AppWidgetManager
android.appwidget.AppWidgetProvider
android.appwidget.AppWidgetProviderInfo
android.appwidget.AppWidgetProviderInfo$1
android.bluetooth.BluetoothA2dp
android.bluetooth.BluetoothA2dp$1
android.bluetooth.BluetoothA2dp$2
android.bluetooth.BluetoothActivityEnergyInfo
android.bluetooth.BluetoothActivityEnergyInfo$1
android.bluetooth.BluetoothAdapter
android.bluetooth.BluetoothAdapter$1
android.bluetooth.BluetoothAdapter$2
android.bluetooth.BluetoothAdapter$BluetoothStateChangeCallback
android.bluetooth.BluetoothAdapter$LeScanCallback
android.bluetooth.BluetoothAudioConfig
android.bluetooth.BluetoothClass
android.bluetooth.BluetoothClass$1
android.bluetooth.BluetoothDevice
android.bluetooth.BluetoothDevice$1
android.bluetooth.BluetoothDevice$2
android.bluetooth.BluetoothGattCallbackWrapper
android.bluetooth.BluetoothGattCharacteristic
android.bluetooth.BluetoothGattDescriptor
android.bluetooth.BluetoothGattService
android.bluetooth.BluetoothHeadset
android.bluetooth.BluetoothHeadset$1
android.bluetooth.BluetoothHeadset$2
android.bluetooth.BluetoothHeadset$3
android.bluetooth.BluetoothHealthAppConfiguration
android.bluetooth.BluetoothInputDevice
android.bluetooth.BluetoothInputDevice$1
android.bluetooth.BluetoothInputDevice$2
android.bluetooth.BluetoothInputStream
android.bluetooth.BluetoothManager
android.bluetooth.BluetoothMap
android.bluetooth.BluetoothMap$1
android.bluetooth.BluetoothMap$2
android.bluetooth.BluetoothOutputStream
android.bluetooth.BluetoothPan
android.bluetooth.BluetoothPan$1
android.bluetooth.BluetoothPan$2
android.bluetooth.BluetoothPbap
android.bluetooth.BluetoothPbap$1
android.bluetooth.BluetoothPbap$2
android.bluetooth.BluetoothPbap$ServiceListener
android.bluetooth.BluetoothProfile
android.bluetooth.BluetoothProfile$ServiceListener
android.bluetooth.BluetoothServerSocket
android.bluetooth.BluetoothSocket
android.bluetooth.BluetoothSocket$SocketState
android.bluetooth.BluetoothUuid
android.bluetooth.IBluetooth
android.bluetooth.IBluetooth$Stub
android.bluetooth.IBluetooth$Stub$Proxy
android.bluetooth.IBluetoothA2dp
android.bluetooth.IBluetoothA2dp$Stub
android.bluetooth.IBluetoothA2dp$Stub$Proxy
android.bluetooth.IBluetoothA2dpSink
android.bluetooth.IBluetoothA2dpSink$Stub
android.bluetooth.IBluetoothCallback
android.bluetooth.IBluetoothCallback$Stub
android.bluetooth.IBluetoothCallback$Stub$Proxy
android.bluetooth.IBluetoothGatt
android.bluetooth.IBluetoothGatt$Stub
android.bluetooth.IBluetoothGatt$Stub$Proxy
android.bluetooth.IBluetoothGattCallback
android.bluetooth.IBluetoothGattCallback$Stub
android.bluetooth.IBluetoothGattCallback$Stub$Proxy
android.bluetooth.IBluetoothGattServerCallback
android.bluetooth.IBluetoothHeadset
android.bluetooth.IBluetoothHeadset$Stub
android.bluetooth.IBluetoothHeadset$Stub$Proxy
android.bluetooth.IBluetoothHeadsetClient
android.bluetooth.IBluetoothHeadsetClient$Stub
android.bluetooth.IBluetoothHeadsetPhone
android.bluetooth.IBluetoothHeadsetPhone$Stub
android.bluetooth.IBluetoothHeadsetPhone$Stub$Proxy
android.bluetooth.IBluetoothHealth
android.bluetooth.IBluetoothHealth$Stub
android.bluetooth.IBluetoothHealthCallback
android.bluetooth.IBluetoothInputDevice
android.bluetooth.IBluetoothInputDevice$Stub
android.bluetooth.IBluetoothInputDevice$Stub$Proxy
android.bluetooth.IBluetoothManager
android.bluetooth.IBluetoothManager$Stub
android.bluetooth.IBluetoothManager$Stub$Proxy
android.bluetooth.IBluetoothManagerCallback
android.bluetooth.IBluetoothManagerCallback$Stub
android.bluetooth.IBluetoothManagerCallback$Stub$Proxy
android.bluetooth.IBluetoothMap
android.bluetooth.IBluetoothMap$Stub
android.bluetooth.IBluetoothMap$Stub$Proxy
android.bluetooth.IBluetoothPan
android.bluetooth.IBluetoothPan$Stub
android.bluetooth.IBluetoothPan$Stub$Proxy
android.bluetooth.IBluetoothPbap
android.bluetooth.IBluetoothPbap$Stub
android.bluetooth.IBluetoothPbap$Stub$Proxy
android.bluetooth.IBluetoothPbapClient
android.bluetooth.IBluetoothPbapClient$Stub
android.bluetooth.IBluetoothProfileServiceConnection
android.bluetooth.IBluetoothProfileServiceConnection$Stub
android.bluetooth.IBluetoothProfileServiceConnection$Stub$Proxy
android.bluetooth.IBluetoothSap
android.bluetooth.IBluetoothSap$Stub
android.bluetooth.IBluetoothStateChangeCallback
android.bluetooth.IBluetoothStateChangeCallback$Stub
android.bluetooth.IBluetoothStateChangeCallback$Stub$Proxy
android.bluetooth.OobData
android.bluetooth.SdpMasRecord
android.bluetooth.SdpMnsRecord
android.bluetooth.SdpOppOpsRecord
android.bluetooth.SdpPseRecord
android.bluetooth.SdpRecord
android.bluetooth.SdpSapsRecord
android.bluetooth.UidTraffic
android.bluetooth.UidTraffic$1
android.bluetooth.le.AdvertiseData
android.bluetooth.le.AdvertiseSettings
android.bluetooth.le.BluetoothLeAdvertiser
android.bluetooth.le.BluetoothLeScanner
android.bluetooth.le.BluetoothLeScanner$BleScanCallbackWrapper
android.bluetooth.le.BluetoothLeScanner$BleScanCallbackWrapper$1
android.bluetooth.le.BluetoothLeUtils
android.bluetooth.le.ScanCallback
android.bluetooth.le.ScanFilter
android.bluetooth.le.ScanFilter$1
android.bluetooth.le.ScanFilter$Builder
android.bluetooth.le.ScanRecord
android.bluetooth.le.ScanResult
android.bluetooth.le.ScanResult$1
android.bluetooth.le.ScanSettings
android.bluetooth.le.ScanSettings$1
android.bluetooth.le.ScanSettings$Builder
android.content.AbstractThreadedSyncAdapter
android.content.AbstractThreadedSyncAdapter$ISyncAdapterImpl
android.content.AbstractThreadedSyncAdapter$SyncThread
android.content.ActivityNotFoundException
android.content.AsyncQueryHandler
android.content.AsyncQueryHandler$WorkerArgs
android.content.AsyncQueryHandler$WorkerHandler
android.content.AsyncTaskLoader
android.content.AsyncTaskLoader$LoadTask
android.content.BroadcastReceiver
android.content.BroadcastReceiver$PendingResult
android.content.BroadcastReceiver$PendingResult$1
android.content.ClipData
android.content.ClipData$1
android.content.ClipData$Item
android.content.ClipDescription
android.content.ClipDescription$1
android.content.ClipboardManager
android.content.ClipboardManager$1
android.content.ClipboardManager$2
android.content.ClipboardManager$OnPrimaryClipChangedListener
android.content.ComponentCallbacks
android.content.ComponentCallbacks2
android.content.ComponentName
android.content.ComponentName$1
android.content.ContentProvider
android.content.ContentProvider$PipeDataWriter
android.content.ContentProvider$Transport
android.content.ContentProviderClient
android.content.ContentProviderClient$CursorWrapperInner
android.content.ContentProviderNative
android.content.ContentProviderOperation
android.content.ContentProviderOperation$1
android.content.ContentProviderOperation$Builder
android.content.ContentProviderProxy
android.content.ContentProviderResult
android.content.ContentProviderResult$1
android.content.ContentQueryMap
android.content.ContentResolver
android.content.ContentResolver$1
android.content.ContentResolver$CursorWrapperInner
android.content.ContentResolver$OpenResourceIdResult
android.content.ContentResolver$ParcelFileDescriptorInner
android.content.ContentUris
android.content.ContentValues
android.content.ContentValues$1
android.content.Context
android.content.ContextWrapper
android.content.CursorEntityIterator
android.content.CursorLoader
android.content.DialogInterface
android.content.DialogInterface$OnCancelListener
android.content.DialogInterface$OnClickListener
android.content.DialogInterface$OnDismissListener
android.content.DialogInterface$OnKeyListener
android.content.DialogInterface$OnMultiChoiceClickListener
android.content.DialogInterface$OnShowListener
android.content.Entity
android.content.Entity$NamedContentValues
android.content.EntityIterator
android.content.IClipboard
android.content.IClipboard$Stub
android.content.IClipboard$Stub$Proxy
android.content.IContentProvider
android.content.IContentService
android.content.IContentService$Stub
android.content.IContentService$Stub$Proxy
android.content.IIntentReceiver
android.content.IIntentReceiver$Stub
android.content.IIntentReceiver$Stub$Proxy
android.content.IIntentSender
android.content.IIntentSender$Stub
android.content.IIntentSender$Stub$Proxy
android.content.IOnPrimaryClipChangedListener
android.content.IOnPrimaryClipChangedListener$Stub
android.content.IRestrictionsManager
android.content.IRestrictionsManager$Stub
android.content.IRestrictionsManager$Stub$Proxy
android.content.ISyncAdapter
android.content.ISyncAdapter$Stub
android.content.ISyncAdapter$Stub$Proxy
android.content.ISyncContext
android.content.ISyncContext$Stub
android.content.ISyncContext$Stub$Proxy
android.content.ISyncStatusObserver
android.content.ISyncStatusObserver$Stub
android.content.ISyncStatusObserver$Stub$Proxy
android.content.Intent
android.content.Intent$1
android.content.Intent$FilterComparison
android.content.Intent$ShortcutIconResource
android.content.Intent$ShortcutIconResource$1
android.content.IntentFilter
android.content.IntentFilter$1
android.content.IntentFilter$AuthorityEntry
android.content.IntentFilter$MalformedMimeTypeException
android.content.IntentSender
android.content.IntentSender$1
android.content.IntentSender$SendIntentException
android.content.Loader
android.content.Loader$ForceLoadContentObserver
android.content.Loader$OnLoadCanceledListener
android.content.Loader$OnLoadCompleteListener
android.content.MutableContextWrapper
android.content.OperationApplicationException
android.content.PeriodicSync
android.content.PeriodicSync$1
android.content.ReceiverCallNotAllowedException
android.content.RestrictionEntry
android.content.RestrictionEntry$1
android.content.RestrictionsManager
android.content.SearchRecentSuggestionsProvider
android.content.SearchRecentSuggestionsProvider$DatabaseHelper
android.content.ServiceConnection
android.content.SharedPreferences
android.content.SharedPreferences$Editor
android.content.SharedPreferences$OnSharedPreferenceChangeListener
android.content.SyncAdapterType
android.content.SyncAdapterType$1
android.content.SyncAdaptersCache
android.content.SyncAdaptersCache$MySerializer
android.content.SyncContext
android.content.SyncInfo
android.content.SyncInfo$1
android.content.SyncRequest
android.content.SyncRequest$1
android.content.SyncRequest$Builder
android.content.SyncResult
android.content.SyncResult$1
android.content.SyncStats
android.content.SyncStats$1
android.content.SyncStatusInfo
android.content.SyncStatusInfo$1
android.content.SyncStatusObserver
android.content.UndoManager
android.content.UndoManager$UndoState
android.content.UndoOperation
android.content.UndoOwner
android.content.UriMatcher
android.content.UriPermission
android.content.pm.ActivityInfo
android.content.pm.ActivityInfo$1
android.content.pm.ApplicationInfo
android.content.pm.ApplicationInfo$1
android.content.pm.ComponentInfo
android.content.pm.ConfigurationInfo
android.content.pm.ConfigurationInfo$1
android.content.pm.FeatureGroupInfo
android.content.pm.FeatureGroupInfo$1
android.content.pm.FeatureInfo
android.content.pm.FeatureInfo$1
android.content.pm.ILauncherApps
android.content.pm.ILauncherApps$Stub
android.content.pm.ILauncherApps$Stub$Proxy
android.content.pm.IOnAppsChangedListener
android.content.pm.IOnAppsChangedListener$Stub
android.content.pm.IOnAppsChangedListener$Stub$Proxy
android.content.pm.IOnPermissionsChangeListener
android.content.pm.IOnPermissionsChangeListener$Stub
android.content.pm.IOnPermissionsChangeListener$Stub$Proxy
android.content.pm.IOtaDexopt
android.content.pm.IOtaDexopt$Stub
android.content.pm.IPackageDataObserver
android.content.pm.IPackageDataObserver$Stub
android.content.pm.IPackageDataObserver$Stub$Proxy
android.content.pm.IPackageDeleteObserver
android.content.pm.IPackageDeleteObserver$Stub
android.content.pm.IPackageDeleteObserver2
android.content.pm.IPackageDeleteObserver2$Stub
android.content.pm.IPackageInstallObserver
android.content.pm.IPackageInstallObserver$Stub
android.content.pm.IPackageInstallObserver2
android.content.pm.IPackageInstallObserver2$Stub
android.content.pm.IPackageInstaller
android.content.pm.IPackageInstaller$Stub
android.content.pm.IPackageInstaller$Stub$Proxy
android.content.pm.IPackageInstallerCallback
android.content.pm.IPackageInstallerCallback$Stub
android.content.pm.IPackageInstallerCallback$Stub$Proxy
android.content.pm.IPackageInstallerSession
android.content.pm.IPackageInstallerSession$Stub
android.content.pm.IPackageInstallerSession$Stub$Proxy
android.content.pm.IPackageManager
android.content.pm.IPackageManager$Stub
android.content.pm.IPackageManager$Stub$Proxy
android.content.pm.IPackageMoveObserver
android.content.pm.IPackageMoveObserver$Stub
android.content.pm.IPackageMoveObserver$Stub$Proxy
android.content.pm.IPackageStatsObserver
android.content.pm.IPackageStatsObserver$Stub
android.content.pm.IPackageStatsObserver$Stub$Proxy
android.content.pm.IShortcutService
android.content.pm.IShortcutService$Stub
android.content.pm.InstrumentationInfo
android.content.pm.InstrumentationInfo$1
android.content.pm.IntentFilterVerificationInfo
android.content.pm.IntentFilterVerificationInfo$1
android.content.pm.KeySet
android.content.pm.LabeledIntent
android.content.pm.LauncherActivityInfo
android.content.pm.LauncherApps
android.content.pm.LauncherApps$1
android.content.pm.LauncherApps$Callback
android.content.pm.LauncherApps$CallbackMessageHandler
android.content.pm.LauncherApps$CallbackMessageHandler$CallbackInfo
android.content.pm.PackageCleanItem
android.content.pm.PackageCleanItem$1
android.content.pm.PackageInfo
android.content.pm.PackageInfo$1
android.content.pm.PackageInfoLite
android.content.pm.PackageInfoLite$1
android.content.pm.PackageInstaller
android.content.pm.PackageInstaller$Session
android.content.pm.PackageInstaller$SessionCallback
android.content.pm.PackageInstaller$SessionCallbackDelegate
android.content.pm.PackageInstaller$SessionInfo
android.content.pm.PackageInstaller$SessionInfo$1
android.content.pm.PackageInstaller$SessionParams
android.content.pm.PackageInstaller$SessionParams$1
android.content.pm.PackageItemInfo
android.content.pm.PackageManager
android.content.pm.PackageManager$LegacyPackageDeleteObserver
android.content.pm.PackageManager$MoveCallback
android.content.pm.PackageManager$NameNotFoundException
android.content.pm.PackageManager$OnPermissionsChangedListener
android.content.pm.PackageManagerInternal
android.content.pm.PackageManagerInternal$PackagesProvider
android.content.pm.PackageManagerInternal$SyncAdapterPackagesProvider
android.content.pm.PackageParser
android.content.pm.PackageParser$Activity
android.content.pm.PackageParser$ActivityIntentInfo
android.content.pm.PackageParser$ApkLite
android.content.pm.PackageParser$Component
android.content.pm.PackageParser$IntentInfo
android.content.pm.PackageParser$NewPermissionInfo
android.content.pm.PackageParser$Package
android.content.pm.PackageParser$PackageLite
android.content.pm.PackageParser$PackageParserException
android.content.pm.PackageParser$ParseComponentArgs
android.content.pm.PackageParser$ParsePackageItemArgs
android.content.pm.PackageParser$Permission
android.content.pm.PackageParser$PermissionGroup
android.content.pm.PackageParser$Provider
android.content.pm.PackageParser$ProviderIntentInfo
android.content.pm.PackageParser$Service
android.content.pm.PackageParser$ServiceIntentInfo
android.content.pm.PackageParser$SplitNameComparator
android.content.pm.PackageParser$SplitPermissionInfo
android.content.pm.PackageStats