Home
last modified time | relevance | path

Searched refs:expandBufGetLength (Results 1 – 5 of 5) sorted by relevance

/art/runtime/jdwp/
Djdwp_expand_buf.h44 size_t expandBufGetLength(ExpandBuf* pBuf);
Djdwp_main.cc246 DCHECK_LE(length, expandBufGetLength(pReply)); in WritePacket()
305 ssize_t actual = netState->WritePacket(pReq, expandBufGetLength(pReq)); in SendRequest()
306 if (static_cast<size_t>(actual) != expandBufGetLength(pReq)) { in SendRequest()
308 actual, expandBufGetLength(pReq)); in SendRequest()
Djdwp_expand_buf.cc79 size_t expandBufGetLength(ExpandBuf* pBuf) { in expandBufGetLength() function
Djdwp_handler.cc1684 replyLength = (result == ERR_NONE) ? expandBufGetLength(pReply) : kJDWPHeaderLen; in ProcessRequest()
1690 CHECK_GT(expandBufGetLength(pReply), 0U) << GetCommandName(request) << " " << request->GetId(); in ProcessRequest()
1692 size_t respLen = expandBufGetLength(pReply) - kJDWPHeaderLen; in ProcessRequest()
Djdwp_event.cc786 Set4BE(buf + kJDWPHeaderSizeOffset, expandBufGetLength(pReq)); in EventFinish()