Home | History | Annotate | Download | only in binder

Lines Matching refs:objectID

45     const void* objectID, void* object, void* cleanupCookie,
53 if (mObjects.indexOfKey(objectID) >= 0) {
55 objectID, this, object);
59 mObjects.add(objectID, e);
62 void* BpBinder::ObjectManager::find(const void* objectID) const
64 const ssize_t i = mObjects.indexOfKey(objectID);
69 void BpBinder::ObjectManager::detach(const void* objectID)
71 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);