Searched refs:pBuf (Results 1 - 3 of 3) sorted by relevance

/art/runtime/jdwp/
H A Djdwp_expand_buf.cc59 void expandBufFree(ExpandBuf* pBuf) { argument
60 if (pBuf == NULL) {
64 free(pBuf->storage);
65 delete pBuf;
71 uint8_t* expandBufGetBuffer(ExpandBuf* pBuf) { argument
72 return pBuf->storage;
78 size_t expandBufGetLength(ExpandBuf* pBuf) { argument
79 return pBuf->curLen;
86 static void ensureSpace(ExpandBuf* pBuf, int newCount) { argument
87 if (pBuf
106 expandBufAddSpace(ExpandBuf* pBuf, int gapSize) argument
120 expandBufAdd1(ExpandBuf* pBuf, uint8_t val) argument
129 expandBufAdd2BE(ExpandBuf* pBuf, uint16_t val) argument
138 expandBufAdd4BE(ExpandBuf* pBuf, uint32_t val) argument
147 expandBufAdd8BE(ExpandBuf* pBuf, uint64_t val) argument
166 expandBufAddUtf8String(ExpandBuf* pBuf, const char* s) argument
173 expandBufAddUtf8String(ExpandBuf* pBuf, const std::string& s) argument
[all...]
H A Djdwp_expand_buf.h37 void expandBufFree(ExpandBuf* pBuf);
43 uint8_t* expandBufGetBuffer(ExpandBuf* pBuf);
44 size_t expandBufGetLength(ExpandBuf* pBuf);
57 uint8_t* expandBufAddSpace(ExpandBuf* pBuf, int gapSize);
58 void expandBufAdd1(ExpandBuf* pBuf, uint8_t val);
59 void expandBufAdd2BE(ExpandBuf* pBuf, uint16_t val);
60 void expandBufAdd4BE(ExpandBuf* pBuf, uint32_t val);
61 void expandBufAdd8BE(ExpandBuf* pBuf, uint64_t val);
62 void expandBufAddUtf8String(ExpandBuf* pBuf, const char* s);
63 void expandBufAddUtf8String(ExpandBuf* pBuf, cons
[all...]
H A Djdwp.h60 ObjectId ReadObjectId(const uint8_t** pBuf);

Completed in 120 milliseconds