Home
last modified time | relevance | path

Searched refs:errno (Results 226 – 250 of 376) sorted by relevance

12345678910>>...16

/PHP-7.4/ext/sysvmsg/
H A Dsysvmsg.c289 …php_error_docref(NULL, E_WARNING, "failed for key 0x" ZEND_XLONG_FMT ": %s", key, strerror(errno)); in PHP_FUNCTION()
400 ZEND_TRY_ASSIGN_REF_LONG(zerrcode, errno); in PHP_FUNCTION()
485 php_error_docref(NULL, E_WARNING, "msgsnd failed: %s", strerror(errno)); in PHP_FUNCTION()
487 ZEND_TRY_ASSIGN_REF_LONG(zerror, errno); in PHP_FUNCTION()
/PHP-7.4/ext/xmlrpc/libxmlrpc/
H A Dencodings.c72 if(errno == E2BIG) { in convert()
/PHP-7.4/tests/lang/
H A Dbug22592.phpt5 function error_hdlr($errno, $errstr) {
/PHP-7.4/Zend/tests/
H A Dbug45805.phpt7 public static function handleError($errno, $errstr, $errfile, $errline)
H A Dbug74408.phpt8 public function error_handler($errno, $errstr, $errfile, $errline) {
/PHP-7.4/ext/mysqli/tests/
H A Dbug54221.phpt33 echo "Warning: ".$warnings->errno.": ".$warnings->message."\n";
H A Dmysqli_fetch_lengths_oo.phpt18 printf("[002] [%d] %s\n", $mysqli->errno, $mysqli->error);
H A Dmysqli_stmt_execute_stored_proc_next_result.phpt58 printf("[013] [%d] %s\n", $link->errno, $link->error);
90 printf("[020] [%d] %s\n", $link->errno, $link->error);
107 printf("[024] [%d] %s\n", $link->errno, $link->error);
H A Dmysqli_fork.phpt20 die(sprintf("skip Needs InnoDB support, [%d] %s", $link->errno, $link->error));
54 else if ((($errno = mysqli_errno($link)) == 0) || ('' == ($error = mysqli_error($link))))
55 …printf("[004] Expecting error string and error code from MySQL, got errno = %s/%s, error = %s/%s\n…
56 gettype($errno), $errno, gettype($error), $error);
H A Dmysqli_get_warnings.phpt62 if ((!is_int($warning->errno)) || (0 == $warning->errno)) /* NULL or not there at all */
63 printf("[013] Expecting int/not 0, got %s/%s\n", gettype($warning->errno), $warning->errno);
/PHP-7.4/sapi/litespeed/
H A Dlsapilib.c315 if (errno == EPERM) { in lsapi_parent_dead()
629 ( errno == ENOTCONN )) in isPipe()
1574 if (( errno == EINTR )||( errno == EAGAIN)) in LSAPI_Accept_r()
2612 ret = errno; in LSAPI_CreateListenSock2()
2614 errno = ret; in LSAPI_CreateListenSock2()
3325 if (( errno == EINTR )||( errno == EAGAIN)) in lsapi_prefork_server_accept()
3525 if ((errno == EINTR) || (errno == EAGAIN)) in LSAPI_Accept_Before_Fork()
3688 if (( errno == EINTR )||( errno == EAGAIN)) in LSAPI_Prefork_Accept_r()
3886 errno = EINVAL; in lsapi_check_path()
3891 && errno != ENOENT && errno != EACCES) in lsapi_check_path()
[all …]
/PHP-7.4/ext/iconv/
H A Dconfig.w3216 AC_DEFINE("ICONV_SUPPORTS_ERRNO", 1, "Whether iconv supports errno or not");
H A Dconfig.m4126 AC_MSG_CHECKING([if iconv supports errno])
129 #include <errno.h>
135 if (errno == EINVAL) {
/PHP-7.4/ext/iconv/tests/
H A Diconv_mime_decode.phpt9 function my_error_handler($errno, $errmsg, $filename, $linenum, $vars)
11 echo "$errno: $errmsg\n";
/PHP-7.4/ext/sockets/tests/
H A Dsocket_import_stream-3.phpt21 $stream = stream_socket_server("udp://0.0.0.0:58379", $errno, $errstr, STREAM_SERVER_BIND);
/PHP-7.4/win32/
H A Dtime.c115 errno = EINVAL; in nanosleep()
/PHP-7.4/ext/standard/tests/network/
H A Dfsockopen_variation2.phpt10 $server = stream_socket_server($hostname . ':' . $port, $errno, $errstr, STREAM_SERVER_BIND);
/PHP-7.4/ext/standard/
H A Dproc_open.c206 } while (wait_pid == -1 && errno == EINTR); in proc_open_rsrc_dtor()
328 errno = 0; in PHP_FUNCTION()
661 …NING, "unable to dup File-Handle for descriptor " ZEND_ULONG_FMT " - %s", nindex, strerror(errno)); in PHP_FUNCTION()
697 php_error_docref(NULL, E_WARNING, "unable to create pipe %s", strerror(errno)); in PHP_FUNCTION()
822 nindex, strerror(errno)); in PHP_FUNCTION()
832 "Failed to open /dev/null - %s", strerror(errno)); in PHP_FUNCTION()
851 php_error_docref(NULL, E_WARNING, "failed to open /dev/ptmx, errno %d", errno); in PHP_FUNCTION()
859 php_error_docref(NULL, E_WARNING, "failed to open slave pty, errno %d", errno); in PHP_FUNCTION()
1078 php_error_docref(NULL, E_WARNING, "fork failed - %s", strerror(errno)); in PHP_FUNCTION()
/PHP-7.4/ext/fileinfo/libmagic/
H A Dcdf.c322 errno = EFTYPE; in cdf_check_stream_offset()
350 errno = EINVAL; in cdf_read()
382 errno = EFTYPE; in cdf_read_header()
412 errno = EFTYPE; in cdf_read_short_sector()
498 errno = EFTYPE; in cdf_read_sat()
540 errno = EFTYPE; in cdf_count_chain()
589 errno = EFTYPE; in cdf_read_long_sector_chain()
631 errno = EFTYPE; in cdf_read_short_sector_chain()
698 errno = EFTYPE; in cdf_read_dir()
740 errno = EFTYPE; in cdf_read_ssat()
[all …]
/PHP-7.4/ext/spl/tests/
H A DCallbackFilterIteratorTest-002.phpt6 set_error_handler(function($errno, $errstr){
/PHP-7.4/ext/openssl/tests/
H A Dopenssl_pkcs7_decrypt_error.phpt8 function myErrorHandler($errno, $errstr, $errfile, $errline) {
/PHP-7.4/ext/intl/tests/
H A Dcalendar_get_getActualMaximum_Minumum_error2.phpt15 function eh($errno, $errstr) {
16 echo "error: $errno, $errstr\n";
/PHP-7.4/ext/ldap/tests/
H A Dldap_add_error.phpt58 /* Is this correct behaviour to still have "Already exists" as error/errno?
83 /* Is this correct behaviour to still have "Undefined attribute type" as error/errno?
/PHP-7.4/ext/simplexml/tests/
H A Dbug37565.phpt8 function my_error_handler($errno, $errstr, $errfile, $errline) {
/PHP-7.4/ext/sysvshm/
H A Dsysvshm.c187 …error_docref(NULL, E_WARNING, "failed for key 0x" ZEND_XLONG_FMT ": %s", shm_key, strerror(errno)); in PHP_FUNCTION()
194 …error_docref(NULL, E_WARNING, "failed for key 0x" ZEND_XLONG_FMT ": %s", shm_key, strerror(errno)); in PHP_FUNCTION()
245 …led for key 0x%x, id " ZEND_LONG_FMT ": %s", shm_list_ptr->key, Z_LVAL_P(shm_id), strerror(errno)); in PHP_FUNCTION()

Completed in 57 milliseconds

12345678910>>...16