Searched refs:pReq (Results 1 - 7 of 7) sorted by relevance

/dalvik/vm/jdwp/
H A DJdwpEvent.cpp597 DebugInvokeReq* pReq = dvmDbgGetInvokeReq(); local
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
640 DebugInvokeReq* pReq = dvmDbgGetInvokeReq(); local
709 ExpandBuf* pReq = expandBufAlloc(); local
720 eventFinish(JdwpState* state, ExpandBuf* pReq) argument
757 ExpandBuf* pReq = NULL; local
870 ExpandBuf* pReq = NULL; local
950 ExpandBuf* pReq = NULL; local
999 ExpandBuf* pReq = eventPrep(); local
1054 ExpandBuf* pReq = NULL; local
1149 ExpandBuf* pReq = NULL; local
[all...]
H A DJdwpPriv.h61 bool (*sendRequest)(struct JdwpState* state, ExpandBuf* pReq);
183 INLINE bool dvmJdwpSendRequest(JdwpState* state, ExpandBuf* pReq) { argument
184 return (*state->transport->sendRequest)(state, pReq);
H A DJdwpEvent.h123 * Send an event, formatted into "pReq", to the debugger.
127 bool dvmJdwpSendRequest(JdwpState* state, ExpandBuf* pReq);
H A DJdwpAdb.cpp664 static bool sendRequest(JdwpState* state, ExpandBuf* pReq) argument
676 ssize_t cc = netState->writePacket(pReq);
678 if (cc != (ssize_t) expandBufGetLength(pReq)) {
680 strerror(errno), (int) cc, (int) expandBufGetLength(pReq));
H A DJdwpSocket.cpp824 static bool sendRequest(JdwpState* state, ExpandBuf* pReq) argument
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/
H A DDebugger.cpp2754 * Execute the method described by "*pReq".
2759 void dvmDbgExecuteMethod(DebugInvokeReq* pReq) argument
2782 if ((pReq->options & INVOKE_NONVIRTUAL) != 0 || pReq->obj == NULL ||
2783 dvmIsDirectMethod(pReq->method))
2785 meth = pReq->method;
2787 meth = dvmGetVirtualizedMethod(pReq->clazz, pReq->method);
2796 pReq->method, meth, meth->clazz->descriptor, meth->name, desc);
2800 dvmCallMethodA(self, meth, pReq
[all...]
H A DDebugger.h288 void dvmDbgExecuteMethod(DebugInvokeReq* pReq);

Completed in 122 milliseconds