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

  /art/runtime/jdwp/
jdwp_expand_buf.h 31 struct ExpandBuf; /* private */
35 ExpandBuf* expandBufAlloc();
37 void expandBufFree(ExpandBuf* pBuf);
43 uint8_t* expandBufGetBuffer(ExpandBuf* pBuf);
44 size_t expandBufGetLength(ExpandBuf* pBuf);
57 uint8_t* expandBufAddSpace(ExpandBuf* pBuf, int gapSize);
58 void expandBufAdd1(ExpandBuf* pBuf, uint8_t val);
59 void expandBufAdd2BE(ExpandBuf* pBuf, uint16_t val);
60 void expandBufAdd4BE(ExpandBuf* pBuf, uint32_t val);
61 void expandBufAdd8BE(ExpandBuf* pBuf, uint64_t val)
    [all...]
jdwp_expand_buf.cc 37 struct ExpandBuf {
48 ExpandBuf* expandBufAlloc() {
49 ExpandBuf* newBuf = new ExpandBuf;
59 void expandBufFree(ExpandBuf* pBuf) {
71 uint8_t* expandBufGetBuffer(ExpandBuf* pBuf) {
78 size_t expandBufGetLength(ExpandBuf* pBuf) {
86 static void ensureSpace(ExpandBuf* pBuf, int newCount) {
106 uint8_t* expandBufAddSpace(ExpandBuf* pBuf, int gapSize) {
120 void expandBufAdd1(ExpandBuf* pBuf, uint8_t val)
    [all...]
jdwp_handler.cc 55 static JdwpError WriteTaggedObject(ExpandBuf* reply, ObjectId object_id)
66 static JdwpError WriteTaggedObjectList(ExpandBuf* reply, const std::vector<ObjectId>& objects)
125 static JdwpError VM_Version(JdwpState*, Request*, ExpandBuf* pReply)
149 static JdwpError VM_ClassesBySignature(JdwpState*, Request* request, ExpandBuf* pReply)
181 static JdwpError VM_AllThreads(JdwpState*, Request*, ExpandBuf* pReply)
197 static JdwpError VM_TopLevelThreadGroups(JdwpState*, Request*, ExpandBuf* pReply)
216 static JdwpError VM_IDSizes(JdwpState*, Request*, ExpandBuf* pReply)
226 static JdwpError VM_Dispose(JdwpState*, Request*, ExpandBuf*)
238 static JdwpError VM_Suspend(JdwpState*, Request*, ExpandBuf*)
250 static JdwpError VM_Resume(JdwpState*, Request*, ExpandBuf*)
    [all...]
jdwp.h 70 static inline void expandBufAddFieldId(ExpandBuf* pReply, FieldId id) { expandBufAdd8BE(pReply, id); }
71 static inline void expandBufAddMethodId(ExpandBuf* pReply, MethodId id) { expandBufAdd8BE(pReply, id); }
72 static inline void expandBufAddObjectId(ExpandBuf* pReply, ObjectId id) { expandBufAdd8BE(pReply, id); }
73 static inline void expandBufAddRefTypeId(ExpandBuf* pReply, RefTypeId id) { expandBufAdd8BE(pReply, id); }
74 static inline void expandBufAddFrameId(ExpandBuf* pReply, FrameId id) { expandBufAdd8BE(pReply, id); }
260 void SendRequest(ExpandBuf* pReq);
300 size_t ProcessRequest(Request* request, ExpandBuf* pReply, bool* skip_reply);
305 void SendRequestAndPossiblySuspend(ExpandBuf* pReq, JdwpSuspendPolicy suspend_policy,
311 void EventFinish(ExpandBuf* pReq);
jdwp_priv.h 89 ssize_t WritePacket(ExpandBuf* pReply, size_t length) LOCKS_EXCLUDED(socket_lock_);
jdwp_event.cc 619 void JdwpState::SendRequestAndPossiblySuspend(ExpandBuf* pReq, JdwpSuspendPolicy suspend_policy,
731 static ExpandBuf* eventPrep() {
732 ExpandBuf* pReq = expandBufAlloc();
742 void JdwpState::EventFinish(ExpandBuf* pReq) {
772 ExpandBuf* pReq = eventPrep();
902 ExpandBuf* pReq = eventPrep();
    [all...]
jdwp_main.cc 128 ssize_t JdwpNetStateBase::WritePacket(ExpandBuf* pReply, size_t length) {
177 void JdwpState::SendRequest(ExpandBuf* pReq) {
397 ExpandBuf* pReply = expandBufAlloc();
  /dalvik/tools/hprof-conv/
HprofConv.c 111 } ExpandBuf;
114 * Create an ExpandBuf.
116 static ExpandBuf* ebAlloc(void)
120 ExpandBuf* newBuf = (ExpandBuf*) malloc(sizeof(ExpandBuf));
131 * Release the storage associated with an ExpandBuf.
133 static void ebFree(ExpandBuf* pBuf)
147 static inline unsigned char* ebGetBuffer(ExpandBuf* pBuf)
155 static inline size_t ebGetLength(ExpandBuf* pBuf
    [all...]
  /art/runtime/
debugger.h 82 JDWP::ExpandBuf* const reply;
287 static JDWP::JdwpError GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply)
289 static JDWP::JdwpError GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply)
291 static JDWP::JdwpError GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply)
300 static JDWP::JdwpError GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply)
313 JDWP::ExpandBuf* pReply)
350 static JDWP::JdwpError GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply)
389 JDWP::ExpandBuf* pReply)
392 JDWP::ExpandBuf* pReply)
395 JDWP::ExpandBuf* pReply
    [all...]
debugger.cc 820 JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
830 JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
851 JDWP::JdwpError Dbg::GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply) {
    [all...]
  /external/pdfium/core/src/fxcrt/
fx_basic_buffer.cpp 67 ExpandBuf(size - m_DataSize);
69 void CFX_BinaryBuf::ExpandBuf(FX_STRSIZE add_size)
101 ExpandBuf(size - m_DataSize);
111 ExpandBuf(size);
119 ExpandBuf(size);
131 ExpandBuf(count);
180 ExpandBuf(sizeof(FX_WCHAR));
202 ExpandBuf(len * sizeof(FX_WCHAR));
217 ExpandBuf(len * sizeof(FX_WCHAR));
  /external/pdfium/core/include/fxcrt/
fx_basic.h 54 ExpandBuf(1);
92 void ExpandBuf(FX_STRSIZE size);
    [all...]

Completed in 786 milliseconds