HomeSort by relevance Sort by last modified time
    Searched refs:suspendCount (Results 1 - 22 of 22) sorted by null

  /dalvik/vm/compiler/template/armv5te/
TEMPLATE_RETURN.S 10 ldr r8, [rGLUE, #offGlue_pSelfSuspendCount] @ r8<- &suspendCount
29 ldr r8, [r8] @ r8<- suspendCount
36 cmp r8, #0 @ check the suspendCount
TEMPLATE_INVOKE_METHOD_CHAIN.S 12 ldr r8, [rGLUE, #offGlue_pSelfSuspendCount] @ r8<- &suspendCount
19 ldr r8, [r8] @ r8<- suspendCount (int)
33 cmp r8, #0 @ suspendCount != 0
TEMPLATE_INVOKE_METHOD_NO_OPT.S 10 ldr r8, [rGLUE, #offGlue_pSelfSuspendCount] @ r8<- &suspendCount
16 ldr r8, [r8] @ r8<- suspendCount (int)
31 cmp r8, #0 @ suspendCount != 0
TEMPLATE_INVOKE_METHOD_NATIVE.S 4 ldr r8, [rGLUE, #offGlue_pSelfSuspendCount] @ r8<- &suspendCount
9 ldr r8, [r8] @ r3<- suspendCount (int)
23 cmp r8, #0 @ suspendCount != 0
  /dalvik/vm/mterp/
Mterp.c 78 glue->pSelfSuspendCount = &self->suspendCount;
  /dalvik/vm/
Thread.c 247 * maintaining a global sum of all threads' suspend counts. All suspendCount
663 dvmAddToThreadSuspendCount(&target->suspendCount, 1);
    [all...]
Thread.h 109 * (suspendCount -= dbgSuspendCount). The debugger should not be able
117 * to read suspendCount, and we need to hold a mutex when making
122 int suspendCount;
325 return (self->suspendCount != 0);
Debugger.c     [all...]
  /dalvik/vm/mterp/armv5te/
footer.S 443 ldr r3, [rGLUE, #offGlue_pSelfSuspendCount] @ r3<- &suspendCount
448 ldr ip, [r3] @ ip<- suspendCount (int)
453 orrne ip, ip, r1 @ ip<- suspendCount | debuggerActive
465 ldr ip, [r3] @ ip<- suspendCount (int)
    [all...]
  /dalvik/vm/compiler/
Compiler.c 123 self->suspendCount == 0) {
  /dalvik/vm/compiler/template/out/
CompilerTemplateAsm-armv5te-vfp.S 182 ldr r8, [rGLUE, #offGlue_pSelfSuspendCount] @ r8<- &suspendCount
201 ldr r8, [r8] @ r8<- suspendCount
208 cmp r8, #0 @ check the suspendCount
238 ldr r8, [rGLUE, #offGlue_pSelfSuspendCount] @ r8<- &suspendCount
244 ldr r8, [r8] @ r8<- suspendCount (int)
259 cmp r8, #0 @ suspendCount != 0
300 ldr r8, [rGLUE, #offGlue_pSelfSuspendCount] @ r8<- &suspendCount
307 ldr r8, [r8] @ r8<- suspendCount (int)
321 cmp r8, #0 @ suspendCount != 0
399 ldr r8, [rGLUE, #offGlue_pSelfSuspendCount] @ r8<- &suspendCount
    [all...]
CompilerTemplateAsm-armv7-a-neon.S 182 ldr r8, [rGLUE, #offGlue_pSelfSuspendCount] @ r8<- &suspendCount
201 ldr r8, [r8] @ r8<- suspendCount
208 cmp r8, #0 @ check the suspendCount
238 ldr r8, [rGLUE, #offGlue_pSelfSuspendCount] @ r8<- &suspendCount
244 ldr r8, [r8] @ r8<- suspendCount (int)
259 cmp r8, #0 @ suspendCount != 0
300 ldr r8, [rGLUE, #offGlue_pSelfSuspendCount] @ r8<- &suspendCount
307 ldr r8, [r8] @ r8<- suspendCount (int)
321 cmp r8, #0 @ suspendCount != 0
399 ldr r8, [rGLUE, #offGlue_pSelfSuspendCount] @ r8<- &suspendCount
    [all...]
CompilerTemplateAsm-armv7-a.S 182 ldr r8, [rGLUE, #offGlue_pSelfSuspendCount] @ r8<- &suspendCount
201 ldr r8, [r8] @ r8<- suspendCount
208 cmp r8, #0 @ check the suspendCount
238 ldr r8, [rGLUE, #offGlue_pSelfSuspendCount] @ r8<- &suspendCount
244 ldr r8, [r8] @ r8<- suspendCount (int)
259 cmp r8, #0 @ suspendCount != 0
300 ldr r8, [rGLUE, #offGlue_pSelfSuspendCount] @ r8<- &suspendCount
307 ldr r8, [r8] @ r8<- suspendCount (int)
321 cmp r8, #0 @ suspendCount != 0
399 ldr r8, [rGLUE, #offGlue_pSelfSuspendCount] @ r8<- &suspendCount
    [all...]
CompilerTemplateAsm-armv5te.S 182 ldr r8, [rGLUE, #offGlue_pSelfSuspendCount] @ r8<- &suspendCount
201 ldr r8, [r8] @ r8<- suspendCount
208 cmp r8, #0 @ check the suspendCount
238 ldr r8, [rGLUE, #offGlue_pSelfSuspendCount] @ r8<- &suspendCount
244 ldr r8, [r8] @ r8<- suspendCount (int)
259 cmp r8, #0 @ suspendCount != 0
300 ldr r8, [rGLUE, #offGlue_pSelfSuspendCount] @ r8<- &suspendCount
307 ldr r8, [r8] @ r8<- suspendCount (int)
321 cmp r8, #0 @ suspendCount != 0
399 ldr r8, [rGLUE, #offGlue_pSelfSuspendCount] @ r8<- &suspendCount
    [all...]
  /dalvik/vm/jdwp/
JdwpHandler.c     [all...]
  /dalvik/vm/mterp/x86/
footer.S 278 * the suspendCount check so we can get both in 1 shot.
281 movl offGlue_pSelfSuspendCount(%ecx),%eax # eax <- &suspendCount
  /dalvik/vm/mterp/out/
InterpAsm-armv4t.S     [all...]
InterpAsm-armv5te-vfp.S     [all...]
InterpAsm-armv5te.S     [all...]
InterpAsm-armv7-a-neon.S     [all...]
InterpAsm-armv7-a.S     [all...]
InterpAsm-x86.S     [all...]

Completed in 405 milliseconds