Lines Matching defs:val
1182 FutureObj_set_blocking(FutureObj *fut, PyObject *val, void *Py_UNUSED(ignored))
1187 if (val == NULL) {
1192 int is_true = PyObject_IsTrue(val);
1213 FutureObj_set_log_traceback(FutureObj *fut, PyObject *val, void *Py_UNUSED(ignored))
1215 if (val == NULL) {
1219 int is_true = PyObject_IsTrue(val);
1655 PyObject *type, *val = NULL, *tb = NULL;
1662 val = args[1];
1666 val = args[1];
1669 if (val == Py_None) {
1670 val = NULL;
1680 Py_XINCREF(val);
1684 PyErr_NormalizeException(&type, &val, &tb);
1686 PyErr_Restore for `type`, `val`, and `tb`. */
1688 if (val) {
1693 val = type;
1697 tb = PyException_GetTraceback(val);
1707 PyErr_Restore(type, val, tb);
1713 Py_XDECREF(val);
2094 TaskObj_set_log_destroy_pending(TaskObj *task, PyObject *val, void *Py_UNUSED(ignored))
2096 if (val == NULL) {
2100 int is_true = PyObject_IsTrue(val);