Searched defs:runnable (Results 1 - 9 of 9) sorted by relevance

/frameworks/support/volley/src/com/android/volley/
H A DResponseDelivery.java29 public void postResponse(Request<?> request, Response<?> response, Runnable runnable); argument
H A DExecutorDelivery.java59 public void postResponse(Request<?> request, Response<?> response, Runnable runnable) { argument
62 mResponsePoster.execute(new ResponseDeliveryRunnable(request, response, runnable));
82 public ResponseDeliveryRunnable(Request request, Response response, Runnable runnable) { argument
85 mRunnable = runnable;
112 // If we have been provided a post-delivery runnable, run it.
/frameworks/support/volley/tests/src/com/android/volley/mock/
H A DMockResponseDelivery.java41 public void postResponse(Request<?> request, Response<?> response, Runnable runnable) { argument
44 runnable.run();
/frameworks/base/voip/java/com/android/server/sip/
H A DSipSessionListenerProxy.java39 private void proxy(Runnable runnable) { argument
43 new Thread(runnable, "SipSessionCallbackThread").start();
H A DSipSessionGroup.java1802 private void proxy(Runnable runnable) { argument
1806 new Thread(runnable, "SIP-KeepAliveProcessCallbackThread").start();
/frameworks/base/core/java/android/os/
H A DAsyncTask.java602 public static void execute(Runnable runnable) { argument
603 sDefaultExecutor.execute(runnable);
/frameworks/support/v4/java/android/support/v4/content/
H A DModernAsyncTask.java432 public static void execute(Runnable runnable) { argument
433 sDefaultExecutor.execute(runnable);
/frameworks/base/core/java/android/view/
H A DViewPropertyAnimator.java678 * @param runnable The action to run when the next animation starts.
681 public ViewPropertyAnimator withStartAction(Runnable runnable) { argument
682 mPendingOnStartAction = runnable;
683 if (runnable != null && mAnimatorOnStartMap == null) {
692 * that animation, the runnable will not run.
707 * @param runnable The action to run when the next animation ends.
710 public ViewPropertyAnimator withEndAction(Runnable runnable) { argument
711 mPendingOnEndAction = runnable;
712 if (runnable != null && mAnimatorOnEndMap == null) {
/frameworks/base/core/java/android/accounts/
H A DAccountManager.java1504 protected void postRunnableToHandler(Runnable runnable) { argument
1506 handler.post(runnable);

Completed in 3460 milliseconds