Searched refs:retryCount (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/services/core/java/com/android/server/hdmi/
H A DHdmiCecController.java364 * @param retryCount the number of retry used to send polling message to remote devices
368 int retryCount) {
374 runDevicePolling(sourceAddress, pollingCandidates, retryCount, callback, allocated);
436 final List<Integer> candidates, final int retryCount,
453 if (sendPollMessage(sourceAddress, candidate, retryCount)) {
459 runDevicePolling(sourceAddress, candidates, retryCount, callback,
468 private boolean sendPollMessage(int sourceAddress, int destinationAddress, int retryCount) { argument
470 for (int i = 0; i < retryCount; ++i) {
367 pollDevices(DevicePollingCallback callback, int sourceAddress, int pickStrategy, int retryCount) argument
435 runDevicePolling(final int sourceAddress, final List<Integer> candidates, final int retryCount, final DevicePollingCallback callback, final List<Integer> allocated) argument
H A DHdmiCecFeatureAction.java210 int retryCount) {
211 mService.pollDevices(callback, getSourceAddress(), pickStrategy, retryCount);
209 pollDevices(DevicePollingCallback callback, int pickStrategy, int retryCount) argument
H A DHdmiControlService.java909 * @param retryCount the number of retry used to send polling message to remote devices
914 int retryCount) {
917 retryCount);
913 pollDevices(DevicePollingCallback callback, int sourceAddress, int pickStrategy, int retryCount) argument
/frameworks/support/v4/java/android/support/v4/app/
H A DNotificationManagerCompat.java341 record.retryCount = 0;
440 record.retryCount = 0;
468 record.retryCount++;
469 if (record.retryCount > SIDE_CHANNEL_RETRY_MAX_COUNT) {
471 + record.componentName + " after " + record.retryCount + " retries");
475 int delayMs = SIDE_CHANNEL_RETRY_BASE_INTERVAL_MS * (1 << (record.retryCount - 1));
538 public int retryCount = 0; field in class:NotificationManagerCompat.SideChannelManager.ListenerRecord
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DPhoneFactory.java94 int retryCount = 0;
97 retryCount ++;
109 } else if (retryCount > SOCKET_OPEN_MAX_RETRY) {
H A DRIL.java484 int retryCount = 0;
514 if (retryCount == 8) {
517 + "' socket after " + retryCount
519 } else if (retryCount >= 0 && retryCount < 8) {
530 retryCount++;
534 retryCount = 0;
/frameworks/base/core/jni/
H A Dandroid_database_SQLiteConnection.cpp692 int retryCount = 0; local
701 retryCount = 0;
735 if (retryCount > 50) {
742 retryCount++;
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowManagerService.java6107 int retryCount = 0;
6119 if (retryCount++ > 0) {
6203 if (retryCount > MAX_SCREENSHOT_RETRIES) {
6204 Slog.i(TAG, "Screenshot max retries " + retryCount + " of " + appToken +

Completed in 124 milliseconds