Searched defs:sqlite3_mutex_methods (Results 1 – 2 of 2) sorted by relevance
7753 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef7754 struct sqlite3_mutex_methods { struct7755 int (*xMutexInit)(void);7756 int (*xMutexEnd)(void);7757 sqlite3_mutex *(*xMutexAlloc)(int);7758 void (*xMutexFree)(sqlite3_mutex *);7759 void (*xMutexEnter)(sqlite3_mutex *);7760 int (*xMutexTry)(sqlite3_mutex *);7761 void (*xMutexLeave)(sqlite3_mutex *);7762 int (*xMutexHeld)(sqlite3_mutex *);[all …]
8059 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef8060 struct sqlite3_mutex_methods { struct8061 int (*xMutexInit)(void);8062 int (*xMutexEnd)(void);8063 sqlite3_mutex *(*xMutexAlloc)(int);8064 void (*xMutexFree)(sqlite3_mutex *);8065 void (*xMutexEnter)(sqlite3_mutex *);8066 int (*xMutexTry)(sqlite3_mutex *);8067 void (*xMutexLeave)(sqlite3_mutex *);8068 int (*xMutexHeld)(sqlite3_mutex *);[all …]