Home
last modified time | relevance | path

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

/PHP-7.3/ext/standard/
H A Dflock_compat.h43 # ifdef EWOULDBLOCK
44 # undef EWOULDBLOCK
46 # define EWOULDBLOCK WSAEWOULDBLOCK macro
H A Dflock_compat.c65 errno = EWOULDBLOCK; in php_flock()
150 _set_errno(EWOULDBLOCK);
H A Dfile.c365 if (operation && errno == EWOULDBLOCK && wouldblock) { in PHP_FUNCTION()
/PHP-7.3/main/streams/
H A Dphp_streams_int.h49 # ifdef EWOULDBLOCK
50 # undef EWOULDBLOCK
52 # define EWOULDBLOCK WSAEWOULDBLOCK macro
H A Dxp_socket.c81 if (sock->is_blocked && (err == EWOULDBLOCK || err == EAGAIN)) { in php_sockop_write()
168 stream->eof = (nr_bytes == 0 || (nr_bytes == -1 && err != EWOULDBLOCK && err != EAGAIN)); in php_sockop_read()
343 …(0 > ret && err != EWOULDBLOCK && err != EAGAIN && err != EMSGSIZE)) { /* there was an unrecoverab… in php_sockop_set_option()
H A Dplain_wrapper.c413 …stream->eof = (ret == 0 || (ret == (size_t)-1 && errno != EWOULDBLOCK && errno != EINTR && errno !… in php_stdiop_read()
/PHP-7.3/main/
H A Dphp_network.h38 # ifdef EWOULDBLOCK
39 # undef EWOULDBLOCK
44 # define EWOULDBLOCK WSAEWOULDBLOCK macro
50 #ifndef EWOULDBLOCK
51 # define EWOULDBLOCK EAGAIN macro
/PHP-7.3/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.h149 #ifdef EWOULDBLOCK
151 REGISTER_LONG_CONSTANT("SOCKET_EWOULDBLOCK", EWOULDBLOCK, CONST_CS | CONST_PERSISTENT);
H A Dsockets.c1277 #ifdef EWOULDBLOCK
1278 || errno == EWOULDBLOCK
/PHP-7.3/sapi/fpm/fpm/
H A Dfpm_stdio.c170 if (res == 0 || (errno != EAGAIN && errno != EWOULDBLOCK)) {
H A Dfpm_events.c74 if (res < 0 && errno != EAGAIN && errno != EWOULDBLOCK) { in fpm_got_signal()

Completed in 50 milliseconds