HomeSort by: relevance | last modified time | path
    Searched refs:EWOULDBLOCK (Results 1 - 25 of 26) sorted by relevancy

1 2

  /xsrc/external/mit/libxshmfence/dist/src/
xshmfence_futex.c 64 if (errno != EWOULDBLOCK)
  /xsrc/external/mit/libXfont/dist/src/fc/
fsio.h 151 /* check for both EAGAIN and EWOULDBLOCK, because some supposedly POSIX
152 * systems are broken and return EWOULDBLOCK when they should return EAGAIN
157 #if defined(EAGAIN) && defined(EWOULDBLOCK)
158 #define ETEST() (errno == EAGAIN || errno == EWOULDBLOCK)
163 #define ETEST() (errno == EWOULDBLOCK)
fsio.c 60 #define EWOULDBLOCK WSAEWOULDBLOCK
  /xsrc/external/mit/libXfont2/dist/src/fc/
fsio.h 153 /* check for both EAGAIN and EWOULDBLOCK, because some supposedly POSIX
154 * systems are broken and return EWOULDBLOCK when they should return EAGAIN
159 #if defined(EAGAIN) && defined(EWOULDBLOCK)
160 #define ETEST() (errno == EAGAIN || errno == EWOULDBLOCK)
165 #define ETEST() (errno == EWOULDBLOCK)
fsio.c 57 #define EWOULDBLOCK WSAEWOULDBLOCK
  /xsrc/external/mit/xdm/dist/xdm/
prngc.c 180 #ifdef EWOULDBLOCK
182 || errno == EWOULDBLOCK)
  /xsrc/external/mit/xorg-server/dist/os/
osdep.h 62 /* If EAGAIN and EWOULDBLOCK are distinct errno values, then we check errno
63 * for both EAGAIN and EWOULDBLOCK, because some supposedly POSIX
64 * systems are broken and return EWOULDBLOCK when they should return EAGAIN
67 # if (EAGAIN != EWOULDBLOCK)
68 # define ETEST(err) (err == EAGAIN || err == EWOULDBLOCK)
  /xsrc/external/mit/xf86-video-qxl/dist/src/
spiceqxl_uinput.c 37 if (errno != EAGAIN && errno != EINTR && errno != EWOULDBLOCK) {
spiceqxl_smartcard.c 76 if (errno == EAGAIN || errno == EWOULDBLOCK || errno == EINTR) {
spiceqxl_vdagent.c 56 if (errno == EAGAIN || errno == EWOULDBLOCK || errno == EINTR) {
  /xsrc/external/mit/libFS/dist/src/
FSlibInt.c 67 /* check for both EAGAIN and EWOULDBLOCK, because some supposedly POSIX
68 * systems are broken and return EWOULDBLOCK when they should return EAGAIN
70 * Solaris defines EWOULDBLOCK to be EAGAIN, so don't need to check twice
76 #if defined(EAGAIN) && defined(EWOULDBLOCK) && (EAGAIN != EWOULDBLOCK)
77 #define ETEST() (errno == EAGAIN || errno == EWOULDBLOCK)
82 #define ETEST() (errno == EWOULDBLOCK)
  /xsrc/external/mit/xfs/dist/os/
io.c 70 /* check for both EAGAIN and EWOULDBLOCK, because some supposedly POSIX
71 * systems are broken and return EWOULDBLOCK when they should return EAGAIN
74 #if defined(EAGAIN) && defined(EWOULDBLOCK)
75 #define ETEST(err) (err == EAGAIN || err == EWOULDBLOCK)
81 #define ETEST(err) (err == EWOULDBLOCK)
  /xsrc/external/mit/xorg-server/dist/hw/netbsd/x68k/
x68kKbd.c 318 if (errno != EWOULDBLOCK) {
x68kMouse.c 302 if (errno != EWOULDBLOCK) {
  /xsrc/external/mit/xorg-server/dist/hw/sun/
sunMouse.c 270 if (errno != EWOULDBLOCK) {
sunKbd.c 953 if (errno != EWOULDBLOCK) {
  /xsrc/external/mit/xorg-server.old/dist/hw/netbsd/x68k/
x68kKbd.c 262 if (errno == EWOULDBLOCK) {
x68kMouse.c 226 if (errno == EWOULDBLOCK) {
  /xsrc/external/mit/xorg-server.old/dist/hw/sun/
sunMouse.c 204 if (errno == EWOULDBLOCK) {
sunKbd.c 784 if (errno == EWOULDBLOCK) {
  /xsrc/external/mit/xterm/dist/
ptydata.c 49 * Check for both EAGAIN and EWOULDBLOCK, because some supposedly POSIX
50 * systems are broken and return EWOULDBLOCK when they should return EAGAIN.
53 #if defined(EAGAIN) && defined(EWOULDBLOCK)
54 #define E_TEST(err) ((err) == EAGAIN || (err) == EWOULDBLOCK)
59 #define E_TEST(err) ((err) == EWOULDBLOCK)
  /xsrc/external/mit/xtrans/dist/
Xtranssock.c 127 #undef EWOULDBLOCK
128 #define EWOULDBLOCK WSAEWOULDBLOCK
1639 * If the error was EWOULDBLOCK or EINPROGRESS then the socket
1666 else if (olderrno == EWOULDBLOCK || olderrno == EINPROGRESS)
1932 * If the error was EWOULDBLOCK or EINPROGRESS then the socket
1939 if (olderrno == EWOULDBLOCK || olderrno == EINPROGRESS)
  /xsrc/external/mit/xorg-server/dist/hw/xfree86/drivers/inputtest/
xf86-input-inputtest.c 189 if (errno == EAGAIN || errno == EWOULDBLOCK)
848 if (errno == EAGAIN || errno == EWOULDBLOCK)
  /xsrc/external/mit/xorg-server.old/dist/hw/kdrive/linux/
mouse.c 184 if (errno != EWOULDBLOCK)
  /xsrc/external/mit/xorg-server.old/dist/os/
io.c 91 /* check for both EAGAIN and EWOULDBLOCK, because some supposedly POSIX
92 * systems are broken and return EWOULDBLOCK when they should return EAGAIN
95 #define ETEST(err) (err == EAGAIN || err == EWOULDBLOCK)

Completed in 47 milliseconds

1 2