HomeSort by relevance Sort by last modified time
    Searched full:cancel (Results 51 - 75 of 1366) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/opencore/oscl/oscl/osclproc/src/
oscl_scheduler_ao.h 152 * Cancel any pending request.
154 * routine, wait for the request to cancel, then set the
160 OSCL_IMPORT_REF void Cancel();
177 * Cancel request handler.
276 * Cancel any active request.
278 * routine, wait for the request to cancel, then set the
284 OSCL_IMPORT_REF void Cancel();
299 * Cancel request handler.
301 * is cancelled. The default routine will cancel
oscl_timer.h 161 * Cancel a timer
163 * @param timerID used to identify the timer to cancel.
166 * matching criteria to cancel a timer.
168 void Cancel(int32 timerID, int32 timeoutInfo = -1);
170 * Cancel all pending timers.
228 iTimer->Cancel();
295 // Cancel a timer
297 void OsclTimer<Alloc>::Cancel(int32 timerID, int32 param)
387 Cancel(entry->iTimerID, entry->iParam);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
AlarmController.java 106 mToast.cancel();
138 mToast.cancel();
154 // And cancel the alarm.
156 am.cancel(sender);
160 mToast.cancel();
AlarmService_Service.java 61 // Cancel the notification -- we use the same ID that we had used to start it
62 mNM.cancel(R.string.alarm_service_started);
115 // We use a layout id because it is a unique number. We use it later to cancel.
LocalService.java 77 // Cancel the persistent notification.
78 mNM.cancel(R.string.local_service_started);
113 // We use a layout id because it is a unique number. We use it later to cancel.
AlarmService.java 79 // And cancel the alarm.
81 am.cancel(mAlarmSender);
  /external/opencore/oscl/oscl/osclio/src/
oscl_socket.h 203 * Cancel Bind
205 * This method will cancel any pending BindAsync operation
253 * Cancel SendTo
255 * This method will cancel any pending SendTo operation
298 * Cancel RecvFrom
300 * This method will cancel any pending RecvFrom operation
398 * Cancel Bind
400 * This method will cancel any pending BindAsync operation
433 * Cancel Async Listen
435 * This method will cancel any pending ListenAsync operatio
    [all...]
oscl_dns_method.cpp 112 Cancel();
150 //cancel the timeout if any
152 //cancel the request.
  /external/webkit/WebCore/loader/icon/
IconLoader.cpp 74 // Store the handle so we can cancel the load if stopLoading is called later.
111 // Until <rdar://problem/5463392> is resolved and we can properly cancel SubresourceLoaders when they get an error response,
125 // implement this method to cancel the resource load
126 m_resourceLoader->cancel();
133 // Until <rdar://problem/5463392> is resolved and we can properly cancel SubresourceLoaders when they get an error response,
  /external/webkit/WebCore/platform/network/curl/
ResourceHandleCurl.cpp 101 cancel();
117 void ResourceHandle::cancel() function in class:WebCore::ResourceHandle
119 ResourceHandleManager::sharedInstance()->cancel(this);
177 // Restarting the handle has failed so just cancel it.
178 cancel();
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
CorpusSelectionDialog.java 116 // Cancel dialog on any touch down event which is not handled by the corpus grid
117 cancel(); method
133 cancel(); method
140 cancel(); method
152 cancel(); method
  /external/opencore/nodes/pvmediainputnode/src/
pvmf_media_input_node.cpp 407 //look for cancel completion.
415 //Current cancel command is now complete.
418 //look for non-cancel completion
596 Cancel();
665 //Can't do anything when an asynchronous cancel is in progress-- just
670 //If a command is in progress, only hi pri cancel commands can interrupt it.
685 //save input command in cancel command
715 //Request already failed-- erase from Cancel Command.
721 //Node command is now stored in Cancel Command, so erase from Input Commands.
    [all...]
  /external/bluetooth/glib/gio/fam/
gfamdirectorymonitor.c 113 file_monitor_class->cancel = g_fam_directory_monitor_cancel;
138 if (G_FILE_MONITOR_CLASS (g_fam_directory_monitor_parent_class)->cancel)
139 (*G_FILE_MONITOR_CLASS (g_fam_directory_monitor_parent_class)->cancel) (monitor);
gfamfilemonitor.c 113 file_monitor_class->cancel = g_fam_file_monitor_cancel;
136 if (G_FILE_MONITOR_CLASS (g_fam_file_monitor_parent_class)->cancel)
137 (*G_FILE_MONITOR_CLASS (g_fam_file_monitor_parent_class)->cancel) (monitor);
  /external/bluetooth/glib/gio/fen/
gfendirectorymonitor.c 123 directory_monitor_class->cancel = g_fen_directory_monitor_cancel;
145 if (G_FILE_MONITOR_CLASS (g_fen_directory_monitor_parent_class)->cancel)
146 (*G_FILE_MONITOR_CLASS (g_fen_directory_monitor_parent_class)->cancel) (monitor);
gfenfilemonitor.c 123 file_monitor_class->cancel = g_fen_file_monitor_cancel;
144 if (G_FILE_MONITOR_CLASS (g_fen_file_monitor_parent_class)->cancel)
145 (*G_FILE_MONITOR_CLASS (g_fen_file_monitor_parent_class)->cancel) (monitor);
  /external/bluetooth/glib/gio/inotify/
ginotifydirectorymonitor.c 121 directory_monitor_class->cancel = g_inotify_directory_monitor_cancel;
145 if (G_FILE_MONITOR_CLASS (g_inotify_directory_monitor_parent_class)->cancel)
146 (*G_FILE_MONITOR_CLASS (g_inotify_directory_monitor_parent_class)->cancel) (monitor);
ginotifyfilemonitor.c 140 file_monitor_class->cancel = g_inotify_file_monitor_cancel;
163 if (G_FILE_MONITOR_CLASS (g_inotify_file_monitor_parent_class)->cancel)
164 (*G_FILE_MONITOR_CLASS (g_inotify_file_monitor_parent_class)->cancel) (monitor);
  /frameworks/base/core/java/android/pim/vcard/
VCardParser.java 95 * Cancel parsing.
96 * Actual cancel is done after the end of the current one vcard entry parsing.
98 public void cancel() { method in class:VCardParser
  /dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
FutureTask.java 12 * implementation of {@link Future}, with methods to start and cancel
74 public boolean cancel(boolean mayInterruptIfRunning) { method in class:FutureTask
180 * The thread running task. When nulled after set/cancel, this
244 // in case we are racing with a cancel request
265 // in case we are racing with a cancel request
312 releaseShared(0); // cancel
  /development/apps/launchperf/res/layout/
simple_layout.xml 61 <Button android:id="@+id/cancel"
66 android:text="@string/cancel" />
  /development/samples/ApiDemos/res/layout/
relative_layout_2.xml 52 The OK button comes first so the Cancel button
65 The Cancel button is aligned with the top of
  /development/samples/MySampleRss/res/layout/
add_item.xml 52 <Button android:id="@+id/cancel"
57 android:text="@string/cancel"/>
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
AddRssItem.java 32 // Button handler for Submit/Cancel.
68 Button btn = (Button) findViewById(R.id.cancel);
  /external/guava/src/com/google/common/util/concurrent/
ValueFuture.java 74 public boolean cancel(boolean mayInterruptIfRunning) { method in class:ValueFuture
75 return super.cancel();

Completed in 303 milliseconds

1 23 4 5 6 7 8 91011>>