HomeSort by relevance Sort by last modified time
    Searched defs:pReply (Results 1 - 2 of 2) sorted by null

  /art/runtime/jdwp/
jdwp_main.cc 128 ssize_t JdwpNetStateBase::WritePacket(ExpandBuf* pReply, size_t length) {
129 DCHECK_LE(length, expandBufGetLength(pReply));
135 return TEMP_FAILURE_RETRY(write(clientSock, expandBufGetBuffer(pReply), length));
400 ExpandBuf* pReply = expandBufAlloc();
402 size_t replyLength = ProcessRequest(&request, pReply, &skip_reply);
405 cc = netStateBase->WritePacket(pReply, replyLength);
409 expandBufFree(pReply);
  /art/runtime/
debugger.cc 759 JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
765 expandBufAddObjectId(pReply, gRegistry->Add(c->GetClassLoader()));
769 JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
785 expandBufAdd4BE(pReply, access_flags);
    [all...]

Completed in 203 milliseconds