HomeSort by relevance Sort by last modified time
    Searched refs:Task (Results 51 - 75 of 338) sorted by null

1 23 4 5 6 7 8 91011>>

  /sdk/anttasks/src/com/android/ant/
SingleInputOutputTask.java 20 import org.apache.tools.ant.Task;
32 public abstract class SingleInputOutputTask extends Task {
54 // check if there's a need for the task to run.
  /external/chromium/third_party/libjingle/source/talk/examples/call/
discoitemsquerytask.h 62 DiscoItemsQueryTask(Task* parent, const std::string node, const Jid& to);
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/webkit/Source/WebCore/platform/graphics/chromium/cc/
CCThreadTask.h 36 class CCThreadTask0 : public CCThread::Task {
48 : CCThread::Task(instance)
63 class CCThreadTask1 : public CCThread::Task {
76 : CCThread::Task(instance)
93 class CCThreadTask2 : public CCThread::Task {
107 : CCThread::Task(instance)
126 class CCThreadTask3 : public CCThread::Task {
141 : CCThread::Task(instance)
163 class CCThreadTask4 : public CCThread::Task {
179 : CCThread::Task(instance
    [all...]
  /external/chromium/chrome/browser/sync/
test_profile_sync_service.h 19 class Task;
29 // running in these tests, and allows tests to provide a task on construction
66 // "delay" as a prefix, in which case a task to fire the identical
91 Task* initial_condition_setup_task);
133 Task* initial_condition_setup_task_;
  /external/chromium/third_party/libjingle/source/talk/base/
task.h 39 // TASK
43 // Task is a state machine infrastructure. States are pushed forward by
45 // of Task is threefold:
49 // organizing a set of states for each task. When you return from your
56 // task will self-delete sometime afterwards.
59 // too many triggers on one thread. Basically if you want to tell a task
60 // to process something for you, you feed your task some information and
63 // to have a queue in the task.
66 // task gets aborted, all the children tasks are too. The nice thing
67 // about this, for example, is if you have one parent task tha
    [all...]
  /external/webkit/Source/WebCore/fileapi/
FileThread.cpp 67 void FileThread::postTask(PassOwnPtr<Task> task)
69 m_queue.append(task);
75 bool operator()(FileThread::Task* task) const { return task->instance() == m_instance; }
102 while (OwnPtr<Task> task = m_queue.waitForMessage()) {
103 task->performTask();
  /external/webkit/Source/WebCore/storage/
IDBTransactionBackendImpl.h 50 virtual bool scheduleTask(PassOwnPtr<ScriptExecutionContext::Task> task, PassOwnPtr<ScriptExecutionContext::Task> abortTask);
80 typedef Deque<OwnPtr<ScriptExecutionContext::Task> > TaskQueue;
  /external/webkit/Source/WebCore/workers/
WorkerMessagingProxy.h 75 virtual void postTaskToLoader(PassOwnPtr<ScriptExecutionContext::Task>);
76 virtual void postTaskForModeToWorkerContext(PassOwnPtr<ScriptExecutionContext::Task>, const String& mode);
104 Vector<OwnPtr<ScriptExecutionContext::Task> > m_queuedEarlyTasks; // Tasks are queued here until there's a thread object created.
  /external/chromium/chrome/browser/service/
service_process_control.h 18 #include "base/task.h"
77 // this case, the task is invoked on success or failure.
81 void Launch(Task* success_task, Task* failure_task);
140 // After the comamnd is executed |task| is called with the process handle on
142 void Run(Task* task);
158 scoped_ptr<Task> notify_task_;
163 typedef std::vector<Task*> TaskList;
  /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/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/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/webkit/Source/WebCore/bindings/v8/
ScriptDebugServer.h 82 class Task {
84 virtual ~Task() { }
87 static void interruptAndRun(PassOwnPtr<Task>);
  /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/webkit/Source/WebCore/dom/
StringCallback.cpp 41 class DispatchCallbackTask : public ScriptExecutionContext::Task {
  /external/webkit/Source/WebKit/chromium/src/
WorkerFileWriterCallbacksBridge.h 78 // task is executed. In order to shut down the bridge, the WebFileWriterClient
94 // Methods that create an instance and post an initial request task to the main thread. They must be called on the worker thread.
129 // Called on the main thread to run the supplied task.
130 static void runTaskOnMainThread(WebCore::ScriptExecutionContext*, PassRefPtr<WorkerFileWriterCallbacksBridge>, PassOwnPtr<WebCore::ScriptExecutionContext::Task>);
131 // Called on the worker thread to run the supplied task.
132 static void runTaskOnWorkerThread(WebCore::ScriptExecutionContext*, PassRefPtr<WorkerFileWriterCallbacksBridge>, PassOwnPtr<WebCore::ScriptExecutionContext::Task>);
135 void dispatchTaskToMainThread(PassOwnPtr<WebCore::ScriptExecutionContext::Task>);
137 void dispatchTaskToWorkerThread(PassOwnPtr<WebCore::ScriptExecutionContext::Task>);
  /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

Completed in 993 milliseconds

1 23 4 5 6 7 8 91011>>