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 61 typedef int64_t TaskId;
62 static const TaskId kBadTaskId;
71 TaskId PostTask(base::TaskRunner* task_runner,
75 TaskId PostTaskAndReply(base::TaskRunner* task_runner,
81 TaskId PostTaskAndReplyWithResult(
98 // Creates a tracked TaskId and an associated IsCanceledCallback. Client can
99 // later call TryCancel() with the returned TaskId, and run |is_canceled_cb|
100 // from any thread to check whether the TaskId is canceled.
107 TaskId NewTrackedTaskId(IsCanceledCallback* is_canceled_cb);
116 void TryCancel(TaskId id)
    [all...]
  /packages/services/Telephony/src/com/android/phone/vvm/omtp/scheduling/
Task.java 37 * TaskId to indicate it has not be set. If a task does not provide a default TaskId it should
43 * TaskId to indicate it should always be queued regardless of duplicates. {@link
44 * 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
56 class TaskId {
69 public TaskId(int id, int subId) {
76 if (!(object instanceof TaskId)) {
79 TaskId other = (TaskId) object
    [all...]

Completed in 74 milliseconds