Home | History | Annotate | Download | only in dist

Lines Matching refs:sqlite3_mutex_try

5622 ** ^The sqlite3_mutex_enter() and sqlite3_mutex_try() routines attempt
5624 ** sqlite3_mutex_enter() will block and sqlite3_mutex_try() will return
5625 ** SQLITE_BUSY. ^The sqlite3_mutex_try() interface returns [SQLITE_OK]
5636 ** implemented by sqlite3_mutex_try(). On those systems, sqlite3_mutex_try()
5638 ** sqlite3_mutex_try() as an optimization so this is acceptable behavior.)^
5646 ** ^If the argument to sqlite3_mutex_enter(), sqlite3_mutex_try(), or
5655 SQLITE_API int sqlite3_mutex_try(sqlite3_mutex*);
5694 ** <li> [sqlite3_mutex_try()] </li>
8788 #define sqlite3_mutex_try(X) SQLITE_OK
16259 SQLITE_API int sqlite3_mutex_try(sqlite3_mutex *p){
16438 ** The sqlite3_mutex_enter() and sqlite3_mutex_try() routines attempt
16440 ** sqlite3_mutex_enter() will block and sqlite3_mutex_try() will return
16441 ** SQLITE_BUSY. The sqlite3_mutex_try() interface returns SQLITE_OK
16697 ** The sqlite3_mutex_enter() and sqlite3_mutex_try() routines attempt
16699 ** sqlite3_mutex_enter() will block and sqlite3_mutex_try() will return
16700 ** SQLITE_BUSY. The sqlite3_mutex_try() interface returns SQLITE_OK
16973 ** The sqlite3_mutex_enter() and sqlite3_mutex_try() routines attempt
16975 ** sqlite3_mutex_enter() will block and sqlite3_mutex_try() will return
16976 ** SQLITE_BUSY. The sqlite3_mutex_try() interface returns SQLITE_OK
17358 ** The sqlite3_mutex_enter() and sqlite3_mutex_try() routines attempt
17360 ** sqlite3_mutex_enter() will block and sqlite3_mutex_try() will return
17361 ** SQLITE_BUSY. The sqlite3_mutex_try() interface returns SQLITE_OK
17390 ** The sqlite3_mutex_try() routine is very rarely used, and when it
45103 if( sqlite3_mutex_try(p->pBt->mutex)==SQLITE_OK ){
84800 #define sqlite3_mutex_try sqlite3_api->mutex_try
85129 sqlite3_mutex_try,