Searched defs:resume (Results 1 - 25 of 76) sorted by last modified time

1234

/frameworks/wilhelm/src/itf/
H A DIDynamicInterfaceManagement.cpp261 // currently being resumed (will not auto-cancel an asynchronous resume)
279 // Parameter self is the DynamicInterface, and MPH specifies which interface to resume.
312 VoidHook resume = MPH_init_table[MPH].mResume; local
313 if (NULL != resume) {
314 (*resume)(thisItf);
389 // Engine was destroyed during resume, or insufficient memory,
412 VoidHook resume = MPH_init_table[MPH].mResume; local
413 if (NULL != resume) {
414 (*resume)(thisItf);
H A DIObject.cpp176 AsyncHook resume = clazz->mResume; local
186 if (NULL != resume) {
188 // Note that the mutex is locked on entry to and exit from the resume hook,
190 result = (*resume)(thiz, SL_BOOLEAN_TRUE);
255 // Engine was destroyed during resume, or insufficient memory
263 AsyncHook resume = clazz->mResume; local
264 // Note that the mutex is locked on entry to and exit from the resume hook,
266 result = (NULL != resume) ? (*resume)(thiz, SL_BOOLEAN_FALSE) : SL_RESULT_SUCCESS;
/frameworks/support/transition/api14/android/support/transition/
H A DAnimatorUtilsApi14.java49 public void resume(@NonNull Animator animator) { method in class:AnimatorUtilsApi14
/frameworks/support/transition/api19/android/support/transition/
H A DAnimatorUtilsApi19.java38 public void resume(@NonNull Animator animator) { method in class:AnimatorUtilsApi19
39 animator.resume();
/frameworks/support/transition/base/android/support/transition/
H A DAnimatorUtilsImpl.java29 void resume(@NonNull Animator animator); method in interface:AnimatorUtilsImpl
/frameworks/support/transition/src/android/support/transition/
H A DAnimatorUtils.java45 static void resume(@NonNull Animator animator) { method in class:AnimatorUtils
46 IMPL.resume(animator);
H A DTransition.java228 // Whether this transition has ended. Used to avoid pause/resume on transitions
1747 public void resume(View sceneRoot) { method in class:Transition
1757 AnimatorUtils.resume(anim);
2327 * Note that resume() may be called by a parent {@link TransitionSet} on
H A DTransitionSet.java514 public void resume(View sceneRoot) { method in class:TransitionSet
515 super.resume(sceneRoot);
518 mTransitions.get(i).resume(sceneRoot);
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DRemotePlaybackClient.java115 * {@link MediaControlIntent#ACTION_RESUME resume},
479 * Sends a request to resume (unpause) media playback.
498 public void resume(Bundle extras, SessionActionCallback callback) { method in class:RemotePlaybackClient
/frameworks/support/fragment/tests/java/android/support/v4/app/
H A DFragmentTestUtil.java168 public static void resume(ActivityTestRule<? extends Activity> rule, method in class:FragmentTestUtil
/frameworks/support/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/media/
H A DLocalPlayer.java127 resume();
179 public void resume() { method in class:LocalPlayer
181 Log.d(TAG, "resume");
H A DPlayer.java66 public abstract void resume(); method in class:Player
H A DRemotePlayer.java227 public void resume() { method in class:RemotePlayer
233 Log.d(TAG, "resume");
235 mClient.resume(null, new SessionActionCallback() {
238 logStatus("resume: succeeded", sessionId, sessionStatus, null, null);
247 logError("resume: failed", error, code);
H A DSessionManager.java30 * queuing behaviors such as enqueue/remove of media items, pause/resume/stop,
188 public void resume() { method in class:SessionManager
190 log("resume");
265 // This will resume playback of current item. Furthermore, if the new player
345 mPlayer.resume();
/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/media/
H A DLocalPlayer.java127 resume();
179 public void resume() { method in class:LocalPlayer
181 Log.d(TAG, "resume");
H A DPlayer.java66 public abstract void resume(); method in class:Player
H A DRemotePlayer.java227 public void resume() { method in class:RemotePlayer
233 Log.d(TAG, "resume");
235 mClient.resume(null, new SessionActionCallback() {
238 logStatus("resume: succeeded", sessionId, sessionStatus, null, null);
247 logError("resume: failed", error, code);
H A DSessionManager.java30 * queuing behaviors such as enqueue/remove of media items, pause/resume/stop,
188 public void resume() { method in class:SessionManager
190 log("resume");
265 // This will resume playback of current item. Furthermore, if the new player
345 mPlayer.resume();
/frameworks/rs/tests/java_api/RsCameraDemo/src/com/android/example/rscamera/
H A DCameraOps.java104 public String resume() { method in class:CameraOps
H A DCameraView.java134 public void resume(Activity activity) { method in class:CameraView
137 String errorMessage = mCameraOps.resume();
/frameworks/rs/
H A DrsContext.cpp618 void Context::resume() { function in class:android::renderscript::Context
817 rsc->resume();
/frameworks/rs/tests/java_api/CannyLive/src/com/android/example/cannylive/
H A DCameraOps.java99 public String resume() { method in class:CameraOps
H A DCameraView.java133 public void resume(Activity activity) { method in class:CameraView
136 String errorMessage = mCameraOps.resume();
/frameworks/opt/net/ims/src/java/com/android/ims/
H A DImsCall.java172 * Called when the call resume is failed.
176 * @param reasonInfo detailed reason of the call resume failure
183 * Called when the call resume is received from the remote user.
1251 * @throws ImsException if the IMS service fails to resume the call
1253 public void resume() throws ImsException { method in class:ImsCall
1254 logi("resume :: ");
1258 logi("resume :: call is not being held");
1265 loge("resume :: update is in progress; request=" +
1272 loge("resume :: ");
1280 mSession.resume(createResumeMediaProfil
[all...]
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 428 milliseconds

1234