Home
last modified time | relevance | path

Searched refs:msg (Results 201 – 225 of 239) sorted by relevance

12345678910

/PHP-8.3/ext/standard/tests/file/
H A D007_variation24.phpt9 checking for the warning msg when trying to open an existing file in "x+b" mode,
/PHP-8.3/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-8.3/sapi/phpdbg/
H A Dphpdbg.h289 char *msg; member
/PHP-8.3/ext/standard/tests/mail/
H A Dbug80751.phpt31 // sleep for a while to allow msg to be delivered
/PHP-8.3/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-8.3/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-8.3/main/
H A Dnetwork.c105 const char *msg; in php_gai_strerror() member
128 for (i = 0; values[i].msg != NULL; i++) { in php_gai_strerror()
130 return (char *)values[i].msg; in php_gai_strerror()
/PHP-8.3/ext/ffi/
H A Dphp_ffi.h214 void ZEND_NORETURN zend_ffi_parser_error(const char *msg, ...);
H A Dffi_parser.c35 static void yy_error(const char *msg);
36 static void yy_error_sym(const char *msg, int sym);
37 static void yy_error_str(const char *msg, const char *str);
3651 static void yy_error(const char *msg) { in yy_error() argument
3652 zend_ffi_parser_error("%s at line %d", msg, yy_line); in yy_error()
3655 static void yy_error_sym(const char *msg, int sym) { in yy_error_sym() argument
3656 zend_ffi_parser_error("%s '%s' at line %d", msg, sym_name[sym], yy_line); in yy_error_sym()
3659 static void yy_error_str(const char *msg, const char *str) { in yy_error_str() argument
3660 zend_ffi_parser_error("%s '%s' at line %d\n", msg, str, yy_line); in yy_error_str()
/PHP-8.3/ext/mysqlnd/
H A Dmysqlnd.h198 #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()
H A Dmysqlnd_connection.c731 char * msg; local
732 …mnd_sprintf(&msg, 0, "Unknown error while trying to connect via %s", transport.s ? transport.s : c…
733 SET_CLIENT_ERROR(conn->error_info, CR_CONNECTION_ERROR, UNKNOWN_SQLSTATE, msg);
734 mnd_sprintf_free(msg);
/PHP-8.3/Zend/
H A Dzend_execute.c873 smart_str msg = {0}; in zend_match_unhandled_error() local
879 smart_str_appends(&msg, zend_zval_type_name(value)); in zend_match_unhandled_error()
882 smart_str_0(&msg); in zend_match_unhandled_error()
887 smart_str_free(&msg); in zend_match_unhandled_error()
1682 const char *msg = NULL; in zend_wrong_string_offset_error() local
1695 msg = "Cannot create references to/from string offsets"; in zend_wrong_string_offset_error()
1706 msg = "Cannot use string offset as an array"; in zend_wrong_string_offset_error()
1709 msg = "Cannot use string offset as an object"; in zend_wrong_string_offset_error()
1712 msg = "Cannot increment/decrement string offsets"; in zend_wrong_string_offset_error()
1719 ZEND_ASSERT(msg != NULL); in zend_wrong_string_offset_error()
[all …]
/PHP-8.3/sapi/fpm/tests/
H A Dtester.inc1534 * @param string|null $msg
1536 private function message($msg)
1538 if ($msg !== null) {
1539 echo "$msg\n";
1556 * @param string $msg Error message.
1562 private function error(string $msg, \Exception $exception = null, bool $prefix = true): bool
1564 $this->error = $prefix ? 'ERROR: ' . $msg : ltrim($msg);
/PHP-8.3/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-8.3/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-8.3/sapi/cli/
H A Dphp_cli.c1086 …zval *msg = zend_read_property_ex(zend_ce_exception, EG(exception), ZSTR_KNOWN(ZEND_STR_MESSAGE), … in do_cli() local
1087 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-8.3/ext/opcache/jit/
H A Dzend_jit.c4677 char *msg = php_win32_error_to_msg(err); in zend_jit_unprotect()
4678 fprintf(stderr, "VirtualProtect() failed [%u] %s\n", err, msg); in zend_jit_unprotect()
4679 php_win32_error_msg_free(msg); in zend_jit_unprotect()
4704 char *msg = php_win32_error_to_msg(err); in zend_jit_protect()
4705 fprintf(stderr, "VirtualProtect() failed [%u] %s\n", err, msg); in zend_jit_protect()
4706 php_win32_error_msg_free(msg); in zend_jit_protect()
4983 char *msg = php_win32_error_to_msg(err); in zend_jit_startup() local
4984 fprintf(stderr, "VirtualProtect() failed [%u] %s\n", err, msg); in zend_jit_startup()
4985 php_win32_error_msg_free(msg); in zend_jit_startup()
4992 char *msg = php_win32_error_to_msg(err); in zend_jit_startup() local
[all …]
/PHP-8.3/Zend/Optimizer/
H A Dzend_dump.c925 …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
1000 if (msg) { in zend_dump_op_array()
1001 fprintf(stderr, " ; (%s)\n", msg); in zend_dump_op_array()
/PHP-8.3/ext/opcache/jit/dynasm/
H A Ddasm_x86.lua2109 local msg = "bad operand mode"
2112 msg = "mixed operand size"
2114 msg = sz and "bad operand size" or "missing operand size"
2118 werror(msg.." in `"..opmodestr(params.op, args).."'")
H A Dminilua.c724 const char*msg;
727 msg=luaO_pushvfstring(L,fmt,argp);
729 return msg;
2568 static void addinfo(lua_State*L,const char*msg){
2574 luaO_pushfstring(L,"%s:%d: %s",buff,line,msg);
2713 msg=luaO_pushfstring(ls->L,"%s:%d: %s",buff,ls->linenumber,msg);
2719 luaX_lexerror(ls,msg,ls->t.token);
3678 const char*msg=(fs->f->linedefined==0)?
3682 luaX_lexerror(fs->ls,msg,0);
3699 #define check_condition(ls,c,msg){if(!(c))luaX_syntaxerror(ls,msg);}
[all …]
/PHP-8.3/ext/pdo_oci/
H A Doci_statement.c41 #define STMT_CALL_MSG(name, msg, params) \ argument
44 …S->last_err = _oci_error(S->err, stmt->dbh, stmt, #name ": " #msg, S->last_err, FALSE, __FILE__, _…
/PHP-8.3/ext/curl/
H A Dmulti.c298 add_assoc_long(return_value, "msg", tmp_msg->msg); in PHP_FUNCTION()

Completed in 169 milliseconds

12345678910