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

1 2 3 4 5 6 7 8 91011>>

  /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
  /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
  /prebuilt/ndk/android-ndk-r5/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
  /prebuilt/ndk/android-ndk-r6/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
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-x86/usr/include/linux/
smp_lock.h 17 #define release_kernel_lock(task) do { } while(0)
18 #define reacquire_kernel_lock(task) 0
  /external/chromium/base/threading/
worker_pool_win.cc 8 #include "base/task.h"
15 Task* task = static_cast<Task*>(param); local
16 task->Run();
17 delete task;
24 Task* task, bool task_is_slow) {
25 task->SetBirthPlace(from_here);
31 if (!QueueUserWorkItem(WorkItemCallback, task, flags))
    [all...]
  /external/chromium/base/
task_queue.cc 18 void TaskQueue::Push(Task* task) {
19 DCHECK(task);
21 // Add the task to the back of the queue.
22 queue_.push_back(task);
39 std::deque<Task*> ready;
43 std::deque<Task*>::const_iterator task; local
44 for (task = ready.begin(); task != ready.end(); ++task)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/chromium/cc/
CCMainThread.cpp 36 Task* task = static_cast<Task*>(userdata); local
37 task->performTask();
38 delete task;
41 void CCMainThread::postTask(PassOwnPtr<Task> task)
43 callOnMainThread(performTask, task.leakPtr());
  /external/webkit/Tools/DumpRenderTree/chromium/
Task.cpp 32 #include "Task.h"
44 void TaskList::unregisterTask(WebTask* task)
46 size_t index = m_tasks.find(task);
59 WebTask* task = static_cast<WebTask*>(context); local
60 task->run();
61 delete task;
64 void postTask(WebTask* task)
66 WebKit::webKitClient()->callOnMainThread(invokeTask, static_cast<void*>(task));
69 void postDelayedTask(WebTask* task, int64_t ms)
71 webkit_support::PostDelayedTask(task, ms)
    [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...]
  /external/webkit/Tools/BuildSlaveSupport/win/
kill-old-processes 54 for task in tasksToKill:
55 os.system("taskkill /t /f /im " + task)
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/
ITaskFactory.java 25 * Starts a new task with a new {@link ITaskMonitor}.
27 * @param title The title of the task, displayed in the monitor if any.
28 * @param task The task to run.
30 public abstract void start(String title, ITask task);
33 * Starts a new task contributing to an already existing {@link ITaskMonitor}.
36 * and give the sub-monitor to the new task with the number of work units you want
38 * when the task is completed, in case the actual task did not.
40 * @param title The title of the task, displayed in the monitor if any.
    [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);

Completed in 1615 milliseconds

1 2 3 4 5 6 7 8 91011>>