Searched defs:pReq (Results 1 - 5 of 5) sorted by relevance
/dalvik/vm/jdwp/ |
H A D | JdwpPriv.h | 63 bool (*sendRequest)(struct JdwpState* state, ExpandBuf* pReq); 170 INLINE bool dvmJdwpSendRequest(JdwpState* state, ExpandBuf* pReq) { argument 171 return (*state->transport->sendRequest)(state, pReq);
|
H A D | JdwpAdb.c | 669 static bool sendRequest(JdwpState* state, ExpandBuf* pReq) argument 686 cc = write(netState->clientSock, expandBufGetBuffer(pReq), 687 expandBufGetLength(pReq)); 688 if (cc != (int) expandBufGetLength(pReq)) { 690 strerror(errno), cc, (int) expandBufGetLength(pReq));
|
H A D | JdwpSocket.c | 827 static bool sendRequest(JdwpState* state, ExpandBuf* pReq) argument 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));
|
H A D | JdwpEvent.c | 595 DebugInvokeReq* pReq = dvmDbgGetInvokeReq(); local 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 638 DebugInvokeReq* pReq = dvmDbgGetInvokeReq(); local 707 ExpandBuf* pReq; local 720 eventFinish(JdwpState* state, ExpandBuf* pReq) argument 757 ExpandBuf* pReq = NULL; local 872 ExpandBuf* pReq = NULL; local 956 ExpandBuf* pReq = NULL; local 1005 ExpandBuf* pReq; local 1066 ExpandBuf* pReq = NULL; local 1165 ExpandBuf* pReq = NULL; local [all...] |
/dalvik/vm/ |
H A D | Debugger.c | 2874 * Execute the method described by "*pReq". 2879 void dvmDbgExecuteMethod(DebugInvokeReq* pReq) argument 2899 if ((pReq->options & INVOKE_NONVIRTUAL) != 0 || pReq->obj == NULL || 2900 dvmIsDirectMethod(pReq->method)) 2902 meth = pReq->method; 2904 meth = dvmGetVirtualizedMethod(pReq->clazz, pReq->method); 2913 pReq->method, meth, meth->clazz->descriptor, meth->name, desc); 2917 dvmCallMethodA(self, meth, pReq [all...] |
Completed in 151 milliseconds