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 void WriteValue(ExpandBuf* pReply, int width, uint64_t value) {
65 static JdwpError WriteTaggedObject(ExpandBuf* reply, ObjectId object_id)
76 static JdwpError WriteTaggedObjectList(ExpandBuf* reply, const std::vector<ObjectId>& objects)
94 static JdwpError FinishInvoke(JdwpState*, Request& request, ExpandBuf* pReply,
169 static JdwpError VM_Version(JdwpState*, Request&, ExpandBuf* pReply)
193 static JdwpError VM_ClassesBySignature(JdwpState*, Request& request, ExpandBuf* pReply)
225 static JdwpError VM_AllThreads(JdwpState*, Request&, ExpandBuf* pReply)
241 static JdwpError VM_TopLevelThreadGroups(JdwpState*, Request&, ExpandBuf* pReply)
262 static JdwpError VM_IDSizes(JdwpState*, Request&, ExpandBuf* pReply)
272 static JdwpError VM_Dispose(JdwpState*, Request&, ExpandBuf*)
    [all...]
jdwp.h 67 static inline void expandBufAddFieldId(ExpandBuf* pReply, FieldId id) { expandBufAdd4BE(pReply, id); }
68 static inline void expandBufAddMethodId(ExpandBuf* pReply, MethodId id) { expandBufAdd4BE(pReply, id); }
69 static inline void expandBufAddObjectId(ExpandBuf* pReply, ObjectId id) { expandBufAdd8BE(pReply, id); }
70 static inline void expandBufAddRefTypeId(ExpandBuf* pReply, RefTypeId id) { expandBufAdd8BE(pReply, id); }
71 static inline void expandBufAddFrameId(ExpandBuf* pReply, FrameId id) { expandBufAdd8BE(pReply, id); }
262 void SendRequest(ExpandBuf* pReq);
302 size_t ProcessRequest(Request& request, ExpandBuf* pReply);
307 void SendRequestAndPossiblySuspend(ExpandBuf* pReq, JdwpSuspendPolicy suspend_policy,
314 void EventFinish(ExpandBuf* pReq);
jdwp_priv.h 72 ssize_t WritePacket(ExpandBuf* pReply, size_t length) LOCKS_EXCLUDED(socket_lock_);
jdwp_event.cc 627 void JdwpState::SendRequestAndPossiblySuspend(ExpandBuf* pReq, JdwpSuspendPolicy suspend_policy,
717 static ExpandBuf* eventPrep() {
718 ExpandBuf* pReq = expandBufAlloc();
728 void JdwpState::EventFinish(ExpandBuf* pReq) {
766 ExpandBuf* pReq = eventPrep();
873 ExpandBuf* pReq = NULL;
957 ExpandBuf* pReq = NULL;
    [all...]
jdwp_main.cc 127 ssize_t JdwpNetStateBase::WritePacket(ExpandBuf* pReply, size_t length) {
169 void JdwpState::SendRequest(ExpandBuf* pReq) {
375 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 265 static JDWP::JdwpError GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply)
267 static JDWP::JdwpError GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply)
269 static JDWP::JdwpError GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply)
278 static JDWP::JdwpError GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply)
291 JDWP::ExpandBuf* pReply)
328 static JDWP::JdwpError GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply)
367 JDWP::ExpandBuf* pReply)
370 JDWP::ExpandBuf* pReply)
373 JDWP::ExpandBuf* pReply)
376 JDWP::ExpandBuf* pReply
    [all...]
debugger.cc 888 JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
897 JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) {
918 JDWP::JdwpError Dbg::GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply)
    [all...]
  /external/pdfium/core/src/fxcrt/
fx_basic_buffer.cpp 69 ExpandBuf(size - m_DataSize);
71 void CFX_BinaryBuf::ExpandBuf(FX_STRSIZE add_size)
105 ExpandBuf(size - m_DataSize);
115 ExpandBuf(size);
123 ExpandBuf(size);
135 ExpandBuf(count);
188 ExpandBuf(sizeof(FX_WCHAR));
210 ExpandBuf(len * sizeof(FX_WCHAR));
225 ExpandBuf(len * sizeof(FX_WCHAR));
  /external/pdfium/core/include/fxcrt/
fx_basic.h 47 ExpandBuf(1);
88 void ExpandBuf(FX_STRSIZE size);
    [all...]

Completed in 509 milliseconds