Home
last modified time | relevance | path

Searched refs:sqlite3_mutex_alloc (Results 1 – 16 of 16) sorted by relevance

/sqlite-3.40.0/src/
H A Dtest_sqllog.c470 sqlite3_mutex *mainmtx = sqlite3_mutex_alloc(SQLITE_MUTEX_STATIC_MAIN); in testSqllog()
479 sqllogglobal.mutex = sqlite3_mutex_alloc(SQLITE_MUTEX_RECURSIVE); in testSqllog()
H A Dmutex.h57 #define sqlite3_mutex_alloc(X) ((sqlite3_mutex*)8) macro
H A Dtest_journal.c214 sqlite3_mutex_enter(sqlite3_mutex_alloc(SQLITE_MUTEX_STATIC_PRNG)); in enterJtMutex()
217 sqlite3_mutex_leave(sqlite3_mutex_alloc(SQLITE_MUTEX_STATIC_PRNG)); in leaveJtMutex()
H A Dmutex.c281 sqlite3_mutex *sqlite3_mutex_alloc(int id){ in sqlite3_mutex_alloc() function
H A Dtest_mutex.c322 sqlite3_mutex *p = sqlite3_mutex_alloc(SQLITE_MUTEX_FAST); in test_alloc_mutex()
H A Dloadext.c307 sqlite3_mutex_alloc,
H A Dtest4.c64 sqlite3_mutex *pMutex = sqlite3_mutex_alloc(SQLITE_MUTEX_STATIC_APP1); in test_barrier()
H A Dtest_quota.c38 #define sqlite3_mutex_alloc(X) ((sqlite3_mutex*)8) macro
755 gQuota.pMutex = sqlite3_mutex_alloc(SQLITE_MUTEX_FAST); in sqlite3_quota_initialize()
H A Dmemdb.c546 p->pMutex = sqlite3_mutex_alloc(SQLITE_MUTEX_FAST); in memdbOpen()
H A Dsqlite3ext.h527 #define sqlite3_mutex_alloc sqlite3_api->mutex_alloc macro
H A Dos_unix.c1431 pInode->pLockMutex = sqlite3_mutex_alloc(SQLITE_MUTEX_FAST); in findInodeInfo()
4649 pShmNode->pShmMutex = sqlite3_mutex_alloc(SQLITE_MUTEX_FAST); in unixOpenSharedMemory()
H A Dsqlite.h.in1252 ** Mutexes are created using [sqlite3_mutex_alloc()].
7726 ** ^The sqlite3_mutex_alloc() routine allocates a new
7727 ** mutex and returns a pointer to it. ^The sqlite3_mutex_alloc()
7729 ** mutex. The argument to sqlite3_mutex_alloc() must one of these
7750 ** cause sqlite3_mutex_alloc() to create
7760 ** ^The other allowed parameters to sqlite3_mutex_alloc() (anything other
7770 ** or SQLITE_MUTEX_RECURSIVE) is used then sqlite3_mutex_alloc()
7807 sqlite3_mutex *sqlite3_mutex_alloc(int);
7846 ** <li> [sqlite3_mutex_alloc()] </li>
7928 ** The [sqlite3_mutex_alloc()] interface takes a single argument
H A Dos_win.c3968 pShmNode->mutex = sqlite3_mutex_alloc(SQLITE_MUTEX_FAST);
/sqlite-3.40.0/ext/misc/
H A Dvfslog.c250 pMutex = sqlite3_mutex_alloc(SQLITE_MUTEX_STATIC_MASTER); in vlogLogClose()
281 pMutex = sqlite3_mutex_alloc(SQLITE_MUTEX_STATIC_MASTER); in vlogLogOpen()
/sqlite-3.40.0/ext/recover/
H A Dsqlite3recover.c297 sqlite3_mutex_enter(sqlite3_mutex_alloc(RECOVER_MUTEX_ID)); in recoverEnterMutex()
300 sqlite3_mutex_leave(sqlite3_mutex_alloc(RECOVER_MUTEX_ID)); in recoverLeaveMutex()
305 assert( sqlite3_mutex_held(sqlite3_mutex_alloc(RECOVER_MUTEX_ID)) ); in recoverAssertMutexHeld()
/sqlite-3.40.0/ext/rbu/
H A Dsqlite3rbu.c5338 pNew->mutex = sqlite3_mutex_alloc(SQLITE_MUTEX_RECURSIVE); in sqlite3rbu_create_vfs()