Lines Matching defs:sqlite3_mutex_try

8140 ** ^The sqlite3_mutex_enter() and sqlite3_mutex_try() routines attempt
8142 ** sqlite3_mutex_enter() will block and sqlite3_mutex_try() will return
8143 ** SQLITE_BUSY. ^The sqlite3_mutex_try() interface returns [SQLITE_OK]
8152 ** implemented by sqlite3_mutex_try(). On those systems, sqlite3_mutex_try()
8154 ** sqlite3_mutex_try() as an optimization so this is acceptable
8162 ** ^If the argument to sqlite3_mutex_enter(), sqlite3_mutex_try(), or
8171 SQLITE_API int sqlite3_mutex_try(sqlite3_mutex*);
8210 ** <li> [sqlite3_mutex_try()] </li>
16734 #define sqlite3_mutex_try(X) SQLITE_OK
27892 SQLITE_API int sqlite3_mutex_try(sqlite3_mutex *p){
28085 ** The sqlite3_mutex_enter() and sqlite3_mutex_try() routines attempt
28087 ** sqlite3_mutex_enter() will block and sqlite3_mutex_try() will return
28088 ** SQLITE_BUSY. The sqlite3_mutex_try() interface returns SQLITE_OK
28391 ** The sqlite3_mutex_enter() and sqlite3_mutex_try() routines attempt
28393 ** sqlite3_mutex_enter() will block and sqlite3_mutex_try() will return
28394 ** SQLITE_BUSY. The sqlite3_mutex_try() interface returns SQLITE_OK
28913 ** The sqlite3_mutex_enter() and sqlite3_mutex_try() routines attempt
28915 ** sqlite3_mutex_enter() will block and sqlite3_mutex_try() will return
28916 ** SQLITE_BUSY. The sqlite3_mutex_try() interface returns SQLITE_OK
28954 ** The sqlite3_mutex_try() routine is very rarely used, and when it
68394 if( sqlite3_mutex_try(p->pBt->mutex)==SQLITE_OK ){
132460 #define sqlite3_mutex_try sqlite3_api->mutex_try
132934 sqlite3_mutex_try,