Home
last modified time | relevance | path

Searched refs:errno (Results 101 – 125 of 387) sorted by relevance

12345678910>>...16

/PHP-8.2/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 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 Dbug_mysql_49406.phpt20 printf("[002] [%d] %s\n", $link->errno, $link->error);
23 printf("[003] No result, [%d] %s\n", $link->errno, $link->error);
32 printf("[005] [%d] %s\n", $link->errno, $link->error);
35 printf("[006] [%d] %s\n", $stmt->errno, $stmt->error);
83 printf("[007] [%d] %s\n", $stmt->errno, $stmt->error);
H A Dmysqli_class_mysqli_stmt_interface.phpt95 printf("[001] [%d] %s\n", $stmt->errno, $stmt->error);
101 assert(mysqli_stmt_errno($stmt) === $stmt->errno);
102 printf("stmt->errno = '%s'\n", $stmt->errno);
144 errno
160 stmt->errno = '0'
H A Dmysqli_ping.phpt19 if (!($errno = mysqli_errno($link)))
23 if ($errno === mysqli_errno($link))
H A Dbug34810.phpt33 if ($warning->errno == 1048 || $warning->errno == 1253) {
75 ["errno"]=>
112 ["errno"]=>
H A Dbug55283.phpt25 if ($link->errno == 1064 && ($res = $link->query("SHOW VARIABLES"))) {
30 … die(sprintf("skip Failed to test for MySQL SSL support, [%d] %s", $link->errno, $link->error));
36 die(sprintf("skip Failed to test for MySQL SSL support, [%d] %s", $link->errno, $link->error));
39 die(sprintf("skip MySQL has no SSL support, [%d] %s", $link->errno, $link->error));
H A Dmysqli_fetch_object_oo.phpt27 printf("[003] [%d] %s\n", $mysqli->errno, $mysqli->error);
47 printf("[007] Object seems wrong. [%d] %s\n", $mysqli->errno, $mysqli->error);
64 printf("[008] Object seems wrong. [%d] %s\n", $mysqli->errno, $mysqli->error);
87 printf("[010] Object seems wrong. [%d] %s\n", $mysqli->errno, $mysqli->error);
96 printf("[011] Object seems wrong. [%d] %s\n", $mysqli->errno, $mysqli->error);
106 printf("[012] [%d] %s\n", $mysqli->errno, $mysqli->error);
H A Dmysqli_connect_oo_defaults.phpt35 printf("[001] [%d] %s\n", $mysqli->errno, $mysqli->error);
58 printf("[003] [%d] %s\n", $mysqli->errno, $mysqli->error);
76 printf("[005] [%d] %s\n", $mysqli->errno, $mysqli->error);
94 printf("[007] [%d] %s\n", $mysqli->errno, $mysqli->error);
112 printf("[009] [%d] %s\n", $mysqli->errno, $mysqli->error);
116 printf("[010] [%d] %s\n", $mysqli->errno, $mysqli->error);
/PHP-8.2/ext/openssl/tests/
H A Dbug68920.phpt20 $server = stream_socket_server($serverUri, $errno, $errstr, $serverFlags, $serverCtx);
37 $sock = stream_socket_client($serverUri, $errno, $errstr, 30, $clientFlags, $ctx);
41 $sock = stream_socket_client($serverUri, $errno, $errstr, 30, $clientFlags, $ctx);
45 $sock = stream_socket_client($serverUri, $errno, $errstr, 30, $clientFlags, $ctx);
49 $sock = stream_socket_client($serverUri, $errno, $errstr, 30, $clientFlags, $ctx);
H A Dbug76705.phpt18 $server = stream_socket_server($serverUri, $errno, $errstr, $serverFlags, $serverCtx);
37 var_dump(stream_socket_client($serverUri, $errno, $errstr, 2, $clientFlags, $clientCtx));
H A Dsan_ipv6_peer_matching.phpt26 $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 Dopenssl_peer_fingerprint_basic.phpt21 $server = stream_socket_server($serverUri, $errno, $errstr, $serverFlags, $serverCtx);
43 var_dump(stream_socket_client($serverUri, $errno, $errstr, 2, $clientFlags, $clientCtx));
48 var_dump(stream_socket_client($serverUri, $errno, $errstr, 2, $clientFlags, $clientCtx));
/PHP-8.2/ext/intl/tests/
H A Dtimezone_hasSameRules_error.phpt9 function error_handler($errno, $errstr, $errfile, $errline)
11 var_dump($errno, $errstr);
/PHP-8.2/ext/standard/tests/streams/
H A Dstream_select_null_usec.phpt11 set_error_handler(function ($errno, $errstr) {
12 print $errno . " " . $errstr . "\n";
H A Dbug61371.phpt17 …$stream = stream_socket_client('udp://127.0.0.1:80', $errno, $errstr, 10, STREAM_CLIENT_CONNECT, $…
21 unset($errno);
H A Dbug61371-unix.phpt22 …$stream = stream_socket_client('udp://0.0.0.0:80', $errno, $errstr, 10, STREAM_CLIENT_CONNECT, $co…
26 unset($errno);
/PHP-8.2/main/streams/
H A Dplain_wrapper.c362 if (PHP_IS_TRANSIENT_ERROR(errno)) { in php_stdiop_write()
365 if (errno == EINTR) { in php_stdiop_write()
370 …ocref(NULL, E_NOTICE, "Write of %zu bytes failed with errno=%d %s", count, errno, strerror(errno)); in php_stdiop_write()
433 if (PHP_IS_TRANSIENT_ERROR(errno)) { in php_stdiop_read()
436 } else if (errno == EINTR) { in php_stdiop_read()
444 if (errno != EBADF) { in php_stdiop_read()
492 errno = 0; in php_stdiop_close()
1300 if (errno == EXDEV) { in php_plain_files_rename()
1320 if (errno != EPERM) { in php_plain_files_rename()
1328 if (errno != EPERM) { in php_plain_files_rename()
[all …]
/PHP-8.2/ext/sockets/tests/
H A Dsocket_sentto_recvfrom_ipv6_udp.phpt49 if (($bytes === false) && ($errno = socket_last_error($socket))) {
50 if ($errno = SOCKET_EAGAIN) {
57 socket_strerror($errno)));
/PHP-8.2/sapi/fpm/fpm/
H A Dfpm_signals.c144 int saved_errno = errno; in sig_soft_quit()
152 errno = saved_errno; in sig_soft_quit()
178 saved_errno = errno; in sig_handler()
181 errno = saved_errno; in sig_handler()
/PHP-8.2/ext/intl/collator/
H A Dcollator_is_numeric.c122 errno = ERANGE; in collator_u_strtol()
194 errno = ERANGE; in collator_u_strtol()
217 errno=0; in collator_is_numeric()
219 if (errno != ERANGE) { in collator_is_numeric()
/PHP-8.2/ext/standard/
H A Ddir.c285 php_error_docref(NULL, E_WARNING, "%s (errno %d)", strerror(errno), errno); in PHP_FUNCTION()
294 php_error_docref(NULL, E_WARNING, "%s (errno %d)", strerror(errno), errno); in PHP_FUNCTION()
320 php_error_docref(NULL, E_WARNING, "%s (errno %d)", strerror(errno), errno); in PHP_FUNCTION()
555 php_error_docref(NULL, E_WARNING, "(errno %d): %s", errno, strerror(errno)); in PHP_FUNCTION()
/PHP-8.2/ext/random/
H A Drandom.c518 errno = 0;
536 if (errno == ENOSYS) {
542 } else if (errno == EINTR || errno == EAGAIN) {
563 errno = 0;
569 if (errno != 0) {
570 …exception_ex(random_ce_Random_RandomException, 0, "Cannot open /dev/urandom: %s", strerror(errno));
578 errno = 0;
589 if (errno != 0) {
590 …on_ex(random_ce_Random_RandomException, 0, "Error reading from /dev/urandom: %s", strerror(errno));
601 errno = 0;
[all …]
/PHP-8.2/ext/dba/libcdb/
H A Dcdb.c105 errno = EPROTO; in cdb_read()
112 } while ((r == -1) && (errno == EINTR)); in cdb_read()
116 errno = EPROTO; in cdb_read()
/PHP-8.2/sapi/litespeed/
H A Dlscriu.c302 lsapi_perror(sem_name, errno); in LSCRIU_Wink_Server_is_Ready()
305 lsapi_perror(sem_name, errno); in LSCRIU_Wink_Server_is_Ready()
307 else if (errno != ENOENT) in LSCRIU_Wink_Server_is_Ready()
308 lsapi_perror(sem_name, errno); in LSCRIU_Wink_Server_is_Ready()
431 s_pid, strerror(errno)); in LSCRIU_Native_Dump()
451 s_pid, strerror(errno)); in LSCRIU_CloudLinux_Checkpoint()
519 iPidDump, strerror(errno)); in LSCRIU_try_checkpoint()

Completed in 106 milliseconds

12345678910>>...16