HomeSort by relevance Sort by last modified time
    Searched refs:Task (Results 126 - 150 of 418) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium/chrome/browser/password_manager/
password_store.h 19 class Task;
132 // Schedule the given |task| to be run in the PasswordStore's own thread.
133 virtual void ScheduleTask(Task* task);
182 // the method specified in |task| and then calls back into the source thread
185 // method will actually modify the password store data. |task| may not be
186 // NULL. This method owns and will delete |task|.
187 void WrapModificationTask(Task* task);
  /external/chromium/chrome/common/
service_process_util_posix.cc 17 Task* shutdown_task)
139 base::MessageLoopProxy* message_loop_proxy, Task* shutdown_task) {
142 scoped_ptr<Task> scoped_shutdown_task(shutdown_task);
service_process_util_win.cc 13 #include "base/task.h"
52 explicit ServiceProcessShutdownMonitor(Task* shutdown_task)
71 scoped_ptr<Task> shutdown_task_;
127 base::MessageLoopProxy* message_loop_proxy, Task* shutdown_task) {
130 scoped_ptr<Task> scoped_shutdown_task(shutdown_task);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/
feedTools.jar 
  /external/emma/ant/ant14/com/vladium/emma/ant/
GenericCfg.java 19 import org.apache.tools.ant.Task;
41 public GenericCfg (final Task task)
43 if (task == null) throw new IllegalArgumentException ("null input: task");
45 m_task = task;
141 private final Task m_task;
  /device/google/accessory/arduino/USB_Host_Shield/
Max3421e.h 55 byte Task();
  /external/chromium/base/synchronization/
cancellation_flag_unittest.cc 25 class CancelTask : public Task {
  /external/chromium/chrome/browser/printing/cloud_print/
cloud_print_proxy_service.h 60 // Invoke a task that gets run after the service process successfully
61 // launches. The task typically involves sending an IPC to the service
63 bool InvokeServiceTask(Task* task);
  /external/chromium/chrome/browser/sync/
abstract_profile_sync_service_test.h 13 #include "base/task.h"
55 class CreateRootTask : public Task {
  /external/chromium/chrome/browser/sync/notifier/
chrome_system_resources.cc 56 invalidation::Closure* task) {
59 Task* task_to_post = MakeTaskToPost(task);
68 invalidation::Closure* task) {
71 Task* task_to_post = MakeTaskToPost(task);
81 invalidation::Closure* task) {
84 ScheduleImmediately(task);
146 Task* ChromeSystemResources::MakeTaskToPost(
147 invalidation::Closure* task) {
    [all...]
chrome_system_resources.h 18 #include "base/task.h"
40 invalidation::Closure* task);
42 virtual void ScheduleImmediately(invalidation::Closure* task);
44 virtual void ScheduleOnListenerThread(invalidation::Closure* task);
65 // If the scheduler has been started, inserts |task| into
66 // |posted_tasks_| and returns a Task* to post. Otherwise,
67 // immediately deletes |task| and returns NULL.
68 Task* MakeTaskToPost(invalidation::Closure* task);
70 // Runs the task, deletes it, and removes it from |posted_tasks_|
    [all...]
  /external/chromium/third_party/libjingle/source/talk/examples/call/
presencepushtask.h 43 PresencePushTask(Task * parent, CallClient* client)
  /external/chromium_org/chrome/browser/sync_file_system/
sync_process_runner.h 26 typedef base::Callback<void(const SyncStatusCallback&)> Task;
  /external/chromium_org/chrome_frame/
task_marshaller.h 18 class Task;
27 // the task queue is not empty.
39 const base::Closure& task);
41 const base::Closure& task,
  /external/chromium_org/content/browser/net/
sqlite_persistent_cookie_store.h 19 class Task;
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
ParallelJobs.h 31 #include "platform/Task.h"
88 m_threads[i]->postTask(new Task(WTF::bind(m_func, &parameter(i))));
  /external/emma/ant/ant14/com/vladium/emma/instr/
FilterCfg.java 18 import org.apache.tools.ant.Task;
38 public filterElement (final Task task)
40 super (task);
118 public FilterCfg (final Task task)
120 if (task == null) throw new IllegalArgumentException ("null input: task");
122 m_task = task;
189 private final Task m_task; // never nul
    [all...]
  /external/chromium/chrome/browser/
background_mode_manager_win.cc 10 #include "base/task.h"
22 class DisableLaunchOnStartupTask : public Task {
27 class EnableLaunchOnStartupTask : public Task {
transport_security_persister.cc 32 Task* task = NewRunnableMethod(this, local
34 BrowserThread::PostDelayedTask(BrowserThread::FILE, FROM_HERE, task, 1000);
73 Task* task = save_coalescer_.NewRunnableMethod(
75 MessageLoop::current()->PostDelayedTask(FROM_HERE, task, 1000);
  /external/chromium/net/base/
cookie_monster_store_test.h 65 virtual void Flush(Task* completion_task);
132 virtual void Flush(Task* completion_task);
  /external/chromium_org/gpu/command_buffer/service/
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...]
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
DatabaseThread.cpp 70 m_thread->postTask(new Task(WTF::bind(&DatabaseThread::cleanupDatabaseThread, this)));
102 m_thread->postTask(new Task(WTF::bind(&DatabaseTaskSynchronizer::taskCompleted, m_cleanupSync)));
128 void DatabaseThread::scheduleTask(PassOwnPtr<DatabaseTask> task)
131 ASSERT(!task->hasSynchronizer() || task->hasCheckedForTermination());
132 // WebThread takes ownership of the task.
133 m_thread->postTask(task.leakPtr());
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
xmppclient.h 34 #include "talk/base/task.h"
54 // See Task first. XmppClient is a parent task for XmppTasks.
56 // XmppClient is a task which is designed to be the parent task for
59 // listener should be a task that is a child of the XmppClient that owns
66 // should just be the same kind of Task instead of an XmppEngine specific
139 default: return Task::Process(state);
147 default: return Task::GetStateName(state);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
CvsDiffParser.java 17 import org.apache.tools.ant.Task;
33 public class CvsDiffParser extends Task {
GenerateExcludeListTask.java 22 import org.apache.tools.ant.Task;
24 public class GenerateExcludeListTask extends Task {

Completed in 548 milliseconds

1 2 3 4 56 7 8 91011>>