HomeSort by relevance Sort by last modified time
    Searched refs:retry (Results 26 - 50 of 247) sorted by null

12 3 4 5 6 7 8 910

  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/linux/
smp.h 17 #define smp_call_function(func,info,retry,wait) (up_smp_call_function())
18 #define on_each_cpu(func,info,retry,wait) ({ local_irq_disable(); func(info); local_irq_enable(); 0; })
  /prebuilts/ndk/8/platforms/android-14/arch-x86/usr/include/linux/
smp.h 17 #define smp_call_function(func,info,retry,wait) (up_smp_call_function())
18 #define on_each_cpu(func,info,retry,wait) ({ local_irq_disable(); func(info); local_irq_enable(); 0; })
  /prebuilts/ndk/8/platforms/android-3/arch-arm/usr/include/linux/
smp.h 17 #define smp_call_function(func,info,retry,wait) (up_smp_call_function())
18 #define on_each_cpu(func,info,retry,wait) ({ local_irq_disable(); func(info); local_irq_enable(); 0; })
  /prebuilts/ndk/8/platforms/android-4/arch-arm/usr/include/linux/
smp.h 17 #define smp_call_function(func,info,retry,wait) (up_smp_call_function())
18 #define on_each_cpu(func,info,retry,wait) ({ local_irq_disable(); func(info); local_irq_enable(); 0; })
  /prebuilts/ndk/8/platforms/android-5/arch-arm/usr/include/linux/
smp.h 17 #define smp_call_function(func,info,retry,wait) (up_smp_call_function())
18 #define on_each_cpu(func,info,retry,wait) ({ local_irq_disable(); func(info); local_irq_enable(); 0; })
  /prebuilts/ndk/8/platforms/android-8/arch-arm/usr/include/linux/
smp.h 17 #define smp_call_function(func,info,retry,wait) (up_smp_call_function())
18 #define on_each_cpu(func,info,retry,wait) ({ local_irq_disable(); func(info); local_irq_enable(); 0; })
  /prebuilts/ndk/8/platforms/android-9/arch-arm/usr/include/linux/
smp.h 17 #define smp_call_function(func,info,retry,wait) (up_smp_call_function())
18 #define on_each_cpu(func,info,retry,wait) ({ local_irq_disable(); func(info); local_irq_enable(); 0; })
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/linux/
smp.h 17 #define smp_call_function(func,info,retry,wait) (up_smp_call_function())
18 #define on_each_cpu(func,info,retry,wait) ({ local_irq_disable(); func(info); local_irq_enable(); 0; })
  /prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/linux/
smp.h 17 #define smp_call_function(func,info,retry,wait) (up_smp_call_function())
18 #define on_each_cpu(func,info,retry,wait) ({ local_irq_disable(); func(info); local_irq_enable(); 0; })
  /external/chromium/crypto/
crypto_module_blocking_password_delegate.h 23 // request. |retry| is true if this is a request for the retry
28 virtual std::string RequestPassword(const std::string& slot_name, bool retry,
  /external/kernel-headers/original/linux/
smp.h 54 int smp_call_function(void(*func)(void *info), void *info, int retry, int wait);
59 int on_each_cpu(void (*func) (void *info), void *info, int retry, int wait);
88 #define smp_call_function(func,info,retry,wait) (up_smp_call_function())
89 #define on_each_cpu(func,info,retry,wait) \
  /external/smack/src/org/xbill/DNS/
SOARecord.java 18 private long serial, refresh, retry, expire, minimum; field in class:SOARecord
34 * @param retry The amount of time between a secondary's checks for a new
41 long serial, long refresh, long retry, long expire, long minimum)
48 this.retry = checkU32("retry", retry);
59 retry = in.readU32();
70 retry = st.getTTLLike();
88 sb.append(retry);
89 sb.append("\t; retry\n\t\t\t\t\t")
    [all...]
  /hardware/qcom/bt/libbt-vendor/src/
userial_vendor.c 86 int retry = 0; local
93 while ((-1 == fd) && (retry < 7)) {
94 ALOGE("init_transport: Cannot open %s: %s\n. Retry after 2 seconds",
98 retry++;
  /frameworks/volley/src/com/android/volley/
DefaultRetryPolicy.java 20 * 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
  /bionic/libstdc++/src/
one_time_construction.cpp 75 retry:
84 goto retry;
  /external/chromium/chrome/browser/ui/gtk/
crypto_module_password_dialog.cc 40 virtual std::string RequestPassword(const std::string& slot_name, bool retry,
50 retry))) {
58 void ShowDialog(const std::string& slot_name, bool retry) {
61 slot_name, retry, reason_, server_,
84 bool retry,
105 bool retry,
215 bool retry,
219 (new CryptoModulePasswordDialog(slot_name, retry, reason, server,
  /external/harfbuzz_ng/src/
hb-shaper.cc 53 retry:
100 goto retry;
  /external/grub/netboot/
fsys_tftp.c 37 static int retry; variable
63 timeout = rfc2131_sleep_interval (block ? TFTP_REXMT : TIMEOUT, retry);
65 timeout = rfc2131_sleep_interval (TIMEOUT, retry);
73 if (! block && retry++ < MAX_TFTP_RETRIES)
87 if (block && ((retry += TFTP_REXMT) < TFTP_TIMEOUT))
239 retry = 0;
262 retry = 0;
480 /* Retry the open instruction. */
main.c 205 int retry; local
272 for (retry = 1; retry <= MAX_ARP_RETRIES; retry++)
277 timeout = rfc2131_sleep_interval (TIMEOUT, retry);
302 int retry = 0; local
333 timeout = rfc2131_sleep_interval (block ? TFTP_REXMT : TIMEOUT, retry);
335 timeout = rfc2131_sleep_interval (TIMEOUT, retry);
340 if (! block && retry++ < MAX_TFTP_RETRIES)
351 if (block && ((retry += TFTP_REXMT) < TFTP_TIMEOUT)
479 int retry; local
534 int retry; local
    [all...]
  /external/chromium/chrome/browser/ui/
crypto_module_password_dialog.h 44 bool retry,
  /external/dropbear/libtomcrypt/src/pk/dsa/
dsa_sign_hash.c 64 retry:
77 if (mp_cmp_d(k, 1) != LTC_MP_GT) { goto retry; }
90 if (mp_iszero(r) == LTC_MP_YES) { goto retry; }
98 if (mp_iszero(s) == LTC_MP_YES) { goto retry; }
  /external/libppp/src/
auth.h 47 int retry; member in struct:authinfo
  /frameworks/compile/libbcc/lib/Support/
FileBase.cpp 127 unsigned retry = 0; local
167 retry++;
176 // it's retry-able.
179 // decrement the retry counter.
183 // retry.
184 retry++;
188 // without further retry.
192 } while (retry <= pMaxRetry);
  /system/core/libcutils/
ashmem-host.c 46 retry:
62 /* unlikely, but if we failed because `name' exists, retry */
64 goto retry;
  /external/wpa_supplicant_8/src/wps/
wps_upnp_event.c 52 unsigned int retry; /* which retry */ member in struct:wps_event_
60 * Leaves data, retry count etc. alone.
122 wpa_printf(MSG_DEBUG, "WPS UPnP: Retry event %p for subscription %p",
128 e->retry++;
129 wpa_printf(MSG_DEBUG, "WPS UPnP: Try address %d", e->retry);
131 if (e->retry >= dl_list_len(&s->addr_list)) {
291 if (itry++ == e->retry)
293 if (itry < e->retry)

Completed in 970 milliseconds

12 3 4 5 6 7 8 910