/external/chromium/third_party/libjingle/source/talk/base/ |
taskrunner.cc | 72 // If that occurs, then tasks may be deleted in this method, 77 // Running continues until all tasks are Blocked (ok for a small # of tasks) 97 // Tasks are deleted when running has paused 141 // Repeat while we have new timed-out tasks. 190 // walk through all the tasks looking for the real 204 // walk through all the tasks looking for the one
|
/libcore/luni/src/main/java/java/util/concurrent/ |
Executors.java | 48 * <tt>nThreads</tt> threads will be active processing tasks. 49 * If additional tasks are submitted when all threads are active, 53 * execute subsequent tasks. The threads in the pool will exist 71 * tasks. If additional tasks are submitted when all threads are 75 * needed to execute subsequent tasks. The threads in the pool will 97 * subsequent tasks.) Tasks are guaranteed to execute 138 * of programs that execute many short-lived asynchronous tasks. 178 * subsequent tasks.) Tasks are guaranteed to execut [all...] |
ForkJoinWorkerThread.java | 56 * numbers of tasks. To accomplish this, we shift the CAS 82 * frameworks in which tasks are never joined. However neither 88 * it. For example, some sets of tasks profit from cache 113 * miss links in the chain during long-lived tasks, GC stalls etc 327 * processing any tasks. If you override this method, you must 332 * processing tasks. 571 * Runs the given task, plus any local tasks until queue is empty 587 * Removes and cancels all tasks in queue. Can be called from any 591 ForkJoinTask<?> cj = currentJoin; // try to cancel ongoing tasks 605 * Drains tasks to given collection c [all...] |
ExecutorCompletionService.java | 11 * to execute tasks. This class arranges that submitted tasks are, 14 * when processing groups of tasks. 43 * of the set of tasks, ignoring any that encounter exceptions, 44 * and cancelling all other tasks when the first one is ready:
|
ForkJoinPool.java | 41 * execute subtasks created by other active tasks (eventually blocking 43 * when most tasks spawn other subtasks (as do most {@code 46 * with event-style tasks that are never joined. 52 * internal worker threads, even if some tasks are stalled waiting to 72 * tasks that are already executing in a pool should normally 121 * <p>This implementation rejects submitted tasks (that is, by throwing 136 * into a submission queue. Workers take these tasks and typically 138 * Preference rules give first priority to processing tasks from 140 * randomized FIFO steals of tasks in other worker queues, and 144 * decentralized control -- workers mostly take tasks fro 1609 final ArrayList<ForkJoinTask<T>> tasks; field in class:ForkJoinPool.InvokeAll [all...] |
/external/guava/guava/src/com/google/common/util/concurrent/ |
MoreExecutors.java | 193 * applies both to individually submitted tasks and to collections of tasks 195 * tasks will run serially on the calling thread. Tasks are run to 199 * <p>Although all tasks are immediately executed in the thread that 206 * "best-effort" with regards to canceling running tasks is implemented 208 * threads executing tasks. Second, the returned list will always be empty, 210 * This applies also to tasks given to {@code invokeAll} or {@code invokeAny} 211 * which are pending serial execution, even the subset of the tasks that 217 * RejectedExecutionException, although a subset of the tasks may alread [all...] |
/external/webkit/Source/WebCore/loader/ |
WorkerThreadableLoader.h | 84 // all cases. All tasks posted from the worker context's thread are ok because 86 // around for all tasks that use it on the main thread. 89 // In this case, no more tasks are posted from the worker object's thread to the worker 94 // go through it. All tasks posted from the worker object's thread to the worker context's 97 // tasks are executed.
|
/external/chromium/base/ |
message_loop.h | 84 // asynchronous events it may process in addition to tasks and timers. 87 // This type of ML only supports tasks and timers. 118 // NOTE: Any tasks posted to the MessageLoop during this notification will 140 // With the PostTask variant, tasks are invoked in FIFO order, inter-mixed 142 // tasks are called after at least approximately 'delay_ms' have elapsed. 146 // such tasks get deferred until the top-most MessageLoop::Run is executing. 199 // Process all pending tasks, windows messages, etc., but don't wait/sleep. 242 // The specific case where tasks get queued is: 255 // Enables nestable tasks on |loop| while in scope. 406 // Called to process any delayed non-nestable tasks [all...] |
task_queue.cc | 42 // Run the tasks that are ready.
|
/external/kernel-headers/original/linux/ |
mutex.h | 45 * locks and tasks (and only those tasks) 63 * This is the control structure for tasks blocked on mutex,
|
/external/clang/www/analyzer/ |
dev_cxx.html | 26 <p>Listed here are a set of open tasks that are prerequisites for 27 decent analysis of C++. This list is also not complete; new tasks
|
/external/webkit/Source/WebCore/storage/ |
IDBTransactionBackendImpl.h | 61 Unused, // Created, but no tasks yet. 62 StartPending, // Enqueued tasks, but SQLite transaction not yet started.
|
/frameworks/base/docs/html/design/get-started/ |
creative-vision.jd | 27 first use, though. Android apps remove ongoing chores like file management and syncing. Simple tasks 28 never require complex procedures, and complex tasks are tailored to the human hand and mind. People
|
/packages/apps/Dialer/src/com/android/dialer/util/ |
AsyncTaskExecutors.java | 44 * Creates an AsyncTaskExecutor that submits tasks to run with 57 * Creates an AsyncTaskExecutor that submits tasks to run with
|
/cts/suite/audio_quality/lib/include/task/ |
TaskSequential.h | 41 * Run all async tasks queued (= call complete) and dequeue them.
|
/cts/tools/dex-tools/ |
README.txt | 28 TODO.txt : tasks which are still open
|
/cts/tools/signature-tools/ |
README.txt | 54 TODO.txt : tasks which are still open
|
/external/chromium/webkit/glue/media/ |
buffered_data_source.cc | 216 // Render thread tasks. 503 // that we cannot guarantee tasks on render thread have completely stopped 505 // let tasks on render thread to run but make sure they don't call outside 507 // safe because |lock_| is only acquired in tasks on render thread. 552 // that we cannot guarantee tasks on render thread have completely stopped 554 // let tasks on render thread to run but make sure they don't call outside 556 // safe because |lock_| is only acquired in tasks on render thread. 588 // that we cannot guarantee tasks on render thread have completely stopped 590 // let tasks on render thread to run but make sure they don't call outside 592 // safe because |lock_| is only acquired in tasks on render thread [all...] |
/external/chromium-trace/trace-viewer/src/ |
guid.js | 20 * nesting tasks.
|
/external/jmdns/src/javax/jmdns/impl/tasks/state/ |
DNSStateTask.java | 2 package javax.jmdns.impl.tasks.state; 17 import javax.jmdns.impl.tasks.DNSTask; 20 * This is the root class for all state tasks. These tasks work with objects that implements the {@link javax.jmdns.impl.DNSStatefulObject} interface and therefore participate in the state machine.
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowLooper.java | 14 * todo: provide better support for advancing the clock and running queued tasks 179 * Causes all enqueued tasks to be discarded 186 * Returns the {@link com.xtremelabs.robolectric.util.Scheduler} that is being used to manage the enqueued tasks. 188 * @return the {@link com.xtremelabs.robolectric.util.Scheduler} that is being used to manage the enqueued tasks.
|
/external/valgrind/main/gdbserver_tests/ |
mcinfcallWSRU.stdinB.gdb | 14 # We will interrupt in a few seconds (be sure all tasks are in Runnable/Yielding state
|
/frameworks/base/location/java/android/location/ |
package.html | 7 Services, provides a more powerful, high-level framework that automates tasks such as
|
/frameworks/ex/carousel/test/res/values/ |
strings.xml | 28 <string name="no_recent_tasks">No recent tasks</string>
|
/frameworks/ex/carousel/test/res/values-en-rGB/ |
strings.xml | 27 <string name="no_recent_tasks" msgid="6884096266670555780">"No recent tasks"</string>
|