Searched refs:context (Results 1 - 25 of 2662) sorted by last modified time

1234567891011>>

/frameworks/wilhelm/include/OMXAL/
H A DOpenMAXAL.h1172 void * context
1177 void * context,
/frameworks/wilhelm/src/
H A DThreadPool.c23 static void *ThreadPool_start(void *context) argument
25 ThreadPool *tp = (ThreadPool *) context;
/frameworks/wilhelm/src/desktop/
H A DSDL.c24 static void SDLCALL SDL_callback(void *context, Uint8 *stream, int len) argument
27 IEngine *thisEngine = (IEngine *) context;
H A DSndFile.c52 void *context = thisAP->mPlay.mContext; local
93 (*callback)(&thisAP->mPlay.mItf, context, SL_PLAYEVENT_HEADATNEWPOS);
/frameworks/wilhelm/src/itf/
H A DIDynamicInterfaceManagement.c93 void *context = thiz->mContext; local
99 (*callback)(&thiz->mItf, context, SL_DYNAMIC_ITF_EVENT_ASYNC_TERMINATION, result, iid);
342 void *context = thiz->mContext; local
348 (*callback)(&thiz->mItf, context, SL_DYNAMIC_ITF_EVENT_ASYNC_TERMINATION, result, iid);
H A DIObject.c74 void *context = thiz->mContext; local
79 (*callback)(&thiz->mItf, context, SL_OBJECT_EVENT_ASYNC_TERMINATION, result, state, NULL);
144 void *context = thiz->mContext; local
149 (*callback)(&thiz->mItf, context, SL_OBJECT_EVENT_ASYNC_TERMINATION, result, state,
217 void *context = thiz->mContext; local
222 (*callback)(&thiz->mItf, context, SL_OBJECT_EVENT_ASYNC_TERMINATION, result, state, NULL);
H A DIOutputMixExt.c298 void *context = bufferQueue->mContext; local
302 (*callback)((SLBufferQueueItf) bufferQueue, context);
/frameworks/wilhelm/tests/examples/
H A DslesTestFeedback.cpp72 static void recorderCallback(SLAndroidSimpleBufferQueueItf caller __unused, void *context __unused)
162 static void playerCallback(SLBufferQueueItf caller __unused, void *context __unused)
H A DslesTestSendToPresetReverb.cpp54 void prefetch_callback(SLPrefetchStatusItf caller, void *context __unused, SLuint32 event)
/frameworks/wilhelm/tests/listening/
H A DslesTest_playMuteSolo.cpp70 void prefetch_callback(SLPrefetchStatusItf caller, void *context __unused, SLuint32 event)
73 assert(context == NULL);
104 Context *context = (Context *) pContext; local
105 SLPlayItf playItf = context->playItf;
106 SLMuteSoloItf muteSolo = context->muteSoloItf;
114 switch (context->testMode) {
289 /* Initialize a context for use by the play event callback */
290 Context context; local
291 context.playItf = playItf;
292 context
[all...]
/frameworks/wilhelm/tests/native-media/src/com/example/nativemedia/
H A DMyGLSurfaceView.java50 public MyGLSurfaceView(Context context) { argument
51 super(context, null);
54 public MyGLSurfaceView(Context context, AttributeSet attributeSet) { argument
55 super(context, attributeSet);
56 init(context);
59 private void init(Context context) { argument
61 mRenderer = new MyRenderer(context);
83 public MyRenderer(Context context) { argument
84 mContext = context;
/frameworks/wilhelm/tests/sandbox/
H A Dintbufq.c71 static void callback(BufferQueueItf caller, void *context) argument
76 if (context != expectedContext)
77 printf("context %p expected %p\r\n", context, expectedContext);
H A Dmultiplay.c91 void prefetch_callback(SLPrefetchStatusItf caller, void *context, SLuint32 event) argument
94 assert(context != NULL);
95 Player *p = (Player *) context;
H A Dreverb.c190 void prefetch_callback(SLPrefetchStatusItf caller, void *context, SLuint32 event) argument
193 assert(context == NULL);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DBackgroundManager.java323 public void clearDrawable(int id, Context context) { argument
327 super.setDrawableByLayerId(id, createEmptyDrawable(context));
552 public Drawable getThemeDrawable(Context context, int themeDrawableId) { argument
562 drawable = ContextCompat.getDrawable(context, themeDrawableId);
1191 private static Drawable createEmptyDrawable(Context context) { argument
1193 return new BitmapDrawable(context.getResources(), bitmap);
H A DGuidedStepFragment.java1212 private static boolean isGuidedStepTheme(Context context) { argument
1215 boolean found = context.getTheme().resolveAttribute(resId, typedValue, true);
1298 * determine the transition. But the fragment context to retrieve the theme
H A DGuidedStepRootLayout.java33 public GuidedStepRootLayout(Context context, AttributeSet attrs) { argument
34 super(context, attrs);
37 public GuidedStepRootLayout(Context context, AttributeSet attrs, int defStyleAttr) { argument
38 super(context, attrs, defStyleAttr);
H A DGuidedStepSupportFragment.java1214 private static boolean isGuidedStepTheme(Context context) { argument
1217 boolean found = context.getTheme().resolveAttribute(resId, typedValue, true);
1300 * determine the transition. But the fragment context to retrieve the theme
H A DHeadersFragment.java202 public NoOverlappingFrameLayout(Context context) { argument
203 super(context);
H A DHeadersSupportFragment.java204 public NoOverlappingFrameLayout(Context context) { argument
205 super(context);
H A DMediaControllerGlue.java55 * @param context
59 public MediaControllerGlue(Context context, argument
62 super(context, fragment, seekSpeeds);
74 * @param context
79 public MediaControllerGlue(Context context, argument
83 super(context, fragment, fastForwardSpeeds, rewindSpeeds);
H A DPlaybackControlGlue.java210 * @param context
213 public PlaybackControlGlue(Context context, int[] seekSpeeds) { argument
214 this(context, null, seekSpeeds, seekSpeeds);
220 * @param context
224 public PlaybackControlGlue(Context context, argument
227 this(context, null, fastForwardSpeeds, rewindSpeeds);
233 * @param context
237 public PlaybackControlGlue(Context context, argument
240 this(context, fragment, seekSpeeds, seekSpeeds);
246 * @param context
251 PlaybackControlGlue(Context context, PlaybackOverlayFragment fragment, int[] fastForwardSpeeds, int[] rewindSpeeds) argument
[all...]
H A DPlaybackControlSupportGlue.java212 * @param context
215 public PlaybackControlSupportGlue(Context context, int[] seekSpeeds) { argument
216 this(context, null, seekSpeeds, seekSpeeds);
222 * @param context
226 public PlaybackControlSupportGlue(Context context, argument
229 this(context, null, fastForwardSpeeds, rewindSpeeds);
235 * @param context
239 public PlaybackControlSupportGlue(Context context, argument
242 this(context, fragment, seekSpeeds, seekSpeeds);
248 * @param context
253 PlaybackControlSupportGlue(Context context, PlaybackOverlaySupportFragment fragment, int[] fastForwardSpeeds, int[] rewindSpeeds) argument
[all...]
H A DPlaybackOverlayFragment.java375 private static ValueAnimator loadAnimator(Context context, int resId) { argument
376 ValueAnimator animator = (ValueAnimator) AnimatorInflater.loadAnimator(context, resId);
H A DPlaybackOverlaySupportFragment.java377 private static ValueAnimator loadAnimator(Context context, int resId) { argument
378 ValueAnimator animator = (ValueAnimator) AnimatorInflater.loadAnimator(context, resId);

Completed in 254 milliseconds

1234567891011>>