HomeSort by relevance Sort by last modified time
    Searched refs:Task (Results 76 - 100 of 415) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium/chrome/browser/password_manager/
password_store.cc 10 #include "base/task.h"
41 Task* task = NewRunnableMethod(this, &PasswordStore::AddLoginImpl, form); local
43 NewRunnableMethod(this, &PasswordStore::WrapModificationTask, task));
47 Task* task = NewRunnableMethod(this, &PasswordStore::UpdateLoginImpl, form); local
49 NewRunnableMethod(this, &PasswordStore::WrapModificationTask, task));
53 Task* task = NewRunnableMethod(this, &PasswordStore::RemoveLoginImpl, form); local
55 NewRunnableMethod(this, &PasswordStore::WrapModificationTask, task));
60 Task* task = NewRunnableMethod(this, local
    [all...]
  /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 {
StringCallback.cpp 41 class DispatchCallbackTask : public ScriptExecutionContext::Task {
  /external/chromium/chrome/browser/sync/notifier/
chrome_invalidation_client.h 32 class Task;
64 StateWriter* state_writer, base::WeakPtr<talk_base::Task> base_task);
68 // Changes the task used to |base_task|, which must still be
71 void ChangeBaseTask(base::WeakPtr<talk_base::Task> base_task);
  /external/chromium/third_party/libjingle/source/talk/examples/call/
voicemailjidrequester.cc 35 VoicemailJidRequester::VoicemailJidRequester(talk_base::Task* parent,
37 const Jid& my_jid) : Task(parent),
111 return talk_base::Task::Process(state);
mucinviterecvtask.h 68 MucInviteRecvTask(Task* parent) : XmppTask(parent, XmppEngine::HL_TYPE) {}
  /external/chromium/third_party/libjingle/source/talk/xmpp/
xmppclient.h 37 #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
71 class XmppClient : public talk_base::Task, public sigslot::has_slots<>
137 default: return Task::Process(state);
145 default: return Task::GetStateName(state)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/workers/
WorkerMessagingProxy.h 79 virtual void postTaskToLoader(PassOwnPtr<ScriptExecutionContext::Task>) OVERRIDE;
80 virtual bool postTaskForModeToWorkerGlobalScope(PassOwnPtr<ScriptExecutionContext::Task>, const String& mode) OVERRIDE;
112 Vector<OwnPtr<ScriptExecutionContext::Task> > m_queuedEarlyTasks; // Tasks are queued here until there's a thread object created.
  /external/chromium/base/
task_queue_unittest.cc 7 #include "base/task.h"
14 class TrackCallsTask : public Task {
38 // Adds a given task to the queue when run.
39 class TaskQueuerTask : public Task {
41 TaskQueuerTask(TaskQueue* queue, Task* task_to_queue)
52 Task* task_to_queue_;
114 // Build a task which will queue two more when run.
129 // Run the task which pushes two more tasks.
message_loop.h 18 #include "base/task.h"
42 // Events include at a minimum Task instances submitted to PostTask or those
51 // NOTE: MessageLoop has task reentrancy protection. This means that if a
52 // task is being processed, a second task cannot start until the first task is
53 // finished. Reentrancy can happen when processing a task, and an inner
55 // which could implicitly start an inner task. Inner message pumps are created
59 // Sample workaround when inner task processing is needed:
66 // Please be SURE your task is reentrant (nestable) and all global variable
366 Task* task; \/\/ The task to run. member in struct:MessageLoop::PendingTask
    [all...]
  /external/chromium/base/threading/
worker_pool_unittest.cc 5 #include "base/task.h"
17 class PostTaskTestTask : public Task {
  /external/chromium/chrome/browser/metrics/
thread_watcher.h 45 #include "base/task.h"
112 // This method records when ping message was sent and it will Post a task
114 // OnPongMessage. It also posts a task (OnCheckResponsiveness) to check
122 // PostPingMessage task that would be called after waiting sleep_time_. It
150 Task* callback_task);
219 // This method posts a task on WatchDogThread to start watching all browser
224 // This method posts a task on WatchDogThread to RevokeAll tasks and to
296 // They return true iff the watchdog thread existed and the task was posted.
297 // Note that even if the task is posted, there's no guarantee that it will
299 static bool PostTask(const tracked_objects::Location& from_here, Task* task)
    [all...]
  /external/chromium/chrome/browser/net/
sqlite_persistent_cookie_store.h 44 virtual void Flush(Task* completion_task);
  /external/chromium_org/base/threading/
worker_pool_posix.h 13 // task queue, it does not own the worker threads. The worker threads ask the
41 class Task;
59 // Adds |task| to the thread pool.
61 const Closure& task);
74 // |pending_task->task|.
  /external/chromium_org/net/ssl/
default_server_bound_cert_store.h 72 class Task;
120 // Add |task| to |waiting_tasks_|.
121 void EnqueueTask(scoped_ptr<Task> task);
122 // If already initialized, run |task| immediately. Otherwise add it to
124 void RunOrEnqueueTask(scoped_ptr<Task> task);
145 ScopedVector<Task> waiting_tasks_;
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
WorkerScriptDebugServer.h 54 void interruptAndRunTask(PassOwnPtr<Task>);
  /external/chromium_org/third_party/WebKit/Source/web/
WorkerFileWriterCallbacksBridge.h 77 // task is executed. In order to shut down the bridge, the WebFileWriterClient
93 // Methods that create an instance and post an initial request task to the main thread. They must be called on the worker thread.
128 // Called on the main thread to run the supplied task.
129 static void runTaskOnMainThread(WebCore::ScriptExecutionContext*, PassRefPtr<WorkerFileWriterCallbacksBridge>, PassOwnPtr<WebCore::ScriptExecutionContext::Task>);
130 // Called on the worker thread to run the supplied task.
131 static void runTaskOnWorkerThread(WebCore::ScriptExecutionContext*, PassRefPtr<WorkerFileWriterCallbacksBridge>, PassOwnPtr<WebCore::ScriptExecutionContext::Task>);
134 void dispatchTaskToMainThread(PassOwnPtr<WebCore::ScriptExecutionContext::Task>);
136 void dispatchTaskToWorkerThread(PassOwnPtr<WebCore::ScriptExecutionContext::Task>);
  /external/chromium_org/third_party/libjingle/source/talk/examples/plus/
rostertask.h 40 RosterTask(Task * parent) :
  /art/runtime/
thread_pool.cc 47 Task* task = NULL; local
49 while ((task = thread_pool_->GetTask(self)) != NULL) {
50 task->Run(self);
51 task->Finalize();
65 void ThreadPool::AddTask(Thread* self, Task* task) {
67 tasks_.push_back(task);
75 : task_queue_lock_("task queue lock"),
76 task_queue_condition_("task queue condition", task_queue_lock_)
136 Task* task = TryGetTaskLocked(self); local
167 Task* task = tasks_.front(); local
176 Task* task = NULL; local
204 Task* task = NULL; local
293 WorkStealingTask* task = worker->task_; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
MockWebSpeechRecognizer.cpp 39 // Task class for calling a client function that does not take any parameters.
41 class ClientCallTask : public MockWebSpeechRecognizer::Task {
44 : MockWebSpeechRecognizer::Task(mock)
55 // Task for delivering a result event.
56 class ResultTask : public MockWebSpeechRecognizer::Task {
59 : MockWebSpeechRecognizer::Task(mock)
83 // Task for delivering a nomatch event.
84 class NoMatchTask : public MockWebSpeechRecognizer::Task {
86 NoMatchTask(MockWebSpeechRecognizer* mock) : MockWebSpeechRecognizer::Task(mock) { }
90 // Task for delivering an error event
234 Task* task = m_object->m_taskQueue.front(); local
    [all...]
  /external/chromium/chrome/browser/
background_mode_manager_linux.cc 13 #include "base/task.h"
26 class DisableLaunchOnStartupTask : public Task {
31 class EnableLaunchOnStartupTask : public Task {
  /external/chromium/chrome/browser/chromeos/login/
camera.h 17 class Task;
98 // Task for camera thread that queries camera about the next frame and
100 // next task for itself if capturing still takes place.
134 // Posts task to camera thread.
136 Task* task);
  /external/chromium/chrome/browser/importer/
importer_host.h 23 class Task;
110 // The task is the process of importing settings from other browsers.
111 Task* task_;
113 // The importer used in the task.
134 // Launches the thread that starts the import task, unless bookmark or
  /external/chromium/chrome/browser/safe_browsing/
malware_details_cache.h 51 Task* callback);
79 Task* callback_;
  /external/chromium_org/cc/resources/
raster_worker_pool.h 94 class CC_EXPORT Task {
103 void Insert(const Task& task);
113 Task();
114 ~Task();
116 // Returns true if Task is null (doesn't refer to anything).
119 // Returns the Task into an uninitialized state.
126 explicit Task(internal::WorkerPoolTask* internal);
141 void Append(const RasterTask& task, bool required_for_activation);
156 // Returns true if Task is null (doesn't refer to anything)
    [all...]

Completed in 785 milliseconds

1 2 34 5 6 7 8 91011>>