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

  /dalvik/vm/
Debugger.h 162 const char* dvmDbgGetClassDescriptor(RefTypeId id);
163 ObjectId dvmDbgGetClassObject(RefTypeId id);
164 RefTypeId dvmDbgGetSuperclass(RefTypeId id);
165 ObjectId dvmDbgGetClassLoader(RefTypeId id);
166 u4 dvmDbgGetAccessFlags(RefTypeId id);
167 bool dvmDbgIsInterface(RefTypeId id);
168 void dvmDbgGetClassList(u4* pNumClasses, RefTypeId** pClassRefBuf);
170 RefTypeId** pClassRefBuf);
171 void dvmDbgGetClassInfo(RefTypeId classId, u1* pTypeTag, u4* pStatus
    [all...]
Debugger.c 203 * This is used for both ObjectId and RefTypeId. In theory we don't have
274 * Note this actually takes both ObjectId and RefTypeId.
292 * Convert to/from a RefTypeId.
296 static RefTypeId classObjectToRefTypeId(ClassObject* clazz)
298 return (RefTypeId) registerObject((Object*) clazz, kRefTypeId, true);
301 static RefTypeId classObjectToRefTypeIdNoReg(ClassObject* clazz)
303 return (RefTypeId) registerObject((Object*) clazz, kRefTypeId, false);
306 static ClassObject* refTypeIdToClassObject(RefTypeId id)
353 static Method* methodIdToMethod(RefTypeId refTypeId, MethodId id
    [all...]
  /dalvik/vm/jdwp/
JdwpEvent.h 44 RefTypeId referenceTypeId;
62 RefTypeId refTypeId;
66 RefTypeId refTypeId;
JdwpHandler.c 121 ObjectId threadId, ObjectId objectId, RefTypeId classId, MethodId methodId,
242 RefTypeId refTypeId;
253 if (!dvmDbgFindLoadedClassBySignature(classDescriptor, &refTypeId)) {
269 dvmDbgGetClassInfo(refTypeId, &typeTag, &status, NULL);
272 expandBufAddRefTypeId(pReply, refTypeId);
345 expandBufAdd4BE(pReply, sizeof(RefTypeId));
528 RefTypeId* classRefBuf = NULL;
565 RefTypeId refTypeId;
    [all...]
Jdwp.h 39 * ObjectId and RefTypeId must be the same size.
44 typedef u8 RefTypeId; /* like ObjectID, but unique for Class objects */
54 INLINE RefTypeId dvmReadRefTypeId(const u1** pBuf) { return read8BE(pBuf); }
59 INLINE void dvmSetRefTypeId(u1* buf, RefTypeId val) { return set8BE(buf, val); }
70 INLINE void expandBufAddRefTypeId(ExpandBuf* pReply, RefTypeId id) {
83 RefTypeId classId; /* method->clazz */
213 ObjectId excepId, RefTypeId excepClassId, const JdwpLocation* pCatchLoc,
224 bool dvmJdwpPostClassPrepare(JdwpState* state, int tag, RefTypeId refTypeId,
JdwpEvent.c 107 RefTypeId classId; /* ClassOnly */
108 RefTypeId excepClassId; /* ExceptionOnly */
494 if (pMod->exceptionOnly.refTypeId != 0 &&
496 pMod->exceptionOnly.refTypeId))
1032 ObjectId exceptionId, RefTypeId exceptionClassId,
    [all...]

Completed in 1163 milliseconds