HomeSort by relevance Sort by last modified time
    Searched refs:pysqlite_StatementType (Results 1 - 15 of 15) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
statement.h 44 extern PyTypeObject pysqlite_StatementType;
statement.c 497 PyTypeObject pysqlite_StatementType = {
541 pysqlite_StatementType.tp_new = PyType_GenericNew;
542 return PyType_Ready(&pysqlite_StatementType);
module.c 327 PyModule_AddObject(module, "Statement", (PyObject*)&pysqlite_StatementType);
328 Py_INCREF(&pysqlite_StatementType);
cursor.c 584 self->statement = PyObject_New(pysqlite_Statement, &pysqlite_StatementType);
    [all...]
connection.c     [all...]
  /external/python/cpython2/Modules/_sqlite/
statement.h 44 extern PyTypeObject pysqlite_StatementType;
statement.c 502 PyTypeObject pysqlite_StatementType = {
546 pysqlite_StatementType.tp_new = PyType_GenericNew;
547 return PyType_Ready(&pysqlite_StatementType);
module.c 327 PyModule_AddObject(module, "Statement", (PyObject*)&pysqlite_StatementType);
328 Py_INCREF(&pysqlite_StatementType);
cursor.c 571 PyObject_New(pysqlite_Statement, &pysqlite_StatementType));
    [all...]
connection.c     [all...]
  /external/python/cpython3/Modules/_sqlite/
statement.h 45 extern PyTypeObject pysqlite_StatementType;
statement.c 498 PyTypeObject pysqlite_StatementType = {
542 pysqlite_StatementType.tp_new = PyType_GenericNew;
543 return PyType_Ready(&pysqlite_StatementType);
module.c 347 PyModule_AddObject(module, "Statement", (PyObject*)&pysqlite_StatementType);
348 Py_INCREF(&pysqlite_StatementType);
cursor.c 500 PyObject_New(pysqlite_Statement, &pysqlite_StatementType));
connection.c     [all...]

Completed in 412 milliseconds