Home
last modified time | relevance | path

Searched refs:err (Results 126 – 150 of 165) sorted by relevance

1234567

/php-src/ext/mysqli/
H A Dmysqli_nonapi.c212 goto err;
220 goto err;
224 goto err;
265 goto err;
303 err:
/php-src/ext/standard/
H A Dstreamsfuncs.c111 int err; in PHP_FUNCTION() local
164 hashkey, tv_pointer, context, &errstr, &err); in PHP_FUNCTION()
181 ZEND_TRY_ASSIGN_REF_LONG(zerrno, err); in PHP_FUNCTION()
207 int err = 0; in PHP_FUNCTION() local
234 NULL, NULL, context, &errstr, &err); in PHP_FUNCTION()
242 ZEND_TRY_ASSIGN_REF_LONG(zerrno, err); in PHP_FUNCTION()
H A Dproc_open.c882 zend_string *err = php_socket_error_str(php_socket_errno()); in set_proc_descriptor_to_socket() local
883 php_error_docref(NULL, E_WARNING, "Unable to create socket pair: %s", ZSTR_VAL(err)); in set_proc_descriptor_to_socket()
884 zend_string_release(err); in set_proc_descriptor_to_socket()
H A Dbase64.c225 const uint8x16_t err = vorrq_u8(vorrq_u8(error_a, error_b), vorrq_u8(error_c, error_d)); in neon_base64_decode() local
227 vst1q_u8(error.mem, err); in neon_base64_decode()
/php-src/sapi/fpm/fpm/
H A Dfpm_main.c362 http_response_status_code_pair *err = (http_response_status_code_pair*)http_status_map; in sapi_cgi_send_headers() local
364 while (err->code != 0) { in sapi_cgi_send_headers()
365 if (err->code == SG(sapi_headers).http_response_code) { in sapi_cgi_send_headers()
368 err++; in sapi_cgi_send_headers()
370 if (err->str) { in sapi_cgi_send_headers()
371 … len = slprintf(buf, sizeof(buf), "Status: %d %s", SG(sapi_headers).http_response_code, err->str); in sapi_cgi_send_headers()
/php-src/ext/sockets/
H A Dmulticast.c773 goto err;
816 goto err;
836 err:
/php-src/ext/soap/
H A Dphp_encoding.c872 memcpy(err, str, new_len+1); in to_xml_string()
873 for (i = 0; (c = err[i++]);) { in to_xml_string()
876 if ((err[i] & 0xc0) != 0x80) { in to_xml_string()
881 if ((err[i] & 0xc0) != 0x80 || (err[i+1] & 0xc0) != 0x80) { in to_xml_string()
886 if ((err[i] & 0xc0) != 0x80 || (err[i+1] & 0xc0) != 0x80 || (err[i+2] & 0xc0) != 0x80) { in to_xml_string()
895 err[i-1] = '\\'; in to_xml_string()
896 err[i++] = 'x'; in to_xml_string()
899 err[i++] = '.'; in to_xml_string()
900 err[i++] = '.'; in to_xml_string()
901 err[i++] = '.'; in to_xml_string()
[all …]
H A Dphp_http.c339 size_t err; in make_http_soap_request() local
877 err = php_stream_write(stream, ZSTR_VAL(soap_headers.s), ZSTR_LEN(soap_headers.s)); in make_http_soap_request()
878 if (err != ZSTR_LEN(soap_headers.s)) { in make_http_soap_request()
/php-src/ext/curl/
H A Dmulti.c47 #define SAVE_CURLM_ERROR(__handle, __err) (__handle)->err.no = (int) __err;
345 RETURN_LONG(mh->err.no); in PHP_FUNCTION()
H A Dinterface.c1048 memset(&ch->err, 0, sizeof(struct _php_curl_error)); in init_curl_handle()
1101 curl_easy_setopt(ch->cp, CURLOPT_ERRORBUFFER, ch->err.str); in _php_curl_set_default_options()
1206 curl_easy_setopt(ch->cp, CURLOPT_ERRORBUFFER, ch->err.str); in _php_setup_easy_copy_handlers()
2291 memset(ch->err.str, 0, CURL_ERROR_SIZE + 1); in _php_curl_cleanup_handle()
2292 ch->err.no = 0; in _php_curl_cleanup_handle()
2625 if (ch->err.no) { in PHP_FUNCTION()
2626 ch->err.str[CURL_ERROR_SIZE] = 0; in PHP_FUNCTION()
2627 RETURN_STRING(ch->err.str); in PHP_FUNCTION()
2646 RETURN_LONG(ch->err.no); in PHP_FUNCTION()
/php-src/ext/opcache/jit/
H A Dzend_jit.c3221 DWORD err = GetLastError(); in zend_jit_unprotect()
3222 char *msg = php_win32_error_to_msg(err); in zend_jit_unprotect()
3223 fprintf(stderr, "VirtualProtect() failed [%u] %s\n", err, msg); in zend_jit_unprotect()
3248 DWORD err = GetLastError(); in zend_jit_protect()
3249 char *msg = php_win32_error_to_msg(err); in zend_jit_protect()
3250 fprintf(stderr, "VirtualProtect() failed [%u] %s\n", err, msg); in zend_jit_protect()
3491 DWORD err = GetLastError(); in zend_jit_startup() local
3492 char *msg = php_win32_error_to_msg(err); in zend_jit_startup()
3493 fprintf(stderr, "VirtualProtect() failed [%u] %s\n", err, msg); in zend_jit_startup()
3500 DWORD err = GetLastError(); in zend_jit_startup() local
[all …]
/php-src/ext/gd/libgd/
H A Dgdft.c375 FT_Error err; local
468 err = FT_New_Face (*b->library, fullname, 0, &a->face);
469 if (err) {
/php-src/ext/mysqlnd/
H A Dmysqlnd_connection.c639 goto err;
664 goto err; /* OOM */
679 goto err; /* OOM */
693 goto err; /* OOM */
702 goto err; /* OOM */
712 goto err;
727 err:
/php-src/ext/fileinfo/libmagic/
H A Dcdf.c1593 err(EXIT_FAILURE, "Cannot open `%s'", argv[1]); in main()
1596 err(EXIT_FAILURE, "Cannot read header"); in main()
1602 err(EXIT_FAILURE, "Cannot read sat"); in main()
1608 err(EXIT_FAILURE, "Cannot read ssat"); in main()
1614 err(EXIT_FAILURE, "Cannot read dir"); in main()
1618 err(EXIT_FAILURE, "Cannot read short stream"); in main()
/php-src/sapi/phpdbg/
H A Dphpdbg_prompt.c1242 char *err = GET_DL_ERROR(); in phpdbg_load_module_or_extension() local
1243 if (err && err[0]) { in phpdbg_load_module_or_extension()
1244 phpdbg_error("%s", err); in phpdbg_load_module_or_extension()
1245 php_win32_error_msg_free(err); in phpdbg_load_module_or_extension()
/php-src/ext/opcache/jit/ir/dynasm/
H A Ddasm_arm.lua934 local ok, err
936 ok, err = pcall(parse_template, params, t, nparams, pos)
946 error(err, 0)
H A Ddasm_arm64.lua1016 local ok, err
1018 ok, err = pcall(parse_template, params, t, nparams, pos)
1030 error(err, 0)
/php-src/build/
H A Dax_gcc_func_attribute.m4230 [AS_IF([test -s conftest.err],
/php-src/win32/
H A Dsendmail.c418 int err = MailConnect(); in SendText() local
419 if (0 != err) { in SendText()
/php-src/ext/dom/
H A Dparentnode.c393 goto err; in dom_zvals_to_single_node()
428 err: in dom_zvals_to_single_node()
H A Ddocument.c1750 int err; in PHP_METHOD() local
1766 err = xmlXIncludeProcessFlags(docp, (int)flags); in PHP_METHOD()
1783 if (err) { in PHP_METHOD()
1784 RETVAL_LONG(err); in PHP_METHOD()
/php-src/Zend/
H A Dzend_builtin_functions.c386 zend_long err; in ZEND_FUNCTION() local
392 Z_PARAM_LONG_OR_NULL(err, err_is_null) in ZEND_FUNCTION()
397 if (!err_is_null && err != old_error_reporting) { in ZEND_FUNCTION()
423 p->value = zend_long_to_str(err); in ZEND_FUNCTION()
424 EG(error_reporting) = err; in ZEND_FUNCTION()
/php-src/ext/ldap/
H A Dldap.c537 int err; in _php_ldap_control_from_array() local
538 err = ber_flatten2(ber, &control_value, control_value_alloc); in _php_ldap_control_from_array()
539 if (err < 0) { in _php_ldap_control_from_array()
541 php_error_docref(NULL, E_WARNING, "Failed to encode control value (%d)", err); in _php_ldap_control_from_array()
4026 int rc, myargcount = ZEND_NUM_ARGS(), msgid, err; in PHP_FUNCTION() local
4076 …rc = ldap_parse_result(ld->link, ldap_res, &err, NULL, &errmsg, NULL, (myargcount > 4 ? &lserverct… in PHP_FUNCTION()
4094 } else if (err == LDAP_SUCCESS) { in PHP_FUNCTION()
4097 …"Passwd modify extended operation failed: %s (%d)", (errmsg ? errmsg : ldap_err2string(err)), err); in PHP_FUNCTION()
/php-src/TSRM/
H A Dtsrm_win32.c541 DWORD err = GetLastError(); in popen_ex() local
542 if (err == ERROR_NO_TOKEN) { in popen_ex()
/php-src/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()

Completed in 132 milliseconds

1234567