/frameworks/wilhelm/tests/sandbox/ |
D | object.c | 40 SLuint32 objectID; in main() local 47 for (objectID = FIRST_VALID - 1; objectID <= LAST_VALID + 1; ++objectID) { in main() 48 printf("object ID %x", objectID); in main() 49 const char *string = slesutObjectIDToString(objectID); in main() 53 result = (*engineEngine)->QueryNumSupportedInterfaces(engineEngine, objectID, NULL); in main() 56 result = (*engineEngine)->QueryNumSupportedInterfaces(engineEngine, objectID, in main() 61 result = (*engineEngine)->QuerySupportedInterfaces(engineEngine, objectID, 0, in main() 70 result = (*engineEngine)->QuerySupportedInterfaces(engineEngine, objectID, i, NULL); in main() 72 result = (*engineEngine)->QuerySupportedInterfaces(engineEngine, objectID, i, in main()
|
/frameworks/native/libs/binder/ |
D | BpBinder.cpp | 65 const void* objectID, void* object, void* cleanupCookie, in attach() argument 73 if (mObjects.indexOfKey(objectID) >= 0) { in attach() 75 objectID, this, object); in attach() 79 mObjects.add(objectID, e); in attach() 82 void* BpBinder::ObjectManager::find(const void* objectID) const in find() 84 const ssize_t i = mObjects.indexOfKey(objectID); in find() 89 void BpBinder::ObjectManager::detach(const void* objectID) in detach() argument 91 mObjects.removeItem(objectID); in detach() 410 const void* objectID, void* object, void* cleanupCookie, in attachObject() argument 415 mObjects.attach(objectID, object, cleanupCookie, func); in attachObject() [all …]
|
D | Binder.cpp | 237 const void* objectID, void* object, void* cleanupCookie, in attachObject() argument 244 e->mObjects.attach(objectID, object, cleanupCookie, func); in attachObject() 247 void* BBinder::findObject(const void* objectID) const in findObject() 253 return e->mObjects.find(objectID); in findObject() 256 void BBinder::detachObject(const void* objectID) in detachObject() argument 262 e->mObjects.detach(objectID); in detachObject()
|
/frameworks/native/libs/binder/include/binder/ |
D | BpBinder.h | 75 virtual void attachObject( const void* objectID, 79 virtual void* findObject(const void* objectID) const final; 80 virtual void detachObject(const void* objectID) final; 100 void attach( const void* objectID, 104 void* find(const void* objectID) const; 105 void detach(const void* objectID);
|
D | IBinder.h | 237 virtual void attachObject( const void* objectID, 244 virtual void* findObject(const void* objectID) const = 0; 255 virtual void detachObject(const void* objectID) = 0;
|
D | Binder.h | 57 virtual void attachObject( const void* objectID, 61 virtual void* findObject(const void* objectID) const final; 62 virtual void detachObject(const void* objectID) final;
|
/frameworks/wilhelm/src/ut/ |
D | OpenSLESUT.c | 147 const char *slesutObjectIDToString(SLuint32 objectID) in slesutObjectIDToString() argument 161 return (0x1001 <= objectID) && (objectID <= 0x100A) ? objectIDstrings[objectID - 0x1001] : NULL; in slesutObjectIDToString()
|
D | OpenSLESUT.h | 25 extern const char *slesutObjectIDToString(SLuint32 objectID);
|
/frameworks/native/libs/binder/tests/unit_fuzzers/ |
D | IBinderFuzzFunctions.h | 40 static uint32_t objectID = 0; variable 61 objectID = fdp->ConsumeIntegral<uint32_t>(); 65 ibinder->attachObject(fdp->ConsumeBool() ? reinterpret_cast<void*>(&objectID)
|
/frameworks/native/include/binder/ |
D | IBinder.h | 237 virtual void attachObject( const void* objectID, 244 virtual void* findObject(const void* objectID) const = 0; 255 virtual void detachObject(const void* objectID) = 0;
|
D | Binder.h | 57 virtual void attachObject( const void* objectID, 61 virtual void* findObject(const void* objectID) const final; 62 virtual void detachObject(const void* objectID) final;
|
/frameworks/wilhelm/src/ |
D | classes.cpp | 512 LI_API const ClassTable *objectIDtoClass(SLuint32 objectID) in objectIDtoClass() argument 517 if ((slObjectID0 <= objectID) && ((slObjectID0 + sizeof(slClasses)/sizeof(slClasses[0])) > in objectIDtoClass() 518 objectID)) { in objectIDtoClass() 519 return slClasses[objectID - slObjectID0]; in objectIDtoClass() 523 if ((xaObjectID0 <= objectID) && ((xaObjectID0 + sizeof(xaClasses)/sizeof(xaClasses[0])) > in objectIDtoClass() 524 objectID)) { in objectIDtoClass() 525 return xaClasses[objectID - xaObjectID0]; in objectIDtoClass()
|
D | locks.cpp | 178 SLuint32 objectID = IObjectToObjectID(thiz); in object_unlock_exclusive_attributes_() local 179 SLuint32 index = objectID; in object_unlock_exclusive_attributes_() 220 if (SL_OBJECTID_AUDIOPLAYER == objectID) { in object_unlock_exclusive_attributes_()
|
D | sles_allinclusive.h | 302 extern const ClassTable *objectIDtoClass(SLuint32 objectID);
|
/frameworks/base/rs/java/android/renderscript/ |
D | FileA3D.java | 144 long objectID = rs.nFileA3DGetEntryByIndex(entry.mID, entry.mIndex); in internalCreate() local 145 if(objectID == 0) { in internalCreate() 151 entry.mLoadedObj = new Mesh(objectID, rs); in internalCreate()
|
/frameworks/base/media/jni/ |
D | android_mtp_MtpDevice.cpp | 491 jint storageID, jint format, jint objectID) in android_mtp_MtpDevice_get_object_handles() argument 496 MtpObjectHandleList* handles = device->getObjectHandles(storageID, format, objectID); in android_mtp_MtpDevice_get_object_handles() 510 android_mtp_MtpDevice_get_object_info(JNIEnv *env, jobject thiz, jint objectID) in android_mtp_MtpDevice_get_object_info() argument 515 MtpObjectInfo* objectInfo = device->getObjectInfo(objectID); in android_mtp_MtpDevice_get_object_info() 543 android_mtp_MtpDevice_get_object(JNIEnv *env, jobject thiz, jint objectID, jlong objectSizeLong) in android_mtp_MtpDevice_get_object() argument 563 if (device->readObject(objectID, JavaArrayWriter::writeTo, objectSize, &writer)) { in android_mtp_MtpDevice_get_object() 572 jint objectID, in android_mtp_MtpDevice_get_partial_object() argument 598 objectID, offset, size, &written_size, JavaArrayWriter::writeTo, &writer); in android_mtp_MtpDevice_get_partial_object() 609 jint objectID, in android_mtp_MtpDevice_get_partial_object_64() argument 640 const uint32_t native_object_handle = static_cast<uint32_t>(objectID); in android_mtp_MtpDevice_get_partial_object_64() [all …]
|
/frameworks/wilhelm/src/itf/ |
D | IEngine.cpp | 770 void *pParameters, SLuint32 objectID, SLuint32 numInterfaces, in IEngine_CreateExtensionObject() argument 787 SLuint32 objectID, SLuint32 *pNumSupportedInterfaces) in IEngine_QueryNumSupportedInterfaces() argument 794 const ClassTable *clazz = objectIDtoClass(objectID); in IEngine_QueryNumSupportedInterfaces() 826 SLuint32 objectID, SLuint32 index, SLInterfaceID *pInterfaceId) in IEngine_QuerySupportedInterfaces() argument 834 const ClassTable *clazz = objectIDtoClass(objectID); in IEngine_QuerySupportedInterfaces() 1310 void *pParameters, XAuint32 objectID, XAuint32 numInterfaces, in IXAEngine_CreateExtensionObject() argument 1315 (SLObjectItf *) pObject, pParameters, objectID, numInterfaces, in IXAEngine_CreateExtensionObject() 1355 static XAresult IXAEngine_QueryNumSupportedInterfaces(XAEngineItf self, XAuint32 objectID, in IXAEngine_QueryNumSupportedInterfaces() argument 1360 &((CEngine *) ((IXAEngine *) self)->mThis)->mEngine.mItf, objectID, in IXAEngine_QueryNumSupportedInterfaces() 1365 static XAresult IXAEngine_QuerySupportedInterfaces(XAEngineItf self, XAuint32 objectID, in IXAEngine_QuerySupportedInterfaces() argument [all …]
|
/frameworks/wilhelm/include/SLES/ |
D | OpenSLES.h | 2634 SLuint32 objectID, 2641 SLuint32 objectID, 2646 SLuint32 objectID,
|
/frameworks/wilhelm/include/OMXAL/ |
D | OpenMAXAL.h | 618 XAuint32 objectID, 636 XAuint32 objectID, 641 XAuint32 objectID,
|