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.java389 List<AsyncPropertyServiceRequest> getPropertyServiceRequests = new ArrayList<>(); in testGetCarPropertyValuesAsync_multipleRequests() local
390 getPropertyServiceRequests.add(GET_PROPERTY_SERVICE_REQUEST_1); in testGetCarPropertyValuesAsync_multipleRequests()
391 getPropertyServiceRequests.add(GET_PROPERTY_SERVICE_REQUEST_2); in testGetCarPropertyValuesAsync_multipleRequests()
394 mPropertyHalService.getCarPropertyValuesAsync(getPropertyServiceRequests, in testGetCarPropertyValuesAsync_multipleRequests()
457 List<AsyncPropertyServiceRequest> getPropertyServiceRequests = mock(List.class); in testGetCarPropertyValuesAsync_linkToDeath() local
458 mPropertyHalService.getCarPropertyValuesAsync(getPropertyServiceRequests, in testGetCarPropertyValuesAsync_linkToDeath()
474 List<AsyncPropertyServiceRequest> getPropertyServiceRequests = mock(List.class); in testGetCarPropertyValuesAsync_binderDiedBeforeLinkToDeath() local
477 mPropertyHalService.getCarPropertyValuesAsync(getPropertyServiceRequests, in testGetCarPropertyValuesAsync_binderDiedBeforeLinkToDeath()
488 List<AsyncPropertyServiceRequest> getPropertyServiceRequests = mock(List.class); in testGetCarPropertyValuesAsync_unlinkToDeath_onBinderDied() local
489 mPropertyHalService.getCarPropertyValuesAsync(getPropertyServiceRequests, in testGetCarPropertyValuesAsync_unlinkToDeath_onBinderDied()
[all …]
/packages/services/Car/service/src/com/android/car/
DCarPropertyService.java1019 List<AsyncPropertyServiceRequest> getPropertyServiceRequests = in getPropertiesAsync() local
1021 for (int i = 0; i < getPropertyServiceRequests.size(); i++) { in getPropertiesAsync()
1022 validateGetParameters(getPropertyServiceRequests.get(i).getPropertyId(), in getPropertiesAsync()
1023 getPropertyServiceRequests.get(i).getAreaId()); in getPropertiesAsync()
1025 mPropertyHalService.getCarPropertyValuesAsync(getPropertyServiceRequests, in getPropertiesAsync()
/packages/services/Car/tests/CarLibUnitTest/src/android/car/hardware/property/
DCarPropertyManagerUnitTest.java1159 List<AsyncPropertyServiceRequest> getPropertyServiceRequests = in testOnGetValueResult_onSuccessMultipleRequests() local
1164 assertThat(getPropertyServiceRequests.size()).isEqualTo(2); in testOnGetValueResult_onSuccessMultipleRequests()
1165 assertThat(getPropertyServiceRequests.get(0).getRequestId()).isEqualTo(0); in testOnGetValueResult_onSuccessMultipleRequests()
1166 assertThat(getPropertyServiceRequests.get(0).getPropertyId()).isEqualTo( in testOnGetValueResult_onSuccessMultipleRequests()
1168 assertThat(getPropertyServiceRequests.get(1).getRequestId()).isEqualTo(1); in testOnGetValueResult_onSuccessMultipleRequests()
1169 assertThat(getPropertyServiceRequests.get(1).getPropertyId()).isEqualTo( in testOnGetValueResult_onSuccessMultipleRequests()
/packages/services/Car/car-lib/src/android/car/hardware/property/
DCarPropertyManager.java3096 List<AsyncPropertyServiceRequest> getPropertyServiceRequests = new ArrayList<>( in getPropertiesAsync() local
3103 getPropertyServiceRequests.add(AsyncPropertyServiceRequest.newGetAsyncRequest( in getPropertiesAsync()
3115 getPropertyServiceRequests), mAsyncPropertyResultCallback, timeoutInMs); in getPropertiesAsync()