Home
last modified time | relevance | path

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

/aosp_15_r20/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()