HomeSort by relevance Sort by last modified time
    Searched refs:bind_address (Results 1 - 20 of 20) sorted by null

  /external/chromium/net/udp/
udp_socket_unittest.cc 130 IPEndPoint bind_address; local
131 CreateUDPAddress("0.0.0.0", kPort, &bind_address);
133 int rv = server.Listen(bind_address);
175 IPEndPoint bind_address; local
176 CreateUDPAddress("0.0.0.0", kPort1, &bind_address);
178 int rv = server1.Listen(bind_address);
182 CreateUDPAddress("0.0.0.0", kPort2, &bind_address);
184 rv = server2.Listen(bind_address);
272 IPEndPoint bind_address; local
273 CreateUDPAddress("127.0.0.1", 0, &bind_address);
288 IPEndPoint bind_address; local
301 IPEndPoint bind_address; local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
asyncudpsocket.h 45 const SocketAddress& bind_address);
49 const SocketAddress& bind_address);
asyncudpsocket.cc 37 const SocketAddress& bind_address) {
39 if (socket->Bind(bind_address) < 0) {
47 const SocketAddress& bind_address) {
49 factory->CreateAsyncSocket(bind_address.family(), SOCK_DGRAM);
52 return Create(socket, bind_address);
asynctcpsocket.h 68 const SocketAddress& bind_address,
100 const SocketAddress& bind_address,
asynctcpsocket.cc 54 const talk_base::SocketAddress& bind_address,
57 if (socket->Bind(bind_address) < 0) {
256 const SocketAddress& bind_address,
259 socket, bind_address, remote_address), false);
  /external/chromium_org/net/udp/
udp_socket_unittest.cc 133 IPEndPoint bind_address; local
134 CreateUDPAddress("127.0.0.1", kPort, &bind_address);
139 int rv = server->Listen(bind_address);
376 IPEndPoint bind_address; local
377 CreateUDPAddress("127.0.0.1", kPort1, &bind_address);
380 int rv = server1.Listen(bind_address);
384 CreateUDPAddress("127.0.0.1", kPort2, &bind_address);
387 rv = server2.Listen(bind_address);
484 IPEndPoint bind_address; local
485 CreateUDPAddress("127.0.0.1", 0, &bind_address);
500 IPEndPoint bind_address; local
513 IPEndPoint bind_address; local
542 IPEndPoint bind_address; local
564 IPEndPoint bind_address; local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
asyncstuntcpsocket.h 44 const talk_base::SocketAddress& bind_address,
asyncstuntcpsocket.cc 57 const talk_base::SocketAddress& bind_address,
60 socket, bind_address, remote_address), false);
  /external/chromium_org/media/cast/test/transport/
transport.cc 45 void ListenTo(net::IPEndPoint bind_address) {
48 bind_address_ = bind_address;
198 net::IPEndPoint bind_address, local_bind_address; local
199 CreateUDPAddress(ip_address, port, &bind_address);
207 local_udp_transport_data_->ListenTo(bind_address);
  /external/chromium/third_party/libevent/
http-internal.h 63 char *bind_address; /* address to use for binding the src */ member in struct:evhttp_connection
http.c 1013 if (evcon->bind_address != NULL)
1014 free(evcon->bind_address);
1033 if (evcon->bind_address)
1034 free(evcon->bind_address);
1035 if ((evcon->bind_address = strdup(address)) == NULL)
    [all...]
  /external/chromium_org/third_party/libevent/
http-internal.h 63 char *bind_address; /* address to use for binding the src */ member in struct:evhttp_connection
http.c 1013 if (evcon->bind_address != NULL)
1014 free(evcon->bind_address);
1033 if (evcon->bind_address)
1034 free(evcon->bind_address);
1035 if ((evcon->bind_address = strdup(address)) == NULL)
    [all...]
  /external/openssh/
readconf.h 92 char *bind_address; /* local socket address for connection to sshd */ member in struct:__anon24071
sshconnect.c 217 if (options.bind_address == NULL)
225 gaierr = getaddrinfo(options.bind_address, NULL, &hints, &res);
227 error("getaddrinfo: %s: %s", options.bind_address,
233 error("bind: %s: %s", options.bind_address, strerror(errno));
    [all...]
readconf.c 644 charptr = &options->bind_address;
    [all...]
ssh.c 199 "usage: ssh [-1246AaCfgKkMNnqsTtVvXxYy] [-b bind_address] [-c cipher_spec]\n"
200 " [-D [bind_address:]port] [-e escape_char] [-F configfile]\n"
202 " [-L [bind_address:]port:host:hostport]\n"
204 " [-R [bind_address:]port:host:hostport] [-S ctl_path]\n"
598 options.bind_address = optarg;
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/socket/
tcp_socket.cc 201 scoped_ptr<net::IPEndPoint> bind_address(new net::IPEndPoint());
202 if (!StringAndPortToIPEndPoint(address, port, bind_address.get()))
209 int result = server_socket_->Listen(*bind_address, backlog);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_socket.py 541 def _get_unused_port(self, bind_address='0.0.0.0'):
545 bind_address: Hostname or IP address to search for a port on.
550 tempsock.bind((bind_address, 0))
606 port = self._get_unused_port(bind_address=host)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_socket.py 541 def _get_unused_port(self, bind_address='0.0.0.0'):
545 bind_address: Hostname or IP address to search for a port on.
550 tempsock.bind((bind_address, 0))
606 port = self._get_unused_port(bind_address=host)
    [all...]

Completed in 1042 milliseconds