Lines Matching defs:nbytes
330 Py_ssize_t nbytes;
371 nbytes = sqlite3_column_bytes(self->statement->st, i);
372 PyObject *item = PyBytes_FromStringAndSize(blob, nbytes);
396 nbytes = sqlite3_column_bytes(self->statement->st, i);
398 converted = PyUnicode_FromStringAndSize(text, nbytes);
419 converted = PyBytes_FromStringAndSize(text, nbytes);
421 converted = PyByteArray_FromStringAndSize(text, nbytes);
423 converted = PyObject_CallFunction(self->connection->text_factory, "y#", text, nbytes);
433 nbytes = sqlite3_column_bytes(self->statement->st, i);
434 converted = PyBytes_FromStringAndSize(blob, nbytes);