Searched defs:sqlite3_mutex_methods (Results 1 – 4 of 4) sorted by relevance
6622 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef6623 struct sqlite3_mutex_methods { struct6624 int (*xMutexInit)(void);6625 int (*xMutexEnd)(void);6626 sqlite3_mutex *(*xMutexAlloc)(int);6627 void (*xMutexFree)(sqlite3_mutex *);6628 void (*xMutexEnter)(sqlite3_mutex *);6629 int (*xMutexTry)(sqlite3_mutex *);6630 void (*xMutexLeave)(sqlite3_mutex *);6631 int (*xMutexHeld)(sqlite3_mutex *);[all …]
6899 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef6900 struct sqlite3_mutex_methods { struct6901 int (*xMutexInit)(void);6902 int (*xMutexEnd)(void);6903 sqlite3_mutex *(*xMutexAlloc)(int);6904 void (*xMutexFree)(sqlite3_mutex *);6905 void (*xMutexEnter)(sqlite3_mutex *);6906 int (*xMutexTry)(sqlite3_mutex *);6907 void (*xMutexLeave)(sqlite3_mutex *);6908 int (*xMutexHeld)(sqlite3_mutex *);[all …]