| /PHP_5_5/ext/standard/tests/mail/ |
| H A D | mail_include.inc | 94 $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_5_5/sapi/fpm/fpm/ |
| H A D | fpm_trace_mach.c | 63 char *msg = ""; local 66 msg = " It seems that master process does not have enough privileges to trace processes."; 68 zlog(ZLOG_ERROR, "task_for_pid() failed: %s (%d)%s", mach_error_string(kr), kr, msg);
|
| /PHP_5_5/sapi/milter/ |
| H A D | milter.php | 25 function milter_log($msg) 28 fwrite($GLOBALS['log'], date("[H:i:s d.m.Y]") . "\t{$msg}\n");
|
| /PHP_5_5/win32/ |
| H A D | sendmail.h | 47 static int Post(LPCSTR msg);
|
| H A D | time.c | 137 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; 164 realtimer = timeSetEvent(timeout, 100, (LPTIMECALLBACK) setitimer_timeout, (UINT) msg, repea [all...] |
| /PHP_5_5/ext/gd/libgd/ |
| H A D | gdtest.c | 14 void CompareImages (char *msg, gdImagePtr im1, gdImagePtr im2); 360 CompareImages (char *msg, gdImagePtr im1, gdImagePtr im2) argument 368 printf ("%%%s: ERROR images differ: BAD\n", msg); 372 printf ("%%%s: WARNING images differ: WARNING - Probably OK\n", msg); 376 printf ("%%%s: OK\n", msg); 382 printf ("-%s: INFO image sizes differ\n", msg); 387 printf ("-%s: INFO number of pallette entries differ %d Vs. %d\n", msg, 393 printf ("-%s: INFO actual colours of pixels differ\n", msg);
|
| /PHP_5_5/ext/imap/tests/ |
| H A D | imap_include.inc | 140 $msg = "From: foo@anywhere.com\r\n" 148 $envelope["subject"] = "Test msg $i"; 173 $msg = imap_mail_compose($envelope, $body); 176 imap_append($imap_stream, $mailbox, $msg);
|
| /PHP_5_5/ext/intl/breakiterator/ |
| H A D | rulebasedbreakiterator_methods.cpp | 65 char *msg; local 68 spprintf(&msg, 0, "rbbi_create_instance: unable to create " 71 intl_error_set_custom_msg(NULL, msg, 1 TSRMLS_CC); 72 efree(msg);
|
| H A D | breakiterator_methods.cpp | 50 char *msg; local 56 spprintf(&msg, 0, "%s: bad arguments", func_name); 57 intl_error_set(NULL, U_ILLEGAL_ARGUMENT_ERROR, msg, 1 TSRMLS_CC); 58 efree(msg); 69 spprintf(&msg, 0, "%s: error creating BreakIterator", 71 intl_error_set_custom_msg(NULL, msg, 1 TSRMLS_CC); 72 efree(msg); 199 char *msg; local 204 spprintf(&msg, 0, "%s: bad arguments", func_name); 205 intl_error_set(NULL, U_ILLEGAL_ARGUMENT_ERROR, msg, 222 char *msg; local [all...] |
| /PHP_5_5/ext/intl/collator/ |
| H A D | collator_class.h | 61 #define COLLATOR_CHECK_STATUS( co, msg ) \ 65 intl_errors_set_custom_msg( COLLATOR_ERROR_P( co ), msg, 0 TSRMLS_CC ); \
|
| /PHP_5_5/ext/intl/dateformat/ |
| H A D | dateformat_helpers.cpp | 39 char *msg; local 54 spprintf(&msg, 0, "%s: invalid value for calendar type; it must be " 59 intl_errors_set(err, U_ILLEGAL_ARGUMENT_ERROR, msg, 1 TSRMLS_CC); 60 efree(msg); 77 spprintf(&msg, 0, "%s: Found unconstructed IntlCalendar object", 79 intl_errors_set(err, U_ILLEGAL_ARGUMENT_ERROR, msg, 1 TSRMLS_CC); 80 efree(msg); 88 spprintf(&msg, 0, "%s: Invalid calendar argument; should be an integer " 90 intl_errors_set(err, U_ILLEGAL_ARGUMENT_ERROR, msg, 1 TSRMLS_CC); 91 efree(msg); [all...] |
| /PHP_5_5/ext/intl/ |
| H A D | intl_data.h | 49 #define INTL_CHECK_STATUS(err, msg) \ 53 intl_error_set_custom_msg( NULL, msg, 0 TSRMLS_CC ); \ 58 #define INTL_METHOD_CHECK_STATUS(obj, msg) \ 62 intl_errors_set_custom_msg( INTL_DATA_ERROR_P((obj)), msg, 0 TSRMLS_CC ); \ 67 #define INTL_CTOR_CHECK_STATUS(obj, msg) \ 71 intl_errors_set_custom_msg( INTL_DATA_ERROR_P((obj)), msg, 0 TSRMLS_CC ); \
|
| H A D | intl_error.c | 101 /* {{{ void intl_error_set_custom_msg( intl_error* err, char* msg, int copyMsg ) 102 * Set last error message to msg copying it if needed. 104 void intl_error_set_custom_msg( intl_error* err, char* msg, int copyMsg TSRMLS_DC ) argument 106 if( !msg ) 111 php_error_docref( NULL TSRMLS_CC, INTL_G( error_level ), "%s", msg ); 113 zend_throw_exception_ex( IntlException_ce_ptr, 0 TSRMLS_CC, "%s", msg ); 125 err->custom_error_message = copyMsg ? estrdup( msg ) : msg; 180 /* {{{ void intl_error_set( intl_error* err, UErrorCode code, char* msg, int copyMsg ) 183 void intl_error_set( intl_error* err, UErrorCode code, char* msg, in argument 193 intl_errors_set( intl_error* err, UErrorCode code, char* msg, int copyMsg TSRMLS_DC ) argument 213 intl_errors_set_custom_msg( intl_error* err, char* msg, int copyMsg TSRMLS_DC ) argument [all...] |
| H A D | intl_error.h | 38 void intl_error_set_custom_msg( intl_error* err, char* msg, int copyMsg TSRMLS_DC ); 39 void intl_error_set( intl_error* err, UErrorCode code, char* msg, int copyMsg TSRMLS_DC ); 45 void intl_errors_set_custom_msg( intl_error* err, char* msg, int copyMsg TSRMLS_DC ); 47 void intl_errors_set( intl_error* err, UErrorCode code, char* msg, int copyMsg TSRMLS_DC );
|
| /PHP_5_5/ext/intl/spoofchecker/ |
| H A D | spoofchecker_class.h | 69 #define SPOOFCHECKER_CHECK_STATUS(co, msg) \ 72 intl_errors_set_custom_msg(SPOOFCHECKER_ERROR_P(co), msg, 0 TSRMLS_CC); \
|
| /PHP_5_5/ext/intl/transliterator/ |
| H A D | transliterator_methods.c | 184 char *msg = NULL; local 187 spprintf( &msg, 0, "transliterator_create_from_rules: unable to " 190 if( msg != NULL ) 192 intl_errors_set_custom_msg( INTL_DATA_ERROR_P( to ), msg, 1 TSRMLS_CC ); local 193 efree( msg ); 392 char *msg; local 393 spprintf( &msg, 0, 397 if(msg != NULL ) 400 msg, 1 TSRMLS_CC ); local 401 efree( msg ); [all...] |
| /PHP_5_5/ext/com_dotnet/ |
| H A D | com_com.c | 225 char *werr, *msg; local 228 spprintf(&msg, 0, "Failed to create COM object `%s': %s", module_name, werr); 231 php_com_throw_exception(res, msg TSRMLS_CC); 232 efree(msg); 351 char *source = NULL, *desc = NULL, *msg = NULL; local 365 spprintf(&msg, 0, "<b>Source:</b> %s<br/><b>Description:</b> %s", 369 spprintf(&msg, 0, "Source: %s\nDescription: %s", 387 spprintf(&msg, 0, "Parameter %d: %s", arg_err, desc); 396 msg = NULL; 403 spprintf(&msg, 483 char *msg = NULL; local 638 char *msg = NULL; local 780 MSG msg; local [all...] |
| H A D | com_olechar.c | 57 char *msg = php_win32_error_to_msg(GetLastError()); local 60 "Could not convert string to unicode: `%s'", msg); 62 LocalFree(msg); 88 char *msg = php_win32_error_to_msg(GetLastError()); local 91 "Could not convert string from unicode: `%s'", msg); 93 LocalFree(msg);
|
| /PHP_5_5/ext/pdo_dblib/ |
| H A D | dblib_driver.c | 41 char *msg; local 49 msg = einfo->lastmsg; 51 msg = DBLIB_G(err).lastmsg; 54 msg = einfo->dberrstr; 58 msg, einfo->dberr, einfo->severity, stmt ? stmt->active_query_string : "");
|
| /PHP_5_5/ext/pdo_mysql/ |
| H A D | php_pdo_mysql_int.h | 42 #define PDO_DBG_INF(msg) do { if (dbg_skip_trace == FALSE) PDO_MYSQL_G(dbg)->m->log(PDO_MYSQL_G(dbg), __LINE__, __FILE__, -1, "info : ", (msg)); } while (0) 43 #define PDO_DBG_ERR(msg) do { if (dbg_skip_trace == FALSE) PDO_MYSQL_G(dbg)->m->log(PDO_MYSQL_G(dbg), __LINE__, __FILE__, -1, "error: ", (msg)); } while (0) 53 static inline void PDO_DBG_INF(char *msg) {} argument 54 static inline void PDO_DBG_ERR(char *msg) {} argument
|
| /PHP_5_5/ext/sysvmsg/ |
| H A D | php_sysvmsg.h | 36 #include <sys/msg.h>
|
| /PHP_5_5/ext/mysqlnd/ |
| H A D | mysqlnd_debug.h | 99 #define DBG_INF_EX(dbg_obj, msg) do { if (dbg_skip_trace == FALSE && (dbg_obj)) (dbg_obj)->m->log((dbg_obj), __LINE__, __FILE__, -1, "info : ", (msg)); } while (0) 100 #define DBG_ERR_EX(dbg_obj, msg) do { if (dbg_skip_trace == FALSE && (dbg_obj)) (dbg_obj)->m->log((dbg_obj), __LINE__, __FILE__, -1, "error: ", (msg)); } while (0) 165 static inline void DBG_INF_EX(MYSQLND_DEBUG * dbg_obj, const char * const msg) {} argument 166 static inline void DBG_ERR_EX(MYSQLND_DEBUG * dbg_obj, const char * const msg) {} argument 179 #define DBG_INF(msg) DBG_INF_EX(MYSQLND_G(dbg), (msg)) 180 #define DBG_ERR(msg) DBG_ERR_EX(MYSQLND_G(dbg), (msg)) 204 DBG_INF(const char * const msg) argument 205 DBG_ERR(const char * const msg) argument 215 TRACE_ALLOC_INF(const char * const msg) argument 216 TRACE_ALLOC_ERR(const char * const msg) argument [all...] |
| /PHP_5_5/ext/libxml/ |
| H A D | libxml.c | 456 static void _php_list_set_error_structure(xmlErrorPtr error, const char *msg) argument 476 error_copy.message = xmlStrdup(msg); 489 static void php_libxml_ctx_error_level(int level, void *ctx, const char *msg TSRMLS_DC) 497 php_error_docref(NULL TSRMLS_CC, level, "%s in %s, line: %d", msg, parser->input->filename, parser->input->line); 499 php_error_docref(NULL TSRMLS_CC, level, "%s in Entity, line: %d", msg, parser->input->line); 504 void php_libxml_issue_error(int level, const char *msg TSRMLS_DC) 507 _php_list_set_error_structure(NULL, msg); 509 php_error_docref(NULL TSRMLS_CC, level, "%s", msg); 513 static void php_libxml_internal_error_handler(int error_type, void *ctx, const char **msg, va_list ap) argument 520 len = vspprintf(&buf, 0, *msg, a 698 php_libxml_ctx_error(void *ctx, const char *msg, ...) argument 706 php_libxml_ctx_warning(void *ctx, const char *msg, ...) argument 721 php_libxml_error_handler(void *ctx, const char *msg, ...) argument [all...] |
| H A D | php_libxml.h | 95 PHP_LIBXML_API void php_libxml_error_handler(void *ctx, const char *msg, ...); 96 PHP_LIBXML_API void php_libxml_ctx_warning(void *ctx, const char *msg, ...); 97 PHP_LIBXML_API void php_libxml_ctx_error(void *ctx, const char *msg, ...); 100 PHP_LIBXML_API void php_libxml_issue_error(int level, const char *msg TSRMLS_DC);
|
| /PHP_5_5/ext/sockets/ |
| H A D | php_sockets.h | 76 #define PHP_SOCKET_ERROR(socket, msg, errn) \ 82 php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s [%d]: %s", msg, _err, sockets_strerror(_err TSRMLS_CC)); \
|