Searched refs:severity (Results 1 - 25 of 201) sorted by relevance

123456789

/external/chromium_org/base/third_party/symbolize/glog/
H A Draw_logging.h6 #define RAW_LOG(severity, ...); // Do nothing.
/external/sonivox/arm-fm-22k/host_src/
H A Deas_report.h60 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);
H A Deas_report.c144 void EAS_ReportEx (int severity, unsigned long hashCode, int serialNum, ...) argument
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, ...) argument
191 /* check severity level */
192 if (severity > severityLevel)
217 void EAS_ReportX (int severity, const char *fmt, ...) argument
221 /* check severity level */
222 if (severity > severityLeve
248 EAS_SetDebugLevel(int severity) argument
[all...]
/external/sonivox/arm-hybrid-22k/host_src/
H A Deas_report.h60 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);
H A Deas_report.c144 void EAS_ReportEx (int severity, unsigned long hashCode, int serialNum, ...) argument
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, ...) argument
191 /* check severity level */
192 if (severity > severityLevel)
217 void EAS_ReportX (int severity, const char *fmt, ...) argument
221 /* check severity level */
222 if (severity > severityLeve
248 EAS_SetDebugLevel(int severity) argument
[all...]
/external/sonivox/arm-wt-22k/host_src/
H A Deas_report.h60 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);
H A Deas_report.c144 void EAS_ReportEx (int severity, unsigned long hashCode, int serialNum, ...) argument
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, ...) argument
191 /* check severity level */
192 if (severity > severityLevel)
217 void EAS_ReportX (int severity, const char *fmt, ...) argument
221 /* check severity level */
222 if (severity > severityLeve
248 EAS_SetDebugLevel(int severity) argument
[all...]
/external/chromium_org/base/mac/
H A Dmach_logging.h40 LogSeverity severity,
58 #define MACH_LOG_STREAM(severity, mach_err) \
59 COMPACT_GOOGLE_LOG_EX_ ## severity(MachLogMessage, mach_err).stream()
64 #define MACH_LOG(severity, mach_err) \
65 LAZY_STREAM(MACH_LOG_STREAM(severity, mach_err), LOG_IS_ON(severity))
66 #define MACH_LOG_IF(severity, condition, mach_err) \
67 LAZY_STREAM(MACH_LOG_STREAM(severity, mach_err), \
68 LOG_IS_ON(severity) && (condition))
81 #define MACH_DLOG(severity, mach_er
[all...]
H A Dmac_logging.h36 LogSeverity severity,
54 #define OSSTATUS_LOG_STREAM(severity, status) \
55 COMPACT_GOOGLE_LOG_EX_ ## severity(OSStatusLogMessage, status).stream()
60 #define OSSTATUS_LOG(severity, status) \
61 LAZY_STREAM(OSSTATUS_LOG_STREAM(severity, status), LOG_IS_ON(severity))
62 #define OSSTATUS_LOG_IF(severity, condition, status) \
63 LAZY_STREAM(OSSTATUS_LOG_STREAM(severity, status), \
64 LOG_IS_ON(severity) && (condition))
77 #define OSSTATUS_DLOG(severity, statu
[all...]
H A Dmac_logging.cc17 LogSeverity severity,
19 : LogMessage(file_path, line, severity),
15 OSStatusLogMessage(const char* file_path, int line, LogSeverity severity, OSStatus status) argument
H A Dmach_logging.cc34 LogSeverity severity,
36 : LogMessage(file_path, line, severity),
50 LogSeverity severity,
52 : LogMessage(file_path, line, severity),
32 MachLogMessage(const char* file_path, int line, LogSeverity severity, mach_error_t mach_err) argument
48 BootstrapLogMessage(const char* file_path, int line, LogSeverity severity, kern_return_t bootstrap_err) argument
/external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
H A DDOMErrorHandlerImpl.java49 String severity = null;
52 severity = "[Warning]";
54 severity = "[Error]";
56 severity = "[Fatal Error]";
59 System.err.println(severity + ": " + error.getMessage() + "\t");
H A DDOMErrorImpl.java69 * @param severity
73 public DOMErrorImpl(short severity, String message, String type) { argument
74 fSeverity = severity;
80 * @param severity
85 public DOMErrorImpl(short severity, String message, String type, argument
87 fSeverity = severity;
94 * @param severity
101 public DOMErrorImpl(short severity, String message, String type, argument
103 fSeverity = severity;
113 * The severity o
[all...]
/external/qemu/android/base/
H A DLog.h22 // The list of severity levels used for logging.
44 // currently enabled. |severity| must be a log level without the LOG_
51 #define LOG_IS_ON(severity) \
52 ((::android::base::LOG_ ## severity) >= \
63 // LOG(severity) << some_stuff << some_more_stuff;
65 // This means LOG(severity) should expand to something that can take
80 // Send a message to the log if |severity| is higher or equal to the current
81 // logging severity level. This macro expands to an expression that acts as
90 // if the severity level is disabled.
93 #define LOG(severity) \
240 LogSeverity severity; member in struct:android::base::LogParams
[all...]
/external/chromium_org/chrome/browser/drive/
H A Devent_logger.cc13 int id, logging::LogSeverity severity, const std::string& what)
15 severity(severity),
28 void EventLogger::LogRawString(logging::LogSeverity severity, argument
31 history_.push_back(Event(next_event_id_, severity, what));
37 void EventLogger::Log(logging::LogSeverity severity, const char* format, ...) { argument
46 LogRawString(severity, what);
12 Event( int id, logging::LogSeverity severity, const std::string& what) argument
H A Devent_logger.h30 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 LogRawString(logging::LogSeverity severity, const std::string& what);
47 void Log(logging::LogSeverity severity, const char* format, ...)
/external/chromium_org/ash/system/user/
H A Dupdate_observer.h23 virtual void OnUpdateRecommended(UpdateSeverity severity) = 0;
/external/chromium_org/net/test/
H A Dscoped_mock_log.h70 MOCK_METHOD5(Log, bool(int severity,
82 static bool LogMessageHandler(int severity,
H A Dscoped_mock_log.cc49 bool ScopedMockLog::LogMessageHandler(int severity, argument
54 return g_instance_->Log(severity, file, line, message_start, str);
/external/chromium_org/build/android/lint/
H A Dsuppress.py44 _Issue = collections.namedtuple('Issue', ['severity', 'paths'])
53 severity = issue.getAttribute('severity')
57 issues_dict[issue_id] = _Issue(severity, paths)
66 severity = issue.attributes['severity'].value
69 issues_dict[issue_id] = _Issue(severity, set())
78 severity = issues_dict[issue_id].severity
82 if severity
[all...]
/external/chromium_org/chrome/browser/sync_file_system/
H A Dlogger.cc42 void Log(logging::LogSeverity severity, argument
57 ptr->LogRawString(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/
H A Dprint-syslog.c88 u_int16_t facility,severity; local
93 * severity and facility values
118 severity = pri & SYSLOG_SEVERITY_MASK;
124 tok2str(syslog_severity_values, "unknown (%u)", severity),
133 tok2str(syslog_severity_values, "unknown (%u)", severity),
134 severity);
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DDiagnostics.cpp24 void TDiagnostics::writeInfo(Severity severity, argument
31 switch (severity)
62 writeInfo(severity(id), loc, message(id), text, "");
/external/chromium_org/third_party/cld/base/
H A Dlogging.h32 // things to LOG(<a particular severity level>). E.g.,
143 // The supported severity levels for macros that allow you to specify one
144 // are (in increasing order of severity) INFO, WARNING, ERROR, and FATAL.
145 // Note that messages of a given severity are logged not only in the
146 // logfile for that severity, but also in all logfiles of lower severity.
147 // E.g., a message of severity FATAL will be logged to the logfiles of
148 // severity FATAL, ERROR, WARNING, and INFO.
150 // There is also the special severity of DFATAL, which logs FATAL in
153 // Very important: logging a message at the FATAL severity leve
1060 LogAtLevel(int const severity, string const &msg) argument
[all...]
/external/chromium_org/base/
H A Dlogging.h47 // things to LOG(<a particular severity level>). E.g.,
129 // The supported severity levels for macros that allow you to specify one
130 // are (in increasing order of severity) INFO, WARNING, ERROR, and FATAL.
132 // Very important: logging a message at the FATAL severity level causes
135 // There is the special severity of DFATAL, which logs FATAL in debug mode,
278 typedef bool (*LogMessageHandlerFunction)(int severity,
342 #define LOG_IS_ON(severity) \
343 ((::logging::LOG_ ## severity) >= ::logging::GetMinLogLevel())
365 #define LOG_STREAM(severity) COMPACT_GOOGLE_LOG_ ## severity
[all...]

Completed in 357 milliseconds

123456789