Searched refs:pReply (Results 1 - 7 of 7) sorted by relevance

/art/runtime/jdwp/
H A Djdwp_handler.cc125 static JdwpError VM_Version(JdwpState*, Request*, ExpandBuf* pReply)
129 expandBufAddUtf8String(pReply, version);
132 expandBufAdd4BE(pReply, 1);
133 expandBufAdd4BE(pReply, 6);
136 expandBufAddUtf8String(pReply, "1.6.0");
139 expandBufAddUtf8String(pReply, "Dalvik");
149 static JdwpError VM_ClassesBySignature(JdwpState*, Request* request, ExpandBuf* pReply)
156 expandBufAdd4BE(pReply, ids.size());
167 expandBufAdd1(pReply, type_tag);
168 expandBufAddRefTypeId(pReply, id
1581 ProcessRequest(Request* request, ExpandBuf* pReply, bool* skip_reply) argument
[all...]
H A Djdwp_expand_buf.h64 void expandBufAddLocation(ExpandBuf* pReply, const JdwpLocation& location);
H A Djdwp.h70 static inline void expandBufAddFieldId(ExpandBuf* pReply, FieldId id) { expandBufAdd8BE(pReply, id); } argument
71 static inline void expandBufAddMethodId(ExpandBuf* pReply, MethodId id) { expandBufAdd8BE(pReply, id); } argument
72 static inline void expandBufAddObjectId(ExpandBuf* pReply, ObjectId id) { expandBufAdd8BE(pReply, id); } argument
73 static inline void expandBufAddRefTypeId(ExpandBuf* pReply, RefTypeId id) { expandBufAdd8BE(pReply, id); } argument
74 static inline void expandBufAddFrameId(ExpandBuf* pReply, FrameId id) { expandBufAdd8BE(pReply, i argument
[all...]
H A Djdwp_main.cc128 ssize_t JdwpNetStateBase::WritePacket(ExpandBuf* pReply, size_t length) { argument
131 DCHECK_LE(length, expandBufGetLength(pReply));
132 return TEMP_FAILURE_RETRY(write(clientSock, expandBufGetBuffer(pReply), length));
397 ExpandBuf* pReply = expandBufAlloc(); local
399 size_t replyLength = ProcessRequest(&request, pReply, &skip_reply);
402 cc = netStateBase->WritePacket(pReply, replyLength);
406 expandBufFree(pReply);
H A Djdwp_priv.h89 ssize_t WritePacket(ExpandBuf* pReply, size_t length) LOCKS_EXCLUDED(socket_lock_);
/art/runtime/
H A Ddebugger.h287 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)
389 JDWP::ExpandBuf* pReply)
392 JDWP::ExpandBuf* pReply)
395 JDWP::ExpandBuf* pReply)
398 JDWP::ExpandBuf* pReply)
401 JDWP::ExpandBuf* pReply)
[all...]
H A Ddebugger.cc820 JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) { argument
826 expandBufAddObjectId(pReply, gRegistry->Add(o->GetClass()->GetClassLoader()));
830 JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) { argument
846 expandBufAdd4BE(pReply, access_flags);
1060 JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) { argument
1068 expandBufAdd1(pReply, type_tag);
1069 expandBufAddRefTypeId(pReply, class_id);
1138 JDWP::JdwpError Dbg::GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply) { argument
1148 expandBufAdd1(pReply, type_tag);
1149 expandBufAddRefTypeId(pReply, type_i
1231 OutputArray(JDWP::ObjectId array_id, int offset, int count, JDWP::ExpandBuf* pReply) argument
1549 OutputDeclaredFields(JDWP::RefTypeId class_id, bool with_generic, JDWP::ExpandBuf* pReply) argument
1575 OutputDeclaredMethods(JDWP::RefTypeId class_id, bool with_generic, JDWP::ExpandBuf* pReply) argument
1606 OutputDeclaredInterfaces(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) argument
1623 OutputLineTable(JDWP::RefTypeId, JDWP::MethodId method_id, JDWP::ExpandBuf* pReply) argument
1626 JDWP::ExpandBuf* pReply; member in struct:art::DebugCallbackContext
1668 OutputVariableTable(JDWP::RefTypeId, JDWP::MethodId method_id, bool with_generic, JDWP::ExpandBuf* pReply) argument
1672 JDWP::ExpandBuf* pReply; member in struct:art::DebugCallbackContext
1727 OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value, JDWP::ExpandBuf* pReply) argument
1734 OutputFieldValue(JDWP::FieldId field_id, const JValue* field_value, JDWP::ExpandBuf* pReply) argument
1858 GetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, JDWP::ExpandBuf* pReply) argument
1863 GetStaticFieldValue(JDWP::RefTypeId ref_type_id, JDWP::FieldId field_id, JDWP::ExpandBuf* pReply) argument
1996 OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply) argument
2040 GetThreadGroup(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) argument
2091 GetThreadGroupName(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) argument
2108 GetThreadGroupParent(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) argument
2158 GetThreadGroupChildren(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) argument
2257 GetThreadDebugSuspendCount(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) argument
2563 GetLocalValues(JDWP::Request* request, JDWP::ExpandBuf* pReply) argument
4008 WriteValue(JDWP::ExpandBuf* pReply, int width, uint64_t value) argument
4136 BuildInvokeReply(JDWP::ExpandBuf* pReply, uint32_t request_id, JDWP::JdwpTag result_tag, uint64_t result_value, JDWP::ObjectId exception) argument
4160 JDWP::ExpandBuf* const pReply = pReq->reply; member in class:art::JDWP
[all...]

Completed in 98 milliseconds