Lines Matching refs:self
6 "close($self, /)\n"
15 blob_close_impl(pysqlite_Blob *self);
18 blob_close(pysqlite_Blob *self, PyObject *Py_UNUSED(ignored))
20 return blob_close_impl(self);
24 "read($self, length=-1, /)\n"
40 blob_read_impl(pysqlite_Blob *self, int length);
43 blob_read(pysqlite_Blob *self, PyObject *const *args, Py_ssize_t nargs)
59 return_value = blob_read_impl(self, length);
66 "write($self, data, /)\n"
78 blob_write_impl(pysqlite_Blob *self, Py_buffer *data);
81 blob_write(pysqlite_Blob *self, PyObject *arg)
93 return_value = blob_write_impl(self, &data);
105 "seek($self, offset, origin=0, /)\n"
118 blob_seek_impl(pysqlite_Blob *self, int offset, int origin);
121 blob_seek(pysqlite_Blob *self, PyObject *const *args, Py_ssize_t nargs)
142 return_value = blob_seek_impl(self, offset, origin);
149 "tell($self, /)\n"
158 blob_tell_impl(pysqlite_Blob *self);
161 blob_tell(pysqlite_Blob *self, PyObject *Py_UNUSED(ignored))
163 return blob_tell_impl(self);
167 "__enter__($self, /)\n"
176 blob_enter_impl(pysqlite_Blob *self);
179 blob_enter(pysqlite_Blob *self, PyObject *Py_UNUSED(ignored))
181 return blob_enter_impl(self);
185 "__exit__($self, type, val, tb, /)\n"
194 blob_exit_impl(pysqlite_Blob *self, PyObject *type, PyObject *val,
198 blob_exit(pysqlite_Blob *self, PyObject *const *args, Py_ssize_t nargs)
211 return_value = blob_exit_impl(self, type, val, tb);