Searched refs:getPropertyServiceRequests (Results 1 – 4 of 4) sorted by relevance
450 List<AsyncPropertyServiceRequest> getPropertyServiceRequests = new ArrayList<>(); in testGetCarPropertyValuesAsync_multipleRequests() local451 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() local519 mPropertyHalService.getCarPropertyValuesAsync(getPropertyServiceRequests, in testGetCarPropertyValuesAsync_linkToDeath()535 List<AsyncPropertyServiceRequest> getPropertyServiceRequests = mock(List.class); in testGetCarPropertyValuesAsync_binderDiedBeforeLinkToDeath() local538 mPropertyHalService.getCarPropertyValuesAsync(getPropertyServiceRequests, in testGetCarPropertyValuesAsync_binderDiedBeforeLinkToDeath()549 List<AsyncPropertyServiceRequest> getPropertyServiceRequests = mock(List.class); in testGetCarPropertyValuesAsync_unlinkToDeath_onBinderDied() local550 mPropertyHalService.getCarPropertyValuesAsync(getPropertyServiceRequests, in testGetCarPropertyValuesAsync_unlinkToDeath_onBinderDied()[all …]
1101 List<AsyncPropertyServiceRequest> getPropertyServiceRequests = in getPropertiesAsync() local1103 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()
1163 List<AsyncPropertyServiceRequest> getPropertyServiceRequests = in testOnGetValueResult_onSuccessMultipleRequests() local1168 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()
3254 List<AsyncPropertyServiceRequest> getPropertyServiceRequests = new ArrayList<>( in getPropertiesAsync() local3261 getPropertyServiceRequests.add(AsyncPropertyServiceRequest.newGetAsyncRequest( in getPropertiesAsync()3273 getPropertyServiceRequests), mAsyncPropertyResultCallback, timeoutInMs); in getPropertiesAsync()