HomeSort by relevance Sort by last modified time
    Searched defs:Task (Results 26 - 50 of 75) sorted by null

12 3

  /external/chromium_org/ui/file_manager/file_manager/background/js/
file_operation_manager.js 214 // Found unknown state. Cancel the task, and return an error.
331 * FileOperationManager.Task.getStatus().
332 * @param {string} taskId ID of task related with the event.
362 * Dispatches an event to notify entries are changed for delete task.
366 * @param {DeleteTask} task Delete task related with the event.
369 reason, task) {
372 event.taskId = task.taskId;
373 event.entries = task.entries;
374 event.totalBytes = task.totalBytes
    [all...]
  /art/runtime/
thread_pool.h 32 class Task : public Closure {
77 // Add a new task, the first available started worker will process it. Does not delete the task
79 void AddTask(Thread* self, Task* task);
99 // get a task to run, blocks if there are no tasks left
100 virtual Task* GetTask(Thread* self);
102 // Try to get a task, returning NULL if there is none available.
103 Task* TryGetTask(Thread* self);
104 Task* TryGetTaskLocked(Thread* self) EXCLUSIVE_LOCKS_REQUIRED(task_queue_lock_)
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
task.cc 28 #include "talk/base/task.h"
34 int32 Task::unique_id_seed_ = 0;
36 Task::Task(TaskParent *parent)
54 Task::~Task() {
55 // Is this task being deleted in the correct manner?
60 // If the task is being deleted without being done, it
62 // This happens if a task is deleted outside of TaskRunner.
68 int64 Task::CurrentTime()
    [all...]
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/chromium_org/third_party/webrtc/base/
task.cc 11 #include "webrtc/base/task.h"
17 int32 Task::unique_id_seed_ = 0;
19 Task::Task(TaskParent *parent)
37 Task::~Task() {
38 // Is this task being deleted in the correct manner?
43 // If the task is being deleted without being done, it
45 // This happens if a task is deleted outside of TaskRunner.
51 int64 Task::CurrentTime()
    [all...]
task.h 22 // TASK
26 // Task is a state machine infrastructure. States are pushed forward by
28 // of Task is threefold:
32 // organizing a set of states for each task. When you return from your
39 // task will self-delete sometime afterwards.
42 // too many triggers on one thread. Basically if you want to tell a task
43 // to process something for you, you feed your task some information and
46 // to have a queue in the task.
49 // task gets aborted, all the children tasks are too. The nice thing
50 // about this, for example, is if you have one parent task tha
    [all...]
  /external/chromium_org/cc/resources/
task_graph_runner.cc 16 // Helper class for iterating over all dependents of a task.
19 DependentIterator(TaskGraph* graph, const Task* task)
20 : graph_(graph), task_(task), current_index_(-1), current_node_(NULL) {
26 DCHECK_EQ(graph_->edges[current_index_].task, task_);
33 DCHECK_EQ(graph_->edges[current_index_].task, task_);
45 } while (graph_->edges[current_index_].task != task_);
63 const Task* task_;
76 DependentComparator(node.task))) !=
83 explicit DependentComparator(const Task* dependent
    [all...]
task_graph_runner.h 18 class CC_EXPORT Task : public base::RefCountedThreadSafe<Task> {
20 typedef std::vector<scoped_refptr<Task> > Vector;
29 friend class base::RefCountedThreadSafe<Task>;
31 Task();
32 virtual ~Task();
38 // Dependencies are represented as edges in a task graph. Each graph node is
46 explicit TaskComparator(const Task* task) : task_(task) {}
59 Task* task; member in struct:cc::TaskGraph::Node
70 const Task* task; member in struct:cc::TaskGraph::Edge
147 Task* task; member in struct:cc::TaskGraphRunner::PrioritizedTask
    [all...]
  /device/google/accessory/arduino/USB_Host_Shield/
Max3421e.cpp 289 /* MAX3421 state change task and interrupt handler */
290 byte MAX3421E::Task( void )
Usb.cpp 334 /* USB main task. Performs enumeration/cleanup */
335 void USB::Task( void ) //USB state machine
344 /* modify USB task state if Vbus changed */
363 //Serial.print("USB task state: ");
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
sync_task_manager.h 37 // This class manages asynchronous tasks for Sync FileSystem. Each task must be
38 // either a Task or a SyncTask.
39 // The instance runs single task as the foreground task, and multiple tasks as
40 // background tasks. Running background task has a BlockingFactor that
41 // describes which task can run in parallel. When a task start running as a
42 // background task, SyncTaskManager checks if any running background task
43 // doesn't block the new background task, and queues it up if it can't run
129 base::Closure task; member in struct:sync_file_system::drive_backend::SyncTaskManager::PendingTask
    [all...]
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend_v1/
drive_file_sync_service.h 65 typedef base::Callback<void(const SyncStatusCallback& callback)> Task;
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
MutableMethodImplementation.java 82 List<Task> switchPayloadTasks = Lists.newArrayList();
88 switchPayloadTasks.add(new Task() {
101 for (Task switchPayloadTask: switchPayloadTasks) {
126 private interface Task {
    [all...]
  /external/chromium_org/net/ssl/
default_server_bound_cert_store.cc 15 // Task
16 class DefaultServerBoundCertStore::Task {
18 virtual ~Task();
20 // Runs the task and invokes the client callback on the thread that
21 // originally constructed the task.
28 DefaultServerBoundCertStore::Task::~Task() {
31 void DefaultServerBoundCertStore::Task::InvokeCallback(
40 : public DefaultServerBoundCertStore::Task {
79 : public DefaultServerBoundCertStore::Task {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/loader/
ImageLoader.cpp 63 class ImageLoader::Task : public blink::WebThread::Task {
65 Task(ImageLoader* loader)
86 WeakPtr<Task> createWeakPtr()
94 WeakPtrFactory<Task> m_weakFactory;
170 // task, or our caller updateFromElement cleared the task's loader (and set
273 // If we have a pending task, we have to clear it -- either we're
274 // now loading immediately, or we need to reset the task's state.
286 OwnPtr<Task> task = adoptPtr(new Task(this)) local
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
Task.java 30 * A task represents the top most task in the system's task stack.
32 public class Task {
33 /* Task callbacks */
35 /* Notifies when a task has been bound */
37 /* Notifies when a task has been unbound */
67 /* The Task Key represents the unique primary key for the task */
85 /** Returns the component name key for this task. *
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
evntprov.h 62 USHORT Task;
193 USHORT Task,
201 EventDescriptor->Task = Task;
235 return (EventDescriptor->Task);
294 USHORT Task)
296 EventDescriptor->Task = Task;
  /external/lldb/tools/debugserver/source/MacOSX/
MachProcess.h 162 MachTask& Task() { return m_task; }
163 const MachTask& Task() const { return m_task; }
276 MachTask m_task; // The mach task for this process
  /frameworks/support/v4/java/android/support/v4/app/
NotificationManagerCompat.java 264 * Push a notification task for distribution to notification side channels.
266 private void pushSideChannelQueue(Task task) {
272 sSideChannelManager.queueTask(task);
302 * Queue a new task to be sent to all listeners. This function can be called
305 public void queueTask(Task task) {
306 mHandler.obtainMessage(MSG_QUEUE_TASK, task).sendToTarget();
313 handleQueueTask((Task) msg.obj);
329 private void handleQueueTask(Task task)
502 Task task = record.taskQueue.peek(); local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ant.core_3.2.200.v20100427.jar 
org.mortbay.jetty.util_6.1.23.v201004211559.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/gmaven/runtime/gmaven-runtime-2.0/1.5/
gmaven-runtime-2.0-1.5.jar 
  /prebuilts/tools/common/netbeans-visual/
org-openide-util.jar 
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
ndis.h     [all...]
  /prebuilts/tools/common/m2/repository/org/gradle/gradle-tooling-api/1.10/
gradle-tooling-api-1.10.jar 

Completed in 2478 milliseconds

12 3