HomeSort by relevance Sort by last modified time
    Searched full:severity (Results 51 - 75 of 1265) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/mesa3d/src/mesa/main/
errors.c 54 #define severity_is(sev, kind) enum_is(sev, SEVERITY, kind)
140 * on all message IDs of a certain severity, then Insert() one of the
141 * previously specified IDs, giving us a known severity level, then call
142 * Control() on all message IDs of a certain severity level again.
145 * exist in any severity-specific list, so the second call will not
147 * The only entrypoint that gives a severity for a client-defined ID
151 * that an ID will either appear in none of the three severity lists,
154 * Because Insert() is the only place that will learn an ID's severity,
173 * 'source', 'type', and 'severity' are array indices like TYPE_ERROR,
178 GLuint id, int severity)
655 int source, type, severity; local
1089 severity; local
    [all...]
  /external/tcpdump/
print-syslog.c 84 uint16_t facility,severity; local
89 * severity and facility values
114 severity = pri & SYSLOG_SEVERITY_MASK;
120 tok2str(syslog_severity_values, "unknown (%u)", severity),
125 ND_PRINT((ndo, "SYSLOG, length: %u\n\tFacility %s (%u), Severity %s (%u)\n\tMsg: ",
129 tok2str(syslog_severity_values, "unknown (%u)", severity),
130 severity));
  /frameworks/compile/mclinker/include/mcld/LD/
