HomeSort by relevance Sort by last modified time
    Searched refs:FATAL (Results 51 - 75 of 747) sorted by null

1 23 4 5 6 7 8 91011>>

  /system/libhidl/transport/allocator/1.0/default/
service.cpp 24 LOG(FATAL) << "Unable to register allocator service: " << status;
  /art/compiler/optimizing/
code_generator_vector_arm_vixl.cc 47 LOG(FATAL) << "Unsupported SIMD type";
71 LOG(FATAL) << "Unsupported SIMD type";
77 LOG(FATAL) << "No SIMD for " << instruction->GetId();
81 LOG(FATAL) << "No SIMD for " << instruction->GetId();
85 LOG(FATAL) << "No SIMD for " << instruction->GetId();
89 LOG(FATAL) << "No SIMD for " << instruction->GetId();
110 LOG(FATAL) << "Unsupported SIMD type";
120 LOG(FATAL) << "No SIMD for " << instruction->GetId();
146 LOG(FATAL) << "Unsupported SIMD type";
174 LOG(FATAL) << "Unsupported SIMD type"
    [all...]
code_generator_vector_arm64.cc 62 LOG(FATAL) << "Unsupported SIMD type";
123 LOG(FATAL) << "Unsupported SIMD type";
129 LOG(FATAL) << "No SIMD for " << instruction->GetId();
133 LOG(FATAL) << "No SIMD for " << instruction->GetId();
137 LOG(FATAL) << "No SIMD for " << instruction->GetId();
141 LOG(FATAL) << "No SIMD for " << instruction->GetId();
165 LOG(FATAL) << "Unsupported SIMD type";
184 LOG(FATAL) << "Unsupported SIMD type";
223 LOG(FATAL) << "Unsupported SIMD type";
263 LOG(FATAL) << "Unsupported SIMD type"
    [all...]
  /art/compiler/utils/
jni_macro_assembler.cc 76 LOG(FATAL) << "Unknown/unsupported 4B InstructionSet: " << instruction_set;
111 LOG(FATAL) << "Unknown/unsupported 8B InstructionSet: " << instruction_set;
  /art/runtime/
thread_linux.cc 34 PLOG(FATAL) << "sigaltstack failed";
48 LOG(FATAL) << "Invalid use of alternate signal stack on Android";
primitive.h 90 LOG(FATAL) << "Invalid type " << static_cast<int>(type);
108 LOG(FATAL) << "Invalid type " << static_cast<int>(type);
134 LOG(FATAL) << "Primitive char conversion on invalid type " << static_cast<int>(type);
230 LOG(FATAL) << "non integral type";
250 LOG(FATAL) << "non integral type";
  /cts/hostsidetests/jvmti/base/jni/
cts_agent.cpp 49 LOG(FATAL) << "Could not get shared jvmtiEnv";
64 LOG(FATAL) << "Could not get shared jvmtiEnv";
  /external/minijail/examples/
drop_privs.cpp 37 PLOG(FATAL) << "getgroups(0)";
47 PLOG(FATAL) << "getgroups(nsupp_groups)";
  /external/protobuf/src/google/protobuf/compiler/
code_generator.cc 55 GOOGLE_LOG(FATAL) << "This GeneratorContext does not support insertion.";
61 GOOGLE_LOG(FATAL) << "This GeneratorContext does not support ListParsedFiles";
  /external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/
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 };
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;
  /system/connectivity/wifilogd/
main_loop.cpp 47 LOG(FATAL) << "Failed to get control socket: " << std::strerror(errno);
83 LOG(FATAL) << "Unexpected error: " << std::strerror(err);
  /system/core/base/
