Searched defs:pReq (Results 1 - 4 of 4) sorted by relevance

/art/runtime/jdwp/
H A Djdwp_main.cc169 void JdwpState::SendRequest(ExpandBuf* pReq) { argument
177 ssize_t actual = netState->WritePacket(pReq, expandBufGetLength(pReq));
178 if (static_cast<size_t>(actual) != expandBufGetLength(pReq)) {
180 actual, expandBufGetLength(pReq));
H A Djdwp_event.cc590 DebugInvokeReq* pReq = Dbg::GetInvokeReq(); local
592 pReq->ready = true;
594 pReq->ready = false;
600 if (!pReq->invoke_needed) {
608 /* leave pReq->invoke_needed_ raised so we can check reentrancy */
609 Dbg::ExecuteMethod(pReq);
611 pReq->error = ERR_NONE;
615 void JdwpState::SendRequestAndPossiblySuspend(ExpandBuf* pReq, JdwpSuspendPolicy suspend_policy, argument
620 if (pReq != NULL) {
626 EventFinish(pReq);
640 DebugInvokeReq* pReq = Dbg::GetInvokeReq(); local
706 ExpandBuf* pReq = expandBufAlloc(); local
716 EventFinish(ExpandBuf* pReq) argument
754 ExpandBuf* pReq = eventPrep(); local
861 ExpandBuf* pReq = NULL; local
945 ExpandBuf* pReq = NULL; local
1043 ExpandBuf* pReq = NULL; local
1102 ExpandBuf* pReq = eventPrep(); local
1154 ExpandBuf* pReq = NULL; local
1238 ExpandBuf* pReq = NULL; local
[all...]
/art/runtime/
H A Dthread_list.cc678 DebugInvokeReq* pReq = self->GetInvokeReq(); local
679 DCHECK(pReq != NULL);
680 if (pReq->invoke_needed) {
682 pReq->Clear();
685 MutexLock mu(self, pReq->lock);
686 pReq->cond.Signal(self);
H A Ddebugger.cc3665 void Dbg::ExecuteMethod(DebugInvokeReq* pReq) { argument
3688 Handle<mirror::ArtMethod> m(hs.NewHandle(pReq->method));
3689 if ((pReq->options & JDWP::INVOKE_NONVIRTUAL) == 0 && pReq->receiver != NULL) {
3690 mirror::ArtMethod* actual_method = pReq->klass->FindVirtualMethodForVirtualOrInterface(m.Get());
3697 << " receiver=" << pReq->receiver
3698 << " arg_count=" << pReq->arg_count;
3703 pReq->result_value = InvokeWithJValues(soa, pReq->receiver, soa.EncodeMethod(m.Get()),
3704 reinterpret_cast<jvalue*>(pReq
[all...]

Completed in 74 milliseconds