Home
last modified time | relevance | path

Searched refs:errno (Results 76 – 100 of 376) sorted by relevance

12345678910>>...16

/PHP-7.4/ext/openssl/tests/
H A Dsni_server_key_cert.phpt30 $server = stream_socket_server('tls://127.0.0.1:64321', $errno, $errstr, $flags, $ctx);
49 $client = stream_socket_client("tls://127.0.0.1:64321", $errno, $errstr, 1, $flags, $ctx);
55 $client = @stream_socket_client("tls://127.0.0.1:64321", $errno, $errstr, 1, $flags, $ctx);
61 $client = @stream_socket_client("tls://127.0.0.1:64321", $errno, $errstr, 1, $flags, $ctx);
H A Dstream_crypto_flags_003.phpt25 $server = stream_socket_server($serverUri, $errno, $errstr, $serverFlags, $serverCtx);
49 var_dump(stream_socket_client($serverUri, $errno, $errstr, 1, $clientFlags, $clientCtx));
52 var_dump(@stream_socket_client($serverUri, $errno, $errstr, 1, $clientFlags, $clientCtx));
55 var_dump(@stream_socket_client($serverUri, $errno, $errstr, 1, $clientFlags, $clientCtx));
H A Dsession_meta_capture.phpt21 $server = stream_socket_server($serverUri, $errno, $errstr, $serverFlags, $serverCtx);
46 @stream_socket_client($serverUri, $errno, $errstr, 1, $clientFlags, $clientCtx);
51 @stream_socket_client($serverUri, $errno, $errstr, 1, $clientFlags, $clientCtx);
56 @stream_socket_client($serverUri, $errno, $errstr, 2, $clientFlags, $clientCtx);
H A Dstream_crypto_flags_001.phpt21 $server = stream_socket_server($serverUri, $errno, $errstr, $serverFlags, $serverCtx);
44 var_dump(stream_socket_client($serverUri, $errno, $errstr, 1, $clientFlags, $clientCtx));
47 var_dump(stream_socket_client($serverUri, $errno, $errstr, 1, $clientFlags, $clientCtx));
H A Dbug68920.phpt19 $server = stream_socket_server($serverUri, $errno, $errstr, $serverFlags, $serverCtx);
36 $sock = stream_socket_client($serverUri, $errno, $errstr, 30, $clientFlags, $ctx);
40 $sock = stream_socket_client($serverUri, $errno, $errstr, 30, $clientFlags, $ctx);
44 $sock = stream_socket_client($serverUri, $errno, $errstr, 30, $clientFlags, $ctx);
48 $sock = stream_socket_client($serverUri, $errno, $errstr, 30, $clientFlags, $ctx);
/PHP-7.4/ext/mysqli/tests/
H A Dbug_bits.phpt17 printf("[002] [%d] %s\n", $link->errno, $link->error);
21 printf("[003] [%d] %s\n", $link->errno, $link->error);
32 printf("[004] [%d] %s\n", $link->errno, $link->error);
36 printf("[005] [%d] %s\n", $link->errno, $link->error);
H A Dmysqli_class_mysqli_stmt_interface.phpt89 printf("[001] [%d] %s\n", $stmt->errno, $stmt->error);
94 assert(mysqli_stmt_errno($stmt) === $stmt->errno);
95 printf("stmt->errno = '%s'\n", $stmt->errno);
129 printf("[002] [%d] %s\n", $stmt->errno, $stmt->error);
147 errno
163 errno
179 stmt->errno = '0'
H A Dbug34810.phpt31 if ($warning->errno == 1048 || $warning->errno == 1253) {
73 ["errno"]=>
110 ["errno"]=>
H A Dmysqli_error_oo.phpt26 …xpecting string/empty, got %s/%s. [%d] %s\n", gettype($tmp), $tmp, $mysqli->errno, $mysqli->error);
29 printf("[004] Failed to drop old test table: [%d] %s\n", $mysqli->errno, $mysqli->error);
35 …able... doesn't exit], got %s/%s. [%d] %s\n", gettype($tmp), $tmp, $mysqli->errno, $mysqli->error);
H A Dbug28817.phpt25 var_dump($mysql->errno);
30 var_dump($mysql->errno > 0);
H A Dbug_mysql_49406.phpt19 printf("[002] [%d] %s\n", $link->errno, $link->error);
22 printf("[003] No result, [%d] %s\n", $link->errno, $link->error);
31 printf("[005] [%d] %s\n", $link->errno, $link->error);
34 printf("[006] [%d] %s\n", $stmt->errno, $stmt->error);
82 printf("[007] [%d] %s\n", $stmt->errno, $stmt->error);
/PHP-7.4/Zend/tests/
H A Dbug30998.phpt7 function my_error($errno, $errstr, $errfile, $errline)
9 print "$errstr ($errno) in $errfile:$errline\n";
/PHP-7.4/sapi/fpm/fpm/events/
H A Dport.c133 if (errno != EINTR && errno != ETIME) { in fpm_event_port_wait()
134 zlog(ZLOG_WARNING, "poll() returns %d", errno); in fpm_event_port_wait()
/PHP-7.4/ext/posix/tests/
H A Dposix_times_basic.phpt17 $errno= posix_get_last_error();
18 var_dump(posix_strerror($errno));
/PHP-7.4/ext/standard/tests/network/
H A Dbug20134.phpt6 $fp = fsockopen("udp://localhost", 65534, $errno, $errstr);
10 echo "ERROR: $errno - $errstr<br>\n";
H A Dfsockopen_basic.phpt5 /* Prototype : proto resource fsockopen(string hostname, int port [, int errno [, string errstr [,…
26 $errno = null;
31 $client = fsockopen($hostname, $port, $errno, $errstr, $timeout);
/PHP-7.4/sapi/fpm/fpm/
H A Dfpm_trace_ptrace.c70 errno = 0; in fpm_trace_get_long()
72 if (errno) { in fpm_trace_get_long()
/PHP-7.4/ext/sockets/
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 …]
H A Dwindows_common.h28 #ifdef errno
29 # undef errno
31 #define errno WSAGetLastError() macro
/PHP-7.4/ext/fileinfo/libmagic/
H A Dapptype.c57 file_error(ms, errno, "cannot create tempnam"); in file_os2_apptype()
69 file_error(ms, errno, "cannot open tmp file `%s'", path); in file_os2_apptype()
73 file_error(ms, errno, "cannot write tmp file `%s'", in file_os2_apptype()
/PHP-7.4/ext/standard/tests/dir/
H A Dscandir_variation6.phpt57 Warning: scandir(): (errno %d): %s in %s on line %d
62 Warning: scandir(): (errno %d): %s in %s on line %d
69 Warning: scandir(): (errno %d): %s in %s on line %d
74 Warning: scandir(): (errno %d): %s in %s on line %d
/PHP-7.4/ext/standard/
H A Dlink.c88 php_error_docref(NULL, E_WARNING, "%s", strerror(errno)); in PHP_FUNCTION()
123 php_error_docref(NULL, E_WARNING, "%s", strerror(errno)); in PHP_FUNCTION()
184 php_error_docref(NULL, E_WARNING, "%s", strerror(errno)); in PHP_FUNCTION()
233 php_error_docref(NULL, E_WARNING, "%s", strerror(errno)); in PHP_FUNCTION()
/PHP-7.4/ext/standard/tests/streams/
H A Dstream_context_tcp_nodelay_server.phpt15 "tcp://127.0.0.1:9099", $errno, $errstr, STREAM_SERVER_BIND | STREAM_SERVER_LISTEN, $ctxt);
33 "tcp://127.0.0.1:9099", $errno, $errstr, 10);
H A Dbug61371.phpt17 …$stream = stream_socket_client('udp://127.0.0.1:80', $errno, $errstr, 10, STREAM_CLIENT_CONNECT, $…
21 unset($errno);
/PHP-7.4/ext/standard/tests/file/
H A Dbug81223.phpt20 Notice: fread(): read of %d bytes failed with errno=13 Permission denied in %s on line %d
23 Notice: fread(): read of %d bytes failed with errno=13 Permission denied in %s on line %d

Completed in 90 milliseconds

12345678910>>...16