Home
last modified time | relevance | path

Searched refs:gAborting (Results 1 – 13 of 13) 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.h230 if (kDebugLocking && (gAborting == 0)) { in AssertExclusiveHeld()
238 if (kDebugLocking && (gAborting == 0)) { in AssertNotHeldExclusive()
328 if (kDebugLocking && (gAborting == 0)) { in AssertExclusiveHeld()
336 if (kDebugLocking && (gAborting == 0)) { in AssertNotExclusiveHeld()
347 if (kDebugLocking && (gAborting == 0)) { in AssertSharedHeld()
357 if (kDebugLocking && (gAborting == 0)) { in AssertNotHeld()
Dlogging.h63 extern unsigned int gAborting;
Dlogging.cc40 unsigned int gAborting = 0; variable
Dmutex.cc213 if (gAborting == 0) { // Avoid recursive aborts. in CheckSafeToWait()
/art/runtime/
Druntime_android.cc41 gAborting++; // set before taking any locks in HandleUnexpectedSignal()
Dthread-inl.h86 if (gAborting == 0) { in AssertThreadSuspensionIsAllowable()
102 if (gAborting == 0) { in AssertThreadSuspensionIsAllowable()
Druntime_linux.cc316 gAborting++; // set before taking any locks in HandleUnexpectedSignal()
Dthread_list.cc191 LOG((kIsDebugBuild && (gAborting == 0)) ? FATAL : ERROR) in WaitForThreadsToRunThroughCheckpoint()
257 if (kDebugLocking && gAborting == 0) { in RunCheckpoint()
Druntime.cc294 if (gAborting > 1) { in Dump()
298 gAborting++; in Dump()
354 gAborting++; // set before taking any locks in Abort()
Dutils.cc1115 use_addr2line = (gAborting > 0) && RunCommand("addr2line -h", nullptr, nullptr); in DumpNativeStack()
Dthread.cc912 if (gAborting == 0 && self != nullptr && thread != nullptr && thread->tlsPtr_.opeer != nullptr) { in DumpState()
1195 bool dump_for_abort = (gAborting > 0); in DumpStack()
/art/runtime/verifier/
Dreg_type_cache.cc243 Thread::Current()->AssertThreadSuspensionIsAllowable(gAborting == 0); in RegTypeCache()