Searched refs:work_queue (Results 1 – 4 of 4) sorted by relevance
178 WorkQueue work_queue; in BreadthFirstSearch() local179 work_queue.push_back(initial_stack); in BreadthFirstSearch()184 while (!work_queue.empty()) { in BreadthFirstSearch()185 PathVector current_path = work_queue.front(); in BreadthFirstSearch()186 work_queue.pop_front(); in BreadthFirstSearch()228 work_queue.push_back(current_path); in BreadthFirstSearch()229 work_queue.back().push_back(TargetDep(pair.ptr, DepType::PUBLIC)); in BreadthFirstSearch()235 work_queue.push_back(current_path); in BreadthFirstSearch()236 work_queue.back().push_back(TargetDep(pair.ptr, DepType::PRIVATE)); in BreadthFirstSearch()243 work_queue.push_back(current_path); in BreadthFirstSearch()[all …]
542 base::queue<ChainLink> work_queue; in IsDependencyOf() local543 work_queue.push(ChainLink(search_from, true)); in IsDependencyOf()546 while (!work_queue.empty()) { in IsDependencyOf()547 ChainLink cur_link = work_queue.front(); in IsDependencyOf()549 work_queue.pop(); in IsDependencyOf()566 work_queue.push(ChainLink(dep.ptr, true)); in IsDependencyOf()577 work_queue.push(ChainLink(dep.ptr, false)); in IsDependencyOf()
69 def _worker(executor_reference, work_queue, initializer, initargs): argument81 work_item = work_queue.get(block=True)105 work_queue.put(None)
9792 - work_queue(): Logic that sets the queued indication and the logic15100 - Work Queues: work_queue() must cancel existing work prior to queuing15437 calling work_queue on pollwork if it's already queued, just skip a26702 - Replace the busy polling with work_queue in the ethernet driver of simulator29659 …* [#4035](https://github.com/apache/incubator-nuttx/pull/#4035) work_queue: schedule the work queu…