HomeSort by relevance Sort by last modified time
    Searched refs:severity (Results 1 - 25 of 257) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/chromium_org/base/third_party/symbolize/glog/
raw_logging.h 6 #define RAW_LOG(severity, ...); // Do nothing.
  /build/tools/
warn.py 12 class severity: class in inherits:
22 if sev == severity.FIXMENOW:
24 if sev == severity.HIGH:
26 if sev == severity.MEDIUM:
28 if sev == severity.LOW:
30 if sev == severity.HARMLESS:
32 if sev == severity.UNKNOWN:
37 { 'category':'make', 'severity':severity.MEDIUM, 'members':[], 'option':'',
41 { 'category':'C/C++', 'severity':severity.HIGH, 'members':[], 'option':'-Wimplicit-function-declaration'
    [all...]
  /external/sonivox/arm-fm-22k/host_src/
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);
eas_report.c 144 void EAS_ReportEx (int severity, unsigned long hashCode, int serialNum, ...)
149 /* check severity level */
150 if (severity > severityLevel)
176 printf("Unrecognized error: Severity=%d; HashCode=%lu; SerialNum=%d\n", severity, hashCode, serialNum);
187 void EAS_Report (int severity, const char *fmt, ...)
191 /* check severity level */
192 if (severity > severityLevel)
217 void EAS_ReportX (int severity, const char *fmt, ...)
221 /* check severity level *
    [all...]
  /external/sonivox/arm-hybrid-22k/host_src/
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);
eas_report.c 144 void EAS_ReportEx (int severity, unsigned long hashCode, int serialNum, ...)
149 /* check severity level */
150 if (severity > severityLevel)
176 printf("Unrecognized error: Severity=%d; HashCode=%lu; SerialNum=%d\n", severity, hashCode, serialNum);
187 void EAS_Report (int severity, const char *fmt, ...)
191 /* check severity level */
192 if (severity > severityLevel)
217 void EAS_ReportX (int severity, const char *fmt, ...)
221 /* check severity level *
    [all...]
  /external/sonivox/arm-wt-22k/host_src/
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);
eas_report.c 144 void EAS_ReportEx (int severity, unsigned long hashCode, int serialNum, ...)
149 /* check severity level */
150 if (severity > severityLevel)
176 printf("Unrecognized error: Severity=%d; HashCode=%lu; SerialNum=%d\n", severity, hashCode, serialNum);
187 void EAS_Report (int severity, const char *fmt, ...)
191 /* check severity level */
192 if (severity > severityLevel)
217 void EAS_ReportX (int severity, const char *fmt, ...)
221 /* check severity level *
    [all...]
  /art/runtime/base/
logging_linux.cc 32 char severity = "VDIWEFF"[data.severity]; local
34 ProgramInvocationShortName(), severity, getpid(), ::art::GetTid(),
  /external/chromium_org/base/mac/
mac_logging.h 34 LogSeverity severity,
46 #define OSSTATUS_LOG_STREAM(severity, status) \
47 COMPACT_GOOGLE_LOG_EX_ ## severity(OSStatusLogMessage, status).stream()
52 #define OSSTATUS_LOG(severity, status) \
53 LAZY_STREAM(OSSTATUS_LOG_STREAM(severity, status), LOG_IS_ON(severity))
54 #define OSSTATUS_LOG_IF(severity, condition, status) \
55 LAZY_STREAM(OSSTATUS_LOG_STREAM(severity, status), \
56 LOG_IS_ON(severity) && (condition))
69 #define OSSTATUS_DLOG(severity, status)
    [all...]
mac_logging.cc 17 LogSeverity severity,
19 : LogMessage(file_path, line, severity),
  /external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
DOMErrorHandlerImpl.java 49 String severity = null; local
52 severity = "[Warning]";
54 severity = "[Error]";
56 severity = "[Fatal Error]";
59 System.err.println(severity + ": " + error.getMessage() + "\t");
DOMErrorImpl.java 39 // The DOMError Severity
69 * @param severity
73 public DOMErrorImpl(short severity, String message, String type) {
74 fSeverity = severity;
80 * @param severity
85 public DOMErrorImpl(short severity, String message, String type,
87 fSeverity = severity;
94 * @param severity
101 public DOMErrorImpl(short severity, String message, String type,
103 fSeverity = severity;
    [all...]
  /external/chromium_org/ash/system/user/
update_observer.h 23 virtual void OnUpdateRecommended(UpdateSeverity severity) = 0;
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
DOMErrorImpl.java 45 private final short severity; field in class:DOMErrorImpl
48 public DOMErrorImpl(short severity, String type) {
49 this.severity = severity;
54 return severity;
  /external/chromium/base/
logging.h 46 // things to LOG(<a particular severity level>). E.g.,
132 // The supported severity levels for macros that allow you to specify one
133 // are (in increasing order of severity) INFO, WARNING, ERROR, ERROR_REPORT,
136 // Very important: logging a message at the FATAL severity level causes
139 // Note the special severity of ERROR_REPORT only available/relevant in normal
141 // no error dialog for severity ERROR or below in normal mode.
143 // There is also the special severity of DFATAL, which logs FATAL in
275 typedef bool (*LogMessageHandlerFunction)(int severity,
344 #define LOG_IS_ON(severity) \
345 ((::logging::LOG_ ## severity) >= ::logging::GetMinLogLevel()
    [all...]
  /external/chromium_org/base/
logging.h 47 // things to LOG(<a particular severity level>). E.g.,
133 // The supported severity levels for macros that allow you to specify one
134 // are (in increasing order of severity) INFO, WARNING, ERROR, ERROR_REPORT,
137 // Very important: logging a message at the FATAL severity level causes
140 // Note the special severity of ERROR_REPORT only available/relevant in normal
142 // no error dialog for severity ERROR or below in normal mode.
144 // There is also the special severity of DFATAL, which logs FATAL in
302 typedef bool (*LogMessageHandlerFunction)(int severity,
373 #define LOG_IS_ON(severity) \
374 ((::logging::LOG_ ## severity) >= ::logging::GetMinLogLevel()
    [all...]
  /external/chromium_org/chrome/browser/drive/
event_logger.h 30 Event(int id, logging::LogSeverity severity, const std::string& what);
32 logging::LogSeverity severity; // Severity of the event. member in struct:drive::EventLogger::Event
41 // Logs a message and its severity.
43 void Log(logging::LogSeverity severity, const std::string& what);
event_logger.cc 13 int id, logging::LogSeverity severity, const std::string& what)
15 severity(severity),
28 void EventLogger::Log(logging::LogSeverity severity, const std::string& what) {
30 history_.push_back(Event(next_event_id_, severity, what));
  /external/chromium_org/chrome/browser/chromeos/drive/
logging.h 20 logging::LogSeverity severity, const char* format, ...) PRINTF_FORMAT(2, 3);
  /frameworks/compile/mclinker/lib/LD/
DiagnosticInfos.cpp 28 DiagnosticEngine::Severity Severity;
113 DiagnosticEngine::Severity severity = static_info->Severity; local
118 severity = DiagnosticEngine::Ignore;
128 severity = DiagnosticEngine::Error;
130 severity = DiagnosticEngine::Ignore;
134 severity = DiagnosticEngine::Error;
136 severity = DiagnosticEngine::Ignore
    [all...]
  /external/chromium/testing/gmock/src/
gmock-internal-utils.cc 108 // Returns true iff a log with the given severity is visible according
110 bool LogIsVisible(LogSeverity severity) {
120 return severity == WARNING;
124 // Prints the given message to stdout iff 'severity' >= the level
131 void Log(LogSeverity severity, const string& message,
133 if (!LogIsVisible(severity))
142 if (severity == WARNING) {
  /external/chromium_org/chrome/browser/sync_file_system/
logger.cc 33 return "Unknown Log Severity";
42 void Log(logging::LogSeverity severity,
57 ptr->Log(severity, base::StringPrintf("[%s] %s",
58 LogSeverityToString(severity),
61 // Log to console if the severity is at or above the min level.
66 if (severity < logging::GetMinLogLevel() && !VLOG_IS_ON(1))
68 logging::LogMessage(location.file_name(), location.line_number(), severity)
  /external/tcpdump/
print-syslog.c 89 u_int16_t facility,severity; local
94 * severity and facility values
128 severity = pri & SYSLOG_SEVERITY_MASK;
135 tok2str(syslog_severity_values, "unknown (%u)", severity),
140 printf("SYSLOG, length: %u\n\tFacility %s (%u), Severity %s (%u)\n\tMsg: ",
144 tok2str(syslog_severity_values, "unknown (%u)", severity),
145 severity);
  /external/chromium_org/third_party/angle/src/compiler/
Diagnostics.cpp 24 void TDiagnostics::writeInfo(Severity severity,
31 switch (severity)
62 writeInfo(severity(id), loc, message(id), text, "");

Completed in 431 milliseconds

1 2 3 4 5 6 7 8 91011