Lines Matching refs:list
45 - socket.if_nameindex() -> list of tuples (if_index, if_name)
322 /* IMPORTANT: make sure the list ordered by descending build_number */
3915 /* Make list of (level, type, data) tuples from control messages. */
4052 received. The ancdata item is a list of zero or more tuples\n\
4146 written into the buffers. The ancdata item is a list of zero or more\n\
5812 Return the true host name, a list of aliases, and a list of IP addresses,\n\
5909 Return the true host name, a list of aliases, and a list of IP addresses,\n\
5916 known or not useful (like the list of aliases). */
5952 known or not useful (like the list of aliases). */
5995 already known or not useful (like the list of aliases). */
6656 -> list of (family, type, proto, canonname, sockaddr)\n\
6814 PyObject *list = PyList_New(0);
6815 if (list == NULL) {
6822 Py_DECREF(list);
6831 Py_DECREF(list);
6837 if (tuple == NULL || PyList_Append(list, tuple) == -1) {
6839 Py_DECREF(list);
6846 return list;
6853 Py_DECREF(list);
6878 if (ni_tuple == NULL || PyList_Append(list, ni_tuple) == -1) {
6880 Py_DECREF(list);
6888 return list;
6895 Returns a list of network interface information (index, name) tuples.");