Searched refs:hasCACerts (Results 1 – 2 of 2) sorted by relevance
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/ |
H A D | QSSecurityFooterUtils.java | 211 final boolean hasCACerts = securityModel.getHasCACertInCurrentUser(); in getButtonConfig() 227 || hasCACerts in getButtonConfig() 277 return getManagedDeviceFooterText(hasCACerts, hasCACertsInWorkProfile, in getFooterText() 280 return getManagedAndPersonalProfileFooterText(hasWorkProfile, hasCACerts, in getFooterText() 289 if (hasCACerts || hasCACertsInWorkProfile || isNetworkLoggingEnabled) { in getManagedDeviceFooterText() 366 if (hasCACerts || (hasCACertsInWorkProfile && isWorkProfileOn)) { in getManagedAndPersonalProfileFooterText() 368 hasCACerts, hasCACertsInWorkProfile, workProfileOrganizationName, in getManagedAndPersonalProfileFooterText() 397 if (hasCACerts) { in getMonitoringText() 490 final boolean hasCACerts = mSecurityController.hasCACertInCurrentUser(); in createOrganizationDialogView() 517 CharSequence caCertsMessage = getCaCertsMessage(isDeviceManaged, hasCACerts, in createOrganizationDialogView() [all …]
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
H A D | SecurityControllerImpl.java | 308 Boolean hasCACerts = mHasCACerts.get(mCurrentUserId); in hasCACertInCurrentUser() local 309 return hasCACerts != null && hasCACerts.booleanValue(); in hasCACertInCurrentUser() 316 Boolean hasCACerts = mHasCACerts.get(userId); in hasCACertInWorkProfile() 317 return hasCACerts != null && hasCACerts.booleanValue(); in hasCACertInWorkProfile() 400 boolean hasCACerts = !(conn.getService().getUserCaAliases().getList().isEmpty()); in refreshCACerts() 401 idWithCert = new Pair<Integer, Boolean>(userId, hasCACerts); in refreshCACerts()
|