Home
last modified time | relevance | path

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

/external/chromium/third_party/libjingle/source/talk/session/phone/
Dcall.cc228 video_channel_map_[session->id()] = video_channel; in AddSession()
270 it_vchannel = video_channel_map_.find(session->id()); in RemoveSession()
271 if (it_vchannel != video_channel_map_.end()) { in RemoveSession()
273 video_channel_map_.erase(it_vchannel); in RemoveSession()
301 = video_channel_map_.find(session->id()); in GetVideoChannel()
302 return (it != video_channel_map_.end()) ? it->second : NULL; in GetVideoChannel()
390 it_vchannel = call->video_channel_map_.find(session->id()); in Join()
391 if (it_vchannel != call->video_channel_map_.end()) { in Join()
393 call->video_channel_map_.erase(it_vchannel); in Join()
394 video_channel_map_[session->id()] = video_channel; in Join()
Dcall.h126 std::map<std::string, VideoChannel *> video_channel_map_; variable