/dalvik/vm/jdwp/ |
JdwpHandler.h | 42 const u1* buf, int dataLen, ExpandBuf* pReply); 45 void dvmJdwpAddLocation(ExpandBuf* pReply, const JdwpLocation* pLoc);
|
JdwpHandler.cpp | 56 void dvmJdwpAddLocation(ExpandBuf* pReply, const JdwpLocation* pLoc) 58 expandBufAdd1(pReply, pLoc->typeTag); 59 expandBufAddObjectId(pReply, pLoc->classId); 60 expandBufAddMethodId(pReply, pLoc->methodId); 61 expandBufAdd8BE(pReply, pLoc->idx); 85 static void jdwpWriteValue(ExpandBuf* pReply, int width, u8 value) 88 case 1: expandBufAdd1(pReply, value); break; 89 case 2: expandBufAdd2BE(pReply, value); break; 90 case 4: expandBufAdd4BE(pReply, value); break; 91 case 8: expandBufAdd8BE(pReply, value); break [all...] |
Jdwp.h | 60 INLINE void expandBufAddFieldId(ExpandBuf* pReply, FieldId id) { 61 expandBufAdd4BE(pReply, id); 63 INLINE void expandBufAddMethodId(ExpandBuf* pReply, MethodId id) { 64 expandBufAdd4BE(pReply, id); 66 INLINE void expandBufAddObjectId(ExpandBuf* pReply, ObjectId id) { 67 expandBufAdd8BE(pReply, id); 69 INLINE void expandBufAddRefTypeId(ExpandBuf* pReply, RefTypeId id) { 70 expandBufAdd8BE(pReply, id); 72 INLINE void expandBufAddFrameId(ExpandBuf* pReply, FrameId id) { 73 expandBufAdd8BE(pReply, id) [all...] |
JdwpAdb.cpp | 455 ExpandBuf* pReply = expandBufAlloc(); 461 dvmJdwpProcessRequest(state, &hdr, buf, dataLen, pReply); 462 if (expandBufGetLength(pReply) > 0) { 463 ssize_t cc = netState->writePacket(pReply); 465 if (cc != (ssize_t) expandBufGetLength(pReply)) { 467 expandBufFree(pReply); 473 expandBufFree(pReply);
|
JdwpMain.cpp | 45 ssize_t JdwpNetStateBase::writePacket(ExpandBuf* pReply) 48 ssize_t cc = TEMP_FAILURE_RETRY(write(clientSock, expandBufGetBuffer(pReply), 49 expandBufGetLength(pReply)));
|
JdwpSocket.cpp | 613 ExpandBuf* pReply = expandBufAlloc(); 619 dvmJdwpProcessRequest(state, &hdr, buf, dataLen, pReply); 620 if (expandBufGetLength(pReply) > 0) { 621 ssize_t cc = netState->writePacket(pReply); 623 if (cc != (ssize_t) expandBufGetLength(pReply)) { 625 expandBufFree(pReply); 631 expandBufFree(pReply);
|
JdwpPriv.h | 129 ssize_t writePacket(ExpandBuf* pReply);
|
/art/runtime/jdwp/ |
jdwp_handler.cc | 55 static void WriteValue(ExpandBuf* pReply, int width, uint64_t value) { 57 case 1: expandBufAdd1(pReply, value); break; 58 case 2: expandBufAdd2BE(pReply, value); break; 59 case 4: expandBufAdd4BE(pReply, value); break; 60 case 8: expandBufAdd8BE(pReply, value); break; 94 static JdwpError FinishInvoke(JdwpState*, Request& request, ExpandBuf* pReply, 139 expandBufAdd1(pReply, resultTag); 141 WriteValue(pReply, width, resultValue); 143 expandBufAdd1(pReply, JT_OBJECT); 144 expandBufAddObjectId(pReply, exceptObjId) [all...] |
jdwp.h | 59 static inline void expandBufAddFieldId(ExpandBuf* pReply, FieldId id) { expandBufAdd4BE(pReply, id); } 60 static inline void expandBufAddMethodId(ExpandBuf* pReply, MethodId id) { expandBufAdd4BE(pReply, id); } 61 static inline void expandBufAddObjectId(ExpandBuf* pReply, ObjectId id) { expandBufAdd8BE(pReply, id); } 62 static inline void expandBufAddRefTypeId(ExpandBuf* pReply, RefTypeId id) { expandBufAdd8BE(pReply, id); } 63 static inline void expandBufAddFrameId(ExpandBuf* pReply, FrameId id) { expandBufAdd8BE(pReply, id); [all...] |
jdwp_expand_buf.h | 64 void expandBufAddLocation(ExpandBuf* pReply, const JdwpLocation& location);
|
jdwp_priv.h | 72 ssize_t WritePacket(ExpandBuf* pReply);
|
jdwp_main.cc | 127 ssize_t JdwpNetStateBase::WritePacket(ExpandBuf* pReply) { 129 return TEMP_FAILURE_RETRY(write(clientSock, expandBufGetBuffer(pReply), expandBufGetLength(pReply))); 385 ExpandBuf* pReply = expandBufAlloc(); 386 ProcessRequest(request, pReply); 387 ssize_t cc = netStateBase->WritePacket(pReply); 388 if (cc != (ssize_t) expandBufGetLength(pReply)) { 390 expandBufFree(pReply); 393 expandBufFree(pReply);
|
/dalvik/vm/ |
Debugger.cpp | 990 ExpandBuf* pReply) 1010 outBuf = expandBufAddSpace(pReply, count * width); 1029 expandBufAdd1(pReply, thisTag); 1030 expandBufAddObjectId(pReply, objectToObjectId(*pObjects)); 1174 ExpandBuf* pReply) 1180 expandBufAdd4BE(pReply, declared); 1184 expandBufAddFieldId(pReply, fieldToFieldId(field)); 1185 expandBufAddUtf8String(pReply, (const u1*) field->name); 1186 expandBufAddUtf8String(pReply, (const u1*) field->signature); 1189 expandBufAddUtf8String(pReply, genericSignature) [all...] |
Debugger.h | 187 ExpandBuf* pReply); 202 ExpandBuf* pReply); 204 ExpandBuf* pReply); 205 void dvmDbgOutputAllInterfaces(RefTypeId refTypeId, ExpandBuf* pReply); 207 ExpandBuf* pReply); 209 bool withGeneric, ExpandBuf* pReply); 213 void dvmDbgGetFieldValue(ObjectId objectId, FieldId fieldId, ExpandBuf* pReply); 217 ExpandBuf* pReply);
|
/art/runtime/ |
debugger.h | 137 static JDWP::JdwpError GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) 139 static JDWP::JdwpError GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) 141 static JDWP::JdwpError GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) 150 static JDWP::JdwpError GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply) 163 JDWP::ExpandBuf* pReply) 219 JDWP::ExpandBuf* pReply) 222 JDWP::ExpandBuf* pReply) 225 JDWP::ExpandBuf* pReply) 228 JDWP::ExpandBuf* pReply) 231 JDWP::ExpandBuf* pReply) [all...] |
debugger.cc | 633 JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) { 638 expandBufAddObjectId(pReply, gRegistry->Add(o->GetClass()->GetClassLoader())); 642 JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) { 655 expandBufAdd4BE(pReply, access_flags); 834 JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) { 841 expandBufAdd1(pReply, c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS); 842 expandBufAddRefTypeId(pReply, class_id); 908 JDWP::JdwpError Dbg::GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply) 925 expandBufAdd1(pReply, type_tag); 926 expandBufAddRefTypeId(pReply, type_id) [all...] |
/frameworks/wilhelm/src/itf/ |
IAndroidEffect.cpp | 87 void* pCommand, SLuint32 *replySize, void *pReply) { 93 pCommand, replySize, pReply);
|