Home
last modified time | relevance | path

Searched refs:pysqlite_IntegrityError (Results 1 – 4 of 4) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
Dmodule.h37 extern PyObject* pysqlite_IntegrityError;
Dmodule.c40 …*pysqlite_IntegrityError, *pysqlite_DataError, *pysqlite_NotSupportedError, *pysqlite_OptimizedUni… variable
380 …if (!(pysqlite_IntegrityError = PyErr_NewException(MODULE_NAME ".IntegrityError", pysqlite_Databas… in init_sqlite3()
383 PyDict_SetItemString(dict, "IntegrityError", pysqlite_IntegrityError); in init_sqlite3()
Dutil.c94 PyErr_SetString(pysqlite_IntegrityError, sqlite3_errmsg(db)); in _pysqlite_seterror()
Dconnection.c206 self->IntegrityError = pysqlite_IntegrityError; in pysqlite_connection_init()