Searched refs:hasCACerts (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
D | SecurityControllerImpl.java | 263 Boolean hasCACerts = mHasCACerts.get(mCurrentUserId); in hasCACertInCurrentUser() local 264 return hasCACerts != null && hasCACerts.booleanValue(); in hasCACertInCurrentUser() 271 Boolean hasCACerts = mHasCACerts.get(userId); in hasCACertInWorkProfile() 272 return hasCACerts != null && hasCACerts.booleanValue(); in hasCACertInWorkProfile() 417 boolean hasCACerts = !(conn.getService().getUserCaAliases().getList().isEmpty()); in doInBackground() 418 return new Pair<Integer, Boolean>(userId[0], hasCACerts); in doInBackground()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/ |
D | QSSecurityFooter.java | 145 final boolean hasCACerts = mSecurityController.hasCACertInCurrentUser(); in handleRefreshState() 153 mIsVisible = (isDeviceManaged && !isDemoDevice) || hasCACerts || hasCACertsInWorkProfile || in handleRefreshState() 157 hasCACerts, hasCACertsInWorkProfile, isNetworkLoggingEnabled, vpnName, in handleRefreshState() 176 boolean hasCACerts, boolean hasCACertsInWorkProfile, boolean isNetworkLoggingEnabled, in getFooterText() argument 180 if (hasCACerts || hasCACertsInWorkProfile || isNetworkLoggingEnabled) { in getFooterText() 222 if (hasCACerts) { in getFooterText() 258 final boolean hasCACerts = mSecurityController.hasCACertInCurrentUser(); in createDialog() 286 CharSequence caCertsMessage = getCaCertsMessage(isDeviceManaged, hasCACerts, in createDialog() 380 protected CharSequence getCaCertsMessage(boolean isDeviceManaged, boolean hasCACerts, in getCaCertsMessage() argument 382 if (!(hasCACerts || hasCACertsInWorkProfile)) return null; in getCaCertsMessage()
|