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()44 if (sender_map_.find(cid) == sender_map_.end()) { in GetDataController()47 return sender_map_.find(cid)->second.GetDataController(); in GetDataController()51 ASSERT(sender_map_.find(cid) != sender_map_.end()); in OnPacketSent()52 sender_map_.find(cid)->second.OnPacketSent(); in OnPacketSent()56 ASSERT(sender_map_.find(cid) != sender_map_.end()); in UpdateClassicConfiguration()57 sender_map_.find(cid)->second.UpdateClassicConfiguration(config); in UpdateClassicConfiguration()[all …]
75 std::unordered_map<Cid, Sender> sender_map_; variable