Home
last modified time | relevance | path

Searched refs:SYNC_OP_LIMIT_TRY_AGAIN (Results 1 – 5 of 5) sorted by relevance

/packages/services/Car/car-lib/src/com/android/car/internal/property/
DCarPropertyHelper.java42 public static final int SYNC_OP_LIMIT_TRY_AGAIN = -1; field in CarPropertyHelper
/packages/services/Car/service/src/com/android/car/
DCarPropertyService.java23 import static com.android.car.internal.property.CarPropertyHelper.SYNC_OP_LIMIT_TRY_AGAIN;
754 throw new ServiceSpecificException(SYNC_OP_LIMIT_TRY_AGAIN); in runSyncOperationCheckLimit()
/packages/services/Car/tests/CarLibUnitTest/src/android/car/hardware/property/
DCarPropertyManagerUnitTest.java32 import static com.android.car.internal.property.CarPropertyHelper.SYNC_OP_LIMIT_TRY_AGAIN;
350 new ServiceSpecificException(SYNC_OP_LIMIT_TRY_AGAIN)).thenReturn(value); in testGetProperty_syncOpTryAgain()
362 new ServiceSpecificException(SYNC_OP_LIMIT_TRY_AGAIN)); in testGetProperty_syncOpTryAgain_exceedRetryCountLimit()
1253 doThrow(new ServiceSpecificException(SYNC_OP_LIMIT_TRY_AGAIN)).doNothing() in testSetProperty_syncOpTryAgain()
2903 new ServiceSpecificException(SYNC_OP_LIMIT_TRY_AGAIN)).thenReturn(expectedValue); in testIsPropertyAvailable_syncOpTryAgain()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/
DCarPropertyServiceUnitTest.java21 import static com.android.car.internal.property.CarPropertyHelper.SYNC_OP_LIMIT_TRY_AGAIN;
1672 assertThat(((ServiceSpecificException) e).errorCode).isEqualTo(SYNC_OP_LIMIT_TRY_AGAIN); in testSyncOperationLimit()
/packages/services/Car/car-lib/src/android/car/hardware/property/
DCarPropertyManager.java22 import static com.android.car.internal.property.CarPropertyHelper.SYNC_OP_LIMIT_TRY_AGAIN;
2391 if (e.errorCode != SYNC_OP_LIMIT_TRY_AGAIN) { in runSyncOperation()