HomeSort by relevance Sort by last modified time
    Searched refs:abort_message (Results 1 - 25 of 27) sorted by null

1 2

  /external/libcxxabi/src/
cxa_virtual.cpp 11 #include "abort_message.h"
17 abort_message("Pure virtual function called!");
22 abort_message("Deleted virtual function called!");
abort_message.h 1 //===-------------------------- abort_message.h-----------------------------===//
20 abort_message(const char *format, ...) __attribute__((format(printf, 1, 2)));
cxa_exception_storage.cpp 47 #include "abort_message.h"
62 abort_message("cannot zero out thread value for __cxa_get_globals()");
67 abort_message("cannot create thread specific key for __cxa_get_globals()");
81 abort_message("cannot allocate __cxa_eh_globals");
83 abort_message("std::__libcpp_tls_set failure in __cxa_get_globals()");
95 abort_message("execute once failure in __cxa_get_globals_fast()");
cxa_guard.cpp 12 #include "abort_message.h"
22 std::__libcpp_mutex_lock and the abort_message utility without problem. This
175 abort_message("__cxa_guard_acquire failed to acquire mutex");
198 abort_message("__cxa_guard_acquire detected deadlock");
202 abort_message("__cxa_guard_acquire condition variable wait failed");
214 abort_message("__cxa_guard_acquire condition variable wait failed");
221 abort_message("__cxa_guard_acquire failed to release mutex");
227 abort_message("__cxa_guard_release failed to acquire mutex");
231 abort_message("__cxa_guard_release failed to release mutex");
233 abort_message("__cxa_guard_release failed to broadcast condition variable")
    [all...]
cxa_default_handlers.cpp 16 #include "abort_message.h"
64 abort_message("terminating with %s exception of type %s: %s",
69 abort_message("terminating with %s exception of type %s",
74 abort_message("terminating with %s foreign exception", cause);
78 abort_message("terminating");
cxa_handlers.cpp 16 #include "abort_message.h"
39 abort_message("unexpected_handler unexpectedly returned");
67 abort_message("terminate_handler unexpectedly returned");
73 abort_message("terminate_handler unexpectedly threw an exception");
abort_message.cpp 1 //===------------------------- abort_message.cpp --------------------------===//
13 #include "abort_message.h"
32 void abort_message(const char* format, ...) function
cxa_thread_atexit.cpp 10 #include "abort_message.h"
87 abort_message("std::__libcpp_tls_create() failed in __cxa_thread_atexit()");
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++abi/src/
cxa_virtual.cpp 11 #include "abort_message.h"
17 abort_message("Pure virtual function called!");
22 abort_message("Deleted virtual function called!");
abort_message.h 1 //===-------------------------- abort_message.h-----------------------------===//
20 abort_message(const char *format, ...) __attribute__((format(printf, 1, 2)));
cxa_exception_storage.cpp 47 #include "abort_message.h"
62 abort_message("cannot zero out thread value for __cxa_get_globals()");
67 abort_message("cannot create thread specific key for __cxa_get_globals()");
81 abort_message("cannot allocate __cxa_eh_globals");
83 abort_message("std::__libcpp_tls_set failure in __cxa_get_globals()");
95 abort_message("execute once failure in __cxa_get_globals_fast()");
cxa_guard.cpp 12 #include "abort_message.h"
22 std::__libcpp_mutex_lock and the abort_message utility without problem. This
175 abort_message("__cxa_guard_acquire failed to acquire mutex");
198 abort_message("__cxa_guard_acquire detected deadlock");
202 abort_message("__cxa_guard_acquire condition variable wait failed");
214 abort_message("__cxa_guard_acquire condition variable wait failed");
221 abort_message("__cxa_guard_acquire failed to release mutex");
227 abort_message("__cxa_guard_release failed to acquire mutex");
231 abort_message("__cxa_guard_release failed to release mutex");
233 abort_message("__cxa_guard_release failed to broadcast condition variable")
    [all...]
cxa_default_handlers.cpp 16 #include "abort_message.h"
63 abort_message("terminating with %s exception of type %s: %s",
68 abort_message("terminating with %s exception of type %s",
73 abort_message("terminating with %s foreign exception", cause);
77 abort_message("terminating");
cxa_handlers.cpp 16 #include "abort_message.h"
39 abort_message("unexpected_handler unexpectedly returned");
67 abort_message("terminate_handler unexpectedly returned");
73 abort_message("terminate_handler unexpectedly threw an exception");
abort_message.cpp 1 //===------------------------- abort_message.cpp --------------------------===//
13 #include "abort_message.h"
32 void abort_message(const char* format, ...) function
cxa_thread_atexit.cpp 10 #include "abort_message.h"
87 abort_message("std::__libcpp_tls_create() failed in __cxa_thread_atexit()");
  /system/core/init/
log.cpp 33 static void InitAborter(const char* abort_message) {
37 android::base::DefaultAborter(abort_message);
  /system/core/debuggerd/handler/
debuggerd_fallback.cpp 91 void* abort_message) {
97 engrave_tombstone_ucontext(output_fd, reinterpret_cast<uintptr_t>(abort_message), siginfo,
299 static void crash_handler(siginfo_t* info, ucontext_t* ucontext, void* abort_message) {
314 debuggerd_fallback_tombstone(output_fd.get(), ucontext, info, abort_message);
324 void* abort_message) {
328 return crash_handler(info, ucontext, abort_message);
debuggerd_handler.cpp 461 void* abort_message = nullptr; local
463 abort_message = g_callbacks.get_abort_message();
475 debuggerd_fallback_handler(info, static_cast<ucontext_t*>(context), abort_message);
494 .abort_msg = reinterpret_cast<uintptr_t>(abort_message),
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++abi/
Android.mk 20 src/abort_message.cpp \
  /system/core/base/
logging.cpp 230 void DefaultAborter(const char* abort_message) {
232 android_set_abort_message(abort_message);
234 UNUSED(abort_message);
  /art/runtime/
transaction.h 51 void Abort(const std::string& abort_message)
54 void ThrowAbortError(Thread* self, const std::string* abort_message)
transaction.cc 75 void Transaction::Abort(const std::string& abort_message) {
83 abort_message_ = abort_message;
87 void Transaction::ThrowAbortError(Thread* self, const std::string* abort_message) {
88 const bool rethrow = (abort_message == nullptr);
100 abort_message->c_str());
runtime.cc     [all...]
  /system/core/base/include/android-base/
logging.h 106 void DefaultAborter(const char* abort_message);

Completed in 211 milliseconds

1 2