Home
last modified time | relevance | path

Searched refs:msg (Results 51 – 75 of 195) sorted by relevance

12345678

/PHP-7.3/ext/imap/tests/
H A Dimap_fetch_overview_variation6.phpt25 // refresh msg numbers
46 $envelope["subject"] = "Test msg 1";
78 $msg = imap_mail_compose($envelope, $body);
80 if (imap_append($imap_stream, $mailbox, $msg) === false) {
/PHP-7.3/ext/intl/locale/
H A Dlocale_methods.c392 char* msg = NULL; in get_icu_value_src_php() local
402 efree(msg); in get_icu_value_src_php()
434 intl_error_set( NULL, status, msg , 1 ); in get_icu_value_src_php()
435 efree(msg); in get_icu_value_src_php()
501 char* msg = NULL; in get_icu_disp_value_src_php() local
511 efree(msg); in get_icu_disp_value_src_php()
519 efree(msg); in get_icu_disp_value_src_php()
577 intl_error_set( NULL, status, msg , 1 ); in get_icu_disp_value_src_php()
578 efree(msg); in get_icu_disp_value_src_php()
606 intl_error_set( NULL, status, msg , 1 ); in get_icu_disp_value_src_php()
[all …]
/PHP-7.3/sapi/fpm/fpm/
H A Dzlog.h10 #define zlog_msg(flags, prefix, msg) zlog_msg_ex(__func__, __LINE__, flags, prefix, msg) argument
34 const char *prefix, const char *msg);
/PHP-7.3/ext/sockets/
H A Dphp_sockets.h80 #define PHP_SOCKET_ERROR(socket, msg, errn) \ argument
86 php_error_docref(NULL, E_WARNING, "%s [%d]: %s", msg, _err, sockets_strerror(_err)); \
/PHP-7.3/Zend/tests/
H A Dexception_before_fatal.phpt5 function exception_error_handler($code, $msg) {
6 throw new Exception($msg);
H A Ddebug_backtrace_with_include_and_this.phpt20 set_error_handler(function($code, $msg, $file, $line) {
22 echo "ERR#$code: $msg @ ", $bt[1]['function'], "\n";
H A Dtemporary_cleaning_016.phpt5 set_error_handler(function($no, $msg) { throw new Exception; });
/PHP-7.3/ext/libxml/
H A Dlibxml.c507 error_copy.message = (char*)xmlStrdup((xmlChar*)msg); in _php_list_set_error_structure()
535 void php_libxml_issue_error(int level, const char *msg) in php_libxml_issue_error() argument
538 _php_list_set_error_structure(NULL, msg); in php_libxml_issue_error()
540 php_error_docref(NULL, level, "%s", msg); in php_libxml_issue_error()
550 len = vspprintf(&buf, 0, *msg, ap); in php_libxml_internal_error_handler()
723 PHP_LIBXML_API void php_libxml_ctx_error(void *ctx, const char *msg, ...) in php_libxml_ctx_error() argument
726 va_start(args, msg); in php_libxml_ctx_error()
727 php_libxml_internal_error_handler(PHP_LIBXML_CTX_ERROR, ctx, &msg, args); in php_libxml_ctx_error()
734 va_start(args, msg); in php_libxml_ctx_warning()
749 va_start(args, msg); in php_libxml_error_handler()
[all …]
/PHP-7.3/sapi/phpdbg/
H A Dphpdbg_wait.h27 void phpdbg_webdata_decompress(char *msg, int len);
H A Dphpdbg_webdata_transfer.h25 PHPDBG_API void phpdbg_webdata_compress(char **msg, size_t *len);
H A Dphpdbg_cmd.c324 PHPDBG_API void phpdbg_param_debug(const phpdbg_param_t *param, const char *msg) { in phpdbg_param_debug() argument
328 fprintf(stderr, "%s STR_PARAM(%s=%zu)\n", msg, param->str, param->len); in phpdbg_param_debug()
332 fprintf(stderr, "%s ADDR_PARAM(" ZEND_ULONG_FMT ")\n", msg, param->addr); in phpdbg_param_debug()
336 fprintf(stderr, "%s NUMERIC_FILE_PARAM(%s:#%lu)\n", msg, param->file.name, param->file.line); in phpdbg_param_debug()
340 fprintf(stderr, "%s FILE_PARAM(%s:%lu)\n", msg, param->file.name, param->file.line); in phpdbg_param_debug()
344 fprintf(stderr, "%s METHOD_PARAM(%s::%s)\n", msg, param->method.class, param->method.name); in phpdbg_param_debug()
348 …fprintf(stderr, "%s NUMERIC_METHOD_PARAM(%s::%s)\n", msg, param->method.class, param->method.name); in phpdbg_param_debug()
352 fprintf(stderr, "%s NUMERIC_FUNCTION_PARAM(%s::%ld)\n", msg, param->str, param->num); in phpdbg_param_debug()
356 fprintf(stderr, "%s NUMERIC_PARAM(%ld)\n", msg, param->num); in phpdbg_param_debug()
360 fprintf(stderr, "%s COND_PARAM(%s=%zu)\n", msg, param->str, param->len); in phpdbg_param_debug()
[all …]
/PHP-7.3/ext/mysqli/tests/
H A Dmysqli_fork.phpt72 msg TEXT) ENGINE = InnoDB"))
91 …$sql = sprintf("INSERT INTO messages(pid, sender, msg) VALUES (%d, 'child', '%%s')", posix_getpid(…
95 …$parent_sql = sprintf("SELECT msg_id, msg_time, msg FROM messages WHERE pid = %d AND sender = 'pa…
117 if ($tmp['msg'] == 'stop')
138 …$sql = sprintf("SELECT msg_id, msg_time, msg FROM messages WHERE pid = %d AND sender = 'child' ORD…
139 …$parent_sql = sprintf("INSERT INTO messages (pid, sender, msg) VALUES (%d, 'parent', '%%s')", posi…
148 switch ($row['msg']) {
155 $client_row = $row['msg'];
216 if (!$res = mysqli_query($link, "SELECT sender, msg FROM messages ORDER BY msg_id ASC"))
220 printf("%10s %s\n", $row['sender'], substr($row['msg'], 0, 5));
/PHP-7.3/ext/sockets/tests/
H A Dsocket_sentto_recvfrom_ipv4_udp.phpt26 $msg = "Ping!";
27 $len = strlen($msg);
28 $bytes_sent = socket_sendto($socket, $msg, $len, 0, $address, 1223);
H A Dsocket_sentto_recvfrom_ipv6_udp.phpt28 $msg = "Ping!";
29 $len = strlen($msg);
30 $bytes_sent = socket_sendto($socket, $msg, $len, 0, $address, 1223);
H A Dsocket_sentto_recvfrom_ipv6_udp-win32.phpt28 $msg = "Ping!";
29 $len = strlen($msg);
30 $bytes_sent = socket_sendto($socket, $msg, $len, 0, $address, 1223);
/PHP-7.3/ext/standard/tests/general_functions/
H A Dbug40398.phpt8 function __construct($msg)
10 echo __METHOD__ . "($msg)\n";
/PHP-7.3/ext/standard/tests/mail/
H A Dmail_basic_alt4-win32.phpt57 // sleep for a while to allow msg to be delivered
68 echo "Id of msg just sent is $i\n";
91 Id of msg just sent is %d
H A Dmail_basic_alt1-win32.phpt58 // sleep for a while to allow msg to be delivered
69 echo "Id of msg just sent is $i\n";
92 Id of msg just sent is %d
H A Dmail_basic_alt2-win32.phpt56 // sleep for a while to allow msg to be delivered
67 echo "Id of msg just sent is $i\n";
90 Id of msg just sent is %d
H A Dmail_basic_alt3-win32.phpt56 // sleep for a while to allow msg to be delivered
67 echo "Id of msg just sent is $i\n";
90 Id of msg just sent is %d
H A Dmail_include.inc94 $msg = "From: foo@anywhere.com\r\n"
102 $envelope["subject"] = "Test msg $i";
127 $msg = imap_mail_compose($envelope, $body);
130 imap_append($imap_stream, $mailbox, $msg);
/PHP-7.3/ext/standard/tests/file/
H A Dunlink_variation10.phpt60 $msg = "soft link";
64 $msg = "hard link";
66 echo "-- unlinking $msg $tounlink --\n";
/PHP-7.3/ext/pdo_mysql/tests/
H A Dpdo_mysql_attr_errmode.phpt97 $msg = $e->getMessage();
99 if (false === stristr($msg, (string)$v)) {
101 $v, $msg);
135 $msg = $e->getMessage();
137 if (false === stristr($msg, (string)$v)) {
139 $v, $msg);
/PHP-7.3/ext/intl/idn/
H A Didn.c113 static int php_intl_idn_check_status(UErrorCode err, const char *msg) in php_intl_idn_check_status() argument
120 msg); in php_intl_idn_check_status()
129 static inline void php_intl_bad_args(const char *msg) in php_intl_bad_args() argument
131 php_intl_idn_check_status(U_ILLEGAL_ARGUMENT_ERROR, msg); in php_intl_bad_args()
/PHP-7.3/ext/dba/
H A Ddba_db4.c41 const char *errpfx, const char *msg) in php_dba_db4_errcall_fcn() argument
50 && (!strncmp(msg, "fop_read_meta", sizeof("fop_read_meta")-1) in php_dba_db4_errcall_fcn()
51 || !strncmp(msg, "BDB0004 fop_read_meta", sizeof("BDB0004 fop_read_meta")-1))) { in php_dba_db4_errcall_fcn()
57 php_error_docref(NULL, E_NOTICE, "%s%s", errpfx?errpfx:"", msg); in php_dba_db4_errcall_fcn()

Completed in 54 milliseconds

12345678