Searched defs:retry (Results 1 - 5 of 5) sorted by relevance

/frameworks/support/volley/src/com/android/volley/
H A DRetryPolicy.java30 * Returns the current retry count (used for logging).
35 * Prepares for the next retry by applying a backoff to the timeout.
37 * @throws VolleyError In the event that the retry could not be performed (for example if we
40 public void retry(VolleyError error) throws VolleyError; method in interface:RetryPolicy
H A DDefaultRetryPolicy.java20 * Default retry policy for requests.
26 /** The current retry count. */
45 * Constructs a new retry policy using the default timeouts.
52 * Constructs a new retry policy.
72 * Returns the current retry count.
80 * Prepares for the next retry by applying a backoff to the timeout.
84 public void retry(VolleyError error) throws VolleyError { method in class:DefaultRetryPolicy
/frameworks/av/media/libaah_rtp/
H A Daah_tx_sender.h99 RetryBuffer retry; member in struct:android::AAH_TXSender::EndpointState
H A Daah_tx_sender.cpp101 ALOGW("%s unable to start retry thread", __PRETTY_FUNCTION__);
119 ALOGW("%s shutdown of retry receiver failed", __PRETTY_FUNCTION__);
158 // trimming retry buffers and a message to start sending heartbeats.
237 // add the packet to the retry buffer
238 RetryBuffer& retry = eps->retry; local
239 retry.push_back(packet);
268 RetryBuffer& retry = eps->retry; local
270 while (!retry
434 RetryBuffer& retry = eps->retry; local
[all...]
/frameworks/base/core/jni/
H A Dandroid_bluetooth_BluetoothSocket.cpp178 int retry = 0; local
238 if (ret && errno == EALREADY && retry < 2) {
240 * retry the connect. Unfortunately we have to create a new fd.
245 retry++;
254 if (!ret && retry > 0)

Completed in 139 milliseconds