Home | History | Annotate | Download | only in interp

Lines Matching refs:Thread

40 void dvmInterpret(Thread* thread, const Method* method, JValue* pResult);
56 void dvmInitInterpreterState(Thread* self);
64 bool dvmAddSingleStep(Thread* thread, int size, int depth);
65 void dvmClearSingleStep(Thread* thread);
80 extern "C" void dvmCheckBefore(const u2 *dPC, u4 *fp, Thread* self);
81 extern "C" void dvmReportExceptionThrow(Thread* self, Object* exception);
82 extern "C" void dvmReportPreNativeInvoke(const Method* methodToCall, Thread* self, u4* fp);
83 extern "C" void dvmReportPostNativeInvoke(const Method* methodToCall, Thread* self, u4* fp);
84 extern "C" void dvmReportInvoke(Thread* self, const Method* methodToCall);
85 extern "C" void dvmReportReturn(Thread* self);
90 void dvmDisableSubMode(Thread* thread, ExecutionSubModes subMode);
91 extern "C" void dvmEnableSubMode(Thread* thread, ExecutionSubModes subMode);
94 void dvmAddToSuspendCounts(Thread* thread, int delta, int dbgDelta);
96 void dvmInitializeInterpBreak(Thread* thread);
99 * Register a callback to occur at the next safe point for a single thread.
103 * bool funct(Thread* thread, void* arg)
108 void dvmArmSafePointCallback(Thread* thread, SafePointCallback funct,