Home
last modified time | relevance | path

Searched refs:errno (Results 126 – 150 of 376) sorted by last modified time

12345678910>>...16

/PHP-7.4/ext/mysqli/tests/
H A Dbug45019.phpt17 printf("[001] [%d] %s\n", $link->errno, $link->error);
28 printf("[002] [%d] %s\n", $link->errno, $link->error);
32 printf("[003] [%d] %s\n", $stmt->errno, $stmt->error);
H A Dbug45289.phpt21 printf("[002] [%d] %s\n", $link->errno, $link->error);
24 printf("[003] [%d] %s\n", $stmt->errno, $stmt->error);
32 printf("[004] [%d] %s\n", $link->errno, $link->error);
H A Dbug48909.phpt18 printf("[002] [%d] %s\n", $link->errno, $link->error);
21 printf("[003] [%d] %s\n", $link->errno, $link->error);
24 printf("[004] [%d] %s\n", $stmt->errno, $stmt->error);
27 if ($stmt->errno != 1366) {
32 printf("[005] [%d] %s\n", $stmt->errno, $stmt->error);
H A Dbug49442.phpt15 die(sprintf("skip %s, [%d] %s", $msg, $link->errno, $link->error));
H A D057.phpt90 ["errno"]=>
H A D014.phpt14 die(sprintf("skip Needs InnoDB support, [%d] %s", $link->errno, $link->error));
H A D015.phpt13 die(sprintf("skip Needs InnoDB support, [%d] %s", $link->errno, $link->error));
H A D030.phpt14 $errno = mysqli_errno($link);
15 var_dump($errno);
20 $errno = mysqli_errno($link);
22 var_dump($errno);
/PHP-7.4/Zend/tests/
H A Dclosure_061.phpt78 set_error_handler(function($errno, $errstr) {
/PHP-7.4/ext/snmp/
H A Dsnmp.c1737 char *error = strerror(errno); in PHP_FUNCTION()
/PHP-7.4/ext/iconv/
H A Dconfig.m4126 AC_MSG_CHECKING([if iconv supports errno])
129 #include <errno.h>
135 if (errno == EINVAL) {
/PHP-7.4/main/streams/
H A Dxp_socket.c640 strerror(errno)); in php_tcp_sockop_bind()
/PHP-7.4/ext/standard/tests/network/
H A Dbindto.phpt12 $errno, $errstr, 30, STREAM_CLIENT_CONNECT, $ctx
H A Dtcp6loop.phpt6 …If IPv6 is NOT supported, $errno will be set to something else (indicating parse/getaddrinfo error)
8 @stream_socket_client('tcp://[::1]:0', $errno);
9 …if ((PHP_OS_FAMILY === 'Windows' && $errno !== 10049) || (PHP_OS_FAMILY !== 'Windows' && $errno !=…
H A Dudp6loop.phpt6 * Connection refused (or code 10049 on Windows). If IPv6 is NOT supported, $errno will be set to
14 @stream_socket_client('tcp://[::1]:0', $errno);
15 …if ((PHP_OS_FAMILY === 'Windows' && $errno !== 10049) || (PHP_OS_FAMILY !== 'Windows' && $errno !=…
25 $server = @stream_socket_server("udp://[::1]:$port", $errno, $errstr, STREAM_SERVER_BIND);
/PHP-7.4/main/
H A Dnetwork.c220 …trpprintf(0, "php_network_getaddresses: getaddrinfo failed (null result pointer) errno=%d", errno); in php_network_getaddresses()
247 errno = E2BIG; in php_network_getaddresses()
257 … *error_string = strpprintf(0, "php_network_getaddresses: gethostbyname failed. errno=%d", errno); in php_network_getaddresses()
892 …(NULL, E_WARNING, "failed to bind to '%s:%d', system said: %s", bindto, bindport, strerror(errno));
1227 errno = 0;
1265 && (errno == ERANGE)) {
1291 && (errno == ERANGE)) {
/PHP-7.4/ext/pdo_pgsql/
H A Dpgsql_driver.c965 if (oid == 0 && (errno == ERANGE || errno == EINVAL)) { in PHP_METHOD()
1012 if (oid == 0 && (errno == ERANGE || errno == EINVAL)) { in PHP_METHOD()
/PHP-7.4/ext/opcache/
H A Dzend_file_cache.c183 if (mkdir(filename, S_IRWXU) < 0 && errno != EEXIST) {
185 if (php_win32_ioutil_mkdir(filename, 0700) < 0 && errno != EEXIST) {
900 …CEL_LOG_WARNING, "opcache cannot create directory for file '%s', %s\n", filename, strerror(errno));
907 if (errno != EEXIST) {
908 …accel_error(ACCEL_LOG_WARNING, "opcache cannot create file '%s', %s\n", filename, strerror(errno));
/PHP-7.4/ext/sockets/
H A Dsendrecvmsg.c202 PHP_SOCKET_ERROR(php_sock, "error in sendmsg", errno); in PHP_FUNCTION()
268 SOCKETS_G(last_error) = errno; in PHP_FUNCTION()
270 errno, sockets_strerror(errno)); in PHP_FUNCTION()
362 PHP_SOCKET_ERROR(php_sock, "unable to set socket option", errno); in php_do_setsockopt_ipv6_rfc3542()
393 PHP_SOCKET_ERROR(php_sock, "unable to get socket option", errno); in php_do_getsockopt_ipv6_rfc3542()
H A Dconversions.c579 "(errno %d)", errno); in to_zval_read_sin_addr()
630 "(errno %d)", errno); in to_zval_read_sin6_addr()
1267 if (errno == ENODEV) { in from_zval_write_ifindex()
1273 ZSTR_VAL(str), errno); in from_zval_write_ifindex()
1424 "descriptor %d: fstat() call failed with errno %d", fd, errno); in to_zval_read_fd_array()
H A Dsockets.c56 # define set_errno(a) (errno = a)
182 ZEND_ARG_INFO(0, errno)
616 if (errno != 0 && errno != ESPIPE && errno != EAGAIN) {
1021 SOCKETS_G(last_error) = errno;
1290 if (errno == EAGAIN
1292 || errno == EWOULDBLOCK
1295 php_sock->error = errno;
1497 SOCKETS_G(last_error) = errno;
2267 SOCKETS_G(last_error) = errno;
2654 SOCKETS_G(last_error) = errno;
[all …]
/PHP-7.4/ext/ldap/
H A Dldap.c1453 int num_attribs = 0, ret = 1, i, errno, argcount = ZEND_NUM_ARGS(); in php_ldap_do_search() local
1640 if (errno != LDAP_SUCCESS in php_ldap_do_search()
1641 && errno != LDAP_SIZELIMIT_EXCEEDED in php_ldap_do_search()
1643 && errno != LDAP_ADMINLIMIT_EXCEEDED in php_ldap_do_search()
1646 && errno != LDAP_REFERRAL in php_ldap_do_search()
1657 if (errno == LDAP_SIZELIMIT_EXCEEDED) { in php_ldap_do_search()
1661 else if (errno == LDAP_ADMINLIMIT_EXCEEDED) { in php_ldap_do_search()
2948 int errno; in PHP_FUNCTION() local
2972 switch (errno) { in PHP_FUNCTION()
3020 php_error_docref(NULL, E_WARNING, "%s", ldap_err2string(errno)); in PHP_FUNCTION()
[all …]
/PHP-7.4/ext/standard/tests/streams/
H A Dbug76136.phpt5 @stream_socket_client('tcp://[::1]:0', $errno);
6 if ((PHP_OS_FAMILY === 'Windows' && $errno !== 10049) || (PHP_OS_FAMILY !== 'Windows' && $errno !==…
/PHP-7.4/ext/standard/
H A Dbasic_functions.c1386 ZEND_ARG_INFO(1, errno)
1394 ZEND_ARG_INFO(1, errno)
4620 } else if (errno == EINTR) {
4625 } else if (errno == EINVAL) {
4663 if (errno == EINTR) {
5964 php_error_docref(NULL, E_WARNING, "%s", strerror(errno));
/PHP-7.4/ext/openssl/tests/
H A Dtlsv1.0_wrapper.phpt19 $server = stream_socket_server('tlsv1.0://127.0.0.1:64321', $errno, $errstr, $flags, $ctx);
38 $client = stream_socket_client("tlsv1.0://127.0.0.1:64321", $errno, $errstr, 3, $flags, $ctx);
41 $client = @stream_socket_client("sslv3://127.0.0.1:64321", $errno, $errstr, 3, $flags, $ctx);
44 $client = @stream_socket_client("tlsv1.2://127.0.0.1:64321", $errno, $errstr, 3, $flags, $ctx);

Completed in 73 milliseconds

12345678910>>...16