Home
last modified time | relevance | path

Searched refs:shouldRetry (Results 1 – 11 of 11) sorted by relevance

/frameworks/native/services/vibratorservice/include/vibratorservice/
DVibratorHalWrapper.h40 bool shouldRetry() const { return isFailed() && mDeadObject; } in shouldRetry() function
270 bool shouldRetry() const { in shouldRetry() function
271 return capabilities.shouldRetry() || supportedEffects.shouldRetry() || in shouldRetry()
272 supportedBraking.shouldRetry() || supportedPrimitives.shouldRetry() || in shouldRetry()
273 primitiveDurations.shouldRetry() || primitiveDelayMax.shouldRetry() || in shouldRetry()
274 pwlePrimitiveDurationMax.shouldRetry() || compositionSizeMax.shouldRetry() || in shouldRetry()
275 pwleSizeMax.shouldRetry() || minFrequency.shouldRetry() || in shouldRetry()
276 resonantFrequency.shouldRetry() || frequencyResolution.shouldRetry() || in shouldRetry()
277 qFactor.shouldRetry() || maxAmplitudes.shouldRetry(); in shouldRetry()
DVibratorHalController.h80 if (result.shouldRetry()) { in getInfo()
128 for (int i = 0; i < MAX_RETRIES && result.shouldRetry(); i++) { in doWithRetry()
/frameworks/base/packages/StatementService/src/com/android/statementservice/domain/
DVerifyStatus.kt47 fun shouldRetry(state: Int): Boolean { in shouldRetry() method
DDomainVerificationReceiverV2.kt98 ALWAYS_VERIFY || VerifyStatus.shouldRetry(it) in <lambda>()
DDomainVerifier.kt76 .filterValues(VerifyStatus::shouldRetry) in <lambda>()
/frameworks/base/apct-tests/perftests/inputmethod/src/android/inputmethod/
DImePerfTest.java249 boolean shouldRetry = false; in testShowImeCold()
250 while (shouldRetry || state.keepRunning(measuredTimeNs)) { in testShowImeCold()
251 shouldRetry = false; in testShowImeCold()
279 shouldRetry = true; in testShowImeCold()
/frameworks/native/services/vibratorservice/
DVibratorManagerHalController.cpp72 for (int i = 0; i < MAX_RETRIES && result.shouldRetry(); i++) { in apply()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/uicc/
DUiccCarrierPrivilegeRulesTest.java278 assertTrue(mUiccCarrierPrivilegeRules.shouldRetry(ar1, 0)); in testRetryARAM_shouldRetry()
284 assertTrue(mUiccCarrierPrivilegeRules.shouldRetry(ar2, 0)); in testRetryARAM_shouldRetry()
290 assertTrue(mUiccCarrierPrivilegeRules.shouldRetry(ar3, 0)); in testRetryARAM_shouldRetry()
300 assertTrue(!mUiccCarrierPrivilegeRules.shouldRetry(ar, 0)); in testRetryARAM_shouldNotRetry()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
DUiccCarrierPrivilegeRules.java398 public static boolean shouldRetry(AsyncResult ar, int retryCount) { in shouldRetry() method in UiccCarrierPrivilegeRules
433 if (shouldRetry(ar, mRetryCount)) { in handleMessage()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/data/
DDataNetwork.java2102 boolean shouldRetry) {
2107 if (shouldRetry) {
2137 boolean shouldRetry) {
2141 sendMessage(obtainMessage(EVENT_DETACH_NETWORK_REQUEST, shouldRetry ? 1 : 0, 0,
2196 private void removeUnsatisfiedNetworkRequests(boolean shouldRetry) {
2201 detachNetworkRequest(networkRequest, shouldRetry);
2583 boolean shouldRetry = isConnected() || isHandoverInProgress();
2584 removeUnsatisfiedNetworkRequests(shouldRetry);
/frameworks/base/services/core/jni/
Dcom_android_server_vibrator_VibratorController.cpp459 return info.shouldRetry() ? JNI_FALSE : JNI_TRUE; in vibratorGetInfo()