Home
last modified time | relevance | path

Searched refs:associationTypes (Results 1 – 7 of 7) sorted by relevance

/packages/services/Car/service/src/com/android/car/hal/
DUserHalService.java557 int type = request.associationTypes[i]; in getUserAssociation()
610 int expectedType = request.associationTypes[i]; in getUserAssociation()
624 int[] associationTypes = new int[response.numberAssociation]; in getUserAssociation() local
628 associationTypes[i] = association.type; in getUserAssociation()
638 Arrays.toString(associationTypes), Arrays.toString(associationValues)); in getUserAssociation()
678 int[] associationTypes = new int[request.numberAssociations]; in setUserAssociation() local
682 associationTypes[i] = association.type; in setUserAssociation()
689 Arrays.toString(associationTypes), Arrays.toString(associationValues)); in setUserAssociation()
768 int[] associationTypes = new int[response.numberAssociation]; in logSetUserAssociationResponse() local
772 associationTypes[i] = association.type; in logSetUserAssociationResponse()
[all …]
DUserHalHelper.java415 Objects.requireNonNull(request.associationTypes, "associationTypes must not be null"); in toHalPropValue()
418 checkArgument(request.numberAssociationTypes == request.associationTypes.length, in toHalPropValue()
428 int type = request.associationTypes[i]; in toHalPropValue()
713 request.associationTypes = EMPTY_INT_ARRAY; in emptyUserIdentificationGetRequest()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/hal/
DUserHalHelperTest.java388 request.associationTypes = null; in testUserIdentificationGetRequestToHalPropValue_nullAssociationTypes()
415 request.associationTypes = new int[]{CUSTOM_4 + 1}; in testUserIdentificationGetRequestToHalPropValue_invalidType()
427 request.associationTypes = new int[]{KEY_FOB}; in testUserIdentificationGetRequestToHalPropValue_missingRequestId()
440 request.associationTypes = new int[]{KEY_FOB, CUSTOM_1}; in testUserIdentificationGetRequestToHalPropValue_ok()
DUserHalServiceTest.java1365 request.associationTypes = new int[]{KEY_FOB, KEY_FOB}; in testGetUserAssociation_requestWithDuplicatedTypes()
1909 request.associationTypes = new int[]{KEY_FOB}; in replyToValidGetUserIdentificationRequest()
1928 request.associationTypes = new int[]{KEY_FOB}; in replyToValidGetUserIdentificationRequestWithException()
/packages/services/Car/service/src/com/android/car/user/
DCarUserService.java1584 ArrayList<Integer> associationTypes = new ArrayList<>(types.length); in getUserIdentificationAssociation() local
1586 associationTypes.add(types[i]); in getUserIdentificationAssociation()
1588 request.associationTypes = toIntArray(associationTypes); in getUserIdentificationAssociation()
/packages/services/Car/service/src/com/android/car/
DCarShellCommand.java2672 ArrayList<Integer> associationTypes = new ArrayList<>();
2694 associationTypes.add(type);
2697 request.associationTypes = toIntArray(associationTypes);
2701 int requestSize = request.associationTypes.length;
2718 types[i] = request.associationTypes[i];
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/user/
DBaseCarUserServiceTestCase.java1171 if (argument.associationTypes.length != mTypes.length) { in matches()
1177 if (argument.associationTypes[i] != mTypes[i]) { in matches()