Home
last modified time | relevance | path

Searched refs:abort_message (Results 1 – 9 of 9) sorted by relevance

/system/logging/liblog/include/android/
Dlog.h233 typedef void (*__android_aborter_function)(const char* abort_message);
303 void __android_log_call_aborter(const char* abort_message) __INTRODUCED_IN(30);
313 void __android_log_default_aborter(const char* abort_message) __attribute__((noreturn))
/system/core/debuggerd/handler/
Ddebuggerd_fallback.cpp86 siginfo_t* siginfo, void* abort_message) { in debuggerd_fallback_tombstone() argument
92 engrave_tombstone_ucontext(output_fd, proto_fd, reinterpret_cast<uintptr_t>(abort_message), in debuggerd_fallback_tombstone()
274 static void crash_handler(siginfo_t* info, ucontext_t* ucontext, void* abort_message) { in crash_handler() argument
298 debuggerd_fallback_tombstone(output_fd.get(), proto_fd.get(), ucontext, info, abort_message); in crash_handler()
308 void* abort_message) { in debuggerd_fallback_handler() argument
312 return crash_handler(info, ucontext, abort_message); in debuggerd_fallback_handler()
/system/logging/liblog/
Dlogger_write.cpp179 void __android_log_default_aborter(const char* abort_message) { in __android_log_default_aborter() argument
181 android_set_abort_message(abort_message); in __android_log_default_aborter()
183 UNUSED(abort_message); in __android_log_default_aborter()
194 void __android_log_call_aborter(const char* abort_message) { in __android_log_call_aborter() argument
195 aborter_function(abort_message); in __android_log_call_aborter()
/system/libbase/
Dlogging.cpp313 void DefaultAborter(const char* abort_message) { in DefaultAborter() argument
315 android_set_abort_message(abort_message); in DefaultAborter()
317 UNUSED(abort_message); in DefaultAborter()
425 __android_log_set_aborter([](const char* abort_message) { Aborter()(abort_message); }); in SetAborter() argument
/system/core/debuggerd/proto/
Dtombstone.proto43 string abort_message = 14; field
/system/core/init/
Dutil.cpp625 static void InitAborter(const char* abort_message) { in InitAborter() argument
629 android::base::DefaultAborter(abort_message); in InitAborter()
/system/core/debuggerd/libdebuggerd/
Dtombstone_proto_to_text.cpp490 if (!tombstone.abort_message().empty()) { in print_main_thread()
491 CBL("Abort message: '%s'", tombstone.abort_message().c_str()); in print_main_thread()
/system/libbase/include/android-base/
Dlogging.h130 void DefaultAborter(const char* abort_message);
/system/core/debuggerd/
Ddebuggerd_test.cpp961 TEST_F(CrasherTest, abort_message) { in TEST_F() argument