Searched defs:sqlite3_mutex_methods (Results 1 – 2 of 2) 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 …]
8239 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef8240 struct sqlite3_mutex_methods { struct8241 int (*xMutexInit)(void);8242 int (*xMutexEnd)(void);8243 sqlite3_mutex *(*xMutexAlloc)(int);8244 void (*xMutexFree)(sqlite3_mutex *);8245 void (*xMutexEnter)(sqlite3_mutex *);8246 int (*xMutexTry)(sqlite3_mutex *);8247 void (*xMutexLeave)(sqlite3_mutex *);8248 int (*xMutexHeld)(sqlite3_mutex *);[all …]