Lines Matching defs:sqlite3_mutex_alloc
1412 ** Mutexes are created using [sqlite3_mutex_alloc()].
6027 ** ^The sqlite3_mutex_alloc() routine allocates a new
6031 ** to sqlite3_mutex_alloc() is one of these integer constants:
6045 ** cause sqlite3_mutex_alloc() to create
6055 ** ^The other allowed parameters to sqlite3_mutex_alloc() (anything other
6065 ** or SQLITE_MUTEX_RECURSIVE) is used then sqlite3_mutex_alloc()
6107 SQLITE_API sqlite3_mutex *sqlite3_mutex_alloc(int);
6146 ** <li> [sqlite3_mutex_alloc()] </li>
6228 ** The [sqlite3_mutex_alloc()] interface takes a single argument
9571 #define sqlite3_mutex_alloc(X) ((sqlite3_mutex*)8)
17341 SQLITE_API sqlite3_mutex *sqlite3_mutex_alloc(int id){
17519 ** The sqlite3_mutex_alloc() routine allocates a new
17674 ** The sqlite3_mutex_alloc() routine allocates a new
17678 ** to sqlite3_mutex_alloc() is one of these integer constants:
17691 ** The first two constants cause sqlite3_mutex_alloc() to create
17701 ** The other allowed parameters to sqlite3_mutex_alloc() each return
17710 ** or SQLITE_MUTEX_RECURSIVE) is used then sqlite3_mutex_alloc()
17986 ** The sqlite3_mutex_alloc() routine allocates a new
17990 ** to sqlite3_mutex_alloc() is one of these integer constants:
18003 ** The first two constants cause sqlite3_mutex_alloc() to create
18013 ** The other allowed parameters to sqlite3_mutex_alloc() each return
18022 ** or SQLITE_MUTEX_RECURSIVE) is used then sqlite3_mutex_alloc()
18396 ** The sqlite3_mutex_alloc() routine allocates a new
18400 ** to sqlite3_mutex_alloc() is one of these integer constants:
18413 ** The first two constants cause sqlite3_mutex_alloc() to create
18423 ** The other allowed parameters to sqlite3_mutex_alloc() each return
18432 ** or SQLITE_MUTEX_RECURSIVE) is used then sqlite3_mutex_alloc()
23814 pNode->mutex = sqlite3_mutex_alloc(SQLITE_MUTEX_FAST);
28936 pShmNode->mutex = sqlite3_mutex_alloc(SQLITE_MUTEX_FAST);
34610 pShmNode->mutex = sqlite3_mutex_alloc(SQLITE_MUTEX_FAST);
37375 pcache1.grp.mutex = sqlite3_mutex_alloc(SQLITE_MUTEX_STATIC_LRU);
37376 pcache1.mutex = sqlite3_mutex_alloc(SQLITE_MUTEX_STATIC_PMEM);
91366 #define sqlite3_mutex_alloc sqlite3_api->mutex_alloc
91707 sqlite3_mutex_alloc,