Home
last modified time | relevance | path

Searched refs:retry (Results 1 – 25 of 25) sorted by relevance

/packages/modules/Connectivity/tests/cts/net/src/android/net/cts/
DDnsResolverTest.java432 boolean retry = false; in testRawQueryCancel()
448 retry = callback.needRetry(); in testRawQueryCancel()
451 } while (retry); in testRawQueryCancel()
461 boolean retry = false; in testRawQueryBlobCancel()
476 retry = callback.needRetry(); in testRawQueryBlobCancel()
479 } while (retry); in testRawQueryBlobCancel()
621 boolean retry = false; in testQueryCancelForInetAddress()
637 retry = callback.needRetry(); in testQueryCancelForInetAddress()
640 } while (retry); in testQueryCancelForInetAddress()
/packages/services/Iwlan/assets/
Ddefaultiwlanerrorconfig.json37 # 3.3. "RetryArray": Array of retry times (in secs) represented in string format.
43 # retry time "15" (the last retry number).
45 # 3.4. "UnthrottlingEvents": Events for which the retry time can be unthrottled.
/packages/services/BuiltInPrintService/jni/lib/
Dlib_wprint.c832 int retry = 0; in _job_thread() local
867 } else if (retry >= MAX_IDLE_WAIT) { in _job_thread()
898 retry++; in _job_thread()
1195 int retry, result; in _job_thread() local
1198 for (retry = 0, result = ERROR; ((result == ERROR) && (retry <= MAX_START_WAIT)); in _job_thread()
1199 retry++) { in _job_thread()
1200 if (retry != 0) { in _job_thread()
1207 for (retry = 0, result = ERROR; ((result == ERROR) && (retry <= MAX_DONE_WAIT)); in _job_thread()
1208 retry++) { in _job_thread()
1209 if (retry != 0) { in _job_thread()
[all …]
/packages/services/Car/service/src/com/android/car/
DCarServiceUtils.java188 int retry = 0; in getUptimeToElapsedTimeDeltaInMillis() local
197 retry++; in getUptimeToElapsedTimeDeltaInMillis()
198 if (retry >= max_retry) { in getUptimeToElapsedTimeDeltaInMillis()
/packages/services/Car/tests/carservice_test/src/com/android/car/
DCarPackageManagerTest.java151 int retry = 0; in pollingCheck() local
153 while (!checked && (retry < maxRetry)) { in pollingCheck()
155 retry++; in pollingCheck()
/packages/apps/Bluetooth/src/com/android/bluetooth/mapclient/obex/
DRequestPushMessage.java46 boolean retry) { in RequestPushMessage() argument
51 oap.add(OAP_TAGID_RETRY, retry ? RETRY_ON : RETRY_OFF); in RequestPushMessage()
/packages/apps/Messaging/src/com/android/messaging/datamodel/action/
DBackgroundWorkerService.java144 final boolean retry = false; in doBackgroundWork()
151 if (retry) { in doBackgroundWork()
/packages/services/BuiltInPrintService/jni/ipphelper/
Dipp_print.c485 bool retry; in _start_job() local
490 retry = false; in _start_job()
516 retry = true; in _start_job()
530 } while (retry); in _start_job()
Dipphelper.c1424 bool retry; in ippSendRequest() local
1427 retry = false; in ippSendRequest()
1437 retry = true; in ippSendRequest()
1445 } while (retry); in ippSendRequest()
/packages/apps/TV/tuner/src/com/android/tv/tuner/hdhomerun/
DHdHomeRunDiscover.java72 for (int retry = 0; in findDevices()
73 retry < HDHOMERUN_DISCOVER_RETRY_LIMIT && resultList.isEmpty(); in findDevices()
74 retry++) { in findDevices()
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
DBluetoothOppTransfer.java681 SocketConnectThread(BluetoothDevice device, boolean retry) { in SocketConnectThread() argument
687 mRetry = retry; in SocketConnectThread()
692 SocketConnectThread(BluetoothDevice device, boolean retry, boolean sdpInitiated, in SocketConnectThread() argument
699 mRetry = retry; in SocketConnectThread()
/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/vhal/
DVehicleHalFragment.java69 final boolean retry = true; in onResume()
72 vehicle = Objects.requireNonNull(IVehicle.getService(retry)); in onResume()
/packages/modules/DnsResolver/
DREADME-DoT.md85 If there are any pending queries, `DnsTlsTransport` will retry them.
87 `DnsTlsQueryMap` imposes a retry limit of 3. `DnsTlsTransport` will retry the query up
Dres_send.cpp899 retry: in retrying_poll()
915 if (errno == EINTR) goto retry; in retrying_poll()
Dstats.proto361 // Number of DNS query retry times
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
DBluetoothMapAppParams.java1196 public void setRetry(int retry) throws IllegalArgumentException { in setRetry() argument
1197 if (retry < 0 || retry > 0x0001) { in setRetry()
1200 this.mRetry = retry; in setRetry()
DBluetoothMapContentObserver.java2529 public int retry; field in BluetoothMapContentObserver.PushMsgInfo
2541 PushMsgInfo(long id, int transparent, int retry, String phone, Uri uri) { in PushMsgInfo() argument
2544 this.retry = retry; in PushMsgInfo()
2600 int retry = ap.getRetry(); in pushMessage() local
2701 (BluetoothMapbMessageMime) msg, transparent, retry); in pushMessage()
2740 (BluetoothMapbMessageMime) msg, transparent, retry); in pushMessage()
2805 new PushMsgInfo(handle, transparent, retry, phone, uri); in pushMessage()
2831 int transparent, int retry) { in sendMmsMessage() argument
2859 sentIntent.putExtra(EXTRA_MESSAGE_SENT_RETRY, retry); in sendMmsMessage()
3226 intentSent.putExtra(EXTRA_MESSAGE_SENT_RETRY, msgInfo.retry); in sendMessage()
[all …]
/packages/apps/Dialer/java/com/android/voicemail/impl/transcribe/grpc/
Dvoicemail_transcription.proto34 // Resend the voicemail through TranscribeVoicemailAsync to retry.
38 // Resend the voicemail through TranscribeVoicemailAsync to retry.
/packages/apps/Nfc/nci/jni/
DNativeNfcTag.cpp723 int retry = 0; in reSelect() local
730 retry++; in reSelect()
732 __func__, retry, sConnectOk); in reSelect()
733 } while (sConnectOk == false && retry < 3); in reSelect()
/packages/apps/Settings/src/com/android/settings/wifi/dpp/
DWifiDppAddDeviceFragment.java250 mRightButton.setText(getContext(), R.string.retry); in showErrorUi()
/packages/modules/adb/
Dprotocol.txt102 packet and a new random token, so that the recipient can retry signing
/packages/modules/Wifi/service/proto/src/
Dmetrics.proto651 // Total number of steering requests which include MBO assoc retry delay
2395 // Delta of transmitted unicast data retry packets
/packages/inputmethods/LatinIME/dictionaries/
Den_GB_wordlist.combined.gz1dictionary=main:en_gb,locale=en_GB,description=English (UK),date ...
Den_US_wordlist.combined.gz
Den_wordlist.combined.gz1dictionary=main:en,locale=en,description=English,date=1414726273, ...