Home
last modified time | relevance | path

Searched refs:sourceGroupId (Results 1 – 3 of 3) sorted by relevance

/packages/modules/Permission/PermissionController/src/com/android/permissioncontroller/safetycenter/ui/
DSafetyCenterSubpageFragment.kt36 private lateinit var sourceGroupId: String variable in com.android.permissioncontroller.safetycenter.ui.SafetyCenterSubpageFragment
46 sourceGroupId = requireArguments().getString(SOURCE_GROUP_ID_KEY)!! in onCreatePreferences()
66 logger.groupId = sourceGroupId in configureInteractionLogger()
71 safetyCenterViewModel.pageOpen(sourceGroupId) in onResume()
76 val entryGroup = uiData?.getMatchingGroup(sourceGroupId) in renderSafetyCenterData()
78 Log.w(TAG, "$sourceGroupId doesn't match any of the existing SafetySourcesGroup IDs") in renderSafetyCenterData()
93 Log.w(TAG, "$sourceGroupId doesn't have any matching illustration") in setupIllustration()
104 Log.w(TAG, "$sourceGroupId doesn't have any matching footer") in setupFooter()
115 val subpageIssues = uiData?.getMatchingIssues(sourceGroupId) in updateSafetyCenterIssues()
116 val subpageDismissedIssues = uiData?.getMatchingDismissedIssues(sourceGroupId) in updateSafetyCenterIssues()
[all …]
/packages/modules/Permission/PermissionController/src/com/android/permissioncontroller/safetycenter/ui/model/
DLiveSafetyCenterViewModel.kt124 override fun pageOpen(sourceGroupId: String) { in <lambda>()
126 val safetySourceIds = getSafetySourceIdsToRefresh(sourceGroupId) in <lambda>()
128 Log.w(TAG, "$sourceGroupId has no matching source IDs, so refreshing all sources") in <lambda>()
155 private fun getSafetySourceIdsToRefresh(sourceGroupId: String): List<String>? { in <lambda>()
158 it.id == sourceGroupId in <lambda>()
DSafetyCenterViewModel.kt80 @RequiresApi(UPSIDE_DOWN_CAKE) abstract fun pageOpen(sourceGroupId: String)