Searched refs:request (Results 1 – 6 of 6) sorted by relevance
/art/runtime/jdwp/ |
D | jdwp_handler.cc | 94 static JdwpError FinishInvoke(JdwpState*, Request& request, ExpandBuf* pReply, in FinishInvoke() argument 100 int32_t arg_count = request.ReadSigned32("argument count"); in FinishInvoke() 112 argTypes[i] = request.ReadTag(); in FinishInvoke() 114 argValues[i] = request.ReadValue(width); in FinishInvoke() 119 uint32_t options = request.ReadUnsigned32("InvokeOptions bit flags"); in FinishInvoke() 193 static JdwpError VM_ClassesBySignature(JdwpState*, Request& request, ExpandBuf* pReply) in VM_ClassesBySignature() argument 195 std::string classDescriptor(request.ReadUtf8String()); in VM_ClassesBySignature() 303 static JdwpError VM_Exit(JdwpState* state, Request& request, ExpandBuf*) in VM_Exit() argument 305 uint32_t exit_status = request.ReadUnsigned32("exit_status"); in VM_Exit() 316 static JdwpError VM_CreateString(JdwpState*, Request& request, ExpandBuf* pReply) in VM_CreateString() argument [all …]
|
D | jdwp_main.cc | 373 JDWP::Request request(netStateBase->input_buffer_, netStateBase->input_count_); in HandlePacket() local 376 size_t replyLength = ProcessRequest(request, pReply); in HandlePacket() 391 netStateBase->ConsumeBytes(request.GetLength()); in HandlePacket()
|
D | jdwp.h | 302 size_t ProcessRequest(Request& request, ExpandBuf* pReply);
|
/art/test/030-bad-finalizer/ |
D | expected.txt | 1 About to null reference and request GC.
|
/art/runtime/ |
D | debugger.cc | 1362 JDWP::Request& request) in SetArrayElements() argument 1379 CopyArrayData<uint64_t>(dst, request, offset, count); in SetArrayElements() 1381 CopyArrayData<uint32_t>(dst, request, offset, count); in SetArrayElements() 1383 CopyArrayData<uint16_t>(dst, request, offset, count); in SetArrayElements() 1385 CopyArrayData<uint8_t>(dst, request, offset, count); in SetArrayElements() 1390 JDWP::ObjectId id = request.ReadObjectId(); in SetArrayElements() 2508 JDWP::JdwpError Dbg::GetLocalValues(JDWP::Request* request, JDWP::ExpandBuf* pReply) { in GetLocalValues() argument 2509 JDWP::ObjectId thread_id = request->ReadThreadId(); in GetLocalValues() 2510 JDWP::FrameId frame_id = request->ReadFrameId(); in GetLocalValues() 2530 int32_t slot_count = request->ReadSigned32("slot count"); in GetLocalValues() [all …]
|
D | debugger.h | 294 JDWP::Request& request) 484 static JDWP::JdwpError GetLocalValues(JDWP::Request* request, JDWP::ExpandBuf* pReply) 487 static JDWP::JdwpError SetLocalValues(JDWP::Request* request) 581 static bool DdmHandlePacket(JDWP::Request& request, uint8_t** pReplyBuf, int* pReplyLen); 670 static void ProcessDeoptimizationRequest(const DeoptimizationRequest& request)
|