forked from GiannisArk/USENIX24_DataSafety
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAPI_methods_list
More file actions
6956 lines (6956 loc) · 444 KB
/
Copy pathAPI_methods_list
File metadata and controls
6956 lines (6956 loc) · 444 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
#ClassPath FunctionName
android.accessibilityservice.AccessibilityService getFingerprintGestureController
android.accounts.AccountAuthenticatorActivity clearWallpaper
android.accounts.AccountAuthenticatorActivity removeStickyBroadcast
android.accounts.AccountAuthenticatorActivity removeStickyBroadcastAsUser
android.accounts.AccountAuthenticatorActivity setWallpaper
android.accounts.AccountAuthenticatorActivity stopService
android.accounts.AccountAuthenticatorActivity unbindService
android.accounts.AccountManager addAccount
android.accounts.AccountManager finishSessionAsUser
android.accounts.AccountManager getAccounts
android.accounts.AccountManager getAccountsAndVisibilityForPackage
android.accounts.AccountManager getAccountsByType
android.accounts.AccountManager getAccountsByTypeAndFeatures
android.accounts.AccountManager getAccountsByTypeForPackage
android.accounts.AccountManager getAuthToken
android.accounts.AccountManager getAuthTokenByFeatures
android.accounts.AccountManager getPassword
android.accounts.AccountManager getPreviousName
android.accounts.AccountManager getUserData
android.accounts.AccountManager setPassword
android.accounts.AccountManager setUserData
android.accounts.AccountManagerPerfTest testGetAccounts
android.app.Activity clearWallpaper
android.app.Activity registerRemoteAnimations
android.app.Activity removeStickyBroadcast
android.app.Activity removeStickyBroadcastAsUser
android.app.Activity setWallpaper
android.app.Activity stopLockTask
android.app.Activity stopService
android.app.Activity unbindService
android.app.Activity unregisterRemoteAnimations
android.app.ActivityGroup clearWallpaper
android.app.ActivityGroup removeStickyBroadcast
android.app.ActivityGroup removeStickyBroadcastAsUser
android.app.ActivityGroup setWallpaper
android.app.ActivityGroup stopService
android.app.ActivityGroup unbindService
android.app.ActivityManager addHomeVisibilityListener
android.app.ActivityManager addOnUidImportanceListener
android.app.ActivityManager checkUidPermission
android.app.ActivityManager clearApplicationUserData
android.app.ActivityManager dumpPackageState
android.app.ActivityManager forceStopPackage
android.app.ActivityManager getCurrentUser
android.app.ActivityManager getPackageImportance
android.app.ActivityManager getRecentTasks
android.app.ActivityManager getRunningAppProcesses
android.app.ActivityManager getRunningTasks
android.app.ActivityManager getSwitchingFromUserMessage
android.app.ActivityManager getSwitchingToUserMessage
android.app.ActivityManager getUidImportance
android.app.ActivityManager getUidProcessCapabilities
android.app.ActivityManager getUidProcessState
android.app.ActivityManager isProfileForeground
android.app.ActivityManager killBackgroundProcesses
android.app.ActivityManager killProcessesWhenImperceptible
android.app.ActivityManager killUid
android.app.ActivityManager moveTaskToFront
android.app.ActivityManager removeHomeVisibilityListener
android.app.ActivityManager removeOnUidImportanceListener
android.app.ActivityManager resetAppErrors
android.app.ActivityManager restartPackage
android.app.ActivityManager scheduleApplicationInfoChanged
android.app.ActivityManager setPersistentVrThread
android.app.ActivityManager setStopUserOnSwitch
android.app.ActivityManager startProfile
android.app.ActivityManager stopProfile
android.app.ActivityManager stopUser
android.app.ActivityManager switchUser
android.app.ActivityManager updateMccMncConfiguration
android.app.ActivityManager waitForBroadcastIdle
android.app.ActivityOptions makeCustomTaskAnimation
android.app.ActivityOptions makeRemoteAnimation
android.app.ActivityOptions makeRemoteTransition
android.app.ActivityOptions setLaunchTaskId
android.app.ActivityTaskManager clearLaunchParamsForPackages
android.app.ActivityTaskManager detachNavigationBarFromApp
android.app.ActivityTaskManager moveTaskToRootTask
android.app.ActivityTaskManager removeAllVisibleRecentTasks
android.app.ActivityTaskManager removeRootTasksInWindowingModes
android.app.ActivityTaskManager removeRootTasksWithActivityTypes
android.app.ActivityTaskManager removeTask
android.app.ActivityTaskManager resizeTask
android.app.ActivityTaskManager startSystemLockTaskMode
android.app.ActivityTaskManager stopSystemLockTaskMode
android.app.admin.DevicePolicyManager acknowledgeNewUserDisclaimer
android.app.admin.DevicePolicyManager clearLogoutUser
android.app.admin.DevicePolicyManager clearOrganizationId
android.app.admin.DevicePolicyManager clearSystemUpdatePolicyFreezePeriodRecord
android.app.admin.DevicePolicyManager finalizeWorkProfileProvisioning
android.app.admin.DevicePolicyManager forceNetworkLogs
android.app.admin.DevicePolicyManager forceRemoveActiveAdmin
android.app.admin.DevicePolicyManager forceSecurityLogs
android.app.admin.DevicePolicyManager getAllCrossProfilePackages
android.app.admin.DevicePolicyManager getBluetoothContactSharingDisabled
android.app.admin.DevicePolicyManager getCrossProfileCalendarPackages
android.app.admin.DevicePolicyManager getDeviceOwner
android.app.admin.DevicePolicyManager getDeviceOwnerComponentOnAnyUser
android.app.admin.DevicePolicyManager getDeviceOwnerNameOnAnyUser
android.app.admin.DevicePolicyManager getDeviceOwnerUser
android.app.admin.DevicePolicyManager getLogoutUserId
android.app.admin.DevicePolicyManager getParentProfileInstance
android.app.admin.DevicePolicyManager getPasswordComplexity
android.app.admin.DevicePolicyManager getPermittedAccessibilityServices
android.app.admin.DevicePolicyManager getPermittedInputMethodsForCurrentUser
android.app.admin.DevicePolicyManager getPolicyExemptApps
android.app.admin.DevicePolicyManager getProfileOwnerAsUser
android.app.admin.DevicePolicyManager getProfileOwnerNameAsUser
android.app.admin.DevicePolicyManager getUserProvisioningState
android.app.admin.DevicePolicyManager getWifiMacAddress
android.app.admin.DevicePolicyManager isDeviceProvisioned
android.app.admin.DevicePolicyManager isDeviceProvisioningConfigApplied
android.app.admin.DevicePolicyManager isManagedKiosk
android.app.admin.DevicePolicyManager isNewUserDisclaimerAcknowledged
android.app.admin.DevicePolicyManager isPackageAllowedToAccessCalendar
android.app.admin.DevicePolicyManager isUnattendedManagedKiosk
android.app.admin.DevicePolicyManager markProfileOwnerOnOrganizationOwnedDevice
android.app.admin.DevicePolicyManager notifyPendingSystemUpdate
android.app.admin.DevicePolicyManager packageHasActiveAdmins
android.app.admin.DevicePolicyManager provisionFullyManagedDevice
android.app.admin.DevicePolicyManager resetDefaultCrossProfileIntentFilters
android.app.admin.DevicePolicyManager setActiveAdmin
android.app.admin.DevicePolicyManager setActiveProfileOwner
android.app.admin.DevicePolicyManager setDeviceOwner
android.app.admin.DevicePolicyManager setDeviceOwnerOnly
android.app.admin.DevicePolicyManager setDeviceProvisioningConfigApplied
android.app.admin.DevicePolicyManager setNextOperationSafety
android.app.admin.DevicePolicyManager setProfileOwnerCanAccessDeviceIds
android.app.AlarmManager set
android.app.AlarmManager setAlarmClock
android.app.AlarmManager setExact
android.app.AlarmManager setExactAndAllowWhileIdle
android.app.AlarmManager setPrioritized
android.app.AlarmManager setTime
android.app.AlarmManager setTimeZone
android.app.AliasActivity clearWallpaper
android.app.AliasActivity removeStickyBroadcast
android.app.AliasActivity removeStickyBroadcastAsUser
android.app.AliasActivity setWallpaper
android.app.AliasActivity stopService
android.app.AliasActivity unbindService
android.app.Application clearWallpaper
android.app.Application removeStickyBroadcast
android.app.Application removeStickyBroadcastAsUser
android.app.Application setWallpaper
android.app.Application stopService
android.app.Application unbindService
android.app.ApplicationErrorReport dump
android.app.ApplicationErrorReport getErrorReportReceiver
android.app.ApplicationExitInfo getDefiningUid
android.app.ApplicationExitInfo getDescription
android.app.ApplicationExitInfo getImportance
android.app.ApplicationExitInfo getPackageUid
android.app.ApplicationExitInfo getPid
android.app.ApplicationExitInfo getProcessName
android.app.ApplicationExitInfo getProcessStateSummary
android.app.ApplicationExitInfo getPss
android.app.ApplicationExitInfo getRealUid
android.app.ApplicationExitInfo getReason
android.app.ApplicationExitInfo getRss
android.app.ApplicationExitInfo getStatus
android.app.ApplicationExitInfo getTimestamp
android.app.ApplicationExitInfo getUserHandle
android.app.ApplicationPackageManager checkPermission
android.app.AppOpsManager addHistoricalOps
android.app.AppOpsManager clearHistory
android.app.AppOpsManager collectRuntimeAppOpAccessMessage
android.app.AppOpsManager getHistoricalOps
android.app.AppOpsManager getHistoricalOpsFromDiskRaw
android.app.AppOpsManager getOpsForPackage
android.app.AppOpsManager getPackagesForOps
android.app.AppOpsManager offsetHistory
android.app.AppOpsManager rebootHistory
android.app.AppOpsManager reloadNonHistoricalState
android.app.AppOpsManager resetAllModes
android.app.AppOpsManager resetHistoryParameters
android.app.AppOpsManager resetPackageOpsNoHistory
android.app.AppOpsManager setHistoryParameters
android.app.AppOpsManager setMode
android.app.AppOpsManager setRestriction
android.app.AppOpsManager setUidMode
android.app.AppOpsManager startWatchingMode
android.app.AppOpsManager startWatchingNoted
android.app.AppOpsManager startWatchingStarted
android.app.backup.BackupAgentHelper clearWallpaper
android.app.backup.BackupAgentHelper removeStickyBroadcast
android.app.backup.BackupAgentHelper removeStickyBroadcastAsUser
android.app.backup.BackupAgentHelper setWallpaper
android.app.backup.BackupAgentHelper stopService
android.app.backup.BackupAgentHelper unbindService
android.app.backup.BackupManager backupNow
android.app.backup.BackupManager beginRestoreSession
android.app.backup.BackupManager cancelBackups
android.app.backup.BackupManager dataChanged
android.app.backup.BackupManager excludeKeysFromRestore
android.app.backup.BackupManager getAvailableRestoreToken
android.app.backup.BackupManager getConfigurationIntent
android.app.backup.BackupManager getCurrentTransport
android.app.backup.BackupManager getCurrentTransportComponent
android.app.backup.BackupManager getDataManagementIntent
android.app.backup.BackupManager getDataManagementIntentLabel
android.app.backup.BackupManager getDataManagementLabel
android.app.backup.BackupManager getDestinationString
android.app.backup.BackupManager isAppEligibleForBackup
android.app.backup.BackupManager isBackupEnabled
android.app.backup.BackupManager isBackupServiceActive
android.app.backup.BackupManager listAllTransports
android.app.backup.BackupManager requestBackup
android.app.backup.BackupManager selectBackupTransport
android.app.backup.BackupManager setAncestralSerialNumber
android.app.backup.BackupManager setAutoRestore
android.app.backup.BackupManager setBackupEnabled
android.app.backup.BackupManager updateTransportAttributes
android.app.BroadcastOptions setBackgroundActivityStartsAllowed
android.app.BroadcastOptions setTemporaryAppAllowlist
android.app.BroadcastOptions setTemporaryAppWhitelistDuration
android.app.compat.CompatChanges isChangeEnabled
android.app.compat.CompatChanges putPackageOverrides
android.app.compat.CompatChanges removePackageOverrides
android.app.contentsuggestions.ContentSuggestionsManager resetTemporaryService
android.app.contentsuggestions.ContentSuggestionsManager setDefaultServiceEnabled
android.app.contentsuggestions.ContentSuggestionsManager setTemporaryService
android.app.ContextImpl checkCallingOrSelfPermission
android.app.ContextImpl checkCallingOrSelfUriPermission
android.app.ContextImpl checkCallingPermission
android.app.ContextImpl checkCallingUriPermission
android.app.ContextImpl checkPermission
android.app.ContextImpl checkSelfPermission
android.app.ContextImpl checkUriPermission
android.app.ContextImpl enforceCallingOrSelfPermission
android.app.ContextImpl enforceCallingOrSelfUriPermission
android.app.ContextImpl enforceCallingPermission
android.app.ContextImpl enforceCallingUriPermission
android.app.ContextImpl enforcePermission
android.app.ContextImpl enforceUriPermission
android.app.cts.NotificationManagerTest testGrantRevokeNotificationManagerApis_exclusiveToPermissionController
android.app.DownloadManager onMediaStoreDownloadsDeleted
android.app.DreamManager isDreaming
android.app.DreamManager setActiveDream
android.app.DreamManager startDream
android.app.DreamManager stopDream
android.app.ExpandableListActivity clearWallpaper
android.app.ExpandableListActivity removeStickyBroadcast
android.app.ExpandableListActivity removeStickyBroadcastAsUser
android.app.ExpandableListActivity setWallpaper
android.app.ExpandableListActivity stopService
android.app.ExpandableListActivity unbindService
android.app.GameManager getAvailableGameModes
android.app.GameManager getGameMode
android.app.GameManager isAngleEnabled
android.app.GameManager setGameMode
android.app.job.JobInfo$Builder setPersisted
android.app.job.JobScheduler scheduleAsPackage
android.app.JobSchedulerImpl schedule
android.app.KeyguardManager checkLock
android.app.KeyguardManager exitKeyguardSecurely
android.app.KeyguardManager getMinLockLength
android.app.KeyguardManager getPrivateNotificationsAllowed
android.app.KeyguardManager isValidLockPasswordComplexity
android.app.KeyguardManager requestDismissKeyguard
android.app.KeyguardManager setLock
android.app.KeyguardManager setPrivateNotificationsAllowed
android.app.KeyguardManager$KeyguardLock disableKeyguard
android.app.KeyguardManager$KeyguardLock reenableKeyguard
android.app.ListActivity clearWallpaper
android.app.ListActivity removeStickyBroadcast
android.app.ListActivity removeStickyBroadcastAsUser
android.app.ListActivity setWallpaper
android.app.ListActivity stopService
android.app.ListActivity unbindService
android.app.NativeActivity clearWallpaper
android.app.NativeActivity removeStickyBroadcast
android.app.NativeActivity removeStickyBroadcastAsUser
android.app.NativeActivity setWallpaper
android.app.NativeActivity stopService
android.app.NativeActivity unbindService
android.app.NotificationManager getEnabledNotificationListeners
android.app.NotificationManager setNotificationListenerAccessGranted
android.app.NotificationManager setToastRateLimitingEnabled
android.app.PendingIntent intentFilterEquals
android.app.PendingIntent queryIntentComponents
android.app.people.PeopleManager isConversation
android.app.role.cts.RoleManagerTest addSmsRoleHolderThenPermissionIsGranted
android.app.role.cts.RoleManagerTest removeSmsRoleHolderThenDialerRolePermissionIsRetained
android.app.role.cts.RoleManagerTest removeSmsRoleHolderThenPermissionIsRevoked
android.app.role.RoleControllerManager isApplicationVisibleForRole
android.app.role.RoleControllerManager isRoleVisible
android.app.role.RoleControllerService isApplicationQualifiedForRole
android.app.role.RoleControllerService isApplicationVisibleForRole
android.app.role.RoleControllerService isRoleVisible
android.app.role.RoleManager addOnRoleHoldersChangedListenerAsUser
android.app.role.RoleManager addRoleHolderAsUser
android.app.role.RoleManager addRoleHolderFromController
android.app.role.RoleManager clearRoleHoldersAsUser
android.app.role.RoleManager getHeldRolesFromController
android.app.role.RoleManager getRoleHolders
android.app.role.RoleManager getRoleHoldersAsUser
android.app.role.RoleManager isApplicationVisibleForRole
android.app.role.RoleManager isBypassingRoleQualification
android.app.role.RoleManager isRoleVisible
android.app.role.RoleManager removeOnRoleHoldersChangedListenerAsUser
android.app.role.RoleManager removeRoleHolderAsUser
android.app.role.RoleManager removeRoleHolderFromController
android.app.role.RoleManager setBrowserRoleHolder
android.app.role.RoleManager setBypassingRoleQualification
android.app.role.RoleManager setRoleNamesFromController
android.app.Service stopSelf
android.app.Service stopSelfResult
android.app.slice.SliceManager checkSlicePermission
android.app.slice.SliceManager enforceSlicePermission
android.app.StatsManager addConfig
android.app.StatsManager addConfiguration
android.app.StatsManager clearPullAtomCallback
android.app.StatsManager getData
android.app.StatsManager getMetadata
android.app.StatsManager getRegisteredExperimentIds
android.app.StatsManager getReports
android.app.StatsManager getStatsMetadata
android.app.StatsManager removeConfig
android.app.StatsManager removeConfiguration
android.app.StatsManager setActiveConfigsChangedOperation
android.app.StatsManager setBroadcastSubscriber
android.app.StatsManager setDataFetchOperation
android.app.StatsManager setFetchReportsOperation
android.app.StatsManager setPullAtomCallback
android.app.StatusBarManager collapsePanels
android.app.StatusBarManager getDisableInfo
android.app.StatusBarManager handleSystemKey
android.app.StatusBarManager setDisabledForSetup
android.app.StatusBarManager setExpansionDisabledForSimNetworkLock
android.app.StatusBarManager togglePanel
android.app.TabActivity clearWallpaper
android.app.TabActivity removeStickyBroadcast
android.app.TabActivity removeStickyBroadcastAsUser
android.app.TabActivity setWallpaper
android.app.TabActivity stopService
android.app.TabActivity unbindService
android.app.time.TimeManager addTimeZoneDetectorListener
android.app.time.TimeManager getTimeCapabilitiesAndConfig
android.app.time.TimeManager getTimeZoneCapabilitiesAndConfig
android.app.time.TimeManager removeTimeZoneDetectorListener
android.app.time.TimeManager suggestExternalTime
android.app.time.TimeManager updateTimeConfiguration
android.app.time.TimeManager updateTimeZoneConfiguration
android.app.trust.TrustManager clearAllBiometricRecognized
android.app.trust.TrustManager isTrustUsuallyManaged
android.app.trust.TrustManager setDeviceLockedForUser
android.app.trust.TrustManager unlockedByBiometricForUser
android.app.uiautomation.cts.UiAutomationTest testAdoptSomeShellPermissions
android.app.UiModeManager addOnProjectionStateChangedListener
android.app.UiModeManager enableCarMode
android.app.UiModeManager getActiveProjectionTypes
android.app.UiModeManager getProjectingPackages
android.app.UiModeManager releaseProjection
android.app.UiModeManager removeOnProjectionStateChangedListener
android.app.UiModeManager requestProjection
android.app.usage.NetworkStatsManager notifyNetworkStatus
android.app.usage.StorageStatsManager queryCratesForUser
android.app.usage.UsageStatsManager getAppStandbyBucket
android.app.usage.UsageStatsManager getAppStandbyBuckets
android.app.usage.UsageStatsManager getLastTimeAnyComponentUsed
android.app.usage.UsageStatsManager onCarrierPrivilegedAppsChanged
android.app.usage.UsageStatsManager registerAppUsageLimitObserver
android.app.usage.UsageStatsManager registerAppUsageObserver
android.app.usage.UsageStatsManager registerUsageSessionObserver
android.app.usage.UsageStatsManager setAppStandbyBucket
android.app.usage.UsageStatsManager setAppStandbyBuckets
android.app.usage.UsageStatsManager unregisterAppUsageLimitObserver
android.app.usage.UsageStatsManager unregisterAppUsageObserver
android.app.usage.UsageStatsManager unregisterUsageSessionObserver
android.app.usage.UsageStatsManager whitelistAppTemporarily
android.app.VrManager getVr2dDisplayId
android.app.VrManager isPersistentVrModeEnabled
android.app.VrManager isVrModeEnabled
android.app.VrManager registerVrStateCallback
android.app.VrManager setAndBindVrCompositor
android.app.VrManager setPersistentVrModeEnabled
android.app.VrManager setStandbyEnabled
android.app.VrManager setVr2dDisplayProperties
android.app.VrManager setVrInputMethod
android.app.VrManager unregisterVrStateCallback
android.app.WallpaperManager clear
android.app.WallpaperManager clearWallpaper
android.app.WallpaperManager getDrawable
android.app.WallpaperManager getFastDrawable
android.app.WallpaperManager getWallpaperFile
android.app.WallpaperManager peekFastDrawable
android.app.WallpaperManager setBitmap
android.app.WallpaperManager setDisplayPadding
android.app.WallpaperManager setResource
android.app.WallpaperManager setStream
android.app.WallpaperManager setWallpaperComponent
android.app.WallpaperManager suggestDesiredDimensions
android.app.WallpaperManager wallpaperSupportsWcg
android.apphibernation.AppHibernationManager getHibernatingPackagesForUser
android.apphibernation.AppHibernationManager isHibernatingForUser
android.apphibernation.AppHibernationManager isHibernatingGlobally
android.apphibernation.AppHibernationManager setHibernatingForUser
android.apphibernation.AppHibernationManager setHibernatingGlobally
android.appsecurity.cts.locationpolicy.LocationPolicyTest testLocationPolicyPermissions
android.appsecurity.cts.v3rotationtests.V3RotationTest testHasNoPerm
android.appsecurity.cts.v3rotationtests.V3RotationTest testHasPerm
android.appwidget.AppWidgetManager hasBindAppWidgetPermission
android.bluetooth.BluetoothA2dp connect
android.bluetooth.BluetoothA2dp disableOptionalCodecs
android.bluetooth.BluetoothA2dp disconnect
android.bluetooth.BluetoothA2dp enableOptionalCodecs
android.bluetooth.BluetoothA2dp getActiveDevice
android.bluetooth.BluetoothA2dp getBufferConstraints
android.bluetooth.BluetoothA2dp getCodecStatus
android.bluetooth.BluetoothA2dp getConnectedDevices
android.bluetooth.BluetoothA2dp getConnectionPolicy
android.bluetooth.BluetoothA2dp getConnectionState
android.bluetooth.BluetoothA2dp getDevicesMatchingConnectionStates
android.bluetooth.BluetoothA2dp getDynamicBufferSupport
android.bluetooth.BluetoothA2dp getPriority
android.bluetooth.BluetoothA2dp isA2dpPlaying
android.bluetooth.BluetoothA2dp isOptionalCodecsEnabled
android.bluetooth.BluetoothA2dp isOptionalCodecsSupported
android.bluetooth.BluetoothA2dp setActiveDevice
android.bluetooth.BluetoothA2dp setAvrcpAbsoluteVolume
android.bluetooth.BluetoothA2dp setBufferLengthMillis
android.bluetooth.BluetoothA2dp setCodecConfigPreference
android.bluetooth.BluetoothA2dp setConnectionPolicy
android.bluetooth.BluetoothA2dp setOptionalCodecsEnabled
android.bluetooth.BluetoothA2dp setPriority
android.bluetooth.BluetoothA2dp shouldSendVolumeKeys
android.bluetooth.BluetoothA2dpSink connect
android.bluetooth.BluetoothA2dpSink disconnect
android.bluetooth.BluetoothA2dpSink getAudioConfig
android.bluetooth.BluetoothA2dpSink getConnectedDevices
android.bluetooth.BluetoothA2dpSink getConnectionPolicy
android.bluetooth.BluetoothA2dpSink getConnectionState
android.bluetooth.BluetoothA2dpSink getDevicesMatchingConnectionStates
android.bluetooth.BluetoothA2dpSink getPriority
android.bluetooth.BluetoothA2dpSink isAudioPlaying
android.bluetooth.BluetoothA2dpSink setConnectionPolicy
android.bluetooth.BluetoothA2dpSink setPriority
android.bluetooth.BluetoothAdapter addOnMetadataChangedListener
android.bluetooth.BluetoothAdapter cancelDiscovery
android.bluetooth.BluetoothAdapter changeApplicationBluetoothState
android.bluetooth.BluetoothAdapter closeProfileProxy
android.bluetooth.BluetoothAdapter connectAllEnabledProfiles
android.bluetooth.BluetoothAdapter disable
android.bluetooth.BluetoothAdapter disableBLE
android.bluetooth.BluetoothAdapter disconnectAllEnabledProfiles
android.bluetooth.BluetoothAdapter enable
android.bluetooth.BluetoothAdapter enableBLE
android.bluetooth.BluetoothAdapter enableNoAutoConnect
android.bluetooth.BluetoothAdapter factoryReset
android.bluetooth.BluetoothAdapter generateLocalOobData
android.bluetooth.BluetoothAdapter getAddress
android.bluetooth.BluetoothAdapter getBluetoothClass
android.bluetooth.BluetoothAdapter getBluetoothLeAdvertiser
android.bluetooth.BluetoothAdapter getBluetoothLeScanner
android.bluetooth.BluetoothAdapter getBondedDevices
android.bluetooth.BluetoothAdapter getControllerActivityEnergyInfo
android.bluetooth.BluetoothAdapter getDiscoverableTimeout
android.bluetooth.BluetoothAdapter getDiscoveryEndMillis
android.bluetooth.BluetoothAdapter getIoCapability
android.bluetooth.BluetoothAdapter getLeIoCapability
android.bluetooth.BluetoothAdapter getMaxConnectedAudioDevices
android.bluetooth.BluetoothAdapter getMostRecentlyConnectedDevices
android.bluetooth.BluetoothAdapter getName
android.bluetooth.BluetoothAdapter getNameLengthForAdvertise
android.bluetooth.BluetoothAdapter getProfileConnectionState
android.bluetooth.BluetoothAdapter getProfileProxy
android.bluetooth.BluetoothAdapter getScanMode
android.bluetooth.BluetoothAdapter getState
android.bluetooth.BluetoothAdapter getUuids
android.bluetooth.BluetoothAdapter isDiscovering
android.bluetooth.BluetoothAdapter isEnabled
android.bluetooth.BluetoothAdapter isHardwareTrackingFiltersAvailable
android.bluetooth.BluetoothAdapter isMultipleAdvertisementSupported
android.bluetooth.BluetoothAdapter isOffloadedFilteringSupported
android.bluetooth.BluetoothAdapter isOffloadedScanBatchingSupported
android.bluetooth.BluetoothAdapter listenUsingEncryptedRfcommWithServiceRecord
android.bluetooth.BluetoothAdapter listenUsingInsecureL2capChannel
android.bluetooth.BluetoothAdapter listenUsingInsecureL2capOn
android.bluetooth.BluetoothAdapter listenUsingInsecureRfcommOn
android.bluetooth.BluetoothAdapter listenUsingInsecureRfcommWithServiceRecord
android.bluetooth.BluetoothAdapter listenUsingL2capChannel
android.bluetooth.BluetoothAdapter listenUsingL2capOn
android.bluetooth.BluetoothAdapter listenUsingRfcommOn
android.bluetooth.BluetoothAdapter listenUsingRfcommWithServiceRecord
android.bluetooth.BluetoothAdapter readOutOfBandData
android.bluetooth.BluetoothAdapter registerBluetoothConnectionCallback
android.bluetooth.BluetoothAdapter removeActiveDevice
android.bluetooth.BluetoothAdapter removeOnMetadataChangedListener
android.bluetooth.BluetoothAdapter requestControllerActivityEnergyInfo
android.bluetooth.BluetoothAdapter setActiveDevice
android.bluetooth.BluetoothAdapter setBluetoothClass
android.bluetooth.BluetoothAdapter setDiscoverableTimeout
android.bluetooth.BluetoothAdapter setIoCapability
android.bluetooth.BluetoothAdapter setLeIoCapability
android.bluetooth.BluetoothAdapter setName
android.bluetooth.BluetoothAdapter setScanMode
android.bluetooth.BluetoothAdapter startDiscovery
android.bluetooth.BluetoothAdapter startLeScan
android.bluetooth.BluetoothAdapter stopLeScan
android.bluetooth.BluetoothAdapter unregisterBluetoothConnectionCallback
android.bluetooth.BluetoothAvrcpController getConnectedDevices
android.bluetooth.BluetoothAvrcpController getConnectionState
android.bluetooth.BluetoothAvrcpController getDevicesMatchingConnectionStates
android.bluetooth.BluetoothAvrcpController getPlayerSettings
android.bluetooth.BluetoothAvrcpController sendGroupNavigationCmd
android.bluetooth.BluetoothAvrcpController setPlayerApplicationSetting
android.bluetooth.BluetoothDevice canBondWithoutDialog
android.bluetooth.BluetoothDevice cancelBondProcess
android.bluetooth.BluetoothDevice cancelPairing
android.bluetooth.BluetoothDevice connectGatt
android.bluetooth.BluetoothDevice createBond
android.bluetooth.BluetoothDevice createBondOutOfBand
android.bluetooth.BluetoothDevice createInsecureL2capChannel
android.bluetooth.BluetoothDevice createInsecureL2capSocket
android.bluetooth.BluetoothDevice createInsecureRfcommSocket
android.bluetooth.BluetoothDevice createInsecureRfcommSocketToServiceRecord
android.bluetooth.BluetoothDevice createL2capChannel
android.bluetooth.BluetoothDevice createL2capSocket
android.bluetooth.BluetoothDevice createRfcommSocket
android.bluetooth.BluetoothDevice createRfcommSocketToServiceRecord
android.bluetooth.BluetoothDevice createScoSocket
android.bluetooth.BluetoothDevice fetchUuidsWithSdp
android.bluetooth.BluetoothDevice getAlias
android.bluetooth.BluetoothDevice getBatteryLevel
android.bluetooth.BluetoothDevice getBluetoothClass
android.bluetooth.BluetoothDevice getBondState
android.bluetooth.BluetoothDevice getMessageAccessPermission
android.bluetooth.BluetoothDevice getMetadata
android.bluetooth.BluetoothDevice getName
android.bluetooth.BluetoothDevice getPhonebookAccessPermission
android.bluetooth.BluetoothDevice getSimAccessPermission
android.bluetooth.BluetoothDevice getType
android.bluetooth.BluetoothDevice getUuids
android.bluetooth.BluetoothDevice isBondingInitiatedLocally
android.bluetooth.BluetoothDevice isConnected
android.bluetooth.BluetoothDevice isEncrypted
android.bluetooth.BluetoothDevice isInSilenceMode
android.bluetooth.BluetoothDevice removeBond
android.bluetooth.BluetoothDevice sdpSearch
android.bluetooth.BluetoothDevice setAlias
android.bluetooth.BluetoothDevice setMessageAccessPermission
android.bluetooth.BluetoothDevice setMetadata
android.bluetooth.BluetoothDevice setPairingConfirmation
android.bluetooth.BluetoothDevice setPhonebookAccessPermission
android.bluetooth.BluetoothDevice setPin
android.bluetooth.BluetoothDevice setSilenceMode
android.bluetooth.BluetoothDevice setSimAccessPermission
android.bluetooth.BluetoothGatt abortReliableWrite
android.bluetooth.BluetoothGatt beginReliableWrite
android.bluetooth.BluetoothGatt close
android.bluetooth.BluetoothGatt connect
android.bluetooth.BluetoothGatt disconnect
android.bluetooth.BluetoothGatt discoverServiceByUuid
android.bluetooth.BluetoothGatt discoverServices
android.bluetooth.BluetoothGatt executeReliableWrite
android.bluetooth.BluetoothGatt readCharacteristic
android.bluetooth.BluetoothGatt readDescriptor
android.bluetooth.BluetoothGatt readPhy
android.bluetooth.BluetoothGatt readRemoteRssi
android.bluetooth.BluetoothGatt readUsingCharacteristicUuid
android.bluetooth.BluetoothGatt refresh
android.bluetooth.BluetoothGatt requestConnectionPriority
android.bluetooth.BluetoothGatt requestLeConnectionUpdate
android.bluetooth.BluetoothGatt requestMtu
android.bluetooth.BluetoothGatt setCharacteristicNotification
android.bluetooth.BluetoothGatt setPreferredPhy
android.bluetooth.BluetoothGatt writeCharacteristic
android.bluetooth.BluetoothGatt writeDescriptor
android.bluetooth.BluetoothGattServer addService
android.bluetooth.BluetoothGattServer cancelConnection
android.bluetooth.BluetoothGattServer clearServices
android.bluetooth.BluetoothGattServer close
android.bluetooth.BluetoothGattServer connect
android.bluetooth.BluetoothGattServer notifyCharacteristicChanged
android.bluetooth.BluetoothGattServer readPhy
android.bluetooth.BluetoothGattServer removeService
android.bluetooth.BluetoothGattServer sendResponse
android.bluetooth.BluetoothGattServer setPreferredPhy
android.bluetooth.BluetoothHeadset clccResponse
android.bluetooth.BluetoothHeadset connect
android.bluetooth.BluetoothHeadset connectAudio
android.bluetooth.BluetoothHeadset disconnect
android.bluetooth.BluetoothHeadset disconnectAudio
android.bluetooth.BluetoothHeadset getActiveDevice
android.bluetooth.BluetoothHeadset getAudioRouteAllowed
android.bluetooth.BluetoothHeadset getAudioState
android.bluetooth.BluetoothHeadset getConnectedDevices
android.bluetooth.BluetoothHeadset getConnectionPolicy
android.bluetooth.BluetoothHeadset getConnectionState
android.bluetooth.BluetoothHeadset getDevicesMatchingConnectionStates
android.bluetooth.BluetoothHeadset getPriority
android.bluetooth.BluetoothHeadset isAudioConnected
android.bluetooth.BluetoothHeadset isAudioOn
android.bluetooth.BluetoothHeadset isInbandRingingEnabled
android.bluetooth.BluetoothHeadset isNoiseReductionSupported
android.bluetooth.BluetoothHeadset isVoiceRecognitionSupported
android.bluetooth.BluetoothHeadset phoneStateChanged
android.bluetooth.BluetoothHeadset sendVendorSpecificResultCode
android.bluetooth.BluetoothHeadset setActiveDevice
android.bluetooth.BluetoothHeadset setAudioRouteAllowed
android.bluetooth.BluetoothHeadset setConnectionPolicy
android.bluetooth.BluetoothHeadset setForceScoAudio
android.bluetooth.BluetoothHeadset setPriority
android.bluetooth.BluetoothHeadset startScoUsingVirtualVoiceCall
android.bluetooth.BluetoothHeadset startVoiceRecognition
android.bluetooth.BluetoothHeadset stopScoUsingVirtualVoiceCall
android.bluetooth.BluetoothHeadset stopVoiceRecognition
android.bluetooth.BluetoothHeadsetClient acceptCall
android.bluetooth.BluetoothHeadsetClient connect
android.bluetooth.BluetoothHeadsetClient connectAudio
android.bluetooth.BluetoothHeadsetClient dial
android.bluetooth.BluetoothHeadsetClient disconnect
android.bluetooth.BluetoothHeadsetClient disconnectAudio
android.bluetooth.BluetoothHeadsetClient enterPrivateMode
android.bluetooth.BluetoothHeadsetClient explicitCallTransfer
android.bluetooth.BluetoothHeadsetClient getAudioRouteAllowed
android.bluetooth.BluetoothHeadsetClient getAudioState
android.bluetooth.BluetoothHeadsetClient getConnectedDevices
android.bluetooth.BluetoothHeadsetClient getConnectionPolicy
android.bluetooth.BluetoothHeadsetClient getConnectionState
android.bluetooth.BluetoothHeadsetClient getCurrentAgEvents
android.bluetooth.BluetoothHeadsetClient getCurrentAgFeatures
android.bluetooth.BluetoothHeadsetClient getCurrentCalls
android.bluetooth.BluetoothHeadsetClient getDevicesMatchingConnectionStates
android.bluetooth.BluetoothHeadsetClient getLastVoiceTagNumber
android.bluetooth.BluetoothHeadsetClient getPriority
android.bluetooth.BluetoothHeadsetClient holdCall
android.bluetooth.BluetoothHeadsetClient rejectCall
android.bluetooth.BluetoothHeadsetClient sendDTMF
android.bluetooth.BluetoothHeadsetClient sendVendorAtCommand
android.bluetooth.BluetoothHeadsetClient setAudioRouteAllowed
android.bluetooth.BluetoothHeadsetClient setConnectionPolicy
android.bluetooth.BluetoothHeadsetClient setPriority
android.bluetooth.BluetoothHeadsetClient startVoiceRecognition
android.bluetooth.BluetoothHeadsetClient stopVoiceRecognition
android.bluetooth.BluetoothHeadsetClient terminateCall
android.bluetooth.BluetoothHealth connectChannelToSource
android.bluetooth.BluetoothHealth disconnectChannel
android.bluetooth.BluetoothHealth getConnectedDevices
android.bluetooth.BluetoothHealth getConnectionState
android.bluetooth.BluetoothHealth getDevicesMatchingConnectionStates
android.bluetooth.BluetoothHealth getMainChannelFd
android.bluetooth.BluetoothHealth registerSinkAppConfiguration
android.bluetooth.BluetoothHealth unregisterAppConfiguration
android.bluetooth.BluetoothHearingAid connect
android.bluetooth.BluetoothHearingAid disconnect
android.bluetooth.BluetoothHearingAid getActiveDevices
android.bluetooth.BluetoothHearingAid getConnectedDevices
android.bluetooth.BluetoothHearingAid getConnectionPolicy
android.bluetooth.BluetoothHearingAid getConnectionState
android.bluetooth.BluetoothHearingAid getDeviceMode
android.bluetooth.BluetoothHearingAid getDeviceSide
android.bluetooth.BluetoothHearingAid getDevicesMatchingConnectionStates
android.bluetooth.BluetoothHearingAid getHiSyncId
android.bluetooth.BluetoothHearingAid getPriority
android.bluetooth.BluetoothHearingAid setActiveDevice
android.bluetooth.BluetoothHearingAid setConnectionPolicy
android.bluetooth.BluetoothHearingAid setPriority
android.bluetooth.BluetoothHearingAid setVolume
android.bluetooth.BluetoothHidDevice connect
android.bluetooth.BluetoothHidDevice disconnect
android.bluetooth.BluetoothHidDevice getConnectedDevices
android.bluetooth.BluetoothHidDevice getConnectionState
android.bluetooth.BluetoothHidDevice getDevicesMatchingConnectionStates
android.bluetooth.BluetoothHidDevice getUserAppName
android.bluetooth.BluetoothHidDevice registerApp
android.bluetooth.BluetoothHidDevice replyReport
android.bluetooth.BluetoothHidDevice reportError
android.bluetooth.BluetoothHidDevice sendReport
android.bluetooth.BluetoothHidDevice setConnectionPolicy
android.bluetooth.BluetoothHidDevice unregisterApp
android.bluetooth.BluetoothHidHost connect
android.bluetooth.BluetoothHidHost disconnect
android.bluetooth.BluetoothHidHost getConnectedDevices
android.bluetooth.BluetoothHidHost getConnectionPolicy
android.bluetooth.BluetoothHidHost getConnectionState
android.bluetooth.BluetoothHidHost getDevicesMatchingConnectionStates
android.bluetooth.BluetoothHidHost getIdleTime
android.bluetooth.BluetoothHidHost getPriority
android.bluetooth.BluetoothHidHost getProtocolMode
android.bluetooth.BluetoothHidHost getReport
android.bluetooth.BluetoothHidHost sendData
android.bluetooth.BluetoothHidHost setConnectionPolicy
android.bluetooth.BluetoothHidHost setIdleTime
android.bluetooth.BluetoothHidHost setPriority
android.bluetooth.BluetoothHidHost setProtocolMode
android.bluetooth.BluetoothHidHost setReport
android.bluetooth.BluetoothHidHost virtualUnplug
android.bluetooth.BluetoothLeAudio connect
android.bluetooth.BluetoothLeAudio disconnect
android.bluetooth.BluetoothLeAudio getActiveDevices
android.bluetooth.BluetoothLeAudio getConnectedDevices
android.bluetooth.BluetoothLeAudio getConnectionPolicy
android.bluetooth.BluetoothLeAudio getConnectionState
android.bluetooth.BluetoothLeAudio getDevicesMatchingConnectionStates
android.bluetooth.BluetoothLeAudio getGroupId
android.bluetooth.BluetoothLeAudio setActiveDevice
android.bluetooth.BluetoothLeAudio setConnectionPolicy
android.bluetooth.BluetoothManager getConnectedDevices
android.bluetooth.BluetoothManager getConnectionState
android.bluetooth.BluetoothManager getDevicesMatchingConnectionStates
android.bluetooth.BluetoothManager openGattServer
android.bluetooth.BluetoothMap disconnect
android.bluetooth.BluetoothMap getClient
android.bluetooth.BluetoothMap getConnectedDevices
android.bluetooth.BluetoothMap getConnectionPolicy
android.bluetooth.BluetoothMap getConnectionState
android.bluetooth.BluetoothMap getDevicesMatchingConnectionStates
android.bluetooth.BluetoothMap getPriority
android.bluetooth.BluetoothMap getState
android.bluetooth.BluetoothMap isConnected
android.bluetooth.BluetoothMap setConnectionPolicy
android.bluetooth.BluetoothMap setPriority
android.bluetooth.BluetoothMapClient connect
android.bluetooth.BluetoothMapClient disconnect
android.bluetooth.BluetoothMapClient getConnectedDevices
android.bluetooth.BluetoothMapClient getConnectionPolicy
android.bluetooth.BluetoothMapClient getConnectionState
android.bluetooth.BluetoothMapClient getDevicesMatchingConnectionStates
android.bluetooth.BluetoothMapClient getPriority
android.bluetooth.BluetoothMapClient getUnreadMessages
android.bluetooth.BluetoothMapClient isConnected
android.bluetooth.BluetoothMapClient isUploadingSupported
android.bluetooth.BluetoothMapClient sendMessage
android.bluetooth.BluetoothMapClient setConnectionPolicy
android.bluetooth.BluetoothMapClient setMessageStatus
android.bluetooth.BluetoothMapClient setPriority
android.bluetooth.BluetoothPan connect
android.bluetooth.BluetoothPan disconnect
android.bluetooth.BluetoothPan getConnectedDevices
android.bluetooth.BluetoothPan getConnectionState
android.bluetooth.BluetoothPan getDevicesMatchingConnectionStates
android.bluetooth.BluetoothPan isTetheringOn
android.bluetooth.BluetoothPan setBluetoothTethering
android.bluetooth.BluetoothPan setConnectionPolicy
android.bluetooth.BluetoothPbap disconnect
android.bluetooth.BluetoothPbap getConnectedDevices
android.bluetooth.BluetoothPbap getConnectionState
android.bluetooth.BluetoothPbap getDevicesMatchingConnectionStates
android.bluetooth.BluetoothPbap setConnectionPolicy
android.bluetooth.BluetoothPbapClient connect
android.bluetooth.BluetoothPbapClient disconnect
android.bluetooth.BluetoothPbapClient getConnectedDevices
android.bluetooth.BluetoothPbapClient getConnectionPolicy
android.bluetooth.BluetoothPbapClient getConnectionState
android.bluetooth.BluetoothPbapClient getDevicesMatchingConnectionStates
android.bluetooth.BluetoothPbapClient getPriority
android.bluetooth.BluetoothPbapClient setConnectionPolicy
android.bluetooth.BluetoothPbapClient setPriority
android.bluetooth.BluetoothSap disconnect
android.bluetooth.BluetoothSap getClient
android.bluetooth.BluetoothSap getConnectedDevices
android.bluetooth.BluetoothSap getConnectionPolicy
android.bluetooth.BluetoothSap getConnectionState
android.bluetooth.BluetoothSap getDevicesMatchingConnectionStates
android.bluetooth.BluetoothSap getPriority
android.bluetooth.BluetoothSap getState
android.bluetooth.BluetoothSap isConnected
android.bluetooth.BluetoothSap setConnectionPolicy
android.bluetooth.BluetoothSap setPriority
android.bluetooth.BluetoothSocket close
android.bluetooth.BluetoothSocket connect
android.bluetooth.BluetoothSocket requestMaximumTxDataLength
android.bluetooth.le.AdvertisingSet enableAdvertising
android.bluetooth.le.AdvertisingSet getOwnAddress
android.bluetooth.le.AdvertisingSet setAdvertisingData
android.bluetooth.le.AdvertisingSet setAdvertisingParameters
android.bluetooth.le.AdvertisingSet setPeriodicAdvertisingData
android.bluetooth.le.AdvertisingSet setPeriodicAdvertisingEnabled
android.bluetooth.le.AdvertisingSet setPeriodicAdvertisingParameters
android.bluetooth.le.AdvertisingSet setScanResponseData
android.bluetooth.le.BluetoothLeAdvertiser startAdvertising
android.bluetooth.le.BluetoothLeAdvertiser startAdvertisingSet
android.bluetooth.le.BluetoothLeAdvertiser stopAdvertising
android.bluetooth.le.BluetoothLeAdvertiser stopAdvertisingSet
android.bluetooth.le.BluetoothLeScanner flushPendingScanResults
android.bluetooth.le.BluetoothLeScanner startScan
android.bluetooth.le.BluetoothLeScanner startScanFromSource
android.bluetooth.le.BluetoothLeScanner startTruncatedScan
android.bluetooth.le.BluetoothLeScanner stopScan
android.bluetooth.le.PeriodicAdvertisingManager registerSync
android.bluetooth.le.PeriodicAdvertisingManager unregisterSync
android.car.admin.CarDevicePolicyManager createUser
android.car.admin.CarDevicePolicyManager removeUser
android.car.admin.CarDevicePolicyManager startUserInBackground
android.car.admin.CarDevicePolicyManager stopUser
android.car.app.CarActivityManager setPersistentActivity
android.car.Car disableFeature
android.car.Car enableFeature
android.car.Car getContext
android.car.CarBluetoothManager connectDevices
android.car.CarBugreportManager cancelBugreport
android.car.CarBugreportManager requestBugreport
android.car.CarBugreportManager requestBugreportForTesting
android.car.CarOccupantZoneManager assignProfileUserToOccupantZone
android.car.CarOccupantZoneManager getAudioZoneIdForOccupant
android.car.CarOccupantZoneManager getDisplayIdForDriver
android.car.CarOccupantZoneManager getOccupantForAudioZoneId
android.car.CarProjectionManager addKeyEventHandler
android.car.CarProjectionManager getAvailableWifiChannels
android.car.CarProjectionManager getProjectionOptions
android.car.CarProjectionManager registerProjectionListener
android.car.CarProjectionManager registerProjectionRunner
android.car.CarProjectionManager registerProjectionStatusListener
android.car.CarProjectionManager releaseBluetoothProfileInhibit
android.car.CarProjectionManager removeKeyEventHandler
android.car.CarProjectionManager requestBluetoothProfileInhibit
android.car.CarProjectionManager resetProjectionAccessPointCredentials
android.car.CarProjectionManager startProjectionAccessPoint
android.car.CarProjectionManager stopProjectionAccessPoint
android.car.CarProjectionManager unregisterProjectionListener
android.car.CarProjectionManager unregisterProjectionRunner
android.car.CarProjectionManager unregisterProjectionStatusListener
android.car.CarProjectionManager updateProjectionStatus
android.car.cluster.ClusterHomeManager getClusterState
android.car.cluster.ClusterHomeManager registerClusterNavigationStateListener
android.car.cluster.ClusterHomeManager registerClusterStateListener
android.car.cluster.ClusterHomeManager reportState
android.car.cluster.ClusterHomeManager requestDisplay
android.car.cluster.ClusterHomeManager startFixedActivityModeAsUser
android.car.cluster.ClusterHomeManager stopFixedActivityMode
android.car.cluster.ClusterHomeManager unregisterClusterNavigationStateListener
android.car.cluster.ClusterHomeManager unregisterClusterStateListener
android.car.cluster.renderer.InstrumentClusterRenderingService getComponentFromPackage
android.car.content.pm.CarPackageManager controlTemporaryActivityBlockingBypassingAsUser
android.car.content.pm.CarPackageManager getCurrentDrivingSafetyRegion
android.car.content.pm.CarPackageManager getSupportedDrivingSafetyRegionsForActivityAsUser
android.car.drivingstate.CarUxRestrictionsManager getConfigs
android.car.drivingstate.CarUxRestrictionsManager getRestrictionMode
android.car.drivingstate.CarUxRestrictionsManager getStagedConfigs
android.car.drivingstate.CarUxRestrictionsManager saveUxRestrictionsConfigurationForNextBoot
android.car.drivingstate.CarUxRestrictionsManager setRestrictionMode
android.car.evs.CarEvsManager clearStatusListener
android.car.evs.CarEvsManager generateSessionToken
android.car.evs.CarEvsManager getCurrentStatus
android.car.evs.CarEvsManager isSupported
android.car.evs.CarEvsManager returnFrameBuffer
android.car.evs.CarEvsManager setStatusListener
android.car.evs.CarEvsManager startActivity
android.car.evs.CarEvsManager startVideoStream
android.car.evs.CarEvsManager stopActivity
android.car.evs.CarEvsManager stopVideoStream
android.car.experimental.CarDriverDistractionManager addDriverDistractionChangeListener
android.car.experimental.CarDriverDistractionManager getLastDistractionEvent
android.car.experimental.CarDriverDistractionManager removeDriverDistractionChangeListener
android.car.hardware.CarSensorManager registerListener
android.car.hardware.power.CarPowerManager addPowerPolicyListener
android.car.hardware.power.CarPowerManager applyPowerPolicy
android.car.hardware.power.CarPowerManager clearListener
android.car.hardware.power.CarPowerManager getCurrentPowerPolicy
android.car.hardware.power.CarPowerManager getPowerState
android.car.hardware.power.CarPowerManager removePowerPolicyListener
android.car.hardware.power.CarPowerManager requestShutdownOnNextSuspend
android.car.hardware.power.CarPowerManager scheduleNextWakeupTime
android.car.hardware.power.CarPowerManager setListener
android.car.hardware.power.CarPowerManager setListenerWithCompletion
android.car.hardware.power.CarPowerManager setPowerPolicyGroup
android.car.input.CarInputManager injectKeyEvent
android.car.input.CarInputManager requestInputEventCapture
android.car.media.CarAudioManager clearZoneIdForUid
android.car.media.CarAudioManager createAudioPatch
android.car.media.CarAudioManager getAudioZoneIds
android.car.media.CarAudioManager getExternalSources
android.car.media.CarAudioManager getGroupMaxVolume
android.car.media.CarAudioManager getGroupMinVolume
android.car.media.CarAudioManager getGroupVolume
android.car.media.CarAudioManager getInputDevicesForZoneId
android.car.media.CarAudioManager getOutputDeviceForUsage
android.car.media.CarAudioManager getUsagesForVolumeGroupId
android.car.media.CarAudioManager getVolumeGroupCount
android.car.media.CarAudioManager getVolumeGroupIdForUsage
android.car.media.CarAudioManager getZoneIdForUid
android.car.media.CarAudioManager isPlaybackOnVolumeGroupActive
android.car.media.CarAudioManager isVolumeGroupMuted
android.car.media.CarAudioManager releaseAudioPatch
android.car.media.CarAudioManager setBalanceTowardRight
android.car.media.CarAudioManager setFadeTowardFront
android.car.media.CarAudioManager setGroupVolume
android.car.media.CarAudioManager setVolumeGroupMute
android.car.media.CarAudioManager setZoneIdForUid
android.car.media.CarMediaManager addMediaSourceListener
android.car.media.CarMediaManager getLastMediaSources
android.car.media.CarMediaManager getMediaSource
android.car.media.CarMediaManager isIndependentPlaybackConfig
android.car.media.CarMediaManager removeMediaSourceListener
android.car.media.CarMediaManager setIndependentPlaybackConfig
android.car.media.CarMediaManager setMediaSource
android.car.navigation.CarNavigationStatusManager getInstrumentClusterInfo
android.car.navigation.CarNavigationStatusManager sendEvent
android.car.navigation.CarNavigationStatusManager sendNavigationStateChange
android.car.occupantawareness.OccupantAwarenessManager getCapabilityForRole
android.car.occupantawareness.OccupantAwarenessManager registerChangeCallback
android.car.occupantawareness.OccupantAwarenessManager unregisterChangeCallback
android.car.storagemonitoring.CarStorageMonitoringManager getAggregateIoStats
android.car.storagemonitoring.CarStorageMonitoringManager getBootIoStats
android.car.storagemonitoring.CarStorageMonitoringManager getIoStatsDeltas
android.car.storagemonitoring.CarStorageMonitoringManager getPreEolIndicatorStatus
android.car.storagemonitoring.CarStorageMonitoringManager getShutdownDiskWriteAmount
android.car.storagemonitoring.CarStorageMonitoringManager getWearEstimate
android.car.storagemonitoring.CarStorageMonitoringManager getWearEstimateHistory
android.car.storagemonitoring.CarStorageMonitoringManager registerListener
android.car.storagemonitoring.CarStorageMonitoringManager unregisterListener
android.car.telemetry.CarTelemetryManager addMetricsConfig
android.car.telemetry.CarTelemetryManager clearReportReadyListener
android.car.telemetry.CarTelemetryManager getAllFinishedReports
android.car.telemetry.CarTelemetryManager getFinishedReport
android.car.telemetry.CarTelemetryManager removeAllMetricsConfigs
android.car.telemetry.CarTelemetryManager removeMetricsConfig
android.car.telemetry.CarTelemetryManager setReportReadyListener
android.car.test.CarTestManager startCarService
android.car.test.CarTestManager stopCarService
android.car.user.CarUserManager addListener
android.car.user.CarUserManager createGuest
android.car.user.CarUserManager createUser
android.car.user.CarUserManager getUserIdentificationAssociation
android.car.user.CarUserManager isValidUser
android.car.user.CarUserManager logoutUser
android.car.user.CarUserManager removeListener
android.car.user.CarUserManager removeUser
android.car.user.CarUserManager setUserIdentificationAssociation
android.car.user.CarUserManager setUserSwitchUiCallback
android.car.user.CarUserManager switchUser
android.car.user.CarUserManager updatePreCreatedUsers
android.car.user.ExperimentalCarUserManager createDriver
android.car.user.ExperimentalCarUserManager createPassenger
android.car.user.ExperimentalCarUserManager getAllDrivers
android.car.user.ExperimentalCarUserManager getPassengers
android.car.user.ExperimentalCarUserManager startPassenger
android.car.user.ExperimentalCarUserManager stopPassenger
android.car.user.ExperimentalCarUserManager switchDriver
android.car.userlib.UserHelper grantAdminPermissions
android.car.vms.VmsClient getAvailableLayers
android.car.vms.VmsClient getProviderDescription
android.car.vms.VmsClient getSubscriptionState
android.car.vms.VmsClient isMonitoringEnabled
android.car.vms.VmsClient publishPacket
android.car.vms.VmsClient registerProvider
android.car.vms.VmsClient setMonitoringEnabled
android.car.vms.VmsClient setProviderOfferings
android.car.vms.VmsClient setSubscriptions
android.car.vms.VmsClient unregisterProvider
android.car.vms.VmsClientManager registerVmsClientCallback
android.car.vms.VmsClientManager unregisterVmsClientCallback
android.car.watchdog.CarWatchdogManager addResourceOveruseListenerForSystem
android.car.watchdog.CarWatchdogManager getAllResourceOveruseStats
android.car.watchdog.CarWatchdogManager getPackageKillableStatesAsUser
android.car.watchdog.CarWatchdogManager getResourceOveruseConfigurations
android.car.watchdog.CarWatchdogManager getResourceOveruseStatsForUserPackage
android.car.watchdog.CarWatchdogManager registerClient
android.car.watchdog.CarWatchdogManager removeResourceOveruseListenerForSystem
android.car.watchdog.CarWatchdogManager setKillablePackageAsUser
android.car.watchdog.CarWatchdogManager setResourceOveruseConfigurations
android.car.watchdog.CarWatchdogManager tellClientAlive
android.car.watchdog.CarWatchdogManager unregisterClient
android.companion.CompanionDeviceManager associate
android.companion.CompanionDeviceManager canPairWithoutPrompt
android.companion.CompanionDeviceManager getAllAssociations
android.companion.CompanionDeviceManager isDeviceAssociatedForWifiConnection
android.companion.CompanionDeviceManager startObservingDevicePresence
android.companion.CompanionDeviceManager stopObservingDevicePresence
android.content.AttributionSource getRenouncedPermissions
android.content.AttributionSource$Builder setRenouncedPermissions
android.content.ClipboardManager getPrimaryClipSource
android.content.ClipboardManager setPrimaryClipAsPackage
android.content.ContentProvider bulkInsert
android.content.ContentProvider canonicalize
android.content.ContentProvider checkUriPermission
android.content.ContentProvider delete
android.content.ContentProvider insert
android.content.ContentProvider openAssetFile
android.content.ContentProvider openFile
android.content.ContentProvider openTypedAssetFile
android.content.ContentProvider query
android.content.ContentProvider refresh
android.content.ContentProvider uncanonicalize
android.content.ContentProvider update
android.content.ContentProviderClient checkUriPermission
android.content.ContentProviderClient setDetectNotResponding
android.content.ContentResolver checkUriPermission
android.content.ContentResolver getCache
android.content.ContentResolver putCache
android.content.Context bindServiceAsUser
android.content.Context registerReceiverAsUser
android.content.Context registerReceiverForAllUsers
android.content.Context removeStickyBroadcast
android.content.Context removeStickyBroadcastAsUser
android.content.Context sendBroadcastAsUser
android.content.Context sendOrderedBroadcastAsUser
android.content.Context sendStickyBroadcast
android.content.Context sendStickyBroadcastAsUser
android.content.Context sendStickyOrderedBroadcast
android.content.Context sendStickyOrderedBroadcastAsUser
android.content.Context startActivitiesAsUser
android.content.Context startActivityAsUser
android.content.Context startForegroundServiceAsUser
android.content.Context startServiceAsUser
android.content.Context stopServiceAsUser
android.content.ContextParams getRenouncedPermissions