Home
last modified time | relevance | path

Searched refs:msg (Results 26 – 50 of 217) sorted by relevance

123456789

/php-src/ext/intl/msgformat/
H A Dmsgformat_attr.c84 char *msg; in PHP_FUNCTION() local
85 …spprintf(&msg, 0, "Error setting symbol value at line %d, offset %d", spattern_error.line, spatter… in PHP_FUNCTION()
86 intl_errors_set_custom_msg(INTL_DATA_ERROR_P(mfo), msg, 1); in PHP_FUNCTION()
87 efree(msg); in PHP_FUNCTION()
H A Dmsgformat_format.c131 char *msg = NULL; in PHP_FUNCTION() local
134 …spprintf( &msg, 0, "pattern syntax error (%s)", parse_error_str.s? ZSTR_VAL(parse_error_str.s) : "… in PHP_FUNCTION()
139 intl_errors_set_custom_msg(/* intl_error* */ NULL, msg, 1 ); in PHP_FUNCTION()
141 efree( msg ); in PHP_FUNCTION()
/php-src/sapi/fpm/fpm/
H A Dfpm_trace_mach.c60 char *msg = ""; in fpm_trace_ready() local
63 msg = " It seems that master process does not have enough privileges to trace processes."; in fpm_trace_ready()
65 zlog(ZLOG_ERROR, "task_for_pid() failed: %s (%d)%s", mach_error_string(kr), kr, msg); in fpm_trace_ready()
/php-src/ext/sodium/tests/
H A Dcrypto_box.phpt35 $msg = "Here is another message, to be signed using Alice's secret key, and " .
40 $msg,
47 $msg,
75 var_dump($msg === $plaintext);
127 $msg = sodium_hex2bin(
135 var_dump(sodium_crypto_box_seal_open($msg, $kp));
/php-src/ext/xsl/
H A Dphp_xsl.c224 const char *msg, in xsl_try_output_replaced_error_message() argument
231 const char *msg_replace_location = strstr(msg, search); in xsl_try_output_replaced_error_message()
233 …php_libxml_ctx_error(ctx, "%.*s%s%s", (int) (msg_replace_location - msg), msg, replace, msg_replac… in xsl_try_output_replaced_error_message()
241 #define XSL_TRY_OUTPUT_REPLACED_ERROR_MESSAGE(ctx, msg, args, search, replace) \ argument
242 xsl_try_output_replaced_error_message(ctx, msg, args, "" search, sizeof("" search) - 1, "" replace)
246 static void xsl_libxslt_error_handler(void *ctx, const char *msg, ...) in xsl_libxslt_error_handler() argument
249 va_start(args, msg); in xsl_libxslt_error_handler()
251 if (strcmp(msg, "%s") == 0) { in xsl_libxslt_error_handler()
261 php_libxml_error_handler_va(PHP_LIBXML_ERROR, ctx, msg, args); in xsl_libxslt_error_handler()
/php-src/ext/opcache/tests/jit/
H A Dassign_dim_015.phpt9 set_error_handler(function($code, $msg) use (&$my_var) {
10 echo "Error: $msg\n";
H A Dassign_dim_005.phpt9 set_error_handler(function ($code, $msg) {
10 echo "Error: $msg\n";
H A Dtype_check_001.phpt11 set_error_handler(function($no, $msg) {
12 throw new Exception($msg);
/php-src/ext/sysvmsg/tests/
H A D006.phpt20 unset($msg);
21 var_dump(msg_receive($queue, 1, $msg_type, 1024, $msg, false, MSG_IPC_NOWAIT));
23 var_dump($elem == $msg);
24 var_dump($elem === $msg);
/php-src/Zend/tests/
H A Dstr_offset_007.phpt5 set_error_handler(function($code, $msg) {
6 echo "Err: $msg\n";
H A Dclass_alias_005.phpt7 static public function msg() {
19 foo::msg();
H A Dbitwise_not_precision_exception.phpt5 set_error_handler(function($_, $msg) {
6 throw new Exception($msg);
H A Dstrlen_deprecation_to_exception.phpt6 set_error_handler(function($_, $msg) {
7 throw new Exception($msg);
H A Dbug70785.phpt6 set_error_handler(function($no, $msg) {
7 throw new Exception($msg);
H A Dstr_offset_006.phpt5 set_error_handler(function($code, $msg) {
6 echo "Err: $msg\n";
H A Darray_offset_002.phpt5 set_error_handler(function($code, $msg) {
6 echo "Err: $msg\n";
H A Dfalsetoarray_002.phpt5 set_error_handler(function($code, $msg) {
6 echo "Err: $msg\n";
H A Doss_fuzz_61712.phpt7 function error($_, $msg) {
8 echo $msg, "\n";
H A Doss_fuzz_61712b.phpt7 function error($_, $msg) {
8 echo $msg, "\n";
H A Dbug61767.phpt5 set_error_handler(function($code, $msg, $file = null, $line = null) {
6 echo "Error handler called ($msg)\n";
7 throw new \ErrorException($msg, $code, 0, $file, $line);
H A Dstr_offset_008.phpt5 set_error_handler(function($code, $msg) {
6 echo "Err: $msg\n";
/php-src/ext/libxml/
H A Dphp_libxml.h162 PHP_LIBXML_API void php_libxml_error_handler(void *ctx, const char *msg, ...);
163 PHP_LIBXML_API void php_libxml_ctx_warning(void *ctx, const char *msg, ...);
164 … void php_libxml_pretend_ctx_error_ex(const char *file, int line, int column, const char *msg,...);
165 PHP_LIBXML_API void php_libxml_ctx_error(void *ctx, const char *msg, ...);
166 …bxml_error_handler_va(php_libxml_error_level error_type, void *ctx, const char *msg, va_list args);
169 PHP_LIBXML_API void php_libxml_issue_error(int level, const char *msg);
/php-src/Zend/tests/float_to_int/
H A Dunion_int_string_type_arg_promote_exception.phpt8 set_error_handler(function($_, $msg) {
9 throw new Exception($msg);
/php-src/ext/intl/transliterator/
H A Dtransliterator_methods.c169 char *msg = NULL; in PHP_FUNCTION() local
172 spprintf( &msg, 0, "transliterator_create_from_rules: unable to " in PHP_FUNCTION()
175 if( msg != NULL ) in PHP_FUNCTION()
177 intl_errors_set_custom_msg( INTL_DATA_ERROR_P( to ), msg, 1 ); in PHP_FUNCTION()
178 efree( msg ); in PHP_FUNCTION()
346 char *msg; in PHP_FUNCTION() local
347 spprintf( &msg, 0, in PHP_FUNCTION()
351 if(msg != NULL ) in PHP_FUNCTION()
354 msg, 1 ); in PHP_FUNCTION()
355 efree( msg ); in PHP_FUNCTION()
/php-src/ext/sysvmsg/
H A Dconfig.m47 AC_CHECK_HEADER([sys/msg.h],
9 [AC_MSG_ERROR([Cannot enable System V IPC support, sys/msg.h is missing])

Completed in 50 milliseconds

123456789