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

1 2 3 4 5 6 7 8 9

  /bionic/libc/kernel/common/linux/
smp_lock.h 17 #define release_kernel_lock(task) do { } while(0)
18 #define reacquire_kernel_lock(task) 0
stacktrace.h 15 #define save_stack_trace(trace, task, all, skip) do { } while (0)
  /development/ndk/platforms/android-3/include/linux/
smp_lock.h 17 #define release_kernel_lock(task) do { } while(0)
18 #define reacquire_kernel_lock(task) 0
stacktrace.h 15 #define save_stack_trace(trace, task, all, skip) do { } while (0)
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
smp_lock.h 17 #define release_kernel_lock(task) do { } while(0)
18 #define reacquire_kernel_lock(task) 0
stacktrace.h 15 #define save_stack_trace(trace, task, all, skip) do { } while (0)
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/
smp_lock.h 17 #define release_kernel_lock(task) do { } while(0)
18 #define reacquire_kernel_lock(task) 0
stacktrace.h 15 #define save_stack_trace(trace, task, all, skip) do { } while (0)
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/
smp_lock.h 17 #define release_kernel_lock(task) do { } while(0)
18 #define reacquire_kernel_lock(task) 0
stacktrace.h 15 #define save_stack_trace(trace, task, all, skip) do { } while (0)
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/
smp_lock.h 17 #define release_kernel_lock(task) do { } while(0)
18 #define reacquire_kernel_lock(task) 0
stacktrace.h 15 #define save_stack_trace(trace, task, all, skip) do { } while (0)
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/
smp_lock.h 17 #define release_kernel_lock(task) do { } while(0)
18 #define reacquire_kernel_lock(task) 0
stacktrace.h 15 #define save_stack_trace(trace, task, all, skip) do { } while (0)
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/
smp_lock.h 17 #define release_kernel_lock(task) do { } while(0)
18 #define reacquire_kernel_lock(task) 0
stacktrace.h 15 #define save_stack_trace(trace, task, all, skip) do { } while (0)
  /external/chromium/base/
worker_pool_win.cc 8 #include "base/task.h"
13 Task* task = static_cast<Task*>(param); local
14 task->Run();
15 delete task;
22 Task* task, bool task_is_slow) {
23 task->SetBirthPlace(from_here);
29 if (!QueueUserWorkItem(WorkItemCallback, task, flags))
    [all...]
worker_pool.h 10 class Task;
16 // This function posts |task| to run on a worker thread. |task_is_slow|
18 // false if |task| could not be posted to a worker thread. Regardless of
19 // return value, ownership of |task| is transferred to the worker pool.
21 Task* task, bool task_is_slow);
worker_pool_linux.cc 13 #include "base/task.h"
27 void PostTask(const tracked_objects::Location& from_here, Task* task,
43 Task* task, bool task_is_slow) {
44 task->SetBirthPlace(from_here);
45 pool_->PostTask(task);
74 Task* task = pool_->WaitForTask(); local
75 if (!task)
107 Task* task = tasks_.front(); local
163 Task* task = tasks_.front(); local
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ExecutorCompletionService.java 87 QueueingFuture(RunnableFuture<V> task) {
88 super(task, null);
89 this.task = task;
91 protected void done() { completionQueue.add(task); }
92 private final Future<V> task; field in class:ExecutorCompletionService.QueueingFuture
95 private RunnableFuture<V> newTaskFor(Callable<V> task) {
97 return new FutureTask<V>(task);
99 return aes.newTaskFor(task);
102 private RunnableFuture<V> newTaskFor(Runnable task, V result)
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
NamedTaskExecutor.java 25 * Schedules a task for execution. Implementations should not throw
26 * {@link java.util.concurrent.RejectedExecutionException} if the task
29 void execute(NamedTask task);
  /libcore/luni/src/main/java/java/util/
Timer.java 26 * this thread is busy running a task, runnable tasks may be subject to delays.
34 * successive run of a task is scheduled relative to the start time of
38 * successive run of a task is scheduled without regard for when the
48 * <p>This class does not offer guarantees about the real-time nature of task
73 public void insert(TimerTask task) {
79 timers[size++] = task;
155 private int getTask(TimerTask task) {
157 if (timers[i] == task) {
202 TimerTask task; local
212 // no tasks scheduled -- sleep until any task appea
    [all...]
  /external/kernel-headers/original/linux/
ioprio.h 48 static inline int task_ioprio(struct task_struct *task)
50 WARN_ON(!ioprio_valid(task->ioprio));
51 return IOPRIO_PRIO_DATA(task->ioprio);
54 static inline int task_nice_ioprio(struct task_struct *task)
56 return (task_nice(task) + 20) / 5;
  /libcore/luni/src/main/java/org/apache/xml/utils/
ThreadControllerWrapper.java 38 public static void waitThread(Thread worker, Runnable task)
41 m_tpool.waitThread(worker, task);
54 * Will get a thread from the pool, execute the task
60 * NEEDSDOC @param task
61 * @param priority if >0 the task will run with the given priority
63 * @return The thread that is running the task, can be used
66 public Thread run(Runnable task, int priority)
69 Thread t = new Thread(task);
79 * Wait until the task is completed on the worker
83 * NEEDSDOC @param task
    [all...]
  /external/emma/ant/ant14/com/vladium/emma/
emmaTask.java 50 final NestedTask task = (NestedTask) m_tasks.remove (0); local
55 setTaskName (task.getTaskName ());
57 task.execute ();
86 protected NestedTask addTask (final NestedTask task, final String pseudoName)
88 initTask (task, pseudoName);
90 m_tasks.add (task);
91 return task;
94 protected void initTask (final NestedTask task, final String pseudoName)
96 task.setTaskName (pseudoName);
97 task.setProject (getProject ())
    [all...]

Completed in 333 milliseconds

1 2 3 4 5 6 7 8 9