Searched refs:request (Results 1 – 9 of 9) sorted by relevance
/art/runtime/jdwp/ |
D | jdwp_handler.cc | 88 static JdwpError RequestInvoke(JdwpState*, Request* request, in RequestInvoke() argument 94 int32_t arg_count = request->ReadSigned32("argument count"); in RequestInvoke() 106 argTypes[i] = request->ReadTag(); in RequestInvoke() 108 argValues[i] = request->ReadValue(width); in RequestInvoke() 113 uint32_t options = request->ReadUnsigned32("InvokeOptions bit flags"); in RequestInvoke() 118 JDWP::JdwpError error = Dbg::PrepareInvokeMethod(request->GetId(), thread_id, object_id, in RequestInvoke() 153 static JdwpError VM_ClassesBySignature(JdwpState*, Request* request, ExpandBuf* pReply) in VM_ClassesBySignature() argument 155 std::string classDescriptor(request->ReadUtf8String()); in VM_ClassesBySignature() 259 static JdwpError VM_Exit(JdwpState* state, Request* request, ExpandBuf*) in VM_Exit() argument 261 uint32_t exit_status = request->ReadUnsigned32("exit_status"); in VM_Exit() [all …]
|
D | jdwp_main.cc | 405 JDWP::Request request(netStateBase->input_buffer_, netStateBase->input_count_); in HandlePacket() local 409 size_t replyLength = ProcessRequest(&request, pReply, &skip_reply); in HandlePacket() 427 netStateBase->ConsumeBytes(request.GetLength()); in HandlePacket()
|
D | jdwp.h | 303 size_t ProcessRequest(Request* request, ExpandBuf* pReply, bool* skip_reply)
|
/art/test/933-misc-events/ |
D | expected.txt | 1 Received dump request.
|
/art/test/659-unpadded-array/ |
D | info.txt | 2 a bug when the request for allocation ended up using 'usable_size'
|
/art/runtime/ |
D | debugger.cc | 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() [all …]
|
D | debugger.h | 306 JDWP::Request* request) 486 static JDWP::JdwpError GetLocalValues(JDWP::Request* request, JDWP::ExpandBuf* pReply) 488 static JDWP::JdwpError SetLocalValues(JDWP::Request* request) 642 static bool DdmHandlePacket(JDWP::Request* request, uint8_t** pReplyBuf, int* pReplyLen); 752 static void ProcessDeoptimizationRequest(const DeoptimizationRequest& request)
|
/art/compiler/optimizing/ |
D | induction_var_range.h | 191 ConstantRequest request,
|
D | induction_var_range.cc | 430 ConstantRequest request, in IsConstant() argument 447 if ((request == kExact && min_val.b_constant == max_val.b_constant) || request == kAtMost) { in IsConstant() 450 } else if (request == kAtLeast) { in IsConstant()
|