HomeSort by relevance Sort by last modified time
    Searched refs:ai_socktype (Results 1 - 25 of 153) sorted by null

1 2 3 4 5 6 7

  /libcore/luni/src/main/java/android/system/
StructAddrinfo.java 38 public int ai_socktype; field in class:StructAddrinfo
  /system/core/libcutils/
socket_network_client_windows.c 41 hints.ai_socktype = type;
54 SOCKET sock = socket(address->ai_family, address->ai_socktype,
  /external/c-ares/
ares_ipv6.h 40 int ai_socktype; member in struct:addrinfo
  /external/parameter-framework/asio-1.10.6/include/asio/ip/
basic_resolver_query.hpp 68 hints_.ai_socktype = endpoint.protocol().type();
105 hints_.ai_socktype = protocol.type();
153 hints_.ai_socktype = endpoint.protocol().type();
204 hints_.ai_socktype = protocol.type();
  /external/toybox/lib/
net.c 24 info.ai_socktype = socktype;
35 fd = (ai->ai_next ? socket : xsocket)(ai->ai_family, ai->ai_socktype,
  /external/boringssl/src/crypto/bio/
socket_helper.c 50 hint.ai_socktype = SOCK_STREAM;
69 *out_sock = socket(cur->ai_family, cur->ai_socktype, cur->ai_protocol);
  /external/netperf/src/missing/
getaddrinfo.c 187 N_("servname not supported for ai_socktype"),
190 N_("ai_socktype not supported"),
365 if (hints->ai_socktype != SOCK_DGRAM
366 && hints->ai_socktype != SOCK_STREAM
367 && hints->ai_socktype != 0) {
384 if (hints->ai_socktype == SOCK_DGRAM)
386 else if (hints->ai_socktype == SOCK_STREAM)
388 else if (hints->ai_socktype == 0)
467 new_res->ai_socktype = hints->ai_socktype;
    [all...]
getaddrinfo.h 213 int ai_socktype; member in struct:addrinfo
  /external/curl/lib/
curl_addrinfo.h 54 int ai_socktype; member in struct:Curl_addrinfo
curl_addrinfo.c 159 ca->ai_socktype = ai->ai_socktype;
240 * int ai_socktype;
322 ai->ai_socktype = SOCK_STREAM;
501 ai->ai_socktype = SOCK_STREAM; /* assume reliable transport for HTTP */
hostip4.c 145 hints.ai_socktype = SOCK_STREAM;
hostip6.c 199 hints.ai_socktype = conn->socktype;
  /external/curl/tests/server/
resolve.c 136 hints.ai_socktype = SOCK_STREAM;
  /external/libpcap/Win32/Include/
addrinfo.h 43 #define EAI_SERVICE 9 /* servname not supported for ai_socktype */
44 #define EAI_SOCKTYPE 10 /* ai_socktype not supported */
72 int ai_socktype; /* SOCK_xxx */ member in struct:addrinfo
ip6_misc.h 153 int ai_socktype; /* SOCK_xxx */ member in struct:addrinfo
  /external/tcpdump/missing/
addrinfo.h 43 #define EAI_SERVICE 9 /* servname not supported for ai_socktype */
44 #define EAI_SOCKTYPE 10 /* ai_socktype not supported */
72 int ai_socktype; /* SOCK_xxx */ member in struct:addrinfo
  /system/extras/multinetwork/
dnschk.cpp 40 .ai_socktype = SOCK_DGRAM,
  /external/opencv/otherlibs/highgui/
cvcap_socket.cpp 127 hints.ai_socktype = SOCK_STREAM;
218 int sockd = socket(pAddrInfo->ai_family, pAddrInfo->ai_socktype, pAddrInfo->ai_protocol);
  /cts/tests/tests/net/jni/
NativeMultinetworkJni.c 120 .ai_socktype = SOCK_DGRAM,
136 int fd = socket(res->ai_family, res->ai_socktype, res->ai_protocol);
139 res->ai_family, res->ai_socktype, res->ai_protocol, errno);
  /bionic/tests/
netdb_test.cpp 57 if (p->ai_socktype == SOCK_STREAM) {
60 } else if (p->ai_socktype == SOCK_DGRAM) {
74 ASSERT_EQ(SOCK_STREAM, ai->ai_socktype);
84 hints.ai_socktype = SOCK_STREAM;
95 ASSERT_EQ(SOCK_STREAM, tai->ai_socktype);
  /external/libpcap/Win32/Src/
getaddrinfo.c 208 "servname not supported for ai_socktype", /* EAI_SERVICE */
209 "ai_socktype not supported", /* EAI_SOCKTYPE */
327 pai->ai_socktype = ANY;
359 if (pai->ai_socktype != ANY && pai->ai_protocol != ANY) {
367 if (pai->ai_socktype == ex->e_socktype
409 if (!MATCH(pai->ai_socktype, ex->e_socktype, WILD_SOCKTYPE(ex)))
416 if (pai->ai_socktype == ANY && ex->e_socktype != ANY)
417 pai->ai_socktype = ex->e_socktype;
465 if (!MATCH(pai->ai_socktype, ex->e_socktype,
476 if (pai->ai_socktype == ANY && ex->e_socktype != ANY
    [all...]
  /external/libevent/
evutil.c 654 if (hints->ai_socktype == 0 && hints->ai_protocol == 0) {
659 tmp.ai_socktype = SOCK_STREAM; tmp.ai_protocol = IPPROTO_TCP;
663 tmp.ai_socktype = SOCK_DGRAM; tmp.ai_protocol = IPPROTO_UDP;
683 res->ai_socktype = hints->ai_socktype;
771 if (!hints->ai_protocol && hints->ai_socktype) {
772 if (hints->ai_socktype == SOCK_DGRAM)
774 else if (hints->ai_socktype == SOCK_STREAM)
779 if (!hints->ai_socktype && hints->ai_protocol) {
781 hints->ai_socktype = SOCK_DGRAM
    [all...]
  /development/ndk/platforms/android-3/include/
netdb.h 116 int ai_socktype; /* SOCK_xxx */ member in struct:addrinfo
148 #define EAI_SERVICE 9 /* servname not supported for ai_socktype */
149 #define EAI_SOCKTYPE 10 /* ai_socktype not supported */
  /external/ipsec-tools/src/racoon/
kmpstat.c 218 hint.ai_socktype = SOCK_STREAM;
  /prebuilts/ndk/current/platforms/android-12/arch-arm/usr/include/
netdb.h 116 int ai_socktype; /* SOCK_xxx */ member in struct:addrinfo
148 #define EAI_SERVICE 9 /* servname not supported for ai_socktype */
149 #define EAI_SOCKTYPE 10 /* ai_socktype not supported */

Completed in 1258 milliseconds

1 2 3 4 5 6 7