Home
last modified time | relevance | path

Searched refs:EWOULDBLOCK (Results 1 – 13 of 13) sorted by relevance

/PHP-7.1/ext/standard/
H A Dflock_compat.h45 # ifdef EWOULDBLOCK
46 # undef EWOULDBLOCK
48 # define EWOULDBLOCK WSAEWOULDBLOCK macro
H A Dflock_compat.c71 errno = EWOULDBLOCK; in php_flock()
156 _set_errno(EWOULDBLOCK);
H A Dfile.c364 if (operation && errno == EWOULDBLOCK && wouldblock) { in PHP_FUNCTION()
/PHP-7.1/main/streams/
H A Dphp_streams_int.h52 # ifdef EWOULDBLOCK
53 # undef EWOULDBLOCK
55 # define EWOULDBLOCK WSAEWOULDBLOCK macro
H A Dxp_socket.c83 if (sock->is_blocked && (err == EWOULDBLOCK || err == EAGAIN)) { in php_sockop_write()
170 stream->eof = (nr_bytes == 0 || (nr_bytes == -1 && err != EWOULDBLOCK && err != EAGAIN)); in php_sockop_read()
339 …(0 > ret && err != EWOULDBLOCK && err != EAGAIN && err != EMSGSIZE)) { /* there was an unrecoverab… in php_sockop_set_option()
H A Dplain_wrapper.c415 …stream->eof = (ret == 0 || (ret == (size_t)-1 && errno != EWOULDBLOCK && errno != EINTR && errno !… in php_stdiop_read()
/PHP-7.1/main/
H A Dphp_network.h40 # ifdef EWOULDBLOCK
41 # undef EWOULDBLOCK
46 # define EWOULDBLOCK WSAEWOULDBLOCK macro
52 #ifndef EWOULDBLOCK
53 # define EWOULDBLOCK EAGAIN macro
/PHP-7.1/ext/sockets/
H A Dwindows_common.h37 # undef EWOULDBLOCK
79 #define EWOULDBLOCK WSAEWOULDBLOCK macro
H A Dphp_sockets.h85 if (_err != EAGAIN && _err != EWOULDBLOCK && _err != EINPROGRESS) { \
H A Dunix_socket_constants.h151 #ifdef EWOULDBLOCK
153 REGISTER_LONG_CONSTANT("SOCKET_EWOULDBLOCK", EWOULDBLOCK, CONST_CS | CONST_PERSISTENT);
H A Dsockets.c1179 #ifdef EWOULDBLOCK
1180 || errno == EWOULDBLOCK
/PHP-7.1/sapi/fpm/fpm/
H A Dfpm_stdio.c138 if (res < 0 && (errno == EAGAIN || errno == EWOULDBLOCK)) {
H A Dfpm_events.c67 if (res < 0 && errno != EAGAIN && errno != EWOULDBLOCK) { in fpm_got_signal()

Completed in 50 milliseconds