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

1 2

  /external/chromium_org/third_party/WebKit/Source/platform/
Task.h 39 class Task : public WebThread::Task {
41 explicit Task(const Closure& closure)
  /external/chromium_org/third_party/WebKit/public/platform/
WebWorkerRunLoop.h 36 class Task {
38 virtual ~Task() { }
42 // Returns true if the task was posted to a non-terminated loop.
43 BLINK_EXPORT bool postTask(Task*);
WebThread.h 42 class Task {
44 virtual ~Task() { }
55 // postTask() and postDelayedTask() take ownership of the passed Task
58 virtual void postTask(Task*) = 0;
59 virtual void postDelayedTask(Task*, long long delayMs) = 0;
67 // 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();
61 friend class base::RefCountedThreadSafe<Task>;
62 ~Task();
67 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,
55 void BookmarkModelSQLHandler::Task::RemoveBookmark(const GURL& url) {
68 void BookmarkModelSQLHandler::Task::UpdateBookmarkTitle(
83 BookmarkModelSQLHandler::Task::~Task() {
86 BookmarkModel* BookmarkModelSQLHandler::Task::GetBookmarkModel() {
113 &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...]
  /external/chromium_org/third_party/skia/dm/
DMTask.cpp 7 Task::Task(Reporter* reporter, TaskRunner* taskRunner)
14 Task::Task(const Task& parent)
21 Task::~Task() {
25 void Task::fail(const char* msg) {
33 void Task::start() {
37 void Task::finish()
    [all...]
DMTask.h 11 // Subclasses can call fail() to mark this task as failed, or make any number of spawnChild() calls
22 class Task {
27 // Returns the number of parents above this task.
32 Task(Reporter* reporter, TaskRunner* taskRunner);
33 Task(const Task& parent);
34 virtual ~Task();
40 void reallySpawnChild(CpuTask* task); // For now we don't allow GPU child tasks.
49 class CpuTask : public Task, public SkRunnable {
52 CpuTask(const Task& parent)
    [all...]
  /external/chromium_org/v8/include/
v8-platform.h 13 * A Task represents a unit of work.
15 class Task {
17 virtual ~Task() {}
31 * This enum is used to indicate whether a task is potentially long running,
33 * whether to execute the task on a dedicated thread.
43 * Schedules a task to be invoked on a background thread. |expected_runtime|
44 * indicates that the task will run a long time. The Platform implementation
45 * takes ownership of |task|. There is no guarantee about order of execution
47 * thread the task will be run on.
49 virtual void CallOnBackgroundThread(Task* task
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/scheduler/
TracedTask.h 8 #include "platform/Task.h"
24 typedef Function<void()> Task;
30 TracedTask(const Task&, const TraceLocation&, const char* traceName);
36 Task m_task;
Scheduler.h 25 typedef Function<void()> Task;
41 void postInputTask(const TraceLocation&, const Task&);
42 void postCompositorTask(const TraceLocation&, const Task&);
43 void postIpcTask(const TraceLocation&, const Task&);
44 void postTask(const TraceLocation&, const Task&); // For generic (low priority) tasks.
45 void postIdleTask(const TraceLocation&, const IdleTask&); // For non-critical tasks which may be reordered relative to other task types.
77 void postHighPriorityTaskInternal(const TraceLocation&, const Task&, const char* traceName);
118 // This mutex protects calls to the pending task queue, m_highPriorityTaskRunnerPosted and
  /external/chromium_org/components/domain_reliability/
dispatcher.cc 16 struct DomainReliabilityDispatcher::Task {
17 Task(const base::Closure& closure,
21 ~Task();
30 DomainReliabilityDispatcher::Task::Task(const base::Closure& closure,
40 DomainReliabilityDispatcher::Task::~Task() {}
58 Task* task = new Task(closure, time_->CreateTimer(), min_delay, max_delay) local
79 Task* task = *it; local
    [all...]
  /external/chromium_org/content/shell/renderer/test_runner/
mock_web_speech_recognizer.h 46 // Methods accessed from Task objects:
51 class Task {
53 Task(MockWebSpeechRecognizer* recognizer) : recognizer_(recognizer) {}
54 virtual ~Task() {}
61 DISALLOW_COPY_AND_ASSIGN(Task);
76 std::deque<Task*> task_queue_;
81 // Task for stepping the queue.
  /external/chromium_org/gpu/command_buffer/service/
async_pixel_transfer_manager_idle.h 30 struct Task {
31 Task(uint64 transfer_id,
33 const base::Closure& task);
34 ~Task();
36 // This is non-zero if pixel transfer task.
41 base::Closure task; member in struct:gpu::AsyncPixelTransferManagerIdle::Task
52 std::list<Task> tasks;
async_pixel_transfer_manager_idle.cc 90 shared_state_->tasks.push_back(AsyncPixelTransferManagerIdle::Task(
108 shared_state_->tasks.push_back(AsyncPixelTransferManagerIdle::Task(
124 for (std::list<AsyncPixelTransferManagerIdle::Task>::iterator iter =
131 (*iter).task.Run();
228 AsyncPixelTransferManagerIdle::Task::Task(
231 const base::Closure& task)
234 task(task) {
237 AsyncPixelTransferManagerIdle::Task::~Task() {
310 const Task& task = shared_state_.tasks.back(); local
    [all...]
  /external/chromium_org/ui/views_content_client/
views_content_client.h 49 gfx::NativeWindow window_context)> Task;
63 // The task to run at the end of BrowserMainParts::PreMainMessageLoopRun().
65 void set_task(const Task& task) { task_ = task; }
66 const Task& task() const { return task_; } function in class:ui::ViewsContentClient
76 Task task_;
  /external/lldb/test/python_api/type/
main.cpp 11 class Task {
14 Task *next;
15 Task(int i, Task *n):
24 Task *task_head = new Task(-1, NULL);
25 Task *task1 = new Task(1, NULL);
26 Task *task2 = new Task(2, NULL)
    [all...]
  /external/lldb/test/python_api/value/linked_list/
main.cpp 11 class Task {
14 Task *next;
15 Task(int i, Task *n):
24 Task *task_head = NULL;
25 Task *task1 = new Task(1, NULL);
26 Task *task2 = new Task(2, NULL);
27 Task *task3 = new Task(3, NULL); // Orphaned
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
ScriptDebugServer.h 89 class Task {
91 virtual ~Task() { }
94 static void interruptAndRun(PassOwnPtr<Task>, v8::Isolate*);
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
sync_engine_initializer.h 78 typedef base::Callback<void(const SyncStatusCallback& callback)> Task;
  /external/chromium_org/ui/file_manager/file_manager/background/js/
file_operation_manager.js 283 // Found unknown state. Cancel the task, and return an error.
404 * FileOperationManager.Task.getStatus().
405 * @param {string} taskId ID of task related with the event.
464 * Dispatches an event to notify entries are changed for delete task.
468 * @param {DeleteTask} task Delete task related with the event.
471 reason, task) {
474 event.taskId = task.taskId;
475 event.entries = task.entries;
476 event.totalBytes = task.totalBytes
    [all...]
  /art/runtime/
thread_pool.h 32 class Task : public Closure {
77 // Add a new task, the first available started worker will process it. Does not delete the task
79 void AddTask(Thread* self, Task* task);
99 // get a task to run, blocks if there are no tasks left
100 virtual Task* GetTask(Thread* self);
102 // Try to get a task, returning NULL if there is none available.
103 Task* TryGetTask(Thread* self);
104 Task* TryGetTaskLocked(Thread* self) EXCLUSIVE_LOCKS_REQUIRED(task_queue_lock_)
    [all...]
  /external/chromium_org/third_party/webrtc/base/
task.cc 11 #include "webrtc/base/task.h"
17 int32 Task::unique_id_seed_ = 0;
19 Task::Task(TaskParent *parent)
37 Task::~Task() {
38 // Is this task being deleted in the correct manner?
43 // If the task is being deleted without being done, it
45 // This happens if a task is deleted outside of TaskRunner.
51 int64 Task::CurrentTime()
    [all...]
  /external/chromium_org/cc/resources/
task_graph_runner.cc 16 // Helper class for iterating over all dependents of a task.
19 DependentIterator(TaskGraph* graph, const Task* task)
21 task_(task),
29 DCHECK_EQ(graph_->edges[current_index_].task, task_);
36 DCHECK_EQ(graph_->edges[current_index_].task, task_);
48 } while (graph_->edges[current_index_].task != task_);
66 const Task* task_;
79 DependentComparator(node.task))) !=
86 explicit DependentComparator(const Task* dependent
    [all...]
  /device/google/accessory/arduino/USB_Host_Shield/
Max3421e.cpp 289 /* MAX3421 state change task and interrupt handler */
290 byte MAX3421E::Task( void )

Completed in 752 milliseconds

1 2