Home
last modified time | relevance | path

Searched refs:work_queue (Results 1 – 4 of 4) sorted by relevance

/third_party/gn/src/gn/
Dcommand_path.cc178 WorkQueue work_queue; in BreadthFirstSearch() local
179 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 …]
Dheader_checker.cc542 base::queue<ChainLink> work_queue; in IsDependencyOf() local
543 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()
/third_party/python/Lib/concurrent/futures/
Dthread.py69 def _worker(executor_reference, work_queue, initializer, initargs): argument
81 work_item = work_queue.get(block=True)
105 work_queue.put(None)
/third_party/NuttX/
DReleaseNotes9792 - work_queue(): Logic that sets the queued indication and the logic
15100 - Work Queues: work_queue() must cancel existing work prior to queuing
15437 calling work_queue on pollwork if it's already queued, just skip a
26702 - Replace the busy polling with work_queue in the ethernet driver of simulator
29659 …* [#4035](https://github.com/apache/incubator-nuttx/pull/#4035) work_queue: schedule the work queu…