Home | History | Annotate | Download | only in out

Lines Matching full:self

103 # define EXPORT_EXTRA_PC() (self->currentPc2 = pc)
152 self->threadId, (int)(pc - curMethod->insns), debugStrBuf); \
155 self->threadId, debugStrBuf); \
478 dvmInterpCheckTrackedRefs(self, curMethod, debugTrackedRefStart)
512 if (dvmCheckSuspendQuick(self)) { \
514 dvmCheckSuspendPending(self); \
520 self->threadId, \
1181 bool INTERP_FUNC_NAME(Thread* self, InterpState* interpState)
1184 StackSaveArea* debugSaveArea = SAVEAREA_FROM_FP(self->curFrame);
1233 dvmJitCheckTraceRequest(self, interpState)) {
1250 self->threadId, (interpState->nextMode == INTERP_STD) ? "STD" : "DBG",
1438 assert(self->exception != NULL);
1439 SET_REGISTER(vdst, (u4)self->exception);
1440 dvmClearException(self);
1649 dvmLockObject(self, obj);
1651 if (dvmCheckException(self))
1681 if (!dvmUnlockObject(self, obj)) {
1682 assert(dvmCheckException(self));
1901 dvmSetException(self, obj);
1947 if (offset <= 0) /* allowed to branch to self */
3438 assert(dvmCheckException(self));
3652 TRACE_METHOD_EXIT(self, curMethod);
3669 self->curFrame = fp;
3719 assert(dvmCheckException(self));
3720 exception = dvmGetException(self);
3721 dvmAddTrackedAlloc(exception, self);
3722 dvmClearException(self);
3745 catchRelPc = dvmFindCatchBlock(self, pc - curMethod->insns,
3767 catchRelPc = dvmFindCatchBlock(self, pc - curMethod->insns,
3791 if (self->stackOverflowed)
3792 dvmCleanupStackOverflow(self, exception);
3801 dvmSetException(self, exception);
3802 dvmReleaseTrackedAlloc(exception, self);
3818 * Adjust local variables to match self->curFrame and the
3821 //fp = (u4*) self->curFrame;
3843 dvmSetException(self, exception);
3845 dvmReleaseTrackedAlloc(exception, self);
3955 if (bottom < self->interpStackEnd) {
3958 self->interpStackStart, self->interpStackEnd, bottom,
3959 (u1*) fp - bottom, self->interpStackSize,
3961 dvmHandleStackOverflow(self, methodToCall);
3962 assert(dvmCheckException(self));
4000 fp = self->curFrame = newFp;
4014 newSaveArea->xtra.localRefCookie = self->jniLocalRefTable.segmentState.all;
4016 newSaveArea->xtra.localRefCookie = self->jniLocalRefTable.nextEntry;
4019 self->curFrame = newFp;
4030 TRACE_METHOD_ENTER(self, methodToCall);
4046 (*methodToCall->nativeFunc)(newFp, &retval, methodToCall, self);
4055 TRACE_METHOD_EXIT(self, methodToCall);
4059 dvmPopJniLocals(self, newSaveArea);
4060 self->curFrame = fp;
4067 if (dvmCheckException(self)) {