| /PHP_5_3/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_3/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); 1947 /* {{{ proto void mssql_min_error_severity(int severity) 1951 long severity; local 1966 long severity; local [all...] |
| /PHP_5_3/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:__anon127
|
| /PHP_5_3/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 2151 long severity; local 2166 long severity; local [all...] |
| /PHP_5_3/main/streams/ |
| H A D | streams.c | 2104 PHPAPI void php_stream_notification_notify(php_stream_context *context, int notifycode, int severity, argument 2108 context->notifier->func(context, notifycode, severity, xmsg, xcode, bytes_sofar, bytes_max, ptr TSRMLS_CC);
|
| /PHP_5_3/Zend/ |
| H A D | zend_API.c | 291 static char *zend_parse_arg_impl(int arg_num, zval **arg, va_list *va, char **spec, char **error, int *severity TSRMLS_DC) /* {{{ */ 593 *severity = E_STRICT; 602 *severity = E_WARNING; 647 int severity = E_WARNING; local 649 expected_type = zend_parse_arg_impl(arg_num, arg, va, spec, &error, &severity TSRMLS_CC); 656 zend_error(severity, "%s%s%s() expects parameter %d %s", 660 zend_error(severity, "%s%s%s() expects parameter %d to be %s, %s given", 665 if (severity != E_STRICT) { 2614 int severity; local 2617 severity [all...] |
| H A D | zend_vm_def.h | 2049 int severity; variable 2052 severity = E_STRICT; 2056 severity = E_ERROR; 2059 zend_error(severity, "Non-static method %s::%s() %s be called statically, assuming $this from incompatible context", EX(fbc)->common.scope->name, EX(fbc)->common.function_name, verb);
|
| H A D | zend_vm_execute.h | 2750 int severity; local 2753 severity = E_STRICT; 2757 severity = E_ERROR; 2760 zend_error(severity, "Non-static method %s::%s() %s be called statically, assuming $this from incompatible context", EX(fbc)->common.scope->name, EX(fbc)->common.function_name, verb); 3327 int severity; local 3330 severity = E_STRICT; 3334 severity = E_ERROR; 3337 zend_error(severity, "Non-static method %s::%s() %s be called statically, assuming $this from incompatible context", EX(fbc)->common.scope->name, EX(fbc)->common.function_name, verb); 3796 int severity; local 3799 severity 4021 int severity; local 4458 int severity; local 10558 int severity; local 12371 int severity; local 14176 int severity; local 15075 int severity; local 16571 int severity; local [all...] |
| H A D | zend_exceptions.c | 208 /* {{{ proto ErrorException::__construct(string message, int code, int severity [, string filename [, int lineno [, Exception previous]]]) 213 long code = 0, severity = E_ERROR, lineno; local 217 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) { 218 zend_error(E_ERROR, "Wrong parameters for ErrorException([string $exception [, long $code, [ long $severity, [ string $filename, [ long $lineno [, Exception $previous = NULL]]]]]])"); 235 zend_update_property_long(default_exception_ce, object, "severity", sizeof("severity")-1, severity TSRMLS_CC); 315 Get the exception severity */ 320 _default_exception_get_entry(getThis(), "severity", sizeof("severity") [all...] |
| /PHP_5_3/ext/standard/ |
| H A D | streamsfuncs.c | 867 static void user_space_stream_notifier(php_stream_context *context, int notifycode, int severity, argument 885 ZVAL_LONG(ps[1], severity);
|