Home
last modified time | relevance | path

Searched refs:msg (Results 101 – 125 of 182) sorted by relevance

12345678

/PHP-7.2/ext/mysqli/tests/
H A Dbug68077.phpt14 if ($msg = check_local_infile_support($link, $engine))
15 die(sprintf("skip %s, [%d] %s", $msg, $link->errno, $link->error));
H A Dbug49442.phpt14 if ($msg = check_local_infile_support($link, $engine))
15 die(sprintf("skip %s, [%d] %s", $msg, $link->errno, $link->error));
/PHP-7.2/ext/imap/
H A Dphp_imap.h74 #define CONTENT_MSG_BODY nested.msg->body
81 #define CONTENT_MSG_BODY contents.msg.body
/PHP-7.2/ext/standard/tests/mail/
H A Dmail_variation_alt2-win32.phpt57 // sleep for a while to allow msg to be delivered
68 echo "Id of msg just sent is $i\n";
H A Dmail_variation_alt1-win32.phpt57 // sleep for a while to allow msg to be delivered
68 echo "Id of msg just sent is $i\n";
H A Dmail_variation_alt3-win32.phpt56 // sleep for a while to allow msg to be delivered
67 echo "Id of msg just sent is $i\n";
/PHP-7.2/sapi/phpdbg/
H A Dphpdbg_io.c326 const char *msg = "Unable to create socket"; local
328 zend_quiet_write(PHPDBG_G(io)[PHPDBG_STDERR].fd, msg, strlen(msg));
H A Dphpdbg_info.c123 #define VARIABLEINFO(attrs, msg, ...) \ in PHPDBG_INFO() argument
126 "%-18p %-7d %-9s %.*s" msg, &data->value, \ in PHPDBG_INFO()
233 #define VARIABLEINFO(attrs, msg, ...) \ in phpdbg_print_symbols() argument
236 …"%-18p %-7d %-9s %s$%.*s" msg, data, Z_REFCOUNTED_P(data) ? Z_REFCOUNT_P(data) : 1, zend_zval_type… in phpdbg_print_symbols()
H A Dphpdbg_prompt.c771 zend_string *msg, *file; in phpdbg_handle_exception() local
784 msg = ZSTR_EMPTY_ALLOC(); in phpdbg_handle_exception()
788msg = zval_get_string(zend_read_property(zend_get_exception_base(&zv), &zv, ZEND_STRL("string"), 1… in phpdbg_handle_exception()
793 phpdbg_writeln("exceptionmsg", "msg=\"%s\"", "%s", ZSTR_VAL(msg)); in phpdbg_handle_exception()
794 zend_string_release(msg); in phpdbg_handle_exception()
1765 zend_string *file, *msg; in phpdbg_execute_ex() local
1785msg = zval_get_string(zend_read_property(zend_get_exception_base(&zv), &zv, ZEND_STRL("message"), … in phpdbg_execute_ex()
1791 ZSTR_LEN(msg) < 80 ? (int) ZSTR_LEN(msg) : 80, ZSTR_VAL(msg)); in phpdbg_execute_ex()
1792 zend_string_release(msg); in phpdbg_execute_ex()
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()
/PHP-7.2/ext/intl/
H A DERROR.CONVENTIONS25 void intl_error_set_custom_msg(intl_error* err, char* msg, int copyMsg);
26 void intl_error_set(intl_error* err, UErrorCode code, char* msg, int copyMsg);
47 void intl_errors_set_custom_msg(intl_error* err, char* msg, int copyMsg);
49 void intl_errors_set(intl_error* err, UErrorCode code, char* msg, int copyMsg);
/PHP-7.2/sapi/apache2handler/
H A Dsapi_apache2.c306 static void php_apache_sapi_log_message(char *msg, int syslog_type_int) in php_apache_sapi_log_message() argument
349 ap_log_error(APLOG_MARK, APLOG_ERR | APLOG_STARTUP, 0, NULL, "%s", msg); in php_apache_sapi_log_message()
351 ap_log_rerror(APLOG_MARK, aplog_type, 0, ctx->r, "%s", msg); in php_apache_sapi_log_message()
355 static void php_apache_sapi_log_message_ex(char *msg, request_rec *r) in php_apache_sapi_log_message_ex() argument
358 ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, msg, r->filename); in php_apache_sapi_log_message_ex()
360 php_apache_sapi_log_message(msg, -1); in php_apache_sapi_log_message_ex()
/PHP-7.2/Zend/tests/
H A Dnowdoc_015.phpt5 function error_handler($num, $msg, $file, $line, $vars) {
H A Dcompound_assign_failure.phpt23 set_error_handler(function($type, $msg) { throw new Exception($msg); });
/PHP-7.2/ext/pdo/
H A Dpdo_dbh.c45 const char *msg; in pdo_raise_impl_error() local
63 msg = pdo_sqlstate_state_to_description(*pdo_err); in pdo_raise_impl_error()
64 if (!msg) { in pdo_raise_impl_error()
65 msg = "<<Unknown error>>"; in pdo_raise_impl_error()
69 spprintf(&message, 0, "SQLSTATE[%s]: %s: %s", *pdo_err, msg, supp); in pdo_raise_impl_error()
71 spprintf(&message, 0, "SQLSTATE[%s]: %s", *pdo_err, msg); in pdo_raise_impl_error()
104 const char *msg = "<<Unknown>>"; in pdo_handle_error() local
119 msg = pdo_sqlstate_state_to_description(*pdo_err); in pdo_handle_error()
120 if (!msg) { in pdo_handle_error()
121 msg = "<<Unknown error>>"; in pdo_handle_error()
[all …]
/PHP-7.2/Zend/
H A Dzend_ini_parser.y195 static ZEND_COLD void ini_error(const char *msg) in ini_error() argument
203 …error_buf_len = 128 + (int)strlen(msg) + (int)strlen(currently_parsed_filename); /* should be more… in ini_error()
206 …sprintf(error_buf, "%s in %s on line %d\n", msg, currently_parsed_filename, zend_ini_scanner_get_l… in ini_error()
/PHP-7.2/ext/dba/
H A Ddba_db3.c42 const char *errpfx, const char *msg) in php_dba_db3_errcall_fcn() argument
45 php_error_docref(NULL, E_NOTICE, "%s%s", errpfx?errpfx:"", msg); in php_dba_db3_errcall_fcn()
/PHP-7.2/ext/curl/tests/
H A Dbug76675.phpt40 if (false !== $info && $info['msg'] == CURLMSG_DONE) {
/PHP-7.2/win32/
H A Dsendmail.c850 static int Post(LPCSTR msg) in Post() argument
852 int len = (int)strlen(msg); in Post()
857 if (msg) in Post()
858 printf("POST: '%s'\n", msg); in Post()
863 if ((slen = send(PW32G(mail_socket), msg + index, len, 0)) < 1) in Post()
/PHP-7.2/ext/sockets/
H A Dconversions.h18 char *msg; member
/PHP-7.2/ext/imap/tests/
H A Dimap_body_basic.phpt27 // show body for msg 1
/PHP-7.2/ext/pdo_pgsql/
H A Dphp_pdo_pgsql_int.h82 …h_t *dbh, pdo_stmt_t *stmt, int errcode, const char *sqlstate, const char *msg, const char *file, …
/PHP-7.2/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.2/ext/standard/tests/file/
H A Dunlink_variation8.phpt87 $msg = "soft link";
91 $msg = "hard link";
93 echo "-- unlinking $msg $tounlink --\n";
/PHP-7.2/ext/json/
H A Djson_parser.y82 static void php_json_yyerror(php_json_parser *parser, char const *msg);
302 static void php_json_yyerror(php_json_parser *parser, char const *msg) in php_json_yyerror() argument

Completed in 58 milliseconds

12345678