Home
last modified time | relevance | path

Searched refs:voice_channel_map_ (Results 1 – 2 of 2) sorted by relevance

/dports/net-im/kopete/kopete-21.12.3/protocols/jabber/libjingle/talk/session/phone/
H A Dcall.cc236 voice_channel_map_[session->id()] = voice_channel; in AddSession()
316 it_channel = voice_channel_map_.find(session->id()); in RemoveSession()
317 if (it_channel != voice_channel_map_.end()) { in RemoveSession()
319 voice_channel_map_.erase(it_channel); in RemoveSession()
344 = voice_channel_map_.find(session->id()); in GetVoiceChannel()
345 return (it != voice_channel_map_.end()) ? it->second : NULL; in GetVoiceChannel()
381 VoiceChannel* voice_channel = voice_channel_map_[(*it)->id()]; in Mute()
460 it_channel = call->voice_channel_map_.find(session->id()); in Join()
461 if (it_channel != call->voice_channel_map_.end()) { in Join()
463 call->voice_channel_map_.erase(it_channel); in Join()
[all …]
H A Dcall.h197 std::map<std::string, VoiceChannel*> voice_channel_map_; variable