Home
last modified time | relevance | path

Searched refs:reply (Results 1 – 3 of 3) sorted by relevance

/art/runtime/jdwp/
Djdwp_handler.cc65 static JdwpError WriteTaggedObject(ExpandBuf* reply, ObjectId object_id) in WriteTaggedObject() argument
70 expandBufAdd1(reply, tag); in WriteTaggedObject()
71 expandBufAddObjectId(reply, object_id); in WriteTaggedObject()
76 static JdwpError WriteTaggedObjectList(ExpandBuf* reply, const std::vector<ObjectId>& objects) in WriteTaggedObjectList() argument
78 expandBufAdd4BE(reply, objects.size()); in WriteTaggedObjectList()
80 JdwpError rc = WriteTaggedObject(reply, objects[i]); in WriteTaggedObjectList()
359 static JdwpError VM_Capabilities(JdwpState*, Request&, ExpandBuf* reply) in VM_Capabilities() argument
361 expandBufAdd1(reply, true); // canWatchFieldModification in VM_Capabilities()
362 expandBufAdd1(reply, true); // canWatchFieldAccess in VM_Capabilities()
363 expandBufAdd1(reply, true); // canGetBytecodes in VM_Capabilities()
[all …]
/art/runtime/
Ddebugger.cc918 JDWP::JdwpError Dbg::GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply) in GetMonitorInfo() argument
937 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.owner_->GetPeer())); in GetMonitorInfo()
939 expandBufAddObjectId(reply, gRegistry->Add(NULL)); in GetMonitorInfo()
941 expandBufAdd4BE(reply, monitor_info.entry_count_); in GetMonitorInfo()
942 expandBufAdd4BE(reply, monitor_info.waiters_.size()); in GetMonitorInfo()
944 expandBufAddObjectId(reply, gRegistry->Add(monitor_info.waiters_[i]->GetPeer())); in GetMonitorInfo()
3924 uint8_t* reply = new uint8_t[length + kChunkHdrLen]; in DdmHandlePacket() local
3925 if (reply == NULL) { in DdmHandlePacket()
3929 JDWP::Set4BE(reply + 0, type); in DdmHandlePacket()
3930 JDWP::Set4BE(reply + 4, length); in DdmHandlePacket()
[all …]
Ddebugger.h328 static JDWP::JdwpError GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply)