Home
last modified time | relevance | path

Searched refs:severity (Results 1 – 19 of 19) sorted by relevance

/PHP-5.5/ext/soap/
H A Dphp_soap.h205 #define soap_error0(severity, format) \ argument
206 php_error(severity, "SOAP-ERROR: " format)
208 #define soap_error1(severity, format, param1) \ argument
209 php_error(severity, "SOAP-ERROR: " format, param1)
211 #define soap_error2(severity, format, param1, param2) \ argument
212 php_error(severity, "SOAP-ERROR: " format, param1, param2)
214 #define soap_error3(severity, format, param1, param2, param3) \ argument
215 php_error(severity, "SOAP-ERROR: " format, param1, param2, param3)
/PHP-5.5/ext/sybase_ct/tests/
H A Dtest.inc13 // {{{ bool sybase_msg_handler(int msgnumber, int severity, int state, int line, string text)
15 function sybase_msg_handler($msgnumber, $severity, $state, $line, $text) {
19 $severity,
30 …// {{{ public static bool static_handler(int msgnumber, int severity, int state, int line, string …
32 static function static_handler($msgnumber, $severity, $state, $line, $text) {
33 return sybase_msg_handler($msgnumber, $severity, $state, $line, $text);
37 // {{{ public bool static_handler(int msgnumber, int severity, int state, int line, string text)
39 function handler($msgnumber, $severity, $state, $line, $text) {
40 return sybase_msg_handler($msgnumber, $severity, $state, $line, $text);
H A Dtest_msghandler_handled.phpt14 // {{{ bool sybase_msg_handler(int msgnumber, int severity, int state, int line, string text)
16 function user_message_handler($msgnumber, $severity, $state, $line, $text) {
60 (severity 15, procedure N/A) in %s on line %d
67 (severity 16, procedure N/A) in %s on line %d
/PHP-5.5/ext/pdo_dblib/
H A Dpdo_dblib.c89 int error_handler(DBPROCESS *dbproc, int severity, int dberr, in ZEND_GET_MODULE()
103 einfo->severity = severity; in ZEND_GET_MODULE()
134 dberr, dberrstr, severity); in ZEND_GET_MODULE()
141 int severity, char *msgtext, char *srvname, char *procname, DBUSMALLINT line) in msg_handler() argument
146 if (severity) { in msg_handler()
160 php_error_docref(NULL TSRMLS_CC, E_WARNING, "dblib message: %s (severity %d)", msgtext, severity); in msg_handler()
H A Dphp_pdo_dblib_int.h92 int error_handler(DBPROCESS *dbproc, int severity, int dberr,
96 int severity, char *msgtext, char *srvname, char *procname, DBUSMALLINT line);
102 int severity; member
H A Ddblib_driver.c61 msg, einfo->dberr, einfo->severity, stmt ? stmt->active_query_string : ""); in dblib_fetch_error()
66 add_next_index_long(info, einfo->severity); in dblib_fetch_error()
406 DBLIB_G(err).severity); in pdo_dblib_handle_factory()
/PHP-5.5/Zend/
H A Dzend_exceptions.h48 …_exception(zend_class_entry *exception_ce, const char *message, long code, int severity TSRMLS_DC);
53 ZEND_API void zend_exception_error(zval *exception, int severity TSRMLS_DC);
H A Dzend_exceptions.c253 long code = 0, severity = E_ERROR, lineno; in ZEND_METHOD() local
257 …RAMS_QUIET, argc TSRMLS_CC, "|sllslO!", &message, &message_len, &code, &severity, &filename, &file… in ZEND_METHOD()
275 …zend_update_property_long(default_exception_ce, object, "severity", sizeof("severity")-1, severity in ZEND_METHOD()
773 ZEND_ARG_INFO(0, severity)
866 …ion(zend_class_entry *exception_ce, const char *message, long code, int severity TSRMLS_DC) /* {{{… in zend_throw_error_exception()
869 …zend_update_property_long(default_exception_ce, ex, "severity", sizeof("severity")-1, severity TSR… in zend_throw_error_exception()
885 ZEND_API void zend_exception_error(zval *exception, int severity TSRMLS_DC) /* {{{ */ in zend_exception_error()
927 …zend_error_va(severity, (Z_STRLEN_P(file) > 0) ? Z_STRVAL_P(file) : NULL, Z_LVAL_P(line), "Uncaugh… in zend_exception_error()
929 zend_error(severity, "Uncaught exception '%s'", ce_exception->name); in zend_exception_error()
H A Dzend_API.c634 *severity = E_STRICT; in zend_parse_arg_impl()
643 *severity = E_WARNING; in zend_parse_arg_impl()
689 int severity = E_WARNING; in zend_parse_arg() local
698 zend_error(severity, "%s%s%s() expects parameter %d %s", in zend_parse_arg()
702 zend_error(severity, "%s%s%s() expects parameter %d to be %s, %s given", in zend_parse_arg()
707 if (severity != E_STRICT) { in zend_parse_arg()
2927 int severity; in zend_is_callable_check_func() local
2930 severity = E_STRICT; in zend_is_callable_check_func()
2934 severity = E_ERROR; in zend_is_callable_check_func()
2944 if (severity == E_ERROR) { in zend_is_callable_check_func()
[all …]
/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_children.c185 int severity = ZLOG_NOTICE; in fpm_children_bury() local
202 severity = ZLOG_WARNING; in fpm_children_bury()
223 severity = ZLOG_WARNING; in fpm_children_bury()
250 severity = ZLOG_DEBUG; in fpm_children_bury()
252 …zlog(severity, "[pool %s] child %d exited %s after %ld.%06d seconds from start", child->wp->config… in fpm_children_bury()
/PHP-5.5/main/streams/
H A Dphp_stream_context.h25 int notifycode, int severity,
88 …PAPI void php_stream_notification_notify(php_stream_context *context, int notifycode, int severity,
H A Dstreams.c2181 …PAPI void php_stream_notification_notify(php_stream_context *context, int notifycode, int severity, argument
2185 …context->notifier->func(context, notifycode, severity, xmsg, xcode, bytes_sofar, bytes_max, ptr TS…
/PHP-5.5/pear/
H A Dfetch.php9 function stream_notification_callback($notification_code, $severity, $message, $message_code, $byte… argument
/PHP-5.5/ext/standard/tests/http/
H A Dbug69337.phpt12 function stream_notification_callback($notification_code, $severity, $message, $message_code, $byte…
/PHP-5.5/ext/sybase_ct/
H A Dphp_sybase_ct.c140 ZEND_ARG_INFO(0, severity)
144 ZEND_ARG_INFO(0, severity)
425 MAKE_STD_ZVAL(severity); in _call_message_handler()
426 ZVAL_LONG(severity, srvmsg->severity); in _call_message_handler()
427 args[1] = &severity; in _call_message_handler()
458 zval_ptr_dtor(&severity); in _call_message_handler()
490 if (srvmsg->severity < SybCtG(min_server_severity)) { in _server_message_handler()
2146 long severity; in PHP_FUNCTION() local
2152 SybCtG(min_client_severity) = severity; in PHP_FUNCTION()
2161 long severity; in PHP_FUNCTION() local
[all …]
/PHP-5.5/ext/mssql/
H A Dphp_mssql.c115 ZEND_ARG_INFO(0, severity)
271 if (severity >= MS_SQL_G(min_error_severity)) { in PHP_INI_END()
272 php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s (severity %d)", dberrstr, severity); in PHP_INI_END()
284 if (severity >= MS_SQL_G(min_message_severity)) { in php_mssql_message_handler()
285 php_error_docref(NULL TSRMLS_CC, E_WARNING, "message: %s (severity %d)", msgtext, severity); in php_mssql_message_handler()
1946 long severity; local
1948 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &severity) == FAILURE) {
1952 MS_SQL_G(min_error_severity) = severity;
1961 long severity; local
1963 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &severity) == FAILURE) {
[all …]
/PHP-5.5/ext/standard/
H A Dstreamsfuncs.c878 static void user_space_stream_notifier(php_stream_context *context, int notifycode, int severity, in user_space_stream_notifier() argument
896 ZVAL_LONG(ps[1], severity); in user_space_stream_notifier()
/PHP-5.5/
H A Dphp.ini-development1320 ; Minimum server message severity to display.
1321 ; http://php.net/sybct.min-server-severity
1324 ; Minimum client message severity to display.
1325 ; http://php.net/sybct.min-client-severity
1606 ; Minimum error severity to display.
1609 ; Minimum message severity to display.
H A Dphp.ini-production1320 ; Minimum server message severity to display.
1321 ; http://php.net/sybct.min-server-severity
1324 ; Minimum client message severity to display.
1325 ; http://php.net/sybct.min-client-severity
1606 ; Minimum error severity to display.
1609 ; Minimum message severity to display.

Completed in 120 milliseconds