HomeSort by relevance Sort by last modified time
    Searched full:addrinfo (Results 1 - 25 of 218) sorted by null

1 2 3 4 5 6 7 8 9

  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/socket/
getaddrinfo.c 9 const struct addrinfo *hints,
10 struct addrinfo **res) {
freeaddrinfo.c 7 void freeaddrinfo(struct addrinfo *res) {
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
wspiapi.h 38 typedef int (WINAPI *WSPIAPI_PGETADDRINFO)(const char *nodename,const char *servname,const struct addrinfo *hints,struct addrinfo **res);
40 typedef void (WINAPI *WSPIAPI_PFREEADDRINFO)(struct addrinfo *ai);
56 struct addrinfo * WINAPI WspiapiNewAddrInfo (int iSocketType,int iProtocol,WORD wPort,DWORD dwAddress);
57 int WINAPI WspiapiQueryDNS (const char *pszNodeName,int iSocketType,int iProtocol,WORD wPort,char pszAlias[NI_MAXHOST],struct addrinfo **pptResult);
58 int WINAPI WspiapiLookupNode (const char *pszNodeName,int iSocketType,int iProtocol,WORD wPort,WINBOOL bAI_CANONNAME,struct addrinfo **pptResult);
59 int WINAPI WspiapiClone (WORD wPort,struct addrinfo *ptResult);
60 void WINAPI WspiapiLegacyFreeAddrInfo (struct addrinfo *ptHead);
61 int WINAPI WspiapiLegacyGetAddrInfo(const char *pszNodeName,const char *pszServiceName,const struct addrinfo *ptHints,struct addrinfo **pptResult)
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
host_resolver.h 23 void freeaddrinfo(struct addrinfo* res);
33 const struct addrinfo* hints,
34 struct addrinfo** res);
host_resolver.cc 25 void HintsToPPHints(const addrinfo* hints, PP_HostResolver_Hint* pp_hints) {
37 void CreateAddrInfo(const addrinfo* hints,
40 addrinfo** list_start,
41 addrinfo** list_end) {
42 addrinfo* ai = static_cast<addrinfo*>(malloc(sizeof(addrinfo)));
107 struct addrinfo* ai;
108 struct addrinfo hints;
164 struct addrinfo* current = ai
    [all...]
  /external/libpcap/Win32/Src/
getaddrinfo.c 92 #include "addrinfo.h"
185 static int explore_fqdn __P((const struct addrinfo *, const char *,
186 const char *, struct addrinfo **));
187 static int explore_null __P((const struct addrinfo *, const char *,
188 const char *, struct addrinfo **));
189 static int explore_numeric __P((const struct addrinfo *, const char *,
190 const char *, struct addrinfo **));
191 static int explore_numeric_scope __P((const struct addrinfo *, const char *,
192 const char *, struct addrinfo **));
193 static int get_name __P((const char *, const struct afd *, struct addrinfo **,
    [all...]
  /system/extras/tests/bionic/libc/common/
test_getaddrinfo.c 18 struct addrinfo hints;
19 struct addrinfo* res;
  /development/ndk/sources/android/libportable/arch-mips/
socket.c 175 * Returns a list of portable addrinfo structures that are
184 struct addrinfo *native_hints;
185 struct addrinfo **native_results, *rp;
195 * The only part of the addrinfo structure that needs to be modified
198 ASSERT(sizeof(struct addrinfo_portable) == sizeof(struct addrinfo));
199 native_hints = ((struct addrinfo *) portable_hints);
205 native_results = (struct addrinfo **) portable_results;
215 * Map socktypes in the return list of addrinfo structures from native to portable.
236 struct addrinfo *native_results, *rp;
244 * The only part of each addrinfo structure that needs to be modifie
    [all...]
  /development/ndk/sources/android/libportable/arch-mips64/
socket.c 175 * Returns a list of portable addrinfo structures that are
184 struct addrinfo *native_hints;
185 struct addrinfo **native_results, *rp;
195 * The only part of the addrinfo structure that needs to be modified
198 ASSERT(sizeof(struct addrinfo_portable) == sizeof(struct addrinfo));
199 native_hints = ((struct addrinfo *) portable_hints);
205 native_results = (struct addrinfo **) portable_results;
215 * Map socktypes in the return list of addrinfo structures from native to portable.
236 struct addrinfo *native_results, *rp;
244 * The only part of each addrinfo structure that needs to be modifie
    [all...]
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
host_resolver_test.cc 83 #define NULL_INFO ((struct addrinfo*)NULL)
88 struct addrinfo* ai = NULL;
90 struct addrinfo hints;
111 struct addrinfo* ai = NULL;
113 struct addrinfo hints;
140 struct addrinfo* ai = NULL;
145 struct addrinfo* ai = NULL;
148 struct addrinfo hints;
190 struct addrinfo* ai = NULL;
191 struct addrinfo* ai_orig = NULL
    [all...]
  /external/chromium_org/net/base/
sys_addrinfo.h 8 // struct addrinfo
address_list_unittest.cc 19 // Create an addrinfo with a canonical name.
26 struct addrinfo ai;
34 // Copy the addrinfo struct into an AddressList object and
45 // Create an 4-element addrinfo.
48 struct addrinfo ai[kNumElements];
address_list.cc 61 AddressList AddressList::CreateFromAddrinfo(const struct addrinfo* head) {
66 for (const struct addrinfo* ai = head; ai; ai = ai->ai_next) {
72 DLOG(WARNING) << "Unknown family found in addrinfo: " << ai->ai_family;
address_family.h 20 // determine the value of addrinfo.ai_flags and work around getaddrinfo
  /external/compiler-rt/test/msan/
getaddrinfo-positive.cc 14 struct addrinfo *ai;
15 struct addrinfo hint;
getaddrinfo.cc 16 struct addrinfo *ai;
  /external/libpcap/Win32/Include/
addrinfo.h 30 /* $Id: addrinfo.h,v 1.1 2002-08-01 08:33:05 risso Exp $ */
61 /* valid flags for addrinfo */
71 struct addrinfo { struct
79 struct addrinfo *ai_next; /* next structure in linked list */
82 extern void freeaddrinfo (struct addrinfo *);
86 const struct addrinfo *, struct addrinfo **);
112 /* valid flags for addrinfo */
  /bionic/libc/dns/net/
getaddrinfo.c 220 static int explore_fqdn(const struct addrinfo *, const char *,
221 const char *, struct addrinfo **, unsigned netid, unsigned mark);
222 static int explore_null(const struct addrinfo *,
223 const char *, struct addrinfo **);
224 static int explore_numeric(const struct addrinfo *, const char *,
225 const char *, struct addrinfo **, const char *);
226 static int explore_numeric_scope(const struct addrinfo *, const char *,
227 const char *, struct addrinfo **);
228 static int get_canonname(const struct addrinfo *,
229 struct addrinfo *, const char *)
    [all...]
  /external/tcpdump/missing/
addrinfo.h 30 /* $Id: addrinfo.h,v 1.4 2002-06-11 17:13:36 itojun Exp $ */
61 /* valid flags for addrinfo */
71 struct addrinfo { struct
79 struct addrinfo *ai_next; /* next structure in linked list */
82 extern void freeaddrinfo (struct addrinfo *);
  /external/chromium_org/net/tools/flip_server/
create_listener.cc 22 // used to ensure we delete the addrinfo structure
26 struct addrinfo* addrinfo_ptr_;
29 explicit AddrinfoGuard(struct addrinfo* addrinfo_ptr)
111 struct addrinfo* results = 0;
112 struct addrinfo hints;
131 // this will delete the addrinfo memory when we return from this function.
241 struct addrinfo* results = 0;
242 struct addrinfo hints;
259 // this will delete the addrinfo memory when we return from this function.
  /bionic/libc/dns/include/
resolv_netid.h 51 struct addrinfo;
57 int android_getaddrinfofornet(const char *, const char *, const struct addrinfo *, unsigned,
58 unsigned, struct addrinfo **) __used_in_netd;
  /external/chromium_org/third_party/webrtc/base/
nethelpers.cc 36 struct addrinfo* result = NULL;
37 struct addrinfo hints = {0};
45 struct addrinfo* cursor = result;
  /external/valgrind/main/include/
pub_tool_addrinfo.h 80 AddrInfo;
135 extern void VG_(describe_addr) ( Addr a, /*OUT*/AddrInfo* ai );
137 extern void VG_(clear_addrinfo) ( AddrInfo* ai);
139 /* Prints the AddrInfo ai describing a. */
140 extern void VG_(pp_addrinfo) ( Addr a, AddrInfo* ai );
147 extern void VG_(pp_addrinfo_mc) ( Addr a, AddrInfo* ai, Bool maybe_gcc );
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/
netdb.h 113 struct addrinfo { struct
121 struct addrinfo *ai_next; /* next structure in linked list */
166 /* valid flags for addrinfo (not a standard def, apps should not use it) */
244 int getaddrinfo(const char *, const char *, const struct addrinfo *, struct addrinfo **);
246 void freeaddrinfo(struct addrinfo *);
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/
netdb.h 113 struct addrinfo { struct
121 struct addrinfo *ai_next; /* next structure in linked list */
166 /* valid flags for addrinfo (not a standard def, apps should not use it) */
244 int getaddrinfo(const char *, const char *, const struct addrinfo *, struct addrinfo **);
246 void freeaddrinfo(struct addrinfo *);

Completed in 680 milliseconds

1 2 3 4 5 6 7 8 9