HomeSort by relevance Sort by last modified time
    Searched defs:tasks (Results 1 - 25 of 44) sorted by null

1 2

  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/tasks/
ILogUiProvider.java 17 package com.android.sdkuilib.internal.tasks;
IProgressUiProvider.java 17 package com.android.sdkuilib.internal.tasks;
ProgressTask.java 17 package com.android.sdkuilib.internal.tasks;
ProgressTaskFactory.java 17 package com.android.sdkuilib.internal.tasks;
ProgressViewFactory.java 17 package com.android.sdkuilib.internal.tasks;
ProgressView.java 17 package com.android.sdkuilib.internal.tasks;
TaskMonitorImpl.java 17 package com.android.sdkuilib.internal.tasks;
  /libcore/luni/src/main/java/java/util/
Timer.java 21 * Timers schedule one-shot or recurring {@link TimerTask tasks} for execution.
25 * <p>Each timer has one thread on which tasks are executed sequentially. When
26 * this thread is busy running a task, runnable tasks may be subject to delays.
31 * <p>Recurring tasks are scheduled with either a fixed period or a fixed rate:
41 * from starting tasks on time.
181 private TimerHeap tasks = new TimerHeap(); field in class:Timer.TimerImpl
208 if (tasks.isEmpty()) {
212 // no tasks scheduled -- sleep until any task appear
222 task = tasks.minimum();
227 tasks.delete(0)
    [all...]
  /external/chromium/base/threading/
worker_pool_posix_unittest.cc 28 const std::queue<Task*>& tasks() const { return pool_->tasks_; } function in class:base::PosixDynamicThreadPool::PosixDynamicThreadPoolPeer
183 EXPECT_EQ(0U, peer_.tasks().size());
202 // Add another 2 tasks. One should reuse the existing worker thread.
216 // Add two blocking tasks.
220 EXPECT_EQ(0, counter_) << "Blocking tasks should not have started yet.";
232 // Add two non blocking tasks and wait for them to finish.
237 // Add two blocking tasks, start them simultaneously, and wait for them to
  /libcore/dalvik/src/main/java/dalvik/system/
Zygote.java 62 File tasks = new File("/proc/self/task"); local
63 while (tasks.list().length > 1) {
  /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...]
  /external/chromium/chrome/browser/service/
service_process_control.cc 58 // The tasks executed here may add more tasks to the vector. So copy
61 TaskList tasks; local
62 tasks.swap(connect_done_tasks_);
63 RunAllTasksHelper(&tasks);
64 DCHECK(tasks.empty());
67 tasks.swap(connect_success_tasks_);
68 RunAllTasksHelper(&tasks);
69 DCHECK(tasks.empty());
73 tasks.swap(connect_failure_tasks_)
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
RecentTasksLoader.java 217 ArrayList<TaskDescription> tasks = new ArrayList<TaskDescription>(); local
242 tasks.add(item);
249 loadThumbnailsInBackground(new ArrayList<TaskDescription>(tasks));
250 return tasks;
255 if (DEBUG) Log.v(TAG, "Showing " + descriptions.size() + " tasks");
  /libcore/luni/src/test/java/tests/api/java/util/
TimerTest.java 322 TimerTestTask[] tasks = new TimerTestTask[100]; local
327 tasks[i] = new TimerTestTask();
328 t.schedule(tasks[i], delayTime[j++], 200);
335 tasks[i].cancel();
457 // Ensure multiple tasks are run
480 "Multiple tasks should have incremented counter 4 times not "
579 // Ensure multiple tasks are run
598 "Multiple tasks should have incremented counter 4 times not "
728 // Ensure multiple tasks are run
747 "Multiple tasks should have incremented counter 24 times not
    [all...]
  /packages/apps/Contacts/tests/src/com/android/contacts/util/
FakeAsyncTaskExecutor.java 46 * Tasks submitted to this executor will not be run immediately. Rather they will be stored in a
47 * list of submitted tasks, where they can be examined. They can also be run on-demand using the run
57 /** The maximum length of time in ms to wait for tasks to execute during tests. */
150 * Removes the matching task from the list of submitted tasks, then runs it. The executor used
158 List<SubmittedTask> tasks = getSubmittedTasksByIdentifier(identifier, true); local
159 Assert.assertEquals("Expected one task " + identifier + ", got " + tasks, 1, tasks.size());
160 runTask(tasks.get(0));
164 * Runs all tasks whose identifier matches the given identifier.
166 * Removes all matching tasks from the list of submitted tasks, and runs them. The executor use
174 List<SubmittedTask> tasks = getSubmittedTasksByIdentifier(identifier, true); local
    [all...]
  /bionic/libc/kernel/common/linux/sunrpc/
sched.h 145 struct list_head tasks[RPC_NR_PRIORITY]; member in struct:rpc_wait_queue
160 #define RPC_WAITQ_INIT(var,qname) { .lock = SPIN_LOCK_UNLOCKED, .tasks = { [0] = LIST_HEAD_INIT(var.tasks[0]), [1] = LIST_HEAD_INIT(var.tasks[1]), [2] = LIST_HEAD_INIT(var.tasks[2]), }, }
162 #define RPC_WAITQ_INIT(var,qname) { .lock = SPIN_LOCK_UNLOCKED, .tasks = { [0] = LIST_HEAD_INIT(var.tasks[0]), [1] = LIST_HEAD_INIT(var.tasks[1]), [2] = LIST_HEAD_INIT(var.tasks[2]), }, .name = qname, }
  /development/ndk/platforms/android-3/include/linux/sunrpc/
sched.h 145 struct list_head tasks[RPC_NR_PRIORITY]; member in struct:rpc_wait_queue
160 #define RPC_WAITQ_INIT(var,qname) { .lock = SPIN_LOCK_UNLOCKED, .tasks = { [0] = LIST_HEAD_INIT(var.tasks[0]), [1] = LIST_HEAD_INIT(var.tasks[1]), [2] = LIST_HEAD_INIT(var.tasks[2]), }, }
162 #define RPC_WAITQ_INIT(var,qname) { .lock = SPIN_LOCK_UNLOCKED, .tasks = { [0] = LIST_HEAD_INIT(var.tasks[0]), [1] = LIST_HEAD_INIT(var.tasks[1]), [2] = LIST_HEAD_INIT(var.tasks[2]), }, .name = qname, }
  /external/kernel-headers/original/linux/sunrpc/
sched.h 34 struct list_head links; /* Links to related tasks */
46 struct list_head tk_task; /* global list of tasks */
58 unsigned long tk_cookie; /* Cookie for batching tasks */
63 * action next procedure for async tasks
102 /* support walking a list of tasks on a wait queue */
111 /* .. and walking list of all tasks */
206 struct list_head tasks[RPC_NR_PRIORITY]; /* task queue for each priority level */ member in struct:rpc_wait_queue
211 unsigned char nr; /* # tasks remaining for cookie */
212 unsigned short qlen; /* total # tasks waiting in queue */
228 .tasks = {
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/sunrpc/
sched.h 145 struct list_head tasks[RPC_NR_PRIORITY]; member in struct:rpc_wait_queue
160 #define RPC_WAITQ_INIT(var,qname) { .lock = SPIN_LOCK_UNLOCKED, .tasks = { [0] = LIST_HEAD_INIT(var.tasks[0]), [1] = LIST_HEAD_INIT(var.tasks[1]), [2] = LIST_HEAD_INIT(var.tasks[2]), }, }
162 #define RPC_WAITQ_INIT(var,qname) { .lock = SPIN_LOCK_UNLOCKED, .tasks = { [0] = LIST_HEAD_INIT(var.tasks[0]), [1] = LIST_HEAD_INIT(var.tasks[1]), [2] = LIST_HEAD_INIT(var.tasks[2]), }, .name = qname, }
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/sunrpc/
sched.h 145 struct list_head tasks[RPC_NR_PRIORITY]; member in struct:rpc_wait_queue
160 #define RPC_WAITQ_INIT(var,qname) { .lock = SPIN_LOCK_UNLOCKED, .tasks = { [0] = LIST_HEAD_INIT(var.tasks[0]), [1] = LIST_HEAD_INIT(var.tasks[1]), [2] = LIST_HEAD_INIT(var.tasks[2]), }, }
162 #define RPC_WAITQ_INIT(var,qname) { .lock = SPIN_LOCK_UNLOCKED, .tasks = { [0] = LIST_HEAD_INIT(var.tasks[0]), [1] = LIST_HEAD_INIT(var.tasks[1]), [2] = LIST_HEAD_INIT(var.tasks[2]), }, .name = qname, }
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/sunrpc/
sched.h 145 struct list_head tasks[RPC_NR_PRIORITY]; member in struct:rpc_wait_queue
160 #define RPC_WAITQ_INIT(var,qname) { .lock = SPIN_LOCK_UNLOCKED, .tasks = { [0] = LIST_HEAD_INIT(var.tasks[0]), [1] = LIST_HEAD_INIT(var.tasks[1]), [2] = LIST_HEAD_INIT(var.tasks[2]), }, }
162 #define RPC_WAITQ_INIT(var,qname) { .lock = SPIN_LOCK_UNLOCKED, .tasks = { [0] = LIST_HEAD_INIT(var.tasks[0]), [1] = LIST_HEAD_INIT(var.tasks[1]), [2] = LIST_HEAD_INIT(var.tasks[2]), }, .name = qname, }
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/sunrpc/
sched.h 145 struct list_head tasks[RPC_NR_PRIORITY]; member in struct:rpc_wait_queue
160 #define RPC_WAITQ_INIT(var,qname) { .lock = SPIN_LOCK_UNLOCKED, .tasks = { [0] = LIST_HEAD_INIT(var.tasks[0]), [1] = LIST_HEAD_INIT(var.tasks[1]), [2] = LIST_HEAD_INIT(var.tasks[2]), }, }
162 #define RPC_WAITQ_INIT(var,qname) { .lock = SPIN_LOCK_UNLOCKED, .tasks = { [0] = LIST_HEAD_INIT(var.tasks[0]), [1] = LIST_HEAD_INIT(var.tasks[1]), [2] = LIST_HEAD_INIT(var.tasks[2]), }, .name = qname, }
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/sunrpc/
sched.h 145 struct list_head tasks[RPC_NR_PRIORITY]; member in struct:rpc_wait_queue
160 #define RPC_WAITQ_INIT(var,qname) { .lock = SPIN_LOCK_UNLOCKED, .tasks = { [0] = LIST_HEAD_INIT(var.tasks[0]), [1] = LIST_HEAD_INIT(var.tasks[1]), [2] = LIST_HEAD_INIT(var.tasks[2]), }, }
162 #define RPC_WAITQ_INIT(var,qname) { .lock = SPIN_LOCK_UNLOCKED, .tasks = { [0] = LIST_HEAD_INIT(var.tasks[0]), [1] = LIST_HEAD_INIT(var.tasks[1]), [2] = LIST_HEAD_INIT(var.tasks[2]), }, .name = qname, }
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/sunrpc/
sched.h 145 struct list_head tasks[RPC_NR_PRIORITY]; member in struct:rpc_wait_queue
160 #define RPC_WAITQ_INIT(var,qname) { .lock = SPIN_LOCK_UNLOCKED, .tasks = { [0] = LIST_HEAD_INIT(var.tasks[0]), [1] = LIST_HEAD_INIT(var.tasks[1]), [2] = LIST_HEAD_INIT(var.tasks[2]), }, }
162 #define RPC_WAITQ_INIT(var,qname) { .lock = SPIN_LOCK_UNLOCKED, .tasks = { [0] = LIST_HEAD_INIT(var.tasks[0]), [1] = LIST_HEAD_INIT(var.tasks[1]), [2] = LIST_HEAD_INIT(var.tasks[2]), }, .name = qname, }
  /prebuilt/ndk/android-ndk-r5/platforms/android-3/arch-arm/usr/include/linux/sunrpc/
sched.h 145 struct list_head tasks[RPC_NR_PRIORITY]; member in struct:rpc_wait_queue
160 #define RPC_WAITQ_INIT(var,qname) { .lock = SPIN_LOCK_UNLOCKED, .tasks = { [0] = LIST_HEAD_INIT(var.tasks[0]), [1] = LIST_HEAD_INIT(var.tasks[1]), [2] = LIST_HEAD_INIT(var.tasks[2]), }, }
162 #define RPC_WAITQ_INIT(var,qname) { .lock = SPIN_LOCK_UNLOCKED, .tasks = { [0] = LIST_HEAD_INIT(var.tasks[0]), [1] = LIST_HEAD_INIT(var.tasks[1]), [2] = LIST_HEAD_INIT(var.tasks[2]), }, .name = qname, }

Completed in 2521 milliseconds

1 2