Searched refs:reply (Results 1 – 3 of 3) sorted by relevance
/art/runtime/jdwp/ |
D | jdwp_handler.cc | 55 static JdwpError WriteTaggedObject(ExpandBuf* reply, ObjectId object_id) in WriteTaggedObject() argument 60 expandBufAdd1(reply, tag); in WriteTaggedObject() 61 expandBufAddObjectId(reply, object_id); in WriteTaggedObject() 66 static JdwpError WriteTaggedObjectList(ExpandBuf* reply, const std::vector<ObjectId>& objects) in WriteTaggedObjectList() argument 68 expandBufAdd4BE(reply, objects.size()); in WriteTaggedObjectList() 70 JdwpError rc = WriteTaggedObject(reply, objects[i]); in WriteTaggedObjectList() 313 static JdwpError VM_Capabilities(JdwpState*, Request*, ExpandBuf* reply) in VM_Capabilities() argument 315 expandBufAdd1(reply, true); // canWatchFieldModification in VM_Capabilities() 316 expandBufAdd1(reply, true); // canWatchFieldAccess in VM_Capabilities() 317 expandBufAdd1(reply, true); // canGetBytecodes in VM_Capabilities() [all …]
|
/art/runtime/ |
D | debugger.h | 63 options(invoke_options), reply(JDWP::expandBufAlloc()) { in DebugInvokeReq() 67 JDWP::expandBufFree(reply); in ~DebugInvokeReq() 82 JDWP::ExpandBuf* const reply; member 350 static JDWP::JdwpError GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply)
|
D | debugger.cc | 851 JDWP::JdwpError Dbg::GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply) { in GetMonitorInfo() argument 870 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.owner_->GetPeer())); in GetMonitorInfo() 872 expandBufAddObjectId(reply, gRegistry->Add(nullptr)); in GetMonitorInfo() 874 expandBufAdd4BE(reply, monitor_info.entry_count_); in GetMonitorInfo() 875 expandBufAdd4BE(reply, monitor_info.waiters_.size()); in GetMonitorInfo() 877 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.waiters_[i]->GetPeer())); in GetMonitorInfo() 4133 BuildInvokeReply(pReq->reply, pReq->request_id, result_tag, result_value, exceptionObjectId); in ExecuteMethodWithoutPendingException() 4160 JDWP::ExpandBuf* const pReply = pReq->reply; in FinishInvokeMethod() 4255 uint8_t* reply = new uint8_t[length + kChunkHdrLen]; in DdmHandlePacket() local 4256 if (reply == nullptr) { in DdmHandlePacket() [all …]
|