| /PHP_TRUNK/sapi/fpm/fpm/ |
| H A D | fpm_children.c | 185 int severity = ZLOG_NOTICE; local 202 severity = ZLOG_WARNING; 223 severity = ZLOG_WARNING; 250 severity = ZLOG_DEBUG; 252 zlog(severity, "[pool %s] child %d exited %s after %ld.%06d seconds from start", child->wp->config->name, (int) pid, buf, tv2.tv_sec, (int) tv2.tv_usec);
|
| /PHP_TRUNK/ext/mssql/ |
| H A D | php_mssql.c | 115 ZEND_ARG_INFO(0, severity) 262 static int php_mssql_error_handler(DBPROCESS *dbproc, int severity, int dberr, int oserr, char *dberrstr, char *oserrstr) argument 266 if (severity >= MS_SQL_G(min_error_severity)) { 267 php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s (severity %d)", dberrstr, severity); 275 static int php_mssql_message_handler(DBPROCESS *dbproc, DBINT msgno,int msgstate, int severity,char *msgtext,char *srvname, char *procname,DBUSMALLINT line) argument 279 if (severity >= MS_SQL_G(min_message_severity)) { 280 php_error_docref(NULL TSRMLS_CC, E_WARNING, "message: %s (severity %d)", msgtext, severity); 1937 /* {{{ proto void mssql_min_error_severity(int severity) 1941 long severity; local 1956 long severity; local [all...] |
| /PHP_TRUNK/ext/sybase_ct/ |
| H A D | php_sybase_ct.c | 140 ZEND_ARG_INFO(0, severity) 144 ZEND_ARG_INFO(0, severity) 391 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Sybase: Client message: %s (severity %ld)", errmsg->msgstring, (long)CS_SEVERITY(errmsg->msgnumber)); 414 zval *msgnumber, *severity, *state, *line, *text, *retval = NULL; local 425 MAKE_STD_ZVAL(severity); 426 ZVAL_LONG(severity, srvmsg->severity); 427 args[1] = &severity; 458 zval_ptr_dtor(&severity); 489 /* Check mininum server severity leve 2146 long severity; local 2161 long severity; local [all...] |
| /PHP_TRUNK/main/streams/ |
| H A D | streams.c | 2168 PHPAPI void php_stream_notification_notify(php_stream_context *context, int notifycode, int severity, argument 2172 context->notifier->func(context, notifycode, severity, xmsg, xcode, bytes_sofar, bytes_max, ptr TSRMLS_CC);
|
| /PHP_TRUNK/Zend/ |
| H A D | zend_exceptions.c | 221 /* {{{ proto ErrorException::__construct(string message, int code, int severity [, string filename [, int lineno [, Exception previous]]]) 226 long code = 0, severity = E_ERROR, lineno; local 230 if (zend_parse_parameters_ex(ZEND_PARSE_PARAMS_QUIET, argc TSRMLS_CC, "|sllslO!", &message, &message_len, &code, &severity, &filename, &filename_len, &lineno, &previous, default_exception_ce) == FAILURE) { 231 zend_error(E_ERROR, "Wrong parameters for ErrorException([string $exception [, long $code, [ long $severity, [ string $filename, [ long $lineno [, Exception $previous = NULL]]]]]])"); 248 zend_update_property_long(default_exception_ce, object, "severity", sizeof("severity")-1, severity TSRMLS_CC); 328 Get the exception severity */ 333 _default_exception_get_entry(getThis(), "severity", sizeof("severity") [all...] |
| H A D | zend_API.c | 305 static const char *zend_parse_arg_impl(int arg_num, zval **arg, va_list *va, const char **spec, char **error, int *severity TSRMLS_DC) /* {{{ */ 634 *severity = E_STRICT; 643 *severity = E_WARNING; 689 int severity = E_WARNING; local 691 expected_type = zend_parse_arg_impl(arg_num, arg, va, spec, &error, &severity TSRMLS_CC); 698 zend_error(severity, "%s%s%s() expects parameter %d %s", 702 zend_error(severity, "%s%s%s() expects parameter %d to be %s, %s given", 707 if (severity != E_STRICT) { 2922 int severity; local 2925 severity [all...] |
| /PHP_TRUNK/ext/pdo_dblib/ |
| H A D | pdo_dblib.c | 89 int error_handler(DBPROCESS *dbproc, int severity, int dberr, 103 einfo->severity = severity; 133 "dblib error: %d %s (severity %d)", 134 dberr, dberrstr, severity); 141 int severity, char *msgtext, char *srvname, char *procname, DBUSMALLINT line) 146 if (severity) { 160 php_error_docref(NULL TSRMLS_CC, E_WARNING, "dblib message: %s (severity %d)", msgtext, severity); 140 msg_handler(DBPROCESS *dbproc, DBINT msgno, int msgstate, int severity, char *msgtext, char *srvname, char *procname, DBUSMALLINT line) argument
|
| H A D | php_pdo_dblib_int.h | 92 int error_handler(DBPROCESS *dbproc, int severity, int dberr, 96 int severity, char *msgtext, char *srvname, char *procname, DBUSMALLINT line); 102 int severity; member in struct:__anon1
|
| /PHP_TRUNK/ext/standard/ |
| H A D | streamsfuncs.c | 874 static void user_space_stream_notifier(php_stream_context *context, int notifycode, int severity, argument 892 ZVAL_LONG(ps[1], severity);
|