HomeSort by relevance Sort by last modified time
    Searched defs:FATAL (Results 1 - 25 of 197) sorted by null

1 2 3 4 5 6 7 8

  /external/ppp/pppd/plugins/pppoatm/
atmres.h 28 #define FATAL -1 /* must be -1 */
  /external/libtextclassifier/util/base/
logging_levels.h 24 FATAL = 0,
  /external/autotest/client/tests/monotonic_time/src/
logging.h 24 #define FATAL(err, fmt, args...) msg(MSG_FATAL, err, fmt, ##args)
  /art/libartbase/base/
logging.cc 94 static_assert(arraysize(kLogSeverityToAndroidLogPriority) == ::android::base::FATAL + 1,
125 arraysize(kLogCharacters) == static_cast<size_t>(::android::base::FATAL) + 1,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
log.py 10 FATAL = 5
20 if level not in (DEBUG, INFO, WARN, ERROR, FATAL):
26 if level in (WARN, ERROR, FATAL):
48 def fatal(self, msg, *args): member in class:Log
49 self._log(FATAL, msg, args)
57 fatal = _global_log.fatal variable
  /external/python/cpython2/Lib/distutils/
log.py 10 FATAL = 5
20 if level not in (DEBUG, INFO, WARN, ERROR, FATAL):
26 if level in (WARN, ERROR, FATAL):
48 def fatal(self, msg, *args): member in class:Log
49 self._log(FATAL, msg, args)
57 fatal = _global_log.fatal variable
  /external/python/cpython3/Lib/distutils/
log.py 10 FATAL = 5
20 if level not in (DEBUG, INFO, WARN, ERROR, FATAL):
26 if level in (WARN, ERROR, FATAL):
52 def fatal(self, msg, *args): member in class:Log
53 self._log(FATAL, msg, args)
61 fatal = _global_log.fatal variable
  /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/
log.py 10 FATAL = 5
20 if level not in (DEBUG, INFO, WARN, ERROR, FATAL):
26 if level in (WARN, ERROR, FATAL):
48 def fatal(self, msg, *args): member in class:Log
49 self._log(FATAL, msg, args)
57 fatal = _global_log.fatal variable
  /prebuilts/gdb/linux-x86/lib/python2.7/distutils/
log.py 10 FATAL = 5
20 if level not in (DEBUG, INFO, WARN, ERROR, FATAL):
26 if level in (WARN, ERROR, FATAL):
48 def fatal(self, msg, *args): member in class:Log
49 self._log(FATAL, msg, args)
57 fatal = _global_log.fatal variable
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
log.py 10 FATAL = 5
20 if level not in (DEBUG, INFO, WARN, ERROR, FATAL):
26 if level in (WARN, ERROR, FATAL):
48 def fatal(self, msg, *args): member in class:Log
49 self._log(FATAL, msg, args)
57 fatal = _global_log.fatal variable
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
log.py 10 FATAL = 5
20 if level not in (DEBUG, INFO, WARN, ERROR, FATAL):
26 if level in (WARN, ERROR, FATAL):
48 def fatal(self, msg, *args): member in class:Log
49 self._log(FATAL, msg, args)
57 fatal = _global_log.fatal variable
  /bionic/tools/relocation_packer/src/
debug.h 7 // LOG(tag) prints messages. Tags are INFO, WARNING, ERROR and FATAL.
8 // INFO prints to stdout, the others to stderr. FATAL aborts after printing.
18 // CHECK(predicate) logs a FATAL error if predicate is false.
34 enum Severity {INFO = 0, WARNING, ERROR, FATAL};
86 // severity is FATAL. LOG_IF(severity, predicate) does the same but only if
108 // CHECK(predicate) fails with a FATAL log message if predicate is false.
109 #define CHECK(predicate) (LOG_IF(FATAL, !(predicate)) \
113 // NOTREACHED() always fails with a FATAL log message.
114 #define NOTREACHED(_) (LOG(FATAL) \
  /external/honggfuzz/libcommon/
log.h 31 enum llevel_t { FATAL = 0, ERROR, WARNING, INFO, DEBUG, HELP, HELP_BOLD };
55 if (log_level >= FATAL) { \
56 logLog(FATAL, __FUNCTION__, __LINE__, false, __VA_ARGS__); \
76 if (log_level >= FATAL) { \
77 logLog(FATAL, __FUNCTION__, __LINE__, true, __VA_ARGS__); \
  /external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/
Level.java 30 <code>OFF</code>, <code>FATAL</code>, <code>ERROR</code>,
57 The <code>FATAL</code> level designates very severe error
60 final static public Level FATAL = new Level(FATAL_INT, "FATAL", 0);
142 return Level.FATAL;
173 if (s.equals("FATAL"))
174 return Level.FATAL;
Priority.java 44 * @deprecated Use {@link Level#FATAL} instead.
46 final static public Priority FATAL = new Level(FATAL_INT, "FATAL", 0);
126 return new Priority[] { Priority.FATAL, Priority.ERROR, Level.WARN, Priority.INFO, Priority.DEBUG };
  /external/tensorflow/tensorflow/examples/android/jni/object_tracking/
logging.h 49 const int FATAL = 3; // base_logging::FATAL;
  /external/tensorflow/tensorflow/python/training/
tensorboard_logging.py 42 FATAL = 'FATAL'
63 FATAL: event_pb2.LogMessage.FATAL,
72 FATAL: logging.FATAL
126 tensorboard_logging.{DEBUG, INFO, WARN, ERROR, FATAL}.
166 def fatal(message, *args): function
167 log(FATAL, message, *args)
  /external/mtpd/
mtpd.h 66 FATAL = 4,
  /external/perf_data_converter/src/quipper/mybase/base/
logging.h 24 FATAL,
74 if (level_ >= FATAL) exit(EXIT_FAILURE);
124 if (!(x)) LOG(FATAL) << #x
126 if (!(x > y)) LOG(FATAL) << #x << " > " << #y << "failed"
128 if (!(x >= y)) LOG(FATAL) << #x << " >= " << #y << "failed"
130 if (!(x <= y)) LOG(FATAL) << #x << " <= " << #y << "failed"
132 if (!(x != y)) LOG(FATAL) << #x << " != " << #y << "failed"
134 if (!(x == y)) LOG(FATAL) << #x << " == " << #y << "failed"
  /external/tensorflow/tensorflow/contrib/lite/
nnapi_delegate.cc 28 // TODO(aselle): FATAL leaves resources hanging.
29 void FATAL(const char* format, ...) {
41 FATAL("Aborting since tflite returned failure."); \
46 FATAL("Aborting since tflite returned failure."); \
105 FATAL("Unsupported type.");
214 FATAL("Concatenation does not support fused activation in NNAPI");
351 FATAL("Op code %d is currently not delegated to NNAPI", builtin);
355 FATAL("Custom operations are not supported when using NNAPI.");
  /external/v8/src/base/
logging.h 19 // The FATAL, UNREACHABLE and UNIMPLEMENTED macros are useful during
22 #define FATAL(msg) \
29 #define FATAL(msg) \
40 // CHECK dies with a fatal error if condition is not true. It is *not*
  /external/webrtc/webrtc/base/
checks.h 54 // - FATAL() aborts unconditionally.
76 // RTC_CHECK dies with a fatal error if condition is not true. It is *not*
198 #define FATAL() rtc::FatalMessage(__FILE__, __LINE__).stream()
  /frameworks/base/tools/aapt2/cmd/
Convert.cpp 296 UNIMPLEMENTED(FATAL) << "PackageID should not be necessary";
301 UNIMPLEMENTED(FATAL);
Dump.cpp 271 UNIMPLEMENTED(FATAL);
285 UNIMPLEMENTED(FATAL);
  /system/extras/verity/fec/
image.h 31 #define FATAL(x...) { \

Completed in 807 milliseconds

1 2 3 4 5 6 7 8