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

1 2 3 4 5 6 7 8 9

  /external/bluetooth/glib/gio/
gioerror.c 165 /* some magic to deal with EWOULDBLOCK and EAGAIN.
169 #if defined(EWOULDBLOCK) && defined(EAGAIN) && EWOULDBLOCK == EAGAIN
171 case EAGAIN:
178 # ifdef EAGAIN
179 case EAGAIN:
  /external/dropbear/
atomicio.c 51 if (errno == EINTR || errno == EAGAIN || errno == EWOULDBLOCK)
53 if (errno == EINTR || errno == EAGAIN)
  /external/openssl/crypto/rand/
rand_egd.c 165 #ifdef EAGAIN
166 case EAGAIN:
204 #ifdef EAGAIN
205 case EAGAIN:
230 #ifdef EAGAIN
231 case EAGAIN:
262 #ifdef EAGAIN
263 case EAGAIN:
  /external/bluetooth/bluez/compat/
lib.h 53 if (errno == EINTR || errno == EAGAIN)
74 if (errno == EINTR || errno == EAGAIN)
  /bionic/libc/kernel/common/asm-generic/
errno-base.h 25 #define EAGAIN 11
errno.h 23 #define EWOULDBLOCK EAGAIN
  /development/ndk/platforms/android-3/include/asm-generic/
errno-base.h 25 #define EAGAIN 11
  /external/kernel-headers/original/asm-generic/
errno-base.h 14 #define EAGAIN 11 /* Try again */
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/asm-generic/
errno-base.h 25 #define EAGAIN 11
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/asm-generic/
errno-base.h 25 #define EAGAIN 11
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/asm-generic/
errno-base.h 25 #define EAGAIN 11
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/asm-generic/
errno-base.h 25 #define EAGAIN 11
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/asm-generic/
errno-base.h 25 #define EAGAIN 11
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/asm-generic/
errno-base.h 25 #define EAGAIN 11
  /bionic/libc/unistd/
sigwait.c 60 /* __rt_sigtimedwait can return EAGAIN or EINTR, we need to loop
67 if (errno != EAGAIN && errno != EINTR)
  /external/iptables/
iptables-standalone.c 70 if (errno == EAGAIN) {
  /external/oprofile/libutil/
op_deviceio.c 36 if (count < 0 && errno != EINTR && errno != EAGAIN) {
  /external/ppp/pppd/plugins/radius/
lock.c 29 if ((res == -1) && (errno == EAGAIN))
  /external/webkit/JavaScriptCore/interpreter/
RegisterFile.cpp 51 while (madvise(m_start, (m_max - m_start) * sizeof(Register), MADV_FREE) == -1 && errno == EAGAIN) { }
  /system/core/adb/
test_track_devices.c 23 if (errno == EINTR || errno == EAGAIN)
41 if (errno == EINTR || errno == EAGAIN)
test_track_jdwp.c 23 if (errno == EINTR || errno == EAGAIN)
41 if (errno == EINTR || errno == EAGAIN)
  /external/openssl/crypto/bio/
bss_fd.c 295 #ifdef EAGAIN
296 #if EWOULDBLOCK != EAGAIN
297 case EAGAIN:
bss_sock.c 269 #ifdef EAGAIN
270 # if EWOULDBLOCK != EAGAIN
271 case EAGAIN:
  /external/chromium/net/socket/
tcp_client_socket_libevent.cc 55 case EAGAIN:
56 #if EWOULDBLOCK != EAGAIN
244 if (rv == -1 && errno != EAGAIN && errno != EWOULDBLOCK)
260 if (errno != EAGAIN && errno != EWOULDBLOCK)
282 if (errno != EAGAIN && errno != EWOULDBLOCK) {
316 if (errno != EAGAIN && errno != EWOULDBLOCK)
  /system/extras/tests/sdcard/
sysutil.cpp 43 // Max number of retries on EAGAIN and EINTR. Totally arbitrary.
109 error = EAGAIN != errno && EINTR != errno;
171 error = EAGAIN != errno && EINTR != errno;
457 error = EAGAIN != errno && EINTR != errno;
490 error = EAGAIN != errno && EINTR != errno;
545 error = EAGAIN != errno && EINTR != errno;
583 error = EAGAIN != errno && EINTR != errno;

Completed in 1228 milliseconds

1 2 3 4 5 6 7 8 9