Home
last modified time | relevance | path

Searched refs:safetySourceIds (Results 1 – 9 of 9) sorted by relevance

/packages/modules/Permission/tests/utils/safetycenter/java/com/android/safetycenter/testing/
DSafetyCenterApisWithShellPermissions.kt88 safetySourceIds: List<String>? = null in SafetyCenterManager()
91 if (safetySourceIds != null) { in SafetyCenterManager()
92 refreshSafetySources(refreshReason, safetySourceIds) in SafetyCenterManager()
DSafetySourceReceiver.kt167 safetySourceIds: List<String>? = null, in SafetyCenterManager()
171 refreshSafetySourcesWithPermission(refreshReason, safetySourceIds) in SafetyCenterManager()
177 safetySourceIds: List<String>? = null in SafetyCenterManager()
179 refreshSafetySourcesWithPermission(refreshReason, safetySourceIds) in SafetyCenterManager()
/packages/modules/Permission/framework-s/java/android/safetycenter/config/
DSafetyCenterConfig.java156 Set<String> safetySourceIds = new HashSet<>(); in build() local
172 if (safetySourceIds.contains(sourceId)) { in build()
176 safetySourceIds.add(sourceId); in build()
/packages/modules/Permission/PermissionController/src/com/android/permissioncontroller/safetycenter/ui/model/
DLiveSafetyCenterViewModel.kt126 val safetySourceIds = getSafetySourceIdsToRefresh(sourceGroupId) in <lambda>() constant
127 if (safetySourceIds == null) { in <lambda>()
135 safetySourceIds in <lambda>()
/packages/modules/Permission/framework-s/java/android/safetycenter/
DSafetyCenterManager.java471 @RefreshReason int refreshReason, @NonNull List<String> safetySourceIds) { in refreshSafetySources() argument
477 requireNonNull(safetySourceIds, "safetySourceIds cannot be null"); in refreshSafetySources()
481 refreshReason, mContext.getUser().getIdentifier(), safetySourceIds); in refreshSafetySources()
DISafetyCenterManager.aidl80 … void refreshSpecificSafetySources(int refreshReason, int userId, in List<String> safetySourceIds); in refreshSpecificSafetySources() argument
/packages/modules/Permission/service/java/com/android/safetycenter/
DSafetyCenterBroadcastDispatcher.java101 @Nullable List<String> safetySourceIds) { in sendRefreshSafetySources() argument
120 safetySourceIds); in sendRefreshSafetySources()
DSafetyCenterService.java427 List<String> safetySourceIds) { in refreshSpecificSafetySources() argument
428 requireNonNull(safetySourceIds, "safetySourceIds cannot be null"); in refreshSpecificSafetySources()
438 startRefreshingSafetySourcesLocked(refreshReason, userId, safetySourceIds); in refreshSpecificSafetySources()
/packages/modules/Permission/tests/cts/safetycenter/src/android/safetycenter/cts/
DSafetyCenterManagerTest.kt1460 safetySourceIds = listOf(SOURCE_ID_1, SOURCE_ID_2) in refreshSafetySources_withSafetySourceIds_onlySpecifiedSourcesSendData()
1486 safetySourceIds = emptyList(), in refreshSafetySources_withEmptySafetySourceIds_noSourcesSendData()
1503 safetySourceIds = listOf(SOURCE_ID_1, SOURCE_ID_3) in refreshSafetySources_versionLessThanU_throws()