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

1 2 3 4 5 6

  /bionic/libc/kernel/common/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; })
  /development/ndk/platforms/android-3/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; })
  /prebuilt/ndk/android-ndk-r4/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; })
  /prebuilt/ndk/android-ndk-r4/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; })
  /prebuilt/ndk/android-ndk-r4/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; })
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/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; })
  /prebuilt/ndk/android-ndk-r4/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; })
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/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; })
  /bionic/libstdc++/src/
one_time_construction.cpp 22 retry:
31 goto 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/bluetooth/bluez/compat/
msdun.c 48 static int retry; variable
110 retry = 4;
114 timeout /= retry;
121 if (r == MS_TIMEOUT && !server && --retry)
  /development/simulator/wrapsim/
BitVector.c 65 retry:
89 goto retry;
  /packages/apps/Gallery3D/src/com/cooliris/picasa/
PicasaApi.java 184 boolean retry = false;
187 retry = false;
198 if (!retry) {
200 retry = true;
213 } while (retry && numRetries >= 0);
261 boolean retry = false;
264 retry = false;
275 // We need to reset the authtoken and retry only once.
276 if (!retry) {
277 retry = true
    [all...]
  /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...]
  /frameworks/base/core/java/android/net/
MobileDataStateTracker.java 285 for (int retry = 0; retry < 2; retry++) {
292 if (retry == 0) getPhoneService(true);
435 for (int retry = 0; retry < 2; retry++) {
445 if (retry == 0) getPhoneService(true);
535 for (int retry = 0; retry < 2; retry++)
    [all...]
  /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; }
  /system/core/libcutils/
ashmem-host.c 46 retry:
62 /* unlikely, but if we failed because `name' exists, retry */
64 goto retry;
  /bionic/libc/netbsd/resolv/
res_data.c 111 if (ores->retry != 0)
112 _nres.retry = ores->retry;
136 if (!_nres.retry)
137 _nres.retry = 4;
  /external/apache-http/src/org/apache/http/impl/io/
AbstractSessionInputBuffer.java 170 boolean retry = true;
171 while (retry) {
180 retry = false;
193 retry = false;
  /frameworks/base/core/java/android/os/
Process.java 337 /** retry interval for opening a zygote socket */
342 * already open, does nothing. May block and retry.
364 for (int retry = 0
365 ; (sZygoteSocket == null) && (retry < (retryCount + 1))
366 ; retry++ ) {
368 if (retry > 0) {
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
eap_mschapv2.c 397 int retry = 1; local
418 retry = atoi(pos);
419 wpa_printf(MSG_DEBUG, "EAP-MSCHAPV2: retry is %sallowed",
420 retry == 1 ? "" : "not ");
469 "EAP-MSCHAPV2: failure message: '%s' (retry %sallowed, error "
471 msg, retry == 1 ? "" : "not ", data->prev_error);
480 } else if (retry == 1 && config) {
492 return retry == 1;
635 int retry = 0; local
649 retry = eap_mschapv2_failure_txt(sm, data, buf)
    [all...]
  /bionic/libc/unistd/
exec.c 153 goto retry;
202 retry: (void)execve(bp, argv, environ);
228 * We used to retry here, but sh(1) doesn't.
  /external/oprofile/daemon/
init.c 108 retry:
117 goto retry;
opd_mangling.c 164 retry:
174 goto retry;

Completed in 882 milliseconds

1 2 3 4 5 6