Home
last modified time | relevance | path

Searched refs:tokenHandle (Results 1 – 5 of 5) sorted by relevance

/aosp12/frameworks/base/core/java/com/android/internal/widget/
H A DLockSettingsInternal.java89 long tokenHandle, byte[] token, int userId); in setLockCredentialWithToken() argument
91 public abstract boolean unlockUserWithToken(long tokenHandle, byte[] token, int userId); in unlockUserWithToken() argument
H A DLockPatternUtils.java1411 long tokenHandle, byte[] token, int userHandle) { in setLockCredentialWithToken() argument
1419 return localService.setLockCredentialWithToken(credential, tokenHandle, token, userHandle); in setLockCredentialWithToken()
1432 public boolean unlockUserWithToken(long tokenHandle, byte[] token, int userId) { in unlockUserWithToken() argument
1433 return getLockSettingsInternal().unlockUserWithToken(tokenHandle, token, userId); in unlockUserWithToken()
/aosp12/frameworks/hardware/interfaces/bufferhub/1.0/vts/functional/
H A DVtsHalBufferHubV1_0TargetTest.cpp272 native_handle_t* tokenHandle = native_handle_create(/*numFds=*/0, /*numInts=*/2); in TEST_F() local
273 tokenHandle->data[0] = 0; in TEST_F()
275 tokenHandle->data[1] = 42; in TEST_F()
277 hidl_handle invalidToken(tokenHandle); in TEST_F()
/aosp12/frameworks/base/services/core/java/com/android/server/locksettings/
H A DLockSettingsService.java3318 private boolean setLockCredentialWithToken(LockscreenCredential credential, long tokenHandle,
3326 credential, tokenHandle, token, userId);
3346 long tokenHandle, byte[] token, int userId) {
3349 getGateKeeperService(), tokenHandle, token, userId);
3368 private boolean unlockUserWithToken(long tokenHandle, byte[] token, int userId) {
3375 tokenHandle, token, userId);
3660 public boolean setLockCredentialWithToken(LockscreenCredential credential, long tokenHandle,
3668 credential, tokenHandle, token, userId)) {
3676 public boolean unlockUserWithToken(long tokenHandle, byte[] token, int userId) {
3677 return LockSettingsService.this.unlockUserWithToken(tokenHandle, token, userId);
/aosp12/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
H A DDevicePolicyManagerService.java5141 private boolean resetPasswordInternal(String password, long tokenHandle, byte[] token,
5190 if (tokenHandle == 0 || token == null) {
5196 if (!mLockPatternUtils.setLockCredentialWithToken(newCredential, tokenHandle,