Home | History | Annotate | Download | only in jdwp

Lines Matching refs:ExpandBuf

20 #include "jdwp/ExpandBuf.h"
30 struct ExpandBuf {
41 ExpandBuf* expandBufAlloc(void)
43 ExpandBuf* newBuf;
45 newBuf = (ExpandBuf*) malloc(sizeof(*newBuf));
56 void expandBufFree(ExpandBuf* pBuf)
68 u1* expandBufGetBuffer(ExpandBuf* pBuf)
76 size_t expandBufGetLength(ExpandBuf* pBuf)
86 static void ensureSpace(ExpandBuf* pBuf, int newCount)
108 u1* expandBufAddSpace(ExpandBuf* pBuf, int gapSize)
123 void expandBufAdd1(ExpandBuf* pBuf, u1 val)
133 void expandBufAdd2BE(ExpandBuf* pBuf, u2 val)
143 void expandBufAdd4BE(ExpandBuf* pBuf, u4 val)
153 void expandBufAdd8BE(ExpandBuf* pBuf, u8 val)
168 void expandBufAddUtf8String(ExpandBuf* pBuf, const u1* str)