Searched refs:sender_map_ (Results 1 – 2 of 2) sorted by relevance
31 ASSERT(sender_map_.find(cid) == sender_map_.end()); in AttachChannel()32 sender_map_.emplace(std::piecewise_construct, std::forward_as_tuple(cid), in AttachChannel()37 ASSERT(sender_map_.find(cid) != sender_map_.end()); in DetachChannel()38 sender_map_.erase(cid); in DetachChannel()42 if (sender_map_.find(cid) == sender_map_.end()) { in GetDataController()45 return sender_map_.find(cid)->second.GetDataController(); in GetDataController()49 ASSERT(sender_map_.find(cid) != sender_map_.end()); in OnPacketSent()50 sender_map_.find(cid)->second.OnPacketSent(); in OnPacketSent()54 ASSERT(sender_map_.find(cid) != sender_map_.end()); in UpdateClassicConfiguration()55 sender_map_.find(cid)->second.UpdateClassicConfiguration(config); in UpdateClassicConfiguration()
74 std::unordered_map<Cid, Sender> sender_map_; variable