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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Index/
werror.c 5 #ifdef FATAL
6 void fatal(int);
7 void fatal(float);
  /art/runtime/
log_severity.h 22 const int VERBOSE = 0, DEBUG = 1, INFO = 2, WARNING = 3, ERROR = 4, FATAL = 5;
signal_set.h 30 PLOG(FATAL) << "sigemptyset failed";
36 PLOG(FATAL) << "sigaddset " << signal << " failed";
42 PLOG(FATAL) << "sigprocmask failed";
51 PLOG(FATAL) << "sigwait failed";
instruction_set.cc 37 LOG(FATAL) << "Unknown ISA " << isa;
75 LOG(FATAL) << "ISA kNone does not have alignment.";
78 LOG(FATAL) << "Unknown ISA " << isa;
111 LOG(FATAL) << "kNone has no stack overflow size";
115 LOG(FATAL) << "Unknown instruction set" << isa;
instruction_set.h 23 #include "base/logging.h" // Logging is required for FATAL in the helper functions.
97 LOG(FATAL) << "ISA kNone does not have pointer size.";
100 LOG(FATAL) << "Unknown ISA " << isa;
120 LOG(FATAL) << "ISA kNone does not have bit width.";
123 LOG(FATAL) << "Unknown ISA " << isa;
147 LOG(FATAL) << "ISA kNone does not have spills.";
150 LOG(FATAL) << "Unknown ISA " << isa;
170 LOG(FATAL) << "ISA kNone does not have spills.";
173 LOG(FATAL) << "Unknown ISA " << isa;
  /art/compiler/utils/
allocation.h 33 LOG(FATAL) << "UNREACHABLE";
40 LOG(FATAL) << "UNREACHABLE";
44 LOG(FATAL) << "UNREACHABLE";
assembler.cc 122 LOG(FATAL) << "Unknown InstructionSet: " << instruction_set;
129 UNIMPLEMENTED(FATAL);
134 UNIMPLEMENTED(FATAL);
140 UNIMPLEMENTED(FATAL);
146 UNIMPLEMENTED(FATAL);
150 UNIMPLEMENTED(FATAL);
154 UNIMPLEMENTED(FATAL);
158 UNIMPLEMENTED(FATAL);
162 UNIMPLEMENTED(FATAL);
166 UNIMPLEMENTED(FATAL);
    [all...]
  /external/ceres-solver/internal/ceres/
trust_region_strategy.cc 49 LOG(FATAL) << "Unknown trust region strategy: "
53 LOG(FATAL) << "Unknown trust region strategy: "
lapack.cc 75 LOG(FATAL) << "Ceres was built without a BLAS library.";
86 LOG(FATAL) << "Congratulations, you found a bug in Ceres."
88 << "LAPACK::dpotrf fatal error."
103 LOG(FATAL) << "Congratulations, you found a bug in Ceres."
105 << "LAPACK::dpotrs fatal error."
117 LOG(FATAL) << "Ceres was built without a LAPACK library.";
138 LOG(FATAL) << "Congratulations, you found a bug in Ceres."
140 << "LAPACK::dgels fatal error."
156 LOG(FATAL) << "Ceres was built without a LAPACK library.";
181 LOG(FATAL) << "Congratulations, you found a bug in Ceres.
    [all...]
  /external/chromium_org/net/tools/quic/test_tools/
simple_client.cc 21 LOG(FATAL) << "SimpleClient::ResetSocket is not implemented";
26 LOG(FATAL) << "SimpleClient::HalfClose is not implemented";
  /external/chromium_org/third_party/cld/base/
log_severity.h 16 const int INFO = 0, WARNING = 1, ERROR = 2, FATAL = 3, NUM_SEVERITIES = 4;
18 // DFATAL is FATAL in debug mode, ERROR in normal mode
22 #define DFATAL_LEVEL FATAL
  /external/chromium_org/rlz/lib/
assert.h 18 #define ASSERT_STRING(expr) LOG_IF(FATAL, false) << (expr)
24 LOG_IF(FATAL, false) << (expr); \
33 #define VERIFY(expr) LOG_IF(FATAL, !(expr)) << #expr
  /external/chromium_org/media/video/
video_decode_accelerator.cc 15 LOG(FATAL) << "This should only get called in the GPU process";
  /external/chromium_org/net/quic/crypto/
quic_decrypter.cc 24 LOG(FATAL) << "Unsupported algorithm: " << algorithm;
quic_encrypter.cc 24 LOG(FATAL) << "Unsupported algorithm: " << algorithm;
  /external/chromium_org/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};
87 const LogSeverity FATAL = relocation_packer::Logger::FATAL;
90 // severity is FATAL. LOG_IF(severity, predicate) does the same but only if
105 // CHECK(predicate) fails with a FATAL log message if predicate is false.
106 #define CHECK(predicate) (LOG_IF(FATAL, !(predicate)) \
110 // NOTREACHED() always fails with a FATAL log message
    [all...]
debug.cc 21 // On destruction, flush and print the strings accumulated. Abort if FATAL.
31 case FATAL: tag = "FATAL"; break;
36 if (severity_ == FATAL)
  /external/chromium_org/base/threading/
thread_restrictions.cc 38 LOG(FATAL) <<
57 LOG(FATAL) << "LazyInstance/Singleton is not allowed to be used on this "
72 LOG(FATAL) << "Waiting is not allowed to be used on this thread to prevent"
thread_local_win.cc 35 LOG(FATAL) << "Failed to TlsSetValue().";
  /external/chromium_org/base/mac/
os_crash_dumps.cc 53 DPLOG(FATAL) << "sigemptyset() failed";
55 DPLOG(FATAL) << "sigaction() failed";
  /external/chromium_org/base/process/
launch_mac.cc 39 RAW_LOG(FATAL, "Failed to look up replacement bootstrap port.");
44 RAW_LOG(FATAL, "Failed to replace bootstrap port.");
  /art/runtime/entrypoints/quick/
callee_save_frame.h 55 isa == kNone ? (LOG(FATAL) << "kNone has no frame size", 0) :
56 (LOG(FATAL) << "Unknown instruction set" << isa, 0);
67 isa == kNone ? (LOG(FATAL) << "kNone has no pointer size", 0) :
68 (LOG(FATAL) << "Unknown instruction set" << isa, 0);
  /art/runtime/gc/
gc_cause.cc 37 LOG(FATAL) << "Unreachable";
  /art/runtime/arch/
context.cc 47 UNIMPLEMENTED(FATAL);
  /art/runtime/gc/accounting/
heap_bitmap-inl.h 48 LOG(FATAL) << "Invalid object " << obj;
63 LOG(FATAL) << "Invalid object " << obj;
78 LOG(FATAL) << "Invalid object " << obj;
95 LOG(FATAL) << "Invalid object " << obj;

Completed in 562 milliseconds

1 2 3 4 5 6 7 8 91011>>