HomeSort by relevance Sort by last modified time
    Searched refs:ExpandBuf (Results 1 - 14 of 14) 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 59 static JdwpError WriteTaggedObject(ExpandBuf* reply, ObjectId object_id)
70 static JdwpError WriteTaggedObjectList(ExpandBuf* reply, const std::vector<ObjectId>& objects)
129 static JdwpError VM_Version(JdwpState*, Request*, ExpandBuf* pReply)
153 static JdwpError VM_ClassesBySignature(JdwpState*, Request* request, ExpandBuf* pReply)
185 static JdwpError VM_AllThreads(JdwpState*, Request*, ExpandBuf* pReply)
201 static JdwpError VM_TopLevelThreadGroups(JdwpState*, Request*, ExpandBuf* pReply)
220 static JdwpError VM_IDSizes(JdwpState*, Request*, ExpandBuf* pReply)
230 static JdwpError VM_Dispose(JdwpState*, Request*, ExpandBuf*)
242 static JdwpError VM_Suspend(JdwpState*, Request*, ExpandBuf*)
253 static JdwpError VM_Resume(JdwpState*, Request*, ExpandBuf*)
    [all...]
jdwp.h 71 static inline void expandBufAddFieldId(ExpandBuf* pReply, FieldId id) { expandBufAdd8BE(pReply, id); }
72 static inline void expandBufAddMethodId(ExpandBuf* pReply, MethodId id) { expandBufAdd8BE(pReply, id); }
73 static inline void expandBufAddObjectId(ExpandBuf* pReply, ObjectId id) { expandBufAdd8BE(pReply, id); }
74 static inline void expandBufAddRefTypeId(ExpandBuf* pReply, RefTypeId id) { expandBufAdd8BE(pReply, id); }
75 static inline void expandBufAddFrameId(ExpandBuf* pReply, FrameId id) { expandBufAdd8BE(pReply, id); }
259 void SendRequest(ExpandBuf* pReq);
303 size_t ProcessRequest(Request* request, ExpandBuf* pReply, bool* skip_reply)
309 void SendRequestAndPossiblySuspend(ExpandBuf* pReq, JdwpSuspendPolicy suspend_policy,
314 void EventFinish(ExpandBuf* pReq);
jdwp_priv.h 91 ssize_t WritePacket(ExpandBuf* pReply, size_t length) REQUIRES(!socket_lock_);
jdwp_event.cc 659 void JdwpState::SendRequestAndPossiblySuspend(ExpandBuf* pReq, JdwpSuspendPolicy suspend_policy,
772 static ExpandBuf* eventPrep() {
773 ExpandBuf* pReq = expandBufAlloc();
783 void JdwpState::EventFinish(ExpandBuf* pReq) {
813 ExpandBuf* pReq = eventPrep();
943 ExpandBuf* pReq = eventPrep();
    [all...]
jdwp_main.cc 132 ssize_t JdwpNetStateBase::WritePacket(ExpandBuf* pReply, size_t length) {
184 void JdwpState::SendRequest(ExpandBuf* pReq) {
407 ExpandBuf* pReply = expandBufAlloc();
  /external/pdfium/xfa/fde/css/
cfde_csstextbuf.cpp 41 return ExpandBuf(iAllocSize);
52 if (!ExpandBuf(iMaxChars))
62 bool CFDE_CSSTextBuf::ExpandBuf(int32_t iDesiredSize) {
cfde_csstextbuf.h 27 if (m_iDatLen >= m_iBufLen && !ExpandBuf(m_iBufLen * 2))
58 bool ExpandBuf(int32_t iDesiredSize);
  /dalvik/tools/hprof-conv/
HprofConv.c 116 } ExpandBuf;
119 * Create an ExpandBuf.
121 static ExpandBuf* ebAlloc(void)
125 ExpandBuf* newBuf = (ExpandBuf*) malloc(sizeof(ExpandBuf));
136 * Release the storage associated with an ExpandBuf.
138 static void ebFree(ExpandBuf* pBuf)
152 static inline unsigned char* ebGetBuffer(ExpandBuf* pBuf)
160 static inline size_t ebGetLength(ExpandBuf* pBuf
    [all...]
  /art/runtime/
debugger.h 83 JDWP::ExpandBuf* const reply;
274 static JDWP::JdwpError GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply)
276 static JDWP::JdwpError GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply)
278 static JDWP::JdwpError GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply)
287 static JDWP::JdwpError GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply)
303 JDWP::ExpandBuf* pReply)
340 static JDWP::JdwpError GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply)
379 JDWP::ExpandBuf* pReply)
382 JDWP::ExpandBuf* pReply)
385 JDWP::ExpandBuf* pReply
    [all...]
debugger.cc 759 JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
769 JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
790 JDWP::JdwpError Dbg::GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply) {
    [all...]
  /external/pdfium/core/fxcrt/
fx_basic_buffer.cpp 50 ExpandBuf(size - m_DataSize);
53 void CFX_BinaryBuf::ExpandBuf(FX_STRSIZE add_size) {
73 ExpandBuf(size);
88 ExpandBuf(size);
131 ExpandBuf(sizeof(FX_WCHAR));
150 ExpandBuf(len * sizeof(FX_WCHAR));
162 ExpandBuf(len * sizeof(FX_WCHAR));
fx_basic.h 40 ExpandBuf(1);
51 void ExpandBuf(FX_STRSIZE size);

Completed in 303 milliseconds