Lines Matching refs:handles_
24 auto result = handles_.insert(std::make_pair(handle, Entry(dispatcher))); in AddDispatcher()
44 auto result = handles_.insert( in AddDispatchersFromTransit()
54 auto it = handles_.find(handle); in GetDispatcher()
55 if (it == handles_.end()) in GetDispatcher()
63 auto it = handles_.find(handle); in GetAndRemoveDispatcher()
64 if (it == handles_.end()) in GetAndRemoveDispatcher()
70 handles_.erase(it); in GetAndRemoveDispatcher()
81 auto it = handles_.find(handles[i]); in BeginTransit()
82 if (it == handles_.end()) in BeginTransit()
101 auto it = handles_.find(dispatcher.local_handle); in CompleteTransitAndClose()
102 DCHECK(it != handles_.end() && it->second.busy); in CompleteTransitAndClose()
103 handles_.erase(it); in CompleteTransitAndClose()
111 auto it = handles_.find(dispatcher.local_handle); in CancelTransit()
112 DCHECK(it != handles_.end() && it->second.busy); in CancelTransit()
120 for (const auto& entry : handles_) in GetActiveHandlesForTest()