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

1 2

  /libcore/luni/src/main/java/java/util/
TimerTask.java 31 /* If timer was cancelled */
32 boolean cancelled; field in class:TimerTask
94 boolean willRun = !cancelled && when > 0;
95 cancelled = true;
Timer.java 46 * cancelled may hold resources indefinitely.
146 if (timers[i].cancelled) {
170 private boolean cancelled; field in class:Timer.TimerImpl
204 // need to check cancelled inside the synchronized block
205 if (cancelled) {
226 if (task.cancelled) {
251 if (task.cancelled) {
289 cancelled = true;
306 cancelled = true;
562 if (impl.cancelled) {
    [all...]
  /frameworks/base/include/media/
PVPlayer.h 68 static void do_nothing(status_t s, void *cookie, bool cancelled) { }
69 static void run_init(status_t s, void *cookie, bool cancelled);
70 static void run_set_video_surface(status_t s, void *cookie, bool cancelled);
71 static void run_set_audio_output(status_t s, void *cookie, bool cancelled);
72 static void run_prepare(status_t s, void *cookie, bool cancelled);
73 static void check_for_live_streaming(status_t s, void *cookie, bool cancelled);
  /external/bluetooth/glib/gio/inotify/
inotify-sub.h 31 gboolean cancelled; member in struct:__anon2094
inotify-helper.c 128 if (!sub->cancelled)
131 sub->cancelled = TRUE;
inotify-path.c 147 g_assert (!sub->cancelled);
  /external/bluetooth/glib/gio/fam/
fam-helper.c 41 gboolean cancelled; member in struct:_fam_sub
77 gboolean cancelled; local
90 cancelled = sub->cancelled;
91 if (ev.code == FAMAcknowledge && cancelled)
97 if (cancelled)
247 if (sub->cancelled)
250 sub->cancelled = TRUE;
  /external/bluetooth/glib/gio/
gcancellable.c 51 CANCELLED,
59 guint cancelled : 1; member in struct:_GCancellable
102 * GCancellable::cancelled:
105 * Emitted when the operation has been cancelled.
108 * operation is cancelled from another thread, the signal will be
109 * emitted in the thread that cancelled the operation, not the
122 * id = g_signal_connect (cancellable, "cancelled",
151 * id = g_signal_connect_data (cancellable, "cancelled",
164 signals[CANCELLED] =
165 g_signal_new (I_("cancelled"),
    [all...]
gfilemonitor.c 54 G_LOCK_DEFINE_STATIC(cancelled); variable
74 gboolean cancelled; member in struct:_GFileMonitorPrivate
134 G_LOCK (cancelled);
135 g_value_set_boolean (value, priv->cancelled);
136 G_UNLOCK (cancelled);
243 g_param_spec_boolean ("cancelled",
244 P_("Cancelled"),
245 P_("Whether the monitor has been cancelled"),
277 G_LOCK (cancelled);
278 res = monitor->priv->cancelled;
    [all...]
gcancellable.h 44 * Allows actions to be cancelled.
52 void (* cancelled) (GCancellable *cancellable); member in struct:_GCancellableClass
  /frameworks/base/core/java/android/webkit/
StreamLoader.java 113 while (!sendData() && !mLoadListener.cancelled());
124 if (mLoadListener.cancelled()) {
SslErrorHandler.java 142 if (!loader.cancelled()) {
188 // if this loader has been cancelled
189 if (loader.cancelled()) {
255 if (!loader.cancelled()) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
DelayedLaunchInfo.java 230 * Set if launch has been cancelled
232 public void setCancelled(boolean cancelled) {
233 this.mCancelled = cancelled;
237 * @return true if launch has been cancelled
  /external/webkit/WebCore/loader/
SubresourceLoader.cpp 180 if (cancelled())
192 if (cancelled())
200 if (cancelled())
212 if (cancelled())
228 if (cancelled())
259 // The SubResourceLoaderClient may have cancelled this ResourceLoader in response to the challenge.
loader.h 95 void didFail(SubresourceLoader*, bool cancelled = false);
ResourceLoader.h 134 bool cancelled() const { return m_cancelled; } function in class:WebCore::ResourceLoader
loader.cpp 419 void Loader::Host::didFail(SubresourceLoader* loader, bool cancelled)
443 if (!cancelled) {
449 if (cancelled || !resource->isPreloaded())
MainResourceLoader.cpp 81 if (!cancelled()) {
212 // Check reachedTerminalState since the load may have already been cancelled inside of _handleUnimplementablePolicyWithErrorCode::.
256 // we may have cancelled this load as part of switching to fallback content
  /libcore/luni/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/spi/
MockAbstractSelector.java 34 boolean cancelled = false; field in class:MockAbstractSelector.MockSelectionKey
  /external/bluetooth/glib/gio/fen/
gfendirectorymonitor.c 43 gboolean cancelled; member in struct:_GFenDirectoryMonitor
  /external/chromium/net/flip/
flip_stream.h 123 bool cancelled() const { return cancelled_; } function in class:net::FlipStream
flip_session.cc 592 // It is possible that the stream was cancelled while we were writing
594 if (!stream->cancelled())
845 // NOTE: it may just be that the stream was cancelled.
944 // NOTE: it may just be that the stream was cancelled.
982 CHECK(!stream->cancelled());
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ScheduledThreadPoolExecutor.java 33 * <p>When a submitted task is cancelled before it is run, execution
34 * is suppressed. Such a cancelled task is not
37 * may also cause unbounded retention of cancelled tasks.
253 boolean cancelled = super.cancel(mayInterruptIfRunning);
254 if (cancelled && removeOnCancel && heapIndex >= 0)
256 return cancelled;
347 t.isCancelled()) { // also remove if already cancelled
685 * Sets the policy on whether cancelled tasks should be immediately
698 * Gets the policy on whether cancelled tasks should be immediately
702 * @return {@code true} if cancelled tasks are immediately remove
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/concurrent/
ThreadPoolExecutorSubclassTest.java 28 boolean cancelled; field in class:ThreadPoolExecutorSubclassTest.CustomTask
45 lock.lock(); try { return cancelled; } finally { lock.unlock() ; }
51 cancelled = true;
500 * purge removes cancelled tasks from the queue
    [all...]
  /prebuilt/common/eclipse/
org.eclipse.equinox.common_3.4.0.v20080421-2006.jar 

Completed in 358 milliseconds

1 2