Home
last modified time | relevance | path

Searched refs:EAGAIN (Results 1 – 25 of 25) sorted by relevance

/PHP-8.2/win32/
H A Dwinutil.c177 /* 32 */ , { ERROR_SHARING_VIOLATION , EAGAIN } in php_win32_code_to_errno()
250 /* 89 */ , { ERROR_NO_PROC_SLOTS , EAGAIN } in php_win32_code_to_errno()
343 /* 164 */ , { ERROR_MAX_THRDS_REACHED , EAGAIN } in php_win32_code_to_errno()
388 /* 215 */ , { ERROR_NESTING_NOT_ALLOWED , EAGAIN } in php_win32_code_to_errno()
394 /* 996 */ , { ERROR_IO_INCOMPLETE , EAGAIN } in php_win32_code_to_errno()
395 /* 997 */ , { ERROR_IO_PENDING , EAGAIN } in php_win32_code_to_errno()
/PHP-8.2/ext/sockets/
H A Dwindows_common.h73 # undef EAGAIN
116 #define EAGAIN WSAEWOULDBLOCK macro
H A Dphp_sockets.h105 if (_err != EAGAIN && _err != EWOULDBLOCK && _err != EINPROGRESS) { \
H A Dsockets_arginfo.h585 #if defined(EAGAIN) in register_sockets_symbols()
586 REGISTER_LONG_CONSTANT("SOCKET_EAGAIN", EAGAIN, CONST_PERSISTENT); in register_sockets_symbols()
H A Dsockets.c325 if (errno != 0 && errno != ESPIPE && errno != EAGAIN) {
/PHP-8.2/ext/standard/tests/streams/
H A Deagain_is_not_an_error.phpt2 EAGAIN/EWOULDBLOCK on a non-blocking socket should not result in an error return value
H A Dbug79000.phpt2 Bug #79000: Non-blocking socket stream reports EAGAIN as error
/PHP-8.2/ext/sockets/tests/
H A Dbug51958.phpt12 die('skip test relies Winsock\'s error code for WSAEWOULDBLOCK/EAGAIN');
H A Dsocket_sentto_recvfrom_unix.phpt20 var_dump(socket_recvfrom($socket, $buf, 12, 0, $from, $port)); //false (EAGAIN, no warning)
/PHP-8.2/main/
H A Dphp_network.h49 # define EWOULDBLOCK EAGAIN
53 #if EAGAIN != EWOULDBLOCK
54 # define PHP_IS_TRANSIENT_ERROR(err) (err == EAGAIN || err == EWOULDBLOCK)
56 # define PHP_IS_TRANSIENT_ERROR(err) (err == EAGAIN)
/PHP-8.2/ext/sysvmsg/
H A Dsysvmsg_arginfo.h75 REGISTER_LONG_CONSTANT("MSG_EAGAIN", EAGAIN, CONST_PERSISTENT); in register_sysvmsg_symbols()
/PHP-8.2/ext/standard/
H A Dflock_compat.c51 (errno == EACCES || errno == EAGAIN)) in php_flock()
H A Dfilestat.c468 if (err == EAGAIN) { in php_get_uid_by_name()
/PHP-8.2/ext/sysvsem/
H A Dsysvsem.c323 if (errno != EAGAIN) { in php_sysvsem_semop()
/PHP-8.2/ext/pcntl/
H A Dpcntl_arginfo.h517 #if defined(EAGAIN) in register_pcntl_symbols()
518 REGISTER_LONG_CONSTANT("PCNTL_EAGAIN", EAGAIN, CONST_PERSISTENT); in register_pcntl_symbols()
H A Dpcntl.c817 if (signo == -1 && errno != EAGAIN) { in pcntl_sigwaitinfo()
1272 case EAGAIN: in PHP_FUNCTION()
1310 case EAGAIN: in PHP_FUNCTION()
/PHP-8.2/ext/openssl/
H A Dxp_ssl.c255 errno = EAGAIN; in php_openssl_handle_ssl_error()
2002 } else if (errno == EAGAIN) { in php_openssl_enable_crypto()
2132 if (errno == EAGAIN && err == SSL_ERROR_WANT_READ && read) { in php_openssl_sockop_io()
2135 if (errno == EAGAIN && err == SSL_ERROR_WANT_WRITE && read == 0) { in php_openssl_sockop_io()
2141 stream->eof = (retry == 0 && errno != EAGAIN && !SSL_pending(sslsock->ssl_handle)); in php_openssl_sockop_io()
2538 retry = php_socket_errno() == EAGAIN; in php_openssl_sockop_set_option()
2589 …(0 > ret && err != EWOULDBLOCK && err != EAGAIN && err != EMSGSIZE)) { /* there was an unrecoverab… in php_openssl_sockop_set_option()
/PHP-8.2/sapi/fpm/fpm/
H A Dfpm_events.c74 if (res < 0 && errno != EAGAIN && errno != EWOULDBLOCK) { in fpm_got_signal()
/PHP-8.2/ext/opcache/
H A Dzend_file_cache.c1028 errno = written == -1 ? errno : EAGAIN;
1042 errno = written == -1 ? errno : EAGAIN;
1048 errno = written == -1 ? errno : EAGAIN;
1054 errno = written == -1 ? errno : EAGAIN;
/PHP-8.2/sapi/litespeed/
H A Dlsapilib.c521 if ( errno == EAGAIN ) in lsapi_writev()
1553 if (( errno == EINTR )||( errno == EAGAIN)) in LSAPI_Accept_r()
2009 if (( !ret )||( errno == EAGAIN )) in gsendfile()
3348 if (( errno == EINTR )||( errno == EAGAIN)) in lsapi_prefork_server_accept()
3548 if ((errno == EINTR) || (errno == EAGAIN)) in LSAPI_Accept_Before_Fork()
3712 if (( errno == EINTR )||( errno == EAGAIN)) in LSAPI_Prefork_Accept_r()
/PHP-8.2/ext/random/
H A Drandom.c542 } else if (errno == EINTR || errno == EAGAIN) {
/PHP-8.2/ext/fileinfo/libmagic/
H A Dcompress.c412 if (errno == EINTR || errno == EAGAIN) in sread()
/PHP-8.2/main/streams/
H A Dxp_socket.c359 …(0 > ret && err != EWOULDBLOCK && err != EAGAIN && err != EMSGSIZE)) { /* there was an unrecoverab… in php_sockop_set_option()
/PHP-8.2/sapi/cli/
H A Dphp_cli.c266 } while (ret <= 0 && (errno == EINTR || (errno == EAGAIN && sapi_cli_select(STDOUT_FILENO)))); in sapi_cli_single_write()
H A Dphp_cli_server.c73 # define SOCK_EAGAIN EAGAIN

Completed in 103 milliseconds