Searched defs:sqlite3_mutex_methods (Results 1 – 2 of 2) sorted by relevance
7664 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef7665 struct sqlite3_mutex_methods { struct7666 int (*xMutexInit)(void);7667 int (*xMutexEnd)(void);7668 sqlite3_mutex *(*xMutexAlloc)(int);7669 void (*xMutexFree)(sqlite3_mutex *);7670 void (*xMutexEnter)(sqlite3_mutex *);7671 int (*xMutexTry)(sqlite3_mutex *);7672 void (*xMutexLeave)(sqlite3_mutex *);7673 int (*xMutexHeld)(sqlite3_mutex *);[all …]
8759 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef8760 struct sqlite3_mutex_methods { struct8761 int (*xMutexInit)(void);8762 int (*xMutexEnd)(void);8763 sqlite3_mutex *(*xMutexAlloc)(int);8764 void (*xMutexFree)(sqlite3_mutex *);8765 void (*xMutexEnter)(sqlite3_mutex *);8766 int (*xMutexTry)(sqlite3_mutex *);8767 void (*xMutexLeave)(sqlite3_mutex *);8768 int (*xMutexHeld)(sqlite3_mutex *);[all …]