Searched defs:inet_pton (Results 1 - 4 of 4) sorted by relevance

/device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
H A Dinet_pton.c58 static char rcsid[] = "$Id: inet_pton.c,v 1.1.1.1 2003/11/19 01:51:30 kyu3 Exp $";
79 * inet_pton(af, src, dst)
90 inet_pton( function
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
H A Dtest_socket.py471 if not hasattr(socket, 'inet_pton'):
472 return # No inet_pton() on this platform
473 from socket import inet_aton as f, inet_pton, AF_INET namespace
474 g = lambda a: inet_pton(AF_INET, a)
488 if not hasattr(socket, 'inet_pton'):
489 return # No inet_pton() on this platform
491 from socket import inet_pton, AF_INET6, has_ipv6 namespace
496 f = lambda a: inet_pton(AF_INET6, a)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
H A Dsocketmodule.c326 int inet_pton(int af, const char *src, void *dst);
4023 "inet_pton(af, ip) -> packed IP address string\n\
4039 if (!PyArg_ParseTuple(args, "is:inet_pton", &af, &ip)) {
4051 retval = inet_pton(af, ip, packed);
4057 "illegal IP address string passed to inet_pton");
4430 {"inet_pton", socket_inet_pton,
5519 /* Simplistic emulation code for inet_pton that only works for IPv4 */
5523 inet_pton(int af, const char *src, void *dst) function
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A Dsocketmodule.c321 int inet_pton(int af, const char *src, void *dst);
3941 "inet_pton(af, ip) -> packed IP address string\n\
3957 if (!PyArg_ParseTuple(args, "is:inet_pton", &af, &ip)) {
3969 retval = inet_pton(af, ip, packed);
3975 "illegal IP address string passed to inet_pton");
4328 {"inet_pton", socket_inet_pton,
5417 /* Simplistic emulation code for inet_pton that only works for IPv4 */
5421 inet_pton(int af, const char *src, void *dst) function

Completed in 53 milliseconds