Searched defs:sqlite3_mutex_methods (Results 1 – 1 of 1) sorted by relevance
8191 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef8192 struct sqlite3_mutex_methods { struct8193 int (*xMutexInit)(void);8194 int (*xMutexEnd)(void);8195 sqlite3_mutex *(*xMutexAlloc)(int);8196 void (*xMutexFree)(sqlite3_mutex *);8197 void (*xMutexEnter)(sqlite3_mutex *);8198 int (*xMutexTry)(sqlite3_mutex *);8199 void (*xMutexLeave)(sqlite3_mutex *);8200 int (*xMutexHeld)(sqlite3_mutex *);[all …]