Lines Matching defs:self

6 pysqlite_connection_init_impl(pysqlite_Connection *self, PyObject *database,
13 pysqlite_connection_init(PyObject *self, PyObject *args, PyObject *kwargs)
100 return_value = pysqlite_connection_init_impl((pysqlite_Connection *)self, database, timeout, detect_types, isolation_level, check_same_thread, factory, cache_size, uri);
107 "cursor($self, /, factory=<unrepresentable>)\n"
116 pysqlite_connection_cursor_impl(pysqlite_Connection *self, PyObject *factory);
119 pysqlite_connection_cursor(pysqlite_Connection *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
137 return_value = pysqlite_connection_cursor_impl(self, factory);
144 "blobopen($self, table, column, row, /, *, readonly=False, name=\'main\')\n"
164 blobopen_impl(pysqlite_Connection *self, const char *table, const char *col,
168 blobopen(pysqlite_Connection *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
240 return_value = blobopen_impl(self, table, col, row, readonly, name);
247 "close($self, /)\n"
258 pysqlite_connection_close_impl(pysqlite_Connection *self);
261 pysqlite_connection_close(pysqlite_Connection *self, PyObject *Py_UNUSED(ignored))
263 return pysqlite_connection_close_impl(self);
267 "commit($self, /)\n"
278 pysqlite_connection_commit_impl(pysqlite_Connection *self);
281 pysqlite_connection_commit(pysqlite_Connection *self, PyObject *Py_UNUSED(ignored))
283 return pysqlite_connection_commit_impl(self);
287 "rollback($self, /)\n"
298 pysqlite_connection_rollback_impl(pysqlite_Connection *self);
301 pysqlite_connection_rollback(pysqlite_Connection *self, PyObject *Py_UNUSED(ignored))
303 return pysqlite_connection_rollback_impl(self);
307 "create_function($self, /, name, narg, func, *, deterministic=False)\n"
316 pysqlite_connection_create_function_impl(pysqlite_Connection *self,
322 pysqlite_connection_create_function(pysqlite_Connection *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
364 return_value = pysqlite_connection_create_function_impl(self, cls, name, narg, func, deterministic);
373 "create_window_function($self, name, num_params, aggregate_class, /)\n"
391 create_window_function_impl(pysqlite_Connection *self, PyTypeObject *cls,
396 create_window_function(pysqlite_Connection *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
428 return_value = create_window_function_impl(self, cls, name, num_params, aggregate_class);
437 "create_aggregate($self, /, name, n_arg, aggregate_class)\n"
446 pysqlite_connection_create_aggregate_impl(pysqlite_Connection *self,
452 pysqlite_connection_create_aggregate(pysqlite_Connection *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
484 return_value = pysqlite_connection_create_aggregate_impl(self, cls, name, n_arg, aggregate_class);
491 "set_authorizer($self, /, authorizer_callback)\n"
500 pysqlite_connection_set_authorizer_impl(pysqlite_Connection *self,
505 pysqlite_connection_set_authorizer(pysqlite_Connection *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
518 return_value = pysqlite_connection_set_authorizer_impl(self, cls, callable);
525 "set_progress_handler($self, /, progress_handler, n)\n"
534 pysqlite_connection_set_progress_handler_impl(pysqlite_Connection *self,
539 pysqlite_connection_set_progress_handler(pysqlite_Connection *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
557 return_value = pysqlite_connection_set_progress_handler_impl(self, cls, callable, n);
564 "set_trace_callback($self, /, trace_callback)\n"
573 pysqlite_connection_set_trace_callback_impl(pysqlite_Connection *self,
578 pysqlite_connection_set_trace_callback(pysqlite_Connection *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
591 return_value = pysqlite_connection_set_trace_callback_impl(self, cls, callable);
600 "enable_load_extension($self, enable, /)\n"
609 pysqlite_connection_enable_load_extension_impl(pysqlite_Connection *self,
613 pysqlite_connection_enable_load_extension(pysqlite_Connection *self, PyObject *arg)
622 return_value = pysqlite_connection_enable_load_extension_impl(self, onoff);
633 "load_extension($self, name, /)\n"
642 pysqlite_connection_load_extension_impl(pysqlite_Connection *self,
646 pysqlite_connection_load_extension(pysqlite_Connection *self, PyObject *arg)
664 return_value = pysqlite_connection_load_extension_impl(self, extension_name);
673 "execute($self, sql, parameters=<unrepresentable>, /)\n"
682 pysqlite_connection_execute_impl(pysqlite_Connection *self, PyObject *sql,
686 pysqlite_connection_execute(pysqlite_Connection *self, PyObject *const *args, Py_ssize_t nargs)
708 return_value = pysqlite_connection_execute_impl(self, sql, parameters);
715 "executemany($self, sql, parameters, /)\n"
724 pysqlite_connection_executemany_impl(pysqlite_Connection *self,
728 pysqlite_connection_executemany(pysqlite_Connection *self, PyObject *const *args, Py_ssize_t nargs)
746 return_value = pysqlite_connection_executemany_impl(self, sql, parameters);
753 "executescript($self, sql_script, /)\n"
762 "interrupt($self, /)\n"
771 pysqlite_connection_interrupt_impl(pysqlite_Connection *self);
774 pysqlite_connection_interrupt(pysqlite_Connection *self, PyObject *Py_UNUSED(ignored))
776 return pysqlite_connection_interrupt_impl(self);
780 "iterdump($self, /)\n"
789 pysqlite_connection_iterdump_impl(pysqlite_Connection *self);
792 pysqlite_connection_iterdump(pysqlite_Connection *self, PyObject *Py_UNUSED(ignored))
794 return pysqlite_connection_iterdump_impl(self);
798 "backup($self, /, target, *, pages=-1, progress=None, name=\'main\',\n"
808 pysqlite_connection_backup_impl(pysqlite_Connection *self,
814 pysqlite_connection_backup(pysqlite_Connection *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
883 return_value = pysqlite_connection_backup_impl(self, target, pages, progress, name, sleep);
890 "create_collation($self, name, callback, /)\n"
899 pysqlite_connection_create_collation_impl(pysqlite_Connection *self,
905 pysqlite_connection_create_collation(pysqlite_Connection *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
932 return_value = pysqlite_connection_create_collation_impl(self, cls, name, callable);
941 "serialize($self, /, *, name=\'main\')\n"
958 serialize_impl(pysqlite_Connection *self, const char *name);
961 serialize(pysqlite_Connection *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
991 return_value = serialize_impl(self, name);
1002 "deserialize($self, data, /, *, name=\'main\')\n"
1023 deserialize_impl(pysqlite_Connection *self, Py_buffer *data,
1027 deserialize(pysqlite_Connection *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
1075 return_value = deserialize_impl(self, &data, name);
1089 "__enter__($self, /)\n"
1100 pysqlite_connection_enter_impl(pysqlite_Connection *self);
1103 pysqlite_connection_enter(pysqlite_Connection *self, PyObject *Py_UNUSED(ignored))
1105 return pysqlite_connection_enter_impl(self);
1109 "__exit__($self, type, value, traceback, /)\n"
1120 pysqlite_connection_exit_impl(pysqlite_Connection *self, PyObject *exc_type,
1124 pysqlite_connection_exit(pysqlite_Connection *self, PyObject *const *args, Py_ssize_t nargs)
1137 return_value = pysqlite_connection_exit_impl(self, exc_type, exc_value, exc_tb);
1144 "setlimit($self, category, limit, /)\n"
1163 setlimit_impl(pysqlite_Connection *self, int category, int limit);
1166 setlimit(pysqlite_Connection *self, PyObject *const *args, Py_ssize_t nargs)
1183 return_value = setlimit_impl(self, category, limit);
1190 "getlimit($self, category, /)\n"
1202 getlimit_impl(pysqlite_Connection *self, int category);
1205 getlimit(pysqlite_Connection *self, PyObject *arg)
1214 return_value = getlimit_impl(self, category);