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

  /dalvik/vm/jdwp/
JdwpEvent.c 595 DebugInvokeReq* pReq = dvmDbgGetInvokeReq();
597 pReq->ready = true;
599 pReq->ready = false;
605 if (!pReq->invokeNeeded) {
613 /* leave pReq->invokeNeeded raised so we can check reentrancy */
615 dvmDbgExecuteMethod(pReq);
617 pReq->err = ERR_NONE;
620 pReq->invokeNeeded = false;
623 dvmDbgLockMutex(&pReq->lock);
624 dvmDbgCondSignal(&pReq->cv)
    [all...]
JdwpPriv.h 63 bool (*sendRequest)(struct JdwpState* state, ExpandBuf* pReq);
170 INLINE bool dvmJdwpSendRequest(JdwpState* state, ExpandBuf* pReq) {
171 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.c 669 static bool sendRequest(JdwpState* state, ExpandBuf* pReq)
686 cc = write(netState->clientSock, expandBufGetBuffer(pReq),
687 expandBufGetLength(pReq));
688 if (cc != (int) expandBufGetLength(pReq)) {
690 strerror(errno), cc, (int) expandBufGetLength(pReq));
JdwpSocket.c 827 static bool sendRequest(JdwpState* state, ExpandBuf* pReq)
832 /*dumpPacket(expandBufGetBuffer(pReq));*/
845 cc = write(netState->clientSock, expandBufGetBuffer(pReq),
846 expandBufGetLength(pReq));
847 if (cc != (int) expandBufGetLength(pReq)) {
849 strerror(errno), cc, (int) expandBufGetLength(pReq));
  /dalvik/vm/
Debugger.c     [all...]
Debugger.h 290 void dvmDbgExecuteMethod(DebugInvokeReq* pReq);

Completed in 1011 milliseconds