/external/chromium_org/third_party/libjingle/source/talk/p2p/base/ |
packetsocketfactory.h | 35 class AsyncPacketSocket; 49 virtual AsyncPacketSocket* CreateUdpSocket( 51 virtual AsyncPacketSocket* CreateServerTcpSocket( 57 virtual AsyncPacketSocket* CreateClientTcpSocket(
|
tcpport.h | 34 #include "webrtc/base/asyncpacketsocket.h" 90 void OnNewConnection(rtc::AsyncPacketSocket* socket, 91 rtc::AsyncPacketSocket* new_socket); 96 rtc::AsyncPacketSocket* socket; 99 rtc::AsyncPacketSocket* GetIncoming( 103 void OnReadPacket(rtc::AsyncPacketSocket* socket, 108 void OnReadyToSend(rtc::AsyncPacketSocket* socket); 110 void OnAddressReady(rtc::AsyncPacketSocket* socket, 116 rtc::AsyncPacketSocket* socket_; 127 rtc::AsyncPacketSocket* socket = 0) [all...] |
basicpacketsocketfactory.h | 46 virtual AsyncPacketSocket* CreateUdpSocket( 48 virtual AsyncPacketSocket* CreateServerTcpSocket( 50 virtual AsyncPacketSocket* CreateClientTcpSocket(
|
turnserver.h | 37 #include "webrtc/base/asyncpacketsocket.h" 101 void AddInternalSocket(rtc::AsyncPacketSocket* socket, 119 rtc::AsyncPacketSocket* socket); 121 rtc::AsyncPacketSocket* socket() { return socket_; } 130 rtc::AsyncPacketSocket* socket_; 137 void OnInternalPacket(rtc::AsyncPacketSocket* socket, const char* data, 145 void OnInternalSocketClose(rtc::AsyncPacketSocket* socket, int err); 179 void DestroyInternalSocket(rtc::AsyncPacketSocket* socket); 181 typedef std::map<rtc::AsyncPacketSocket*,
|
tcpport.cc | 110 if (rtc::AsyncPacketSocket* socket = 128 if (socket_->GetState() == rtc::AsyncPacketSocket::STATE_BOUND || 129 socket_->GetState() == rtc::AsyncPacketSocket::STATE_CLOSED) 149 rtc::AsyncPacketSocket * socket = NULL; 190 void TCPPort::OnNewConnection(rtc::AsyncPacketSocket* socket, 191 rtc::AsyncPacketSocket* new_socket) { 205 rtc::AsyncPacketSocket* TCPPort::GetIncoming( 207 rtc::AsyncPacketSocket* socket = NULL; 220 void TCPPort::OnReadPacket(rtc::AsyncPacketSocket* socket, 227 void TCPPort::OnReadyToSend(rtc::AsyncPacketSocket* socket) [all...] |
relayserver.h | 64 void AddInternalSocket(rtc::AsyncPacketSocket* socket); 65 void RemoveInternalSocket(rtc::AsyncPacketSocket* socket); 70 void AddExternalSocket(rtc::AsyncPacketSocket* socket); 71 void RemoveExternalSocket(rtc::AsyncPacketSocket* socket); 88 typedef std::vector<rtc::AsyncPacketSocket*> SocketList; 105 void OnInternalPacket(rtc::AsyncPacketSocket* socket, 109 void OnExternalPacket(rtc::AsyncPacketSocket* socket, 119 rtc::AsyncPacketSocket* socket, 123 rtc::AsyncPacketSocket* socket); 154 rtc::AsyncPacketSocket* socket) [all...] |
turnport.h | 38 #include "webrtc/base/asyncpacketsocket.h" 56 rtc::AsyncPacketSocket* socket, 101 rtc::AsyncPacketSocket* socket, const char* data, size_t size, 107 virtual void OnReadPacket(rtc::AsyncPacketSocket* socket, 112 virtual void OnReadyToSend(rtc::AsyncPacketSocket* socket); 114 void OnSocketConnect(rtc::AsyncPacketSocket* socket); 115 void OnSocketClose(rtc::AsyncPacketSocket* socket, int error); 125 rtc::AsyncPacketSocket* socket() const { 144 rtc::AsyncPacketSocket* socket, 224 rtc::AsyncPacketSocket* socket_ [all...] |
stunport.h | 35 #include "webrtc/base/asyncpacketsocket.h" 51 rtc::AsyncPacketSocket* socket, 102 rtc::AsyncPacketSocket* socket, const char* data, size_t size, 124 rtc::Network* network, rtc::AsyncPacketSocket* socket, 134 void OnLocalAddressReady(rtc::AsyncPacketSocket* socket, 136 void OnReadPacket(rtc::AsyncPacketSocket* socket, 141 void OnReadyToSend(rtc::AsyncPacketSocket* socket); 201 rtc::AsyncPacketSocket* socket_;
|
basicpacketsocketfactory.cc | 63 AsyncPacketSocket* BasicPacketSocketFactory::CreateUdpSocket( 81 AsyncPacketSocket* BasicPacketSocketFactory::CreateServerTcpSocket( 120 AsyncPacketSocket* BasicPacketSocketFactory::CreateClientTcpSocket( 177 AsyncPacketSocket* tcp_socket;
|
stunserver.h | 49 rtc::AsyncPacketSocket* socket, const char* buf, size_t size,
|
testrelayserver.h | 102 void OnInternalClose(rtc::AsyncPacketSocket* socket, int error) { 105 void OnExternalClose(rtc::AsyncPacketSocket* socket, int error) {
|
asyncstuntcpsocket_unittest.cc | 111 void OnReadPacket(rtc::AsyncPacketSocket* socket, const char* data, 117 void OnNewConnection(rtc::AsyncPacketSocket* server, 118 rtc::AsyncPacketSocket* new_socket) { 146 rtc::scoped_ptr<rtc::AsyncPacketSocket> listen_socket_;
|
/external/chromium_org/third_party/webrtc/base/ |
asyncpacketsocket.h | 68 class AsyncPacketSocket : public sigslot::has_slots<> { 78 AsyncPacketSocket() { } 79 virtual ~AsyncPacketSocket() { } 110 sigslot::signal5<AsyncPacketSocket*, const char*, size_t, 115 sigslot::signal1<AsyncPacketSocket*> SignalReadyToSend; 121 sigslot::signal2<AsyncPacketSocket*, const SocketAddress&> SignalAddressReady; 125 sigslot::signal1<AsyncPacketSocket*> SignalConnect; 129 sigslot::signal2<AsyncPacketSocket*, int> SignalClose; 132 sigslot::signal2<AsyncPacketSocket*, AsyncPacketSocket*> SignalNewConnection [all...] |
testclient.h | 37 explicit TestClient(AsyncPacketSocket* socket); 44 bool CheckConnState(AsyncPacketSocket::State state); 48 return CheckConnState(AsyncPacketSocket::STATE_CONNECTED); 76 // Workaround for the fact that AsyncPacketSocket::GetConnState doesn't exist. 79 void OnPacket(AsyncPacketSocket* socket, const char* buf, size_t len, 82 void OnReadyToSend(AsyncPacketSocket* socket); 85 AsyncPacketSocket* socket_;
|
asynctcpsocket_unittest.cc | 35 void OnReadyToSend(rtc::AsyncPacketSocket* socket) {
|
asyncudpsocket_unittest.cc | 35 void OnReadyToSend(rtc::AsyncPacketSocket* socket) {
|
testechoserver.h | 52 void OnPacket(AsyncPacketSocket* socket, const char* buf, size_t size, 58 void OnClose(AsyncPacketSocket* socket, int err) {
|
asyncudpsocket.h | 14 #include "webrtc/base/asyncpacketsocket.h" 22 class AsyncUDPSocket : public AsyncPacketSocket {
|
testclient.cc | 21 TestClient::TestClient(AsyncPacketSocket* socket) 35 bool TestClient::CheckConnState(AsyncPacketSocket::State state) { 121 void TestClient::OnPacket(AsyncPacketSocket* socket, const char* buf, 128 void TestClient::OnReadyToSend(AsyncPacketSocket* socket) {
|
natserver.h | 64 void OnInternalPacket(AsyncPacketSocket* socket, const char* buf, 67 void OnExternalPacket(AsyncPacketSocket* socket, const char* buf,
|
/external/chromium_org/remoting/protocol/ |
chromium_socket_factory.h | 19 virtual rtc::AsyncPacketSocket* CreateUdpSocket( 22 virtual rtc::AsyncPacketSocket* CreateServerTcpSocket( 26 virtual rtc::AsyncPacketSocket* CreateClientTcpSocket(
|
chromium_socket_factory_unittest.cc | 11 #include "third_party/webrtc/base/asyncpacketsocket.h" 26 EXPECT_EQ(socket_->GetState(), rtc::AsyncPacketSocket::STATE_BOUND); 31 void OnPacket(rtc::AsyncPacketSocket* socket, 41 void VerifyCanSendAndReceive(rtc::AsyncPacketSocket* sender) { 64 scoped_ptr<rtc::AsyncPacketSocket> socket_; 71 scoped_ptr<rtc::AsyncPacketSocket> sending_socket( 76 rtc::AsyncPacketSocket::STATE_BOUND); 92 EXPECT_EQ(socket_->GetState(), rtc::AsyncPacketSocket::STATE_BOUND); 98 scoped_ptr<rtc::AsyncPacketSocket> sending_socket(
|
/external/chromium_org/content/renderer/p2p/ |
ipc_socket_factory.h | 29 virtual rtc::AsyncPacketSocket* CreateUdpSocket( 32 virtual rtc::AsyncPacketSocket* CreateServerTcpSocket( 37 virtual rtc::AsyncPacketSocket* CreateClientTcpSocket(
|
/external/chromium_org/remoting/client/plugin/ |
pepper_packet_socket_factory.h | 19 virtual rtc::AsyncPacketSocket* CreateUdpSocket( 22 virtual rtc::AsyncPacketSocket* CreateServerTcpSocket( 27 virtual rtc::AsyncPacketSocket* CreateClientTcpSocket(
|
/external/chromium_org/remoting/test/ |
fake_socket_factory.h | 53 virtual rtc::AsyncPacketSocket* CreateUdpSocket( 56 virtual rtc::AsyncPacketSocket* CreateServerTcpSocket( 60 virtual rtc::AsyncPacketSocket* CreateClientTcpSocket(
|