HomeSort by relevance Sort by last modified time
    Searched refs:curFrame (Results 1 - 25 of 48) sorted by null

1 2

  /external/srec/portable/src/
pstream.c 179 FileBufferFrame *curFrame;
301 PortFile->endFrame = PortFile->curFrame = PortFile->startFrame;
305 PortFile->curPos = PortFile->curFrame->buffer;
309 curFrame = PortFile->curFrame;
312 if (end > curFrame->size)
314 curFrame = curFrame->next;
315 passert(end > curFrame->size);
316 end -= curFrame->size
    [all...]
  /dalvik/vm/interp/
Stack.c 38 assert(thread->curFrame == NULL);
73 if (self->curFrame != NULL)
74 stackPtr = (u1*) SAVEAREA_FROM_FP(self->curFrame);
82 stackReq, self->interpStackStart, self->curFrame,
103 breakSaveBlock->prevSave = FP_FROM_SAVEAREA(self->curFrame);
107 breakSaveBlock->prevFrame = self->curFrame;
117 self->curFrame, FP_FROM_SAVEAREA(saveBlock),
118 (u1*)self->curFrame - (u1*)FP_FROM_SAVEAREA(saveBlock));
120 self->curFrame = FP_FROM_SAVEAREA(saveBlock);
146 if (self->curFrame != NULL
    [all...]
Stack.h 49 +-----------------+ <-- curFrame: FP for cur function
246 void* dvmGetCallerFP(const void* curFrame);
251 ClassObject* dvmGetCallerClass(const void* curFrame);
259 ClassObject* dvmGetCaller2Class(const void* curFrame);
267 ClassObject* dvmGetCaller3Class(const void* curFrame);
Jit.c 220 StackSaveArea* stackSave = SAVEAREA_FROM_FP(self->curFrame);
226 if (self->curFrame < shadowSpace->fp) {
229 frameBytes2 = (int) shadowSpace->fp - (int) self->curFrame - localRegs;
239 (int)self->curFrame);
252 StackSaveArea* stackSave = SAVEAREA_FROM_FP(self->curFrame);
340 if (self->curFrame < shadowSpace->fp) {
341 StackSaveArea* stackSave = SAVEAREA_FROM_FP(self->curFrame);
345 (int) self->curFrame - localRegs;
346 if (memcmp(((char*)self->curFrame)+localRegs,
353 (int)self->curFrame, localRegs, frameBytes2)
    [all...]
Interp.c 525 for (fp = thread->curFrame; fp != NULL; fp = saveArea->prevFrame) {
572 pCtrl->frameDepth = dvmComputeVagueFrameDepth(thread, thread->curFrame);
    [all...]
  /dalvik/vm/native/
dalvik_system_VMStack.c 32 ClassObject* clazz = dvmGetCaller2Class(dvmThreadSelf()->curFrame);
49 ClassObject* clazz = dvmGetCaller3Class(dvmThreadSelf()->curFrame);
66 ClassObject* clazz = dvmGetCaller3Class(dvmThreadSelf()->curFrame);
94 if (!dvmCreateStackTraceArray(dvmThreadSelf()->curFrame, &methods,
java_security_AccessController.c 42 if (!dvmCreateStackTraceArray(dvmThreadSelf()->curFrame, &methods, &length))
java_lang_reflect_Field.c 77 dvmGetCaller2Class(dvmThreadSelf()->curFrame);
  /dalvik/vm/compiler/template/armv5te/
footer.S 16 str r1, [r3, #offThread_curFrame] @ self->curFrame = newFp
37 str rFP, [r9, #offThread_curFrame] @ self->curFrame = fp
TEMPLATE_INVOKE_METHOD_NATIVE.S 34 str r1, [r3, #offThread_curFrame] @ self->curFrame = newFp
52 str rFP, [r9, #offThread_curFrame] @ self->curFrame = fp
TEMPLATE_INVOKE_METHOD_CHAIN.S 43 str rFP, [r2, #offThread_curFrame] @ self->curFrame = newFp
TEMPLATE_INVOKE_METHOD_NO_OPT.S 48 str rFP, [r2, #offThread_curFrame] @ self->curFrame = newFp
  /dalvik/vm/mterp/portable/
entry.c 9 StackSaveArea* debugSaveArea = SAVEAREA_FROM_FP(self->curFrame);
  /external/srec/portable/include/
pstream.h 41 struct FileBufferFrame *curFrame; /* current buffer; useful for writable file */
  /dalvik/vm/
Exception.c 771 dvmComputeExactFrameDepth(self->curFrame));
872 * If "scanOnly" is false, self->curFrame is also set to this value.
877 void* fp = self->curFrame;
    [all...]
Thread.h 142 void* curFrame;
Jni.c 636 void* curFrame = ((JNIEnvExt*)env)->self->curFrame;
637 u4 cookie = SAVEAREA_FROM_FP(curFrame)->xtra.localRefCookie;
703 u4 cookie = SAVEAREA_FROM_FP(self->curFrame)->xtra.localRefCookie;
718 Object** bottom = SAVEAREA_FROM_FP(self->curFrame)->xtra.localRefCookie;
    [all...]
Thread.c     [all...]
Sync.c 398 saveArea = SAVEAREA_FROM_FP(self->curFrame);
505 if (self->curFrame == NULL) {
507 } else if ((saveArea = SAVEAREA_FROM_FP(self->curFrame)) == NULL) {
    [all...]
  /dalvik/vm/hprof/
HprofStack.c 221 fp = self->curFrame;
  /dalvik/vm/mterp/c/
gotoTargets.c 567 self->curFrame = fp;
716 * Adjust local variables to match self->curFrame and the
719 //fp = (u4*) self->curFrame;
899 fp = self->curFrame = newFp;
    [all...]
  /dalvik/vm/mterp/x86/
footer.S 190 movl rFP, offThread_curFrame(%eax) # glue->self->curFrame<- newFP
207 movl %edx, offThread_curFrame(%ecx) # glue->self->curFrame<- newFP
222 movl rFP, offThread_curFrame(%eax) # glue->self->curFrame<- rFP
363 movl rFP,offThread_curFrame(%eax) # self->curFrame = fp
  /dalvik/vm/alloc/
Visit.c 92 framePtr = (u4 *)thread->curFrame;
  /dalvik/vm/mterp/x86-atom/
footer.S 291 movl rFP, offThread_curFrame(%ecx) # glue->self->curFrame<- newFP
307 movl %eax, offThread_curFrame(%edx) # glue->self->curFrame<- newFP
331 movl rFP, offThread_curFrame(%ecx) # glue->self->curFrame<- rFP
408 movl rFP, offThread_curFrame(%ecx) # glue->self->curFrame<- rFP
490 * adjust locals to match self->curFrame and updated PC
  /dalvik/vm/mterp/common/
asm-constants.h 189 MTERP_OFFSET(offThread_curFrame, Thread, curFrame, 40)

Completed in 664 milliseconds

1 2