Searched refs:udp_socket_ (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dteststunserver.h44 udp_socket_(rtc::AsyncUDPSocket::Create(socket_, addr)),
45 server_(udp_socket_) {
49 rtc::AsyncUDPSocket* udp_socket_; member in class:cricket::TestStunServer
/external/chromium_org/third_party/webrtc/base/
H A Dasyncudpsocket_unittest.cc29 udp_socket_(new AsyncUDPSocket(socket_)),
31 udp_socket_->SignalReadyToSend.connect(this,
43 scoped_ptr<AsyncUDPSocket> udp_socket_; member in class:rtc::AsyncUdpSocketTest
/external/chromium_org/native_client_sdk/src/examples/api/socket/
H A Dsocket.cc56 pp::UDPSocket udp_socket_; member in class:ExampleInstance
118 if (!udp_socket_.is_null())
125 return !udp_socket_.is_null();
151 udp_socket_ = pp::UDPSocket(this);
152 if (udp_socket_.is_null()) {
201 udp_socket_.Bind(pp::NetAddress(this, ipv4_addr), callback);
215 udp_socket_.Close();
216 udp_socket_ = pp::UDPSocket();
242 result = udp_socket_.SendTo(data, size, remote_host_, callback);
267 udp_socket_
[all...]
/external/chromium_org/media/cast/net/
H A Dudp_transport.cc49 udp_socket_(new net::UDPSocket(net::DatagramSocket::DEFAULT_BIND,
70 udp_socket_->AllowAddressReuse();
71 udp_socket_->SetMulticastLoopbackMode(true);
73 if (udp_socket_->Bind(local_addr_) < 0) {
79 if (udp_socket_->Connect(remote_addr_) < 0) {
120 udp_socket_->RecvFrom(recv_buf_.get(),
174 int result = udp_socket_->SetDiffServCodePoint(next_dscp_value_);
199 result = udp_socket_->Write(
202 result = udp_socket_->SendTo(buf.get(),
H A Dudp_transport.h59 // Requests and processes packets from |udp_socket_|. This method is called
76 const scoped_ptr<net::UDPSocket> udp_socket_; member in class:media::cast::UdpTransport
/external/chromium_org/third_party/libjingle/source/talk/p2p/client/
H A Dbasicportallocator.cc160 rtc::scoped_ptr<rtc::AsyncPacketSocket> udp_socket_; member in class:cricket::AllocationSequence
744 udp_socket_(),
759 udp_socket_.reset(session_->socket_factory()->CreateUdpSocket(
762 if (udp_socket_) {
763 udp_socket_->SignalReadPacket.connect(
766 // Continuing if |udp_socket_| is NULL, as local TCP and RelayPort using TCP
902 if (IsFlagSet(PORTALLOCATOR_ENABLE_SHARED_SOCKET) && udp_socket_) {
905 udp_socket_.get(),
1070 network_, udp_socket_.get(),
1097 ASSERT(socket == udp_socket_
[all...]

Completed in 3253 milliseconds