Searched refs:cancel (Results 1 - 25 of 425) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/os/
H A DICancellationSignal.aidl23 oneway void cancel();
H A DCancellationSignal.java22 * Provides the ability to cancel an operation in progress.
62 public void cancel() { method in class:CancellationSignal
81 remote.cancel();
101 * If {@link CancellationSignal#cancel} has already been called, then the provided
127 * If {@link CancellationSignal#cancel} has already been called, then the provided
150 remote.cancel();
196 * Called when {@link CancellationSignal#cancel} is invoked.
205 public void cancel() throws RemoteException { method in class:CancellationSignal.Transport
206 mCancellationSignal.cancel();
H A DNullVibrator.java60 public void cancel() { method in class:NullVibrator
/frameworks/base/core/java/com/android/internal/app/
H A DIVoiceInteractorRequest.aidl23 void cancel();
/frameworks/support/v4/jellybean/android/support/v4/os/
H A DCancellationSignalCompatJellybean.java24 public static void cancel(Object cancellationSignalObj) { method in class:CancellationSignalCompatJellybean
25 ((android.os.CancellationSignal)cancellationSignalObj).cancel();
/frameworks/base/core/java/android/webkit/
H A DSslErrorHandler.java26 * either {@link #proceed} or {@link #cancel} to set the WebView's response
46 public void cancel() {} method in class:SslErrorHandler
H A DHttpAuthHandler.java26 * call either {@link #proceed} or {@link #cancel} to set the WebView's
52 * Instructs the WebView to cancel the authentication request.
54 public void cancel() { method in class:HttpAuthHandler
H A DClientCertRequest.java34 * WebView caches the {@link #proceed} and {@link #cancel} responses in memory
80 public abstract void cancel(); method in class:ClientCertRequest
H A DJsResult.java44 public final void cancel() { method in class:JsResult
/frameworks/base/test-runner/src/android/test/mock/
H A DMockDialogInterface.java32 public void cancel() { method in class:MockDialogInterface
/frameworks/base/core/tests/coretests/src/android/view/
H A DMutateDrawable.java37 Button cancel = new Button(this);
38 cancel.setId(R.id.b);
39 cancel.setBackgroundDrawable(getResources().getDrawable(
43 layout.addView(cancel);
/frameworks/support/v4/java/android/support/v4/os/
H A DCancellationSignal.java64 public void cancel() { method in class:CancellationSignal
82 CancellationSignalCompatJellybean.cancel(obj);
100 * If {@link CancellationSignal#cancel} has already been called, then the provided
142 CancellationSignalCompatJellybean.cancel(mCancellationSignalObj);
163 * Called when {@link CancellationSignal#cancel} is invoked.
/frameworks/base/core/java/android/speech/
H A DIRecognitionService.aidl59 void cancel(in IRecognitionListener listener);
/frameworks/support/v4/java/android/support/v4/app/
H A DINotificationSideChannel.aidl36 void cancel(String packageName, int id, String tag);
/frameworks/base/core/java/android/accounts/
H A DAccountManagerFuture.java28 * <tt>cancel</tt> method. Additional methods are provided to
38 * Attempts to cancel execution of this task. This attempt will
41 * and this task has not started when <tt>cancel</tt> is called,
58 boolean cancel(boolean mayInterruptIfRunning); method in interface:AccountManagerFuture
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DMmiCode.java56 public void cancel(); method in interface:MmiCode
/frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/engine/
H A DPipeline.java24 * cancel the current execution
26 public void cancel(); method in interface:Pipeline
/frameworks/support/v4/donut/android/support/v4/animation/
H A DValueAnimatorCompat.java36 public void cancel(); method in interface:ValueAnimatorCompat
/frameworks/base/core/java/android/app/job/
H A DIJobScheduler.aidl28 void cancel(int jobId);
H A DJobScheduler.java87 public abstract void cancel(int jobId); method in class:JobScheduler
/frameworks/base/core/tests/coretests/src/android/app/activity/
H A DIntentSenderTest.java37 is.cancel();
57 is.cancel();
66 is.cancel();
84 is.cancel();
/frameworks/opt/bitmap/src/com/android/bitmap/
H A DRequestKey.java88 * object to cancel the asynchronous task. If the client wants to create an InputStream instead,
123 * @param factory The FileDescriptorFactory to decode from. Pass null to cancel decode.
140 void cancel(); method in interface:RequestKey.Cancelable
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardParser.java92 * Actual cancel is done after parsing the current vcard.
95 public abstract void cancel(); method in class:VCardParser
/frameworks/support/v4/eclair/android/support/v4/app/
H A DNotificationManagerCompatEclair.java25 notificationManager.cancel(tag, id);
/frameworks/volley/src/test/java/com/android/volley/
H A DRequestQueueTest.java67 verify(req1).cancel(); // A cancelled
68 verify(req3).cancel(); // A cancelled
69 verify(req2, never()).cancel(); // B not cancelled
70 verify(req4, never()).cancel(); // A added after cancel not cancelled

Completed in 1181 milliseconds

1234567891011>>