Lines Matching refs:request
1309 JDWP::Request* request) { in SetArrayElements() argument
1325 CopyArrayData<uint64_t>(dst, request, offset, count); in SetArrayElements()
1327 CopyArrayData<uint32_t>(dst, request, offset, count); in SetArrayElements()
1329 CopyArrayData<uint16_t>(dst, request, offset, count); in SetArrayElements()
1331 CopyArrayData<uint8_t>(dst, request, offset, count); in SetArrayElements()
1336 JDWP::ObjectId id = request->ReadObjectId(); in SetArrayElements()
2578 JDWP::JdwpError Dbg::GetLocalValues(JDWP::Request* request, JDWP::ExpandBuf* pReply) { in GetLocalValues() argument
2579 JDWP::ObjectId thread_id = request->ReadThreadId(); in GetLocalValues()
2580 JDWP::FrameId frame_id = request->ReadFrameId(); in GetLocalValues()
2597 int32_t slot_count = request->ReadSigned32("slot count"); in GetLocalValues()
2600 uint32_t slot = request->ReadUnsigned32("slot"); in GetLocalValues()
2601 JDWP::JdwpTag reqSigByte = request->ReadTag(); in GetLocalValues()
2747 JDWP::JdwpError Dbg::SetLocalValues(JDWP::Request* request) { in SetLocalValues() argument
2748 JDWP::ObjectId thread_id = request->ReadThreadId(); in SetLocalValues()
2749 JDWP::FrameId frame_id = request->ReadFrameId(); in SetLocalValues()
2766 int32_t slot_count = request->ReadSigned32("slot count"); in SetLocalValues()
2768 uint32_t slot = request->ReadUnsigned32("slot"); in SetLocalValues()
2769 JDWP::JdwpTag sigByte = request->ReadTag(); in SetLocalValues()
2771 uint64_t value = request->ReadValue(width); in SetLocalValues()
3123 void Dbg::ProcessDeoptimizationRequest(const DeoptimizationRequest& request) { in ProcessDeoptimizationRequest() argument
3125 switch (request.GetKind()) { in ProcessDeoptimizationRequest()
3131 request.InstrumentationEvent()); in ProcessDeoptimizationRequest()
3132 instrumentation->AddListener(&gDebugInstrumentationListener, request.InstrumentationEvent()); in ProcessDeoptimizationRequest()
3133 instrumentation_events_ |= request.InstrumentationEvent(); in ProcessDeoptimizationRequest()
3137 request.InstrumentationEvent()); in ProcessDeoptimizationRequest()
3139 request.InstrumentationEvent()); in ProcessDeoptimizationRequest()
3140 instrumentation_events_ &= ~request.InstrumentationEvent(); in ProcessDeoptimizationRequest()
3153 VLOG(jdwp) << "Deoptimize method " << ArtMethod::PrettyMethod(request.Method()) << " ..."; in ProcessDeoptimizationRequest()
3154 instrumentation->Deoptimize(request.Method()); in ProcessDeoptimizationRequest()
3155 VLOG(jdwp) << "Deoptimize method " << ArtMethod::PrettyMethod(request.Method()) << " DONE"; in ProcessDeoptimizationRequest()
3158 VLOG(jdwp) << "Undeoptimize method " << ArtMethod::PrettyMethod(request.Method()) << " ..."; in ProcessDeoptimizationRequest()
3159 instrumentation->Undeoptimize(request.Method()); in ProcessDeoptimizationRequest()
3160 VLOG(jdwp) << "Undeoptimize method " << ArtMethod::PrettyMethod(request.Method()) << " DONE"; in ProcessDeoptimizationRequest()
3163 LOG(FATAL) << "Unsupported deoptimization request kind " << request.GetKind(); in ProcessDeoptimizationRequest()
3268 for (DeoptimizationRequest& request : deoptimization_requests_) { in ManageDeoptimization()
3270 ProcessDeoptimizationRequest(request); in ManageDeoptimization()
4287 bool Dbg::DdmHandlePacket(JDWP::Request* request, uint8_t** pReplyBuf, int* pReplyLen) { in DdmHandlePacket() argument
4291 uint32_t type = request->ReadUnsigned32("type"); in DdmHandlePacket()
4292 uint32_t length = request->ReadUnsigned32("length"); in DdmHandlePacket()
4295 size_t request_length = request->size(); in DdmHandlePacket()
4302 ArrayRef<const jbyte> data(reinterpret_cast<const jbyte*>(request->data()), request_length); in DdmHandlePacket()
4305 request->Skip(request_length); in DdmHandlePacket()