Home
last modified time | relevance | path

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

123456789

/php-src/sapi/phpdbg/
H A Dphpdbg_prompt.c267 …ecognized command in %s:%d: %s, %s!", state->init_file, state->line, input, PHPDBG_G(err_buf).msg); in phpdbg_line_init()
269 …put_err_buf("Unrecognized command on line %d: %s, %s!", state->line, input, PHPDBG_G(err_buf).msg); in phpdbg_line_init()
713 zend_string *msg, *file; in phpdbg_handle_exception() local
725 msg = ZSTR_EMPTY_ALLOC(); in phpdbg_handle_exception()
729msg = zval_get_string(zend_read_property_ex(zend_get_exception_base(ex), ex, ZSTR_KNOWN(ZEND_STR_S… in phpdbg_handle_exception()
734 phpdbg_writeln("%s", ZSTR_VAL(msg)); in phpdbg_handle_exception()
735 zend_string_release(msg); in phpdbg_handle_exception()
1371 …Could not load %s, not found or invalid zend extension / module: %s", path, PHPDBG_G(err_buf).msg); in PHPDBG_COMMAND()
1558 phpdbg_output_err_buf("%s", PHPDBG_G(err_buf).msg); in phpdbg_interactive()
1704 ZSTR_LEN(msg) < 80 ? (int) ZSTR_LEN(msg) : 80, ZSTR_VAL(msg)); in phpdbg_execute_ex()
[all …]
H A Dphpdbg_cmd.h151 PHPDBG_API void phpdbg_param_debug(const phpdbg_param_t *param, const char *msg);
/php-src/ext/curl/tests/
H A Dbug76675.phpt40 if (false !== $info && $info['msg'] == CURLMSG_DONE) {
/php-src/Zend/
H A Dzend_verify_type_inference.h35 #define ZEND_VERIFY_TYPE_INFERENCE_ERROR(msg, ...) \ argument
37 …fprintf(stderr, "Inference verification failed at %04d %s (" msg ")\n", (int)(opline - EX(func)->o…
H A Dzend_ini_parser.y196 static ZEND_COLD void ini_error(const char *msg) in ini_error() argument
203 …error_buf_len = 128 + (int)strlen(msg) + (int)strlen(currently_parsed_filename); /* should be more… in ini_error()
206 …sprintf(error_buf, "%s in %s on line %d\n", msg, currently_parsed_filename, zend_ini_scanner_get_l… in ini_error()
/php-src/Zend/tests/type_declarations/union_types/
H A Dtype_checking_strict.phpt34 $msg = $e->getMessage();
35 $msg = strstr($msg, ', called in', true);
36 $msg = str_replace('{closure}(): Argument #1 ($arg)', 'Argument ...', $msg);
37 echo $msg;
/php-src/ext/dba/
H A Ddba_db3.c38 const char *errpfx, const char *msg) in php_dba_db3_errcall_fcn() argument
41 php_error_docref(NULL, E_NOTICE, "%s%s", errpfx?errpfx:"", msg); in php_dba_db3_errcall_fcn()
/php-src/ext/sockets/
H A Dconversions.h28 char *msg; member
H A Dphp_sockets.h100 #define PHP_SOCKET_ERROR(socket, msg, errn) \ argument
106 php_error_docref(NULL, E_WARNING, "%s [%d]: %s", msg, _err, sockets_strerror(_err)); \
/php-src/ext/pdo_firebird/
H A Dphp_pdo_firebird_int.h133 const char *msg, const size_t msg_len);
/php-src/win32/
H A Dsendmail.c890 static int Post(LPCSTR msg) in Post() argument
892 int len = (int)strlen(msg); in Post()
897 if (msg) in Post()
898 printf("POST: '%s'\n", msg); in Post()
903 if ((slen = send(PW32G(mail_socket), msg + index, len, 0)) < 1) in Post()
/php-src/ext/opcache/jit/ir/dynasm/
H A Ddynasm.lua112 local function werror(msg)
113 error(format("%s:%s: error: %s:\n%s", g_fname, g_lineno, msg, g_curline), 0)
117 local function wfatal(msg)
119 werror(msg)
123 local function wwarn(msg)
125 g_fname, g_lineno, msg, g_curline))
/php-src/ext/mysqli/tests/
H A Dbug49442.phpt15 if ($msg = check_local_infile_support($link, $engine))
16 die(sprintf("skip %s, [%d] %s", $msg, $link->errno, $link->error));
/php-src/ext/phar/phar/
H A Dclicommand.inc90 static function notice ($msg)
92 fprintf(STDERR, $msg);
95 static function error ($msg, $exit_code = 1)
97 self::notice($msg);
/php-src/ext/mysqlnd/
H A Dmysqlnd_auth.c84 char * msg; in mysqlnd_run_authentication() local
85 …mnd_sprintf(&msg, 0, "The server requested authentication method unknown to the client [%s]", requ… in mysqlnd_run_authentication()
86 SET_CLIENT_ERROR(conn->error_info, CR_NOT_IMPLEMENTED, UNKNOWN_SQLSTATE, msg); in mysqlnd_run_authentication()
87 mnd_sprintf_free(msg); in mysqlnd_run_authentication()
1285 char * msg; in mysqlnd_caching_sha2_handle_server_response() local
1286 …mnd_sprintf(&msg, 0, "Unexpected server response while doing caching_sha2 auth: %i", result_packet… in mysqlnd_caching_sha2_handle_server_response()
1287 SET_CLIENT_ERROR(conn->error_info, CR_NOT_IMPLEMENTED, UNKNOWN_SQLSTATE, msg); in mysqlnd_caching_sha2_handle_server_response()
1288 mnd_sprintf_free(msg); in mysqlnd_caching_sha2_handle_server_response()
H A Dmysqlnd_commands.c605 char * msg; in MYSQLND_METHOD() local
606 …mnd_sprintf(&msg, 0, "Connecting to 3.22, 3.23 & 4.0 is not supported. Server is %-.32s", greet_pa… in MYSQLND_METHOD()
607 DBG_ERR(msg); in MYSQLND_METHOD()
608 SET_CLIENT_ERROR(conn->error_info, CR_NOT_IMPLEMENTED, UNKNOWN_SQLSTATE, msg); in MYSQLND_METHOD()
609 mnd_sprintf_free(msg); in MYSQLND_METHOD()
/php-src/ext/standard/tests/file/
H A Dunlink_variation8.phpt81 $msg = "soft link";
85 $msg = "hard link";
87 echo "-- unlinking $msg $tounlink --\n";
H A D007_variation8.phpt9 checking for the warning msg when trying to open an existing file in "x+" mode,
/php-src/Zend/tests/
H A Dcompound_assign_failure.phpt23 set_error_handler(function($type, $msg) { throw new Exception($msg); });
/php-src/sapi/fpm/tests/
H A Dlogreader.inc209 * @param string $msg Message to print.
211 private function trace(string $msg): void
214 print "LogReader - $msg";
/php-src/ext/fileinfo/libmagic/
H A Dcompress.c645 return makeerror(newch, n, "%s", z.msg ? z.msg : zError(rc)); in uncompresszlib()
840 char *msg; in makeerror() local
847 rv = vasprintf(&msg, fmt, ap); in makeerror()
855 *buf = RCAST(unsigned char *, msg); in makeerror()
856 *len = strlen(msg); in makeerror()
/php-src/ext/json/
H A Djson_parser.y70 static void php_json_yyerror(php_json_parser *parser, char const *msg);
299 static void php_json_yyerror(php_json_parser *parser, char const *msg) in php_json_yyerror() argument
/php-src/ext/gd/libgd/
H A Dgd_png.c51 static void gdPngErrorHandler (png_structp png_ptr, png_const_charp msg) in gdPngErrorHandler() argument
65 gd_error_ex(GD_WARNING, "gd-png: fatal libpng error: %s", msg); in gdPngErrorHandler()
75 static void gdPngWarningHandler (png_structp png_ptr, png_const_charp msg) in gdPngWarningHandler() argument
77 gd_error_ex(GD_WARNING, "gd-png: libpng warning: %s", msg); in gdPngWarningHandler()
/php-src/ext/ffi/
H A Dffi.g65 static void yy_error(const char *msg);
66 static void yy_error_sym(const char *msg, int sym);
914 static void yy_error(const char *msg) {
915 zend_ffi_parser_error("%s at line %d", msg, yy_line);
918 static void yy_error_sym(const char *msg, int sym) {
919 zend_ffi_parser_error("%s '%s' at line %d", msg, sym_name[sym], yy_line);
/php-src/main/streams/
H A Dstreams.c156 char *msg; in php_stream_display_wrapper_errors() local
192 msg = emalloc(l + 1); in php_stream_display_wrapper_errors()
193 msg[0] = '\0'; in php_stream_display_wrapper_errors()
197 strcat(msg, *err_buf_p); in php_stream_display_wrapper_errors()
199 strcat(msg, br); in php_stream_display_wrapper_errors()
206 msg = strerror(errno); /* TODO: not ts on linux */ in php_stream_display_wrapper_errors()
208 msg = "operation failed"; in php_stream_display_wrapper_errors()
212 msg = "no suitable wrapper could be found"; in php_stream_display_wrapper_errors()
216 php_error_docref1(NULL, tmp, E_WARNING, "%s: %s", caption, msg); in php_stream_display_wrapper_errors()
219 efree(msg); in php_stream_display_wrapper_errors()

Completed in 68 milliseconds

123456789