/external/webkit/Tools/Scripts/ |
run-mangleme-tests | 124 my $retryCount = 20; 125 while ((0 != kill 0, $oldPid) && $retryCount) { 127 --$retryCount; 130 die "Timed out waiting for httpd to quit" unless $retryCount; 155 my $retryCount = 20; 156 while (system("/usr/bin/curl -q --silent --stderr - --output " . File::Spec->devnull() . " $listen") && $retryCount) { 158 --$retryCount; 161 die "Timed out waiting for httpd to start" unless $retryCount;
|
/external/apache-http/src/org/apache/http/impl/client/ |
DefaultHttpRequestRetryHandler.java | 54 private final int retryCount; 62 public DefaultHttpRequestRetryHandler(int retryCount, boolean requestSentRetryEnabled) { 64 this.retryCount = retryCount; 75 * Used <code>retryCount</code> and <code>requestSentRetryEnabled</code> to determine 88 if (executionCount > this.retryCount) { 132 return retryCount;
|
/external/webkit/Tools/Scripts/webkitperl/ |
httpd.pm | 180 my $retryCount = 20; 181 while (!-f $httpdPidFile && $retryCount) { 183 --$retryCount; 186 if (!$retryCount) { 220 my $retryCount = 20; 221 while (kill(0, $pid) && $retryCount) { 223 --$retryCount; 225 return $retryCount != 0;
|
/frameworks/base/telephony/java/com/android/internal/telephony/ |
ApnContext.java | 188 public synchronized void setRetryCount(int retryCount) { 190 log("setRetryCount: " + retryCount); 192 mRetryCount = retryCount; 195 dc.setRetryCount(retryCount);
|
PhoneFactory.java | 75 int retryCount = 0; 78 retryCount ++; 90 } else if (retryCount > SOCKET_OPEN_MAX_RETRY) {
|
DataConnection.java | 422 * @return retry manager retryCount 429 * set retry manager retryCount 431 public void setRetryCount(int retryCount) { 432 if (DBG) log("setRetryCount: " + retryCount); 433 mRetryMgr.setRetryCount(retryCount); [all...] |
RIL.java | 504 int retryCount = 0; 527 if (retryCount == 8) { 530 + "' socket after " + retryCount 532 } else if (retryCount > 0 && retryCount < 8) { 543 retryCount++; 547 retryCount = 0; [all...] |
/hardware/ti/wlan/wl1271/stad/src/Sta_Management/ |
authSm.h | 77 TI_UINT8 retryCount;
|
AssocSM.h | 99 TI_UINT8 retryCount;
|
openAuthSm.c | 360 hAuth->retryCount = 0; 372 hAuth->retryCount++; 434 if (pAuth->retryCount >= pAuth->maxCount)
|
sharedKeyAuthSm.c | 446 hAuth->retryCount = 0; 458 hAuth->retryCount++; 521 if (pAuth->retryCount >= pAuth->maxCount)
|
authSm.c | 214 pHandle->retryCount = 0;
|
assocSM.c | 972 pAssoc->retryCount = 0; 986 pAssoc->retryCount++; 988 if (pAssoc->retryCount > pAssoc->maxCount) [all...] |
/packages/apps/Settings/src/com/android/settings/bluetooth/ |
RequestPermissionHelperActivity.java | 109 int retryCount = 30; 113 } while (btState == BluetoothAdapter.STATE_TURNING_OFF && --retryCount > 0);
|
DockService.java | 206 int retryCount = prefs.getInt(KEY_CONNECT_RETRY_COUNT, 0); 207 if (retryCount < MAX_CONNECT_RETRY) { 208 prefs.edit().putInt(KEY_CONNECT_RETRY_COUNT, retryCount + 1).apply(); 216 int retryCount = prefs.getInt(KEY_CONNECT_RETRY_COUNT, 0); 217 if (retryCount < MAX_CONNECT_RETRY) { 218 prefs.edit().putInt(KEY_CONNECT_RETRY_COUNT, retryCount + 1).apply(); [all...] |
/frameworks/base/core/java/android/os/ |
Process.java | 395 int retryCount; 402 retryCount = 0; 404 retryCount = 10; 413 ; (sZygoteSocket == null) && (retry < (retryCount + 1)) [all...] |
/cts/suite/audio_quality/lib/src/ |
SignalProcessingImpl.cpp | 86 int retryCount = 0; 89 while (retryCount < MAX_RETRY) { 100 retryCount++;
|
/dalvik/vm/jdwp/ |
JdwpAdb.cpp | 189 int retryCount = 0; 277 if (++retryCount > 5) {
|
/frameworks/base/core/jni/ |
android_database_SQLiteConnection.cpp | 691 int retryCount = 0; 700 retryCount = 0; 734 if (retryCount > 50) { 736 throw_sqlite3_exception(env, connection->db, "retrycount exceeded"); 741 retryCount++; [all...] |
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/ |
GsmDataConnectionTracker.java | 155 int retryCount = intent.getIntExtra(INTENT_RECONNECT_ALARM_EXTRA_RETRY_COUNT, 0); 161 " connectionId=" + connectionId + " retryCount=" + retryCount); 169 apnContext.setRetryCount(retryCount); [all...] |
/dalvik/vm/ |
Thread.cpp | [all...] |
/frameworks/base/core/java/android/server/ |
BluetoothAdapterStateMachine.java | 267 int retryCount = 2; 269 while ((retryCount-- > 0) && !eventLoopStarted) { [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.equinox.p2.repository_2.0.1.R36x_v20100823.jar | |
org.apache.commons.httpclient_3.1.0.v201005080502.jar | |
/prebuilts/tools/common/http-client/ |
httpclient-4.1.1.jar | |