HomeSort by relevance Sort by last modified time
    Searched refs:EAGAIN (Results 251 - 275 of 805) sorted by null

<<11121314151617181920>>

  /external/ltp/testcases/kernel/io/stress_cd/
stress_cd.c 85 if (errno == EAGAIN) {
  /external/ltp/testcases/kernel/syscalls/fanotify/
fanotify04.c 178 } else if (errno != EAGAIN) {
  /external/ltp/testcases/kernel/syscalls/fcntl/
fcntl33.c 173 if (TEST_ERRNO == EAGAIN) {
  /external/ltp/testcases/kernel/syscalls/ftruncate/
ftruncate04.c 131 if (TEST_ERRNO != EAGAIN) {
133 "ftruncate() %s failed unexpectedly, expected EAGAIN",
138 tst_resm(TPASS, "ftruncate() %s failed with EAGAIN", msg);
  /external/ltp/testcases/kernel/syscalls/mq_timedreceive/
mq_timedreceive01.c 93 .err = EAGAIN,
  /external/ltp/testcases/kernel/syscalls/mq_timedsend/
mq_timedsend01.c 86 .err = EAGAIN,
  /external/ltp/testcases/kernel/syscalls/setrlimit/
setrlimit01.c 224 if (errno != EAGAIN) {
225 tst_resm(TWARN, "Expected EAGAIN got %d",
  /external/ltp/testcases/network/tcp_cmds/sendfile/
testsf_s.c 154 if ((errno != EWOULDBLOCK) && (errno != EAGAIN)) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/aio_suspend/
4-1.c 170 /* timed out aio_suspend should return -1 and set errno to EAGAIN */
177 if (errno != EAGAIN) {
178 printf(TNAME " aio_suspend() should set errno to EAGAIN:"
9-1.c 15 * [EAGAIN] No AIO indicated in the list completed before timeout
23 * - check that the suspend timed out and returned EAGAIN
149 /* timed out aio_suspend should return -1 and set errno to EAGAIN */
155 if (errno != EAGAIN) {
156 printf("aio_suspend() should set errno to EAGAIN: %d (%s)\n",
  /external/parameter-framework/asio-1.10.6/include/asio/
error.hpp 143 ASIO_NATIVE_ERROR(EAGAIN)),
  /external/python/cpython3/Modules/_io/
fileio.c 647 if (err == EAGAIN) {
750 if (errno == EAGAIN) {
815 if (err == EAGAIN) {
861 if (err == EAGAIN) {
    [all...]
  /external/syslinux/com32/elflink/ldlinux/
get_key.c 211 if (rv == 0 || (rv == -1 && errno == EAGAIN)) {
  /external/webrtc/webrtc/base/
socket.h 124 return (e == EWOULDBLOCK) || (e == EAGAIN) || (e == EINPROGRESS);
  /external/wpa_supplicant_8/src/drivers/
netlink.c 51 if (errno != EINTR && errno != EAGAIN)
rfkill.c 142 if (errno == EAGAIN)
  /external/xmlrpcpp/src/
XmlRpcSocket.cpp 61 return (err == EINPROGRESS || err == EAGAIN || err == EWOULDBLOCK || err == EINTR);
  /frameworks/base/services/net/java/android/net/util/
PacketReader.java 201 // Keep trying to read until we get EAGAIN/EWOULDBLOCK or some fatal error.
214 if (e.errno == OsConstants.EAGAIN) {
  /frameworks/native/libs/gui/
BitTube.cpp 105 if (err == EAGAIN || err == EWOULDBLOCK) {
106 // EAGAIN means that we have non-blocking I/O but there was no data to be read. Nothing the
  /frameworks/native/libs/sensor/
BitTube.cpp 123 if (err == EAGAIN || err == EWOULDBLOCK) {
124 // EAGAIN means that we have non-blocking I/O but there was
SensorEventQueue.cpp 161 } else if (size < 0 && errno == EAGAIN) {
  /frameworks/opt/net/wifi/libwifi_hal/
wifi_hal_common.cpp 80 if (ret < 0 && errno == EAGAIN)
  /hardware/libhardware/modules/sensors/dynamic_sensor/
ConnectionDetector.cpp 193 if (len == -1 && errno == EAGAIN) {
  /hardware/nxp/nfc/halimpl/tml/
phTmlNfc_i2c.cc 262 if (errno == EINTR || errno == EAGAIN) {
  /kernel/tests/net/test/
bpf_test.py 241 self.assertRaisesErrno(errno.EAGAIN, SocketUDPLoopBack, 1, 4, self.prog_fd)
242 self.assertRaisesErrno(errno.EAGAIN, SocketUDPLoopBack, 1, 6, self.prog_fd)
361 self.assertRaisesErrno(errno.EAGAIN, SocketUDPLoopBack, 1, 4, None)
362 self.assertRaisesErrno(errno.EAGAIN, SocketUDPLoopBack, 1, 6, None)

Completed in 554 milliseconds

<<11121314151617181920>>