Searched refs:task (Results 201 - 225 of 688) sorted by relevance

1234567891011>>

/external/chromium_org/cc/resources/
H A Dzero_copy_raster_worker_pool.cc112 // Mark all task sets as pending.
138 RasterTask* task = item.task; local
139 DCHECK(!task->HasCompleted());
148 TaskGraph::Edge(task, new_raster_finished_tasks[task_set].get()));
151 InsertNodesForRasterTask(&graph_, task, task->dependencies(), priority++);
180 RasterizerTask* task = static_cast<RasterizerTask*>(it->get()); local
182 task->WillComplete();
183 task
[all...]
H A Draster_worker_pool.cc141 RasterizerTask* task = static_cast<RasterizerTask*>(node.task); local
143 if (!task->HasBeenScheduled()) {
144 task->WillSchedule();
145 task->ScheduleOnOriginThread(client);
146 task->DidSchedule();
153 RasterizerTask* task,
158 TaskGraph::Node::TaskComparator(task)) ==
160 graph->nodes.push_back(TaskGraph::Node(task, priority, dependencies));
183 // Add decode task i
152 InsertNodeForTask(TaskGraph* graph, RasterizerTask* task, unsigned priority, size_t dependencies) argument
[all...]
/external/chromium_org/chromecast/media/cma/base/
H A Dbalanced_media_task_runner_factory.cc20 // Media task runner which also behaves as a media task runner observer.
24 // - be notified when a PostMediaTask is performed on this media task runner.
26 // - monitor the lifetime of the media task runner, i.e. check when the media
27 // task runner is not needed anymore.
37 const base::Closure& task,
66 const base::Closure& task,
69 media_task_runner_->PostMediaTask(from_here, task, timestamp);
80 // - Can have at most one task in the queue.
91 // Return the timestamp of the last media task
64 PostMediaTask( const tracked_objects::Location& from_here, const base::Closure& task, base::TimeDelta timestamp) argument
130 base::Closure task; local
151 PostMediaTask( const tracked_objects::Location& from_here, const base::Closure& task, base::TimeDelta timestamp) argument
[all...]
/external/chromium_org/chrome/browser/sync_file_system/drive_backend/
H A Dsync_task_manager.h36 // This class manages asynchronous tasks for Sync FileSystem. Each task must be
38 // The instance runs single task as the foreground task, and multiple tasks as
39 // background tasks. Running background task has a TaskBlocker that
40 // describes which task can run in parallel. When a task start running as a
41 // background task, SyncTaskManager checks if any running background task
42 // doesn't block the new background task, and queues it up if it can't run.
61 // Called when the manager is notified a task i
126 base::Closure task; member in struct:sync_file_system::drive_backend::SyncTaskManager::PendingTask
[all...]
/external/chromium_org/content/browser/indexed_db/
H A Dindexed_db_transaction.h59 void ScheduleTask(Operation task) { argument
60 ScheduleTask(blink::WebIDBTaskTypeNormal, task);
62 void ScheduleTask(blink::WebIDBTaskType, Operation task);
130 void push(Operation task) { queue_.push(task); } argument
145 void push(Operation task) { stack_.push(task); } argument
/external/smali/smali/
H A Dbuild.gradle80 task generateParserAntlrSource(type: JavaExec) {
93 task generateTreeWalkerAntlrSource(type: JavaExec) {
106 task generateTestAntlrSource(type: JavaExec) {
119 task generateJflexSource(type: JavaExec) {
146 task fatJar(type: Jar, dependsOn: jar) {
173 task sourcesJar(type: Jar) {
182 task proguard(type: JavaExec, dependsOn: fatJar) {
/external/chromium_org/chrome/browser/sync_file_system/local/
H A Dsyncable_file_system_operation.cc38 const base::Closure& task)
40 task_(task),
88 scoped_ptr<SyncableFileOperationRunner::Task> task(new QueueableTask(
94 operation_runner_->PostOperationTask(task.Pass());
110 scoped_ptr<SyncableFileOperationRunner::Task> task(new QueueableTask(
116 operation_runner_->PostOperationTask(task.Pass());
133 scoped_ptr<SyncableFileOperationRunner::Task> task(new QueueableTask(
139 operation_runner_->PostOperationTask(task.Pass());
156 scoped_ptr<SyncableFileOperationRunner::Task> task(new QueueableTask(
162 operation_runner_->PostOperationTask(task
37 QueueableTask(base::WeakPtr<SyncableFileSystemOperation> operation, const base::Closure& task) argument
[all...]
/external/chromium_org/cc/base/
H A Ddelayed_unique_notifier_unittest.cc78 tasks[0].task.Run();
89 tasks[0].task.Run();
115 tasks[0].task.Run();
132 tasks[0].task.Run();
146 tasks[0].task.Run();
177 tasks[0].task.Run();
191 tasks[0].task.Run();
220 // Time to run, but a canceled task!
221 tasks[0].task.Run();
239 tasks[0].task
[all...]
/external/chromium_org/content/browser/renderer_host/
H A Drender_widget_resize_helper.cc45 // Back pointer to the pumpable task runner that this task is enqueued in.
51 // The PumpableTaskRunner is a task runner that will wrap tasks in an
52 // WrappedTask, enqueues that wrapped task in the queue to be pumped via
53 // WaitForSingleWrappedTaskToRun during resizes, and posts the task to a
54 // target task runner. The posted task will run only once, either through a
55 // WaitForSingleWrappedTaskToRun call or through the target task runner.
65 WrappedTask* task,
68 // Wait at most |max_delay| to run an enqueued task
257 EnqueueAndPostWrappedTask( const tracked_objects::Location& from_here, WrappedTask* task, base::TimeDelta delay) argument
275 PostDelayedTask( const tracked_objects::Location& from_here, const base::Closure& task, base::TimeDelta delay) argument
285 PostNonNestableDelayedTask( const tracked_objects::Location& from_here, const base::Closure& task, base::TimeDelta delay) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/workers/
H A DWorkerThread.cpp146 static PassOwnPtr<WorkerThreadTask> create(const WorkerThread& workerThread, PassOwnPtr<ExecutionContextTask> task, bool isInstrumented) argument
148 return adoptPtr(new WorkerThreadTask(workerThread, task, isInstrumented));
156 // Tasks could be put on the message loop after the cleanup task,
170 WorkerThreadTask(const WorkerThread& workerThread, PassOwnPtr<ExecutionContextTask> task, bool isInstrumented) argument
172 , m_task(task)
434 void WorkerThread::postTask(PassOwnPtr<ExecutionContextTask> task) argument
436 m_thread->postTask(WorkerThreadTask::create(*this, task, true).leakPtr());
439 void WorkerThread::postDelayedTask(PassOwnPtr<ExecutionContextTask> task, long long delayMs) argument
441 m_thread->postDelayedTask(WorkerThreadTask::create(*this, task, true).leakPtr(), delayMs);
444 void WorkerThread::postDebuggerTask(PassOwnPtr<ExecutionContextTask> task) argument
455 OwnPtr<blink::WebThread::Task> task; local
[all...]
/external/emma/ant/ant14/com/vladium/emma/report/
H A DReportCfg.java113 Element (final Task task, final IProperties settings) argument
115 if (task == null)
116 throw new IllegalArgumentException ("null input: task");
120 m_task = task;
167 Element_HTML (final Task task, final IProperties settings) argument
169 super (task, settings);
186 Element_TXT (final Task task, final IProperties settings) argument
188 super (task, settings);
205 Element_LCOV (final Task task, final IProperties settings) argument
207 super (task, setting
223 Element_XML(final Task task, final IProperties settings) argument
236 ReportCfg(final Project project, final Task task) argument
[all...]
/external/smali/baksmali/
H A Dbuild.gradle56 task fatJar(type: Jar) {
83 task sourcesJar(type: Jar) {
92 task proguard(type: JavaExec, dependsOn: fatJar) {
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v4/
H A Dv8-richards.js39 * The Richards benchmark simulates the task dispatcher of an
79 * how many times a task is put on hold in a correct run of richards.
90 * priorities. Scheduling is done by maintaining a list of task control blocks
115 * Add an idle task to this scheduler.
116 * @param {int} id the identity of the task
117 * @param {int} priority the task's priority
118 * @param {Packet} queue the queue of work to be processed by the task
119 * @param {int} count the number of times to schedule the task
126 * Add a work task to this scheduler.
127 * @param {int} id the identity of the task
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v5/
H A Dv8-richards.js39 * The Richards benchmark simulates the task dispatcher of an
79 * how many times a task is put on hold in a correct run of richards.
90 * priorities. Scheduling is done by maintaining a list of task control blocks
115 * Add an idle task to this scheduler.
116 * @param {int} id the identity of the task
117 * @param {int} priority the task's priority
118 * @param {Packet} queue the queue of work to be processed by the task
119 * @param {int} count the number of times to schedule the task
126 * Add a work task to this scheduler.
127 * @param {int} id the identity of the task
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v6/
H A Dv8-richards.js39 * The Richards benchmark simulates the task dispatcher of an
79 * how many times a task is put on hold in a correct run of richards.
90 * priorities. Scheduling is done by maintaining a list of task control blocks
115 * Add an idle task to this scheduler.
116 * @param {int} id the identity of the task
117 * @param {int} priority the task's priority
118 * @param {Packet} queue the queue of work to be processed by the task
119 * @param {int} count the number of times to schedule the task
126 * Add a work task to this scheduler.
127 * @param {int} id the identity of the task
[all...]
/external/chromium_org/v8/benchmarks/
H A Drichards.js44 * The Richards benchmark simulates the task dispatcher of an
84 * how many times a task is put on hold in a correct run of richards.
95 * priorities. Scheduling is done by maintaining a list of task control blocks
120 * Add an idle task to this scheduler.
121 * @param {int} id the identity of the task
122 * @param {int} priority the task's priority
123 * @param {Packet} queue the queue of work to be processed by the task
124 * @param {int} count the number of times to schedule the task
131 * Add a work task to this scheduler.
132 * @param {int} id the identity of the task
[all...]
/external/lldb/tools/debugserver/source/MacOSX/
H A DMachException.h45 kern_return_t Save(task_t task);
46 kern_return_t Restore(task_t task);
104 bool CatchExceptionRaise(task_t task);
/external/chromium_org/ash/system/chromeos/session/
H A Dlogout_confirmation_controller_unittest.cc34 const base::Closure& task,
38 const base::Closure& task,
91 const base::Closure& task,
93 tasks_.push(std::make_pair(now_ + delay, task));
99 const base::Closure& task,
113 base::Closure task = tasks_.top().second; local
115 task.Run();
123 base::Closure task = tasks_.top().second; local
125 task.Run();
89 PostDelayedTask( const tracked_objects::Location& from_here, const base::Closure& task, base::TimeDelta delay) argument
97 PostNonNestableDelayedTask( const tracked_objects::Location& from_here, const base::Closure& task, base::TimeDelta delay) argument
/external/chromium_org/base/
H A Dat_exit.h45 // Registers the specified task to be called at exit.
46 static void RegisterTask(base::Closure task);
/external/chromium_org/base/test/
H A Dsequenced_task_runner_test_template.cc27 const Closure& task) {
31 task, post_i);
38 const Closure& task) {
42 task, post_i);
49 const Closure& task,
54 task, post_i);
67 void SequencedTaskTracker::RunTask(const Closure& task, int task_i) { argument
69 if (!task.is_null())
70 task.Run();
117 // Returns the task ordinal
25 PostWrappedNonNestableTask( const scoped_refptr<SequencedTaskRunner>& task_runner, const Closure& task) argument
36 PostWrappedNestableTask( const scoped_refptr<SequencedTaskRunner>& task_runner, const Closure& task) argument
47 PostWrappedDelayedNonNestableTask( const scoped_refptr<SequencedTaskRunner>& task_runner, const Closure& task, TimeDelta delay) argument
[all...]
/external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
H A Dprivate_api_tasks.cc28 const char kInvalidTask[] = "Invalid task: ";
68 file_manager::file_tasks::TaskDescriptor task; local
69 if (!file_manager::file_tasks::ParseTaskID(params->task_id, &task)) {
102 task,
181 const file_manager::file_tasks::FullTaskDescriptor& task = tasks[i]; local
184 task.task_descriptor());
185 if (!task.icon_url().is_empty())
186 converted->icon_url = task.icon_url().spec();
187 converted->title = task.task_title();
188 converted->is_default = task
[all...]
/external/chromium_org/chrome/browser/media_galleries/fileapi/
H A Diapps_finder_impl.h48 // bouncing to the FILE thread to run |task| and then turning the result into a
49 // device id and posting it to |callback| on the UI thread. If |task| does not
52 const IAppsFinderTask& task,
/external/chromium_org/chrome/browser/metrics/variations/
H A Dvariations_request_scheduler_mobile.h19 // |task} is the closure to call when the scheduler deems ready. |local_state|
21 explicit VariationsRequestSchedulerMobile(const base::Closure& task,
/external/chromium_org/chrome/browser/sync/glue/
H A Dtyped_url_data_type_controller.cc30 // The history service exposes a special non-standard task API which calls back
31 // once a task has been dispatched, so we have to build a special wrapper around
35 explicit RunTaskOnHistoryThread(const base::Closure& task, argument
37 : task_(new base::Closure(task)),
43 // Set the backend, then release our reference before executing the task.
47 // Invoke the task, then free it immediately so we don't keep a reference
126 const base::Closure& task) {
133 new RunTaskOnHistoryThread(task, this)),
124 PostTaskOnBackendThread( const tracked_objects::Location& from_here, const base::Closure& task) argument
/external/chromium_org/components/invalidation/
H A Dsync_system_resources.cc97 invalidation::Closure* task) {
98 DCHECK(invalidation::IsCallbackRepeatable(task));
102 delete task;
106 posted_tasks_.insert(task);
109 weak_factory_.GetWeakPtr(), task),
127 void SyncInvalidationScheduler::RunPostedTask(invalidation::Closure* task) { argument
129 task->Run();
130 posted_tasks_.erase(task);
131 delete task;
96 Schedule(invalidation::TimeDelta delay, invalidation::Closure* task) argument

Completed in 5412 milliseconds

1234567891011>>