Home
last modified time | relevance | path

Searched refs:pysqlite_check_thread (Results 1 – 3 of 3) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
Dconnection.c333 if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) { in pysqlite_connection_cursor()
359 if (!pysqlite_check_thread(self)) { in pysqlite_connection_close()
455 if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) { in pysqlite_connection_commit()
501 if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) { in pysqlite_connection_rollback()
857 if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) { in pysqlite_connection_create_function()
891 if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) { in pysqlite_connection_create_aggregate()
986 if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) { in pysqlite_connection_set_authorizer()
1016 if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) { in pysqlite_connection_set_progress_handler()
1044 if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) { in pysqlite_enable_load_extension()
1069 if (!pysqlite_check_thread(self) || !pysqlite_check_connection(self)) { in pysqlite_load_extension()
[all …]
Dconnection.h133 int pysqlite_check_thread(pysqlite_Connection* self);
Dcursor.c114 if (!pysqlite_check_thread(self->connection)) { in pysqlite_cursor_init()
445 return pysqlite_check_thread(cur->connection) && pysqlite_check_connection(cur->connection); in check_cursor()
1029 if (!pysqlite_check_thread(self->connection) || !pysqlite_check_connection(self->connection)) { in pysqlite_cursor_close()