Home | History | Annotate | Download | only in widget

Lines Matching refs:StrongAuthTracker

1367         requireStrongAuth(StrongAuthTracker.SOME_AUTH_REQUIRED_AFTER_USER_REQUEST, userId);
1375 * @param strongAuthReason a combination of {@link StrongAuthTracker.StrongAuthFlags} indicating
1379 public void requireStrongAuth(@StrongAuthTracker.StrongAuthFlags int strongAuthReason,
1424 public void registerStrongAuthTracker(final StrongAuthTracker strongAuthTracker) {
1426 getLockSettings().registerStrongAuthTracker(strongAuthTracker.mStub);
1428 throw new RuntimeException("Could not register StrongAuthTracker");
1432 public void unregisterStrongAuthTracker(final StrongAuthTracker strongAuthTracker) {
1434 getLockSettings().unregisterStrongAuthTracker(strongAuthTracker.mStub);
1436 Log.e(TAG, "Could not unregister StrongAuthTracker", e);
1441 * @see StrongAuthTracker#getStrongAuthForUser
1448 return StrongAuthTracker.getDefaultFlags(mContext);
1453 * @see StrongAuthTracker#isTrustAllowedForUser
1456 return getStrongAuthForUser(userId) == StrongAuthTracker.STRONG_AUTH_NOT_REQUIRED;
1460 * @see StrongAuthTracker#isFingerprintAllowedForUser
1463 return (getStrongAuthForUser(userId) & ~StrongAuthTracker.ALLOWING_FINGERPRINT) == 0;
1609 public static class StrongAuthTracker {
1665 public StrongAuthTracker(Context context) {
1674 public StrongAuthTracker(Context context, Looper looper) {