/dalvik/vm/jdwp/ |
JdwpHandler.h | 45 void dvmJdwpAddLocation(ExpandBuf* pReply, const JdwpLocation* pLoc);
|
Jdwp.h | 80 struct JdwpLocation { 202 bool dvmJdwpPostLocationEvent(JdwpState* state, const JdwpLocation* pLoc, 210 bool dvmJdwpPostException(JdwpState* state, const JdwpLocation* pThrowLoc, 211 ObjectId excepId, RefTypeId excepClassId, const JdwpLocation* pCatchLoc,
|
JdwpEvent.h | 56 JdwpLocation loc;
|
JdwpEvent.cpp | 104 const JdwpLocation* pLoc; /* LocationOnly */ 446 static inline bool locationMatch(const JdwpLocation* pLoc1, 447 const JdwpLocation* pLoc2) 809 bool dvmJdwpPostLocationEvent(JdwpState* state, const JdwpLocation* pLoc, 1021 bool dvmJdwpPostException(JdwpState* state, const JdwpLocation* pThrowLoc, 1023 const JdwpLocation* pCatchLoc, ObjectId thisPtr) [all...] |
JdwpHandler.cpp | 44 static void jdwpReadLocation(const u1** pBuf, JdwpLocation* pLoc) 56 void dvmJdwpAddLocation(ExpandBuf* pReply, const JdwpLocation* pLoc) [all...] |
/art/runtime/jdwp/ |
jdwp_expand_buf.h | 32 struct JdwpLocation; 64 void expandBufAddLocation(ExpandBuf* pReply, const JdwpLocation& location);
|
jdwp.h | 68 struct JdwpLocation { 74 std::ostream& operator<<(std::ostream& os, const JdwpLocation& rhs) 76 bool operator==(const JdwpLocation& lhs, const JdwpLocation& rhs); 77 bool operator!=(const JdwpLocation& lhs, const JdwpLocation& rhs); 189 bool PostLocationEvent(const JdwpLocation* pLoc, ObjectId thisPtr, int eventFlags) 197 bool PostException(const JdwpLocation* pThrowLoc, ObjectId excepId, RefTypeId excepClassId, 198 const JdwpLocation* pCatchLoc, ObjectId thisPtr) 389 JdwpLocation ReadLocation() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) [all...] |
jdwp_event.h | 61 JdwpLocation loc;
|
jdwp_request.cc | 141 JdwpLocation Request::ReadLocation() { 142 JdwpLocation location;
|
jdwp_main.cc | 606 std::ostream& operator<<(std::ostream& os, const JdwpLocation& rhs) { 607 os << "JdwpLocation[" 613 bool operator==(const JdwpLocation& lhs, const JdwpLocation& rhs) { 618 bool operator!=(const JdwpLocation& lhs, const JdwpLocation& rhs) {
|
jdwp_expand_buf.cc | 179 void expandBufAddLocation(ExpandBuf* buf, const JdwpLocation& location) {
|
jdwp_event.cc | 113 const JdwpLocation* pLoc; /* LocationOnly */ 722 bool JdwpState::PostLocationEvent(const JdwpLocation* pLoc, ObjectId thisPtr, int eventFlags) { 894 bool JdwpState::PostException(const JdwpLocation* pThrowLoc, 896 const JdwpLocation* pCatchLoc, ObjectId thisPtr) { [all...] |
jdwp_handler.cc | [all...] |
/dalvik/vm/ |
Debugger.h | 244 JdwpLocation* pLoc); 279 bool dvmDbgWatchLocation(const JdwpLocation* pLoc); 280 void dvmDbgUnwatchLocation(const JdwpLocation* pLoc);
|
Debugger.cpp | [all...] |
/art/runtime/ |
debugger.h | 348 static void WatchLocation(const JDWP::JdwpLocation* pLoc) 351 static void UnwatchLocation(const JDWP::JdwpLocation* pLoc)
|
debugger.cc | [all...] |