HomeSort by relevance Sort by last modified time
    Searched defs:TaskId (Results 1 - 2 of 2) sorted by null

  /external/libchrome/base/task/
cancelable_task_tracker.h 63 typedef int64_t TaskId;
64 static const TaskId kBadTaskId;
73 TaskId PostTask(base::TaskRunner* task_runner,
77 TaskId PostTaskAndReply(base::TaskRunner* task_runner,
83 TaskId PostTaskAndReplyWithResult(base::TaskRunner* task_runner,
96 // Creates a tracked TaskId and an associated IsCanceledCallback. Client can
97 // later call TryCancel() with the returned TaskId, and run |is_canceled_cb|
98 // from any thread to check whether the TaskId is canceled.
105 TaskId NewTrackedTaskId(IsCanceledCallback* is_canceled_cb);
114 void TryCancel(TaskId id)
    [all...]
  /packages/apps/Dialer/java/com/android/voicemail/impl/scheduling/
Task.java 36 * TaskId to indicate it has not be set. If a task does not provide a default TaskId it should be
42 * TaskId to indicate it should always be queued regardless of duplicates. {@link
43 * Task#onDuplicatedTaskAdded(Task)} will never be called on tasks with this TaskId.
53 * Used to differentiate between types of tasks. If a task with the same TaskId is already in the
56 class TaskId {
67 public TaskId(int id, PhoneAccountHandle phoneAccountHandle) {
74 if (!(object instanceof TaskId)) {
77 TaskId other = (TaskId) object
    [all...]

Completed in 70 milliseconds