Home
last modified time | relevance | path

Searched refs:pysqlite_StatementType (Results 1 – 10 of 10) sorted by relevance

/external/python/cpython3/Modules/_sqlite/
Dstatement.c452 PyTypeObject pysqlite_StatementType = { variable
496 pysqlite_StatementType.tp_new = PyType_GenericNew; in pysqlite_statement_setup_types()
497 return PyType_Ready(&pysqlite_StatementType); in pysqlite_statement_setup_types()
Dstatement.h45 extern PyTypeObject pysqlite_StatementType;
Dmodule.c370 PyModule_AddObject(module, "Statement", (PyObject*)&pysqlite_StatementType); in PyInit__sqlite3()
371 Py_INCREF(&pysqlite_StatementType); in PyInit__sqlite3()
Dcursor.c499 PyObject_New(pysqlite_Statement, &pysqlite_StatementType)); in _pysqlite_query_execute()
Dconnection.c1208 statement = PyObject_New(pysqlite_Statement, &pysqlite_StatementType); in pysqlite_connection_call()
/external/python/cpython2/Modules/_sqlite/
Dstatement.c502 PyTypeObject pysqlite_StatementType = { variable
546 pysqlite_StatementType.tp_new = PyType_GenericNew; in pysqlite_statement_setup_types()
547 return PyType_Ready(&pysqlite_StatementType); in pysqlite_statement_setup_types()
Dstatement.h44 extern PyTypeObject pysqlite_StatementType;
Dmodule.c327 PyModule_AddObject(module, "Statement", (PyObject*)&pysqlite_StatementType); in init_sqlite3()
328 Py_INCREF(&pysqlite_StatementType); in init_sqlite3()
Dcursor.c570 PyObject_New(pysqlite_Statement, &pysqlite_StatementType)); in _pysqlite_query_execute()
Dconnection.c1210 statement = PyObject_New(pysqlite_Statement, &pysqlite_StatementType); in pysqlite_connection_call()