Lines Matching full:self
103 # define EXPORT_EXTRA_PC() (self->currentPc2 = pc)
152 self->threadId, (int)(pc - curMethod->insns), debugStrBuf); \
155 self->threadId, debugStrBuf); \
456 #define self glue->self
534 if (dvmCheckSuspendQuick(self)) { \
536 dvmCheckSuspendPending(self); \
542 self->threadId, (_entryPoint), (_pcadj)); \
1338 assert(self->exception != NULL);
1339 SET_REGISTER(vdst, (u4)self->exception);
1340 dvmClearException(self);
1549 dvmLockObject(self, obj);
1551 if (dvmCheckException(self))
1581 if (!dvmUnlockObject(self, obj)) {
1582 assert(dvmCheckException(self));
1801 dvmSetException(self, obj);
1847 if (offset <= 0) /* allowed to branch to self */
3421 assert(dvmCheckException(self));
3635 TRACE_METHOD_EXIT(self, curMethod);
3652 self->curFrame = fp;
3702 assert(dvmCheckException(self));
3703 exception = dvmGetException(self);
3704 dvmAddTrackedAlloc(exception, self);
3705 dvmClearException(self);
3728 catchRelPc = dvmFindCatchBlock(self, pc - curMethod->insns,
3750 catchRelPc = dvmFindCatchBlock(self, pc - curMethod->insns,
3774 if (self->stackOverflowed)
3775 dvmCleanupStackOverflow(self, exception);
3784 dvmSetException(self, exception);
3785 dvmReleaseTrackedAlloc(exception, self);
3801 * Adjust local variables to match self->curFrame and the
3804 //fp = (u4*) self->curFrame;
3826 dvmSetException(self, exception);
3828 dvmReleaseTrackedAlloc(exception, self);
3938 if (bottom < self->interpStackEnd) {
3941 self->interpStackStart, self->interpStackEnd, bottom,
3942 (u1*) fp - bottom, self->interpStackSize,
3944 dvmHandleStackOverflow(self, methodToCall);
3945 assert(dvmCheckException(self));
3983 fp = self->curFrame = newFp;
3997 newSaveArea->xtra.localRefCookie = self->jniLocalRefTable.segmentState.all;
3999 newSaveArea->xtra.localRefCookie = self->jniLocalRefTable.nextEntry;
4002 self->curFrame = newFp;
4013 TRACE_METHOD_ENTER(self, methodToCall);
4029 (*methodToCall->nativeFunc)(newFp, &retval, methodToCall, self);
4038 TRACE_METHOD_EXIT(self, methodToCall);
4042 dvmPopJniLocals(self, newSaveArea);
4043 self->curFrame = fp;
4050 if (dvmCheckException(self)) {
4084 #undef self