HomeSort by relevance Sort by last modified time
    Searched refs:Task (Results 51 - 75 of 415) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium/chrome/browser/automation/
ui_controls_internal.cc 9 ClickTask::ClickTask(MouseButton button, int state, Task* followup)
  /external/chromium/third_party/libjingle/source/talk/examples/call/
presenceouttask.h 39 PresenceOutTask(Task * parent) : XmppTask(parent) {}
discoitemsquerytask.h 62 DiscoItemsQueryTask(Task* parent, const std::string node, const Jid& to);
  /external/chromium_org/base/threading/
worker_pool.h 12 class Task;
32 // This function posts |task| to run on a worker thread. |task_is_slow|
34 // false if |task| could not be posted to a worker thread. Regardless of
35 // return value, ownership of |task| is transferred to the worker pool.
37 const base::Closure& task, bool task_is_slow);
40 // for |task| is a worker thread and you can specify |task_is_slow| just
43 const Closure& task,
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLParserThread.cpp 34 #include "core/platform/Task.h"
59 m_thread->postTask(new Task(closure));
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
MockWebSpeechRecognizer.h 62 // Methods accessed from Task objects:
67 class Task {
69 Task(MockWebSpeechRecognizer* recognizer) : m_recognizer(recognizer) { }
70 virtual ~Task() { }
88 std::deque<Task*> m_taskQueue;
93 // Task for stepping the queue.
  /external/chromium_org/third_party/libjingle/source/talk/examples/plus/
presencepushtask.h 41 PresencePushTask(Task * parent) : XmppTask(parent, XmppEngine::HL_TYPE) {}
  /art/runtime/
thread_pool.h 32 class Task : public Closure {
76 // Add a new task, the first available started worker will process it. Does not delete the task
78 void AddTask(Thread* self, Task* task);
98 // Get a task to run, blocks if there are no tasks left
99 virtual Task* GetTask(Thread* self);
101 // Try to get a task, returning NULL if there is none available.
102 Task* TryGetTask(Thread* self);
103 Task* TryGetTaskLocked(Thread* self) EXCLUSIVE_LOCKS_REQUIRED(task_queue_lock_)
    [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...]
  /external/chromium/chrome/browser/search_engines/
search_provider_install_data.h 23 class Task;
55 // of |task|. There is no need to do anything special to make it function
57 void CallWhenLoaded(Task* task);
60 // This should only be called while a task is called back from CallWhenLoaded.
  /external/chromium/chrome/browser/sync/glue/
ui_model_worker.h 12 #include "base/task.h"
37 // A simple task to signal a waitable event after Run()ning a Closure.
38 class CallDoWorkAndSignalTask : public Task {
47 // Task implementation.
51 // Task data - a closure and a waitable event to signal after the work has
64 // no task scheduled by CallDoWorkFromModelSafeThreadAndWait remains un-
104 // We keep a reference to any task we have scheduled so we can gracefully
106 Task* pending_work_;
123 // one of two events occur: a new pending_work_ task was scheduled, or the
125 // because we have to manually Run() the task
    [all...]
  /external/chromium/chrome/common/
service_process_util.h 16 class Task;
75 base::MessageLoopProxy* message_loop_proxy, Task* shutdown_task);
service_process_util_posix.h 46 explicit ServiceProcessShutdownMonitor(Task* shutdown_task);
54 scoped_ptr<Task> shutdown_task_;
  /external/chromium/third_party/libjingle/source/talk/base/
taskrunner.cc 34 #include "talk/base/task.h"
56 void TaskRunner::StartTask(Task * task) {
57 tasks_.push_back(task);
59 // the task we just started could be about to timeout --
60 // make sure our "next timeout task" is correct
61 UpdateTaskTimeout(task, 0);
75 // Subsequent use of those task may cause data corruption or crashes.
101 Task* task = tasks_[i] local
214 Task *task = tasks_[i]; local
    [all...]
task.h 39 // TASK
43 // Task is a state machine infrastructure. States are pushed forward by
45 // of Task is threefold:
49 // organizing a set of states for each task. When you return from your
56 // task will self-delete sometime afterwards.
59 // too many triggers on one thread. Basically if you want to tell a task
60 // to process something for you, you feed your task some information and
63 // to have a queue in the task.
66 // task gets aborted, all the children tasks are too. The nice thing
67 // about this, for example, is if you have one parent task tha
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
taskrunner.cc 34 #include "talk/base/task.h"
56 void TaskRunner::StartTask(Task * task) {
57 tasks_.push_back(task);
59 // the task we just started could be about to timeout --
60 // make sure our "next timeout task" is correct
61 UpdateTaskTimeout(task, 0);
75 // Subsequent use of those task may cause data corruption or crashes.
101 Task* task = tasks_[i] local
214 Task *task = tasks_[i]; local
    [all...]
task.h 39 // TASK
43 // Task is a state machine infrastructure. States are pushed forward by
45 // of Task is threefold:
49 // organizing a set of states for each task. When you return from your
56 // task will self-delete sometime afterwards.
59 // too many triggers on one thread. Basically if you want to tell a task
60 // to process something for you, you feed your task some information and
63 // to have a queue in the task.
66 // task gets aborted, all the children tasks are too. The nice thing
67 // about this, for example, is if you have one parent task tha
    [all...]
  /external/chromium_org/webkit/child/
webthread_impl.cc 63 void WebThreadImpl::postTask(Task* task) {
65 FROM_HERE, base::Bind(&WebKit::WebThread::Task::run, base::Owned(task)));
69 Task* task, long long delay_ms) {
72 base::Bind(&WebKit::WebThread::Task::run, base::Owned(task)),
101 void WebThreadImplForMessageLoop::postTask(Task* task) {
    [all...]
  /frameworks/base/services/java/com/android/server/wm/
Task.java 22 class Task {
29 Task(AppWindowToken wtoken, TaskStack stack, int userId) {
  /external/chromium_org/cc/resources/
worker_pool_unittest.cc 45 struct Task {
46 Task(const base::Closure& callback,
70 void ScheduleTasks(const std::vector<Task>& tasks) {
83 for (std::vector<Task>::const_iterator it = tasks.begin();
195 std::vector<FakeWorkerPool::Task>(
197 FakeWorkerPool::Task(base::Bind(&WorkerPoolTest::RunTask,
212 std::vector<FakeWorkerPool::Task>(
214 FakeWorkerPool::Task(base::Bind(&WorkerPoolTest::RunTask,
231 std::vector<FakeWorkerPool::Task>(
232 1, FakeWorkerPool::Task(base::Bind(&WorkerPoolTest::RunTask
    [all...]
raster_worker_pool.cc 201 const RasterWorkerPool::Task::Reply& reply)
228 const RasterWorkerPool::Task::Reply reply_;
314 RasterWorkerPool::Task::Set::Set() {
317 RasterWorkerPool::Task::Set::~Set() {
320 void RasterWorkerPool::Task::Set::Insert(const Task& task) {
321 DCHECK(!task.is_null());
322 tasks_.push_back(task.internal_);
325 RasterWorkerPool::Task::Task()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/quota/
StorageErrorCallback.h 49 class CallbackTask : public ScriptExecutionContext::Task {
  /external/chromium/chrome/browser/sync/
test_profile_sync_service.h 19 class Task;
29 // running in these tests, and allows tests to provide a task on construction
66 // "delay" as a prefix, in which case a task to fire the identical
91 Task* initial_condition_setup_task);
133 Task* initial_condition_setup_task_;
  /external/chromium/chrome/browser/service/
service_process_control.h 18 #include "base/task.h"
77 // this case, the task is invoked on success or failure.
81 void Launch(Task* success_task, Task* failure_task);
140 // After the comamnd is executed |task| is called with the process handle on
142 void Run(Task* task);
158 scoped_ptr<Task> notify_task_;
163 typedef std::vector<Task*> TaskList;
  /external/chromium_org/net/ssl/
default_server_bound_cert_store.cc 15 // Task
16 class DefaultServerBoundCertStore::Task {
18 virtual ~Task();
20 // Runs the task and invokes the client callback on the thread that
21 // originally constructed the task.
28 DefaultServerBoundCertStore::Task::~Task() {
31 void DefaultServerBoundCertStore::Task::InvokeCallback(
40 : public DefaultServerBoundCertStore::Task {
79 : public DefaultServerBoundCertStore::Task {
    [all...]

Completed in 570 milliseconds

1 23 4 5 6 7 8 91011>>