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

  /dalvik/vm/jdwp/
ExpandBuf.h 24 struct ExpandBuf; /* private */
25 typedef struct ExpandBuf ExpandBuf;
28 ExpandBuf* expandBufAlloc(void);
30 void expandBufFree(ExpandBuf* pBuf);
36 u1* expandBufGetBuffer(ExpandBuf* pBuf);
37 size_t expandBufGetLength(ExpandBuf* pBuf);
50 u1* expandBufAddSpace(ExpandBuf* pBuf, int gapSize);
51 void expandBufAdd1(ExpandBuf* pBuf, u1 val);
52 void expandBufAdd2BE(ExpandBuf* pBuf, u2 val)
    [all...]
ExpandBuf.c 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
    [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 29 milliseconds