Searched refs:abort_message (Results 1 – 9 of 9) sorted by relevance
/system/logging/liblog/include/android/ |
D | log.h | 218 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/ |
D | debuggerd_fallback.cpp | 102 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/ |
D | logger_write.cpp | 167 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/ |
D | logging.cpp | 304 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/ |
D | tombstone.proto | 26 string abort_message = 14; field
|
/system/core/debuggerd/libdebuggerd/ |
D | tombstone_proto_to_text.cpp | 324 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/ |
D | util.cpp | 699 static void InitAborter(const char* abort_message) { in InitAborter() argument 703 android::base::DefaultAborter(abort_message); in InitAborter()
|
/system/libbase/include/android-base/ |
D | logging.h | 123 void DefaultAborter(const char* abort_message);
|
/system/core/debuggerd/ |
D | debuggerd_test.cpp | 938 TEST_F(CrasherTest, abort_message) { in TEST_F() argument
|