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

/art/runtime/jdwp/
H A Djdwp_event.cc649 DebugInvokeReq* const pReq = Dbg::GetInvokeReq(); local
650 if (pReq == nullptr) {
655 Dbg::ExecuteMethod(pReq);
659 void JdwpState::SendRequestAndPossiblySuspend(ExpandBuf* pReq, JdwpSuspendPolicy suspend_policy, argument
663 CHECK(pReq != nullptr);
670 EventFinish(pReq);
686 DebugInvokeReq* pReq = Dbg::GetInvokeReq(); local
687 return pReq != nullptr;
773 ExpandBuf* pReq = expandBufAlloc(); local
774 expandBufAddSpace(pReq, kJDWPHeaderLe
783 EventFinish(ExpandBuf* pReq) argument
813 ExpandBuf* pReq = eventPrep(); local
943 ExpandBuf* pReq = eventPrep(); local
1014 ExpandBuf* pReq = eventPrep(); local
1095 ExpandBuf* pReq = eventPrep(); local
1123 ExpandBuf* pReq = eventPrep(); local
1201 ExpandBuf* pReq = eventPrep(); local
1283 ExpandBuf* pReq = eventPrep(); local
[all...]
H A Djdwp_main.cc297 void JdwpState::SendRequest(ExpandBuf* pReq) { argument
305 ssize_t actual = netState->WritePacket(pReq, expandBufGetLength(pReq));
306 if (static_cast<size_t>(actual) != expandBufGetLength(pReq)) {
308 actual, expandBufGetLength(pReq));
H A Djdwp.h263 void SendRequest(ExpandBuf* pReq);
313 void SendRequestAndPossiblySuspend(ExpandBuf* pReq, JdwpSuspendPolicy suspend_policy,
318 void EventFinish(ExpandBuf* pReq);
/art/runtime/
H A Dthread_list.cc1171 DebugInvokeReq* pReq = self->GetInvokeReq(); local
1172 const bool skip_thread_suspension = (pReq != nullptr && !Dbg::IsDebuggerActive());
1192 if (pReq != nullptr) {
1193 Dbg::FinishInvokeMethod(pReq);
1195 pReq = nullptr; // object has been deleted, clear it for safety.
H A Ddebugger.h648 static void ExecuteMethod(DebugInvokeReq* pReq);
653 static void FinishInvokeMethod(DebugInvokeReq* pReq);
739 static void ExecuteMethodWithoutPendingException(ScopedObjectAccess& soa, DebugInvokeReq* pReq)
H A Ddebugger.cc4135 void Dbg::ExecuteMethod(DebugInvokeReq* pReq) { argument
4148 ExecuteMethodWithoutPendingException(soa, pReq);
4177 void Dbg::ExecuteMethodWithoutPendingException(ScopedObjectAccess& soa, DebugInvokeReq* pReq) { argument
4181 ArtMethod* m = pReq->method;
4183 if ((pReq->options & JDWP::INVOKE_NONVIRTUAL) == 0 && pReq->receiver.Read() != nullptr) {
4185 pReq->klass.Read()->FindVirtualMethodForVirtualOrInterface(m, image_pointer_size);
4193 << " receiver=" << pReq->receiver.Read()
4194 << " arg_count=" << pReq->arg_count;
4200 ScopedLocalRef<jobject> ref(soa.Env(), soa.AddLocalReference<jobject>(pReq
4316 FinishInvokeMethod(DebugInvokeReq* pReq) argument
[all...]

Completed in 533 milliseconds