HomeSort by relevance Sort by last modified time
    Searched refs:ObjectId (Results 1 - 15 of 15) 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 const char* dvmDbgGetObjectTypeName(ObjectId objectId);
181 u1 dvmDbgGetObjectTag(ObjectId objectId);
    [all...]
Debugger.cpp 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;
248 * Note this actually takes both ObjectId and RefTypeId.
251 static bool objectIsRegistered(ObjectId id, RegistryType type)
287 * Convert to/from an ObjectId
    [all...]
  /external/chromium/chrome/browser/sync/notifier/
invalidation_util.h 21 invalidation::ObjectId* object_id);
23 bool ObjectIdToRealModelType(const invalidation::ObjectId& object_id,
29 std::string ObjectIdToString(const invalidation::ObjectId& object_id);
invalidation_util.cc 17 invalidation::ObjectId* object_id) {
27 bool ObjectIdToRealModelType(const invalidation::ObjectId& object_id,
35 const invalidation::ObjectId& object_id) {
47 invalidation::ObjectId(
cache_invalidation_packet_handler_unittest.cc 34 MOCK_METHOD1(Register, void(const invalidation::ObjectId&));
35 MOCK_METHOD1(Unregister, void(const invalidation::ObjectId&));
chrome_invalidation_client.h 82 const invalidation::ObjectId& object_id,
registration_manager_unittest.cc 24 const invalidation::ObjectId& object_id) {
76 virtual void Register(const invalidation::ObjectId& oid) {
82 virtual void Unregister(const invalidation::ObjectId& oid) {
registration_manager.cc 219 invalidation::ObjectId object_id;
232 invalidation::ObjectId object_id;
chrome_invalidation_client.cc 190 const invalidation::ObjectId& object_id,
chrome_invalidation_client_unittest.cc 83 const invalidation::ObjectId object_id(
  /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...]
JdwpEvent.h 40 ObjectId threadId;
71 ObjectId threadId;
77 ObjectId objectId;
JdwpHandler.cpp 99 * If "isConstructor" is set, this returns "objectId" rather than the
104 ObjectId threadId, ObjectId objectId, RefTypeId classId, MethodId methodId,
107 assert(!isConstructor || objectId != 0);
111 LOGV(" --> threadId=%llx objectId=%llx", threadId, objectId);
120 argArray = (ObjectId*) malloc(sizeof(ObjectId) * numArgs);
139 ObjectId exceptObjId
    [all...]
JdwpPriv.h 82 ObjectId debugThreadId;
113 ObjectId eventThreadId;
JdwpEvent.cpp 106 ObjectId threadId; /* ThreadOnly */
111 ObjectId thisPtr; /* InstanceOnly */
516 if (pMod->instanceOnly.objectId != basket->thisPtr)
655 void dvmJdwpSetWaitForEventThread(JdwpState* state, ObjectId threadId)
748 ObjectId threadId = dvmDbgGetThreadSelfId();
811 ObjectId thisPtr, int eventFlags)
920 bool dvmJdwpPostThreadChange(JdwpState* state, ObjectId threadId, bool start)
1023 ObjectId exceptionId, RefTypeId exceptionClassId,
1024 const JdwpLocation* pCatchLoc, ObjectId thisPtr)
    [all...]

Completed in 37 milliseconds