Lines Matching refs:sqlite3_mutex
40 static sqlite3_mutex *noopMutexAlloc(int id){ in noopMutexAlloc()
42 return (sqlite3_mutex*)8; in noopMutexAlloc()
44 static void noopMutexFree(sqlite3_mutex *p){ UNUSED_PARAMETER(p); return; } in noopMutexFree()
45 static void noopMutexEnter(sqlite3_mutex *p){ UNUSED_PARAMETER(p); return; } in noopMutexEnter()
46 static int noopMutexTry(sqlite3_mutex *p){ in noopMutexTry()
50 static void noopMutexLeave(sqlite3_mutex *p){ UNUSED_PARAMETER(p); return; } in noopMutexLeave()
89 static int debugMutexHeld(sqlite3_mutex *pX){ in debugMutexHeld()
93 static int debugMutexNotheld(sqlite3_mutex *pX){ in debugMutexNotheld()
109 static sqlite3_mutex *debugMutexAlloc(int id){ in debugMutexAlloc()
134 return (sqlite3_mutex*)pNew; in debugMutexAlloc()
140 static void debugMutexFree(sqlite3_mutex *pX){ in debugMutexFree()
163 static void debugMutexEnter(sqlite3_mutex *pX){ in debugMutexEnter()
168 static int debugMutexTry(sqlite3_mutex *pX){ in debugMutexTry()
181 static void debugMutexLeave(sqlite3_mutex *pX){ in debugMutexLeave()