Home
last modified time | relevance | path

Searched refs:err (Results 151 – 175 of 175) sorted by relevance

1234567

/PHP-8.1/win32/
H A Dsendmail.c419 int err = MailConnect(); in SendText() local
420 if (0 != err) { in SendText()
/PHP-8.1/ext/opcache/jit/dynasm/
H A Ddasm_arm64.lua1009 local ok, err
1011 ok, err = pcall(parse_template, params, t, nparams, pos)
1023 error(err, 0)
H A Dminilua.c7760 goto err;
7764 err:
/PHP-8.1/ext/curl/
H A Dinterface.c1766 memset(&ch->err, 0, sizeof(struct _php_curl_error)); in init_curl_handle()
1823 curl_easy_setopt(ch->cp, CURLOPT_ERRORBUFFER, ch->err.str); in _php_curl_set_default_options()
1920 curl_easy_setopt(ch->cp, CURLOPT_ERRORBUFFER, ch->err.str); in _php_setup_easy_copy_handlers()
3050 memset(ch->err.str, 0, CURL_ERROR_SIZE + 1); in _php_curl_cleanup_handle()
3051 ch->err.no = 0; in _php_curl_cleanup_handle()
3381 if (ch->err.no) { in PHP_FUNCTION()
3382 ch->err.str[CURL_ERROR_SIZE] = 0; in PHP_FUNCTION()
3383 RETURN_STRING(ch->err.str); in PHP_FUNCTION()
3402 RETURN_LONG(ch->err.no); in PHP_FUNCTION()
/PHP-8.1/ext/standard/
H A Dproc_open.c829 zend_string *err = php_socket_error_str(php_socket_errno()); in set_proc_descriptor_to_socket() local
830 php_error_docref(NULL, E_WARNING, "Unable to create socket pair: %s", ZSTR_VAL(err)); in set_proc_descriptor_to_socket()
831 zend_string_release(err); in set_proc_descriptor_to_socket()
H A Dbase64.c221 const uint8x16_t err = vorrq_u8(vorrq_u8(error_a, error_b), vorrq_u8(error_c, error_d)); in neon_base64_decode() local
223 vst1q_u8(error.mem, err); in neon_base64_decode()
/PHP-8.1/ext/ldap/
H A Dldap.c538 int err; in _php_ldap_control_from_array() local
539 err = ber_flatten2(ber, &control_value, control_value_alloc); in _php_ldap_control_from_array()
540 if (err < 0) { in _php_ldap_control_from_array()
542 php_error_docref(NULL, E_WARNING, "Failed to encode control value (%d)", err); in _php_ldap_control_from_array()
4128 int rc, myargcount = ZEND_NUM_ARGS(), msgid, err; in PHP_FUNCTION() local
4178 …rc = ldap_parse_result(ld->link, ldap_res, &err, NULL, &errmsg, NULL, (myargcount > 4 ? &lserverct… in PHP_FUNCTION()
4196 } else if (err == LDAP_SUCCESS) { in PHP_FUNCTION()
4199 …"Passwd modify extended operation failed: %s (%d)", (errmsg ? errmsg : ldap_err2string(err)), err); in PHP_FUNCTION()
/PHP-8.1/ext/opcache/jit/
H A Dzend_jit.c4683 DWORD err = GetLastError(); in zend_jit_unprotect()
4684 char *msg = php_win32_error_to_msg(err); in zend_jit_unprotect()
4685 fprintf(stderr, "VirtualProtect() failed [%u] %s\n", err, msg); in zend_jit_unprotect()
4705 DWORD err = GetLastError(); in zend_jit_protect()
4706 char *msg = php_win32_error_to_msg(err); in zend_jit_protect()
4707 fprintf(stderr, "VirtualProtect() failed [%u] %s\n", err, msg); in zend_jit_protect()
4977 DWORD err = GetLastError(); in zend_jit_startup() local
4978 char *msg = php_win32_error_to_msg(err); in zend_jit_startup()
4979 fprintf(stderr, "VirtualProtect() failed [%u] %s\n", err, msg); in zend_jit_startup()
4986 DWORD err = GetLastError(); in zend_jit_startup() local
[all …]
/PHP-8.1/ext/dom/
H A Ddocument.c1571 int err; in PHP_METHOD() local
1587 err = xmlXIncludeProcessFlags(docp, (int)flags); in PHP_METHOD()
1602 if (err) { in PHP_METHOD()
1603 RETVAL_LONG(err); in PHP_METHOD()
/PHP-8.1/ext/intl/converter/
H A Dconverter.c51 intl_error *err = objval ? &(objval->error) : NULL; in php_converter_throw_failure() local
59 intl_errors_set(err, error, message, 1); in php_converter_throw_failure()
/PHP-8.1/ext/soap/
H A Dphp_http.c339 size_t err; in make_http_soap_request() local
875 err = php_stream_write(stream, ZSTR_VAL(soap_headers.s), ZSTR_LEN(soap_headers.s)); in make_http_soap_request()
876 if (err != ZSTR_LEN(soap_headers.s)) { in make_http_soap_request()
/PHP-8.1/ext/intl/timezone/
H A Dtimezone_methods.cpp470 intl_errors_set(&to->err, U_ILLEGAL_ARGUMENT_ERROR, in PHP_FUNCTION()
/PHP-8.1/sapi/fpm/tests/
H A Dfcgi.inc572 * @param $type Either err or our
626 $this->fcgi_stream_append($resp, 'err');
H A Dtester.inc27 const FILE_EXT_LOG_ERR = 'err.log';
/PHP-8.1/build/
H A Dlibtool.m4253 _lt_compiler_boilerplate=`cat conftest.err`
267 _lt_linker_boilerplate=`cat conftest.err`
741 (eval "$lt_compile" 2>conftest.err)
743 cat conftest.err >&5
749 $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
779 if test -s conftest.err; then
781 cat conftest.err 1>&5
783 $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
1154 (eval "$lt_compile" 2>out/conftest.err)
1156 cat out/conftest.err >&5
[all …]
/PHP-8.1/ext/openssl/
H A Dopenssl.c2050 int err = -1; in PHP_FUNCTION() local
2059 RETURN_LONG(err); in PHP_FUNCTION()
2064 err = X509_verify(cert, key); in PHP_FUNCTION()
2065 if (err < 0) { in PHP_FUNCTION()
2076 RETURN_LONG(err); in PHP_FUNCTION()
6882 int err = 0; in PHP_FUNCTION() local
6924 …(err = EVP_VerifyFinal(md_ctx, (unsigned char *)signature, (unsigned int)signature_len, pkey)) < 0… in PHP_FUNCTION()
6929 RETURN_LONG(err); in PHP_FUNCTION()
/PHP-8.1/Zend/
H A Dzend_alloc.c401 DWORD err = GetLastError(); in stderr_last_error() local
402 char *buf = php_win32_error_to_msg(err); in stderr_last_error()
405 fprintf(stderr, "\n%s: [0x%08lx]\n", msg, err); in stderr_last_error()
408 fprintf(stderr, "\n%s: [0x%08lx] %s\n", msg, err, buf); in stderr_last_error()
/PHP-8.1/ext/phar/
H A Dutil.c171 const char *err; in phar_mount_entry() local
173 if (phar_path_check(&path, &path_len, &err) > pcr_is_ok) { in phar_mount_entry()
H A Dphar.c1662 char err = 0; in phar_open_from_fp() local
1687 err = 1; in phar_open_from_fp()
1703 if (err) { in phar_open_from_fp()
/PHP-8.1/ext/fileinfo/
H A Dlibmagic.patch1019 #include <err.h>
1444 #include <err.h>
1787 -bad_link(struct magic_set *ms, int err, char *buf)
1796 - file_error(ms, err,
/PHP-8.1/ext/odbc/
H A Dphp_odbc.c675 SQLINTEGER err; in odbc_bindcols() local
682 …if (SQL_SUCCESS == SQLGetDiagRec(SQL_HANDLE_STMT, result->stmt, 1, state, &err, errtxt, 128, NULL)… in odbc_bindcols()
/PHP-8.1/ext/mbstring/
H A Dmbstring.c3508 int err = 0; in PHP_FUNCTION() local
3725 …if (!err && php_mail(to_r, subject, message, ZSTR_VAL(str_headers), extra_cmd ? ZSTR_VAL(extra_cmd… in PHP_FUNCTION()
/PHP-8.1/
H A DNEWS525 child->ev_std(out|err)). (Jakub Zelenka)
/PHP-8.1/ext/fileinfo/tests/
H A Dmagic11596 >>>>317 string OS\ load\ err$
12094 >>305 string BOOT\ err!\0 \b, Free-DOS Bootloader
12122 >>331 string \ err\0 \b, FREE-DOS BETa 0.9 Bootloader
12132 >>333 string \ err\0 \b, FREE-DOS BEta 0.9 Bootloader
12141 >>334 string \ err\0 \b, FREE-DOS Beta 0.9 Bootloader
H A Dmagic私はガラスを食べられます11596 >>>>317 string OS\ load\ err$
12094 >>305 string BOOT\ err!\0 \b, Free-DOS Bootloader
12122 >>331 string \ err\0 \b, FREE-DOS BETa 0.9 Bootloader
12132 >>333 string \ err\0 \b, FREE-DOS BEta 0.9 Bootloader
12141 >>334 string \ err\0 \b, FREE-DOS Beta 0.9 Bootloader

Completed in 379 milliseconds

1234567