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.cpp104 const JdwpLocation* pLoc; /* LocationOnly */ member
493 if (!locationMatch(&pMod->locationOnly.loc, basket->pLoc)) in modsMatch()
809 bool dvmJdwpPostLocationEvent(JdwpState* state, const JdwpLocation* pLoc, in dvmJdwpPostLocationEvent() argument
817 basket.pLoc = pLoc; in dvmJdwpPostLocationEvent()
818 basket.classId = pLoc->classId; in dvmJdwpPostLocationEvent()
822 dvmDescriptorToName(dvmDbgGetClassDescriptor(pLoc->classId)); in dvmJdwpPostLocationEvent()
875 dvmDbgGetMethodName(pLoc->classId, pLoc->methodId), in dvmJdwpPostLocationEvent()
876 basket.threadId, pLoc->idx); in dvmJdwpPostLocationEvent()
890 dvmJdwpAddLocation(pReq, pLoc); in dvmJdwpPostLocationEvent()
1030 basket.pLoc = pThrowLoc; in dvmJdwpPostException()
DJdwpHandler.cpp44 static void jdwpReadLocation(const u1** pBuf, JdwpLocation* pLoc) in jdwpReadLocation() argument
46 memset(pLoc, 0, sizeof(*pLoc)); /* allows memcmp() later */ in jdwpReadLocation()
47 pLoc->typeTag = read1(pBuf); in jdwpReadLocation()
48 pLoc->classId = dvmReadObjectId(pBuf); in jdwpReadLocation()
49 pLoc->methodId = dvmReadMethodId(pBuf); in jdwpReadLocation()
50 pLoc->idx = read8BE(pBuf); in jdwpReadLocation()
56 void dvmJdwpAddLocation(ExpandBuf* pReply, const JdwpLocation* pLoc) in dvmJdwpAddLocation() argument
58 expandBufAdd1(pReply, pLoc->typeTag); in dvmJdwpAddLocation()
59 expandBufAddObjectId(pReply, pLoc->classId); in dvmJdwpAddLocation()
60 expandBufAddMethodId(pReply, pLoc->methodId); in dvmJdwpAddLocation()
[all …]
DJdwp.h202 bool dvmJdwpPostLocationEvent(JdwpState* state, const JdwpLocation* pLoc,
/dalvik/vm/
DDebugger.h244 JdwpLocation* pLoc);
279 bool dvmDbgWatchLocation(const JdwpLocation* pLoc);
280 void dvmDbgUnwatchLocation(const JdwpLocation* pLoc);
DDebugger.cpp2070 JdwpLocation* pLoc) in dvmDbgGetThreadFrame() argument
2095 pLoc->typeTag = TT_INTERFACE; in dvmDbgGetThreadFrame()
2097 pLoc->typeTag = TT_CLASS; in dvmDbgGetThreadFrame()
2098 pLoc->classId = classObjectToRefTypeId(method->clazz); in dvmDbgGetThreadFrame()
2099 pLoc->methodId = methodToMethodId(method); in dvmDbgGetThreadFrame()
2101 pLoc->idx = (u8)-1; in dvmDbgGetThreadFrame()
2103 pLoc->idx = saveArea->xtra.currentPc - method->insns; in dvmDbgGetThreadFrame()
2538 bool dvmDbgWatchLocation(const JdwpLocation* pLoc) in dvmDbgWatchLocation() argument
2540 Method* method = methodIdToMethod(pLoc->classId, pLoc->methodId); in dvmDbgWatchLocation()
2542 dvmAddBreakAddr(method, pLoc->idx); in dvmDbgWatchLocation()
[all …]