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 127 ssize_t JdwpNetStateBase::WritePacket(ExpandBuf* pReply, size_t length) {
129 DCHECK_LE(length, expandBufGetLength(pReply));
130 return TEMP_FAILURE_RETRY(write(clientSock, expandBufGetBuffer(pReply), length));
375 ExpandBuf* pReply = expandBufAlloc();
376 size_t replyLength = ProcessRequest(request, pReply);
377 ssize_t cc = netStateBase->WritePacket(pReply, replyLength);
387 expandBufFree(pReply);
390 expandBufFree(pReply);
  /art/runtime/
debugger.cc 888 JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
893 expandBufAddObjectId(pReply, gRegistry->Add(o->GetClass()->GetClassLoader()));
897 JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
913 expandBufAdd4BE(pReply, access_flags);
    [all...]

Completed in 59 milliseconds