Home
last modified time | relevance | path

Searched defs:PendingTask (Results 1 – 6 of 6) sorted by relevance

/external/cronet/base/
Dpending_task.h25 struct BASE_EXPORT PendingTask { struct
37 PendingTask& operator=(PendingTask&& other); argument
49 // The site this PendingTask was posted from. argument
50 Location posted_from;
77 // processed. This property is not propagated from one PendingTask to the argument
81 uint32_t ipc_hash = 0;
82 const char* ipc_interface_name = nullptr;
85 int sequence_num = 0;
87 bool task_backtrace_overflow = false;
Dpending_task.cc34 PendingTask::PendingTask(const Location& posted_from, in PendingTask() function in base::PendingTask
/external/libchrome/base/
Dpending_task.h25 struct BASE_EXPORT PendingTask { struct
33 PendingTask& operator=(PendingTask&& other); argument
41 // The site this PendingTask was posted from. argument
61 using TaskQueue = base::queue<PendingTask>; argument
Dpending_task.cc10 PendingTask::PendingTask(const Location& posted_from, in PendingTask() function in base::PendingTask
/external/tensorflow/tensorflow/core/data/service/
Ddispatcher_state.h139 struct PendingTask { struct
140 explicit PendingTask(std::shared_ptr<Task> task, int64_t target_round) in PendingTask() function
143 std::shared_ptr<Task> task;
145 int64_t target_round;
148 absl::flat_hash_set<int64_t> ready_consumers;
150 int64_t failures = 0;
/external/cronet/base/android/
Djava_handler_thread_unittest.cc43 void WillProcessTask(const PendingTask& /* pending_task */, in WillProcessTask()