logging_test.cpp 111 static_assert(android::base::severity < android::base::FATAL, "Bad input"); \
113 i <= static_cast<size_t>(android::base::FATAL); \
140 CHECK_WOULD_LOG_ENABLED(FATAL);
198 static_assert(arraysize(log_characters) - 1 == android::base::FATAL + 1,
228 android::base::ScopedLogSeverity sls1(android::base::FATAL); \
234 android::base::ScopedLogSeverity sls1(android::base::FATAL); \
308 android::base::ScopedLogSeverity sls1(android::base::FATAL); \
314 android::base::ScopedLogSeverity sls1(android::base::FATAL); \
335 ASSERT_DEATH({SuppressAbortUI(); LOG(FATAL) << "foobar";}, "foobar");
336 ASSERT_DEATH({SuppressAbortUI(); LOG(::android::base::FATAL) << "foobar";}, "foobar")
    [all...]
  /external/mtpd/
mtpd.c 113 log_print(FATAL, "Cannot get control socket");
124 log_print(FATAL, "Cannot get argument length");
139 log_print(FATAL, "Cannot get argument value");
170 log_print(FATAL, "Pipe() %s", strerror(errno));
194 log_print(FATAL, "Poll() %s", strerror(errno));
277 log_print(FATAL, "Getaddrinfo() %s", (error == EAI_SYSTEM) ?
295 log_print(FATAL, "Connect() %s", strerror(errno));
319 log_print(FATAL, "Fork() %s", strerror(errno));
354 log_print(FATAL, "Exec() %s", strerror(errno));
355 exit(1); /* Pretending a fatal error in pppd. *
    [all...]
mtpd.h 66 FATAL = 4,
  /system/core/base/include/android-base/
logging.h 76 FATAL,
164 using ::android::base::FATAL; \
169 // LogMessage's destructor that will abort on FATAL severity.
179 // Note to the static analyzer that we always execute FATAL logs in practice.
180 #define MUST_LOG_MESSAGE(severity) (SEVERITY_LAMBDA(severity) == ::android::base::FATAL)
210 // FATAL it also causes an abort. For example:
212 // LOG(FATAL) << "We didn't expect to reach here";
220 ABORT_AFTER_LOG_EXPR_IF((SEVERITY_LAMBDA(severity)) == ::android::base::FATAL, true) && \
224 // stderr. If the severity is FATAL it also causes an abort.
244 // Check whether condition x holds and LOG(FATAL) if not. The value of th
    [all...]
  /art/compiler/linker/
relative_patcher.cc 68 LOG(FATAL) << "Unexpected relative call patch.";
75 LOG(FATAL) << "Unexpected relative dex cache array patch.";
81 LOG(FATAL) << "Unexpected baker read barrier branch patch.";
  /art/test/ti-agent/
jvmti_helper.cc 35 LOG(FATAL) << "Unable to get error name for " << error;
37 LOG(FATAL) << "Unexpected error: " << error_name;
170 LOG(FATAL) << "Unexpected error type " << static_cast<int>(rhs);
  /bionic/tools/relocation_packer/src/
debug_unittest.cc 40 LOG_IF(FATAL, false) << "FATAL log message, SHOULD NOT PRINT";
101 TEST(DebugDeathTest, Fatal) {
104 EXPECT_DEATH(LOG(FATAL) << "FATAL log message", "FATAL: FATAL log message");
106 LOG_IF(FATAL, true) << "FATAL log message", "FATAL: FATAL log message")
    [all...]
  /external/protobuf/src/google/protobuf/
message.cc 158 GOOGLE_LOG(FATAL) << "Message class \"" << GetDescriptor()->full_name()
237 GOOGLE_LOG(FATAL) << "Unimplemented EnumValue API.";
243 GOOGLE_LOG(FATAL) << "Unimplemented EnumValue API.";
248 GOOGLE_LOG(FATAL) << "Unimplemented EnumValue API.";
254 GOOGLE_LOG(FATAL) << "Unimplemented EnumValue API.";
259 GOOGLE_LOG(FATAL) << "Unimplemented EnumValue API.";
265 GOOGLE_LOG(FATAL) << "Unimplemented Map Reflection API.";
273 GOOGLE_LOG(FATAL) << "Unimplemented Map Reflection API.";
333 GOOGLE_LOG(FATAL) << "File is already registered: " << file;
411 GOOGLE_LOG(FATAL) << "Not implemented."
    [all...]
  /system/connectivity/wificond/tests/
shell_utils.cpp 62 LOG(FATAL) << "Failed to create pipe";
70 LOG(FATAL) << "Failed to fork child for shell command: " << shell_command;
80 LOG(FATAL) << "exec() of child failed " << strerror(errno);
  /system/update_engine/payload_generator/
generate_delta_main.cc 64 LOG_IF(FATAL, !parsing_successful)
67 LOG_IF(FATAL, size != (2048 / 8)) <<
111 LOG_IF(FATAL, in_file.empty())
113 LOG_IF(FATAL, out_hash_file.empty())
146 LOG_IF(FATAL, in_file.empty())
148 LOG_IF(FATAL, out_file.empty())
150 LOG_IF(FATAL, payload_signature_file.empty())
171 LOG_IF(FATAL, in_file.empty())
173 LOG_IF(FATAL, public_key.empty())
187 LOG_IF(FATAL, old_rootfs.empty()
    [all...]
  /art/runtime/entrypoints/quick/
quick_entrypoints_enum.h 50 LOG(FATAL) << "Unexpected trampoline " << static_cast<int>(trampoline);
  /external/autotest/client/tests/monotonic_time/src/
logging.h 24 #define FATAL(err, fmt, args...) msg(MSG_FATAL, err, fmt, ##args)
  /external/libchrome/base/mac/
mach_logging.h 78 LAZY_STREAM(MACH_LOG_STREAM(FATAL, mach_err), !(condition)) \
95 LAZY_STREAM(MACH_LOG_STREAM(FATAL, mach_err), \
143 LAZY_STREAM(BOOTSTRAP_LOG_STREAM(FATAL, bootstrap_err), !(condition)) \
161 LAZY_STREAM(BOOTSTRAP_LOG_STREAM(FATAL, bootstrap_err), \

Completed in 519 milliseconds

1 23 4 5 6 7 8 91011>>