HomeSort by relevance Sort by last modified time
    Searched refs:task (Results 101 - 125 of 1254) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/ndk/9/platforms/android-3/arch-arm/usr/include/linux/
stacktrace.h 15 #define save_stack_trace(trace, task, all, skip) do { } while (0)
  /prebuilts/ndk/9/platforms/android-4/arch-arm/usr/include/linux/
stacktrace.h 15 #define save_stack_trace(trace, task, all, skip) do { } while (0)
  /prebuilts/ndk/9/platforms/android-5/arch-arm/usr/include/linux/
stacktrace.h 15 #define save_stack_trace(trace, task, all, skip) do { } while (0)
  /prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/linux/
stacktrace.h 15 #define save_stack_trace(trace, task, all, skip) do { } while (0)
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/linux/
stacktrace.h 15 #define save_stack_trace(trace, task, all, skip) do { } while (0)
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/linux/
stacktrace.h 15 #define save_stack_trace(trace, task, all, skip) do { } while (0)
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/
stacktrace.h 15 #define save_stack_trace(trace, task, all, skip) do { } while (0)
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/bind/func.bind/func.bind.bind/
copy.pass.cpp 31 auto task = std::bind(fnc, 2.f, 4.f); local
32 auto task2(task);
33 assert(task() == 16);
  /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/apache-xml/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/chromium_org/chrome/browser/metrics/variations/
variations_request_scheduler_mobile.cc 20 const base::Closure& task,
22 VariationsRequestScheduler(task), local_state_(local_state) {
30 // period, run the task. Otherwise, do nothing. Note that no future requests
37 task().Run();
46 const base::Closure& task,
48 return new VariationsRequestSchedulerMobile(task, local_state);
variations_request_scheduler.h 22 // Starts the task on a schedule.
33 static VariationsRequestScheduler* Create(const base::Closure& task,
37 // |task| is the closure to call when the scheduler deems ready.
38 explicit VariationsRequestScheduler(const base::Closure& task);
41 base::Closure task() const;
47 // The task scheduled by this class.
  /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;
  /external/chromium_org/base/
task_runner.cc 24 const Closure& task) OVERRIDE;
37 const Closure& task) {
38 return destination_->PostTask(from_here, task);
44 const Closure& task) {
45 return PostDelayedTask(from_here, task, base::TimeDelta());
50 const Closure& task,
53 from_here, task, reply);
pending_task.cc 18 const base::Closure& task)
20 task(task),
27 const base::Closure& task,
31 task(task),
  /external/chromium_org/jingle/glue/
task_pump_unittest.cc 24 MockTask* task = new MockTask(&task_pump); local
26 // talk_base::Task.
28 EXPECT_CALL(*task, ProcessStart()).WillOnce(Return(TASK_STATE_DONE));
29 task->Start();
36 MockTask* task = new MockTask(&task_pump); local
38 // talk_base::Task.
40 ON_CALL(*task, ProcessStart()).WillByDefault(Return(TASK_STATE_ERROR));
41 EXPECT_CALL(*task, ProcessStart()).Times(0);
42 task->Start();
  /frameworks/base/libs/hwui/thread/
TaskProcessor.h 22 #include "Task.h"
36 virtual void process(const sp<TaskBase>& task) = 0;
45 bool add(const sp<Task<T> >& task);
47 virtual void onProcess(const sp<Task<T> >& task) = 0;
50 virtual void process(const sp<TaskBase>& task) {
51 sp<Task<T> > realTask = static_cast<Task<T>* >(task.get())
    [all...]
  /external/chromium_org/extensions/common/
one_shot_event.cc 20 const base::Closure& task)
21 : from_here(from_here), runner(runner), task(task) {
26 base::Closure task; member in struct:extensions::OneShotEvent::TaskInfo
37 const base::Closure& task) const {
38 Post(from_here, task, base::MessageLoopProxy::current());
42 const base::Closure& task,
47 runner->PostTask(from_here, task);
49 tasks_.push_back(TaskInfo(from_here, runner, task));
66 tasks_[i].runner->PostTask(tasks_[i].from_here, tasks_[i].task);
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/control/
UpdateControl.java 61 * Enqueues a task/callable object to execute in the jME3
65 AppTask<V> task = new AppTask<V>(callable); local
66 taskQueue.add(task);
67 return task;
72 AppTask<?> task = taskQueue.poll(); local
74 if (task == null) break;
75 while (task.isCancelled()) {
76 task = taskQueue.poll();
77 if (task == null) break toploop;
79 task.invoke()
    [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...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_rast.c 94 lp_rast_tile_begin(struct lp_rasterizer_task *task,
97 const struct lp_scene *scene = task->scene;
102 task->bin = bin;
103 task->x = bin->x * TILE_SIZE;
104 task->y = bin->y * TILE_SIZE;
107 memset(task->color_tiles, 0, sizeof(task->color_tiles));
111 struct pipe_surface *zsbuf = task->scene->fb.zsbuf;
127 task->x,
128 task->y)
802 struct lp_rasterizer_task *task = (struct lp_rasterizer_task *) init_data; local
897 struct lp_rasterizer_task *task = &rast->tasks[i]; local
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_rast.c 94 lp_rast_tile_begin(struct lp_rasterizer_task *task,
97 const struct lp_scene *scene = task->scene;
102 task->bin = bin;
103 task->x = bin->x * TILE_SIZE;
104 task->y = bin->y * TILE_SIZE;
107 memset(task->color_tiles, 0, sizeof(task->color_tiles));
111 struct pipe_surface *zsbuf = task->scene->fb.zsbuf;
127 task->x,
128 task->y)
802 struct lp_rasterizer_task *task = (struct lp_rasterizer_task *) init_data; local
897 struct lp_rasterizer_task *task = &rast->tasks[i]; local
    [all...]
  /external/chromium_org/base/message_loop/
message_loop_proxy_impl.cc 23 const base::Closure& task,
25 DCHECK(!task.is_null()) << from_here.ToString();
26 return incoming_queue_->AddToIncomingQueue(from_here, task, delay, true);
31 const base::Closure& task,
33 DCHECK(!task.is_null()) << from_here.ToString();
34 return incoming_queue_->AddToIncomingQueue(from_here, task, delay, false);
  /external/chromium_org/third_party/WebKit/Source/web/
WebWorkerRunLoop.cpp 36 class TaskForwarder : public ScriptExecutionContext::Task {
38 static PassOwnPtr<TaskForwarder> create(PassOwnPtr<WebWorkerRunLoop::Task> task)
40 return adoptPtr(new TaskForwarder(task));
49 TaskForwarder(PassOwnPtr<WebWorkerRunLoop::Task> task)
50 : m_task(task)
54 OwnPtr<WebWorkerRunLoop::Task> m_task;
64 bool WebWorkerRunLoop::postTask(Task* task)
    [all...]
  /external/chromium/base/
message_loop_proxy_impl.cc 22 Task* task) {
23 return PostTaskHelper(from_here, task, 0, true);
27 const tracked_objects::Location& from_here, Task* task, int64 delay_ms) {
28 return PostTaskHelper(from_here, task, delay_ms, true);
32 const tracked_objects::Location& from_here, Task* task) {
33 return PostTaskHelper(from_here, task, 0, false);
38 Task* task
    [all...]

Completed in 1291 milliseconds

1 2 3 45 6 7 8 91011>>