Home
last modified time | relevance | path

Searched refs:pysqlite_Error (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython2/Modules/_sqlite/
Dmodule.c38 PyObject* pysqlite_Error, *pysqlite_Warning, *pysqlite_InterfaceError, *pysqlite_DatabaseError, variable
341 if (!(pysqlite_Error = PyErr_NewException(MODULE_NAME ".Error", PyExc_StandardError, NULL))) { in init_sqlite3()
344 PyDict_SetItemString(dict, "Error", pysqlite_Error); in init_sqlite3()
353 …sqlite_InterfaceError = PyErr_NewException(MODULE_NAME ".InterfaceError", pysqlite_Error, NULL))) { in init_sqlite3()
358 …if (!(pysqlite_DatabaseError = PyErr_NewException(MODULE_NAME ".DatabaseError", pysqlite_Error, NU… in init_sqlite3()
Dmodule.h30 extern PyObject* pysqlite_Error;
Dconnection.c204 self->Error = pysqlite_Error; in pysqlite_connection_init()
/external/python/cpython3/Modules/_sqlite/
Dmodule.c44 PyObject *pysqlite_Error = NULL; variable
399 ADD_EXCEPTION(module, "Error", pysqlite_Error, PyExc_Exception); in PyInit__sqlite3()
403 ADD_EXCEPTION(module, "InterfaceError", pysqlite_InterfaceError, pysqlite_Error); in PyInit__sqlite3()
404 ADD_EXCEPTION(module, "DatabaseError", pysqlite_DatabaseError, pysqlite_Error); in PyInit__sqlite3()
Dmodule.h32 extern PyObject* pysqlite_Error;
Dconnection.c179 self->Error = pysqlite_Error; in pysqlite_connection_init()
/external/python/cpython3/Tools/c-analyzer/cpython/
Dignored.tsv59 Modules/_sqlite/module.c - pysqlite_Error -
2388 Modules/_sqlite/module.h - pysqlite_Error -