Home
last modified time | relevance | path

Searched refs:frameId (Results 1 – 3 of 3) sorted by relevance

/dalvik/vm/
DDebugger.h253 bool dvmDbgGetThisObject(ObjectId threadId, FrameId frameId, ObjectId* pThisId);
254 void dvmDbgGetLocalValue(ObjectId threadId, FrameId frameId, int slot,
256 void dvmDbgSetLocalValue(ObjectId threadId, FrameId frameId, int slot,
DDebugger.cpp2236 bool dvmDbgGetThisObject(ObjectId threadId, FrameId frameId, ObjectId* pThisId) in dvmDbgGetThisObject() argument
2238 const u4* framePtr = frameIdToFrame(frameId); in dvmDbgGetThisObject()
2256 void dvmDbgGetLocalValue(ObjectId threadId, FrameId frameId, int slot, in dvmDbgGetLocalValue() argument
2259 const u4* framePtr = frameIdToFrame(frameId); in dvmDbgGetLocalValue()
2341 void dvmDbgSetLocalValue(ObjectId threadId, FrameId frameId, int slot, u1 tag, in dvmDbgSetLocalValue() argument
2344 u4* framePtr = frameIdToFrame(frameId); in dvmDbgSetLocalValue()
/dalvik/vm/jdwp/
DJdwpHandler.cpp1132 FrameId frameId; in handleTR_Frames() local
1135 dvmDbgGetThreadFrame(threadId, i, &frameId, &loc); in handleTR_Frames()
1137 expandBufAdd8BE(pReply, frameId); in handleTR_Frames()
1141 i, frameId, loc.typeTag, loc.classId, loc.methodId, loc.idx); in handleTR_Frames()
1580 FrameId frameId = dvmReadFrameId(&buf); in handleSF_GetValues() local
1584 slots, threadId, frameId); in handleSF_GetValues()
1595 dvmDbgGetLocalValue(threadId, frameId, slot, reqSigByte, ptr, width); in handleSF_GetValues()
1608 FrameId frameId = dvmReadFrameId(&buf); in handleSF_SetValues() local
1612 slots, threadId, frameId); in handleSF_SetValues()
1621 dvmDbgSetLocalValue(threadId, frameId, slot, sigByte, value, width); in handleSF_SetValues()
[all …]