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

1 2

  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
MmiCode.java 29 CANCELLED,
49 * State becomes CANCELLED unless already COMPLETE or FAILED
Connection.java 63 CDMA_REORDER, /* MS has been redirected, call is cancelled */
243 CANCELLED, /* The post dial string playback was cancelled
  /external/guava/guava/src/com/google/common/util/concurrent/
AbstractFuture.java 50 * completed, failed, or cancelled.
205 * {@link #COMPLETED} or {@link #CANCELLED}.
210 * computation, and only then transition to COMPLETED or CANCELLED.
223 static final int CANCELLED = 4;
268 * was cancelled, or a {@link ExecutionException} if the task completed with
294 case CANCELLED:
295 throw new CancellationException("Task was cancelled.");
304 * Checks if the state is {@link #COMPLETED} or {@link #CANCELLED}.
307 return (getState() & (COMPLETED | CANCELLED)) != 0;
311 * Checks if the state is {@link #CANCELLED}
    [all...]
  /external/chromium/chrome/browser/download/
download_item_model.cc 82 case DownloadItem::CANCELLED:
126 case DownloadItem::CANCELLED:
download_item.cc 81 case DownloadItem::CANCELLED:
82 return "CANCELLED";
148 state_ = CANCELLED;
325 // was being cancelled in the UI thread, so we'll accept them unless we're
347 state_ = CANCELLED;
635 return (state_ == CANCELLED) || (state_ == INTERRUPTED);
download_item.h 48 // Download has been cancelled.
49 CANCELLED,
234 // Returns true if the download has been cancelled or was interrupted.
download_manager_unittest.cc 445 EXPECT_FALSE(observer->hit_state(DownloadItem::CANCELLED));
456 EXPECT_FALSE(observer->hit_state(DownloadItem::CANCELLED));
508 EXPECT_TRUE(observer->hit_state(DownloadItem::CANCELLED));
589 EXPECT_FALSE(observer->hit_state(DownloadItem::CANCELLED));
  /external/smack/src/org/jivesoftware/smackx/packet/
MessageEvent.java 54 * event is cancelled first.</li>
65 public static final String CANCELLED = "cancelled";
71 private boolean cancelled = true; field in class:MessageEvent
145 * When the message is a notification returns if the receiver of the message cancelled
148 * @return true if the receiver of the message cancelled composing a reply
151 return cancelled;
176 allEvents.add(MessageEvent.CANCELLED);
244 * When the message is a notification sets if the receiver of the message cancelled
246 * The Cancelled event is never requested explicitly. It is requested implicitly whe
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
FutureTask.java 18 * or cancelled (unless the computation is invoked using
60 * NEW -> CANCELLED
68 private static final int CANCELLED = 4;
92 if (s >= CANCELLED)
129 return state >= CANCELLED;
147 else if (!UNSAFE.compareAndSwapInt(this, stateOffset, NEW, CANCELLED))
184 * has been cancelled.
190 * this future has already been set or has been cancelled.
208 * already been set or has been cancelled.
259 * computation encounters an exception or is cancelled. This i
    [all...]
ForkJoinTask.java 91 * (including the case where a task was cancelled without executing);
94 * true if the task was cancelled (in which case {@link #getException}
97 * cancelled or encountered an exception, in which case {@link
181 * NORMAL, CANCELLED, or EXCEPTIONAL. Tasks undergoing blocking
196 private static final int CANCELLED = -2;
204 * @param completion one of NORMAL, CANCELLED, EXCEPTIONAL
565 if ((s = status) == CANCELLED)
637 * other may be cancelled. However, the execution status of
641 * cancelled, completed normally or exceptionally, or left
666 * may be cancelled. However, the execution status of individua
    [all...]
  /external/chromium/chrome/browser/history/
download_database.cc 143 statement.BindInt(0, DownloadItem::CANCELLED);
195 statement.BindInt(3, DownloadItem::CANCELLED);
history_unittest.cc 323 EXPECT_NE(0, AddDownload(DownloadItem::CANCELLED, month_ago));
359 EXPECT_TRUE(db_->UpdateDownload(512, DownloadItem::CANCELLED, removing));
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmConnection.java 322 setPostDialState(PostDialState.CANCELLED);
589 if (mPostDialState == PostDialState.CANCELLED
620 if (mPostDialState == PostDialState.CANCELLED) {
621 //Rlog.v("GSM", "##### processNextPostDialChar: postDialState == CANCELLED, bail");
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
RecentTasksLoader.java 73 private enum State { LOADING, LOADED, CANCELLED };
74 private State mState = State.CANCELLED;
306 mState = State.CANCELLED;
409 if (mState != State.CANCELLED) {
526 // thumbnails and icons for them. finish thread when cancelled or there
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
SipConnectionBase.java 167 if (mPostDialState == PostDialState.CANCELLED
  /external/chromium/net/base/
net_log_event_type_list.h 12 // Something got cancelled (we determine what is cancelled based on the
14 EVENT_TYPE(CANCELLED)
611 // attached when cancelled:
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaConnection.java 359 setPostDialState(PostDialState.CANCELLED);
634 if (mPostDialState == PostDialState.CANCELLED
684 if (mPostDialState == PostDialState.CANCELLED) {
686 //Rlog.v("CDMA", "##### processNextPostDialChar: postDialState == CANCELLED, bail");
CdmaMmiCode.java 162 // Complete or failed cannot be cancelled
167 mState = State.CANCELLED;
  /external/libusb/libusb/os/
linux_usbfs.c 78 * cancellation, all URBs within that transfer will be cancelled with the
87 * transfer get cancelled) is already in effect, and setting this flag is
119 /* cancelled by user or timeout */
120 CANCELLED,
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/locks/
AbstractQueuedLongSynchronizer.java 83 * needed to handle cancellation. If a node is cancelled, its
84 * successor is (normally) relinked to a non-cancelled
102 * nodes, we can miss noticing whether a cancelled node is
133 /** waitStatus value to indicate thread has cancelled */
134 static final int CANCELLED = 1;
154 * CANCELLED: This node is cancelled due to timeout or interrupt.
156 * a thread with cancelled node never again blocks.
186 * finding a non-cancelled one, which will always exist
187 * because the head node is never cancelled: A node become
    [all...]
AbstractQueuedSynchronizer.java 312 * needed to handle cancellation. If a node is cancelled, its
313 * successor is (normally) relinked to a non-cancelled
331 * nodes, we can miss noticing whether a cancelled node is
362 /** waitStatus value to indicate thread has cancelled */
363 static final int CANCELLED = 1;
383 * CANCELLED: This node is cancelled due to timeout or interrupt.
385 * a thread with cancelled node never again blocks.
415 * finding a non-cancelled one, which will always exist
416 * because the head node is never cancelled: A node become
    [all...]
  /external/libusb_aah/libusb/os/
linux_usbfs.c 80 * URBs within that transfer will be cancelled and no more URBs will be
127 /* cancelled by user or timeout */
128 CANCELLED,
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
GSMPhoneTest.java     [all...]
  /external/chromium/chrome/browser/automation/
automation_provider.cc 237 state_to_string[DownloadItem::CANCELLED] = std::string("CANCELLED");
    [all...]
  /external/chromium/chrome/browser/ui/gtk/download/
download_item_gtk.cc 387 case DownloadItem::CANCELLED:
    [all...]

Completed in 661 milliseconds

1 2