Lines Matching defs:option
2978 With a string third argument, sets an option from a buffer;
3036 "socket option is larger than %i bytes",
3056 "setsockopt(level, option, value: int)\n\
3057 setsockopt(level, option, value: buffer)\n\
3058 setsockopt(level, option, None, optlen: int)\n\
3060 Set a socket option. See the Unix manual for level and option.\n\
3066 With two arguments, retrieves an integer option.
3130 "getsockopt(level, option[, buffersize]) -> value\n\
3132 Get a socket option. See the Unix manual for level and option.\n\
4882 unsigned int option = RCVALL_ON;
4883 if (!PyArg_ParseTuple(arg, "kI:ioctl", &cmd, &option))
4885 if (WSAIoctl(s->sock_fd, cmd, &option, sizeof(option),
4902 unsigned int option;
4903 if (!PyArg_ParseTuple(arg, "kI:ioctl", &cmd, &option))
4905 if (WSAIoctl(s->sock_fd, cmd, &option, sizeof(option),
4917 "ioctl(cmd, option) -> long\n\
4920 SIO_RCVALL: 'option' must be one of the socket.RCVALL_* constants.\n\
4921 SIO_KEEPALIVE_VALS: 'option' is a tuple of (onoff, timeout, interval).\n\
4922 SIO_LOOPBACK_FAST_PATH: 'option' is a boolean value, and is disabled by default");