Home
last modified time | relevance | path

Searched refs:sqlite3_mutex_enter (Results 1 – 4 of 4) sorted by relevance

/freebsd-src/contrib/sqlite3/
H A Dsqlite3ext.h535 #define sqlite3_mutex_enter sqlite3_api->mutex_enter macro
H A Dsqlite3.c4316 ** by invoking [sqlite3_mutex_enter]([sqlite3_db_mutex](D)) before beginning
8367 ** ^The sqlite3_mutex_enter() and sqlite3_mutex_try() routines attempt
8369 ** sqlite3_mutex_enter() will block and sqlite3_mutex_try() will return
8391 ** ^If the argument to sqlite3_mutex_enter(), sqlite3_mutex_try(),
8399 SQLITE_API void sqlite3_mutex_enter(sqlite3_mutex*);
8438 ** <li> [sqlite3_mutex_enter()] </li>
17359 #define sqlite3_mutex_enter(X) macro
29055 SQLITE_API void sqlite3_mutex_enter(sqlite3_mutex *p){ sqlite3_mutex_enter() function
[all...]
H A Dsqlite3.h4003 ** by invoking [sqlite3_mutex_enter]([sqlite3_db_mutex](D)) before beginning
8054 ** ^The sqlite3_mutex_enter() and sqlite3_mutex_try() routines attempt
8056 ** sqlite3_mutex_enter() will block and sqlite3_mutex_try() will return
8078 ** ^If the argument to sqlite3_mutex_enter(), sqlite3_mutex_try(),
8086 SQLITE_API void sqlite3_mutex_enter(sqlite3_mutex*);
8125 ** <li> [sqlite3_mutex_enter()] </li>
H A Dshell.c16769 sqlite3_mutex_enter(sqlite3_mutex_alloc(RECOVER_MUTEX_ID)); in recoverEnterMutex()