HomeSort by relevance Sort by last modified time
    Searched refs:retryCount (Results 1 - 25 of 98) sorted by null

1 2 3 4

  /external/apache-http/src/org/apache/http/impl/client/
DefaultHttpRequestRetryHandler.java 59 private final int retryCount;
67 public DefaultHttpRequestRetryHandler(int retryCount, boolean requestSentRetryEnabled) {
69 this.retryCount = retryCount;
80 * Used <code>retryCount</code> and <code>requestSentRetryEnabled</code> to determine
93 if (executionCount > this.retryCount) {
137 return retryCount;
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/tools/
ExecDumpClient.java 29 private int retryCount;
34 * <code>reset==false</code>, <code>retryCount==0</code> and
40 this.retryCount = 0;
68 * @param retryCount
71 public void setRetryCount(final int retryCount) {
72 this.retryCount = retryCount;
145 if (++count > retryCount) {
  /external/jacoco/org.jacoco.ant/src/org/jacoco/ant/
DumpTask.java 37 private int retryCount = 10;
76 * @param retryCount
79 public void setRetryCount(final int retryCount) {
80 this.retryCount = retryCount;
144 client.setRetryCount(retryCount);
  /external/ims/rcs/rcsservice/src/com/android/service/ims/presence/
PresencePublishTask.java 80 public void setRetryCount(int retryCount) {
81 mRetryCount = retryCount;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
WordListMetadata.java 57 final String rawChecksum, final String checksum, final int retryCount,
68 mRetryCount = retryCount;
90 final int retryCount = values.getAsInteger(MetadataDbHelper.RETRY_COUNT_COLUMN);
112 checksum, retryCount, localFilename, remoteFilename, version, formatVersion,
MetadataDbHelper.java 484 final String rawChecksum, final String checksum, final int retryCount,
497 result.put(RETRY_COUNT_COLUMN, retryCount);
    [all...]
  /external/jacoco/jacoco-maven-plugin/src/org/jacoco/maven/
DumpMojo.java 88 @Parameter(property = "jacoco.retryCount", defaultValue = "10")
89 private int retryCount;
109 client.setRetryCount(retryCount);
  /packages/services/Car/libvehiclemonitor/java/src/com/android/car/vehiclemonitor/
VehicleMonitor.java 70 int retryCount = 0;
78 retryCount++;
79 if (retryCount > VMS_CONNECT_MAX_RETRY) {
  /system/chre/host/common/
socket_client.cc 190 unsigned int retryCount = 0;
192 while (retryCount++ < kRetryLimit) {
208 if (retryCount > kExponentialBackoffDelay) {
  /frameworks/base/wifi/java/android/net/wifi/aware/
IWifiAwareManager.aidl 54 int messageId, int retryCount);
DiscoverySession.java 171 * @param retryCount An integer specifying how many additional service-level (as opposed to PHY
179 @Nullable byte[] message, int retryCount) {
191 mgr.sendMessage(mClientId, mSessionId, peerHandle, message, messageId, retryCount);
WifiAwareManager.java 383 int messageId, int retryCount) {
392 + messageId + ", retryCount=" + retryCount);
397 retryCount);
    [all...]
  /frameworks/support/buildSrc/src/main/groovy/android/support/gmaven/
GMavenVersionChecker.groovy 87 * @param retryCount Number of times we'll retry before failing
91 private GroupVersionData fetchGroup(String group, int retryCount) {
93 for (int run = 0; run < retryCount; run++) {
103 "Run $run of $retryCount"
  /frameworks/base/services/core/java/com/android/server/hdmi/
HdmiCecController.java 388 * @param retryCount the number of retry used to send polling message to remote devices
392 int retryCount) {
398 runDevicePolling(sourceAddress, pollingCandidates, retryCount, callback, allocated);
460 final List<Integer> candidates, final int retryCount,
477 if (sendPollMessage(sourceAddress, candidate, retryCount)) {
483 runDevicePolling(sourceAddress, candidates, retryCount, callback,
492 private boolean sendPollMessage(int sourceAddress, int destinationAddress, int retryCount) {
494 for (int i = 0; i < retryCount; ++i) {
HdmiCecFeatureAction.java 210 int retryCount) {
211 mService.pollDevices(callback, getSourceAddress(), pickStrategy, retryCount);
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/aware/
WifiAwareServiceImpl.java 324 int retryCount) {
328 if (retryCount != 0) {
337 if (retryCount < 0 || retryCount > DiscoverySession.getMaxSendRetryCount()) {
338 throw new IllegalArgumentException("Invalid 'retryCount' must be non-negative "
348 + ", retryCount=" + retryCount);
351 mStateManager.sendMessage(clientId, sessionId, peerId, message, messageId, retryCount);
  /packages/apps/Messaging/src/com/android/messaging/datamodel/action/
BackgroundWorkerService.java 80 final int retryCount) {
83 intent.putExtra(EXTRA_ATTEMPT, retryCount);
  /cts/suite/audio_quality/lib/src/
SignalProcessingImpl.cpp 86 int retryCount = 0;
89 while (retryCount < MAX_RETRY) {
100 retryCount++;
  /packages/apps/Dialer/java/com/android/voicemail/impl/transcribe/
TranscriptionTask.java 148 private static void backoff(int retryCount) {
149 VvmLog.i(TAG, "backoff, count: " + retryCount);
151 long millis = (1 << retryCount) * 1000;
  /frameworks/support/compat/java/android/support/v4/app/
NotificationManagerCompat.java 363 record.retryCount = 0;
463 record.retryCount = 0;
491 record.retryCount++;
492 if (record.retryCount > SIDE_CHANNEL_RETRY_MAX_COUNT) {
494 + record.componentName + " after " + record.retryCount + " retries");
498 int delayMs = SIDE_CHANNEL_RETRY_BASE_INTERVAL_MS * (1 << (record.retryCount - 1));
561 public int retryCount = 0;
  /art/runtime/jdwp/
jdwp_adb.cc 216 int retryCount = 0;
316 if (++retryCount > 5) {
  /frameworks/support/lifecycle/extensions/src/androidTest/java/android/arch/lifecycle/
ServiceLifecycleTest.java 226 int retryCount = 0;
227 while (mLoggerEvents.size() < events.length && retryCount++ < RETRY_NUMBER) {
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
PhoneFactory.java 111 int retryCount = 0;
114 retryCount ++;
126 } else if (retryCount > SOCKET_OPEN_MAX_RETRY) {
  /cts/hostsidetests/services/activityandwindowmanager/windowmanager/src/android/server/cts/
CrossAppDragAndDropTests.java 234 int retryCount = 3;
243 } while (retryCount-- > 0);
348 int retryCount = 10;
365 } while (retryCount-- > 0);
  /packages/services/Telecomm/src/com/android/server/telecom/bluetooth/
BluetoothRouteManager.java 656 private String connectHfpAudio(String address, int retryCount) {
657 return connectHfpAudio(address, retryCount, null);
669 * @param retryCount The number of times this connection attempt has been retried.
674 private String connectHfpAudio(String address, int retryCount, String excludeAddress) {
692 boolean shouldRetry = retryCount < MAX_CONNECTION_RETRIES;
699 args.argi1 = retryCount + 1;
    [all...]

Completed in 858 milliseconds

1 2 3 4