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

  /dalvik/vm/
Debugger.h 100 ObjectId exceptObj;
163 ObjectId dvmDbgGetClassObject(RefTypeId id);
165 ObjectId dvmDbgGetClassLoader(RefTypeId id);
169 void dvmDbgGetVisibleClassList(ObjectId classLoaderId, u4* pNumClasses,
175 void dvmDbgGetObjectType(ObjectId objectId, u1* pRefTypeTag,
180 char* dvmDbgGetObjectTypeName(ObjectId objectId);
182 int dvmDbgGetObjectTag(ObjectId objectId, const char* type)
    [all...]
Debugger.c 75 ThreadId we pass to the debugger is the ObjectId for the java/lang/Thread
90 #define THREAD_GROUP_ALL ((ObjectId) 0x12345) // magic, internal-only value
187 static bool lookupId(ObjectId id)
203 * This is used for both ObjectId and RefTypeId. In theory we don't have
209 static ObjectId registerObject(const Object* obj, RegistryType type, bool reg)
211 ObjectId id;
219 id = (ObjectId)(u4)obj | ((u8) type) << 32;
274 * Note this actually takes both ObjectId and RefTypeId.
277 static bool objectIsRegistered(ObjectId id, RegistryType type)
313 * Convert to/from an ObjectId
    [all...]
  /dalvik/vm/jdwp/
Jdwp.h 39 * ObjectId and RefTypeId must be the same size.
43 typedef u8 ObjectId; /* any object (threadID, stringID, arrayID, etc) */
44 typedef u8 RefTypeId; /* like ObjectID, but unique for Class objects */
53 INLINE ObjectId dvmReadObjectId(const u1** pBuf) { return read8BE(pBuf); }
58 INLINE void dvmSetObjectId(u1* buf, ObjectId val) { return set8BE(buf, val); }
67 INLINE void expandBufAddObjectId(ExpandBuf* pReply, ObjectId id) {
160 //ObjectId dvmJdwpGetWaitForEventThread(JdwpState* state);
161 void dvmJdwpSetWaitForEventThread(JdwpState* state, ObjectId threadId);
205 ObjectId thisPtr, int eventFlags);
213 ObjectId excepId, RefTypeId excepClassId, const JdwpLocation* pCatchLoc
    [all...]
JdwpEvent.h 40 ObjectId threadId;
71 ObjectId threadId;
77 ObjectId objectId;
JdwpHandler.c 116 * If "isConstructor" is set, this returns "objectId" rather than the
121 ObjectId threadId, ObjectId objectId, RefTypeId classId, MethodId methodId,
130 assert(!isConstructor || objectId != 0);
134 LOGV(" --> threadId=%llx objectId=%llx\n", threadId, objectId);
142 argArray = (ObjectId*) malloc(sizeof(ObjectId) * numArgs);
165 ObjectId exceptObjId
    [all...]
JdwpPriv.h 84 ObjectId debugThreadId;
115 ObjectId eventThreadId;
JdwpEvent.c 106 ObjectId threadId; /* ThreadOnly */
111 ObjectId thisPtr; /* InstanceOnly */
510 if (pMod->instanceOnly.objectId != basket->thisPtr)
652 void dvmJdwpSetWaitForEventThread(JdwpState* state, ObjectId threadId)
747 ObjectId threadId = dvmDbgGetThreadSelfId();
810 ObjectId thisPtr, int eventFlags)
923 bool dvmJdwpPostThreadChange(JdwpState* state, ObjectId threadId, bool start)
1032 ObjectId exceptionId, RefTypeId exceptionClassId,
1033 const JdwpLocation* pCatchLoc, ObjectId thisPtr)
    [all...]

Completed in 460 milliseconds