Lines Matching refs:sqlite3_mutex
57 sqlite3_mutex *mutex;
69 static int checkMutexHeld(sqlite3_mutex *p){ in checkMutexHeld()
72 static int checkMutexNotheld(sqlite3_mutex *p){ in checkMutexNotheld()
92 static sqlite3_mutex *checkMutexAlloc(int iType){ in checkMutexAlloc()
125 return (sqlite3_mutex*)p; in checkMutexAlloc()
131 static void checkMutexFree(sqlite3_mutex *p){ in checkMutexFree()
154 static void checkMutexEnter(sqlite3_mutex *p){ in checkMutexEnter()
170 static int checkMutexTry(sqlite3_mutex *p){ in checkMutexTry()
178 static void checkMutexLeave(sqlite3_mutex *p){ in checkMutexLeave()
207 void sqlite3MutexWarnOnContention(sqlite3_mutex *p){ in sqlite3MutexWarnOnContention()
281 sqlite3_mutex *sqlite3_mutex_alloc(int id){ in sqlite3_mutex_alloc()
290 sqlite3_mutex *sqlite3MutexAlloc(int id){ in sqlite3MutexAlloc()
302 void sqlite3_mutex_free(sqlite3_mutex *p){ in sqlite3_mutex_free()
313 void sqlite3_mutex_enter(sqlite3_mutex *p){ in sqlite3_mutex_enter()
324 int sqlite3_mutex_try(sqlite3_mutex *p){ in sqlite3_mutex_try()
339 void sqlite3_mutex_leave(sqlite3_mutex *p){ in sqlite3_mutex_leave()
351 int sqlite3_mutex_held(sqlite3_mutex *p){ in sqlite3_mutex_held()
355 int sqlite3_mutex_notheld(sqlite3_mutex *p){ in sqlite3_mutex_notheld()