Home
last modified time | relevance | path

Searched refs:errno (Results 301 – 325 of 389) sorted by relevance

1...<<111213141516

/PHP-8.2/ext/pcntl/tests/
H A D002.phpt53 set_error_handler(function($errno, $errstr) { echo "Error triggered\n"; }, E_WARNING);
/PHP-8.2/ext/ftp/tests/
H A Dserver.inc4 $errno = 0;
7 $socket = stream_socket_server("tcp://127.0.0.1:0", $errno, $errstr, STREAM_SERVER_BIND|STREAM_SERV…
9 echo "$errstr ($errno)\n";
410 …$soc = stream_socket_server("tcp://127.0.0.1:0", $errno, $errstr, STREAM_SERVER_BIND|STREAM_SERVER…
415 echo "$errstr ($errno)\n";
/PHP-8.2/ext/standard/
H A Dmail.c532 errno = 0; in php_mail()
541 if (EACCES == errno) { in php_mail()
H A Dcrypt_blowfish.c50 #define __set_errno(val) errno = (val)
823 save_errno = errno; in php_crypt_blowfish_rn()
/PHP-8.2/Zend/
H A Dzend_fibers.c220 …exception_ex(NULL, 0, "Fiber stack allocate failed: mmap failed: %s (%d)", strerror(errno), errno); in zend_fiber_stack_allocate()
228 …eption_ex(NULL, 0, "Fiber stack protect failed: mprotect failed: %s (%d)", strerror(errno), errno); in zend_fiber_stack_allocate()
/PHP-8.2/ext/fileinfo/libmagic/
H A Dfuncs.c234 file_error(ms, errno, "cannot allocate %" SIZE_T_FORMAT "u bytes", in file_oomem()
241 file_error(ms, errno, "error seeking"); in file_badseek()
247 file_error(ms, errno, "error reading"); in file_badread()
H A Dreadcdf.c622 if (errno != ESRCH) { in file_trycdf()
633 if (errno != ESRCH) { in file_trycdf()
/PHP-8.2/ext/mysqli/
H A Dmysqli.stub.php669 public int $errno; variable in mysqli
1194 public int $errno;
1340 public int $errno;
/PHP-8.2/ext/phar/tests/
H A Dcreate_path_error.phpt22 function error_handler($errno, $errmsg)
/PHP-8.2/ext/standard/tests/file/
H A D007_variation11-win32-mb.phpt61 Notice: fread(): Read of 8192 bytes failed with errno=9 Bad file descriptor in %s on line %d
H A D007_variation11-win32.phpt59 Notice: fread(): Read of 8192 bytes failed with errno=9 Bad file descriptor in %s on line %d
H A D007_variation11.phpt59 Notice: fread(): Read of 8192 bytes failed with errno=9 Bad file descriptor in %s on line %d
H A D007_variation19.phpt54 Notice: fread(): Read of 8192 bytes failed with errno=9 Bad file descriptor in %s on line %d
H A D007_variation3.phpt54 Notice: fread(): Read of 8192 bytes failed with errno=9 Bad file descriptor in %s on line %d
/PHP-8.2/Zend/tests/type_declarations/
H A Dscalar_basic.phpt11 set_error_handler(function (int $errno, string $errmsg, string $file, int $line) use ($errnames) {
12 echo "$errnames[$errno]: $errmsg on line $line\n";
H A Dscalar_return_basic.phpt13 set_error_handler(function (int $errno, string $errmsg, string $file, int $line) use ($errnames) {
14 echo "$errnames[$errno]: $errmsg on line $line\n";
H A Dscalar_return_basic_64bit.phpt13 set_error_handler(function (int $errno, string $errmsg, string $file, int $line) use ($errnames) {
14 echo "$errnames[$errno]: $errmsg on line $line\n";
/PHP-8.2/sapi/cli/tests/
H A Dphp_cli_server.inc121 $fp = fsockopen(PHP_CLI_SERVER_HOSTNAME, PHP_CLI_SERVER_PORT, $errno, $errstr, $timeout);
/PHP-8.2/ext/mysqli/tests/
H A Dmysqli_begin_transaction.phpt14 die(sprintf("skip Needs InnoDB support, [%d] %s", $link->errno, $link->error));
H A Dmysqli_store_result_copy.phpt176 if ($link->errno) {
177 echo "Store failed: (" . $link->errno . ") " . $link->error;
H A Dmysqli_select_db.phpt48 printf("[012] Failed to set '%s' as current DB; [%d] %s\n", $link->errno, $link->error);
H A Dbug49442.phpt16 die(sprintf("skip %s, [%d] %s", $msg, $link->errno, $link->error));
/PHP-8.2/ext/standard/tests/general_functions/
H A Dgettype_settype_variation1.phpt22 function foo($errno, $errstr, $errfile, $errline) {
25 echo "$errno: $errstr\n";
/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()
318 if (fflush(stdout)==EOF && errno!=EBADF) { in sapi_cli_flush()
/PHP-8.2/ext/soap/tests/
H A Dbug73037.phpt101 $fp = fsockopen(PHP_CLI_SERVER_HOSTNAME, PHP_CLI_SERVER_PORT, $errno, $errstr, 5);

Completed in 59 milliseconds

1...<<111213141516