Searched refs:check_same_thread (Results 1 – 9 of 9) sorted by relevance
/aosp_15_r20/external/python/cpython3/Modules/_sqlite/clinic/ |
D | connection.c.h | 9 int check_same_thread, PyObject *factory, 26 int check_same_thread = 1; in pysqlite_connection_init() local 72 check_same_thread = _PyLong_AsInt(fastargs[4]); in pysqlite_connection_init() 73 if (check_same_thread == -1 && PyErr_Occurred()) { in pysqlite_connection_init() 100 …onnection *)self, database, timeout, detect_types, isolation_level, check_same_thread, factory, ca… in pysqlite_connection_init()
|
/aosp_15_r20/external/python/cpython2/Modules/_sqlite/ |
D | connection.c | 68 int check_same_thread = 1; in pysqlite_connection_init() local 78 …&database, &timeout, &detect_types, &isolation_level, &check_same_thread, &factory, &cached_statem… in pysqlite_connection_init() 191 self->check_same_thread = check_same_thread; in pysqlite_connection_init() 1106 if (self->check_same_thread) { in pysqlite_check_thread()
|
D | module.c | 58 int check_same_thread = 1; in module_connect() local 65 …&database, &timeout, &detect_types, &isolation_level, &check_same_thread, &factory, &cached_statem… in module_connect()
|
D | connection.h | 64 int check_same_thread; member
|
/aosp_15_r20/external/python/cpython3/Modules/_sqlite/ |
D | connection.h | 57 int check_same_thread; member
|
D | connection.c | 179 int check_same_thread, PyObject *factory, in pysqlite_connection_init_impl() argument 248 self->check_same_thread = check_same_thread; in pysqlite_connection_init_impl() 1582 if (self->check_same_thread) { in pysqlite_check_thread()
|
/aosp_15_r20/external/python/cpython3/Lib/test/test_sqlite3/ |
D | test_dbapi.py | 1546 con = sqlite.connect(":memory:", check_same_thread=False)
|
/aosp_15_r20/external/python/cpython3/Doc/library/ |
D | sqlite3.rst | 260 isolation_level="DEFERRED", check_same_thread=True, \ 301 :param bool check_same_thread:
|
/aosp_15_r20/external/python/cpython2/Doc/library/ |
D | sqlite3.rst | 167 .. function:: connect(database[, timeout, detect_types, isolation_level, check_same_thread, factory…
|