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

/frameworks/wilhelm/src/ut/
H A DOpenSLESUT.h25 extern const char *slesutObjectIDToString(SLuint32 objectID);
H A DOpenSLESUT.c147 const char *slesutObjectIDToString(SLuint32 objectID) argument
161 return (0x1001 <= objectID) && (objectID <= 0x100A) ? objectIDstrings[objectID - 0x1001] : NULL;
/frameworks/native/include/binder/
H A DBpBinder.h52 virtual void attachObject( const void* objectID,
56 virtual void* findObject(const void* objectID) const;
57 virtual void detachObject(const void* objectID);
70 void attach( const void* objectID,
74 void* find(const void* objectID) const;
75 void detach(const void* objectID);
H A DBinder.h51 virtual void attachObject( const void* objectID,
55 virtual void* findObject(const void* objectID) const;
56 virtual void detachObject(const void* objectID);
H A DIBinder.h154 virtual void attachObject( const void* objectID,
158 virtual void* findObject(const void* objectID) const = 0;
159 virtual void detachObject(const void* objectID) = 0;
/frameworks/native/libs/binder/include/binder/
H A DBpBinder.h52 virtual void attachObject( const void* objectID,
56 virtual void* findObject(const void* objectID) const;
57 virtual void detachObject(const void* objectID);
70 void attach( const void* objectID,
74 void* find(const void* objectID) const;
75 void detach(const void* objectID);
H A DBinder.h51 virtual void attachObject( const void* objectID,
55 virtual void* findObject(const void* objectID) const;
56 virtual void detachObject(const void* objectID);
H A DIBinder.h154 virtual void attachObject( const void* objectID,
158 virtual void* findObject(const void* objectID) const = 0;
159 virtual void detachObject(const void* objectID) = 0;
/frameworks/wilhelm/tests/sandbox/
H A Dobject.c40 SLuint32 objectID; local
47 for (objectID = FIRST_VALID - 1; objectID <= LAST_VALID + 1; ++objectID) {
48 printf("object ID %x", objectID);
49 const char *string = slesutObjectIDToString(objectID);
53 result = (*engineEngine)->QueryNumSupportedInterfaces(engineEngine, objectID, NULL);
56 result = (*engineEngine)->QueryNumSupportedInterfaces(engineEngine, objectID,
61 result = (*engineEngine)->QuerySupportedInterfaces(engineEngine, objectID, 0,
70 result = (*engineEngine)->QuerySupportedInterfaces(engineEngine, objectID,
[all...]
/frameworks/native/libs/binder/
H A DBpBinder.cpp45 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) argument
71 mObjects.removeItem(objectID);
287 const void* objectID, void* object, void* cleanupCookie,
292 mObjects.attach(objectID, objec
44 attach( const void* objectID, void* object, void* cleanupCookie, IBinder::object_cleanup_func func) argument
286 attachObject( const void* objectID, void* object, void* cleanupCookie, object_cleanup_func func) argument
301 detachObject(const void* objectID) argument
[all...]
H A DBinder.cpp160 const void* objectID, void* object, void* cleanupCookie,
178 e->mObjects.attach(objectID, object, cleanupCookie, func);
181 void* BBinder::findObject(const void* objectID) const
187 return e->mObjects.find(objectID);
190 void BBinder::detachObject(const void* objectID) argument
196 e->mObjects.detach(objectID);
159 attachObject( const void* objectID, void* object, void* cleanupCookie, object_cleanup_func func) argument
/frameworks/base/rs/java/android/renderscript/
H A DFileA3D.java139 long objectID = rs.nFileA3DGetEntryByIndex(entry.mID, entry.mIndex);
140 if(objectID == 0) {
146 entry.mLoadedObj = new Mesh(objectID, rs);
/frameworks/wilhelm/src/
H A Dclasses.cpp512 LI_API const ClassTable *objectIDtoClass(SLuint32 objectID) argument
517 if ((slObjectID0 <= objectID) && ((slObjectID0 + sizeof(slClasses)/sizeof(slClasses[0])) >
518 objectID)) {
519 return slClasses[objectID - slObjectID0];
523 if ((xaObjectID0 <= objectID) && ((xaObjectID0 + sizeof(xaClasses)/sizeof(xaClasses[0])) >
524 objectID)) {
525 return xaClasses[objectID - xaObjectID0];
H A Dlocks.cpp178 SLuint32 objectID = IObjectToObjectID(thiz); local
179 SLuint32 index = objectID;
220 if (SL_OBJECTID_AUDIOPLAYER == objectID) {
H A Dsles_allinclusive.h302 extern const ClassTable *objectIDtoClass(SLuint32 objectID);
/frameworks/base/media/jni/
H A Dandroid_mtp_MtpDevice.cpp341 jint storageID, jint format, jint objectID)
346 MtpObjectHandleList* handles = device->getObjectHandles(storageID, format, objectID);
360 android_mtp_MtpDevice_get_object_info(JNIEnv *env, jobject thiz, jint objectID) argument
365 MtpObjectInfo* objectInfo = device->getObjectInfo(objectID);
393 android_mtp_MtpDevice_get_object(JNIEnv *env, jobject thiz, jint objectID, jlong objectSizeLong) argument
413 if (device->readObject(objectID, JavaArrayWriter::writeTo, objectSize, &writer)) {
422 jint objectID,
448 objectID, offset, size, &written_size, JavaArrayWriter::writeTo, &writer);
459 jint objectID,
490 const uint32_t native_object_handle = static_cast<uint32_t>(objectID);
340 android_mtp_MtpDevice_get_object_handles(JNIEnv *env, jobject thiz, jint storageID, jint format, jint objectID) argument
420 android_mtp_MtpDevice_get_partial_object(JNIEnv *env, jobject thiz, jint objectID, jlong offsetLong, jlong sizeLong, jbyteArray array) argument
457 android_mtp_MtpDevice_get_partial_object_64(JNIEnv *env, jobject thiz, jint objectID, jlong offset, jlong size, jbyteArray array) argument
511 android_mtp_MtpDevice_get_thumbnail(JNIEnv *env, jobject thiz, jint objectID) argument
[all...]
/frameworks/wilhelm/src/itf/
H A DIEngine.cpp770 void *pParameters, SLuint32 objectID, SLuint32 numInterfaces,
787 SLuint32 objectID, SLuint32 *pNumSupportedInterfaces)
794 const ClassTable *clazz = objectIDtoClass(objectID);
826 SLuint32 objectID, SLuint32 index, SLInterfaceID *pInterfaceId)
834 const ClassTable *clazz = objectIDtoClass(objectID);
1310 void *pParameters, XAuint32 objectID, XAuint32 numInterfaces,
1315 (SLObjectItf *) pObject, pParameters, objectID, numInterfaces,
1355 static XAresult IXAEngine_QueryNumSupportedInterfaces(XAEngineItf self, XAuint32 objectID, argument
1360 &((CEngine *) ((IXAEngine *) self)->mThis)->mEngine.mItf, objectID,
1365 static XAresult IXAEngine_QuerySupportedInterfaces(XAEngineItf self, XAuint32 objectID, argument
769 IEngine_CreateExtensionObject(SLEngineItf self, SLObjectItf *pObject, void *pParameters, SLuint32 objectID, SLuint32 numInterfaces, const SLInterfaceID *pInterfaceIds, const SLboolean *pInterfaceRequired) argument
786 IEngine_QueryNumSupportedInterfaces(SLEngineItf self, SLuint32 objectID, SLuint32 *pNumSupportedInterfaces) argument
825 IEngine_QuerySupportedInterfaces(SLEngineItf self, SLuint32 objectID, SLuint32 index, SLInterfaceID *pInterfaceId) argument
1309 IXAEngine_CreateExtensionObject(XAEngineItf self, XAObjectItf *pObject, void *pParameters, XAuint32 objectID, XAuint32 numInterfaces, const XAInterfaceID *pInterfaceIds, const XAboolean *pInterfaceRequired) argument
[all...]
/frameworks/wilhelm/include/OMXAL/
H A DOpenMAXAL.h618 XAuint32 objectID,
636 XAuint32 objectID,
641 XAuint32 objectID,
/frameworks/wilhelm/include/SLES/
H A DOpenSLES.h2634 SLuint32 objectID,
2641 SLuint32 objectID,
2646 SLuint32 objectID,

Completed in 2083 milliseconds