Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/_sqlite/
Dconnection.h60 int check_same_thread; member
Dmodule.c75 int check_same_thread = 1; in module_connect() local
82 &isolation_level, &check_same_thread, in module_connect()
Dconnection.c75 int check_same_thread = 1; in pysqlite_connection_init() local
83 &isolation_level, &check_same_thread, in pysqlite_connection_init()
167 self->check_same_thread = check_same_thread; in pysqlite_connection_init()
1272 if (self->check_same_thread) { in pysqlite_check_thread()
/external/python/cpython2/Modules/_sqlite/
Dconnection.h64 int check_same_thread; member
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.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()
/external/python/cpython3/Doc/library/
Dsqlite3.rst211 .. function:: connect(database[, timeout, detect_types, isolation_level, check_same_thread, factory…
241 By default, *check_same_thread* is :const:`True` and only the creating thread may
/external/python/cpython2/Doc/library/
Dsqlite3.rst167 .. function:: connect(database[, timeout, detect_types, isolation_level, check_same_thread, factory…