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

/art/runtime/jdwp/
H A Djdwp_event.cc609 DebugInvokeReq* const pReq = Dbg::GetInvokeReq(); local
610 if (pReq == nullptr) {
615 Dbg::ExecuteMethod(pReq);
619 void JdwpState::SendRequestAndPossiblySuspend(ExpandBuf* pReq, JdwpSuspendPolicy suspend_policy, argument
623 CHECK(pReq != nullptr);
630 EventFinish(pReq);
647 DebugInvokeReq* pReq = Dbg::GetInvokeReq(); local
648 return pReq != nullptr;
732 ExpandBuf* pReq = expandBufAlloc(); local
733 expandBufAddSpace(pReq, kJDWPHeaderLe
742 EventFinish(ExpandBuf* pReq) argument
772 ExpandBuf* pReq = eventPrep(); local
902 ExpandBuf* pReq = eventPrep(); local
973 ExpandBuf* pReq = eventPrep(); local
1054 ExpandBuf* pReq = eventPrep(); local
1082 ExpandBuf* pReq = eventPrep(); local
1160 ExpandBuf* pReq = eventPrep(); local
1241 ExpandBuf* pReq = eventPrep(); local
[all...]
H A Djdwp_main.cc177 void JdwpState::SendRequest(ExpandBuf* pReq) { argument
185 ssize_t actual = netState->WritePacket(pReq, expandBufGetLength(pReq));
186 if (static_cast<size_t>(actual) != expandBufGetLength(pReq)) {
188 actual, expandBufGetLength(pReq));
H A Djdwp.h260 void SendRequest(ExpandBuf* pReq);
305 void SendRequestAndPossiblySuspend(ExpandBuf* pReq, JdwpSuspendPolicy suspend_policy,
311 void EventFinish(ExpandBuf* pReq);
/art/runtime/
H A Dthread_list.cc884 DebugInvokeReq* pReq = self->GetInvokeReq(); local
885 const bool skip_thread_suspension = (pReq != nullptr && !Dbg::IsDebuggerActive());
904 if (pReq != nullptr) {
905 Dbg::FinishInvokeMethod(pReq);
907 pReq = nullptr; // object has been deleted, clear it for safety.
H A Ddebugger.h650 static void ExecuteMethod(DebugInvokeReq* pReq);
655 static void FinishInvokeMethod(DebugInvokeReq* pReq);
740 static void ExecuteMethodWithoutPendingException(ScopedObjectAccess& soa, DebugInvokeReq* pReq)
H A Ddebugger.cc3986 void Dbg::ExecuteMethod(DebugInvokeReq* pReq) { argument
3999 ExecuteMethodWithoutPendingException(soa, pReq);
4028 void Dbg::ExecuteMethodWithoutPendingException(ScopedObjectAccess& soa, DebugInvokeReq* pReq) { argument
4032 ArtMethod* m = pReq->method;
4034 if ((pReq->options & JDWP::INVOKE_NONVIRTUAL) == 0 && pReq->receiver.Read() != nullptr) {
4036 pReq->klass.Read()->FindVirtualMethodForVirtualOrInterface(m, image_pointer_size);
4044 << " receiver=" << pReq->receiver.Read()
4045 << " arg_count=" << pReq->arg_count;
4051 ScopedLocalRef<jobject> ref(soa.Env(), soa.AddLocalReference<jobject>(pReq
4157 FinishInvokeMethod(DebugInvokeReq* pReq) argument
[all...]

Completed in 128 milliseconds