HomeSort by relevance Sort by last modified time
    Searched refs:pReq (Results 1 - 7 of 7) sorted by null

  /dalvik/vm/jdwp/
JdwpEvent.cpp 597 DebugInvokeReq* pReq = dvmDbgGetInvokeReq();
599 pReq->ready = true;
601 pReq->ready = false;
607 if (!pReq->invokeNeeded) {
615 /* leave pReq->invokeNeeded raised so we can check reentrancy */
617 dvmDbgExecuteMethod(pReq);
619 pReq->err = ERR_NONE;
622 pReq->invokeNeeded = false;
625 dvmDbgLockMutex(&pReq->lock);
626 dvmDbgCondSignal(&pReq->cv)
    [all...]
JdwpPriv.h 61 bool (*sendRequest)(struct JdwpState* state, ExpandBuf* pReq);
183 INLINE bool dvmJdwpSendRequest(JdwpState* state, ExpandBuf* pReq) {
184 return (*state->transport->sendRequest)(state, pReq);
JdwpEvent.h 123 * Send an event, formatted into "pReq", to the debugger.
127 bool dvmJdwpSendRequest(JdwpState* state, ExpandBuf* pReq);
JdwpAdb.cpp 664 static bool sendRequest(JdwpState* state, ExpandBuf* pReq)
676 ssize_t cc = netState->writePacket(pReq);
678 if (cc != (ssize_t) expandBufGetLength(pReq)) {
680 strerror(errno), (int) cc, (int) expandBufGetLength(pReq));
JdwpSocket.cpp 824 static bool sendRequest(JdwpState* state, ExpandBuf* pReq)
828 /*dumpPacket(expandBufGetBuffer(pReq));*/
836 ssize_t cc = netState->writePacket(pReq);
838 if (cc != (ssize_t) expandBufGetLength(pReq)) {
840 strerror(errno), (int) cc, (int) expandBufGetLength(pReq));
  /dalvik/vm/
Debugger.cpp     [all...]
Debugger.h 288 void dvmDbgExecuteMethod(DebugInvokeReq* pReq);

Completed in 57 milliseconds