Home
last modified time | relevance | path

Searched refs:pysqlite_ConnectionType (Results 1 – 4 of 4) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
Dmodule.c71 factory = (PyObject*)&pysqlite_ConnectionType; in module_connect()
322 Py_INCREF(&pysqlite_ConnectionType); in init_sqlite3()
323 PyModule_AddObject(module, "Connection", (PyObject*) &pysqlite_ConnectionType); in init_sqlite3()
Dconnection.h120 extern PyTypeObject pysqlite_ConnectionType;
Dconnection.c1618 PyTypeObject pysqlite_ConnectionType = { variable
1662 pysqlite_ConnectionType.tp_new = PyType_GenericNew; in pysqlite_connection_setup_types()
1663 return PyType_Ready(&pysqlite_ConnectionType); in pysqlite_connection_setup_types()
Dcursor.c83 if (!PyArg_ParseTuple(args, "O!", &pysqlite_ConnectionType, &connection)) in pysqlite_cursor_init()