HomeSort by relevance Sort by last modified time
    Searched full:tasks (Results 176 - 200 of 864) sorted by null

1 2 3 4 5 6 78 91011>>

  /development/samples/training/bitmapfun/src/com/example/android/bitmapfun/util/
AsyncTask.java 74 * <p>For more information about using tasks and threads, read the
190 * to a pool of threads allowing multiple tasks to operate in parallel. Starting with
191 * {@link android.os.Build.VERSION_CODES#HONEYCOMB}, tasks are executed on a single
216 * An {@link Executor} that can be used to execute tasks in parallel.
224 * An {@link Executor} that executes tasks one at a time in serial
481 * task should be interrupted; otherwise, in-progress tasks are allowed
539 * to a pool of threads allowing multiple tasks to operate in parallel. Starting
540 * {@link android.os.Build.VERSION_CODES#HONEYCOMB}, tasks are back to being
568 * allow multiple tasks to run in parallel on a pool of threads managed by
572 * <p><em>Warning:</em> Allowing multiple tasks to run in parallel fro
    [all...]
  /external/chromium/chrome/browser/net/
connection_tester_unittest.cc 187 // Drain the tasks on the message loop.
190 // any pending tasks instead of running them. This causes a problem with
193 // depending on the order that pending tasks were deleted in, it might
  /external/chromium/chrome/browser/resources/file_manager/js/
mock_chrome.js 68 var tasks =
81 // Copy all tasks, then remove the ones that don't match.
82 var candidateTasks = [].concat(tasks);
  /external/chromium/chrome/browser/sync/glue/
ui_model_worker.cc 81 // Any tasks scheduled or to be scheduled on the UI MessageLoop will not run.
84 // Drain any final tasks manually until the SyncerThread tells us it has
85 // totally finished. There should only ever be 0 or 1 tasks Run() here.
  /external/chromium/third_party/libjingle/source/talk/xmpp/
xmppclient.h 57 // all tasks that depend on a single Xmpp connection. If you want to,
65 // XmppEngine needs tasks too, for example it has an XmppLoginTask which
121 // managed tasks and dispatching
  /external/jmdns/src/javax/jmdns/impl/tasks/
Responder.java 5 package javax.jmdns.impl.tasks;
44 * @see javax.jmdns.impl.tasks.DNSTask#getName()
62 * @see javax.jmdns.impl.tasks.DNSTask#start(java.util.Timer)
  /external/linux-tools-perf/Documentation/
perf-bench.txt 28 (executing 1000000 pipe operations between two tasks)
104 (executing 1000000 pipe operations between two tasks)
111 (executing 1000 pipe operations between two tasks)
  /frameworks/base/core/java/android/os/
AsyncTask.java 54 * <p>For more information about using tasks and threads, read the
170 * to a pool of threads allowing multiple tasks to operate in parallel. Starting with
171 * {@link android.os.Build.VERSION_CODES#HONEYCOMB}, tasks are executed on a single
196 * An {@link Executor} that can be used to execute tasks in parallel.
203 * An {@link Executor} that executes tasks one at a time in serial
455 * task should be interrupted; otherwise, in-progress tasks are allowed
513 * to a pool of threads allowing multiple tasks to operate in parallel. Starting
514 * {@link android.os.Build.VERSION_CODES#HONEYCOMB}, tasks are back to being
542 * allow multiple tasks to run in parallel on a pool of threads managed by
546 * <p><em>Warning:</em> Allowing multiple tasks to run in parallel fro
    [all...]
  /frameworks/base/docs/html/training/multiple-threads/
run-code.jd 32 The previous lesson showed you how to define a class that manages thread pools and the tasks
115 // Iterates over the array of tasks
132 network-intensive tasks. To avoid slowing down or locking up the system, you should test for
  /sdk/apps/SdkController/
Implementation.txt 15 though as being separate tasks that the user wants to achieve, for example
25 Another way to see it is that the app handles a number of tasks which are
35 There are 2 tasks activities: SensorActivity and MultiTouchActivity.
  /system/extras/sane_schedstat/
sane_schedstat.c 49 unsigned long long cpu_time; /* time spent running by tasks (ms) */
50 unsigned long long run_delay; /* time spent waiting to run by tasks (ms) */
51 unsigned long pcount; /* number of tasks (not necessarily unique) given */
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
TimerTest.java 316 TimerTestTask[] tasks = new TimerTestTask[100]; local
321 tasks[i] = new TimerTestTask();
322 t.schedule(tasks[i], delayTime[j++], 200);
329 tasks[i].cancel();
451 // Ensure multiple tasks are run
474 "Multiple tasks should have incremented counter 4 times not "
573 // Ensure multiple tasks are run
592 "Multiple tasks should have incremented counter 4 times not "
722 // Ensure multiple tasks are run
741 "Multiple tasks should have incremented counter 24 times not
    [all...]
  /frameworks/base/core/java/android/app/
TaskStackBuilder.java 37 * to the current task and does not capture navigation across different tasks.
38 * Navigating across tasks and easily reaching the previous task is accomplished
53 * For more detailed information about tasks, the back stack, and navigation design guidelines,
55 * <a href="{@docRoot}guide/topics/fundamentals/tasks-and-back-stack.html">Tasks and Back Stack</a>
  /sdk/files/ant/
uibuild.xml 6 all the targets and tasks necessary to build Android projects, be they
51 <!-- ********************* Custom Tasks ******************** -->
54 <!-- jar file from where the tasks are loaded -->
56 <pathelement path="${sdk.dir}/tools/lib/ant-tasks.jar" />
59 <!-- Custom tasks -->
  /external/chromium/base/
message_pump_win.h 105 // can drive execution of tasks when a native message pump is running.
118 // Intermixed with those peeks are callouts to DoWork for pending tasks, and
128 // Tasks, at the cost of some complexity.
133 // made for an extended set of events, including the availability of Tasks to
143 // no Tasks to run, this otherwise infinite stream of messages which drives the
144 // sub-pump is halted. The pump is automatically re-started when Tasks are
147 // A second complexity is that the presence of this stream of posted tasks may
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
RecentTasksLoader.java 251 // tasks on touch down
451 ArrayList<TaskDescription> tasks = new ArrayList<TaskDescription>();
488 tasks.add(item);
489 if (firstScreenful && tasks.size() == mNumTasksInFirstScreenful) {
490 publishProgress(tasks);
491 tasks = new ArrayList<TaskDescription>();
500 publishProgress(tasks);
  /frameworks/support/v4/java/android/support/v4/content/
ModernAsyncTask.java 66 * An {@link Executor} that can be used to execute tasks in parallel.
295 * task should be interrupted; otherwise, in-progress tasks are allowed
352 * to a pool of threads allowing multiple tasks to operate in parallel. After
379 * allow multiple tasks to run in parallel on a pool of threads managed by
383 * <p><em>Warning:</em> Allowing multiple tasks to run in parallel from
385 * of their operation is not defined. For example, if these tasks are used
395 * convenient process-wide thread pool for tasks that are loosely coupled.
  /external/libnfc-nci/halimpl/bcm2079x/gki/ulinux/
gki_ulinux.c 100 ** Description entry point of GKI created tasks
120 pthread_exit(0); /* GKI tasks have no return value */
257 /* On Android, the new tasks starts running before 'gki_cb.os.thread_id[task_id]' is initialized */
308 ** Description shutdowns the GKI tasks/threads in from max task id to 0 and frees
597 ** the tasks and timers when the system is being stopped
627 ** Description This function is called by tasks to wait for a specific
763 ** Description This function is called by tasks to sleep unconditionally
807 ** Description This function is called by tasks to send events to other
808 ** tasks. Tasks can also send events to themselves
    [all...]
  /external/libnfc-nci/src/gki/ulinux/
gki_ulinux.c 97 ** Description entry point of GKI created tasks
117 pthread_exit(0); /* GKI tasks have no return value */
254 /* On Android, the new tasks starts running before 'gki_cb.os.thread_id[task_id]' is initialized */
305 ** Description shutdowns the GKI tasks/threads in from max task id to 0 and frees
575 ** the tasks and timers when the system is being stopped
605 ** Description This function is called by tasks to wait for a specific
741 ** Description This function is called by tasks to sleep unconditionally
785 ** Description This function is called by tasks to send events to other
786 ** tasks. Tasks can also send events to themselves
    [all...]
  /packages/apps/Dialer/src/com/android/dialer/voicemail/
VoicemailPlaybackPresenter.java 99 public enum Tasks {
162 /** Used to run async tasks that need to interact with the ui. */
205 mAsyncTaskExecutor.submit(Tasks.CHECK_FOR_CONTENT, new AsyncTask<Void, Void, Boolean>() {
275 mAsyncTaskExecutor.submit(Tasks.CHECK_CONTENT_AFTER_CHANGE,
307 mAsyncTaskExecutor.submit(Tasks.PREPARE_MEDIA_PLAYER,
439 mPrepareTask = mAsyncTaskExecutor.submit(Tasks.RESET_PREPARE_START_MEDIA_PLAYER,
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadService.java 68 * Any database updates important enough to initiate tasks should always be
232 // TODO: switch to asking real tasks to derive active state
258 // tasks will trigger another update pass when they're finished.
265 // No active tasks, and any pending update messages can be
266 // ignored, since any updates important enough to initiate tasks
290 * @return If there are active tasks being processed, as of the database
  /prebuilts/tools/common/m2/repository/commons-logging/commons-logging/1.1.1/
commons-logging-1.1.1.pom 186 <tasks>
201 </tasks>
211 <tasks>
224 </tasks>
234 <tasks>
249 </tasks>
  /docs/source.android.com/src/compatibility/
cts-development.jd 89 <code>cts/CtsTestCaseList.mk</code>. This Makefile is used by <code>build/core/tasks/cts.mk</code>
101 <h2 id="other-tasks">Other Tasks</h2>
  /external/bluetooth/bluedroid/gki/ulinux/
gki_ulinux.c 159 pthread_exit(0); /* GKI tasks have no return value */
282 /* On Android, the new tasks starts running before 'gki_cb.os.thread_id[task_id]' is initialized */
455 ** Description shutdowns the GKI tasks/threads in from max task id to 0 and frees
863 ** the tasks and timers when the system is being stopped
894 ** Description This function is called by tasks to wait for a specific
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
online_attempt_unittest.cc 76 // Force IO thread to finish tasks so I can verify |state_|.
117 // Force IO thread to finish tasks so I can verify |state_|.
276 // Force IO thread to finish tasks so I can verify |state_|.

Completed in 401 milliseconds

1 2 3 4 5 6 78 91011>>