HomeSort by relevance Sort by last modified time
    Searched refs:FATAL (Results 1 - 25 of 747) 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/
signal_set.h 30 PLOG(FATAL) << "sigemptyset failed";
36 PLOG(FATAL) << "sigaddset " << signal << " failed";
42 PLOG(FATAL) << "pthread_sigmask failed";
51 PLOG(FATAL) << "sigwait failed";
  /external/libtextclassifier/util/base/
logging_levels.h 24 FATAL = 0,
logging_raw.cc 36 case FATAL:
81 case FATAL:
82 return "FATAL";
  /external/protobuf/src/google/protobuf/stubs/
statusor.cc 39 GOOGLE_LOG(FATAL) << "Attempting to fetch value instead of handling error "
  /external/libbrillo/brillo/
syslog_logging_unittest.cc 23 EXPECT_DEATH({ LOG(FATAL) << "First Fatality!"; }, "First Fatality!");
26 // Still a fatal log message
27 EXPECT_DEATH({ LOG(FATAL) << "Second Fatality!"; }, "Second Fatality!");
unittest_utils.cc 22 PLOG(FATAL) << "Creating a pipe()";
40 PLOG(FATAL) << "Creating a socketpair()";
  /external/webrtc/webrtc/modules/audio_device/android/
audio_device_template.h 105 FATAL() << "Should never be called";
113 FATAL() << "Should never be called";
125 FATAL() << "Should never be called";
137 FATAL() << "Should never be called";
207 FATAL() << "Should never be called";
218 FATAL() << "Should never be called";
224 FATAL() << "Should never be called";
265 FATAL() << "Should never be called";
271 FATAL() << "Should never be called";
276 FATAL() << "Should never be called"
    [all...]
  /external/libchrome/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 "
  /external/ppp/pppd/plugins/pppoatm/
atmres.h 28 #define FATAL -1 /* must be -1 */
  /external/protobuf/src/google/protobuf/io/
zero_copy_stream.cc 50 GOOGLE_LOG(FATAL) << "This ZeroCopyOutputStream doesn't support aliasing. "
  /art/runtime/arch/
instruction_set.cc 37 LOG(FATAL) << "Unsupported instruction set " << isa;
40 LOG(FATAL) << "Unknown ISA " << isa;
62 LOG(FATAL) << "Unknown ISA " << isa;
126 LOG(FATAL) << "ISA kNone does not have alignment.";
129 LOG(FATAL) << "Unknown ISA " << isa;
194 LOG(FATAL) << "kNone has no stack overflow size";
197 LOG(FATAL) << "Unknown instruction set" << isa;
  /system/extras/verity/fec/
image.cpp 70 FATAL("empty file?\n");
72 FATAL("file size %" PRIu64 " is not a multiple of %u bytes\n",
110 FATAL("failed to read file %s\n", ctx->fec_filename);
128 FATAL("failed to allocate memory\n");
162 FATAL("failed to open file '%s': %s\n", fn.c_str(), strerror(errno));
180 FATAL("failed to open file '%s: %s'\n", filename.c_str(),
185 FATAL("failed to write to output: %s\n", strerror(errno));
206 FATAL("failed to allocate %u bytes\n", ctx->fec_size);
217 FATAL("failed to open file '%s': %s\n", filename.c_str(),
222 FATAL("failed to seek to header in '%s': %s\n", filename.c_str()
    [all...]
main.cpp 78 FATAL("failed to recover [%" PRIu64 ", %" PRIu64 ")\n",
128 FATAL("invalid value of %s\n", name);
131 FATAL("value of roots too large (max. %" PRIu64 ")\n", maxval);
149 FATAL("failed to open input\n");
156 FATAL("no ecc data\n");
164 FATAL("no verity data\n");
177 FATAL("invalid parameters: inplace can only used when decoding\n");
181 FATAL("failed to read input\n");
185 FATAL("failed to allocate ecc\n");
204 FATAL("failed to process input\n")
    [all...]
  /system/extras/verity/
build_verity_tree.cpp 35 #define FATAL(x...) { \
156 FATAL("failed to allocate memory for salt\n");
163 FATAL("failed to convert salt from hex\n");
168 FATAL("failed to allocate memory for salt\n");
171 FATAL("failed to convert salt to bytes\n");
187 FATAL("invalid value of verity-size\n");
190 FATAL("invalid value of verity-size\n");
211 FATAL("failed to get digest\n");
221 FATAL("failed to allocate memory for salt\n");
226 FATAL("failed to open /dev/urandom\n")
    [all...]
  /bionic/tools/relocation_packer/src/
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/libchrome/sandbox/linux/syscall_broker/
broker_policy.cc 58 RAW_LOG(FATAL, "*file_to_access should be NULL");
86 RAW_LOG(FATAL, "*file_to_open should be NULL");
  /external/webrtc/webrtc/base/
safe_conversions.h 60 FATAL();
64 FATAL();
  /art/runtime/entrypoints/quick/
callee_save_frame.h 78 isa == kNone ? (LOG(FATAL) << "kNone has no frame size", 0) :
79 (LOG(FATAL) << "Unknown instruction set" << isa, 0);
91 isa == kNone ? (LOG(FATAL) << "kNone has no pointer size", PointerSize::k32) :
92 (LOG(FATAL) << "Unknown instruction set" << isa, PointerSize::k32);
  /art/runtime/gc/
gc_cause.cc 48 LOG(FATAL) << "Unreachable";
  /art/runtime/interpreter/mterp/
mterp_stub.cc 45 UNIMPLEMENTED(art::FATAL);
  /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
  /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

Completed in 1310 milliseconds

1 2 3 4 5 6 7 8 91011>>