Home
last modified time | relevance | path

Searched refs:injectHalError (Results 1 – 9 of 9) sorted by relevance

/packages/services/Car/tests/libvehiclenetwork-native-test/
DIVehicleNetworkMockedTest.cpp99 ASSERT_EQ(NO_ERROR, mVN->injectHalError(ERROR_CODE, 0, OPERATION_CODE)); in TEST_F()
111 ASSERT_EQ(NO_ERROR, mVN->injectHalError(ERROR_CODE, TEST_PROPERTY_INT32, OPERATION_CODE)); in TEST_F()
/packages/services/Car/tests/libvehiclenetwork-java-test/src/com/android/car/vehiclenetwork/libtest/
DVehicleNetworkMockedTest.java312 mVehicleNetwork.injectHalError(ERROR_CODE, 0, ERROR_OPERATION); in testGlobalErrorListening()
314 mVehicleNetwork.injectHalError(ERROR_CODE, CUSTOM_PROPERTY_INT32, ERROR_OPERATION); in testGlobalErrorListening()
326 mVehicleNetwork.injectHalError(ERROR_CODE, CUSTOM_PROPERTY_INT32, ERROR_OPERATION); in testPropertyErrorListening()
/packages/services/Car/libvehiclenetwork/java/src/com/android/car/vehiclenetwork/
DIVehicleNetwork.aidl44 void injectHalError(int errorCode, int property, int operation) = 8; in injectHalError() method
DVehicleNetwork.java504 public synchronized void injectHalError(int errorCode, int property, int operation) { in injectHalError() method in VehicleNetwork
506 mService.injectHalError(errorCode, property, operation); in injectHalError()
/packages/services/Car/libvehiclenetwork/include/
DIVehicleNetwork.h61 virtual status_t injectHalError(int32_t errorCode, int32_t property, int32_t operation) = 0;
DVehicleNetwork.h130 status_t injectHalError(int32_t errorCode, int32_t property, int32_t operation);
/packages/services/Car/libvehiclenetwork/native/
DIVehicleNetwork.cpp201 status_t injectHalError(int32_t errorCode, int32_t property, int32_t operation) { in injectHalError() function in android::BpVehicleNetwork
407 r = injectHalError(errorCode, property, operation); in onTransact()
/packages/services/Car/vehicle_network_service/
DVehicleNetworkService.h305 virtual status_t injectHalError(int32_t errorCode, int32_t property, int32_t operation);
DVehicleNetworkService.cpp896 status_t VehicleNetworkService::injectHalError(int32_t errorCode, int32_t property, in injectHalError() function in android::VehicleNetworkService