Home
last modified time | relevance | path

Searched refs:msg (Results 176 – 200 of 217) sorted by relevance

123456789

/php-src/ext/standard/tests/file/
H A D007_variation15.phpt18 checking for the warning msg when trying to open an existing file in "xt" mode,
H A D007_variation16.phpt9 checking for the warning msg when trying to open an existing file in "x+t" mode,
H A D007_variation23.phpt9 checking for the warning msg when trying to open an existing file in "xb" mode,
H A D007_variation24.phpt9 checking for the warning msg when trying to open an existing file in "x+b" mode,
H A D007_variation7.phpt9 checking for the warning msg when trying to open an existing file in "x" mode,
/php-src/ext/gd/libgd/
H A Dgd_avif.c143 static avifBool isAvifError(avifResult result, const char *msg) { in isAvifError() argument
145 gd_error("avif error - %s: %s\n", msg, avifResultToString(result)); in isAvifError()
/php-src/sapi/phpdbg/
H A Dphpdbg.h288 char *msg; member
/php-src/win32/build/
H A Dphpize.js.in31 function ERROR(msg) argument
33 STDERR.WriteLine("ERROR: " + msg);
H A Dconfutils.js2697 function MESSAGE(msg) argument
2699 STDOUT.WriteLine("" + msg);
2702 function ERROR(msg) argument
2704 STDERR.WriteLine("ERROR: " + msg);
2708 function WARNING(msg) argument
2710 STDERR.WriteLine("WARNING: " + msg);
/php-src/sapi/fpm/fpm/
H A Dzlog.c271 const char *prefix, const char *msg) /* {{{ */ in zlog_msg_ex() argument
275 size_t msg_len = strlen(msg); in zlog_msg_ex()
280 zlog_stream_str(&stream, msg, msg_len); in zlog_msg_ex()
/php-src/ext/opcache/jit/
H A Dzend_jit.c3222 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()
3224 php_win32_error_msg_free(msg); in zend_jit_unprotect()
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()
3251 php_win32_error_msg_free(msg); in zend_jit_protect()
3492 char *msg = php_win32_error_to_msg(err); in zend_jit_startup() local
3493 fprintf(stderr, "VirtualProtect() failed [%u] %s\n", err, msg); in zend_jit_startup()
3494 php_win32_error_msg_free(msg); in zend_jit_startup()
3501 char *msg = php_win32_error_to_msg(err); in zend_jit_startup() local
[all …]
/php-src/ext/pdo_firebird/
H A Dfirebird_driver.c465 const char *msg, const size_t msg_len) /* {{{ */ in php_firebird_set_error() argument
506 } else if (msg && msg_len) { in php_firebird_set_error()
508 einfo->errmsg = pestrndup(msg, einfo->errmsg_length, dbh->is_persistent); in php_firebird_set_error()
/php-src/main/
H A Dnetwork.c100 const char *msg; in php_gai_strerror() member
121 for (i = 0; values[i].msg != NULL; i++) { in php_gai_strerror()
123 return (char *)values[i].msg; in php_gai_strerror()
/php-src/ext/ffi/
H A Dphp_ffi.h213 void ZEND_NORETURN zend_ffi_parser_error(const char *msg, ...);
/php-src/ext/mysqlnd/
H A Dmysqlnd.h200 #define mysqlnd_stat(conn, msg) ((conn)->data)->m->get_server_statistics(((conn)->data), (msg)) argument
H A Dmysqlnd_ps.c682 char * msg; in MYSQLND_METHOD() local
683 mnd_sprintf(&msg, 0, "No data supplied for %u parameter%s in prepared statement", in MYSQLND_METHOD()
685 SET_CLIENT_ERROR(stmt->error_info, CR_PARAMS_NOT_BOUND, UNKNOWN_SQLSTATE, msg); in MYSQLND_METHOD()
686 if (msg) { in MYSQLND_METHOD()
687 mnd_sprintf_free(msg); in MYSQLND_METHOD()
/php-src/Zend/
H A Dzend_execute.c875 smart_str msg = {0}; in zend_match_unhandled_error() local
881 smart_str_appends(&msg, zend_zval_type_name(value)); in zend_match_unhandled_error()
884 smart_str_0(&msg); in zend_match_unhandled_error()
889 smart_str_free(&msg); in zend_match_unhandled_error()
1684 const char *msg = NULL; in zend_wrong_string_offset_error() local
1697 msg = "Cannot create references to/from string offsets"; in zend_wrong_string_offset_error()
1708 msg = "Cannot use string offset as an array"; in zend_wrong_string_offset_error()
1711 msg = "Cannot use string offset as an object"; in zend_wrong_string_offset_error()
1714 msg = "Cannot increment/decrement string offsets"; in zend_wrong_string_offset_error()
1721 ZEND_ASSERT(msg != NULL); in zend_wrong_string_offset_error()
[all …]
/php-src/sapi/fpm/tests/
H A Dtester.inc1536 * @param string|null $msg
1538 private function message($msg)
1540 if ($msg !== null) {
1541 echo "$msg\n";
1558 * @param string $msg Error message.
1564 private function error(string $msg, ?\Exception $exception = null, bool $prefix = true): bool
1566 $this->error = $prefix ? 'ERROR: ' . $msg : ltrim($msg);
/php-src/sapi/litespeed/
H A Dlsapi_main.c315 const char* msg; member
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-src/ext/pdo_pgsql/
H A Dpgsql_driver.c67 …h_t *dbh, pdo_stmt_t *stmt, int errcode, const char *sqlstate, const char *msg, const char *file, … in _pdo_pgsql_error() argument
90 if (msg) { in _pdo_pgsql_error()
91 einfo->errmsg = pestrdup(msg, dbh->is_persistent); in _pdo_pgsql_error()
/php-src/sapi/cli/
H A Dphp_cli.c1085 …zval *msg = zend_read_property_ex(zend_ce_exception, EG(exception), ZSTR_KNOWN(ZEND_STR_MESSAGE), … in do_cli() local
1086 zend_printf("Exception: %s\n", Z_STRVAL_P(msg)); in do_cli()
H A Dphp_cli_server.c768 static void sapi_cli_server_log_write(int type, const char *msg) /* {{{ */ in sapi_cli_server_log_write() argument
788 fprintf(stderr, "[%ld] [%s] %s\n", (long) getpid(), buf, msg); in sapi_cli_server_log_write()
790 fprintf(stderr, "[%s] %s\n", buf, msg); in sapi_cli_server_log_write()
793 fprintf(stderr, "[%s] %s\n", buf, msg); in sapi_cli_server_log_write()
797 static void sapi_cli_server_log_message(const char *msg, int syslog_type_int) /* {{{ */ in sapi_cli_server_log_message() argument
799 sapi_cli_server_log_write(PHP_CLI_SERVER_LOG_MESSAGE, msg); in sapi_cli_server_log_message()
/php-src/Zend/Optimizer/
H A Dzend_dump.c930 …ump_op_array(const zend_op_array *op_array, uint32_t dump_flags, const char *msg, const void *data) in zend_dump_op_array() argument
1005 if (msg) { in zend_dump_op_array()
1006 fprintf(stderr, " ; (%s)\n", msg); in zend_dump_op_array()
/php-src/ext/opcache/jit/ir/dynasm/
H A Ddasm_x86.lua2113 local msg = "bad operand mode"
2116 msg = "mixed operand size"
2118 msg = sz and "bad operand size" or "missing operand size"
2122 werror(msg.." in `"..opmodestr(params.op, args).."'")
/php-src/ext/curl/
H A Dmulti.c290 add_assoc_long(return_value, "msg", tmp_msg->msg); in PHP_FUNCTION()

Completed in 120 milliseconds

123456789