Lines Matching refs:converted
265 PyObject* converted; in _pysqlite_fetch_one_row() local
309 converted = Py_NewRef(Py_None); in _pysqlite_fetch_one_row()
317 converted = PyObject_CallOneArg(converter, item); in _pysqlite_fetch_one_row()
325 converted = Py_NewRef(Py_None); in _pysqlite_fetch_one_row()
327 converted = PyLong_FromLongLong(sqlite3_column_int64(self->statement->st, i)); in _pysqlite_fetch_one_row()
329 converted = PyFloat_FromDouble(sqlite3_column_double(self->statement->st, i)); in _pysqlite_fetch_one_row()
339 converted = PyUnicode_FromStringAndSize(text, nbytes); in _pysqlite_fetch_one_row()
340 if (!converted && PyErr_ExceptionMatches(PyExc_UnicodeDecodeError)) { in _pysqlite_fetch_one_row()
358 converted = PyBytes_FromStringAndSize(text, nbytes); in _pysqlite_fetch_one_row()
360 converted = PyByteArray_FromStringAndSize(text, nbytes); in _pysqlite_fetch_one_row()
362 … converted = PyObject_CallFunction(self->connection->text_factory, "y#", text, nbytes); in _pysqlite_fetch_one_row()
373 converted = PyBytes_FromStringAndSize(blob, nbytes); in _pysqlite_fetch_one_row()
377 if (!converted) { in _pysqlite_fetch_one_row()
380 PyTuple_SET_ITEM(row, i, converted); in _pysqlite_fetch_one_row()