Searched refs:request (Results 1 – 6 of 6) sorted by relevance
/art/runtime/jdwp/ |
D | jdwp_handler.cc | 84 static JdwpError RequestInvoke(JdwpState*, Request* request, in RequestInvoke() argument 90 int32_t arg_count = request->ReadSigned32("argument count"); in RequestInvoke() 102 argTypes[i] = request->ReadTag(); in RequestInvoke() 104 argValues[i] = request->ReadValue(width); in RequestInvoke() 109 uint32_t options = request->ReadUnsigned32("InvokeOptions bit flags"); in RequestInvoke() 114 JDWP::JdwpError error = Dbg::PrepareInvokeMethod(request->GetId(), thread_id, object_id, in RequestInvoke() 149 static JdwpError VM_ClassesBySignature(JdwpState*, Request* request, ExpandBuf* pReply) in VM_ClassesBySignature() argument 151 std::string classDescriptor(request->ReadUtf8String()); in VM_ClassesBySignature() 256 static JdwpError VM_Exit(JdwpState* state, Request* request, ExpandBuf*) in VM_Exit() argument 258 uint32_t exit_status = request->ReadUnsigned32("exit_status"); in VM_Exit() [all …]
|
D | jdwp_main.cc | 395 JDWP::Request request(netStateBase->input_buffer_, netStateBase->input_count_); in HandlePacket() local 399 size_t replyLength = ProcessRequest(&request, pReply, &skip_reply); in HandlePacket() 417 netStateBase->ConsumeBytes(request.GetLength()); in HandlePacket()
|
D | jdwp.h | 300 size_t ProcessRequest(Request* request, ExpandBuf* pReply, bool* skip_reply);
|
/art/test/030-bad-finalizer/ |
D | expected.txt | 1 About to null reference and request GC.
|
/art/runtime/ |
D | debugger.cc | 1290 JDWP::Request* request) { in SetArrayElements() argument 1306 CopyArrayData<uint64_t>(dst, request, offset, count); in SetArrayElements() 1308 CopyArrayData<uint32_t>(dst, request, offset, count); in SetArrayElements() 1310 CopyArrayData<uint16_t>(dst, request, offset, count); in SetArrayElements() 1312 CopyArrayData<uint8_t>(dst, request, offset, count); in SetArrayElements() 1317 JDWP::ObjectId id = request->ReadObjectId(); in SetArrayElements() 2563 JDWP::JdwpError Dbg::GetLocalValues(JDWP::Request* request, JDWP::ExpandBuf* pReply) { in GetLocalValues() argument 2564 JDWP::ObjectId thread_id = request->ReadThreadId(); in GetLocalValues() 2565 JDWP::FrameId frame_id = request->ReadFrameId(); in GetLocalValues() 2585 int32_t slot_count = request->ReadSigned32("slot count"); in GetLocalValues() [all …]
|
D | debugger.h | 316 JDWP::Request* request) 506 static JDWP::JdwpError GetLocalValues(JDWP::Request* request, JDWP::ExpandBuf* pReply) 509 static JDWP::JdwpError SetLocalValues(JDWP::Request* request) 664 static bool DdmHandlePacket(JDWP::Request* request, uint8_t** pReplyBuf, int* pReplyLen); 767 static void ProcessDeoptimizationRequest(const DeoptimizationRequest& request)
|