Searched refs:task (Results 276 - 300 of 688) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/chrome/browser/sync/glue/
H A Dtyped_url_data_type_controller.h13 #include "base/task/cancelable_task_tracker.h"
47 const base::Closure& task) OVERRIDE;
H A Dautofill_profile_data_type_controller.cc75 const base::Closure& task) {
77 return BrowserThread::PostTask(BrowserThread::DB, from_here, task);
73 PostTaskOnBackendThread( const tracked_objects::Location& from_here, const base::Closure& task) argument
/external/chromium_org/components/webdata/common/
H A Dweb_database_service.cc96 const WriteTask& task) {
102 wds_backend_, task, base::Passed(&request)));
107 const ReadTask& task,
116 wds_backend_, task, base::Passed(&request)));
94 ScheduleDBTask( const tracked_objects::Location& from_here, const WriteTask& task) argument
105 ScheduleDBTaskWithResult( const tracked_objects::Location& from_here, const ReadTask& task, WebDataServiceConsumer* consumer) argument
H A Dweb_database_service.h83 // Schedule an update/write task on the DB thread.
86 const WriteTask& task);
88 // Schedule a read task on the DB thread.
91 const ReadTask& task,
94 // Cancel an existing request for a task on the DB thread.
/external/chromium_org/content/browser/geolocation/
H A Dgeolocation_provider_impl.cc99 base::Closure task; local
107 task = base::Bind(&GeolocationProviderImpl::StopProviders,
119 task = base::Bind(&GeolocationProviderImpl::StartProviders,
124 message_loop()->PostTask(FROM_HERE, task);
/external/chromium_org/extensions/browser/
H A Dlazy_background_task_queue.cc67 const PendingTask& task) {
69 task.Run(NULL);
83 // If this is the first enqueued task, and we're not waiting for the
92 task.Run(NULL);
100 tasks_list->push_back(task);
119 // Swap the pending tasks to a temporary, to avoid problems if the task
181 // task queue as well.
64 AddPendingTask( content::BrowserContext* browser_context, const std::string& extension_id, const PendingTask& task) argument
H A Dstate_store.cc36 // Queues up a task for invoking once we're ready. Invokes immediately if
38 void InvokeWhenReady(base::Closure task);
51 void StateStore::DelayedTaskQueue::InvokeWhenReady(base::Closure task) { argument
53 task.Run();
55 pending_tasks_.push_back(task);
/external/chromium_org/jingle/notifier/listener/
H A Dxmpp_push_client.cc150 PushNotificationsSendUpdateTask* task = local
152 task->Start();
162 SendPingTask* task = new SendPingTask(base_task_.get(), this); local
163 task->Start();
/external/chromium_org/net/quic/test_tools/
H A Dtest_task_runner.h30 const base::Closure& task,
/external/chromium_org/sandbox/mac/
H A Dmach_message_server.cc35 mach_port_t task = mach_task_self(); local
42 if ((kr = mach_port_allocate(task, MACH_PORT_RIGHT_RECEIVE, &port)) !=
55 kr = vm_allocate(task, &buffer, buffer_size_, kMachMsgMemoryFlags);
62 kr = vm_allocate(task, &buffer, buffer_size_, kMachMsgMemoryFlags);
80 // Get the PID of the task that sent this request. This requires getting at
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/
H A DFetchBaseTask.java35 FetchBaseTask task=new FetchBaseTask();
36 task.mapFile="d:/workspace/org.eclipse.releng/maps/base.map";
37 task.outputFile="d:/workspace/org.eclipse.releng/fetch.xml";
38 task.execute();
/external/linux-tools-perf/perf-3.12.0/tools/perf/python/
H A Dtwatch.py21 evsel = perf.evsel(task = 1, comm = 1, mmap = 0,
/external/skia/dm/
H A DDMWriteTask.h18 WriteTask(const Task& parent, // WriteTask must be a child task.
21 WriteTask(const Task& parent, // WriteTask must be a child task.
34 bool check(const Task& task, SkBitmap bitmap) const SK_OVERRIDE;
/external/smali/
H A Dbuild.gradle64 task release() {
151 task wrapper(type: Wrapper) {
/external/chromium_org/cc/resources/
H A Dtile_manager_perftest.cc47 RasterTask* task = it->task; variable
49 task->WillSchedule();
50 task->ScheduleOnOriginThread(this);
51 task->DidSchedule();
53 completed_tasks_.push_back(task);
60 RasterTask* task = it->get(); variable
62 task->WillComplete();
63 task->CompleteOnOriginThread(this);
64 task
[all...]
/external/chromium_org/remoting/protocol/
H A Dprotocol_mock_objects.cc106 const base::Closure& task) {
108 task.Run();
103 PostTask( const scoped_refptr<base::SingleThreadTaskRunner>& task_runner, const tracked_objects::Location& from_here, const base::Closure& task) argument
H A Dmessage_reader_unittest.cc51 void AddSecondMessage(const base::Closure& task) { argument
54 task.Run();
58 void OnSecondMessage(const base::Closure& task) { argument
60 task.Run();
64 void DeleteReader(const base::Closure& task) { argument
66 task.Run();
/external/chromium_org/storage/browser/fileapi/
H A Dtimed_task_helper.cc79 base::Closure task = user_task_; local
81 task.Run();
/external/chromium_org/third_party/WebKit/Source/core/workers/
H A DWorkerObjectProxy.cpp55 void WorkerObjectProxy::postTaskToMainExecutionContext(PassOwnPtr<ExecutionContextTask> task) argument
57 m_executionContext->postTask(task);
/external/jmdns/src/javax/jmdns/impl/
H A DHostInfo.java295 public boolean advanceState(DNSTask task) { argument
296 return this._state.advanceState(task);
303 public void removeAssociationWithTask(DNSTask task) { argument
304 this._state.removeAssociationWithTask(task);
319 public void associateWithTask(DNSTask task, DNSState state) { argument
320 this._state.associateWithTask(task, state);
327 public boolean isAssociatedWithTask(DNSTask task, DNSState state) { argument
328 return this._state.isAssociatedWithTask(task, state);
/external/chromium_org/base/test/
H A Dsequenced_task_runner_test_template.h42 // Posts the non-nestable task |task|, and records its post event.
45 const Closure& task);
47 // Posts the nestable task |task|, and records its post event.
50 const Closure& task);
52 // Posts the delayed non-nestable task |task|, and records its post event.
55 const Closure& task,
65 // Returns after the tracker observes a total of |count| task completion
214 Closure task = Bind( local
[all...]
/external/guava/guava/src/com/google/common/util/concurrent/
H A DAbstractListeningExecutorService.java42 @Override public ListenableFuture<?> submit(Runnable task) { argument
43 ListenableFutureTask<Void> ftask = ListenableFutureTask.create(task, null);
48 @Override public <T> ListenableFuture<T> submit(Runnable task, T result) { argument
49 ListenableFutureTask<T> ftask = ListenableFutureTask.create(task, result);
54 @Override public <T> ListenableFuture<T> submit(Callable<T> task) { argument
55 ListenableFutureTask<T> ftask = ListenableFutureTask.create(task);
83 // Start one task for sure; the rest incrementally
/external/chromium_org/chrome/browser/android/provider/
H A Dchrome_browser_provider.cc17 #include "base/task/cancelable_task_tracker.h"
192 // ------------- Synchronous task classes ------------- //
194 // Utility task to add a bookmark.
516 // Global refs should be used here for thread-safety reasons as this task
600 // Gets the Mobile Bookmarks node. Using this task ensures the correct
1090 // Needed because of the internal bookmark model task invocation.
1128 IsInMobileBookmarksBranchTask task(model);
1129 if (task.Run(parent_id))
1205 AddBookmarkTask task(bookmark_model_);
1206 return task
[all...]
/external/lldb/tools/darwin-threads/
H A Dexamine-threads.c162 inferior_namespace_mach_port_num (task_t task, thread_t examine_threads_port, thread_t *inferior_port) argument
173 retval = mach_port_names (task, &names, &nameslen, &types, &typeslen);
184 retval = mach_port_extract_right (task, names[i], MACH_MSG_TYPE_COPY_SEND, &local_name, &local_type);
270 task_t task; local
356 kr = task_for_pid (mach_task_self (), pid, &task);
366 kr = task_info (task, TASK_BASIC_INFO, (task_info_t) &info, &info_count);
387 kr = task_threads (task, &thread_list, &thread_count);
426 if (inferior_namespace_mach_port_num (task, thread_list[i], &mach_port_inferior_namespace))
475 kern_return_t err = task_resume (task);
477 printf ("Error resuming task
[all...]
/external/chromium_org/tools/findit/
H A Dcrash_utils.py44 task = TASK_QUEUE.get()
45 if not task:
54 function, args, kwargs, result_semaphore = task
60 # Signal one task is done in case of exception.
67 Return after all tasks were completed. A task is a dict as below:
87 # Push task to task queue for execution.
88 for task in tasks:
90 (task['function'], task
[all...]

Completed in 7599 milliseconds

<<11121314151617181920>>