/external/chromium/third_party/libjingle/source/talk/base/ |
D | firewallsocketserver.cc | 46 if (!server_->Check(FP_TCP, GetLocalAddress(), addr)) { in Connect() 48 << GetLocalAddress().ToString() << " to " in Connect() 62 if (!server_->Check(FP_UDP, GetLocalAddress(), addr)) { in SendTo() 64 << GetLocalAddress().ToString() << " to " in SendTo() 81 if (server_->Check(FP_UDP, *paddr, GetLocalAddress())) in RecvFrom() 85 << GetLocalAddress().ToString() << " dropped"; in RecvFrom() 102 if (server_->Check(FP_TCP, addr, GetLocalAddress())) { in Accept() 111 << GetLocalAddress().ToString() << " denied"; in Accept()
|
D | asyncudpsocket.cc | 65 SocketAddress AsyncUDPSocket::GetLocalAddress(bool* allocated) const { in GetLocalAddress() function in talk_base::AsyncUDPSocket 68 return socket_->GetLocalAddress(); in GetLocalAddress() 118 SocketAddress local_addr = socket_->GetLocalAddress(); in OnReadEvent()
|
D | asyncsocket.h | 62 virtual SocketAddress GetLocalAddress() const { in GetLocalAddress() function 63 return socket_->GetLocalAddress(); in GetLocalAddress()
|
D | asynctcpsocket.cc | 91 SocketAddress AsyncTCPSocket::GetLocalAddress(bool* allocated) const { in GetLocalAddress() function in talk_base::AsyncTCPSocket 94 return socket_->GetLocalAddress(); in GetLocalAddress()
|
D | asyncudpsocket.h | 48 virtual SocketAddress GetLocalAddress(bool* allocated) const;
|
D | asyncpacketsocket.h | 46 virtual SocketAddress GetLocalAddress(bool* allocated) const = 0;
|
D | asynctcpsocket.h | 46 virtual SocketAddress GetLocalAddress(bool* allocated) const;
|
/external/chromium/net/udp/ |
D | udp_server_socket.cc | 43 int UDPServerSocket::GetLocalAddress(IPEndPoint* address) const { in GetLocalAddress() function in net::UDPServerSocket 44 return socket_.GetLocalAddress(address); in GetLocalAddress()
|
D | udp_client_socket.cc | 44 int UDPClientSocket::GetLocalAddress(IPEndPoint* address) const { in GetLocalAddress() function in net::UDPClientSocket 45 return socket_.GetLocalAddress(address); in GetLocalAddress()
|
D | datagram_socket.h | 27 virtual int GetLocalAddress(IPEndPoint* address) const = 0;
|
D | udp_socket_unittest.cc | 204 rv = client.GetLocalAddress(&client_address); in TEST_F() 254 rv = client.GetLocalAddress(&fetched_local_address); in TEST_F() 279 rv = server.GetLocalAddress(&local_address); in TEST_F()
|
D | udp_server_socket.h | 37 virtual int GetLocalAddress(IPEndPoint* address) const;
|
D | udp_client_socket.h | 30 virtual int GetLocalAddress(IPEndPoint* address) const;
|
/external/chromium/third_party/libjingle/source/talk/p2p/base/ |
D | tcpport.cc | 102 talk_base::SocketAddress address = socket_->GetLocalAddress(&allocated); in PrepareAddress() 194 << socket_->GetLocalAddress(NULL).ToString() in TCPConnection() 204 ASSERT(socket_->GetLocalAddress(NULL).ip() == port->ip_); in TCPConnection()
|
D | udpport.cc | 64 talk_base::SocketAddress address = socket_->GetLocalAddress(&allocated); in PrepareAddress()
|
D | relayserver.cc | 201 remote_addr, socket->GetLocalAddress(&allocated)); in OnInternalPacket() 248 remote_addr, socket->GetLocalAddress(&allocated)); in OnExternalPacket() 448 external_sockets_[index]->GetLocalAddress(&allocated); in HandleStunAllocate() 497 ext_addr, socket->GetLocalAddress(&allocated)); in HandleStunSend()
|
/external/chromium/net/socket/ |
D | server_socket.h | 26 virtual int GetLocalAddress(IPEndPoint* address) const = 0;
|
D | tcp_server_socket_libevent.h | 29 virtual int GetLocalAddress(IPEndPoint* address) const;
|
D | tcp_server_socket_win.h | 31 virtual int GetLocalAddress(IPEndPoint* address) const;
|
D | client_socket.h | 68 virtual int GetLocalAddress(IPEndPoint* address) const = 0;
|
D | transport_client_socket_pool_unittest.cc | 71 virtual int GetLocalAddress(IPEndPoint* address) const { in GetLocalAddress() function in net::__anon4fded2350111::MockClientSocket 127 virtual int GetLocalAddress(IPEndPoint* address) const { in GetLocalAddress() function in net::__anon4fded2350111::MockFailingClientSocket 195 virtual int GetLocalAddress(IPEndPoint* address) const { in GetLocalAddress() function in net::__anon4fded2350111::MockPendingClientSocket 1098 handle.socket()->GetLocalAddress(&endpoint); in TEST_F() 1142 handle.socket()->GetLocalAddress(&endpoint); in TEST_F() 1175 handle.socket()->GetLocalAddress(&endpoint); in TEST_F() 1208 handle.socket()->GetLocalAddress(&endpoint); in TEST_F()
|
D | tcp_client_socket_win.h | 49 virtual int GetLocalAddress(IPEndPoint* address) const;
|
D | socks_client_socket.h | 75 virtual int GetLocalAddress(IPEndPoint* address) const;
|
D | socks5_client_socket.h | 78 virtual int GetLocalAddress(IPEndPoint* address) const;
|
D | socks_client_socket.cc | 426 int SOCKSClientSocket::GetLocalAddress(IPEndPoint* address) const { in GetLocalAddress() function in net::SOCKSClientSocket 427 return transport_->socket()->GetLocalAddress(address); in GetLocalAddress()
|