Lines Matching refs:value

32 - socket.ntohs(16 bit value) --> new int object
33 - socket.ntohl(32 bit value) --> new int object
34 - socket.htons(16 bit value) --> new int object
35 - socket.htonl(32 bit value) --> new int object
40 - socket.has_ipv6: boolean value indicating if IPv6 is supported
65 The meaning of v1, v2 and v3 depends on the value of addr_type:
158 setsockopt(level, optname, value[, optlen]) -- set socket options\n\
545 /* Largest value to try to store in a socklen_t (used when handling
992 to make socket.type be set to the same value on all platforms.
1077 *are* safe regarding their return value, ie. that a
1283 value (zero padded if necessary). */
2880 PyErr_SetString(PyExc_ValueError, "Timeout value out of range");
3056 "setsockopt(level, option, value: int)\n\
3057 setsockopt(level, option, value: buffer)\n\
3061 The value argument can either be an integer, a string buffer, or\n\
3130 "getsockopt(level, option[, buffersize]) -> value\n\
3133 If a nonzero buffersize argument is given, the return value is a\n\
3368 This is like connect(address), but returns an error code (the errno value)\n\
3466 * (which doesn't make sense anyway) we force a minimum value of 0. */
3482 connections. If not specified, a default reasonable value is chosen.");
3689 * 'addr' is a return value for the address object. Note that you must decref
3856 * value for recvmsg() or recvmsg_into(), with the first item provided
4050 The return value is a 4-tuple: (data, ancdata, msg_flags, address).\n\
4060 address of the sending socket, if available; otherwise, its value is\n\
4144 The return value is a 4-tuple: (nbytes, ancdata, msg_flags, address).\n\
4155 its value is unspecified.\n\
4672 the message. The return value is the number of bytes of non-ancillary\n\
4922 SIO_LOOPBACK_FAST_PATH: 'option' is a boolean value, and is disabled by default");
5407 PyVarObject_HEAD_INIT(0, 0) /* Must fill in type value later */
6573 long value = PyLong_AsLong(pobj);
6574 if (value == -1 && PyErr_Occurred())
6576 PyOS_snprintf(pbuf, sizeof(pbuf), "%ld", value);
6767 /* Python API to getting and setting the default timeout value. */
6785 A value of None indicates that new socket objects have no timeout.\n\
6805 A value of None indicates that new socket objects have no timeout.\n\
6978 data item with associated data of the given length. This value can\n\
7719 PyModule_AddIntConstant(m, "SOMAXCONN", 5); /* Common value */