HomeSort by relevance Sort by last modified time
    Searched defs:ExpandBuf (Results 1 - 2 of 2) sorted by null

  /dalvik/vm/jdwp/
ExpandBuf.cpp 20 #include "jdwp/ExpandBuf.h"
30 struct ExpandBuf {
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* pBuf, int gapSize
    [all...]
  /dalvik/tools/hprof-conv/
HprofConv.c 102 } ExpandBuf;
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* pBuf
    [all...]

Completed in 45 milliseconds