Lines Matching refs:in_flight
276 pid_to_id_map in_flight; in drive() local
283 INV(in_flight.size() <= slots); in drive()
288 while (in_flight.size() < slots) { in drive()
305 INV_MSG(in_flight.find(pid_id.first) == in_flight.end(), in drive()
308 in_flight.insert(pid_id); in drive()
314 if (!in_flight.empty()) { in drive()
317 const pid_to_id_map::iterator iter = in_flight.find( in drive()
319 INV_MSG(iter != in_flight.end(), in drive()
321 result_handle->original_pid() % format_pids(in_flight)); in drive()
323 in_flight.erase(iter); in drive()
327 } while (!in_flight.empty() || !scanner.done()); in drive()