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 56 static JdwpError WriteTaggedObject(ExpandBuf* reply, ObjectId object_id)
67 static JdwpError WriteTaggedObjectList(ExpandBuf* reply, const std::vector<ObjectId>& objects)
126 static JdwpError VM_Version(JdwpState*, Request*, ExpandBuf* pReply)
150 static JdwpError VM_ClassesBySignature(JdwpState*, Request* request, ExpandBuf* pReply)
182 static JdwpError VM_AllThreads(JdwpState*, Request*, ExpandBuf* pReply)
198 static JdwpError VM_TopLevelThreadGroups(JdwpState*, Request*, ExpandBuf* pReply)
217 static JdwpError VM_IDSizes(JdwpState*, Request*, ExpandBuf* pReply)
227 static JdwpError VM_Dispose(JdwpState*, Request*, ExpandBuf*)
239 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); }
258 void SendRequest(ExpandBuf* pReq);
298 size_t ProcessRequest(Request* request, ExpandBuf* pReply, bool* skip_reply)
304 void SendRequestAndPossiblySuspend(ExpandBuf* pReq, JdwpSuspendPolicy suspend_policy,
309 void EventFinish(ExpandBuf* pReq);
jdwp_priv.h 91 ssize_t WritePacket(ExpandBuf* pReply, size_t length) REQUIRES(!socket_lock_);
jdwp_event.cc 619 void JdwpState::SendRequestAndPossiblySuspend(ExpandBuf* pReq, JdwpSuspendPolicy suspend_policy,
730 static ExpandBuf* eventPrep() {
731 ExpandBuf* pReq = expandBufAlloc();
741 void JdwpState::EventFinish(ExpandBuf* pReq) {
771 ExpandBuf* pReq = eventPrep();
901 ExpandBuf* pReq = eventPrep();
    [all...]
jdwp_main.cc 128 ssize_t JdwpNetStateBase::WritePacket(ExpandBuf* pReply, size_t length) {
180 void JdwpState::SendRequest(ExpandBuf* pReq) {
400 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 80 JDWP::ExpandBuf* const reply;
270 static JDWP::JdwpError GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply)
272 static JDWP::JdwpError GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply)
274 static JDWP::JdwpError GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply)
283 static JDWP::JdwpError GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply)
296 JDWP::ExpandBuf* pReply)
333 static JDWP::JdwpError GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply)
370 JDWP::ExpandBuf* pReply)
373 JDWP::ExpandBuf* pReply)
376 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/src/fxcrt/
fx_basic_buffer.cpp 52 ExpandBuf(size - m_DataSize);
54 void CFX_BinaryBuf::ExpandBuf(FX_STRSIZE add_size) {
84 ExpandBuf(size - m_DataSize);
93 ExpandBuf(size);
102 ExpandBuf(size);
113 ExpandBuf(count);
154 ExpandBuf(sizeof(FX_WCHAR));
173 ExpandBuf(len * sizeof(FX_WCHAR));
187 ExpandBuf(len * sizeof(FX_WCHAR));
  /external/pdfium/xfa/src/fdp/src/css/
fde_csssyntax.h 20 if (m_iDatLen >= m_iBufLen && !ExpandBuf(m_iBufLen * 2)) {
46 FX_BOOL ExpandBuf(int32_t iDesiredSize);
fde_csssyntax.cpp 435 return ExpandBuf(iAllocSize);
444 if (!ExpandBuf(iMaxChars)) {
455 FX_BOOL CFDE_CSSTextBuf::ExpandBuf(int32_t iDesiredSize) {
  /external/pdfium/core/include/fxcrt/
fx_basic.h 53 ExpandBuf(1);
85 void ExpandBuf(FX_STRSIZE size);

Completed in 414 milliseconds