Home | History | Annotate | Download | only in Modules

Lines Matching defs:optval

2560    With an integer third argument, sets an integer optval with optlen=4.
2562 optval=NULL with unsigned int as optlen.
2573 Py_buffer optval;
2599 &level, &optname, &optval))
2603 if (optval.len > INT_MAX) {
2604 PyBuffer_Release(&optval);
2611 optval.buf, (int)optval.len);
2613 res = setsockopt(s->sock_fd, level, optname, optval.buf, optval.len);
2615 PyBuffer_Release(&optval);