Home
last modified time | relevance | path

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

/art/runtime/jdwp/
Djdwp_expand_buf.cc39 int curLen; member
51 newBuf->curLen = 0; in expandBufAlloc()
79 return pBuf->curLen; in expandBufGetLength()
87 if (pBuf->curLen + newCount <= pBuf->maxLen) { in ensureSpace()
91 while (pBuf->curLen + newCount > pBuf->maxLen) { in ensureSpace()
110 gapStart = pBuf->storage + pBuf->curLen; in expandBufAddSpace()
112 pBuf->curLen += gapSize; in expandBufAddSpace()
122 *(pBuf->storage + pBuf->curLen) = val; in expandBufAdd1()
123 pBuf->curLen++; in expandBufAdd1()
131 Set2BE(pBuf->storage + pBuf->curLen, val); in expandBufAdd2BE()
[all …]