Searched defs:ids (Results 1 - 25 of 26) sorted by relevance

12

/frameworks/wilhelm/tests/sandbox/
H A Dsrcsink.c63 SLInterfaceID ids[1] = {SL_IID_BUFFERQUEUE}; local
67 &audioSnk, 1, ids, req);
74 &audioSnk, 1, ids, req);
86 &audioSnk, 1, ids, req);
98 &audioSnk, 1, ids, req);
111 &audioSnk, 1, ids, req);
116 &audioSnk, 1, ids, req);
124 &audioSnk, 1, ids, req);
129 &audioSnk, 1, ids, req);
137 &audioSnk, 1, ids, re
[all...]
H A Doutputmix.c127 SLInterfaceID ids[10] = {SL_IID_OBJECT, SL_IID_DYNAMICINTERFACEMANAGEMENT, SL_IID_OUTPUTMIX, local
133 result = (*engineEngine)->CreateOutputMix(engineEngine, &outputMixObject, 10, ids, req);
H A Durimime.c78 SLInterfaceID ids[1]; local
80 ids[0] = SL_IID_BUFFERQUEUE;
84 &audioSnk, numInterfaces, ids, req);
88 ids[0] = SL_IID_ANDROIDSIMPLEBUFFERQUEUE;
90 &audioSnk, numInterfaces, ids, req);
H A Dconfigbq.c129 SLInterfaceID ids[1]; local
131 ids[0] = SL_IID_BUFFERQUEUE;
135 &audioSnk, numInterfaces, ids, req);
H A Dintbufq.c124 SLInterfaceID ids[2] = {IID_BUFFERQUEUE, SL_IID_MUTESOLO}; local
127 2, ids, flags);
H A Dmonkey.c117 SLInterfaceID ids[1] = {SL_IID_SEEK}; local
120 &audioSnk, 1, ids, req);
H A Dplaybq.c302 SLInterfaceID ids[1] = {SL_IID_ENVIRONMENTALREVERB}; local
305 ids, req);
H A Dplaybq.cpp302 SLInterfaceID ids[1] = {SL_IID_ENVIRONMENTALREVERB}; local
305 ids, req);
H A Dxaplay.c436 XAInterfaceID ids[4] = {XA_IID_STREAMINFORMATION, XA_IID_PREFETCHSTATUS, XA_IID_SEEK, local
440 &audioSnk, nativeWindow != NULL ? &imageVideoSink : NULL, NULL, NULL, abq ? 4 : 3, ids,
/frameworks/wilhelm/tests/listening/
H A DseekTorture.c73 SLInterfaceID ids[1] = {SL_IID_SEEK}; local
76 1, ids, flags);
/frameworks/av/media/libmediaplayerservice/
H A DStagefrightPlayer.cpp190 const media::Metadata::Filter& ids, Parcel *records) {
189 getMetadata( const media::Metadata::Filter& ids, Parcel *records) argument
H A DMediaPlayerService.cpp816 media::Metadata::Filter ids; local
824 ids = mMetadataUpdated;
832 status = player->getMetadata(ids, reply);
/frameworks/base/core/java/android/content/res/
H A DStringBlock.java166 private CharSequence applyStyles(String str, int[] style, StyleIDs ids) { argument
178 if (type == ids.boldId) {
182 } else if (type == ids.italicId) {
186 } else if (type == ids.underlineId) {
190 } else if (type == ids.ttId) {
194 } else if (type == ids.bigId) {
198 } else if (type == ids.smallId) {
202 } else if (type == ids.subId) {
206 } else if (type == ids.supId) {
210 } else if (type == ids
[all...]
/frameworks/av/include/media/
H A DMediaPlayerInterface.h190 // @param ids SortedList of metadata ID to be fetch. If empty, all
194 virtual status_t getMetadata(const media::Metadata::Filter& ids, argument
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDriver.cpp432 const media::Metadata::Filter& ids, Parcel *records) {
431 getMetadata( const media::Metadata::Filter& ids, Parcel *records) argument
/frameworks/rs/
H A DrsElement.cpp417 extern "C" void rsaElementGetSubElements(RsContext con, RsElement elem, uintptr_t *ids, argument
424 ids[i] = (uintptr_t)e->getField(i);
/frameworks/wilhelm/tests/automated/
H A DBufferQueue_test.cpp64 static const SLInterfaceID ids[1] = { SL_IID_BUFFERQUEUE }; variable
177 &audiosrc, &audiosnk, 1, ids, flags);
190 1, ids, flags);
/frameworks/av/libvideoeditor/lvpp/
H A DVideoEditorPlayer.cpp201 const media::Metadata::Filter& ids, Parcel *records) {
200 getMetadata( const media::Metadata::Filter& ids, Parcel *records) argument
/frameworks/base/core/java/android/app/
H A DDownloadManager.java304 * provides an array of download ids corresponding to the download notification that was
786 public Query setFilterById(long... ids) { argument
787 mIds = ids;
956 * @param ids the IDs of the downloads to be marked 'deleted'
960 public int markRowDeleted(long... ids) { argument
961 if (ids == null || ids.length == 0) {
963 throw new IllegalArgumentException("input param 'ids' can't be null");
969 if (ids.length == 1) {
970 return mResolver.update(ContentUris.withAppendedId(mBaseUri, ids[
985 remove(long... ids) argument
1104 restartDownload(long... ids) argument
1261 getWhereClauseForIds(long[] ids) argument
1278 getWhereArgsForIds(long[] ids) argument
[all...]
/frameworks/support/v8/renderscript/jni/
H A Dandroid_renderscript_RenderScript.cpp259 jint *ids = _env->GetIntArrayElements(_ids, NULL); local
268 (RsElement *)ids, fieldCount,
272 _env->ReleaseIntArrayElements(_ids, ids, JNI_ABORT);
288 uint32_t *ids = (uint32_t *)malloc((uint32_t)dataSize * sizeof(uint32_t)); local
292 rsaElementGetSubElements(con, (RsElement)id, ids, names, arraySizes, (uint32_t)dataSize);
296 _env->SetIntArrayRegion(_IDs, i, 1, (const jint*)&ids[i]);
300 free(ids);
/frameworks/av/services/audioflinger/
H A DAudioFlinger.cpp904 KeyedVector<int, bool> ids = thread->sessionIds(); local
906 for (size_t j = 0; j < ids.size(); ++j) {
907 int sessionId = ids.keyAt(j);
H A DThreads.cpp5279 KeyedVector<int, bool> ids; local
5284 if (ids.indexOfKey(sessionId) < 0) {
5285 ids.add(sessionId, true);
5288 return ids;
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES30.cpp592 /* void glGenQueries ( GLsizei n, GLuint *ids ) */
601 GLuint *ids = (GLuint *) 0; local
606 _exceptionMessage = "ids == null";
618 ids = ids_base + offset;
622 (GLuint *)ids
635 /* void glGenQueries ( GLsizei n, GLuint *ids ) */
642 GLuint *ids = (GLuint *) 0; local
644 ids = (GLuint *)getPointer(_env, ids_buf, &_array, &_remaining, &_bufferOffset);
645 if (ids == NULL) {
647 ids
667 GLuint *ids = (GLuint *) 0; local
708 GLuint *ids = (GLuint *) 0; local
4487 GLuint *ids = (GLuint *) 0; local
4528 GLuint *ids = (GLuint *) 0; local
4553 GLuint *ids = (GLuint *) 0; local
4594 GLuint *ids = (GLuint *) 0; local
[all...]
/frameworks/base/graphics/jni/
H A Dandroid_renderscript_RenderScript.cpp363 jint *ids = _env->GetIntArrayElements(_ids, NULL); local
372 (RsElement *)ids, fieldCount,
376 _env->ReleaseIntArrayElements(_ids, ids, JNI_ABORT);
408 uint32_t *ids = (uint32_t *)malloc((uint32_t)dataSize * sizeof(uint32_t)); local
412 rsaElementGetSubElements(con, (RsElement)id, ids, names, arraySizes, (uint32_t)dataSize);
416 _env->SetIntArrayRegion(_IDs, i, 1, (const jint*)&ids[i]);
420 free(ids);
/frameworks/base/opengl/java/android/opengl/
H A DGLES30.java502 // C function void glGenQueries ( GLsizei n, GLuint *ids )
506 int[] ids,
510 // C function void glGenQueries ( GLsizei n, GLuint *ids )
514 java.nio.IntBuffer ids
517 // C function void glDeleteQueries ( GLsizei n, const GLuint *ids )
521 int[] ids,
525 // C function void glDeleteQueries ( GLsizei n, const GLuint *ids )
529 java.nio.IntBuffer ids
1625 // C function void glDeleteTransformFeedbacks ( GLsizei n, const GLuint *ids )
1629 int[] ids,
504 glGenQueries( int n, int[] ids, int offset ) argument
519 glDeleteQueries( int n, int[] ids, int offset ) argument
1627 glDeleteTransformFeedbacks( int n, int[] ids, int offset ) argument
1642 glGenTransformFeedbacks( int n, int[] ids, int offset ) argument
[all...]

Completed in 501 milliseconds

12