Home
last modified time | relevance | path

Searched refs:pysqlite_statement_create (Results 1 – 8 of 8) sorted by relevance

/aosp_15_r20/external/python/cpython3/Modules/_sqlite/
Dstatement.h40 pysqlite_Statement *pysqlite_statement_create(pysqlite_Connection *connection, PyObject *sql);
Dstatement.c32 pysqlite_statement_create(pysqlite_Connection *connection, PyObject *sql) in pysqlite_statement_create() function
Dcursor.c861 pysqlite_statement_create(self->connection, operation)); in _pysqlite_query_execute()
Dconnection.c1667 statement = pysqlite_statement_create(self, sql); in pysqlite_connection_call()
/aosp_15_r20/external/python/cpython2/Modules/_sqlite/
Dstatement.h46 int pysqlite_statement_create(pysqlite_Statement* self, pysqlite_Connection* connection, PyObject* …
Dstatement.c54 int pysqlite_statement_create(pysqlite_Statement* self, pysqlite_Connection* connection, PyObject* … in pysqlite_statement_create() function
Dcursor.c574 rc = pysqlite_statement_create(self->statement, self->connection, operation); in _pysqlite_query_execute()
Dconnection.c1221 rc = pysqlite_statement_create(statement, self, sql); in pysqlite_connection_call()