Home
last modified time | relevance | path

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

1234567

/PHP-8.1/Zend/
H A Dzend_fibers.c193 DWORD err = GetLastError(); in zend_fiber_stack_allocate() local
194 char *errmsg = php_win32_error_to_msg(err); in zend_fiber_stack_allocate()
195 …NULL, 0, "Fiber stack allocate failed: VirtualAlloc failed: [0x%08lx] %s", err, errmsg[0] ? errmsg… in zend_fiber_stack_allocate()
204 DWORD err = GetLastError(); in zend_fiber_stack_allocate() local
205 char *errmsg = php_win32_error_to_msg(err); in zend_fiber_stack_allocate()
206 …ULL, 0, "Fiber stack protect failed: VirtualProtect failed: [0x%08lx] %s", err, errmsg[0] ? errmsg… in zend_fiber_stack_allocate()
H A Dzend_builtin_functions.c370 zend_long err; in ZEND_FUNCTION() local
376 Z_PARAM_LONG_OR_NULL(err, err_is_null) in ZEND_FUNCTION()
381 if (!err_is_null && err != old_error_reporting) { in ZEND_FUNCTION()
407 p->value = zend_long_to_str(err); in ZEND_FUNCTION()
408 EG(error_reporting) = err; in ZEND_FUNCTION()
/PHP-8.1/ext/standard/
H A Dfilestat.c121 char *err = php_win_err(); in php_disk_total_space() local
122 php_error_docref(NULL, E_WARNING, "%s", err); in php_disk_total_space()
123 php_win_err_free(err); in php_disk_total_space()
220 char *err = php_win_err(); in php_disk_free_space() local
221 php_error_docref(NULL, E_WARNING, "%s", err); in php_disk_free_space()
222 php_win_err_free(err); in php_disk_free_space()
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 Darray.c2755 err = 1;
2772 err = 1;
2805 err = 1;
2819 err = 1;
2846 err = 1;
2847 goto err;
2852 err = 1;
2853 goto err;
2858 err = 1;
2890 err:
[all …]
/PHP-8.1/sapi/cli/
H A Dphp_cli.c631 goto err; in do_cli()
667 goto err; in do_cli()
859 goto err; in do_cli()
900 goto err; in do_cli()
934 goto err; in do_cli()
1147 err: in do_cli()
/PHP-8.1/ext/sockets/tests/
H A Dmcast_ipv6_send.phpt20 $s = socket_create($domain, SOCK_DGRAM, SOL_UDP) or die("err");
H A Dmcast_ipv4_send_error.phpt21 $s = socket_create($domain, SOCK_DGRAM, SOL_UDP) or die("err");
/PHP-8.1/sapi/fpm/fpm/
H A Dfpm_conf.c568 char *err = fpm_conf_set_boolean(value, &subconf, 0); in fpm_conf_set_array() local
569 if (err) { in fpm_conf_set_array()
572 return err; in fpm_conf_set_array()
1497 char *err = NULL; in fpm_conf_ini_parser_array() local
1518 err = fpm_conf_set_array(key, value, &config, 0); in fpm_conf_ini_parser_array()
1522 err = fpm_conf_set_array(key, value, &config, 0); in fpm_conf_ini_parser_array()
1526 err = fpm_conf_set_array(key, value, &config, 0); in fpm_conf_ini_parser_array()
1530 err = fpm_conf_set_array(key, value, &config, 1); in fpm_conf_ini_parser_array()
1534 err = fpm_conf_set_array(key, value, &config, 1); in fpm_conf_ini_parser_array()
1542 if (err) { in fpm_conf_ini_parser_array()
[all …]
H A Dfpm_events.c362 void fpm_event_loop(int err) /* {{{ */ in fpm_event_loop() argument
379 if (!err) { in fpm_event_loop()
H A Dfpm_main.c357 http_response_status_code_pair *err = (http_response_status_code_pair*)http_status_map; in sapi_cgi_send_headers() local
359 while (err->code != 0) { in sapi_cgi_send_headers()
360 if (err->code == SG(sapi_headers).http_response_code) { in sapi_cgi_send_headers()
363 err++; in sapi_cgi_send_headers()
365 if (err->str) { in sapi_cgi_send_headers()
366 … len = slprintf(buf, sizeof(buf), "Status: %d %s", SG(sapi_headers).http_response_code, err->str); in sapi_cgi_send_headers()
/PHP-8.1/ext/standard/tests/file/
H A Dbug60120.phpt2 Bug #60120 (proc_open hangs when data in stdin/out/err is getting larger or equal to 2048)
/PHP-8.1/ext/date/
H A Dphp_date.c2245 timelib_error_container *err = NULL; in php_date_initialize() local
2270 update_errors_warnings(err); in php_date_initialize()
2273 if ((flags & PHP_DATE_INIT_CTOR) && err && err->error_count) { in php_date_initialize()
2276err->error_messages[0].position, err->error_messages[0].character, err->error_messages[0].message); in php_date_initialize()
2278 if (err && err->error_count) { in php_date_initialize()
2870 update_errors_warnings(err); in php_date_modify()
2871 if (err && err->error_count) { in php_date_modify()
2874err->error_messages[0].position, err->error_messages[0].character, err->error_messages[0].message); in php_date_modify()
4146 if (err->error_count > 0) { in PHP_FUNCTION()
4148err->error_messages[0].position, err->error_messages[0].character ? err->error_messages[0].charact… in PHP_FUNCTION()
[all …]
/PHP-8.1/sapi/litespeed/
H A Dlsapi_main.c404 http_error *err = (http_error*)http_error_codes; in sapi_lsapi_send_headers_like_cgi() local
406 while (err->code != 0) { in sapi_lsapi_send_headers_like_cgi()
407 if (err->code == SG(sapi_headers).http_response_code) { in sapi_lsapi_send_headers_like_cgi()
410 err++; in sapi_lsapi_send_headers_like_cgi()
412 if (err->msg) { in sapi_lsapi_send_headers_like_cgi()
413 … len = slprintf(buf, sizeof(buf), "Status: %d %s", SG(sapi_headers).http_response_code, err->msg); in sapi_lsapi_send_headers_like_cgi()
/PHP-8.1/TSRM/
H A Dtsrm_win32.c543 DWORD err = GetLastError(); in popen_ex() local
544 if (err == ERROR_NO_TOKEN) { in popen_ex()
745 int err = GetLastError(); in shmat() local
746 SET_ERRNO_FROM_WIN32_CODE(err); in shmat()
/PHP-8.1/ext/sockets/
H A Dmulticast.c773 goto err;
816 goto err;
836 err:
/PHP-8.1/ext/mysqli/
H A Dmysqli_nonapi.c235 goto err;
243 goto err;
251 goto err;
323 goto err;
367 err:
/PHP-8.1/ext/soap/
H A Dphp_encoding.c864 memcpy(err, str, new_len+1); in to_xml_string()
865 for (i = 0; (c = err[i++]);) { in to_xml_string()
868 if ((err[i] & 0xc0) != 0x80) { in to_xml_string()
873 if ((err[i] & 0xc0) != 0x80 || (err[i+1] & 0xc0) != 0x80) { in to_xml_string()
878 if ((err[i] & 0xc0) != 0x80 || (err[i+1] & 0xc0) != 0x80 || (err[i+2] & 0xc0) != 0x80) { in to_xml_string()
887 err[i-1] = '\\'; in to_xml_string()
888 err[i++] = 'x'; in to_xml_string()
891 err[i++] = '.'; in to_xml_string()
892 err[i++] = '.'; in to_xml_string()
893 err[i++] = '.'; in to_xml_string()
[all …]
/PHP-8.1/ext/curl/
H A Dmulti.c47 #define SAVE_CURLM_ERROR(__handle, __err) (__handle)->err.no = (int) __err;
340 RETURN_LONG(mh->err.no); in PHP_FUNCTION()
/PHP-8.1/ext/fileinfo/libmagic/
H A Dcdf.c1584 err(EXIT_FAILURE, "Cannot open `%s'", argv[1]); in main()
1587 err(EXIT_FAILURE, "Cannot read header"); in main()
1593 err(EXIT_FAILURE, "Cannot read sat"); in main()
1599 err(EXIT_FAILURE, "Cannot read ssat"); in main()
1605 err(EXIT_FAILURE, "Cannot read dir"); in main()
1609 err(EXIT_FAILURE, "Cannot read short stream"); in main()
/PHP-8.1/ext/gd/libgd/
H A Dgdft.c375 FT_Error err; local
458 err = FT_New_Face (*b->library, fullname, 0, &a->face);
459 if (err) {
/PHP-8.1/ext/mysqlnd/
H A Dmysqlnd_connection.c640 goto err;
665 goto err; /* OOM */
680 goto err; /* OOM */
694 goto err; /* OOM */
703 goto err; /* OOM */
713 goto err;
728 err:
/PHP-8.1/sapi/phpdbg/
H A Dphpdbg_prompt.c1243 char *err = GET_DL_ERROR(); in phpdbg_load_module_or_extension() local
1244 if (err && err[0]) { in phpdbg_load_module_or_extension()
1245 phpdbg_error("%s", err); in phpdbg_load_module_or_extension()
1246 php_win32_error_msg_free(err); in phpdbg_load_module_or_extension()
/PHP-8.1/ext/opcache/jit/dynasm/
H A Ddasm_arm.lua934 local ok, err
936 ok, err = pcall(parse_template, params, t, nparams, pos)
946 error(err, 0)
/PHP-8.1/build/
H A Dax_gcc_func_attribute.m4230 [AS_IF([test -s conftest.err],

Completed in 159 milliseconds

1234567