Home
last modified time | relevance | path

Searched refs:check_same_thread (Results 1 – 9 of 9) sorted by relevance

/aosp_15_r20/external/python/cpython3/Modules/_sqlite/clinic/
Dconnection.c.h9 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/
Dconnection.c68 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()
Dmodule.c58 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()
Dconnection.h64 int check_same_thread; member
/aosp_15_r20/external/python/cpython3/Modules/_sqlite/
Dconnection.h57 int check_same_thread; member
Dconnection.c179 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/
Dtest_dbapi.py1546 con = sqlite.connect(":memory:", check_same_thread=False)
/aosp_15_r20/external/python/cpython3/Doc/library/
Dsqlite3.rst260 isolation_level="DEFERRED", check_same_thread=True, \
301 :param bool check_same_thread:
/aosp_15_r20/external/python/cpython2/Doc/library/
Dsqlite3.rst167 .. function:: connect(database[, timeout, detect_types, isolation_level, check_same_thread, factory…