• Home
  • History
  • Annotate
  • Raw
  • Download

Lines Matching refs:pReq

3990 void Dbg::ExecuteMethod(DebugInvokeReq* pReq) {  in ExecuteMethod()  argument
4003 ExecuteMethodWithoutPendingException(soa, pReq); in ExecuteMethod()
4032 void Dbg::ExecuteMethodWithoutPendingException(ScopedObjectAccess& soa, DebugInvokeReq* pReq) { in ExecuteMethodWithoutPendingException() argument
4036 ArtMethod* m = pReq->method; in ExecuteMethodWithoutPendingException()
4038 if ((pReq->options & JDWP::INVOKE_NONVIRTUAL) == 0 && pReq->receiver.Read() != nullptr) { in ExecuteMethodWithoutPendingException()
4040 pReq->klass.Read()->FindVirtualMethodForVirtualOrInterface(m, image_pointer_size); in ExecuteMethodWithoutPendingException()
4048 << " receiver=" << pReq->receiver.Read() in ExecuteMethodWithoutPendingException()
4049 << " arg_count=" << pReq->arg_count; in ExecuteMethodWithoutPendingException()
4055 ScopedLocalRef<jobject> ref(soa.Env(), soa.AddLocalReference<jobject>(pReq->receiver.Read())); in ExecuteMethodWithoutPendingException()
4057 reinterpret_cast<jvalue*>(pReq->arg_values.get())); in ExecuteMethodWithoutPendingException()
4109 result_value = GetObjectRegistry()->Add(pReq->receiver.Read()); in ExecuteMethodWithoutPendingException()
4110 result_tag = TagFromObject(soa, pReq->receiver.Read()); in ExecuteMethodWithoutPendingException()
4119 if ((pReq->options & JDWP::INVOKE_SINGLE_THREADED) == 0) { in ExecuteMethodWithoutPendingException()
4147 BuildInvokeReply(pReq->reply, pReq->request_id, result_tag, result_value, exceptionObjectId); in ExecuteMethodWithoutPendingException()
4171 void Dbg::FinishInvokeMethod(DebugInvokeReq* pReq) { in FinishInvokeMethod() argument
4174 JDWP::ExpandBuf* const pReply = pReq->reply; in FinishInvokeMethod()
4180 gJdwpState->AcquireJdwpTokenForEvent(pReq->thread_id); in FinishInvokeMethod()
4186 pReq->request_id, replyDataLength); in FinishInvokeMethod()