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

1 2

  /external/chromium/base/
task.cc 5 #include "base/task.h"
7 Task::Task() {
10 Task::~Task() {
task.h 15 // Task ------------------------------------------------------------------------
17 // A task is a generic runnable thingy, usually used for running code on a
20 class BASE_API Task : public tracked_objects::Tracked {
22 Task();
23 virtual ~Task();
29 class BASE_API CancelableTask : public Task {
66 // // If you'd like to only only have one pending task at a time, test for
67 // // |empty| before manufacturing another task.
178 // General task implementations ------------------------------------------------
180 // Task to delete an objec
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/
Task.h 39 class Task : public WebKit::WebThread::Task {
41 explicit Task(const Closure& closure)
  /external/chromium_org/third_party/WebKit/public/platform/
WebWorkerRunLoop.h 38 class Task {
40 virtual ~Task() { }
44 // Returns true if the task was posted to a non-terminated loop.
45 WEBKIT_EXPORT bool postTask(Task*);
WebThread.h 38 class Task {
40 virtual ~Task() { }
51 virtual void postTask(Task*) = 0;
52 virtual void postDelayedTask(Task*, long long delayMs) = 0;
59 // enterRunLoop() processes tasks posted to this WebThread. This call does not return until some task calls exitRunLoop().
  /external/chromium_org/chrome/browser/history/android/
bookmark_model_sql_handler.h 34 class Task : public base::RefCountedThreadSafe<Task> {
42 Task();
57 friend class base::RefCountedThreadSafe<Task>;
58 ~Task();
63 DISALLOW_COPY_AND_ASSIGN(Task);
bookmark_model_sql_handler.cc 29 BookmarkModelSQLHandler::Task::Task() {
32 void BookmarkModelSQLHandler::Task::AddBookmarkToMobileFolder(
43 void BookmarkModelSQLHandler::Task::AddBookmark(const GURL& url,
54 void BookmarkModelSQLHandler::Task::RemoveBookmark(const GURL& url) {
67 void BookmarkModelSQLHandler::Task::UpdateBookmarkTitle(const GURL& url,
81 BookmarkModelSQLHandler::Task::~Task() {
84 BookmarkModel* BookmarkModelSQLHandler::Task::GetBookmarkModel() {
111 &BookmarkModelSQLHandler::Task::AddBookmark
    [all...]
  /external/chromium_org/chrome/browser/sync_file_system/local/
syncable_file_operation_runner.h 32 // Represents an operation task (which usually wraps one FileSystemOperation).
33 class Task {
35 Task() {}
36 virtual ~Task() {}
50 static void CancelAndDelete(Task* task);
52 DISALLOW_COPY_AND_ASSIGN(Task);
63 // Runs the given |task| if no sync operation is running on any of
67 // just queues up the |task|.
69 void PostOperationTask(scoped_ptr<Task> task)
    [all...]
  /frameworks/base/libs/hwui/thread/
Task.h 37 class Task: public TaskBase {
39 Task(): mFuture(new Future<T>()) { }
40 virtual ~Task() { }
  /external/chromium_org/third_party/WebKit/Source/core/workers/
WorkerRunLoop.h 55 // Waits for a single task and returns.
62 bool postTask(PassOwnPtr<ScriptExecutionContext::Task>);
63 void postTaskAndTerminate(PassOwnPtr<ScriptExecutionContext::Task>);
65 bool postTaskForMode(PassOwnPtr<ScriptExecutionContext::Task>, const String& mode);
71 class Task {
72 WTF_MAKE_NONCOPYABLE(Task); WTF_MAKE_FAST_ALLOCATED;
74 static PassOwnPtr<Task> create(PassOwnPtr<ScriptExecutionContext::Task> task, const String& mode);
75 ~Task() { }
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptDebugServer.h 84 class Task {
86 virtual ~Task() { }
89 static void interruptAndRun(PassOwnPtr<Task>, v8::Isolate*);
  /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/chrome/browser/sync_file_system/
sync_task_manager.h 30 typedef base::Callback<void(const SyncStatusCallback& callback)> Task;
39 // Called when the manager is notified a task is done.
47 // This needs to be called to start task scheduling.
52 void ScheduleTask(const Task& task,
55 // Runs the posted task only when we're idle.
56 void ScheduleTaskIfIdle(const Task& task);
63 // This should be called when an async task needs to get a task token
    [all...]
  /external/chromium_org/gpu/command_buffer/service/
async_pixel_transfer_manager_idle.h 29 struct Task {
30 Task(uint64 transfer_id, const base::Closure& task);
31 ~Task();
33 // This is non-zero if pixel transfer task.
36 base::Closure task; member in struct:gpu::AsyncPixelTransferManagerIdle::Task
47 std::list<Task> tasks;
async_pixel_transfer_manager_idle.cc 106 shared_state_->tasks.push_back(AsyncPixelTransferManagerIdle::Task(
129 shared_state_->tasks.push_back(AsyncPixelTransferManagerIdle::Task(
148 for (std::list<AsyncPixelTransferManagerIdle::Task>::iterator iter =
155 (*iter).task.Run();
252 AsyncPixelTransferManagerIdle::Task::Task(
253 uint64 transfer_id, const base::Closure& task)
255 task(task) {
258 AsyncPixelTransferManagerIdle::Task::~Task() {
    [all...]
  /frameworks/base/services/java/com/android/server/wm/
Task.java 22 class Task {
29 Task(AppWindowToken wtoken, TaskStack stack, int userId) {
  /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/third_party/libjingle/source/talk/base/
task.cc 28 #include "talk/base/task.h"
34 int32 Task::unique_id_seed_ = 0;
36 Task::Task(TaskParent *parent)
54 Task::~Task() {
55 // Is this task being deleted in the correct manner?
60 // If the task is being deleted without being done, it
62 // This happens if a task is deleted outside of TaskRunner.
68 int64 Task::CurrentTime()
    [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/chrome/browser/sync_file_system/drive_backend/
drive_file_sync_service.h 64 typedef base::Callback<void(const SyncStatusCallback& callback)> Task;
  /external/chromium_org/third_party/libjingle/source/talk/base/
task.cc 28 #include "talk/base/task.h"
34 int32 Task::unique_id_seed_ = 0;
36 Task::Task(TaskParent *parent)
54 Task::~Task() {
55 // Is this task being deleted in the correct manner?
60 // If the task is being deleted without being done, it
62 // This happens if a task is deleted outside of TaskRunner.
68 int64 Task::CurrentTime()
    [all...]
  /cts/tests/tests/holo/src/android/holo/cts/
HoloTestUtilitiesActivity.java 47 ArrayAdapter<Task> taskAdapter = new ArrayAdapter<Task>(this,
49 taskAdapter.add(new Task(R.string.task_view_display_info, TASK_VIEW_DISPLAY_INFO));
50 taskAdapter.add(new Task(R.string.task_view_tests, TASK_VIEW_TESTS));
51 taskAdapter.add(new Task(R.string.task_generate_one_bitmap, TASK_GENERATE_ONE_BITMAP));
52 taskAdapter.add(new Task(R.string.task_generate_all_bitmaps, TASK_GENERATE_ALL_BITMAPS));
53 taskAdapter.add(new Task(R.string.task_clear_reference_bitmaps,
55 taskAdapter.add(new Task(R.string.task_clear_failure_bitmaps,
57 taskAdapter.add(new Task(R.string.task_clear_diff_bitmaps,
62 class Task {
85 Task task = getListAdapter().getItem(position); local
    [all...]
  /device/google/accessory/arduino/USB_Host_Shield/
Max3421e.cpp 289 /* MAX3421 state change task and interrupt handler */
290 byte MAX3421E::Task( void )
Usb.cpp 334 /* USB main task. Performs enumeration/cleanup */
335 void USB::Task( void ) //USB state machine
344 /* modify USB task state if Vbus changed */
363 //Serial.print("USB task state: ");
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ScriptExecutionContext.h 111 class Task {
112 WTF_MAKE_NONCOPYABLE(Task);
115 Task() { }
116 virtual ~Task();
122 virtual void postTask(PassOwnPtr<Task>) = 0; // Executes the task on context's thread asynchronously.
135 class AddConsoleMessageTask : public Task {

Completed in 1212 milliseconds

1 2