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

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
cursor.h 59 extern PyTypeObject pysqlite_CursorType;
row.c 48 if (!PyObject_IsInstance((PyObject*)cursor, (PyObject*)&pysqlite_CursorType)) {
module.c 324 Py_INCREF(&pysqlite_CursorType);
325 PyModule_AddObject(module, "Cursor", (PyObject*) &pysqlite_CursorType);
cursor.c     [all...]
connection.c 338 factory = (PyObject*)&pysqlite_CursorType;
    [all...]
  /external/python/cpython2/Modules/_sqlite/
cursor.h 60 extern PyTypeObject pysqlite_CursorType;
module.c 324 Py_INCREF(&pysqlite_CursorType);
325 PyModule_AddObject(module, "Cursor", (PyObject*) &pysqlite_CursorType);
row.c 50 if (!PyObject_TypeCheck((PyObject*)cursor, &pysqlite_CursorType)) {
cursor.c 1073 PyTypeObject pysqlite_CursorType = {
    [all...]
connection.c 341 factory = (PyObject*)&pysqlite_CursorType;
347 if (!PyObject_TypeCheck(cursor, &pysqlite_CursorType)) {
    [all...]
  /external/python/cpython3/Modules/_sqlite/
cursor.h 54 extern PyTypeObject pysqlite_CursorType;
module.c 367 Py_INCREF(&pysqlite_CursorType);
368 PyModule_AddObject(module, "Cursor", (PyObject*) &pysqlite_CursorType);
row.c 49 if (!PyObject_TypeCheck((PyObject*)cursor, &pysqlite_CursorType)) {
cursor.c 947 PyTypeObject pysqlite_CursorType = {
991 pysqlite_CursorType.tp_new = PyType_GenericNew;
992 return PyType_Ready(&pysqlite_CursorType);
connection.c 310 factory = (PyObject*)&pysqlite_CursorType;
316 if (!PyObject_TypeCheck(cursor, &pysqlite_CursorType)) {
    [all...]

Completed in 233 milliseconds