Searched defs:family (Results 1 - 7 of 7) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A Dgetnameinfo.c110 int family, len, i; local
130 family = sa->sa_family;
132 if (gni_afdl[i].a_af == family) {
H A Dsocketmodule.c23 - socket.fromfd(fd, family, type[, proto]) --> new socket object (created
31 - socket.socket([family[, type [, proto]]]) --> new socket object
32 - socket.socketpair([family[, type [, proto]]]) --> (socket, socket)
37 - socket.getaddrinfo(host, port [, family, socktype, proto, flags])
38 --> List of (family, socktype, proto, canonname, sockaddr)
101 "socket([family[, type[, proto]]]) -> socket object\n\
103 Open a socket of the given type. The family argument specifies the\n\
104 address family; it defaults to AF_INET. The type argument specifies\n\
725 SOCKET_T fd, int family, int type, int proto)
731 s->sock_family = family;
724 init_sockobject(PySocketSockObject *s, SOCKET_T fd, int family, int type, int proto) argument
754 new_sockobject(SOCKET_T fd, int family, int type, int proto) argument
3096 int family = AF_INET, type = SOCK_STREAM, proto = 0; local
3622 int family, type = SOCK_STREAM, proto = 0; local
3678 int family, type, proto = 0; local
4063 int family, socktype, protocol, flags; local
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
H A Dsocket.py189 def __init__(self, family=AF_INET, type=SOCK_STREAM, proto=0, _sock=None):
191 _sock = _realsocket(family, type, proto)
223 family = property(lambda self: self._sock.family, doc="the socket family") variable in class:_socketobject
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A Dsocket.py185 def __init__(self, family=AF_INET, type=SOCK_STREAM, proto=0, _sock=None):
187 _sock = _realsocket(family, type, proto)
219 family = property(lambda self: self._sock.family, doc="the socket family") variable in class:_socketobject
/device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
H A Dgetnameinfo.c135 * Top-level getnameinfo() code. Look at the address family, and pick an
184 int family, i; local
202 family = sa->sa_family;
204 if (afdl[i].a_af == family) {
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
H A Dsocketmodule.c23 - socket.fromfd(fd, family, type[, proto]) --> new socket object (created
31 - socket.socket([family[, type [, proto]]]) --> new socket object
32 - socket.socketpair([family[, type [, proto]]]) --> (socket, socket)
37 - socket.getaddrinfo(host, port [, family, socktype, proto, flags])
38 --> List of (family, socktype, proto, canonname, sockaddr)
106 "socket([family[, type[, proto]]]) -> socket object\n\
108 Open a socket of the given type. The family argument specifies the\n\
109 address family; it defaults to AF_INET. The type argument specifies\n\
783 SOCKET_T fd, int family, int type, int proto)
789 s->sock_family = family;
782 init_sockobject(PySocketSockObject *s, SOCKET_T fd, int family, int type, int proto) argument
812 new_sockobject(SOCKET_T fd, int family, int type, int proto) argument
3183 int family = AF_INET, type = SOCK_STREAM, proto = 0; local
3704 int family, type = SOCK_STREAM, proto = 0; local
3760 int family, type, proto = 0; local
4145 int family, socktype, protocol, flags; local
[all...]
/device/google/dragon/recovery/updater/
H A Dec_commands.h3377 uint8_t family[2]; member in struct:mcdp_info
3385 #define MCDP_FAMILY(family) ((family[0] << 8) | family[1])

Completed in 157 milliseconds