Searched refs:pysqlite_InternalError (Results 1 – 8 of 8) sorted by relevance
/external/python/cpython2/Modules/_sqlite/ |
D | module.c | 39 *pysqlite_InternalError, *pysqlite_OperationalError, *pysqlite_ProgrammingError, variable 365 …if (!(pysqlite_InternalError = PyErr_NewException(MODULE_NAME ".InternalError", pysqlite_DatabaseE… in init_sqlite3() 368 PyDict_SetItemString(dict, "InternalError", pysqlite_InternalError); in init_sqlite3()
|
D | module.h | 34 extern PyObject* pysqlite_InternalError;
|
D | util.c | 66 PyErr_SetString(pysqlite_InternalError, sqlite3_errmsg(db)); in _pysqlite_seterror()
|
D | connection.c | 210 self->InternalError = pysqlite_InternalError; in pysqlite_connection_init()
|
/external/python/cpython3/Modules/_sqlite/ |
D | module.c | 39 *pysqlite_InternalError, *pysqlite_OperationalError, *pysqlite_ProgrammingError, variable 385 …if (!(pysqlite_InternalError = PyErr_NewException(MODULE_NAME ".InternalError", pysqlite_DatabaseE… in PyInit__sqlite3() 388 PyDict_SetItemString(dict, "InternalError", pysqlite_InternalError); in PyInit__sqlite3()
|
D | module.h | 34 extern PyObject* pysqlite_InternalError;
|
D | util.c | 66 PyErr_SetString(pysqlite_InternalError, sqlite3_errmsg(db)); in _pysqlite_seterror()
|
D | connection.c | 197 self->InternalError = pysqlite_InternalError; in pysqlite_connection_init()
|