• Home
  • Raw
  • Download

Lines Matching refs:self

323             assert(dvmCheckException(self));  in GOTO_TARGET()
550 TRACE_METHOD_EXIT(self, curMethod); in GOTO_TARGET()
567 self->curFrame = fp; in GOTO_TARGET()
617 assert(dvmCheckException(self)); in GOTO_TARGET()
618 exception = dvmGetException(self); in GOTO_TARGET()
619 dvmAddTrackedAlloc(exception, self); in GOTO_TARGET()
620 dvmClearException(self); in GOTO_TARGET()
643 catchRelPc = dvmFindCatchBlock(self, pc - curMethod->insns, in GOTO_TARGET()
665 catchRelPc = dvmFindCatchBlock(self, pc - curMethod->insns, in GOTO_TARGET()
689 if (self->stackOverflowed) in GOTO_TARGET()
690 dvmCleanupStackOverflow(self, exception); in GOTO_TARGET()
699 dvmSetException(self, exception); in GOTO_TARGET()
700 dvmReleaseTrackedAlloc(exception, self); in GOTO_TARGET()
741 dvmSetException(self, exception); in GOTO_TARGET()
743 dvmReleaseTrackedAlloc(exception, self); in GOTO_TARGET()
854 if (bottom < self->interpStackEnd) {
857 self->interpStackStart, self->interpStackEnd, bottom,
858 (u1*) fp - bottom, self->interpStackSize,
860 dvmHandleStackOverflow(self, methodToCall);
861 assert(dvmCheckException(self));
899 fp = self->curFrame = newFp;
913 newSaveArea->xtra.localRefCookie = self->jniLocalRefTable.segmentState.all;
915 newSaveArea->xtra.localRefCookie = self->jniLocalRefTable.nextEntry;
918 self->curFrame = newFp;
929 TRACE_METHOD_ENTER(self, methodToCall);
947 (*methodToCall->nativeFunc)(newFp, &retval, methodToCall, self);
956 TRACE_METHOD_EXIT(self, methodToCall);
960 dvmPopJniLocals(self, newSaveArea);
961 self->curFrame = fp;
968 if (dvmCheckException(self)) {