Home | History | Annotate | Download | only in binder

Lines Matching refs:objectID

44     const void* objectID, void* object, void* cleanupCookie,
52 if (mObjects.indexOfKey(objectID) >= 0) {
54 objectID, this, object);
58 mObjects.add(objectID, e);
61 void* BpBinder::ObjectManager::find(const void* objectID) const
63 const ssize_t i = mObjects.indexOfKey(objectID);
68 void BpBinder::ObjectManager::detach(const void* objectID)
70 mObjects.removeItem(objectID);
287 const void* objectID, void* object, void* cleanupCookie,
292 mObjects.attach(objectID, object, cleanupCookie, func);
295 void* BpBinder::findObject(const void* objectID) const
298 return mObjects.find(objectID);
301 void BpBinder::detachObject(const void* objectID)
304 mObjects.detach(objectID);