Searched defs:PendingTask (Results 1 – 6 of 6) sorted by relevance
25 struct BASE_EXPORT PendingTask { struct37 PendingTask& operator=(PendingTask&& other); argument49 // The site this PendingTask was posted from. argument50 Location posted_from;77 // processed. This property is not propagated from one PendingTask to the argument81 uint32_t ipc_hash = 0;82 const char* ipc_interface_name = nullptr;85 int sequence_num = 0;87 bool task_backtrace_overflow = false;
34 PendingTask::PendingTask(const Location& posted_from, in PendingTask() function in base::PendingTask
25 struct BASE_EXPORT PendingTask { struct33 PendingTask& operator=(PendingTask&& other); argument41 // The site this PendingTask was posted from. argument61 using TaskQueue = base::queue<PendingTask>; argument
10 PendingTask::PendingTask(const Location& posted_from, in PendingTask() function in base::PendingTask
139 struct PendingTask { struct140 explicit PendingTask(std::shared_ptr<Task> task, int64_t target_round) in PendingTask() function143 std::shared_ptr<Task> task;145 int64_t target_round;148 absl::flat_hash_set<int64_t> ready_consumers;150 int64_t failures = 0;
43 void WillProcessTask(const PendingTask& /* pending_task */, in WillProcessTask()