Searched refs:ObjectId (Results 1 – 7 of 7) sorted by relevance
/dalvik/vm/ |
D | 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 const char* dvmDbgGetObjectTypeName(ObjectId objectId); 181 u1 dvmDbgGetObjectTag(ObjectId objectId); 184 int dvmDbgGetArrayLength(ObjectId arrayId); 185 u1 dvmDbgGetArrayElementTag(ObjectId arrayId); 186 bool dvmDbgOutputArray(ObjectId arrayId, int firstIndex, int count, [all …]
|
D | Debugger.cpp | 90 #define THREAD_GROUP_ALL ((ObjectId) 0x12345) // magic, internal-only value 187 static bool lookupId(ObjectId id) in lookupId() 209 static ObjectId registerObject(const Object* obj, RegistryType type, bool reg) in registerObject() 211 ObjectId id; in registerObject() 219 id = (ObjectId)(u4)obj | ((u8) type) << 32; in registerObject() 251 static bool objectIsRegistered(ObjectId id, RegistryType type) in objectIsRegistered() 289 static ObjectId objectToObjectId(const Object* obj) in objectToObjectId() 293 static ObjectId objectToObjectIdNoReg(const Object* obj) in objectToObjectIdNoReg() 297 static Object* objectIdToObject(ObjectId id) in objectIdToObject() 310 void dvmDbgRegisterObjectId(ObjectId id) in dvmDbgRegisterObjectId() [all …]
|
/dalvik/vm/jdwp/ |
D | Jdwp.h | 42 typedef u8 ObjectId; /* any object (threadID, stringID, arrayID, etc) */ typedef 52 INLINE ObjectId dvmReadObjectId(const u1** pBuf) { return read8BE(pBuf); } in dvmReadObjectId() 57 INLINE void dvmSetObjectId(u1* buf, ObjectId val) { return set8BE(buf, val); } in dvmSetObjectId() 66 INLINE void expandBufAddObjectId(ExpandBuf* pReply, ObjectId id) { in expandBufAddObjectId() 159 void dvmJdwpSetWaitForEventThread(JdwpState* state, ObjectId threadId); 203 ObjectId thisPtr, int eventFlags); 211 ObjectId excepId, RefTypeId excepClassId, const JdwpLocation* pCatchLoc, 212 ObjectId thisPtr); 217 bool dvmJdwpPostThreadChange(JdwpState* state, ObjectId threadId, bool start);
|
D | JdwpHandler.cpp | 104 ObjectId threadId, ObjectId objectId, RefTypeId classId, MethodId methodId, in finishInvoke() 120 argArray = (ObjectId*) malloc(sizeof(ObjectId) * numArgs); in finishInvoke() 139 ObjectId exceptObjId; in finishInvoke() 261 ObjectId* pThreadIds; in handleVM_AllThreads() 267 ObjectId* walker = pThreadIds; in handleVM_AllThreads() 293 ObjectId threadGroupId = dvmDbgGetSystemThreadGroupId(); in handleVM_TopLevelThreadGroups() 309 expandBufAdd4BE(pReply, sizeof(ObjectId)); in handleVM_IDSizes() 378 ObjectId stringId = dvmDbgCreateString(str); in handleVM_CreateString() 615 ObjectId classObjId = dvmDbgGetClassObject(refTypeId); in handleRT_ClassObject() 755 ObjectId threadId = dvmReadObjectId(&buf); in handleCT_InvokeMethod() [all …]
|
D | JdwpEvent.h | 40 ObjectId threadId; 71 ObjectId threadId; 77 ObjectId objectId;
|
D | JdwpPriv.h | 82 ObjectId debugThreadId; 113 ObjectId eventThreadId;
|
D | JdwpEvent.cpp | 106 ObjectId threadId; /* ThreadOnly */ 111 ObjectId thisPtr; /* InstanceOnly */ 655 void dvmJdwpSetWaitForEventThread(JdwpState* state, ObjectId threadId) in dvmJdwpSetWaitForEventThread() 748 ObjectId threadId = dvmDbgGetThreadSelfId(); in dvmJdwpPostVMStart() 811 ObjectId thisPtr, int eventFlags) in dvmJdwpPostLocationEvent() 920 bool dvmJdwpPostThreadChange(JdwpState* state, ObjectId threadId, bool start) in dvmJdwpPostThreadChange() 1023 ObjectId exceptionId, RefTypeId exceptionClassId, in dvmJdwpPostException() 1024 const JdwpLocation* pCatchLoc, ObjectId thisPtr) in dvmJdwpPostException() 1227 bool dvmJdwpPostFieldAccess(JdwpState* state, int STUFF, ObjectId thisPtr, in dvmJdwpPostFieldAccess()
|