| /PHP_5_4/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_5_4/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_5_4/ext/pdo_dblib/ |
| H A D | pdo_dblib.c | 89 int error_handler(DBPROCESS *dbproc, int severity, int dberr, 99 einfo->severity = severity; 129 "dblib error: %d %s (severity %d)", 130 dberr, dberrstr, severity); 137 int severity, char *msgtext, char *srvname, char *procname, DBUSMALLINT line) 142 if (severity) { 156 php_error_docref(NULL TSRMLS_CC, E_WARNING, "dblib message: %s (severity %d)", msgtext, severity); 136 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 | 90 int error_handler(DBPROCESS *dbproc, int severity, int dberr, 94 int severity, char *msgtext, char *srvname, char *procname, DBUSMALLINT line); 100 int severity; member in struct:__anon148
|
| /PHP_5_4/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_5_4/Zend/ |
| 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) /* {{{ */ 618 *severity = E_STRICT; 627 *severity = E_WARNING; 673 int severity = E_WARNING; local 675 expected_type = zend_parse_arg_impl(arg_num, arg, va, spec, &error, &severity TSRMLS_CC); 682 zend_error(severity, "%s%s%s() expects parameter %d %s", 686 zend_error(severity, "%s%s%s() expects parameter %d to be %s, %s given", 691 if (severity != E_STRICT) { 2859 int severity; local 2862 severity [all...] |
| 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...] |
| /PHP_5_4/main/streams/ |
| H A D | streams.c | 2173 PHPAPI void php_stream_notification_notify(php_stream_context *context, int notifycode, int severity, argument 2177 context->notifier->func(context, notifycode, severity, xmsg, xcode, bytes_sofar, bytes_max, ptr TSRMLS_CC);
|
| /PHP_5_4/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);
|