Lines Matching refs:caller
882 void* caller = SAVEAREA_FROM_FP(curFrame)->prevFrame; in dvmGetCallerFP() local
886 if (dvmIsBreakFrame(caller)) { in dvmGetCallerFP()
888 caller = SAVEAREA_FROM_FP(caller)->prevFrame; in dvmGetCallerFP()
889 if (caller == NULL) in dvmGetCallerFP()
897 saveArea = SAVEAREA_FROM_FP(caller); in dvmGetCallerFP()
899 caller = saveArea->prevFrame; in dvmGetCallerFP()
900 assert(caller != NULL); in dvmGetCallerFP()
905 return caller; in dvmGetCallerFP()
915 void* caller; in dvmGetCallerClass() local
917 caller = dvmGetCallerFP(curFrame); in dvmGetCallerClass()
918 if (caller == NULL) in dvmGetCallerClass()
921 return SAVEAREA_FROM_FP(caller)->method->clazz; in dvmGetCallerClass()
932 void* caller = SAVEAREA_FROM_FP(curFrame)->prevFrame; in dvmGetCaller2Class() local
936 if (dvmIsBreakFrame(caller) && SAVEAREA_FROM_FP(caller)->prevFrame == NULL) in dvmGetCaller2Class()
940 callerCaller = dvmGetCallerFP(caller); in dvmGetCaller2Class()
955 void* caller = SAVEAREA_FROM_FP(curFrame)->prevFrame; in dvmGetCaller3Class() local
959 if (dvmIsBreakFrame(caller) && SAVEAREA_FROM_FP(caller)->prevFrame == NULL) in dvmGetCaller3Class()
964 caller = dvmGetCallerFP(caller); in dvmGetCaller3Class()
965 if (caller == NULL) in dvmGetCaller3Class()
969 return SAVEAREA_FROM_FP(caller)->method->clazz; in dvmGetCaller3Class()