Home
last modified time | relevance | path

Searched refs:pLoc (Results 1 – 6 of 6) sorted by relevance

/dalvik/vm/jdwp/
DJdwpHandler.h45 void dvmJdwpAddLocation(ExpandBuf* pReply, const JdwpLocation* pLoc);
DJdwpEvent.c104 const JdwpLocation* pLoc; /* LocationOnly */ member
493 if (!locationMatch(&pMod->locationOnly.loc, basket->pLoc)) in modsMatch()
812 bool dvmJdwpPostLocationEvent(JdwpState* state, const JdwpLocation* pLoc, in dvmJdwpPostLocationEvent() argument
822 basket.pLoc = pLoc; in dvmJdwpPostLocationEvent()
823 basket.classId = pLoc->classId; in dvmJdwpPostLocationEvent()
827 dvmDescriptorToName(dvmDbgGetClassDescriptor(pLoc->classId)); in dvmJdwpPostLocationEvent()
882 dvmDbgGetMethodName(pLoc->classId, pLoc->methodId), in dvmJdwpPostLocationEvent()
883 basket.threadId, pLoc->idx); in dvmJdwpPostLocationEvent()
897 dvmJdwpAddLocation(pReq, pLoc); in dvmJdwpPostLocationEvent()
1041 basket.pLoc = pThrowLoc; in dvmJdwpPostException()
DJdwpHandler.c59 static void jdwpReadLocation(const u1** pBuf, JdwpLocation* pLoc) in jdwpReadLocation() argument
61 memset(pLoc, 0, sizeof(*pLoc)); /* allows memcmp() later */ in jdwpReadLocation()
62 pLoc->typeTag = read1(pBuf); in jdwpReadLocation()
63 pLoc->classId = dvmReadObjectId(pBuf); in jdwpReadLocation()
64 pLoc->methodId = dvmReadMethodId(pBuf); in jdwpReadLocation()
65 pLoc->idx = read8BE(pBuf); in jdwpReadLocation()
71 void dvmJdwpAddLocation(ExpandBuf* pReply, const JdwpLocation* pLoc) in dvmJdwpAddLocation() argument
73 expandBufAdd1(pReply, pLoc->typeTag); in dvmJdwpAddLocation()
74 expandBufAddObjectId(pReply, pLoc->classId); in dvmJdwpAddLocation()
75 expandBufAddMethodId(pReply, pLoc->methodId); in dvmJdwpAddLocation()
[all …]
DJdwp.h204 bool dvmJdwpPostLocationEvent(JdwpState* state, const JdwpLocation* pLoc,
/dalvik/vm/
DDebugger.h241 JdwpLocation* pLoc);
277 bool dvmDbgWatchLocation(const JdwpLocation* pLoc);
278 void dvmDbgUnwatchLocation(const JdwpLocation* pLoc);
DDebugger.c2117 JdwpLocation* pLoc) in dvmDbgGetThreadFrame() argument
2142 pLoc->typeTag = TT_INTERFACE; in dvmDbgGetThreadFrame()
2144 pLoc->typeTag = TT_CLASS; in dvmDbgGetThreadFrame()
2145 pLoc->classId = classObjectToRefTypeId(method->clazz); in dvmDbgGetThreadFrame()
2146 pLoc->methodId = methodToMethodId(method); in dvmDbgGetThreadFrame()
2148 pLoc->idx = (u8)-1; in dvmDbgGetThreadFrame()
2150 pLoc->idx = saveArea->xtra.currentPc - method->insns; in dvmDbgGetThreadFrame()
2578 bool dvmDbgWatchLocation(const JdwpLocation* pLoc) in dvmDbgWatchLocation() argument
2580 Method* method = methodIdToMethod(pLoc->classId, pLoc->methodId); in dvmDbgWatchLocation()
2582 dvmAddBreakAddr(method, pLoc->idx); in dvmDbgWatchLocation()
[all …]