Home
last modified time | relevance | path

Searched refs:msg (Results 1 – 25 of 140) sorted by last modified time

123456

/PHP-5.5/win32/
H A Dsendmail.c853 static int Post(LPCSTR msg) in Post() argument
855 int len = strlen(msg); in Post()
860 if ((slen = send(sc, msg + index, len, 0)) < 1) in Post()
H A Dsendmail.h47 static int Post(LPCSTR msg);
H A Dtime.c137 struct timer_msg *msg = (struct timer_msg *) info;
139 if (msg) {
140 raise((int) msg->signal);
141 PostThreadMessage(msg->threadid,
142 WM_NOTIFY, msg->signal, 0);
143 free(msg);
156 struct timer_msg *msg = malloc(sizeof(struct timer_msg));
157 msg->threadid = GetCurrentThreadId();
163 msg->signal = SIGALRM;
167 msg->signal = SIGVTALRM;
[all …]
/PHP-5.5/win32/build/
H A Dconfutils.js2081 function MESSAGE(msg) argument
2083 STDOUT.WriteLine("" + msg);
2086 function ERROR(msg) argument
2088 STDERR.WriteLine("ERROR: " + msg);
2092 function WARNING(msg) argument
2094 STDERR.WriteLine("WARNING: " + msg);
H A Dphpize.js.in35 function ERROR(msg) argument
37 STDERR.WriteLine("ERROR: " + msg);
/PHP-5.5/tests/classes/
H A Dctor_failure.phpt8 function __construct($msg) {
9 echo __METHOD__ . "($msg)\n";
10 throw new Exception($msg);
/PHP-5.5/
H A Dserver-tests.php596 function writemsg($msg) { argument
598 echo $msg;
/PHP-5.5/sapi/milter/
H A Dmilter.php25 function milter_log($msg) argument
28 fwrite($GLOBALS['log'], date("[H:i:s d.m.Y]") . "\t{$msg}\n");
/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_trace_mach.c63 char *msg = ""; in fpm_trace_ready() local
66 msg = " It seems that master process does not have enough privileges to trace processes."; in fpm_trace_ready()
68 zlog(ZLOG_ERROR, "task_for_pid() failed: %s (%d)%s", mach_error_string(kr), kr, msg); in fpm_trace_ready()
H A Dfpm_main.c343 const char* msg; member
449 if (err->msg) { in sapi_cgi_send_headers()
450 …n = slprintf(buf, sizeof(buf), "Status: %d %s\r\n", SG(sapi_headers).http_response_code, err->msg); in sapi_cgi_send_headers()
/PHP-5.5/sapi/cli/
H A Dphp_cli.c1132 …zval *msg = zend_read_property(zend_exception_get_default(TSRMLS_C), EG(exception), "message", siz… in do_cli() local
1133 zend_printf("Exception: %s\n", Z_STRVAL_P(msg)); in do_cli()
H A Dphp_cli_server.c810 static void sapi_cli_server_log_message(char *msg TSRMLS_DC) /* {{{ */ in sapi_cli_server_log_message()
824 fprintf(stderr, "[%s] %s\n", buf, msg); in sapi_cli_server_log_message()
/PHP-5.5/sapi/cgi/
H A Dcgi_main.c352 const char* msg; member
458 if (err->msg) { in sapi_cgi_send_headers()
459 …n = slprintf(buf, sizeof(buf), "Status: %d %s\r\n", SG(sapi_headers).http_response_code, err->msg); in sapi_cgi_send_headers()
/PHP-5.5/sapi/apache2filter/
H A Dsapi_apache2.c285 static void php_apache_sapi_log_message(char *msg TSRMLS_DC) in php_apache_sapi_log_message()
292 ap_log_error(APLOG_MARK, APLOG_ERR | APLOG_STARTUP, 0, NULL, "%s", msg); in php_apache_sapi_log_message()
295 ap_log_error(APLOG_MARK, APLOG_ERR, 0, ctx->r->server, "%s", msg); in php_apache_sapi_log_message()
/PHP-5.5/sapi/apache2handler/
H A Dsapi_apache2.c316 static void php_apache_sapi_log_message(char *msg TSRMLS_DC) in php_apache_sapi_log_message()
323 ap_log_error(APLOG_MARK, APLOG_ERR | APLOG_STARTUP, 0, NULL, "%s", msg); in php_apache_sapi_log_message()
325 ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, ctx->r, "%s", msg); in php_apache_sapi_log_message()
329 static void php_apache_sapi_log_message_ex(char *msg, request_rec *r TSRMLS_DC) in php_apache_sapi_log_message_ex() argument
332 ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, msg, r->filename); in php_apache_sapi_log_message_ex()
334 php_apache_sapi_log_message(msg TSRMLS_CC); in php_apache_sapi_log_message_ex()
/PHP-5.5/main/streams/
H A Dstreams.c176 char *msg; in php_stream_display_wrapper_errors() local
206 msg = emalloc(l + 1); in php_stream_display_wrapper_errors()
207 msg[0] = '\0'; in php_stream_display_wrapper_errors()
211 strcat(msg, *err_buf_p); in php_stream_display_wrapper_errors()
213 strcat(msg, br); in php_stream_display_wrapper_errors()
220 msg = strerror(errno); /* TODO: not ts on linux */ in php_stream_display_wrapper_errors()
222 msg = "operation failed"; in php_stream_display_wrapper_errors()
226 msg = "no suitable wrapper could be found"; in php_stream_display_wrapper_errors()
230 php_error_docref1(NULL TSRMLS_CC, tmp, E_WARNING, "%s: %s", caption, msg); in php_stream_display_wrapper_errors()
233 efree(msg); in php_stream_display_wrapper_errors()
/PHP-5.5/main/
H A Dnetwork.c119 const char *msg; in php_gai_strerror() member
140 for (i = 0; values[i].msg != NULL; i++) { in php_gai_strerror()
142 return (char *)values[i].msg; in php_gai_strerror()
/PHP-5.5/ext/xml/
H A Dxml.mak17 .SUFFIXES: .nlm .lib .obj .cpp .c .msg .mlc .mdb .xdc .d
/PHP-5.5/ext/tidy/
H A Dtidy.c487 static void TIDY_CALL php_tidy_panic(ctmbstr msg) in php_tidy_panic() argument
490 …r_docref(NULL TSRMLS_CC, E_ERROR, "Could not allocate memory for tidy! (Reason: %s)", (char *)msg); in php_tidy_panic()
/PHP-5.5/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-5.5/ext/sysvmsg/tests/
H A D002.phpt12 var_dump($res = msg_receive ($queue, 1, $msg_type, 16384, $msg, true, 0, $msg_error));
H A D005.phpt29 var_dump(msg_receive($q, 0, $null, 1, $msg, true, 0, $errno));
32 var_dump(msg_receive($q, 0, $null, 0, $msg));
H A D006.phpt16 unset($msg);
17 var_dump(msg_receive($queue, 1, $msg_type, 1024, $msg, false, MSG_IPC_NOWAIT));
19 var_dump($elem == $msg);
20 var_dump($elem === $msg);
/PHP-5.5/ext/standard/tests/mail/
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_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);

Completed in 75 milliseconds

123456