Home
last modified time | relevance | path

Searched refs:pysqlite_check_connection (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()
395 int pysqlite_check_connection(pysqlite_Connection* con) in pysqlite_check_connection() function
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.h134 int pysqlite_check_connection(pysqlite_Connection* con);
Dcursor.c445 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()