Home
last modified time | relevance | path

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

12345678910

/PHP-8.3/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-8.3/ext/sodium/tests/
H A Dcrypto_generichash.phpt7 $q = sodium_crypto_generichash('msg');
9 $q = sodium_crypto_generichash('msg', '0123456789abcdef');
11 $q = sodium_crypto_generichash('msg', '0123456789abcdef', 64);
13 $q = sodium_crypto_generichash('msg', '0123456789abcdef0123456789abcdef', 64);
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-8.3/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-8.3/Zend/tests/
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 Dbitwise_not_precision_exception.phpt5 set_error_handler(function($_, $msg) {
6 throw new Exception($msg);
H A Dclass_alias_005.phpt7 static public function msg() {
19 foo::msg();
H A Dstr_offset_007.phpt5 set_error_handler(function($code, $msg) {
6 echo "Err: $msg\n";
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 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 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_003.phpt5 set_error_handler(function($code, $msg) {
6 echo "Err: $msg\n";
H A Dstr_offset_008.phpt5 set_error_handler(function($code, $msg) {
6 echo "Err: $msg\n";
/PHP-8.3/ext/opcache/tests/jit/
H A Dassign_dim_015.phpt10 set_error_handler(function($code, $msg) use (&$my_var) {
11 echo "Error: $msg\n";
H A Dassign_dim_005.phpt10 set_error_handler(function ($code, $msg) {
11 echo "Error: $msg\n";
H A Dtype_check_001.phpt12 set_error_handler(function($no, $msg) {
13 throw new Exception($msg);
/PHP-8.3/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-8.3/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-8.3/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])
/PHP-8.3/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()

Completed in 24 milliseconds

12345678910