Searched defs:sqlite3_mutex_methods (Results 1 – 1 of 1) sorted by relevance
7878 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef7879 struct sqlite3_mutex_methods { struct7880 int (*xMutexInit)(void);7881 int (*xMutexEnd)(void);7882 sqlite3_mutex *(*xMutexAlloc)(int);7883 void (*xMutexFree)(sqlite3_mutex *);7884 void (*xMutexEnter)(sqlite3_mutex *);7885 int (*xMutexTry)(sqlite3_mutex *);7886 void (*xMutexLeave)(sqlite3_mutex *);7887 int (*xMutexHeld)(sqlite3_mutex *);[all …]