HomeSort by relevance Sort by last modified time
    Searched refs:mGateKeeperService (Results 1 - 5 of 5) sorted by null

  /frameworks/base/services/tests/servicestests/src/com/android/server/locksettings/
LockSettingsServiceTests.java 94 assertEquals(0, mGateKeeperService.getSecureUserId(PRIMARY_USER_ID));
103 final long primarySid = mGateKeeperService.getSecureUserId(PRIMARY_USER_ID);
104 final long profileSid = mGateKeeperService.getSecureUserId(MANAGED_PROFILE_USER_ID);
106 mGateKeeperService.getSecureUserId(TURNED_OFF_PROFILE_USER_ID);
115 mGateKeeperService.clearAuthToken(MANAGED_PROFILE_USER_ID);
116 mGateKeeperService.clearAuthToken(TURNED_OFF_PROFILE_USER_ID);
123 assertNotNull(mGateKeeperService.getAuthToken(MANAGED_PROFILE_USER_ID));
124 assertEquals(profileSid, mGateKeeperService.getSecureUserId(MANAGED_PROFILE_USER_ID));
127 assertNull(mGateKeeperService.getAuthToken(TURNED_OFF_PROFILE_USER_ID));
138 assertEquals(profileSid, mGateKeeperService.getSecureUserId(MANAGED_PROFILE_USER_ID))
    [all...]
SyntheticPasswordTests.java 62 mGateKeeperService, mUserManager);
63 AuthenticationToken authToken = manager.newSyntheticPasswordAndSid(mGateKeeperService, null,
65 long handle = manager.createPasswordBasedSyntheticPassword(mGateKeeperService, PASSWORD,
69 AuthenticationResult result = manager.unwrapPasswordBasedSyntheticPassword(mGateKeeperService, handle, PASSWORD, USER_ID);
72 result = manager.unwrapPasswordBasedSyntheticPassword(mGateKeeperService, handle, BADPASSWORD, USER_ID);
94 long sid = mGateKeeperService.getSecureUserId(PRIMARY_USER_ID);
100 assertEquals(sid, mGateKeeperService.getSecureUserId(PRIMARY_USER_ID));
123 long sid = mGateKeeperService.getSecureUserId(PRIMARY_USER_ID);
126 mGateKeeperService.clearSecureUserId(PRIMARY_USER_ID);
129 assertEquals(sid, mGateKeeperService.getSecureUserId(PRIMARY_USER_ID))
    [all...]
LockSettingsServiceTestable.java 115 mGateKeeperService = gatekeeper;
131 if (mGateKeeperService.getSecureUserId(userId) == 0) {
BaseLockSettingsServiceTests.java 72 FakeGateKeeperService mGateKeeperService;
85 mGateKeeperService = new FakeGateKeeperService();
109 mSpManager = new MockSyntheticPasswordManager(mContext, mStorage, mGateKeeperService,
112 mGateKeeperService, mKeyStore, setUpStorageManagerMock(), mActivityManager,
  /frameworks/base/services/core/java/com/android/server/locksettings/
LockSettingsService.java 173 protected IGateKeeperService mGateKeeperService;
    [all...]

Completed in 632 milliseconds