Lines Matching defs:cls

317                                          PyTypeObject *cls, const char *name,
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);
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);
447 PyTypeObject *cls,
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);
501 PyTypeObject *cls,
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);
535 PyTypeObject *cls,
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);
574 PyTypeObject *cls,
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);
900 PyTypeObject *cls,
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);