Lines Matching refs:retval
1688 int retval = 0;
1700 return retval;
1735 retval = 1;
1739 return retval;
3871 PyObject *cmsg_list = NULL, *retval = NULL;
3954 retval = Py_BuildValue("NOiN",
3962 if (retval == NULL)
3968 return retval;
4015 PyObject *buf = NULL, *retval = NULL;
4032 retval = sock_recvmsg_guts(s, &iov, 1, flags, ancbufsize,
4035 return retval;
4084 PyObject *buffers_arg, *fast, *retval = NULL;
4117 retval = sock_recvmsg_guts(s, iovs, nitems, flags, ancbufsize,
4125 return retval;
4489 *cmsg_fast = NULL, *retval = NULL;
4642 retval = PyLong_FromSsize_t(ctx.result);
4655 return retval;
4680 PyObject *retval = NULL;
4820 retval = PyLong_FromSsize_t(ctx.result);
4832 return retval;
6433 int retval;
6451 retval = inet_pton(af, ip, packed);
6452 if (retval < 0) {
6455 } else if (retval == 0) {
6483 const char* retval;
6518 retval = inet_ntop(af, packed_ip.buf, ip, sizeof(ip));
6520 if (!retval) {
6524 return PyUnicode_FromString(retval);