Lines Matching refs:value
4 have any value except INVALID_SOCKET.
246 The return value is a tuple of three lists corresponding to the first three
429 PyObject *key, *value;
441 while (PyDict_Next(self->dict, &pos, &key, &value)) {
445 self->ufds[i].events = (short)(unsigned short)PyLong_AsLong(value);
469 PyObject *key, *value;
473 file descriptor, and the value is the event mask. */
477 value = PyLong_FromLong(eventmask);
478 if (value == NULL) {
482 err = PyDict_SetItem(self->dict, key, value);
484 Py_DECREF(value);
511 PyObject *key, *value;
529 value = PyLong_FromLong(eventmask);
530 if (value == NULL) {
534 err = PyDict_SetItem(self->dict, key, value);
536 Py_DECREF(value);
584 value) to wait indefinitely.
599 PyObject *value = NULL, *num = NULL;
696 /* if we hit a NULL return, set value to NULL
699 value = PyTuple_New(2);
700 if (value == NULL)
704 Py_DECREF(value);
707 PyTuple_SET_ITEM(value, 0, num);
715 Py_DECREF(value);
718 PyTuple_SET_ITEM(value, 1, num);
719 PyList_SET_ITEM(result_list, j, value);
910 value) to wait indefinitely.
926 PyObject *value, *num1, *num2;
1009 value = PyTuple_Pack(2, num1, num2);
1012 if (value == NULL)
1014 PyList_SET_ITEM(result_list, i, value);
1101 ** value, because we can change rlimit() anytime.
1317 value is still checked).
1319 Deprecated and completely ignored. However, when supplied, its value
1565 to -1 if the value of ms is a negative number.