• Home
  • Raw
  • Download

Lines Matching refs:request

1242                                       JDWP::Request* request) {  in SetArrayElements()  argument
1258 CopyArrayData<uint64_t>(dst, request, offset, count); in SetArrayElements()
1260 CopyArrayData<uint32_t>(dst, request, offset, count); in SetArrayElements()
1262 CopyArrayData<uint16_t>(dst, request, offset, count); in SetArrayElements()
1264 CopyArrayData<uint8_t>(dst, request, offset, count); in SetArrayElements()
1269 JDWP::ObjectId id = request->ReadObjectId(); in SetArrayElements()
2570 JDWP::JdwpError Dbg::GetLocalValues(JDWP::Request* request, JDWP::ExpandBuf* pReply) { in GetLocalValues() argument
2571 JDWP::ObjectId thread_id = request->ReadThreadId(); in GetLocalValues()
2572 JDWP::FrameId frame_id = request->ReadFrameId(); in GetLocalValues()
2592 int32_t slot_count = request->ReadSigned32("slot count"); in GetLocalValues()
2595 uint32_t slot = request->ReadUnsigned32("slot"); in GetLocalValues()
2596 JDWP::JdwpTag reqSigByte = request->ReadTag(); in GetLocalValues()
2741 JDWP::JdwpError Dbg::SetLocalValues(JDWP::Request* request) { in SetLocalValues() argument
2742 JDWP::ObjectId thread_id = request->ReadThreadId(); in SetLocalValues()
2743 JDWP::FrameId frame_id = request->ReadFrameId(); in SetLocalValues()
2763 int32_t slot_count = request->ReadSigned32("slot count"); in SetLocalValues()
2765 uint32_t slot = request->ReadUnsigned32("slot"); in SetLocalValues()
2766 JDWP::JdwpTag sigByte = request->ReadTag(); in SetLocalValues()
2768 uint64_t value = request->ReadValue(width); in SetLocalValues()
3156 void Dbg::ProcessDeoptimizationRequest(const DeoptimizationRequest& request) { in ProcessDeoptimizationRequest() argument
3158 switch (request.GetKind()) { in ProcessDeoptimizationRequest()
3164 request.InstrumentationEvent()); in ProcessDeoptimizationRequest()
3165 instrumentation->AddListener(&gDebugInstrumentationListener, request.InstrumentationEvent()); in ProcessDeoptimizationRequest()
3166 instrumentation_events_ |= request.InstrumentationEvent(); in ProcessDeoptimizationRequest()
3170 request.InstrumentationEvent()); in ProcessDeoptimizationRequest()
3172 request.InstrumentationEvent()); in ProcessDeoptimizationRequest()
3173 instrumentation_events_ &= ~request.InstrumentationEvent(); in ProcessDeoptimizationRequest()
3186 VLOG(jdwp) << "Deoptimize method " << ArtMethod::PrettyMethod(request.Method()) << " ..."; in ProcessDeoptimizationRequest()
3187 instrumentation->Deoptimize(request.Method()); in ProcessDeoptimizationRequest()
3188 VLOG(jdwp) << "Deoptimize method " << ArtMethod::PrettyMethod(request.Method()) << " DONE"; in ProcessDeoptimizationRequest()
3191 VLOG(jdwp) << "Undeoptimize method " << ArtMethod::PrettyMethod(request.Method()) << " ..."; in ProcessDeoptimizationRequest()
3192 instrumentation->Undeoptimize(request.Method()); in ProcessDeoptimizationRequest()
3193 VLOG(jdwp) << "Undeoptimize method " << ArtMethod::PrettyMethod(request.Method()) << " DONE"; in ProcessDeoptimizationRequest()
3196 LOG(FATAL) << "Unsupported deoptimization request kind " << request.GetKind(); in ProcessDeoptimizationRequest()
3301 for (DeoptimizationRequest& request : deoptimization_requests_) { in ManageDeoptimization()
3303 ProcessDeoptimizationRequest(request); in ManageDeoptimization()
4272 bool Dbg::DdmHandlePacket(JDWP::Request* request, uint8_t** pReplyBuf, int* pReplyLen) { in DdmHandlePacket() argument
4276 uint32_t type = request->ReadUnsigned32("type"); in DdmHandlePacket()
4277 uint32_t length = request->ReadUnsigned32("length"); in DdmHandlePacket()
4280 size_t request_length = request->size(); in DdmHandlePacket()
4288 reinterpret_cast<const jbyte*>(request->data())); in DdmHandlePacket()
4289 request->Skip(request_length); in DdmHandlePacket()