HomeSort by relevance Sort by last modified time
    Searched refs:addrinfo (Results 26 - 50 of 72) sorted by null

12 3

  /external/qemu/
qemu-sockets.c 32 static int inet_getport(struct addrinfo *e)
49 static void inet_setport(struct addrinfo *e, int port)
76 static void inet_print_addrinfo(const char *tag, struct addrinfo *res)
78 struct addrinfo *e;
94 struct addrinfo ai,*res,*e;
229 struct addrinfo ai,*res,*e;
sockets.c 642 struct addrinfo hints[1];
643 struct addrinfo* res;
678 struct addrinfo* res_ipv4 = NULL;
679 struct addrinfo* res_ipv6 = NULL;
680 struct addrinfo* r;
747 struct addrinfo ai, *res, *e;
764 struct addrinfo hints = ai;
    [all...]
  /external/chromium/net/base/
host_resolver_proc.cc 162 struct addrinfo* ai = NULL;
163 struct addrinfo hints = {0};
net_util.h 21 struct addrinfo;
75 std::string NetAddressToString(const struct addrinfo* net_address);
host_resolver_impl_unittest.cc 220 const struct addrinfo* ainfo = adrlist.head();
221 EXPECT_EQ(static_cast<addrinfo*>(NULL), ainfo->ai_next);
257 const struct addrinfo* ainfo = adrlist.head();
258 EXPECT_EQ(static_cast<addrinfo*>(NULL), ainfo->ai_next);
315 const struct addrinfo* ainfo = adrlist.head();
316 EXPECT_EQ(static_cast<addrinfo*>(NULL), ainfo->ai_next);
345 const struct addrinfo* ainfo = adrlist.head();
346 EXPECT_EQ(static_cast<addrinfo*>(NULL), ainfo->ai_next);
    [all...]
net_util_unittest.cc 371 // Returns an addrinfo for the given 32-bit address (IPv4.)
374 const struct addrinfo* GetIPv4Address(const uint8* bytes) {
375 static struct addrinfo static_ai;
378 struct addrinfo* ai = &static_ai;
395 // Returns a addrinfo for the given 128-bit address (IPv6.)
398 const struct addrinfo* GetIPv6Address(const uint8* bytes) {
399 static struct addrinfo static_ai;
402 struct addrinfo* ai = &static_ai;
    [all...]
  /external/chromium/third_party/libevent/
http-internal.h 34 struct addrinfo;
http.c 145 struct addrinfo { struct
151 struct addrinfo *ai_next;
154 fake_getaddrinfo(const char *hostname, struct addrinfo *ai)
182 fake_freeaddrinfo(struct addrinfo *ai)
200 static int bind_socket_ai(struct addrinfo *, int reuse);
    [all...]
  /external/v8/src/
platform-posix.cc 277 struct addrinfo *result = NULL;
278 struct addrinfo hints;
279 memset(&hints, 0, sizeof(addrinfo));
  /external/mtpd/
mtpd.c 272 struct addrinfo hints = {
277 struct addrinfo *records;
278 struct addrinfo *r;
  /external/chromium/net/proxy/
proxy_resolver_js_bindings.cc 155 const struct addrinfo* current_address = address_list.head();
  /external/ipsec-tools/src/racoon/
kmpstat.c 212 struct addrinfo hint, *ai;
  /external/libpcap/
nametoaddr.c 125 struct addrinfo *
128 struct addrinfo hints, *res;
  /external/netperf/
nettest_bsd.c 534 /* return a pointer to a completed addrinfo chain - prefer
538 struct addrinfo *
541 struct addrinfo hints;
542 struct addrinfo *res;
543 struct addrinfo *temp_res;
722 complete_addrinfos(struct addrinfo **remote,struct addrinfo **local, char remote_host[], int type, int protocol, int flags) {
795 get_port_number(struct addrinfo *res)
819 addrinfo to the specified value, based on the address family */
821 set_port_number(struct addrinfo *res, unsigned short port
    [all...]
netserver.c 434 struct addrinfo hints;
435 struct addrinfo *local_res;
436 struct addrinfo *local_res_temp;
nettest_sctp.c 414 struct addrinfo *remote_res;
415 struct addrinfo *local_res;
416 struct addrinfo *local_remote_res;
417 struct addrinfo *local_local_res;
    [all...]
nettest_sdp.c 240 struct addrinfo *remote_res;
241 struct addrinfo *local_res;
939 struct addrinfo *remote_res;
940 struct addrinfo *local_res;
    [all...]
  /external/chromium/net/socket/
tcp_client_socket_win.cc 322 const struct addrinfo* ai = current_ai_;
542 int TCPClientSocketWin::CreateSocket(const struct addrinfo* ai) {
642 const struct addrinfo* next = current_ai_->ai_next;
tcp_client_socket_libevent.cc 350 int TCPClientSocketLibevent::CreateSocket(const addrinfo* ai) {
403 const addrinfo* next = current_ai_->ai_next;
  /external/openssl/crypto/bio/
b_sock.c 94 * [get|free]addrinfo and getnameinfo. This is because WinSock uses
642 const struct addrinfo *,
643 struct addrinfo **);
646 void (WSAAPI *f)(struct addrinfo *);
648 struct addrinfo *res,hint;
  /external/wpa_supplicant_6/wpa_supplicant/src/wps/
wps_upnp.c 341 struct addrinfo hints;
342 struct addrinfo *result = NULL;
343 struct addrinfo *rp;
384 os_memset(&hints, 0, sizeof(struct addrinfo));
    [all...]
  /external/chromium/net/tools/hresolv/
hresolv.cc 126 std::string FormatAddrinfoDetails(const struct addrinfo& ai,
164 for (const struct addrinfo* it = address_list.head();
  /external/ipsec-tools/
setup.c 110 struct addrinfo hints = {
119 struct addrinfo *r;
  /external/dropbear/
dbutil.c 189 struct addrinfo hints, *res = NULL, *res0 = NULL;
306 struct addrinfo *res0 = NULL, *res = NULL, hints;
  /external/chromium/net/socket_stream/
socket_stream.h 208 // Copies the given addrinfo list in |addresses_|.
210 void CopyAddrInfo(struct addrinfo* head);

Completed in 9657 milliseconds

12 3