Home
last modified time | relevance | path

Searched refs:setUserIdentificationAssociation (Results 1 – 8 of 8) sorted by relevance

/aosp12/packages/services/Car/tests/carservice_unit_test/src/com/android/car/user/
H A DCarUserManagerUnitTest.java478 () -> mMgr.setUserIdentificationAssociation(null, new int[] {42})); in testSetUserIdentificationAssociation_nullTypes()
484 () -> mMgr.setUserIdentificationAssociation(new int[0], new int[] {42})); in testSetUserIdentificationAssociation_emptyTypes()
490 () -> mMgr.setUserIdentificationAssociation(new int[] {42}, null)); in testSetUserIdentificationAssociation_nullValues()
496 () -> mMgr.setUserIdentificationAssociation(new int[] {42}, new int[0])); in testSetUserIdentificationAssociation_emptyValues()
502 () -> mMgr.setUserIdentificationAssociation(new int[] {1}, new int[] {2, 3})); in testSetUserIdentificationAssociation_sizeMismatch()
510 .setUserIdentificationAssociation(anyInt(), same(types), same(values), notNull()); in testSetUserIdentificationAssociation_remoteException()
514 mMgr.setUserIdentificationAssociation(types, values); in testSetUserIdentificationAssociation_remoteException()
528 .setUserIdentificationAssociation(anyInt(), same(types), same(values), notNull()); in testSetUserIdentificationAssociation_runtimeException()
532 mMgr.setUserIdentificationAssociation(types, values); in testSetUserIdentificationAssociation_runtimeException()
555 .setUserIdentificationAssociation(anyInt(), same(types), same(values), notNull()); in testSetUserIdentificationAssociation_ok()
[all …]
H A DCarUserServiceTest.java2053 .setUserIdentificationAssociation(mAsyncCallTimeoutMs, in testSetUserIdentificationAssociation_nullTypes()
2060 .setUserIdentificationAssociation(mAsyncCallTimeoutMs, in testSetUserIdentificationAssociation_emptyTypes()
2067 .setUserIdentificationAssociation(mAsyncCallTimeoutMs, in testSetUserIdentificationAssociation_nullValues()
2073 .setUserIdentificationAssociation(mAsyncCallTimeoutMs, in testSetUserIdentificationAssociation_sizeMismatch()
2080 .setUserIdentificationAssociation(mAsyncCallTimeoutMs, in testSetUserIdentificationAssociation_nullFuture()
2088 .setUserIdentificationAssociation(mAsyncCallTimeoutMs, in testSetUserIdentificationAssociation_noPermission()
2096 .setUserIdentificationAssociation(mAsyncCallTimeoutMs, in testSetUserIdentificationAssociation_noCurrentUser()
2106 mCarUserService.setUserIdentificationAssociation(mAsyncCallTimeoutMs, types, values, in testSetUserIdentificationAssociation_halNotSupported()
2122 mCarUserService.setUserIdentificationAssociation(mAsyncCallTimeoutMs, types, values, in testSetUserIdentificationAssociation_halFailedWithErrorMessage()
2140 mCarUserService.setUserIdentificationAssociation(mAsyncCallTimeoutMs, types, values, in testSetUserIdentificationAssociation_halFailedWithoutErrorMessage()
[all …]
/aosp12/packages/services/Car/car-lib/src/android/car/
H A DICarUserService.aidl46 void setUserIdentificationAssociation(int timeoutMs, in int[] types, in int[] values, in setUserIdentificationAssociation() method
/aosp12/packages/services/Car/tests/CarSecurityPermissionTest/src/com/android/car/user/
H A DCarUserManagerPermissionTest.java155 () -> mCarUserManager.setUserIdentificationAssociation( in testSetUserIdentificationAssociationPermission()
/aosp12/packages/services/Car/car-lib/src/android/car/user/
H A DCarUserManager.java675 public AsyncFuture<UserIdentificationAssociationResponse> setUserIdentificationAssociation( in setUserIdentificationAssociation() method in CarUserManager
716 mService.setUserIdentificationAssociation(HAL_TIMEOUT_MS, types, values, future); in setUserIdentificationAssociation()
/aosp12/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/users/
H A DUserFragment.java296 .setUserIdentificationAssociation(new int[] { KEY_FOB } , new int[] { value }); in associateKeyFob()
/aosp12/packages/services/Car/service/src/com/android/car/
H A DCarShellCommand.java1847 .setUserIdentificationAssociation(types, values);
/aosp12/packages/services/Car/service/src/com/android/car/user/
H A DCarUserService.java1601 public void setUserIdentificationAssociation(int timeoutMs, in setUserIdentificationAssociation() method