Searched refs:abort_message (Results 1 – 9 of 9) sorted by relevance
/system/logging/liblog/include/android/ |
D | log.h | 233 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/ |
D | debuggerd_fallback.cpp | 86 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/ |
D | logger_write.cpp | 179 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/ |
D | logging.cpp | 313 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/ |
D | tombstone.proto | 43 string abort_message = 14; field
|
/system/core/init/ |
D | util.cpp | 625 static void InitAborter(const char* abort_message) { in InitAborter() argument 629 android::base::DefaultAborter(abort_message); in InitAborter()
|
/system/core/debuggerd/libdebuggerd/ |
D | tombstone_proto_to_text.cpp | 490 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/ |
D | logging.h | 130 void DefaultAborter(const char* abort_message);
|
/system/core/debuggerd/ |
D | debuggerd_test.cpp | 961 TEST_F(CrasherTest, abort_message) { in TEST_F() argument
|