Home
last modified time | relevance | path

Searched refs:getPropertyServiceRequests (Results 1 – 4 of 4) sorted by relevance

/packages/services/Car/tests/carservice_unit_test/src/com/android/car/hal/
DPropertyHalServiceTest.java450 List<AsyncPropertyServiceRequest> getPropertyServiceRequests = new ArrayList<>(); in testGetCarPropertyValuesAsync_multipleRequests() local
451 getPropertyServiceRequests.add(GET_PROPERTY_SERVICE_REQUEST_1); in testGetCarPropertyValuesAsync_multipleRequests()
452 getPropertyServiceRequests.add(GET_PROPERTY_SERVICE_REQUEST_2); in testGetCarPropertyValuesAsync_multipleRequests()
455 mPropertyHalService.getCarPropertyValuesAsync(getPropertyServiceRequests, in testGetCarPropertyValuesAsync_multipleRequests()
518 List<AsyncPropertyServiceRequest> getPropertyServiceRequests = mock(List.class); in testGetCarPropertyValuesAsync_linkToDeath() local
519 mPropertyHalService.getCarPropertyValuesAsync(getPropertyServiceRequests, in testGetCarPropertyValuesAsync_linkToDeath()
535 List<AsyncPropertyServiceRequest> getPropertyServiceRequests = mock(List.class); in testGetCarPropertyValuesAsync_binderDiedBeforeLinkToDeath() local
538 mPropertyHalService.getCarPropertyValuesAsync(getPropertyServiceRequests, in testGetCarPropertyValuesAsync_binderDiedBeforeLinkToDeath()
549 List<AsyncPropertyServiceRequest> getPropertyServiceRequests = mock(List.class); in testGetCarPropertyValuesAsync_unlinkToDeath_onBinderDied() local
550 mPropertyHalService.getCarPropertyValuesAsync(getPropertyServiceRequests, in testGetCarPropertyValuesAsync_unlinkToDeath_onBinderDied()
[all …]
/packages/services/Car/service/src/com/android/car/
DCarPropertyService.java1101 List<AsyncPropertyServiceRequest> getPropertyServiceRequests = in getPropertiesAsync() local
1103 for (int i = 0; i < getPropertyServiceRequests.size(); i++) { in getPropertiesAsync()
1104 validateGetParameters(getPropertyServiceRequests.get(i).getPropertyId(), in getPropertiesAsync()
1105 getPropertyServiceRequests.get(i).getAreaId()); in getPropertiesAsync()
1107 mPropertyHalService.getCarPropertyValuesAsync(getPropertyServiceRequests, in getPropertiesAsync()
/packages/services/Car/tests/CarLibUnitTest/src/android/car/hardware/property/
DCarPropertyManagerUnitTest.java1163 List<AsyncPropertyServiceRequest> getPropertyServiceRequests = in testOnGetValueResult_onSuccessMultipleRequests() local
1168 assertThat(getPropertyServiceRequests.size()).isEqualTo(2); in testOnGetValueResult_onSuccessMultipleRequests()
1169 assertThat(getPropertyServiceRequests.get(0).getRequestId()).isEqualTo(0); in testOnGetValueResult_onSuccessMultipleRequests()
1170 assertThat(getPropertyServiceRequests.get(0).getPropertyId()).isEqualTo( in testOnGetValueResult_onSuccessMultipleRequests()
1172 assertThat(getPropertyServiceRequests.get(1).getRequestId()).isEqualTo(1); in testOnGetValueResult_onSuccessMultipleRequests()
1173 assertThat(getPropertyServiceRequests.get(1).getPropertyId()).isEqualTo( in testOnGetValueResult_onSuccessMultipleRequests()
/packages/services/Car/car-lib/src/android/car/hardware/property/
DCarPropertyManager.java3254 List<AsyncPropertyServiceRequest> getPropertyServiceRequests = new ArrayList<>( in getPropertiesAsync() local
3261 getPropertyServiceRequests.add(AsyncPropertyServiceRequest.newGetAsyncRequest( in getPropertiesAsync()
3273 getPropertyServiceRequests), mAsyncPropertyResultCallback, timeoutInMs); in getPropertiesAsync()