Lines Matching refs:tup
1494 PyObject *tup;
1495 tup = PyList_AsTuple(lst);
1497 return tup;
2043 PyObject *tup = cipher_to_tuple(cipher);
2044 if (!tup) {
2048 PyList_SET_ITEM(res, len++, tup);
5554 PyObject *keyusage = NULL, *cert = NULL, *enc = NULL, *tup = NULL;
5587 if ((tup = PyTuple_New(3)) == NULL) {
5591 PyTuple_SET_ITEM(tup, 0, cert);
5593 PyTuple_SET_ITEM(tup, 1, enc);
5595 PyTuple_SET_ITEM(tup, 2, keyusage);
5597 if (PySet_Add(result, tup) == -1) {
5599 Py_CLEAR(tup);
5602 Py_CLEAR(tup);
5609 /* In error cases cert, enc and tup may not be NULL */
5613 Py_XDECREF(tup);
5652 PyObject *crl = NULL, *enc = NULL, *tup = NULL;
5676 if ((tup = PyTuple_New(2)) == NULL) {
5680 PyTuple_SET_ITEM(tup, 0, crl);
5682 PyTuple_SET_ITEM(tup, 1, enc);
5685 if (PySet_Add(result, tup) == -1) {
5687 Py_CLEAR(tup);
5690 Py_CLEAR(tup);
5697 /* In error cases cert, enc and tup may not be NULL */
5700 Py_XDECREF(tup);