HomeSort by relevance Sort by last modified time
    Searched refs:PortAllocatorSession (Results 1 - 25 of 34) sorted by null

1 2

  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
portallocatorsessionproxy.h 48 explicit PortAllocatorSessionMuxer(PortAllocatorSession* session);
53 void OnPortReady(PortAllocatorSession* session, PortInterface* port);
55 void OnCandidatesAllocationDone(PortAllocatorSession* session);
63 void OnSessionProxyDestroyed(PortAllocatorSession* proxy);
68 // happens when PortAllocatorSession dtor is called.
71 talk_base::scoped_ptr<PortAllocatorSession> session_;
76 class PortAllocatorSessionProxy : public PortAllocatorSession {
83 : PortAllocatorSession(content_name, component, "", "", flags),
89 PortAllocatorSession* impl() { return impl_; }
90 void set_impl(PortAllocatorSession* session)
    [all...]
portallocator.h 68 class PortAllocatorSession : public sigslot::has_slots<> {
72 PortAllocatorSession(const std::string& content_name,
79 virtual ~PortAllocatorSession() {}
91 sigslot::signal2<PortAllocatorSession*, PortInterface*> SignalPortReady;
92 sigslot::signal2<PortAllocatorSession*,
94 sigslot::signal1<PortAllocatorSession*> SignalCandidatesAllocationDone;
98 sigslot::signal1<PortAllocatorSession*> SignalDestroyed;
126 PortAllocatorSession* CreateSession(
171 virtual PortAllocatorSession* CreateSessionInternal(
portallocator.cc 34 PortAllocatorSession::PortAllocatorSession(const std::string& content_name,
57 PortAllocatorSession* PortAllocator::CreateSession(
73 PortAllocatorSession* session_impl = CreateSessionInternal(
79 // Add PortAllocatorSession to the map.
rawtransportchannel.h 48 class PortAllocatorSession;
108 PortAllocatorSession* allocator_session_;
116 void OnPortReady(PortAllocatorSession* session, PortInterface* port);
119 void OnCandidatesReady(PortAllocatorSession *session,
p2ptransportchannel.h 109 PortAllocatorSession* allocator_session() {
136 void AddAllocatorSession(PortAllocatorSession* session);
139 void OnPortReady(PortAllocatorSession *session, PortInterface* port);
140 void OnCandidatesReady(PortAllocatorSession *session,
142 void OnCandidatesAllocationDone(PortAllocatorSession* session);
169 std::vector<PortAllocatorSession*> allocator_sessions_;
portallocatorsessionproxy_unittest.cc 39 using cricket::PortAllocatorSession;
63 void OnCandidatesReady(PortAllocatorSession* session,
68 void OnCandidatesAllocationDone(PortAllocatorSession* session) {
72 void OnPortReady(PortAllocatorSession* session,
portallocatorsessionproxy.cc 44 PortAllocatorSession* session)
82 PortAllocatorSession* session) {
86 void PortAllocatorSessionMuxer::OnPortReady(PortAllocatorSession* session,
102 PortAllocatorSession* proxy) {
111 // Destroy PortAllocatorSession and its associated muxer object if all
170 PortAllocatorSession* session) {
183 // Since all proxies share a common PortAllocatorSession, this check will
206 void PortAllocatorSessionProxy::OnPortReady(PortAllocatorSession* session,
217 PortAllocatorSession* session,
221 // Since all proxy sessions share a common PortAllocatorSession,
    [all...]
rawtransportchannel.cc 163 PortAllocatorSession* session, PortInterface* port) {
176 PortAllocatorSession *session, const std::vector<Candidate>& candidates) {
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
portallocator.h 53 class PortAllocatorSession : public sigslot::has_slots<> {
55 explicit PortAllocatorSession(uint32 flags) : flags_(flags) {}
58 virtual ~PortAllocatorSession() {}
71 sigslot::signal2<PortAllocatorSession*, Port*> SignalPortReady;
72 sigslot::signal2<PortAllocatorSession*,
92 virtual PortAllocatorSession *CreateSession(const std::string &name,
rawtransportchannel.h 51 class PortAllocatorSession;
96 PortAllocatorSession* allocator_session_;
104 void OnPortReady(PortAllocatorSession* session, Port* port);
107 void OnCandidatesReady(PortAllocatorSession *session,
p2ptransportchannel.h 122 void OnPortReady(PortAllocatorSession *session, Port* port);
123 void OnCandidatesReady(PortAllocatorSession *session,
134 PortAllocatorSession* allocator_session() {
137 void AddAllocatorSession(PortAllocatorSession* session);
146 std::vector<PortAllocatorSession*> allocator_sessions_;
rawtransportchannel.cc 157 PortAllocatorSession* session, Port* port) {
175 PortAllocatorSession *session, const std::vector<Candidate>& candidates) {
p2ptransportchannel.cc 188 void P2PTransportChannel::AddAllocatorSession(PortAllocatorSession* session) {
253 void P2PTransportChannel::OnPortReady(PortAllocatorSession *session,
291 PortAllocatorSession *session, const std::vector<Candidate>& candidates) {
    [all...]
  /external/chromium_org/remoting/client/plugin/
pepper_port_allocator.h 31 virtual cricket::PortAllocatorSession* CreateSessionInternal(
  /external/chromium_org/third_party/libjingle/source/talk/p2p/client/
fakeportallocator.h 21 class FakePortAllocatorSession : public PortAllocatorSession {
29 : PortAllocatorSession(content_name, component, ice_ufrag, ice_pwd,
90 virtual cricket::PortAllocatorSession* CreateSessionInternal(
portallocator_unittest.cc 135 cricket::PortAllocatorSession* CreateSession(
140 cricket::PortAllocatorSession* CreateSession(
145 cricket::PortAllocatorSession* CreateSession(
148 cricket::PortAllocatorSession* session =
174 void OnCandidatesAllocationDone(cricket::PortAllocatorSession* session) {
206 void OnPortReady(cricket::PortAllocatorSession* ses,
211 void OnCandidatesReady(cricket::PortAllocatorSession* ses,
243 talk_base::scoped_ptr<cricket::PortAllocatorSession> session_;
552 talk_base::scoped_ptr<cricket::PortAllocatorSession> session1(
554 talk_base::scoped_ptr<cricket::PortAllocatorSession> session2
    [all...]
httpportallocator.h 64 virtual PortAllocatorSession* CreateSessionInternal(
160 virtual PortAllocatorSession* CreateSessionInternal(
basicportallocator.h 81 // If socket_factory() is set to NULL each PortAllocatorSession
96 virtual PortAllocatorSession* CreateSessionInternal(
115 class BasicPortAllocatorSession : public PortAllocatorSession,
connectivitychecker.h 34 class PortAllocatorSession;
265 std::vector<PortAllocatorSession*> sessions_;
  /external/chromium_org/remoting/jingle_glue/
chromium_port_allocator.h 34 virtual cricket::PortAllocatorSession* CreateSessionInternal(
chromium_port_allocator.cc 177 cricket::PortAllocatorSession* ChromiumPortAllocator::CreateSessionInternal(
  /external/chromium/third_party/libjingle/source/talk/p2p/client/
basicportallocator.h 75 virtual PortAllocatorSession* CreateSession(const std::string& name,
103 class BasicPortAllocatorSession : public PortAllocatorSession,
httpportallocator.h 57 virtual PortAllocatorSession* CreateSession(const std::string& name,
httpportallocator.cc 112 PortAllocatorSession *HttpPortAllocator::CreateSession(
  /external/chromium_org/content/renderer/p2p/
port_allocator.h 64 virtual cricket::PortAllocatorSession* CreateSessionInternal(

Completed in 443 milliseconds

1 2