/external/libchrome/base/mac/ |
D | mach_logging.h | 40 LogSeverity severity, 58 #define MACH_LOG_STREAM(severity, mach_err) \ argument 59 COMPACT_GOOGLE_LOG_EX_ ## severity(MachLogMessage, mach_err).stream() 64 #define MACH_LOG(severity, mach_err) \ argument 65 LAZY_STREAM(MACH_LOG_STREAM(severity, mach_err), LOG_IS_ON(severity)) 66 #define MACH_LOG_IF(severity, condition, mach_err) \ argument 67 LAZY_STREAM(MACH_LOG_STREAM(severity, mach_err), \ 68 LOG_IS_ON(severity) && (condition)) 81 #define MACH_DLOG(severity, mach_err) \ argument 82 LAZY_STREAM(MACH_LOG_STREAM(severity, mach_err), DLOG_IS_ON(severity)) [all …]
|
D | mac_logging.h | 39 LogSeverity severity, 57 #define OSSTATUS_LOG_STREAM(severity, status) \ argument 58 COMPACT_GOOGLE_LOG_EX_ ## severity(OSStatusLogMessage, status).stream() 63 #define OSSTATUS_LOG(severity, status) \ argument 64 LAZY_STREAM(OSSTATUS_LOG_STREAM(severity, status), LOG_IS_ON(severity)) 65 #define OSSTATUS_LOG_IF(severity, condition, status) \ argument 66 LAZY_STREAM(OSSTATUS_LOG_STREAM(severity, status), \ 67 LOG_IS_ON(severity) && (condition)) 80 #define OSSTATUS_DLOG(severity, status) \ argument 81 LAZY_STREAM(OSSTATUS_LOG_STREAM(severity, status), DLOG_IS_ON(severity)) [all …]
|
/external/ImageMagick/MagickWand/ |
D | wandcli-private.h | 25 #define CLIWandException(severity,tag,option) \ argument 26 (void) CLIThrowException(cli_wand,GetMagickModule(),severity,tag, \ 29 #define CLIWandExceptionArg(severity,tag,option,arg) \ argument 30 (void) CLIThrowException(cli_wand,GetMagickModule(),severity,tag, \ 38 #define CLIWandExceptionFile(severity,tag,context) \ argument 40 (void) CLIThrowException(cli_wand,GetMagickModule(),severity,tag, \ 45 #define CLIWandExceptionBreak(severity,tag,option) \ argument 46 { CLIWandException(severity,tag,option); break; } 48 #define CLIWandExceptionReturn(severity,tag,option) \ argument 49 { CLIWandException(severity,tag,option); return; } [all …]
|
D | magick-wand-private.h | 29 #define ThrowWandException(severity,tag,context) \ argument 31 (void) ThrowMagickException(wand->exception,GetMagickModule(),severity, \ 35 #define ThrowWandFatalException(severity,tag,context) \ argument 41 (void) ThrowMagickException(fatal_exception,GetMagickModule(),severity,tag, \ 46 _exit((int) (severity-FatalErrorException)+1); \
|
/external/ImageMagick/MagickCore/ |
D | exception.c | 167 exception->severity=UndefinedException; in ClearMagickException() 217 if ((p->severity >= WarningException) && (p->severity < ErrorException)) in CatchException() 218 MagickWarning(p->severity,p->reason,p->description); in CatchException() 219 if ((p->severity >= ErrorException) && in CatchException() 220 (p->severity < FatalErrorException)) in CatchException() 221 MagickError(p->severity,p->reason,p->description); in CatchException() 227 if (p->severity >= FatalErrorException) in CatchException() 228 MagickFatalError(p->severity,p->reason,p->description); in CatchException() 300 static void DefaultErrorHandler(const ExceptionType magick_unused(severity), in DefaultErrorHandler() argument 303 magick_unreferenced(severity); in DefaultErrorHandler() [all …]
|
D | exception-private.h | 29 #define ThrowBinaryException(severity,tag,context) \ argument 32 (void) ThrowMagickException(exception,GetMagickModule(),severity, \ 36 #define ThrowFatalException(severity,tag) \ argument 46 (void) ThrowMagickException(fatal_exception,GetMagickModule(),severity, \ 52 _exit((int) (severity-FatalErrorException)+1); \ 54 #define ThrowFileException(exception,severity,tag,context) \ argument 60 (void) ThrowMagickException(exception,GetMagickModule(),severity, \ 65 #define ThrowImageException(severity,tag) \ argument 67 (void) ThrowMagickException(exception,GetMagickModule(),severity, \ 71 #define ThrowReaderException(severity,tag) \ argument [all …]
|
/external/libchrome/base/ |
D | logging.h | 275 BASE_EXPORT bool ShouldCreateLogMessage(int severity); 314 typedef bool (*LogMessageHandlerFunction)(int severity, 378 #define LOG_IS_ON(severity) \ argument 379 (::logging::ShouldCreateLogMessage(::logging::LOG_##severity)) 401 #define LOG_STREAM(severity) COMPACT_GOOGLE_LOG_ ## severity.stream() argument 403 #define LOG(severity) LAZY_STREAM(LOG_STREAM(severity), LOG_IS_ON(severity)) argument 404 #define LOG_IF(severity, condition) \ argument 405 LAZY_STREAM(LOG_STREAM(severity), LOG_IS_ON(severity) && (condition)) 441 #define PLOG_STREAM(severity) \ argument 442 COMPACT_GOOGLE_LOG_EX_ ## severity(Win32ErrorLogMessage, \ [all …]
|
D | logging.cc | 92 const char* log_severity_name(int severity) { in log_severity_name() argument 93 if (severity >= 0 && severity < LOG_NUM_SEVERITIES) in log_severity_name() 94 return log_severity_names[severity]; in log_severity_name() 411 bool ShouldCreateLogMessage(int severity) { in ShouldCreateLogMessage() argument 412 if (severity < g_min_log_level) in ShouldCreateLogMessage() 419 severity >= kAlwaysPrintErrorLevel; in ShouldCreateLogMessage() 508 LogMessage::LogMessage(const char* file, int line, LogSeverity severity) in LogMessage() argument 509 : severity_(severity), file_(file), line_(line) { in LogMessage() 526 LogMessage::LogMessage(const char* file, int line, LogSeverity severity, in LogMessage() argument 528 : severity_(severity), file_(file), line_(line) { in LogMessage() [all …]
|
/external/libtextclassifier/util/base/ |
D | logging_raw.cc | 34 int GetAndroidLogLevel(LogSeverity severity) { in GetAndroidLogLevel() argument 35 switch (severity) { in GetAndroidLogLevel() 50 void LowLevelLogging(LogSeverity severity, const std::string& tag, in LowLevelLogging() argument 52 const int android_log_level = GetAndroidLogLevel(severity); in LowLevelLogging() 73 const char *LogSeverityToString(LogSeverity severity) { in LogSeverityToString() argument 74 switch (severity) { in LogSeverityToString() 89 void LowLevelLogging(LogSeverity severity, const std::string &tag, in LowLevelLogging() argument 91 fprintf(stderr, "[%s] %s : %s\n", LogSeverityToString(severity), tag.c_str(), in LowLevelLogging()
|
/external/python/cpython2/Doc/tools/ |
D | rstlint.py | 65 @checker('.py', severity=4) 79 @checker('.rst', severity=2) 106 @checker('.rst', severity=0) 120 @checker('.html', severity=2, falsepositives=True) 146 severity = 1 155 severity = int(val) 212 csev = checker.severity 213 if csev >= severity: 220 if severity > 1: 221 print 'No problems with severity >= %d found.' % severity [all …]
|
/external/sonivox/arm-wt-22k/host_src/ |
D | eas_report.c | 144 void EAS_ReportEx (int severity, unsigned long hashCode, int serialNum, ...) in EAS_ReportEx() argument 150 if (severity > severityLevel) in EAS_ReportEx() 176 …printf("Unrecognized error: Severity=%d; HashCode=%lu; SerialNum=%d\n", severity, hashCode, serial… in EAS_ReportEx() 187 void EAS_Report (int severity, const char *fmt, ...) in EAS_Report() argument 192 if (severity > severityLevel) in EAS_Report() 217 void EAS_ReportX (int severity, const char *fmt, ...) in EAS_ReportX() argument 222 if (severity > severityLevel) in EAS_ReportX() 248 void EAS_SetDebugLevel (int severity) in EAS_SetDebugLevel() argument 250 severityLevel = severity; in EAS_SetDebugLevel()
|
D | eas_report.h | 60 extern void EAS_ReportEx (int severity, unsigned long hashCode, int serialNum, ...); 65 extern void EAS_Report (int severity, const char* fmt, ...); 66 extern void EAS_ReportX (int severity, const char* fmt, ...); 70 extern void EAS_SetDebugLevel (int severity);
|
/external/google-breakpad/src/processor/ |
D | logging.h | 103 LogStream(std::ostream &stream, Severity severity, 157 #define BPLOG_LOG_IS_ON(severity) \ argument 158 ((google_breakpad::LogStream::SEVERITY_ ## severity) >= \ 162 #define BPLOG(severity) BPLOG_LAZY_STREAM(severity, BPLOG_LOG_IS_ON(severity)) argument 183 #define BPLOG_IF(severity, condition) \ argument 184 BPLOG_LAZY_STREAM(severity, ((condition) && BPLOG_LOG_IS_ON(severity)))
|
/external/libbrillo/brillo/ |
D | syslog_logging.cc | 36 static bool HandleMessage(int severity, in HandleMessage() argument 41 switch (severity) { in HandleMessage() 43 severity = kSyslogInfo; in HandleMessage() 47 severity = kSyslogWarning; in HandleMessage() 51 severity = kSyslogError; in HandleMessage() 55 severity = kSyslogCritical; in HandleMessage() 59 severity = kSyslogDebug; in HandleMessage() 71 syslog(severity, "%s", str); in HandleMessage() 74 return !s_log_to_stderr && severity != kSyslogCritical; in HandleMessage()
|
/external/mesa3d/src/mesa/state_tracker/ |
D | st_debug.c | 123 enum mesa_debug_severity severity; in st_debug_message() local 129 severity = MESA_DEBUG_SEVERITY_MEDIUM; in st_debug_message() 134 severity = MESA_DEBUG_SEVERITY_MEDIUM; in st_debug_message() 139 severity = MESA_DEBUG_SEVERITY_NOTIFICATION; in st_debug_message() 144 severity = MESA_DEBUG_SEVERITY_NOTIFICATION; in st_debug_message() 149 severity = MESA_DEBUG_SEVERITY_NOTIFICATION; in st_debug_message() 154 severity = MESA_DEBUG_SEVERITY_NOTIFICATION; in st_debug_message() 159 severity = MESA_DEBUG_SEVERITY_NOTIFICATION; in st_debug_message() 164 _mesa_gl_vdebug(st->ctx, id, source, type, severity, fmt, args); in st_debug_message()
|
/external/webrtc/talk/app/webrtc/objc/public/ |
D | RTCLogging.h | 39 extern "C" void RTCLogEx(RTCLoggingSeverity severity, NSString* logString); 40 extern "C" void RTCSetMinDebugLogLevel(RTCLoggingSeverity severity); 46 extern void RTCLogEx(RTCLoggingSeverity severity, NSString* logString); 50 extern void RTCSetMinDebugLogLevel(RTCLoggingSeverity severity); 66 #define RTCLogFormat(severity, format, ...) \ argument 69 RTCLogEx(severity, logString); \
|
/external/webrtc/webrtc/base/objc/ |
D | RTCLogging.h | 22 extern "C" void RTCLogEx(RTCLoggingSeverity severity, NSString* log_string); 23 extern "C" void RTCSetMinDebugLogLevel(RTCLoggingSeverity severity); 29 extern void RTCLogEx(RTCLoggingSeverity severity, NSString* log_string); 33 extern void RTCSetMinDebugLogLevel(RTCLoggingSeverity severity); 49 #define RTCLogFormat(severity, format, ...) \ argument 52 RTCLogEx(severity, log_string); \
|
D | RTCLogging.mm | 15 rtc::LoggingSeverity RTCGetNativeLoggingSeverity(RTCLoggingSeverity severity) { 16 switch (severity) { 28 void RTCLogEx(RTCLoggingSeverity severity, NSString* log_string) { 31 LOG_V(RTCGetNativeLoggingSeverity(severity)) << utf8_string; 35 void RTCSetMinDebugLogLevel(RTCLoggingSeverity severity) { 36 rtc::LogMessage::LogToDebug(RTCGetNativeLoggingSeverity(severity));
|
/external/mesa3d/src/mesa/main/ |
D | debug_output.c | 78 enum mesa_debug_severity severity; member 217 enum mesa_debug_severity severity, in debug_message_store() argument 236 msg->severity = severity; in debug_message_store() 247 msg->severity = MESA_DEBUG_SEVERITY_HIGH; in debug_message_store() 350 enum mesa_debug_severity severity, in debug_namespace_set_all() argument 357 if (severity == MESA_DEBUG_SEVERITY_COUNT) { in debug_namespace_set_all() 358 ns->DefaultState = (enabled) ? ((1 << severity) - 1) : 0; in debug_namespace_set_all() 364 mask = 1 << severity; in debug_namespace_set_all() 385 enum mesa_debug_severity severity) in debug_namespace_get() argument 400 return (state & (1 << severity)); in debug_namespace_get() [all …]
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/ |
D | DOMErrorImpl.java | 73 public DOMErrorImpl(short severity, String message, String type) { in DOMErrorImpl() argument 74 fSeverity = severity; in DOMErrorImpl() 85 public DOMErrorImpl(short severity, String message, String type, in DOMErrorImpl() argument 87 fSeverity = severity; in DOMErrorImpl() 101 public DOMErrorImpl(short severity, String message, String type, in DOMErrorImpl() argument 103 fSeverity = severity; in DOMErrorImpl()
|
D | DOMErrorHandlerImpl.java | 49 String severity = null; in handleError() local 52 severity = "[Warning]"; in handleError() 54 severity = "[Error]"; in handleError() 56 severity = "[Fatal Error]"; in handleError() 59 System.err.println(severity + ": " + error.getMessage() + "\t"); in handleError()
|
/external/libevent/ |
D | log.c | 59 static void _warn_helper(int severity, const char *errstr, const char *fmt, 61 static void event_log(int severity, const char *msg); 170 _warn_helper(int severity, const char *errstr, const char *fmt, va_list ap) in _warn_helper() argument 187 event_log(severity, buf); in _warn_helper() 199 event_log(int severity, const char *msg) in event_log() argument 202 log_fn(severity, msg); in event_log() 205 switch (severity) { in event_log()
|
/external/tcpdump/ |
D | print-syslog.c | 85 uint16_t facility,severity; in syslog_print() local 115 severity = pri & SYSLOG_SEVERITY_MASK; in syslog_print() 121 tok2str(syslog_severity_values, "unknown (%u)", severity), in syslog_print() 130 tok2str(syslog_severity_values, "unknown (%u)", severity), in syslog_print() 131 severity)); in syslog_print()
|
/external/llvm/test/Bindings/OCaml/ |
D | diagnostic_handler.ml | 14 match Llvm.Diagnostic.severity d with 15 | Error -> Printf.printf "Diagnostic severity is Error\n" 16 | Warning -> Printf.printf "Diagnostic severity is Warning\n" 17 | Remark -> Printf.printf "Diagnostic severity is Remark\n" 18 | Note -> Printf.printf "Diagnostic severity is Note\n" 37 * CHECK: Diagnostic severity is Error
|
/external/google-breakpad/src/testing/src/ |
D | gmock-internal-utils.cc | 110 GTEST_API_ bool LogIsVisible(LogSeverity severity) { in LogIsVisible() argument 120 return severity == kWarning; in LogIsVisible() 131 GTEST_API_ void Log(LogSeverity severity, in Log() argument 134 if (!LogIsVisible(severity)) in Log() 143 if (severity == kWarning) { in Log()
|