Searched defs:ExpandBuf (Results 1 - 2 of 2) sorted by relevance

/dalvik/vm/jdwp/
H A DExpandBuf.cpp20 #include "jdwp/ExpandBuf.h"
30 struct ExpandBuf { struct
41 ExpandBuf* expandBufAlloc()
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* pBu
[all...]
/dalvik/tools/hprof-conv/
H A DHprofConv.c102 } ExpandBuf; typedef in typeref:struct:__anon14
105 * Create an ExpandBuf.
107 static ExpandBuf* ebAlloc(void)
111 ExpandBuf* newBuf = (ExpandBuf*) malloc(sizeof(ExpandBuf));
122 * Release the storage associated with an ExpandBuf.
124 static void ebFree(ExpandBuf* pBuf)
138 static inline unsigned char* ebGetBuffer(ExpandBuf* pBuf)
146 static inline size_t ebGetLength(ExpandBuf* pBu
[all...]

Completed in 67 milliseconds