DiagnosticEngine.h 34 * - choice the severity of a message by options
38 enum Severity {
84 MsgHandler report(uint16_t pID, Severity pSeverity);
98 State() : numArgs(0), ID(-1), severity(None), file(NULL) {}
104 severity = None;
114 Severity severity; member in struct:mcld::DiagnosticEngine::State
  /prebuilts/tools/common/m2/repository/org/apache/maven/maven-builder-support/3.3.9/
maven-builder-support-3.3.9.jar 
  /system/extras/perfprofd/quipper/base/
logging.h 21 // things to LOG(<a particular severity level>). E.g.,
103 // The supported severity levels for macros that allow you to specify one
104 // are (in increasing order of severity) INFO, WARNING, ERROR, and FATAL.
106 // Very important: logging a message at the FATAL severity level causes
109 // There is the special severity of DFATAL, which logs FATAL in debug mode,
168 #define LOG_IS_ON(severity) \
169 ((::logging::LOG_ ## severity) >= ::logging::GetMinLogLevel())
186 #define LOG_STREAM(severity) COMPACT_GOOGLE_LOG_ ## severity.stream()
188 #define LOG(severity) LAZY_STREAM(LOG_STREAM(severity), LOG_IS_ON(severity)
    [all...]
logging.cc 60 LogMessage::LogMessage(const char* file, int line, LogSeverity severity)
61 : severity_(severity), file_(file), line_(line) {
72 LogMessage::LogMessage(const char* file, int line, LogSeverity severity,
74 : severity_(severity), file_(file), line_(line) {
  /external/valgrind/docs/internals/
3_8_BUGSTATUS.txt 152 Severity: low
219 Severity: low
223 Severity: med Audience: low
240 Severity: med Audience: low
256 Severity: med Audience: low
260 Severity: high Audience: low
263 Severity: med Audience: low
267 Severity: low Audience: med
280 Severity: med Audience: low
293 Severity: high Audience: lo
    [all...]
  /packages/apps/Messaging/build/gcheckstyle/tools/java/checkstyle/
googlestyle-5.0.xml 72 <property name="severity" value="error"/>
76 <property name="severity" value="error"/>
81 <property name="severity" value="error"/>
93 <property name="severity" value="warning"/>
106 <property name="severity" value="warning"/>
122 <property name="severity" value="ignore"/>
143 <property name="severity" value="warning"/>
150 <property name="severity" value="warning"/>
163 <property name="severity" value="ignore"/>
175 <property name="severity" value="ignore"/
    [all...]
  /system/core/base/include/android-base/
logging.h 91 // Get the minimum severity level for logging.
115 // Logs a message to logcat on Android otherwise to stderr. If the severity is
119 #define LOG(severity) LOG_TO(DEFAULT, severity)
122 // stderr. If the severity is FATAL it also causes an abort.
127 #define LOG_TO(dest, severity) \
128 UNLIKELY(::android::base::severity >= ::android::base::GetMinimumLogSeverity()) && \
132 ::android::base::severity, -1).stream()
136 #define PLOG(severity) PLOG_TO(DEFAULT, severity)
    [all...]
  /bionic/tools/relocation_packer/src/
debug.cc 15 Logger::Logger(Severity severity, int level, bool predicate) {
16 severity_ = severity;
  /external/ImageMagick/MagickWand/tests/
add_first_lists.c 6 * severity >= ErrorException
13 severity; local
15 description=MagickGetException(wand,&severity);
add_index.c 6 * severity >= ErrorException
13 severity; local
15 description=MagickGetException(wand,&severity);
add_last_lists.c 6 * severity >= ErrorException
13 severity; local
15 description=MagickGetException(wand,&severity);
add_mixed.c 6 * severity >= ErrorException
13 severity; local
15 description=MagickGetException(wand,&severity);
add_mixed_lists.c 6 * severity >= ErrorException
13 severity; local
15 description=MagickGetException(wand,&severity);
add_norm_lists.c 6 * severity >= ErrorException
13 severity; local
15 description=MagickGetException(wand,&severity);
  /external/ImageMagick/www/source/wand/
sigmoidal-contrast.c 43 description=GetWandViewException(view,&severity); \
50 description=MagickGetException(wand,&severity); \
60 severity; local
  /docs/source.android.com/src/security/bulletin/
2015-09-01.jd 54 Vulnerability and Exposures ID (CVE), and their assessed severity. The <a href="{@docRoot}security/overview/updates-resources.html#severity">severity assessment</a> is based on the effect that exploiting the vulnerability would have on an
61 <th>Severity</th>
149 vulnerabilities listed in the <a href="#security_vulnerability_summary">Security Vulnerability Summary</a> above. There is a description of the issue, a severity rationale, and a table
150 with the CVE, associated bug, severity, affected versions, and date reported.
166 <p>This issue is rated as a Critical severity due to the possibility of remote
178 <th>Severity</th>
197 <p>This issue is rated as a Critical severity due to the possibility of code
209 <th>Severity</th
    [all...]
  /external/libweave/third_party/chromium/base/
logging.cc 37 const char* log_severity_name(int severity) {
38 if (severity >= 0 && severity < LOG_NUM_SEVERITIES)
39 return log_severity_names[severity];
83 bool ShouldCreateLogMessage(int severity) {
84 if (severity < g_min_log_level)
91 severity >= kAlwaysPrintErrorLevel;
131 LogMessage::LogMessage(const char* file, int line, LogSeverity severity)
132 : severity_(severity), file_(file), line_(line) {
149 LogMessage::LogMessage(const char* file, int line, LogSeverity severity,
    [all...]
  /external/ImageMagick/www/source/
core.c 34 if (exception->severity != UndefinedException)
46 MagickError(exception->severity,exception->reason,exception->description);
  /external/deqp/scripts/
no_empty_fail.rule 26 <severity>style</severity>
  /external/libxml2/python/tests/
ctxterror.py 17 def callback(arg,msg,severity,reserved):
19 err = err + "%s (%d) %s" % (arg,severity,msg)
readererr.py 21 def myErrorHandler(arg,msg,severity,locator):
23 err = err + "%s (%d) %s:%d:%s" % (arg,severity,locator.BaseURI(),locator.LineNumber(),msg)
  /external/llvm/lib/Target/AMDGPU/
AMDGPUDiagnosticInfoUnsupported.cpp 17 DiagnosticSeverity Severity)
18 : DiagnosticInfo(getKindID(), Severity),
  /libcore/dom/src/test/java/org/w3c/domts/
DOMErrorMonitor.java 57 public void assertLowerSeverity(DOMTestCase testCase, String id, int severity) {
61 if (error.getSeverity() >= severity) {

Completed in 1601 milliseconds

1 23 4 5 6 7 8 91011>>