Home
last modified time | relevance | path

Searched refs:sessions_ (Results 1 – 10 of 10) sorted by relevance

/external/chromium/third_party/libjingle/source/talk/session/phone/
Dcall.cc59 while (sessions_.begin() != sessions_.end()) { in ~Call()
60 Session *session = sessions_[0]; in ~Call()
97 it = std::find(sessions_.begin(), sessions_.end(), session); in AcceptSession()
98 ASSERT(it != sessions_.end()); in AcceptSession()
99 if (it != sessions_.end()) { in AcceptSession()
107 it = std::find(sessions_.begin(), sessions_.end(), session); in RejectSession()
108 ASSERT(it != sessions_.end()); in RejectSession()
110 if (it != sessions_.end()) in RejectSession()
115 ASSERT(std::find(sessions_.begin(), sessions_.end(), session) in TerminateSession()
116 != sessions_.end()); in TerminateSession()
[all …]
Dsrtpfilter.cc249 std::list<SrtpSession*> SrtpSession::sessions_; member in cricket::SrtpSession
253 sessions_.push_back(this); in SrtpSession()
257 sessions_.erase(std::find(sessions_.begin(), sessions_.end(), this)); in ~SrtpSession()
441 for (std::list<SrtpSession*>::iterator it = sessions_.begin(); in HandleEventThunk()
442 it != sessions_.end(); ++it) { in HandleEventThunk()
Dsrtpfilter.h89 static std::list<SrtpSession*> sessions_; variable
Dcall.h124 std::vector<Session *> sessions_; variable
/external/chromium/net/spdy/
Dspdy_session_pool.cc166 SpdySessionsMap::const_iterator spdy_session_pool_it = sessions_.begin(); in SpdySessionPoolInfoToValue()
167 for (SpdySessionsMap::const_iterator it = sessions_.begin(); in SpdySessionPoolInfoToValue()
168 it != sessions_.end(); ++it) { in SpdySessionPoolInfoToValue()
282 DCHECK(sessions_.find(pair) == sessions_.end()); in AddSessionList()
284 sessions_[pair] = list; in AddSessionList()
302 SpdySessionsMap::const_iterator it = sessions_.find(pair); in GetSessionList()
303 if (it != sessions_.end()) in GetSessionList()
314 sessions_.erase(pair); in RemoveSessionList()
371 while (!sessions_.empty()) { in CloseAllSessions()
372 SpdySessionList* list = sessions_.begin()->second; in CloseAllSessions()
[all …]
Dspdy_session_pool.h163 SpdySessionsMap sessions_; variable
/external/chromium/third_party/libjingle/source/talk/base/
Dnetwork.cc376 assert(std::find(sessions_.begin(), sessions_.end(), session) == in StartSession()
377 sessions_.end()); in StartSession()
378 sessions_.push_back(session); in StartSession()
383 std::find(sessions_.begin(), sessions_.end(), session); in StopSession()
384 if (iter != sessions_.end()) in StopSession()
385 sessions_.erase(iter); in StopSession()
392 for (uint32 i = 0; i < sessions_.size(); ++i) { in EstimateQuality()
393 if (sessions_[i]->HasQuality()) in EstimateQuality()
394 AddDataPoint(now, sessions_[i]->GetCurrentQuality()); in EstimateQuality()
Dnetwork.h130 SessionList sessions_; variable
/external/chromium/third_party/libjingle/source/talk/session/tunnel/
Dtunnelsessionclient.cc109 for (std::vector<TunnelSession*>::iterator it = sessions_.begin(); in ~TunnelSessionClientBase()
110 it != sessions_.end(); in ~TunnelSessionClientBase()
123 sessions_.push_back( in OnSessionCreate()
132 for (std::vector<TunnelSession*>::iterator it = sessions_.begin(); in OnSessionDestroy()
133 it != sessions_.end(); in OnSessionDestroy()
137 sessions_.erase(it); in OnSessionDestroy()
158 for (std::vector<TunnelSession*>::iterator it = sessions_.begin(); in AcceptTunnel()
159 it != sessions_.end(); in AcceptTunnel()
188 sessions_.push_back(tunnel); in OnMessage()
Dtunnelsessionclient.h102 std::vector<TunnelSession*> sessions_; variable