Lines Matching refs:sqlite3_mutex_try
5615 ** ^The sqlite3_mutex_enter() and sqlite3_mutex_try() routines attempt
5617 ** sqlite3_mutex_enter() will block and sqlite3_mutex_try() will return
5618 ** SQLITE_BUSY. ^The sqlite3_mutex_try() interface returns [SQLITE_OK]
5629 ** implemented by sqlite3_mutex_try(). On those systems, sqlite3_mutex_try()
5631 ** sqlite3_mutex_try() as an optimization so this is acceptable behavior.)^
5639 ** ^If the argument to sqlite3_mutex_enter(), sqlite3_mutex_try(), or
5648 SQLITE_API int sqlite3_mutex_try(sqlite3_mutex*);
5687 ** <li> [sqlite3_mutex_try()] </li>
8781 #define sqlite3_mutex_try(X) SQLITE_OK
16252 SQLITE_API int sqlite3_mutex_try(sqlite3_mutex *p){
16431 ** The sqlite3_mutex_enter() and sqlite3_mutex_try() routines attempt
16433 ** sqlite3_mutex_enter() will block and sqlite3_mutex_try() will return
16434 ** SQLITE_BUSY. The sqlite3_mutex_try() interface returns SQLITE_OK
16690 ** The sqlite3_mutex_enter() and sqlite3_mutex_try() routines attempt
16692 ** sqlite3_mutex_enter() will block and sqlite3_mutex_try() will return
16693 ** SQLITE_BUSY. The sqlite3_mutex_try() interface returns SQLITE_OK
16966 ** The sqlite3_mutex_enter() and sqlite3_mutex_try() routines attempt
16968 ** sqlite3_mutex_enter() will block and sqlite3_mutex_try() will return
16969 ** SQLITE_BUSY. The sqlite3_mutex_try() interface returns SQLITE_OK
17351 ** The sqlite3_mutex_enter() and sqlite3_mutex_try() routines attempt
17353 ** sqlite3_mutex_enter() will block and sqlite3_mutex_try() will return
17354 ** SQLITE_BUSY. The sqlite3_mutex_try() interface returns SQLITE_OK
17383 ** The sqlite3_mutex_try() routine is very rarely used, and when it
45096 if( sqlite3_mutex_try(p->pBt->mutex)==SQLITE_OK ){
84793 #define sqlite3_mutex_try sqlite3_api->mutex_try
85122 sqlite3_mutex_try,