HomeSort by relevance Sort by last modified time
    Searched refs:CANCEL (Results 1 - 25 of 142) sorted by null

1 2 3 4 5 6

  /external/nist-sip/java/javax/sip/message/
Request.java 9 String CANCEL = "CANCEL";
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
ErrorCode.java 47 CANCEL(8, 5, -1),
PushObserver.java 76 PushObserver CANCEL = new PushObserver() {
FramedStream.java 450 boolean cancel;
452 cancel = !source.finished && source.closed && (sink.finished || sink.closed);
455 if (cancel) {
460 FramedStream.this.close(ErrorCode.CANCEL);
601 closeLater(ErrorCode.CANCEL);
FramedConnection.java 450 close(ErrorCode.NO_ERROR, ErrorCode.CANCEL);
488 ping.cancel();
542 private PushObserver pushObserver = PushObserver.CANCEL;
609 streamErrorCode = ErrorCode.CANCEL;
845 boolean cancel = pushObserver.onRequest(streamId, requestHeaders);
847 if (cancel) {
848 frameWriter.rstStream(streamId, ErrorCode.CANCEL);
863 boolean cancel = pushObserver.onHeaders(streamId, requestHeaders, inFinished);
865 if (cancel) frameWriter.rstStream(streamId, ErrorCode.CANCEL);
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
BitmapManager.java 30 * This class provides several utilities to cancel bitmap decoding.
33 * decoding if another thread wants to cancel it, it calls the function
40 private static enum State {CANCEL, ALLOW}
48 if (mState == State.CANCEL) {
49 s = "Cancel";
105 boolean result = (status.mState != State.CANCEL);
115 status.mState = State.CANCEL;
123 // Since our cancel request can arrive MediaProvider earlier than getThumbnail request,
124 // we use mThumbRequesting flag to make sure our request does cancel the request.
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/util/
StateMachine.java 42 public static final int CANCEL = 1;
69 CANCEL,
181 updateState(CANCEL);
214 // Handle Event.CANCEL, it happens when the back button is pressed.
215 if (event == CANCEL) {
  /libcore/ojluni/src/main/java/sun/nio/fs/
AbstractPoller.java 37 * also services "requests" from clients to register for new events or cancel
83 * Executed by poller thread to cancel key
88 * Executed by poller thread to shutdown and cancel all keys
129 * Cancels, and waits on, poller thread to cancel given key.
131 final void cancel(WatchKey key) { method in class:AbstractPoller
133 invoke(RequestType.CANCEL, key);
152 CANCEL,
264 * Cancel existing key
266 case CANCEL : {
  /external/python/cpython2/Lib/lib-tk/
tkMessageBox.py 49 CANCEL = "cancel"
112 if s == CANCEL:
133 print "yes/no/cancel", askyesnocancel("Spam", "Want it?")
  /external/python/cpython3/Lib/tkinter/
messagebox.py 49 CANCEL = "cancel"
112 if s == CANCEL:
133 print("yes/no/cancel", askyesnocancel("Spam", "Want it?"))
  /frameworks/base/tests/utils/SleepUtils/WakeLoopService/src/android/test/wakeuploop/
WakeUpCall.java 42 static final String CANCEL = "CANCEL";
47 boolean cancel = intent.hasExtra(CANCEL);
48 if (!cancel) {
84 // cancel alarms
86 am.cancel(PendingIntent.getBroadcast(context, 0, intent, 0));
WakeLoopService.java 93 // cancel alarms first
95 .putExtra(WakeUpCall.CANCEL, "true");
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/
tkMessageBox.py 49 CANCEL = "cancel"
112 if s == CANCEL:
133 print "yes/no/cancel", askyesnocancel("Spam", "Want it?")
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
tkMessageBox.py 49 CANCEL = "cancel"
112 if s == CANCEL:
133 print "yes/no/cancel", askyesnocancel("Spam", "Want it?")
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
tkMessageBox.py 49 CANCEL = "cancel"
112 if s == CANCEL:
133 print "yes/no/cancel", askyesnocancel("Spam", "Want it?")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
tkMessageBox.py 49 CANCEL = "cancel"
112 if s == CANCEL:
133 print "yes/no/cancel", askyesnocancel("Spam", "Want it?")
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
touch_analytics.proto 36 CANCEL = 3;
  /external/nist-sip/java/gov/nist/javax/sip/parser/
Parser.java 87 || token.getTokenType() == CANCEL
TokenTypes.java 46 public static final int CANCEL = START + 9;
  /frameworks/base/core/java/android/widget/
Toast.java 149 public void cancel() { method in class:Toast
150 mTN.cancel();
353 private static final int CANCEL = 2;
413 case CANCEL: {
447 public void cancel() { method in class:Toast.TN
448 if (localLOGV) Log.v(TAG, "CANCEL: " + this);
449 mHandler.obtainMessage(CANCEL).sendToTarget();
455 // If a cancel/hide is pending - no need to show - at this point
457 if (mHandler.hasMessages(CANCEL) || mHandler.hasMessages(HIDE)) {
495 // after it notifies us to cancel the toast there is an inheren
    [all...]
  /frameworks/base/services/core/java/com/android/server/am/
AppErrorDialog.java 53 static final int CANCEL = 7;
88 setCancelMessage(mHandler.obtainMessage(CANCEL));
205 cancel();
  /packages/apps/Launcher3/protos/
launcher_log.proto 156 CANCEL = 3; // Indicates that a confirmation screen was cancelled
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPServerTransaction.java 264 this.cancel();
276 this.cancel();
370 this.cancel();
592 if (method.equals(Request.CANCEL)) {
593 // Cancel is handled as a special case because it
595 // that it is trying to cancel.
596 transactionMatches = this.getMethod().equals(Request.CANCEL)
619 // a CANCEL request, which is not deemed
633 // Issue #96: special case handling for a CANCEL request -
635 // be CANCEL for it to have a chance at matching
    [all...]
  /external/libvncserver/libvncserver/
selbox.c 19 enum { SELECTING, OK, CANCEL } state;
23 static const char* cancelStr="Cancel";
139 m->state = CANCEL;
182 m->state = CANCEL;
296 if(selData.state==CANCEL)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
tic.h 145 #define CANCEL 3 /* Capability to be cancelled in following tc's */

Completed in 688 milliseconds

1 2 3 4 5 6