Home
last modified time | relevance | path

Searched refs:objectID (Results 1 – 19 of 19) sorted by relevance

/frameworks/wilhelm/tests/sandbox/
Dobject.c40 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/
DBpBinder.cpp68 void* BpBinder::ObjectManager::attach(const void* objectID, void* object, void* cleanupCookie, in attach() argument
75 if (mObjects.find(objectID) != mObjects.end()) { in attach()
78 objectID, this, object); in attach()
79 return mObjects[objectID].object; in attach()
82 mObjects.insert({objectID, e}); in attach()
86 void* BpBinder::ObjectManager::find(const void* objectID) const in find()
88 auto i = mObjects.find(objectID); in find()
93 void* BpBinder::ObjectManager::detach(const void* objectID) { in detach() argument
94 auto i = mObjects.find(objectID); in detach()
444 void* BpBinder::attachObject(const void* objectID, void* object, void* cleanupCookie, in attachObject() argument
[all …]
DBinder.cpp334 void* BBinder::attachObject(const void* objectID, void* object, void* cleanupCookie, in attachObject() argument
340 return e->mObjects.attach(objectID, object, cleanupCookie, func); in attachObject()
343 void* BBinder::findObject(const void* objectID) const in findObject()
349 return e->mObjects.find(objectID); in findObject()
352 void* BBinder::detachObject(const void* objectID) { in detachObject() argument
357 return e->mObjects.detach(objectID); in detachObject()
/frameworks/native/libs/binder/include/binder/
DBpBinder.h70 virtual void* attachObject(const void* objectID, void* object, void* cleanupCookie,
72 virtual void* findObject(const void* objectID) const final;
73 virtual void* detachObject(const void* objectID) final;
95 void* attach(const void* objectID, void* object, void* cleanupCookie,
97 void* find(const void* objectID) const;
98 void* detach(const void* objectID);
DIBinder.h265 [[nodiscard]] virtual void* attachObject(const void* objectID, void* object,
270 [[nodiscard]] virtual void* findObject(const void* objectID) const = 0;
275 [[nodiscard]] virtual void* detachObject(const void* objectID) = 0;
DBinder.h57 virtual void* attachObject(const void* objectID, void* object, void* cleanupCookie,
59 virtual void* findObject(const void* objectID) const final;
60 virtual void* detachObject(const void* objectID) final;
/frameworks/wilhelm/src/ut/
DOpenSLESUT.c147 const char *slesutObjectIDToString(SLuint32 objectID) in slesutObjectIDToString() argument
161 return (0x1001 <= objectID) && (objectID <= 0x100A) ? objectIDstrings[objectID - 0x1001] : NULL; in slesutObjectIDToString()
DOpenSLESUT.h25 extern const char *slesutObjectIDToString(SLuint32 objectID);
/frameworks/native/libs/binder/tests/unit_fuzzers/
DIBinderFuzzFunctions.h39 static uint32_t objectID = 0; variable
60 objectID = fdp->ConsumeIntegral<uint32_t>();
64 (void)ibinder->attachObject(fdp->ConsumeBool() ? reinterpret_cast<void*>(&objectID)
/frameworks/native/include/binder/
DIBinder.h265 [[nodiscard]] virtual void* attachObject(const void* objectID, void* object,
270 [[nodiscard]] virtual void* findObject(const void* objectID) const = 0;
275 [[nodiscard]] virtual void* detachObject(const void* objectID) = 0;
DBinder.h57 virtual void* attachObject(const void* objectID, void* object, void* cleanupCookie,
59 virtual void* findObject(const void* objectID) const final;
60 virtual void* detachObject(const void* objectID) final;
/frameworks/wilhelm/src/
Dclasses.cpp512 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()
Dlocks.cpp178 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_()
Dsles_allinclusive.h302 extern const ClassTable *objectIDtoClass(SLuint32 objectID);
/frameworks/base/rs/java/android/renderscript/
DFileA3D.java144 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/
Dandroid_mtp_MtpDevice.cpp491 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/
DIEngine.cpp771 void *pParameters, SLuint32 objectID, SLuint32 numInterfaces, in IEngine_CreateExtensionObject() argument
788 SLuint32 objectID, SLuint32 *pNumSupportedInterfaces) in IEngine_QueryNumSupportedInterfaces() argument
795 const ClassTable *clazz = objectIDtoClass(objectID); in IEngine_QueryNumSupportedInterfaces()
827 SLuint32 objectID, SLuint32 index, SLInterfaceID *pInterfaceId) in IEngine_QuerySupportedInterfaces() argument
835 const ClassTable *clazz = objectIDtoClass(objectID); in IEngine_QuerySupportedInterfaces()
1311 void *pParameters, XAuint32 objectID, XAuint32 numInterfaces, in IXAEngine_CreateExtensionObject() argument
1316 (SLObjectItf *) pObject, pParameters, objectID, numInterfaces, in IXAEngine_CreateExtensionObject()
1356 static XAresult IXAEngine_QueryNumSupportedInterfaces(XAEngineItf self, XAuint32 objectID, in IXAEngine_QueryNumSupportedInterfaces() argument
1361 &((CEngine *) ((IXAEngine *) self)->mThis)->mEngine.mItf, objectID, in IXAEngine_QueryNumSupportedInterfaces()
1366 static XAresult IXAEngine_QuerySupportedInterfaces(XAEngineItf self, XAuint32 objectID, in IXAEngine_QuerySupportedInterfaces() argument
[all …]
/frameworks/wilhelm/include/SLES/
DOpenSLES.h2634 SLuint32 objectID,
2641 SLuint32 objectID,
2646 SLuint32 objectID,
/frameworks/wilhelm/include/OMXAL/
DOpenMAXAL.h618 XAuint32 objectID,
636 XAuint32 objectID,
641 XAuint32 objectID,