Searched defs:sqlite3_mutex_methods (Results 1 – 1 of 1) sorted by relevance
7930 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef7931 struct sqlite3_mutex_methods { struct7932 int (*xMutexInit)(void);7933 int (*xMutexEnd)(void);7934 sqlite3_mutex *(*xMutexAlloc)(int);7935 void (*xMutexFree)(sqlite3_mutex *);7936 void (*xMutexEnter)(sqlite3_mutex *);7937 int (*xMutexTry)(sqlite3_mutex *);7938 void (*xMutexLeave)(sqlite3_mutex *);7939 int (*xMutexHeld)(sqlite3_mutex *);[all …]