HomeSort by relevance Sort by last modified time
    Searched refs:ExpandBuf (Results 1 - 14 of 14) 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...]
JdwpHandler.h 23 #include "ExpandBuf.h"
42 const u1* buf, int dataLen, ExpandBuf* pReply);
45 void dvmJdwpAddLocation(ExpandBuf* pReply, const JdwpLocation* pLoc);
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...]
JdwpHandler.c 31 #include "jdwp/ExpandBuf.h"
73 void dvmJdwpAddLocation(ExpandBuf* pReply, const JdwpLocation* pLoc)
102 static void jdwpWriteValue(ExpandBuf* pReply, int width, u8 value)
120 const u1* buf, int dataLen, ExpandBuf* pReply,
212 int dataLen, ExpandBuf* pReply)
237 const u1* buf, int dataLen, ExpandBuf* pReply)
288 const u1* buf, int dataLen, ExpandBuf* pReply)
313 const u1* buf, int dataLen, ExpandBuf* pReply)
340 const u1* buf, int dataLen, ExpandBuf* pReply)
357 const u1* buf, int dataLen, ExpandBuf* pReply
    [all...]
Jdwp.h 28 #include "jdwp/ExpandBuf.h"
61 INLINE void expandBufAddFieldId(ExpandBuf* pReply, FieldId id) {
64 INLINE void expandBufAddMethodId(ExpandBuf* pReply, MethodId id) {
67 INLINE void expandBufAddObjectId(ExpandBuf* pReply, ObjectId id) {
70 INLINE void expandBufAddRefTypeId(ExpandBuf* pReply, RefTypeId id) {
73 INLINE void expandBufAddFrameId(ExpandBuf* pReply, FrameId id) {
JdwpPriv.h 63 bool (*sendRequest)(struct JdwpState* state, ExpandBuf* pReq);
170 INLINE bool dvmJdwpSendRequest(JdwpState* state, ExpandBuf* pReq) {
JdwpEvent.h 23 #include "ExpandBuf.h"
127 bool dvmJdwpSendRequest(JdwpState* state, ExpandBuf* pReq);
JdwpEvent.c 23 #include "jdwp/ExpandBuf.h"
705 static ExpandBuf* eventPrep(void)
707 ExpandBuf* pReq;
720 static void eventFinish(JdwpState* state, ExpandBuf* pReq)
757 ExpandBuf* pReq = NULL;
872 ExpandBuf* pReq = NULL;
956 ExpandBuf* pReq = NULL;
1005 ExpandBuf* pReq;
1066 ExpandBuf* pReq = NULL;
    [all...]
JdwpAdb.c 453 ExpandBuf* pReply = expandBufAlloc();
669 static bool sendRequest(JdwpState* state, ExpandBuf* pReq)
JdwpSocket.c 609 ExpandBuf* pReply = expandBufAlloc();
827 static bool sendRequest(JdwpState* state, ExpandBuf* pReq)
  /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...]
  /dalvik/vm/
Debugger.h 188 ExpandBuf* pReply);
203 ExpandBuf* pReply);
205 ExpandBuf* pReply);
206 void dvmDbgOutputAllInterfaces(RefTypeId refTypeId, ExpandBuf* pReply);
208 ExpandBuf* pReply);
210 bool withGeneric, ExpandBuf* pReply);
Debugger.c 1050 ExpandBuf* pReply)
1218 ExpandBuf* pReply)
    [all...]
Dvm.mk 147 jdwp/ExpandBuf.c \

Completed in 5098 milliseconds