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

/dalvik/vm/jdwp/
H A DJdwpHandler.h45 void dvmJdwpAddLocation(ExpandBuf* pReply, const JdwpLocation* pLoc);
H A DJdwpEvent.cpp104 const JdwpLocation* pLoc; /* LocationOnly */ member in struct:ModBasket
493 if (!locationMatch(&pMod->locationOnly.loc, basket->pLoc))
809 bool dvmJdwpPostLocationEvent(JdwpState* state, const JdwpLocation* pLoc, argument
817 basket.pLoc = pLoc;
818 basket.classId = pLoc->classId;
822 dvmDescriptorToName(dvmDbgGetClassDescriptor(pLoc->classId));
875 dvmDbgGetMethodName(pLoc->classId, pLoc->methodId),
876 basket.threadId, pLoc
[all...]
H A DJdwpHandler.cpp44 static void jdwpReadLocation(const u1** pBuf, JdwpLocation* pLoc) argument
46 memset(pLoc, 0, sizeof(*pLoc)); /* allows memcmp() later */
47 pLoc->typeTag = read1(pBuf);
48 pLoc->classId = dvmReadObjectId(pBuf);
49 pLoc->methodId = dvmReadMethodId(pBuf);
50 pLoc->idx = read8BE(pBuf);
56 void dvmJdwpAddLocation(ExpandBuf* pReply, const JdwpLocation* pLoc) argument
58 expandBufAdd1(pReply, pLoc->typeTag);
59 expandBufAddObjectId(pReply, pLoc
[all...]
H A DJdwp.h197 * In some cases "*pLoc" will just have a method and class name, e.g. when
202 bool dvmJdwpPostLocationEvent(JdwpState* state, const JdwpLocation* pLoc,
/dalvik/vm/
H A DDebugger.h244 JdwpLocation* pLoc);
279 bool dvmDbgWatchLocation(const JdwpLocation* pLoc);
280 void dvmDbgUnwatchLocation(const JdwpLocation* pLoc);
H A DDebugger.cpp2070 JdwpLocation* pLoc)
2095 pLoc->typeTag = TT_INTERFACE;
2097 pLoc->typeTag = TT_CLASS;
2098 pLoc->classId = classObjectToRefTypeId(method->clazz);
2099 pLoc->methodId = methodToMethodId(method);
2101 pLoc->idx = (u8)-1;
2103 pLoc->idx = saveArea->xtra.currentPc - method->insns;
2538 bool dvmDbgWatchLocation(const JdwpLocation* pLoc) argument
2540 Method* method = methodIdToMethod(pLoc->classId, pLoc
2069 dvmDbgGetThreadFrame(ObjectId threadId, int num, FrameId* pFrameId, JdwpLocation* pLoc) argument
2549 dvmDbgUnwatchLocation(const JdwpLocation* pLoc) argument
[all...]

Completed in 365 milliseconds