Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DKeyguardSecurityContainer.java218 private void showAlmostAtWipeDialog(int attempts, int remaining, int userType) { in showAlmostAtWipeDialog() argument
220 switch (userType) { in showAlmostAtWipeDialog()
237 private void showWipeDialog(int attempts, int userType) { in showWipeDialog() argument
239 switch (userType) { in showWipeDialog()
275 int userType = USER_TYPE_PRIMARY; in reportFailedUnlockAttempt() local
279 userType = USER_TYPE_SECONDARY_USER; in reportFailedUnlockAttempt()
282 userType = USER_TYPE_WORK_PROFILE; in reportFailedUnlockAttempt()
285 showAlmostAtWipeDialog(failedAttempts, remainingBeforeWipe, userType); in reportFailedUnlockAttempt()
289 showWipeDialog(failedAttempts, userType); in reportFailedUnlockAttempt()
/frameworks/base/telephony/java/com/android/internal/telephony/
DCallerInfo.java109 public long userType; field in CallerInfo
162 userType = USER_TYPE_CURRENT; in CallerInfo()
182 info.userType = USER_TYPE_CURRENT; in getCallerInfo()
236 info.userType = USER_TYPE_WORK; in getCallerInfo()
673 .append("\nuserType " + userType) in toString()
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/suggestions/
DSuggestionParser.java239 for (String userType : requiredUser.split("\\|")) { in satisifesRequiredUserType()
241 && META_DATA_PRIMARY_USER_TYPE_VALUE.equals(userType); in satisifesRequiredUserType()
243 && META_DATA_ADMIN_USER_TYPE_VALUE.equals(userType); in satisifesRequiredUserType()
245 && META_DATA_GUEST_USER_TYPE_VALUE.equals(userType); in satisifesRequiredUserType()
247 && META_DATA_RESTRICTED_USER_TYPE_VALUE.equals(userType); in satisifesRequiredUserType()