Home
last modified time | relevance | path

Searched refs:error2 (Results 1 – 4 of 4) sorted by relevance

/packages/modules/Bluetooth/system/osi/src/
Dconfig.cc396 goto error2; in checksum_save()
402 goto error2; in checksum_save()
408 goto error2; in checksum_save()
415 goto error2; in checksum_save()
426 goto error2; in checksum_save()
435 goto error2; in checksum_save()
441 goto error2; in checksum_save()
451 goto error2; in checksum_save()
456 error2: in checksum_save()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/internal/util/
DFunctionUtilsTest.java88 ThrowingBiConsumer<Boolean, Boolean> tbc = (Boolean error1, Boolean error2) -> { in testUncheckedExceptionsThrowningBiConsumer()
89 if (error1 && error2) { in testUncheckedExceptionsThrowningBiConsumer()
153 ThrowingBiFunction<Boolean, Boolean, Integer> tbf = (Boolean error1, Boolean error2) -> { in testThrowingBiFunction()
154 if (error1 && error2) { in testThrowingBiFunction()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/hal/
DPropertyHalServiceTest.java2153 VehiclePropError error2 = new VehiclePropError(); in testSetCarPropertyValuesAsync_onPropertySetError() local
2154 error2.propId = HVAC_TEMPERATURE_SET; in testSetCarPropertyValuesAsync_onPropertySetError()
2155 error2.areaId = 2; in testSetCarPropertyValuesAsync_onPropertySetError()
2156 error2.errorCode = STATUS_INTERNAL_ERROR; in testSetCarPropertyValuesAsync_onPropertySetError()
2158 vehiclePropErrors.add(error2); in testSetCarPropertyValuesAsync_onPropertySetError()
2473 VehiclePropError error2 = new VehiclePropError(); in testOnPropertySetError() local
2474 error2.propId = PERF_VEHICLE_SPEED; in testOnPropertySetError()
2475 error2.areaId = 0; in testOnPropertySetError()
2476 error2.errorCode = STATUS_INTERNAL_ERROR; in testOnPropertySetError()
2478 vehiclePropErrors.add(error2); in testOnPropertySetError()
DVehicleHalTest.java1251 VehiclePropError error2 = new VehiclePropError();
1252 error2.propId = SOME_READ_ON_CHANGE_PROPERTY;
1253 error2.areaId = 1;
1254 error2.errorCode = CarPropertyManager.CAR_SET_PROPERTY_ERROR_CODE_INVALID_ARG;
1255 errors.add(error2);
1267 new ArrayList<VehiclePropError>(Arrays.asList(error1, error2)));