Home
last modified time | relevance | path

Searched refs:gAborting (Results 1 – 14 of 14) sorted by relevance

/art/runtime/base/
Dmutex-inl.h102 if (gAborting == 0) { // Avoid recursive aborts. in RegisterAsLocked()
119 if (kDebugLocking && gAborting == 0) { // Avoid recursive aborts. in RegisterAsUnlocked()
183 if (result && self != nullptr && level_ != kMonitorLock && !gAborting) { in IsExclusiveHeld()
Dmutex.h239 if (kDebugLocking && (gAborting == 0)) { in AssertExclusiveHeld()
247 if (kDebugLocking && (gAborting == 0)) { in AssertNotHeldExclusive()
342 if (kDebugLocking && (gAborting == 0)) { in AssertExclusiveHeld()
350 if (kDebugLocking && (gAborting == 0)) { in AssertNotExclusiveHeld()
363 if (kDebugLocking && (gAborting == 0)) { in AssertSharedHeld()
375 if (kDebugLocking && (gAborting == 0)) { in AssertNotHeld()
Dlogging.h68 extern unsigned int gAborting;
Dlogging.cc40 unsigned int gAborting = 0; variable
Dmutex.cc216 if (gAborting == 0) { // Avoid recursive aborts. in CheckSafeToWait()
/art/runtime/
Druntime_android.cc41 gAborting++; // set before taking any locks in HandleUnexpectedSignal()
Dbarrier.cc91 if (gAborting == 0) { in ~Barrier()
Dthread-inl.h98 if (gAborting == 0) { in AssertThreadSuspensionIsAllowable()
114 if (gAborting == 0) { in AssertThreadSuspensionIsAllowable()
Druntime_linux.cc320 gAborting++; // set before taking any locks in HandleUnexpectedSignal()
Druntime.cc349 if (gAborting > 1) { in Dump()
353 gAborting++; in Dump()
410 gAborting++; // set before taking any locks in Abort()
Dthread_list.cc216 LOG((kIsDebugBuild && (gAborting == 0)) ? FATAL : ERROR) in WaitForThreadsToRunThroughCheckpoint()
Dthread.cc1237 if (gAborting == 0 && self != nullptr && thread != nullptr && thread->tlsPtr_.opeer != nullptr) { in DumpState()
1520 bool dump_for_abort = (gAborting > 0); in DumpStack()
Dutils.cc1136 use_addr2line = (gAborting > 0) && RunCommand("addr2line -h", nullptr, nullptr); in DumpNativeStack()
/art/runtime/verifier/
Dreg_type_cache.cc272 Thread::Current()->AssertThreadSuspensionIsAllowable(gAborting == 0); in RegTypeCache()