Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
Dstatement.h44 extern PyTypeObject pysqlite_StatementType;
Dstatement.c497 PyTypeObject pysqlite_StatementType = { variable
541 pysqlite_StatementType.tp_new = PyType_GenericNew; in pysqlite_statement_setup_types()
542 return PyType_Ready(&pysqlite_StatementType); in pysqlite_statement_setup_types()
Dmodule.c327 PyModule_AddObject(module, "Statement", (PyObject*)&pysqlite_StatementType); in init_sqlite3()
328 Py_INCREF(&pysqlite_StatementType); in init_sqlite3()
Dcursor.c584 self->statement = PyObject_New(pysqlite_Statement, &pysqlite_StatementType); in _pysqlite_query_execute()
Dconnection.c1192 statement = PyObject_New(pysqlite_Statement, &pysqlite_StatementType); in pysqlite_connection_call()