HomeSort by relevance Sort by last modified time
    Searched defs:getaddrinfo (Results 1 - 25 of 27) sorted by null

1 2

  /external/libxml2/os400/
wrappers.h 60 #define getaddrinfo _lx_getaddrinfo macro
  /external/curl/lib/
memdebug.h 127 #if defined(getaddrinfo) && defined(__osf__)
128 /* OSF/1 and Tru64 have getaddrinfo as a define already, so we cannot define
130 define getaddrinfo to become! */
134 #undef getaddrinfo macro
135 #define getaddrinfo(host,serv,hint,res) \ macro
setup-os400.h 48 #define getaddrinfo Curl_getaddrinfo_a macro
  /external/python/cpython3/Lib/test/
mock_socket.py 147 def getaddrinfo(*args, **kw): function
148 return socket_module.getaddrinfo(*args, **kw)
  /external/syslinux/core/lwip/src/include/lwip/
netdb.h 114 #define getaddrinfo(nodname, servname, hints, res) \ macro
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
wspiapi.h 34 #define getaddrinfo WspiapiGetAddrInfo macro
50 #define WSPIAPI_FUNCTION_ARRAY { { "getaddrinfo",(FARPROC) WspiapiLegacyGetAddrInfo }, \
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Modules/
addrinfo.h 33 * Error return codes from getaddrinfo()
54 #undef getaddrinfo macro
55 #define getaddrinfo fake_getaddrinfo macro
74 * Flag values for getaddrinfo()
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
addrinfo.h 33 * Error return codes from getaddrinfo()
54 #undef getaddrinfo macro
55 #define getaddrinfo fake_getaddrinfo macro
74 * Flag values for getaddrinfo()
socketmodule.c 19 - socket.gaierror: exception raised for getaddrinfo/getnameinfo errors,
37 - socket.getaddrinfo(host, port [, family, socktype, proto, flags])
185 /* On systems on which getaddrinfo() is believed to not be thread-safe,
186 (this includes the getaddrinfo emulation) protect access with a lock. */
332 /* On OS X, getaddrinfo returns no error indication of lookup
356 #define getaddrinfo fake_getaddrinfo macro
359 #include "getaddrinfo.c"
592 v = Py_BuildValue("(is)", error, "getaddrinfo failed");
824 thread to be in gethostbyname or getaddrinfo */
853 error = getaddrinfo(NULL, "0", &hints, &res);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Modules/
addrinfo.h 42 * Error return codes from getaddrinfo()
63 #undef getaddrinfo macro
64 #define getaddrinfo fake_getaddrinfo macro
83 * Flag values for getaddrinfo()
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
addrinfo.h 33 * Error return codes from getaddrinfo()
54 #undef getaddrinfo macro
55 #define getaddrinfo fake_getaddrinfo macro
74 * Flag values for getaddrinfo()
getaddrinfo.c 236 getaddrinfo(const char*hostname, const char*servname, function
451 * XXX getaddrinfo() is a name->address
socketmodule.c 19 - socket.gaierror: exception raised for getaddrinfo/getnameinfo errors,
37 - socket.getaddrinfo(host, port [, family, socktype, proto, flags])
180 /* On systems on which getaddrinfo() is believed to not be thread-safe,
181 (this includes the getaddrinfo emulation) protect access with a lock. */
327 /* On OS X, getaddrinfo returns no error indication of lookup
351 #define getaddrinfo fake_getaddrinfo macro
354 #include "getaddrinfo.c"
580 v = Py_BuildValue("(is)", error, "getaddrinfo failed");
766 thread to be in gethostbyname or getaddrinfo */
795 error = getaddrinfo(NULL, "0", &hints, &res);
    [all...]
  /external/python/cpython2/Modules/
addrinfo.h 33 * Error return codes from getaddrinfo()
54 #undef getaddrinfo macro
55 #define getaddrinfo fake_getaddrinfo macro
74 * Flag values for getaddrinfo()
getaddrinfo.c 236 getaddrinfo(const char*hostname, const char*servname, function
451 * XXX getaddrinfo() is a name->address
socketmodule.c 19 - socket.gaierror: exception raised for getaddrinfo/getnameinfo errors,
37 - socket.getaddrinfo(host, port [, family, socktype, proto, flags])
86 /* for getaddrinfo thread safety test on old versions of OS X */
192 /* On systems on which getaddrinfo() is believed to not be thread-safe,
193 (this includes the getaddrinfo emulation) protect access with a lock.
195 getaddrinfo is thread-safe on Mac OS X 10.5 and later. Originally it was
199 includes the requirement that getaddrinfo be thread-safe. See issue #25924.
206 http://cvsweb.netbsd.org/bsdweb.cgi/src/lib/libc/net/getaddrinfo.c.diff?r1=1.82&r2=1.83
356 /* On OS X, getaddrinfo returns no error indication of lookup
380 #define getaddrinfo fake_getaddrinf macro
    [all...]
  /external/python/cpython3/Lib/
socket.py 704 for res in getaddrinfo(host, port, 0, SOCK_STREAM):
724 raise error("getaddrinfo returns an empty list")
726 def getaddrinfo(host, port, family=0, type=0, proto=0, flags=0): function
743 for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
  /external/python/cpython3/Modules/
addrinfo.h 33 * Error return codes from getaddrinfo()
54 #undef getaddrinfo macro
55 #define getaddrinfo fake_getaddrinfo macro
74 * Flag values for getaddrinfo()
getaddrinfo.c 236 getaddrinfo(const char*hostname, const char*servname, function
451 * XXX getaddrinfo() is a name->address
  /external/python/cpython3/Lib/asyncio/
base_events.py 102 # Try to skip getaddrinfo if "host" is already an IP. Users might have
113 # getaddrinfo() can raise when socket.type is a bit mask.
116 # a call to getaddrinfo() letting it process this request.
130 # If port's a service name like "http", don't skip getaddrinfo.
172 return loop.getaddrinfo(host, port, family=family, type=type,
656 addrinfo = socket.getaddrinfo(host, port, family, type, proto, flags)
667 def getaddrinfo(self, host, port, *, member in class:BaseEventLoop
673 return self.run_in_executor(None, socket.getaddrinfo,
734 raise OSError('getaddrinfo() returned empty list')
738 raise OSError('getaddrinfo() returned empty list'
    [all...]
events.py 296 def getaddrinfo(self, host, port, *, family=0, type=0, proto=0, flags=0): member in class:AbstractEventLoop
325 flags is a bitmask for getaddrinfo().
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
getaddrinfo.c 1 /* $NetBSD: getaddrinfo.c,v 1.91.6.1 2009/01/26 00:27:34 snj Exp $ */
2 /* $KAME: getaddrinfo.c,v 1.29 2000/08/31 17:26:57 itojun Exp $ */
58 __RCSID("$NetBSD: getaddrinfo.c,v 1.91.6.1 2009/01/26 00:27:34 snj Exp $");
107 __weak_alias(getaddrinfo,_getaddrinfo)
354 getaddrinfo(const char *hostname, const char *servname, function
590 switch (nsdispatch(&result, dtab, NSDB_HOSTS, "getaddrinfo",
    [all...]
  /external/python/cpython3/Lib/test/test_asyncio/
test_base_events.py 48 m_socket.getaddrinfo._is_coroutine = False
998 def getaddrinfo(*args, **kw): function in function:BaseEventLoopWithSelectorTests.test_create_connection_multiple_errors
1030 def getaddrinfo(*args, **kw): function in function:BaseEventLoopWithSelectorTests.test_create_connection_timeout
1091 def getaddrinfo(*args, **kw): function in function:BaseEventLoopWithSelectorTests.test_create_connection_no_getaddrinfo
1104 def getaddrinfo(*args, **kw): function in function:BaseEventLoopWithSelectorTests.test_create_connection_connect_err
1121 def getaddrinfo(*args, **kw): function in function:BaseEventLoopWithSelectorTests.test_create_connection_multiple
1149 def getaddrinfo(*args, **kw): function in function:BaseEventLoopWithSelectorTests.test_create_connection_multiple_errors_local_addr
1251 def getaddrinfo(host, *args, **kw): function in function:BaseEventLoopWithSelectorTests.test_create_connection_no_local_addr
1274 def getaddrinfo(host, port, *args, **kw): function in function:BaseEventLoopWithSelectorTests.test_create_connection_bluetooth
1370 def getaddrinfo(*args, **kw): function in function:BaseEventLoopWithSelectorTests.test_create_server_empty_host
1641 def getaddrinfo(*args, **kw): function in function:BaseEventLoopWithSelectorTests.test_create_datagram_endpoint_ip_addr
    [all...]
test_events.py 600 self.loop.getaddrinfo(
843 def getaddrinfo(host, port, *args, **kw): function in function:EventLoopTestsMixin.create_server_multiple_hosts
850 return asyncio.Task(getaddrinfo(*args, **kwds), loop=self.loop)
860 self.loop.getaddrinfo = getaddrinfo_task
    [all...]
  /bionic/libc/dns/net/
getaddrinfo.c 1 /* $NetBSD: getaddrinfo.c,v 1.82 2006/03/25 12:09:40 rpaulo Exp $ */
2 /* $KAME: getaddrinfo.c,v 1.29 2000/08/31 17:26:57 itojun Exp $ */
61 * gethostbyname2 from getaddrinfo will end up in wrong search order, as
433 if (fprintf(proxy, "getaddrinfo %s %s %d %d %d %d %u",
564 getaddrinfo(const char *hostname, const char *servname, function
827 switch (nsdispatch(&result, dtab, NSDB_HOSTS, "getaddrinfo",
    [all...]

Completed in 1523 milliseconds

1 2