Home
last modified time | relevance | path

Searched refs:PortAllocatorSession (Results 1 – 9 of 9) sorted by relevance

/external/chromium/third_party/libjingle/source/talk/p2p/base/
Dportallocator.h53 class PortAllocatorSession : public sigslot::has_slots<> {
55 explicit PortAllocatorSession(uint32 flags) : flags_(flags) {} in PortAllocatorSession() function
58 virtual ~PortAllocatorSession() {} in ~PortAllocatorSession()
71 sigslot::signal2<PortAllocatorSession*, Port*> SignalPortReady;
72 sigslot::signal2<PortAllocatorSession*,
92 virtual PortAllocatorSession *CreateSession(const std::string &name,
Drawtransportchannel.h51 class PortAllocatorSession; variable
96 PortAllocatorSession* allocator_session_;
104 void OnPortReady(PortAllocatorSession* session, Port* port);
107 void OnCandidatesReady(PortAllocatorSession *session,
Dp2ptransportchannel.h122 void OnPortReady(PortAllocatorSession *session, Port* port);
123 void OnCandidatesReady(PortAllocatorSession *session,
134 PortAllocatorSession* allocator_session() { in allocator_session()
137 void AddAllocatorSession(PortAllocatorSession* session);
146 std::vector<PortAllocatorSession*> allocator_sessions_;
Drawtransportchannel.cc157 PortAllocatorSession* session, Port* port) { in OnPortReady()
175 PortAllocatorSession *session, const std::vector<Candidate>& candidates) { in OnCandidatesReady()
Dp2ptransportchannel.cc188 void P2PTransportChannel::AddAllocatorSession(PortAllocatorSession* session) { in AddAllocatorSession()
253 void P2PTransportChannel::OnPortReady(PortAllocatorSession *session, in OnPortReady()
291 PortAllocatorSession *session, const std::vector<Candidate>& candidates) { in OnCandidatesReady()
/external/chromium/third_party/libjingle/source/talk/p2p/client/
Dbasicportallocator.h75 virtual PortAllocatorSession* CreateSession(const std::string& name,
103 class BasicPortAllocatorSession : public PortAllocatorSession,
Dhttpportallocator.h57 virtual PortAllocatorSession* CreateSession(const std::string& name,
Dhttpportallocator.cc112 PortAllocatorSession *HttpPortAllocator::CreateSession( in CreateSession()
Dbasicportallocator.cc208 PortAllocatorSession *BasicPortAllocator::CreateSession( in CreateSession()
223 : PortAllocatorSession(allocator->flags()), allocator_(allocator), in BasicPortAllocatorSession()