Home
last modified time | relevance | path

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

123456789

/PHP-7.4/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-7.4/ext/standard/tests/file/
H A Dunlink_variation8.phpt87 $msg = "soft link";
91 $msg = "hard link";
93 echo "-- unlinking $msg $tounlink --\n";
H A D007_variation8.phpt20 checking for the warning msg when trying to open an existing file in "x+" mode,
H A D007_variation15.phpt20 checking for the warning msg when trying to open an existing file in "xt" mode,
H A D007_variation16.phpt20 checking for the warning msg when trying to open an existing file in "x+t" mode,
H A D007_variation23.phpt20 checking for the warning msg when trying to open an existing file in "xb" mode,
H A D007_variation24.phpt20 checking for the warning msg when trying to open an existing file in "x+b" mode,
H A D007_variation7.phpt20 checking for the warning msg when trying to open an existing file in "x" mode,
/PHP-7.4/ext/imap/tests/
H A Dimap_fetchbody_error.phpt25 $stream_id = setup_test_mailbox('', 1); // set up temp mailbox with 1 simple msg
H A Dimap_fetch_overview_variation5.phpt16 * Pass different sequences/msg numbers as $msg_no argument to test behaviour
/PHP-7.4/sapi/phpdbg/
H A Dphpdbg_wait.c125 void phpdbg_webdata_decompress(char *msg, int len) { in phpdbg_webdata_decompress() argument
132 …if (!php_var_unserialize(&zv, (const unsigned char **) &msg, (unsigned char *) msg + len, &var_has… in phpdbg_webdata_decompress()
H A Dphpdbg_cmd.h157 PHPDBG_API void phpdbg_param_debug(const phpdbg_param_t *param, const char *msg);
H A Dphpdbg.h300 char *msg; member
/PHP-7.4/sapi/fpm/tests/
H A Dlogtool.inc438 * @param string $msg
441 private function error(string $msg)
443 $this->error = $msg;
444 echo "ERROR: $msg\n";
H A Dtester.inc1173 * @param string|null $msg
1175 private function message($msg)
1177 if ($msg !== null) {
1178 echo "$msg\n";
1183 * @param string $msg
1186 private function error($msg, \Exception $exception = null)
1188 $this->error = 'ERROR: ' . $msg;
/PHP-7.4/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-7.4/ext/ffi/
H A Dffi.g69 static void yy_error(const char *msg);
70 static void yy_error_sym(const char *msg, int sym);
918 static void yy_error(const char *msg) {
919 zend_ffi_parser_error("%s at line %d", msg, yy_line);
922 static void yy_error_sym(const char *msg, int sym) {
923 zend_ffi_parser_error("%s '%s' at line %d", msg, sym_name[sym], yy_line);
/PHP-7.4/ext/standard/tests/mail/
H A Dbug72964.phpt27 // sleep for a while to allow msg to be delivered
H A Dbug80706.phpt27 // sleep for a while to allow msg to be delivered
H A Dbug80751.phpt27 // sleep for a while to allow msg to be delivered
/PHP-7.4/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()
/PHP-7.4/win32/build/
H A Dphpize.js.in33 function ERROR(msg) argument
35 STDERR.WriteLine("ERROR: " + msg);
/PHP-7.4/sapi/cli/
H A Dphp_cli.c1082 zval tmp, *msg, rv; in do_cli() local
1085 msg = zend_read_property(zend_ce_exception, &tmp, "message", sizeof("message")-1, 0, &rv); in do_cli()
1086 zend_printf("Exception: %s\n", Z_STRVAL_P(msg)); in do_cli()
/PHP-7.4/sapi/fpm/fpm/
H A Dzlog.c268 const char *prefix, const char *msg) /* {{{ */ in zlog_msg_ex() argument
272 size_t msg_len = strlen(msg); in zlog_msg_ex()
277 zlog_stream_str(&stream, msg, msg_len); in zlog_msg_ex()
/PHP-7.4/Zend/
H A Dzend_execute.c1432 const char *msg = NULL; in zend_wrong_string_offset() local
1468 msg = "Cannot use string offset as an object"; in zend_wrong_string_offset()
1477 msg = "Cannot use string offset as an array"; in zend_wrong_string_offset()
1491 msg = "Cannot increment/decrement string offsets"; in zend_wrong_string_offset()
1501 msg = "Cannot return string offsets by reference"; in zend_wrong_string_offset()
1505 msg = "Cannot unset string offsets"; in zend_wrong_string_offset()
1508 msg = "Cannot yield string offsets by reference"; in zend_wrong_string_offset()
1513 msg = "Only variables can be passed by reference"; in zend_wrong_string_offset()
1516 msg = "Cannot iterate on string offsets by reference"; in zend_wrong_string_offset()
1532 ZEND_ASSERT(msg != NULL); in zend_wrong_string_offset()
[all …]

Completed in 65 milliseconds

123456789