Searched defs:pBuf (Results 1 – 5 of 5) sorted by relevance
/dalvik/vm/jdwp/ |
D | ExpandBuf.cpp | 56 void expandBufFree(ExpandBuf* pBuf) in expandBufFree() 68 u1* expandBufGetBuffer(ExpandBuf* pBuf) in expandBufGetBuffer() 76 size_t expandBufGetLength(ExpandBuf* pBuf) in expandBufGetLength() 86 static void ensureSpace(ExpandBuf* pBuf, int newCount) in ensureSpace() 108 u1* expandBufAddSpace(ExpandBuf* pBuf, int gapSize) in expandBufAddSpace() 123 void expandBufAdd1(ExpandBuf* pBuf, u1 val) in expandBufAdd1() 133 void expandBufAdd2BE(ExpandBuf* pBuf, u2 val) in expandBufAdd2BE() 143 void expandBufAdd4BE(ExpandBuf* pBuf, u4 val) in expandBufAdd4BE() 153 void expandBufAdd8BE(ExpandBuf* pBuf, u8 val) in expandBufAdd8BE() 168 void expandBufAddUtf8String(ExpandBuf* pBuf, const u1* str) in expandBufAddUtf8String()
|
D | Jdwp.h | 50 INLINE FieldId dvmReadFieldId(const u1** pBuf) { return read4BE(pBuf); } in dvmReadFieldId() 51 INLINE MethodId dvmReadMethodId(const u1** pBuf) { return read4BE(pBuf); } in dvmReadMethodId() 52 INLINE ObjectId dvmReadObjectId(const u1** pBuf) { return read8BE(pBuf); } in dvmReadObjectId() 53 INLINE RefTypeId dvmReadRefTypeId(const u1** pBuf) { return read8BE(pBuf); } in dvmReadRefTypeId() 54 INLINE FrameId dvmReadFrameId(const u1** pBuf) { return read8BE(pBuf); } in dvmReadFrameId()
|
D | JdwpHandler.cpp | 44 static void jdwpReadLocation(const u1** pBuf, JdwpLocation* pLoc) in jdwpReadLocation() 67 static u8 jdwpReadValue(const u1** pBuf, int width) in jdwpReadValue()
|
/dalvik/tools/hprof-conv/ |
D | HprofConv.c | 124 static void ebFree(ExpandBuf* pBuf) in ebFree() 138 static inline unsigned char* ebGetBuffer(ExpandBuf* pBuf) in ebGetBuffer() 146 static inline size_t ebGetLength(ExpandBuf* pBuf) in ebGetLength() 154 static void ebClear(ExpandBuf* pBuf) in ebClear() 162 static int ebEnsureCapacity(ExpandBuf* pBuf, int size) in ebEnsureCapacity() 185 static int ebAddData(ExpandBuf* pBuf, const void* data, size_t count) in ebAddData() 196 static int ebReadString(ExpandBuf* pBuf, FILE* in) in ebReadString() 221 static int ebReadData(ExpandBuf* pBuf, FILE* in, size_t count, int eofExpected) in ebReadData() 247 static int ebWriteData(ExpandBuf* pBuf, FILE* out) in ebWriteData() 426 static int processHeapDump(ExpandBuf* pBuf, FILE* out) in processHeapDump() [all …]
|
/dalvik/vm/reflect/ |
D | Annotation.cpp | 60 static u4 readUleb128(const u1** pBuf) in readUleb128()
|