Lines Matching refs:pReq
3980 void Dbg::ExecuteMethod(DebugInvokeReq* pReq) {
3993 ExecuteMethodWithoutPendingException(soa, pReq);
4022 void Dbg::ExecuteMethodWithoutPendingException(ScopedObjectAccess& soa, DebugInvokeReq* pReq) {
4026 ArtMethod* m = pReq->method;
4028 if ((pReq->options & JDWP::INVOKE_NONVIRTUAL) == 0 && pReq->receiver.Read() != nullptr) {
4030 pReq->klass.Read()->FindVirtualMethodForVirtualOrInterface(m, image_pointer_size);
4038 << " receiver=" << pReq->receiver.Read()
4039 << " arg_count=" << pReq->arg_count;
4045 ScopedLocalRef<jobject> ref(soa.Env(), soa.AddLocalReference<jobject>(pReq->receiver.Read()));
4047 reinterpret_cast<jvalue*>(pReq->arg_values.get()));
4093 result_value = GetObjectRegistry()->Add(pReq->receiver.Read());
4094 result_tag = TagFromObject(soa, pReq->receiver.Read());
4102 if ((pReq->options & JDWP::INVOKE_SINGLE_THREADED) == 0) {
4128 BuildInvokeReply(pReq->reply, pReq->request_id, result_tag, result_value, exceptionObjectId);
4152 void Dbg::FinishInvokeMethod(DebugInvokeReq* pReq) {
4155 JDWP::ExpandBuf* const pReply = pReq->reply;
4161 gJdwpState->AcquireJdwpTokenForEvent(pReq->thread_id);
4167 pReq->request_id, replyDataLength);