Home
last modified time | relevance | path

Searched refs:msg (Results 1 – 25 of 202) sorted by relevance

123456789

/PHP-7.4/ext/intl/dateformat/
H A Ddateformat_helpers.cpp41 char *msg; in datefmt_process_calendar_arg() local
61 intl_errors_set(err, U_ILLEGAL_ARGUMENT_ERROR, msg, 1); in datefmt_process_calendar_arg()
62 efree(msg); in datefmt_process_calendar_arg()
79 spprintf(&msg, 0, "%s: Found unconstructed IntlCalendar object", in datefmt_process_calendar_arg()
81 intl_errors_set(err, U_ILLEGAL_ARGUMENT_ERROR, msg, 1); in datefmt_process_calendar_arg()
82 efree(msg); in datefmt_process_calendar_arg()
92 intl_errors_set(err, U_ILLEGAL_ARGUMENT_ERROR, msg, 1); in datefmt_process_calendar_arg()
93 efree(msg); in datefmt_process_calendar_arg()
101 spprintf(&msg, 0, "%s: Failure instantiating calendar", func_name); in datefmt_process_calendar_arg()
102 intl_errors_set(err, U_ILLEGAL_ARGUMENT_ERROR, msg, 1); in datefmt_process_calendar_arg()
[all …]
/PHP-7.4/sapi/fpm/tests/
H A Dlog-bwd-multiple-msgs.phpt25 file_put_contents('php://stderr', "msg 1 - ");
27 file_put_contents('php://stderr', "msg 2 - ");
29 file_put_contents('php://stderr', "msg 3");
37 $tester->expectLogLine('msg 1 - msg 2 - msg 3');
38 $tester->expectLogLine('msg 1 - msg 2 - msg 3');
H A Dlog-bwd-multiple-msgs-stdout-stderr.phpt27 file_put_contents('php://stdout', "msg 1 - ");
29 file_put_contents('php://stderr', "msg 2 - ");
31 file_put_contents('php://stderr', "msg 3");
39 $tester->expectLogLine('msg 1 - ', false);
40 $tester->expectLogLine('msg 2 - msg 3', true);
H A Dlog-bwd-msg-with-nl.phpt2 FPM: Buffered worker output decorated log with msg containing new lines
25 file_put_contents('php://stderr', "msg 1\nmsg 2\nmsg 3");
32 $tester->expectLogLine('msg 1');
33 $tester->expectLogLine('msg 2');
34 $tester->expectLogLine('msg 3');
/PHP-7.4/ext/sodium/tests/
H A Dcrypto_aead.phpt12 $msg = random_bytes(random_int(1, 1000));
19 var_dump($ciphertext !== $msg);
20 var_dump($msg === $msg2);
35 $msg = random_bytes(random_int(1, 1000));
42 var_dump($ciphertext !== $msg);
43 var_dump($msg === $msg2);
64 $msg = random_bytes(random_int(1, 1000));
71 var_dump($ciphertext !== $msg);
72 var_dump($msg === $msg2);
97 var_dump($ciphertext !== $msg);
[all …]
H A Dcrypto_auth.phpt7 $msg = random_bytes(1000);
9 $mac = sodium_crypto_auth($msg, $key);
12 var_dump(sodium_crypto_auth_verify($mac, $msg, $key));
16 $mac = sodium_crypto_auth($msg, $bad_key);
23 $badmsg = $msg;
28 $badmsg = $msg;
30 \ord($msg[$i]) ^ (
40 var_dump(sodium_crypto_auth_verify($badmac, $msg, $key));
H A Dcrypto_sign.phpt21 $msg = "Here is the message, to be signed using Alice's secret key, and " .
24 $msg_signed = sodium_crypto_sign($msg, $alice_secretkey);
25 var_dump(strlen($msg_signed) - strlen($msg) === SODIUM_CRYPTO_SIGN_BYTES);
28 var_dump($msg_orig === $msg);
40 $msg_signed = sodium_crypto_sign($msg, $alice_secretkey);
41 var_dump(strlen($msg_signed) - strlen($msg) === SODIUM_CRYPTO_SIGN_BYTES);
44 var_dump($msg_orig === $msg);
46 $signature = sodium_crypto_sign_detached($msg, $alice_secretkey);
49 $msg, $alice_publickey));
51 $msg . "\0", $alice_publickey));
[all …]
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);
/PHP-7.4/ext/com_dotnet/
H A Dcom_olechar.c61 char *msg = php_win32_error_to_msg(GetLastError()); in php_com_string_to_olestring() local
64 "Could not convert string to unicode: `%s'", msg); in php_com_string_to_olestring()
66 php_win32_error_msg_free(msg); in php_com_string_to_olestring()
92 char *msg = php_win32_error_to_msg(GetLastError()); in php_com_olestring_to_string() local
95 "Could not convert string from unicode: `%s'", msg); in php_com_olestring_to_string()
97 php_win32_error_msg_free(msg); in php_com_olestring_to_string()
126 char *msg = php_win32_error_to_msg(GetLastError()); in php_com_string_to_bstr()
128 "Could not convert string to unicode: `%s'", msg); in php_com_string_to_bstr()
129 LocalFree(msg); in php_com_string_to_bstr()
147 char *msg = php_win32_error_to_msg(GetLastError()); in php_com_bstr_to_string() local
[all …]
H A Dcom_com.c237 char *werr, *msg; in PHP_FUNCTION() local
244 efree(msg); in PHP_FUNCTION()
407 msg = NULL; in php_com_invoke_helper()
419 if (msg) { in php_com_invoke_helper()
421 efree(msg); in php_com_invoke_helper()
496 char *msg = NULL; in php_com_do_invoke_byref() local
501 efree(msg); in php_com_do_invoke_byref()
659 char *msg = NULL; in php_com_do_invoke() local
668 efree(msg); in php_com_do_invoke()
807 MSG msg; in PHP_FUNCTION() local
[all …]
/PHP-7.4/ext/intl/
H A Dintl_data.h49 #define INTL_CHECK_STATUS(err, msg) \ argument
53 intl_error_set_custom_msg( NULL, msg, 0 ); \
58 #define INTL_CHECK_STATUS_OR_NULL(err, msg) \ argument
62 intl_error_set_custom_msg( NULL, msg, 0 ); \
68 #define INTL_METHOD_CHECK_STATUS(obj, msg) \ argument
72 intl_errors_set_custom_msg( INTL_DATA_ERROR_P((obj)), msg, 0 ); \
77 #define INTL_METHOD_CHECK_STATUS_OR_NULL(obj, msg) \ argument
81 intl_errors_set_custom_msg( INTL_DATA_ERROR_P((obj)), msg, 0 ); \
87 #define INTL_CTOR_CHECK_STATUS(obj, msg) \ argument
91 intl_errors_set_custom_msg( INTL_DATA_ERROR_P((obj)), msg, 0 ); \
H A Dintl_error.c104 void intl_error_set_custom_msg( intl_error* err, const char* msg, int copyMsg ) in intl_error_set_custom_msg() argument
106 if( !msg ) in intl_error_set_custom_msg()
111 php_error_docref( NULL, INTL_G( error_level ), "%s", msg ); in intl_error_set_custom_msg()
113 zend_throw_exception_ex( IntlException_ce_ptr, 0, "%s", msg ); in intl_error_set_custom_msg()
125 err->custom_error_message = copyMsg ? estrdup( msg ) : (char *) msg; in intl_error_set_custom_msg()
183 void intl_error_set( intl_error* err, UErrorCode code, const char* msg, int copyMsg ) in intl_error_set() argument
186 intl_error_set_custom_msg( err, msg, copyMsg ); in intl_error_set()
196 intl_errors_set_custom_msg( err, msg, copyMsg ); in intl_errors_set()
213 void intl_errors_set_custom_msg( intl_error* err, const char* msg, int copyMsg ) in intl_errors_set_custom_msg() argument
216 intl_error_set_custom_msg( err, msg, copyMsg ); in intl_errors_set_custom_msg()
[all …]
H A Dintl_error.h38 void intl_error_set_custom_msg( intl_error* err, const char* msg, int copyMsg );
39 void intl_error_set( intl_error* err, UErrorCode code, const char* msg, int copyMsg );
45 void intl_errors_set_custom_msg( intl_error* err, const char* msg, int copyMsg );
47 void intl_errors_set( intl_error* err, UErrorCode code, const char* msg, int copyMsg );
/PHP-7.4/ext/mysqlnd/
H A Dmysqlnd_debug.h99 …INF_EX(dbg_obj, msg) do { if (dbg_skip_trace == FALSE && (dbg_obj)) (dbg_obj)->m->log((dbg_obj), … argument
100 …ERR_EX(dbg_obj, msg) do { if (dbg_skip_trace == FALSE && (dbg_obj)) (dbg_obj)->m->log((dbg_obj), … argument
168 static inline void DBG_INF_EX(MYSQLND_DEBUG * dbg_obj, const char * const msg) {} in DBG_INF_EX() argument
182 #define DBG_INF(msg) DBG_INF_EX(MYSQLND_G(dbg), (msg)) argument
183 #define DBG_ERR(msg) DBG_ERR_EX(MYSQLND_G(dbg), (msg)) argument
194 #define TRACE_ALLOC_INF(msg) DBG_INF_EX(MYSQLND_G(trace_alloc), (msg)) argument
195 #define TRACE_ALLOC_ERR(msg) DBG_ERR_EX(MYSQLND_G(trace_alloc), (msg)) argument
207 static inline void DBG_INF(const char * const msg) {} in DBG_INF() argument
208 static inline void DBG_ERR(const char * const msg) {} in DBG_ERR() argument
218 static inline void TRACE_ALLOC_INF(const char * const msg) {} in TRACE_ALLOC_INF() argument
[all …]
/PHP-7.4/Zend/tests/
H A Dexception_with_by_ref_message.phpt8 public function __construct(&$msg) {
9 $this->message =& $msg;
13 $msg = 'Message';
14 throw new MyException($msg);
H A Dbug60569.phpt6 $msg = "Some error \x00 message";
7 throw new Exception($msg);
9 var_dump($e->getMessage(), $msg);
/PHP-7.4/ext/intl/breakiterator/
H A Dbreakiterator_methods.cpp52 char *msg; in _breakiter_factory() local
58 spprintf(&msg, 0, "%s: bad arguments", func_name); in _breakiter_factory()
60 efree(msg); in _breakiter_factory()
73 intl_error_set_custom_msg(NULL, msg, 1); in _breakiter_factory()
74 efree(msg); in _breakiter_factory()
187 char *msg; in _breakiter_no_args_ret_int32() local
192 spprintf(&msg, 0, "%s: bad arguments", func_name); in _breakiter_no_args_ret_int32()
194 efree(msg); in _breakiter_no_args_ret_int32()
210 char *msg; in _breakiter_int32_ret_int32() local
218 efree(msg); in _breakiter_int32_ret_int32()
[all …]
/PHP-7.4/ext/pgsql/tests/
H A D21pg_get_notify.phpt15 $msg = pg_get_notify($db);
17 isset($msg['message'],$msg['pid']) ? print 'OK' : print 'NG';
/PHP-7.4/ext/sodium/
H A Dlibsodium.c770 unsigned char *msg; in PHP_FUNCTION() local
802 unsigned char *msg; in PHP_FUNCTION() local
846 zend_string *msg; in PHP_FUNCTION() local
893 unsigned char *msg; in PHP_FUNCTION() local
1232 unsigned char *msg; in PHP_FUNCTION() local
1280 zend_string *msg; in PHP_FUNCTION() local
1329 unsigned char *msg; in PHP_FUNCTION() local
1364 zend_string *msg; in PHP_FUNCTION() local
1708 unsigned char *msg; in PHP_FUNCTION() local
3064 char *msg; in PHP_FUNCTION() local
[all …]
/PHP-7.4/tests/classes/
H A Dctor_failure.phpt8 function __construct($msg) {
9 echo __METHOD__ . "($msg)\n";
10 throw new Exception($msg);
/PHP-7.4/sapi/phpdbg/
H A Dphpdbg_out.c882 if (*msg == '&') { in phpdbg_encode_xml()
885 } else if (*msg == '<') { in phpdbg_encode_xml()
892 *tmp++ = *msg; in phpdbg_encode_xml()
978 if (msg) { in phpdbg_process_print()
989 if (msg) { in phpdbg_process_print()
1001 if (msg) { in phpdbg_process_print()
1028 if (msg) { in phpdbg_process_print()
1105 PHPDBG_G(err_buf).msg = msg; in phpdbg_vprint()
1117 if (msg) { in phpdbg_vprint()
1118 efree(msg); in phpdbg_vprint()
[all …]
/PHP-7.4/ext/filter/tests/
H A D046.phpt24 function test_validation($val, $msg) {
26 echo "$msg filtered: "; var_dump($f); // filtered value (or false)
27 echo "$msg is_long: "; var_dump(is_long($f)); // test validation
28 echo "$msg equal: "; var_dump($val == $f); // test equality of result
/PHP-7.4/ext/pdo_mysql/
H A Dphp_pdo_mysql_int.h43 …ine PDO_DBG_INF(msg) do { if (dbg_skip_trace == FALSE) PDO_MYSQL_G(dbg)->m->log(PDO_MYSQL_G(dbg), … argument
44 …ine PDO_DBG_ERR(msg) do { if (dbg_skip_trace == FALSE) PDO_MYSQL_G(dbg)->m->log(PDO_MYSQL_G(dbg), … argument
59 static inline void PDO_DBG_INF(char *msg) {} in PDO_DBG_INF() argument
60 static inline void PDO_DBG_ERR(char *msg) {} in PDO_DBG_ERR() argument
/PHP-7.4/sapi/fpm/fpm/
H A Dfpm_trace_mach.c61 char *msg = ""; in fpm_trace_ready() local
64 msg = " It seems that master process does not have enough privileges to trace processes."; in fpm_trace_ready()
66 zlog(ZLOG_ERROR, "task_for_pid() failed: %s (%d)%s", mach_error_string(kr), kr, msg); in fpm_trace_ready()
/PHP-7.4/ext/imap/tests/
H A Dimap_fetchheader_basic.phpt18 $stream_id = setup_test_mailbox('', 1, $mailbox, 'multiPart'); // setup temp mailbox with 1 msg
52 Subject: Test msg 1
60 Subject: Test msg 1
68 Subject: Test msg 1
77 Subject: Test msg 1

Completed in 62 milliseconds

123456789