Lines Matching refs:sqlite3_mutex_try

6016 ** ^The sqlite3_mutex_enter() and sqlite3_mutex_try() routines attempt
6018 ** sqlite3_mutex_enter() will block and sqlite3_mutex_try() will return
6019 ** SQLITE_BUSY. ^The sqlite3_mutex_try() interface returns [SQLITE_OK]
6030 ** implemented by sqlite3_mutex_try(). On those systems, sqlite3_mutex_try()
6032 ** sqlite3_mutex_try() as an optimization so this is acceptable behavior.)^
6040 ** ^If the argument to sqlite3_mutex_enter(), sqlite3_mutex_try(), or
6049 SQLITE_API int sqlite3_mutex_try(sqlite3_mutex*);
6088 ** <li> [sqlite3_mutex_try()] </li>
10296 #define sqlite3_mutex_try(X) SQLITE_OK
18489 SQLITE_API int sqlite3_mutex_try(sqlite3_mutex *p){
18668 ** The sqlite3_mutex_enter() and sqlite3_mutex_try() routines attempt
18670 ** sqlite3_mutex_enter() will block and sqlite3_mutex_try() will return
18671 ** SQLITE_BUSY. The sqlite3_mutex_try() interface returns SQLITE_OK
18936 ** The sqlite3_mutex_enter() and sqlite3_mutex_try() routines attempt
18938 ** sqlite3_mutex_enter() will block and sqlite3_mutex_try() will return
18939 ** SQLITE_BUSY. The sqlite3_mutex_try() interface returns SQLITE_OK
19616 ** The sqlite3_mutex_enter() and sqlite3_mutex_try() routines attempt
19618 ** sqlite3_mutex_enter() will block and sqlite3_mutex_try() will return
19619 ** SQLITE_BUSY. The sqlite3_mutex_try() interface returns SQLITE_OK
19657 ** The sqlite3_mutex_try() routine is very rarely used, and when it
51350 if( sqlite3_mutex_try(p->pBt->mutex)==SQLITE_OK ){
97382 #define sqlite3_mutex_try sqlite3_api->mutex_try
97749 sqlite3_mutex_try,