Lines Matching defs:tuple
53 - an AF_PACKET socket address is a tuple containing a string
56 ("eth0",0x1234). Optional 3rd,4th,5th elements in the tuple
58 - an AF_QIPCRTR socket address is a (node, port) tuple where the
1598 exception -- return it as an (int, bytes) tuple. */
1751 "%s(): AF_NETLINK address must be tuple, not %.500s",
1779 "AF_QIPCRTR address must be tuple, not %.500s",
1803 "AF_VSOCK address must be tuple, not %.500s",
1830 "%s(): AF_INET address must be tuple, not %.500s",
1874 "%s(): AF_INET6 address must be tuple, not %.500s",
1879 "O&i|II;AF_INET6 address must be a tuple "
2028 "%s(): AF_PACKET address must be tuple, not %.500s",
2036 "si|iiy*;AF_PACKET address must be a tuple of "
2095 "%s(): AF_TIPC address must be tuple, not %.500s",
2101 "IIII|I;AF_TIPC address must be a tuple "
2156 "%s(): AF_CAN address must be tuple, not %.500s",
2161 "O&;AF_CAN address must be a tuple "
2364 "%s(): AF_ALG address must be tuple, not %.500s",
2369 "ss|HH;AF_ALG address must be a tuple "
3168 sockets the address is a tuple (ifname, proto [,pkttype [,hatype [,addr]]])");
3414 (hostaddr, port). For IPv6 sockets, the address info is a 4-tuple\n\
3855 * ancillary data buffer size (controllen). Returns the tuple return
3922 PyObject *bytes, *tuple;
3941 tuple = Py_BuildValue("iiN", (int)cmsgh->cmsg_level,
3943 if (tuple == NULL)
3945 tmp = PyList_Append(cmsg_list, tuple);
3946 Py_DECREF(tuple);
4050 The return value is a 4-tuple: (data, ancdata, msg_flags, address).\n\
4144 The return value is a 4-tuple: (nbytes, ancdata, msg_flags, address).\n\
4921 SIO_KEEPALIVE_VALS: 'option' is a tuple of (onoff, timeout, interval).\n\
6684 "getnameinfo() argument 1 must be a tuple");
6725 "IPv4 sockaddr must be 2 tuple");
6836 PyObject *tuple = Py_BuildValue("Iu", r.InterfaceIndex, buf);
6837 if (tuple == NULL || PyList_Append(list, tuple) == -1) {
6838 Py_XDECREF(tuple);
6843 Py_DECREF(tuple);