Home
last modified time | relevance | path

Searched refs:requestPropValue (Results 1 – 3 of 3) sorted by relevance

/packages/services/Car/tests/carservice_unit_test/src/com/android/car/hal/fakevhal/
DFakeVehicleStubUnitTest.java309 HalPropValue requestPropValue = new HalPropValueBuilder(/* isAidl= */ true) in testCustomFilesOneParseSuccessOneParseFailure() local
316 expect.that(fakeVehicleStub.get(requestPropValue).getPropId()) in testCustomFilesOneParseSuccessOneParseFailure()
318 expect.that(fakeVehicleStub.get(requestPropValue).getFloatValue(0)).isEqualTo(200); in testCustomFilesOneParseSuccessOneParseFailure()
326 HalPropValue requestPropValue = new HalPropValueBuilder(/* isAidl= */ true) in testGetMethodPropIdNotSupported() local
333 () -> fakeVehicleStub.get(requestPropValue)); in testGetMethodPropIdNotSupported()
349 HalPropValue requestPropValue = new HalPropValueBuilder(/* isAidl= */ true) in testGetMethodNoReadPermission() local
356 () -> fakeVehicleStub.get(requestPropValue)); in testGetMethodNoReadPermission()
369 HalPropValue requestPropValue = new HalPropValueBuilder(/* isAidl= */ true) in testGetMethodPropIdIsGlobalHasNoDefaultValueAreaIdIgnored() local
375 () -> fakeVehicleStub.get(requestPropValue)); in testGetMethodPropIdIsGlobalHasNoDefaultValueAreaIdIgnored()
393 HalPropValue requestPropValue = new HalPropValueBuilder(/* isAidl= */ true) in testGetMethodGlobalPropWithAreaIdNotZero() local
[all …]
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/
DHidlVehicleStubUnitTest.java171 VehiclePropValue requestPropValue = new VehiclePropValue(); in testGetAllPropConfigsHidlMultipleRequests() local
172 requestPropValue.prop = VHAL_PROP_SUPPORTED_PROPERTY_IDS; in testGetAllPropConfigsHidlMultipleRequests()
193 }).when(mHidlVehicle).get(eq(requestPropValue), any()); in testGetAllPropConfigsHidlMultipleRequests()
/packages/services/Car/cpp/vhal/client/test/
DHidlVhalClientTest.cpp67 Return<void> get(const VehiclePropValue& requestPropValue, IVehicle::get_cb callback) override { in get() argument
68 mRequestPropValue = requestPropValue; in get()