HomeSort by relevance Sort by last modified time
    Searched defs:ObjectId (Results 1 - 2 of 2) sorted by null

  /dalvik/vm/jdwp/
Jdwp.h 38 * ObjectId and RefTypeId must be the same size.
42 typedef u8 ObjectId; /* any object (threadID, stringID, arrayID, etc) */
43 typedef u8 RefTypeId; /* like ObjectID, but unique for Class objects */
52 INLINE ObjectId dvmReadObjectId(const u1** pBuf) { return read8BE(pBuf); }
57 INLINE void dvmSetObjectId(u1* buf, ObjectId val) { return set8BE(buf, val); }
66 INLINE void expandBufAddObjectId(ExpandBuf* pReply, ObjectId id) {
158 //ObjectId dvmJdwpGetWaitForEventThread(JdwpState* state);
159 void dvmJdwpSetWaitForEventThread(JdwpState* state, ObjectId threadId);
203 ObjectId thisPtr, int eventFlags);
211 ObjectId excepId, RefTypeId excepClassId, const JdwpLocation* pCatchLoc
    [all...]
  /art/runtime/jdwp/
jdwp.h 44 * ObjectId and RefTypeId must be the same size.
48 typedef uint64_t ObjectId; /* any object (threadID, stringID, arrayID, etc) */
49 typedef uint64_t RefTypeId; /* like ObjectID, but unique for Class objects */
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
    [all...]

Completed in 199 milliseconds