| /PHP_5_4/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_4/ext/gd/libgd/ |
| H A D | gd_png.c | 50 static void gdPngErrorHandler (png_structp png_ptr, png_const_charp msg) argument 64 php_gd_error_ex(E_WARNING, "gd-png: fatal libpng error: %s", msg);
|
| 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_4/ext/intl/idn/ |
| H A D | idn.c | 114 static int php_intl_idn_check_status(UErrorCode err, const char *msg, int mode TSRMLS_DC) argument 121 msg); 130 static inline void php_intl_bad_args(const char *msg, int mode TSRMLS_DC) argument 132 php_intl_idn_check_status(U_ILLEGAL_ARGUMENT_ERROR, msg, mode TSRMLS_CC);
|
| /PHP_5_4/ext/intl/ |
| H A D | intl_error.c | 97 /* {{{ void intl_error_set_custom_msg( intl_error* err, char* msg, int copyMsg ) 98 * Set last error message to msg copying it if needed. 100 void intl_error_set_custom_msg( intl_error* err, char* msg, int copyMsg TSRMLS_DC ) argument 102 if( !msg ) 106 php_error_docref(NULL TSRMLS_CC, INTL_G(error_level), "%s", msg); 118 err->custom_error_message = copyMsg ? estrdup( msg ) : msg; 173 /* {{{ void intl_error_set( intl_error* err, UErrorCode code, char* msg, int copyMsg ) 176 void intl_error_set( intl_error* err, UErrorCode code, char* msg, int copyMsg TSRMLS_DC ) argument 179 intl_error_set_custom_msg( err, msg, copyMs 186 intl_errors_set( intl_error* err, UErrorCode code, char* msg, int copyMsg TSRMLS_DC ) argument 206 intl_errors_set_custom_msg( intl_error* err, char* msg, int copyMsg TSRMLS_DC ) argument [all...] |
| /PHP_5_4/ext/intl/locale/ |
| H A D | locale_methods.c | 380 char* msg = NULL; local 388 spprintf(&msg , 0, "locale_get_%s : unable to parse input params", tag_name ); 389 intl_error_set( NULL, U_ILLEGAL_ARGUMENT_ERROR, msg , 1 TSRMLS_CC ); 390 efree(msg); 417 spprintf(&msg , 0, "locale_get_%s : unable to get locale %s", tag_name , tag_name ); 418 intl_error_set( NULL, status, msg , 1 TSRMLS_CC ); 419 efree(msg); 486 char* msg = NULL; local 495 spprintf(&msg , 0, "locale_get_display_%s : unable to parse input params", tag_name ); 496 intl_error_set( NULL, U_ILLEGAL_ARGUMENT_ERROR, msg , [all...] |
| /PHP_5_4/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_4/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);
|
| H A D | com_variant.c | 447 char *werr, *msg; local 450 spprintf(&msg, 0, "Variant type conversion failed: %s", werr); 453 php_com_throw_exception(res, msg TSRMLS_CC); 454 efree(msg); 1028 char *werr, *msg; local 1031 spprintf(&msg, 0, "Variant type conversion failed: %s", werr); 1034 php_com_throw_exception(res, msg TSRMLS_CC); 1035 efree(msg); 1062 char *werr, *msg; local 1065 spprintf(&msg, [all...] |
| /PHP_5_4/ext/curl/ |
| H A D | streams.c | 472 CURLMsg *msg; local 490 while ((msg = curl_multi_info_read(curlstream->multi, &msgs_left))) { 491 if (msg->data.result == CURLE_OK) { 495 php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s", curl_easy_strerror(msg->data.result)); 497 php_error_docref(NULL TSRMLS_CC, E_WARNING, "There was an error mcode=%d", msg->data.result);
|
| /PHP_5_4/ext/dba/ |
| H A D | dba_db3.c | 38 static void php_dba_db3_errcall_fcn(const char *errpfx, char *msg) argument 42 php_error_docref(NULL TSRMLS_CC, E_NOTICE, "%s%s", errpfx?errpfx:"", msg);
|
| H A D | dba_db4.c | 43 const char *errpfx, const char *msg) 53 && (!strncmp(msg, "fop_read_meta", sizeof("fop_read_meta")-1) 54 || !strncmp(msg, "BDB0004 fop_read_meta", sizeof("BDB0004 fop_read_meta")-1))) { 60 php_error_docref(NULL TSRMLS_CC, E_NOTICE, "%s%s", errpfx?errpfx:"", msg); 39 php_dba_db4_errcall_fcn( const DB_ENV *dbenv, const char *errpfx, const char *msg) argument
|
| /PHP_5_4/ext/interbase/ |
| H A D | interbase.c | 524 void _php_ibase_module_error(char *msg TSRMLS_DC, ...) /* {{{ */ 531 va_start(ap, msg); 535 vsnprintf(IBG(errmsg), MAX_ERRMSG, msg, ap); local
|
| /PHP_5_4/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_4/ext/tidy/ |
| H A D | tidy.c | 487 static void TIDY_CALL php_tidy_panic(ctmbstr msg) argument 490 php_error_docref(NULL TSRMLS_CC, E_ERROR, "Could not allocate memory for tidy! (Reason: %s)", (char *)msg);
|
| /PHP_5_4/sapi/cli/ |
| H A D | php_cli.c | 1126 zval *msg = zend_read_property(zend_exception_get_default(TSRMLS_C), EG(exception), "message", sizeof("message")-1, 0 TSRMLS_CC); local 1127 zend_printf("Exception: %s\n", Z_STRVAL_P(msg));
|
| /PHP_5_4/ext/mysqlnd/ |
| H A D | mysqlnd_debug.h | 99 #define DBG_INF_EX(dbg_obj, msg) do { if (dbg_skip_trace == FALSE) (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)->m->log((dbg_obj), __LINE__, __FILE__, -1, "error: ", (msg)); } while (0) 145 static inline void DBG_INF_EX(MYSQLND_DEBUG * dbg_obj, const char * const msg) {} argument 146 static inline void DBG_ERR_EX(MYSQLND_DEBUG * dbg_obj, const char * const msg) {} argument 159 #define DBG_INF(msg) DBG_INF_EX(MYSQLND_G(dbg), (msg)) 160 #define DBG_ERR(msg) DBG_ERR_EX(MYSQLND_G(dbg), (msg)) 172 DBG_INF(const char * const msg) argument 173 DBG_ERR(const char * const msg) argument [all...] |
| H A D | mysqlnd_ps.c | 664 char * msg; local 665 mnd_sprintf(&msg, 0, "No data supplied for %u parameter%s in prepared statement", 667 SET_STMT_ERROR(stmt, CR_PARAMS_NOT_BOUND, UNKNOWN_SQLSTATE, msg); 668 if (msg) { 669 mnd_sprintf_free(msg);
|
| /PHP_5_4/main/ |
| H A D | network.c | 116 const char *msg; member in struct:__anon2 137 for (i = 0; values[i].msg != NULL; i++) { 139 return (char *)values[i].msg;
|
| /PHP_5_4/ext/pdo_dblib/ |
| H A D | dblib_driver.c | 44 char *msg; local 52 msg = einfo->lastmsg; 54 msg = DBLIB_G(err).lastmsg; 57 msg = einfo->dberrstr; 61 msg, einfo->dberr, einfo->severity, stmt ? stmt->active_query_string : "");
|
| /PHP_5_4/ext/enchant/ |
| H A D | enchant.c | 401 char *msg; local 409 msg = enchant_broker_get_error(pbroker->pbroker); 410 if (msg) { 411 RETURN_STRING((char *)msg, 1); 902 char *msg; local 910 msg = enchant_dict_get_error(pdict->pdict); 911 if (msg) { 912 RETURN_STRING((char *)msg, 1);
|
| /PHP_5_4/sapi/apache2handler/ |
| H A D | sapi_apache2.c | 316 static void php_apache_sapi_log_message(char *msg TSRMLS_DC) 323 ap_log_error(APLOG_MARK, APLOG_ERR | APLOG_STARTUP, 0, NULL, "%s", msg); 325 ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, ctx->r, "%s", msg); 329 static void php_apache_sapi_log_message_ex(char *msg, request_rec *r TSRMLS_DC) argument 332 ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, msg, r->filename); 334 php_apache_sapi_log_message(msg TSRMLS_CC);
|
| /PHP_5_4/win32/ |
| H A D | sendmail.c | 852 static int Post(LPCSTR msg) argument 854 int len = strlen(msg); 859 if ((slen = send(sc, msg + index, len, 0)) < 1)
|
| /PHP_5_4/ext/pdo/ |
| H A D | pdo_dbh.c | 45 const char *msg; local 63 msg = pdo_sqlstate_state_to_description(*pdo_err); 64 if (!msg) { 65 msg = "<<Unknown error>>"; 69 spprintf(&message, 0, "SQLSTATE[%s]: %s: %s", *pdo_err, msg, supp); 71 spprintf(&message, 0, "SQLSTATE[%s]: %s", *pdo_err, msg); 107 const char *msg = "<<Unknown>>"; local 122 msg = pdo_sqlstate_state_to_description(*pdo_err); 123 if (!msg) { 124 msg [all...] |