Searched refs:SendTo (Results 1 - 25 of 110) sorted by last modified time

12345

/external/chromium_org/v8/tools/testrunner/server/
H A Dpresence_handler.py68 self.server.SendTo(self.client_address[0], response)
103 def SendTo(self, target, message): member in class:PresenceDaemon
/external/chromium_org/third_party/webrtc/test/channel_transport/
H A Dudp_socket2_win.cc352 int32_t UdpSocket2Windows::SendTo(const int8_t* buf, int32_t len, function in class:webrtc::test::UdpSocket2Windows
360 "UdpSocket2Windows(%d)::SendTo(), len= %d < 0",
369 "UdpSocket2Windows(%d)::SendTo(), pIoContext==0",
381 "UdpSocket2Windows(%d)::SendTo(), len= %d > buffer_size = %d",
422 "UdpSocket2Windows::SendTo() WSAerror: %d",error);
436 "UdpSocket2Windows(%d)::SendTo(), error:%d pushing ioContext",
H A Dudp_socket2_win.h59 virtual int32_t SendTo(const int8_t* buf, int32_t len,
H A Dudp_socket_posix.cc157 int32_t UdpSocketPosix::SendTo(const int8_t* buf, int32_t len, function in class:webrtc::test::UdpSocketPosix
166 "UdpSocketPosix::SendTo() error: %d", errno);
H A Dudp_socket_posix.h48 virtual int32_t SendTo(const int8_t* buf, int32_t len,
H A Dudp_socket_wrapper.h82 virtual int32_t SendTo(const int8_t* buf, int32_t len,
H A Dudp_transport_impl.cc1789 return rtcpSock->SendTo(data,length,_remoteRTCPAddr);
1795 return rtcpSock->SendTo(data,length,remoteAddr);
1800 return rtcpSock->SendTo(data,length,remoteAddr);
1805 return rtcpSock->SendTo(data,length,remoteAddr);
1822 return rtpSock->SendTo(data,length,_remoteRTPAddr);
1828 return rtpSock->SendTo(data,length,remoteAddr);
1833 return rtpSock->SendTo(data,length,remoteAddr);
1838 return rtpSock->SendTo(data,length,remoteAddr);
1850 return _ptrSendRtpSocket->SendTo(data,length,to);
1854 return _ptrRtpSocket->SendTo(dat
[all...]
H A Dudp_transport_unittest.cc39 MOCK_METHOD3(SendTo, int32_t(const int8_t*, int32_t, const SocketAddress&));
/external/chromium_org/third_party/webrtc/base/
H A Dasyncpacketsocket.h90 virtual int SendTo(const void *pv, size_t cb, const SocketAddress& addr,
H A Dasyncsocket.h68 virtual int SendTo(const void* pv, size_t cb, const SocketAddress& addr) { function in class:rtc::AsyncSocketAdapter
69 return socket_->SendTo(pv, cb, addr);
H A Dasynctcpsocket.cc127 int AsyncTCPSocketBase::SendTo(const void *pv, size_t cb, function in class:rtc::AsyncTCPSocketBase
H A Dasynctcpsocket.h37 virtual int SendTo(const void *pv, size_t cb, const SocketAddress& addr,
H A Dasyncudpsocket.cc66 int AsyncUDPSocket::SendTo(const void *pv, size_t cb, function in class:rtc::AsyncUDPSocket
69 return socket_->SendTo(pv, cb, addr);
H A Dasyncudpsocket.h40 virtual int SendTo(const void *pv, size_t cb, const SocketAddress& addr,
H A Dfirewallsocketserver.cc42 return SendTo(pv, cb, GetRemoteAddress());
44 virtual int SendTo(const void* pv, size_t cb, const SocketAddress& addr) { function in class:rtc::FirewallSocket
53 return AsyncSocketAdapter::SendTo(pv, cb, addr);
H A Dmacasyncsocket.cc172 int MacAsyncSocket::SendTo(const void* buffer, size_t length, function in class:rtc::MacAsyncSocket
H A Dmacasyncsocket.h41 virtual int SendTo(const void* buffer, size_t length,
H A Dnat_unittest.cc67 in->SendTo(buf, len, out[0]->address());
72 in->SendTo(buf, len, out[i]->address());
118 in->SendTo(buf, len, out[0]->address());
122 out[1]->SendTo(buf, len, trans_addr);
125 out[2]->SendTo(buf, len, trans_addr);
128 out[3]->SendTo(buf, len, trans_addr);
184 int sent = client->SendTo(buf, len, server->GetLocalAddress());
H A Dnatserver.cc113 iter->second->socket->SendTo(buf + length, size - length, dest_addr, options);
142 server_socket_->SendTo(real_buf.get(), size + addrlength,
H A Dnatsocketfactory.cc131 return SendTo(data, size, remote_addr_);
134 virtual int SendTo(const void* data, size_t size, const SocketAddress& addr) { function in class:rtc::NATSocket
137 return socket_->SendTo(data, size, addr);
146 int result = socket_->SendTo(buf.get(), encoded_size, server_addr_);
H A Dphysicalsocketserver.cc286 int SendTo(const void* buffer, size_t length, const SocketAddress& addr) { function in class:rtc::PhysicalSocket
H A Dsocket.h143 virtual int SendTo(const void *pv, size_t cb, const SocketAddress& addr) = 0;
H A Dsocket_unittest.cc882 EXPECT_EQ(3, client2->SendTo("foo", 3, addr1));
886 EXPECT_EQ(6, client1->SendTo("bizbaz", 6, addr2));
894 EXPECT_EQ(3, client2->SendTo("foo", 3, addr1));
899 EXPECT_EQ(6, client1->SendTo("bizbaz", 6, addr4));
936 int ret = client->SendTo(test_packet.get(), test_packet_size, test_addr);
H A Dsocketadapters.cc850 int LoggingSocketAdapter::SendTo(const void *pv, size_t cb,
852 int res = AsyncSocketAdapter::SendTo(pv, cb, addr);
H A Dsocketadapters.h223 virtual int SendTo(const void *pv, size_t cb, const SocketAddress& addr);

Completed in 1603 milliseconds

12345