Home
last modified time | relevance | path

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

/netbsd-src/external/public-domain/sqlite/dist/
H A Dsqlite3.c28529 static SQLITE_WSD const sqlite3_mutex_methods *pGlobalMutexMethods; variable
28533 return pGlobalMutexMethods->xMutexHeld(((CheckMutex*)p)->mutex); in checkMutexHeld()
28536 return pGlobalMutexMethods->xMutexNotheld(((CheckMutex*)p)->mutex); in checkMutexNotheld()
28544 pGlobalMutexMethods = sqlite3DefaultMutex(); in checkMutexInit()
28548 pGlobalMutexMethods = 0; in checkMutexEnd()
28579 p->mutex = pGlobalMutexMethods->xMutexAlloc(iType); in checkMutexAlloc()
28604 pGlobalMutexMethods->xMutexFree(pCheck->mutex); in checkMutexFree()
28620 if( SQLITE_OK==pGlobalMutexMethods->xMutexTry(pCheck->mutex) ){ in checkMutexEnter()
28627 pGlobalMutexMethods->xMutexEnter(pCheck->mutex); in checkMutexEnter()
28635 return pGlobalMutexMethods->xMutexTry(pCheck->mutex); in checkMutexTry()
[all …]