/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/data/repository/ |
H A D | DeviceEntryFaceAuthRepository.kt | 167 private var retryCount = 0 regex 289 retryCount = 0 479 if (retryCount < HAL_ERROR_RETRY_MAX) { 480 retryCount++ 485 if (retryCount < HAL_ERROR_RETRY_MAX) { 486 faceAuthLogger.attemptingRetryAfterHardwareError(retryCount)
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/log/ |
H A D | FaceAuthenticationLogger.kt | 256 fun attemptingRetryAfterHardwareError(retryCount: Int) { 260 { int1 = retryCount },
|
/aosp14/frameworks/base/services/core/java/com/android/server/hdmi/ |
H A D | HdmiCecFeatureAction.java | 226 int retryCount) { in pollDevices() argument 227 mService.pollDevices(callback, getSourceAddress(), pickStrategy, retryCount); in pollDevices()
|
H A D | HdmiCecController.java | 520 int retryCount) { in pollDevices() argument 526 runDevicePolling(sourceAddress, pollingCandidates, retryCount, callback, allocated); in pollDevices() 566 final List<Integer> candidates, final int retryCount, in runDevicePolling() argument 583 if (sendPollMessage(sourceAddress, candidate, retryCount)) { in runDevicePolling() 589 runDevicePolling(sourceAddress, candidates, retryCount, callback, in runDevicePolling() 598 private boolean sendPollMessage(int sourceAddress, int destinationAddress, int retryCount) { in sendPollMessage() argument 600 for (int i = 0; i < retryCount; ++i) { in sendPollMessage()
|
H A D | HdmiControlService.java | 1733 int retryCount) { in pollDevices() argument 1736 retryCount); in pollDevices()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/keyguard/logging/ |
H A D | KeyguardUpdateMonitorLogger.kt | 298 fun logRetryingAfterFaceHwUnavailable(retryCount: Int) { 302 { int1 = retryCount }, 320 fun logRetryAfterFpHwUnavailable(retryCount: Int) { 324 { int1 = retryCount },
|
/aosp14/frameworks/base/services/usb/java/com/android/server/usb/ |
H A D | UsbDirectMidiDevice.java | 620 int retryCount = 0; in openLocked() 626 while (transferResult < 0 && retryCount <= in openLocked() 634 retryCount++; in openLocked() 643 + retryCount + " result = " + transferResult); in openLocked() 644 if (retryCount > BULK_TRANSFER_NUMBER_OF_RETRIES) { in openLocked()
|
/aosp14/frameworks/base/core/jni/ |
H A D | android_database_SQLiteConnection.cpp | 777 int retryCount = 0; in nativeExecuteForCursorWindow() local 786 retryCount = 0; in nativeExecuteForCursorWindow() 820 if (retryCount > 50) { in nativeExecuteForCursorWindow() 827 retryCount++; in nativeExecuteForCursorWindow()
|
/aosp14/frameworks/base/core/java/android/view/inputmethod/ |
H A D | RemoteInputConnectionImpl.java | 333 int retryCount = 0; in scheduleInvalidateInput() 338 ++retryCount; in scheduleInvalidateInput() 339 if (retryCount > MAX_END_BATCH_EDIT_RETRY) { in scheduleInvalidateInput()
|
/aosp14/frameworks/base/services/core/java/com/android/server/connectivity/ |
H A D | Vpn.java | 665 public long getNextRetryDelayMs(int retryCount) { in getNextRetryDelayMs() argument 666 if (retryCount >= IKEV2_VPN_RETRY_DELAYS_MS.length) { in getNextRetryDelayMs() 669 return IKEV2_VPN_RETRY_DELAYS_MS[retryCount]; in getNextRetryDelayMs()
|
/aosp14/frameworks/base/core/java/android/app/ |
H A D | ActivityThread.java | 4098 @NonNull RemoteCallback callback, int retryCount) { in handleRequestDirectActions() argument 4108 if (retryCount > 0) { in handleRequestDirectActions() 4112 callback, retryCount - 1), REQUEST_DIRECT_ACTIONS_RETRY_TIME_MS); in handleRequestDirectActions()
|