Home
last modified time | relevance | path

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

/system/logging/liblog/include/android/
Dlog.h218 typedef void (*__android_aborter_function)(const char* abort_message);
288 void __android_log_call_aborter(const char* abort_message) __INTRODUCED_IN(30);
298 void __android_log_default_aborter(const char* abort_message) __attribute__((noreturn))
/system/core/debuggerd/handler/
Ddebuggerd_fallback.cpp102 siginfo_t* siginfo, void* abort_message) { in debuggerd_fallback_tombstone() argument
108 engrave_tombstone_ucontext(output_fd, proto_fd, reinterpret_cast<uintptr_t>(abort_message), in debuggerd_fallback_tombstone()
314 static void crash_handler(siginfo_t* info, ucontext_t* ucontext, void* abort_message) { in crash_handler() argument
338 debuggerd_fallback_tombstone(output_fd.get(), proto_fd.get(), ucontext, info, abort_message); in crash_handler()
348 void* abort_message) { in debuggerd_fallback_handler() argument
352 return crash_handler(info, ucontext, abort_message); in debuggerd_fallback_handler()
/system/logging/liblog/
Dlogger_write.cpp167 void __android_log_default_aborter(const char* abort_message) { in __android_log_default_aborter() argument
169 android_set_abort_message(abort_message); in __android_log_default_aborter()
171 UNUSED(abort_message); in __android_log_default_aborter()
182 void __android_log_call_aborter(const char* abort_message) { in __android_log_call_aborter() argument
183 aborter_function(abort_message); in __android_log_call_aborter()
/system/libbase/
Dlogging.cpp304 void DefaultAborter(const char* abort_message) { in DefaultAborter() argument
306 android_set_abort_message(abort_message); in DefaultAborter()
308 UNUSED(abort_message); in DefaultAborter()
416 __android_log_set_aborter([](const char* abort_message) { Aborter()(abort_message); }); in SetAborter() argument
/system/core/debuggerd/proto/
Dtombstone.proto26 string abort_message = 14; field
/system/core/debuggerd/libdebuggerd/
Dtombstone_proto_to_text.cpp324 if (!tombstone.abort_message().empty()) { in print_main_thread()
325 CBL("Abort message: '%s'", tombstone.abort_message().c_str()); in print_main_thread()
/system/core/init/
Dutil.cpp699 static void InitAborter(const char* abort_message) { in InitAborter() argument
703 android::base::DefaultAborter(abort_message); in InitAborter()
/system/libbase/include/android-base/
Dlogging.h123 void DefaultAborter(const char* abort_message);
/system/core/debuggerd/
Ddebuggerd_test.cpp938 TEST_F(CrasherTest, abort_message) { in TEST_F() argument