Home
last modified time | relevance | path

Searched refs:sqlite3_mutex_notheld (Results 1 – 8 of 8) sorted by relevance

/sqlite-3.40.0/src/
H A Dmutex.h63 #define sqlite3_mutex_notheld(X) ((void)(X),1) macro
H A Dpcache1.c346 assert( sqlite3_mutex_notheld(pcache1.grp.mutex) ); in pcache1Alloc()
1238 assert( sqlite3_mutex_notheld(pcache1.grp.mutex) ); in sqlite3PcacheReleaseMemory()
1239 assert( sqlite3_mutex_notheld(pcache1.mutex) ); in sqlite3PcacheReleaseMemory()
H A Dmutex.c355 int sqlite3_mutex_notheld(sqlite3_mutex *p){ in sqlite3_mutex_notheld() function
H A Dbtmutex.c29 assert( sqlite3_mutex_notheld(p->pBt->mutex) ); in lockBtreeMutex()
H A Dos_unix.c739 assert( sqlite3_mutex_notheld(unixBigLock) ); /* Not a recursive mutex */ in unixEnterMutex()
1201 return sqlite3_mutex_notheld(pFile->pInode->pLockMutex); in unixFileMutexNotheld()
5945 assert( sqlite3_mutex_notheld(pInode->pLockMutex) ); in findReusableFd()
H A Dtest_quota.c44 #define sqlite3_mutex_notheld(X) ((void)(X),1) macro
H A Dsqlite.h.in7805 ** See also: [sqlite3_mutex_held()] and [sqlite3_mutex_notheld()].
7852 ** <li> [sqlite3_mutex_notheld()] </li>
7894 ** The sqlite3_mutex_held() and sqlite3_mutex_notheld() routines
7917 ** the appropriate thing to do. The sqlite3_mutex_notheld()
7922 int sqlite3_mutex_notheld(sqlite3_mutex*);
H A Dbtree.c2734 assert( sqlite3_mutex_notheld(pBt->mutex) ); in removeFromSharingList()