Home
last modified time | relevance | path

Searched refs:suspendCount (Results 1 – 10 of 10) sorted by relevance

/dalvik/vm/
DThread.cpp1621 dvmAddToSuspendCounts(self, -self->suspendCount, 0); in threadExitUncaughtException()
2190 thread->threadId, thread->suspendCount); in dvmSuspendThread()
2214 if (thread->suspendCount > 0) { in dvmResumeThread()
2222 thread->threadId, thread->suspendCount); in dvmResumeThread()
2224 if (thread->suspendCount == 0) { in dvmResumeThread()
2256 assert(self->suspendCount > 0); in dvmSuspendSelf()
2273 while (self->suspendCount != 0) { in dvmSuspendSelf()
2276 if (self->suspendCount != 0) { in dvmSuspendSelf()
2284 self->threadId, self->suspendCount, self->dbgSuspendCount); in dvmSuspendSelf()
2287 assert(self->suspendCount == 0 && self->dbgSuspendCount == 0); in dvmSuspendSelf()
[all …]
DThread.h143 int suspendCount; member
DDebugger.cpp1778 result = thread->suspendCount; in dvmDbgGetThreadSuspendCount()
2648 if (targetThread->suspendCount > 1) { in dvmDbgInvokeMethod()
2652 targetThread->suspendCount); in dvmDbgInvokeMethod()
/dalvik/vm/compiler/codegen/x86/
DLowerReturn.cpp67 compare_imm_mem(OpndSize_32, 0, offsetof(Thread, suspendCount), 2, false); /* suspendCount */ in common_returnFromMethod()
DLowerJump.cpp1417 …move_mem_to_reg(OpndSize_32, offsetof(Thread, suspendCount), PhysicalReg_ECX, true, PhysicalReg_EA… in common_periodicChecks4()
DLowerHelper.cpp2179 …move_mem_to_reg(OpndSize_32, offsetof(Thread, suspendCount), C_SCRATCH_1, isScratchPhysical, reg, … in get_suspendCount()
/dalvik/vm/interp/
DInterp.cpp1502 thread->suspendCount += delta; in dvmAddToSuspendCounts()
1505 (thread->suspendCount != 0)); in dvmAddToSuspendCounts()
1719 if (self->suspendCount || in dvmCheckBefore()
1746 if (self->suspendCount) { in dvmCheckBefore()
/dalvik/vm/mterp/common/
Dasm-constants.h173 MTERP_OFFSET(offThread_suspendCount, Thread, suspendCount, 48);
/dalvik/vm/compiler/
DCompiler.cpp157 self->suspendCount == 0) { in dvmCompilerDrainQueue()
/dalvik/vm/jdwp/
DJdwpHandler.cpp1197 u4 suspendCount = dvmDbgGetThreadSuspendCount(threadId); in handleTR_SuspendCount() local
1198 expandBufAdd4BE(pReply, suspendCount); in handleTR_SuspendCount()