Lines Matching defs:sqlite3_mutex_alloc
1575 ** Mutexes are created using [sqlite3_mutex_alloc()].
8314 ** ^The sqlite3_mutex_alloc() routine allocates a new
8315 ** mutex and returns a pointer to it. ^The sqlite3_mutex_alloc()
8317 ** mutex. The argument to sqlite3_mutex_alloc() must one of these
8338 ** cause sqlite3_mutex_alloc() to create
8348 ** ^The other allowed parameters to sqlite3_mutex_alloc() (anything other
8358 ** or SQLITE_MUTEX_RECURSIVE) is used then sqlite3_mutex_alloc()
8397 SQLITE_API sqlite3_mutex *sqlite3_mutex_alloc(int);
8436 ** <li> [sqlite3_mutex_alloc()] </li>
8518 ** The [sqlite3_mutex_alloc()] interface takes a single argument
17357 #define sqlite3_mutex_alloc(X) ((sqlite3_mutex*)8)
29023 SQLITE_API sqlite3_mutex *sqlite3_mutex_alloc(int id){
29211 ** The sqlite3_mutex_alloc() routine allocates a new
29430 ** The sqlite3_mutex_alloc() routine allocates a new
29434 ** to sqlite3_mutex_alloc() is one of these integer constants:
29453 ** The first two constants cause sqlite3_mutex_alloc() to create
29463 ** The other allowed parameters to sqlite3_mutex_alloc() each return
29472 ** or SQLITE_MUTEX_RECURSIVE) is used then sqlite3_mutex_alloc()
29978 ** The sqlite3_mutex_alloc() routine allocates a new
29982 ** to sqlite3_mutex_alloc() is one of these integer constants:
30001 ** The first two constants cause sqlite3_mutex_alloc() to create
30011 ** The other allowed parameters to sqlite3_mutex_alloc() each return
30020 ** or SQLITE_MUTEX_RECURSIVE) is used then sqlite3_mutex_alloc()
39840 pInode->pLockMutex = sqlite3_mutex_alloc(SQLITE_MUTEX_FAST);
43095 pShmNode->pShmMutex = sqlite3_mutex_alloc(SQLITE_MUTEX_FAST);
43104 pShmNode->aMutex[ii] = sqlite3_mutex_alloc(SQLITE_MUTEX_FAST);
50619 pShmNode->mutex = sqlite3_mutex_alloc(SQLITE_MUTEX_FAST);
53454 p->pMutex = sqlite3_mutex_alloc(SQLITE_MUTEX_FAST);
136967 #define sqlite3_mutex_alloc sqlite3_api->mutex_alloc
137443 sqlite3_mutex_alloc,
223502 pNew->mutex = sqlite3_mutex_alloc(SQLITE_MUTEX_RECURSIVE);