Searched defs:ObjectId (Results 1 - 1 of 1) sorted by relevance

/art/runtime/jdwp/
H A Djdwp.h44 * ObjectId and RefTypeId must be the same size.
48 typedef uint64_t ObjectId; /* any object (threadID, stringID, arrayID, etc) */ typedef in namespace:art::JDWP
52 ObjectId ReadObjectId(const uint8_t** pBuf);
56 static inline void SetObjectId(uint8_t* buf, ObjectId val) { return Set8BE(buf, val); }
61 static inline void expandBufAddObjectId(ExpandBuf* pReply, ObjectId id) { expandBufAdd8BE(pReply, id); }
155 // ObjectId GetWaitForEventThread();
156 void SetWaitForEventThread(ObjectId threadId);
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 thisPt
[all...]

Completed in 62 milliseconds