HomeSort by relevance Sort by last modified time
    Searched refs:injectHalError (Results 1 - 9 of 9) sorted by null

  /packages/services/Car/libvehiclenetwork/java/src/com/android/car/vehiclenetwork/
IVehicleNetwork.aidl 44 void injectHalError(int errorCode, int property, int operation) = 8;
VehicleNetwork.java 504 public synchronized void injectHalError(int errorCode, int property, int operation) {
506 mService.injectHalError(errorCode, property, operation);
  /packages/services/Car/tests/libvehiclenetwork-native-test/
IVehicleNetworkMockedTest.cpp 99 ASSERT_EQ(NO_ERROR, mVN->injectHalError(ERROR_CODE, 0, OPERATION_CODE));
111 ASSERT_EQ(NO_ERROR, mVN->injectHalError(ERROR_CODE, TEST_PROPERTY_INT32, OPERATION_CODE));
  /packages/services/Car/libvehiclenetwork/include/
IVehicleNetwork.h 61 virtual status_t injectHalError(int32_t errorCode, int32_t property, int32_t operation) = 0;
VehicleNetwork.h 130 status_t injectHalError(int32_t errorCode, int32_t property, int32_t operation);
  /packages/services/Car/tests/libvehiclenetwork-java-test/src/com/android/car/vehiclenetwork/libtest/
VehicleNetworkMockedTest.java 312 mVehicleNetwork.injectHalError(ERROR_CODE, 0, ERROR_OPERATION);
314 mVehicleNetwork.injectHalError(ERROR_CODE, CUSTOM_PROPERTY_INT32, ERROR_OPERATION);
326 mVehicleNetwork.injectHalError(ERROR_CODE, CUSTOM_PROPERTY_INT32, ERROR_OPERATION);
  /packages/services/Car/libvehiclenetwork/native/
IVehicleNetwork.cpp 201 status_t injectHalError(int32_t errorCode, int32_t property, int32_t operation) {
407 r = injectHalError(errorCode, property, operation);
  /packages/services/Car/vehicle_network_service/
VehicleNetworkService.h 305 virtual status_t injectHalError(int32_t errorCode, int32_t property, int32_t operation);
VehicleNetworkService.cpp 896 status_t VehicleNetworkService::injectHalError(int32_t errorCode, int32_t property,
    [all...]

Completed in 208 milliseconds