Home | History | Annotate | Download | only in orig

Lines Matching defs:sqlite3_mutex_try

6077 ** ^The sqlite3_mutex_enter() and sqlite3_mutex_try() routines attempt
6079 ** sqlite3_mutex_enter() will block and sqlite3_mutex_try() will return
6080 ** SQLITE_BUSY. ^The sqlite3_mutex_try() interface returns [SQLITE_OK]
6091 ** implemented by sqlite3_mutex_try(). On those systems, sqlite3_mutex_try()
6093 ** sqlite3_mutex_try() as an optimization so this is acceptable behavior.)^
6101 ** ^If the argument to sqlite3_mutex_enter(), sqlite3_mutex_try(), or
6110 SQLITE_API int sqlite3_mutex_try(sqlite3_mutex*);
6149 ** <li> [sqlite3_mutex_try()] </li>
9574 #define sqlite3_mutex_try(X) SQLITE_OK
17379 SQLITE_API int sqlite3_mutex_try(sqlite3_mutex *p){
17558 ** The sqlite3_mutex_enter() and sqlite3_mutex_try() routines attempt
17560 ** sqlite3_mutex_enter() will block and sqlite3_mutex_try() will return
17561 ** SQLITE_BUSY. The sqlite3_mutex_try() interface returns SQLITE_OK
17833 ** The sqlite3_mutex_enter() and sqlite3_mutex_try() routines attempt
17835 ** sqlite3_mutex_enter() will block and sqlite3_mutex_try() will return
17836 ** SQLITE_BUSY. The sqlite3_mutex_try() interface returns SQLITE_OK
18096 ** The sqlite3_mutex_enter() and sqlite3_mutex_try() routines attempt
18098 ** sqlite3_mutex_enter() will block and sqlite3_mutex_try() will return
18099 ** SQLITE_BUSY. The sqlite3_mutex_try() interface returns SQLITE_OK
18481 ** The sqlite3_mutex_enter() and sqlite3_mutex_try() routines attempt
18483 ** sqlite3_mutex_enter() will block and sqlite3_mutex_try() will return
18484 ** SQLITE_BUSY. The sqlite3_mutex_try() interface returns SQLITE_OK
18513 ** The sqlite3_mutex_try() routine is very rarely used, and when it
49175 if( sqlite3_mutex_try(p->pBt->mutex)==SQLITE_OK ){
91370 #define sqlite3_mutex_try sqlite3_api->mutex_try
91711 sqlite3_mutex_try,