Searched defs:sqlite3_mutex_methods (Results 1 – 2 of 2) sorted by relevance
8366 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef8367 struct sqlite3_mutex_methods { struct8368 int (*xMutexInit)(void);8369 int (*xMutexEnd)(void);8370 sqlite3_mutex *(*xMutexAlloc)(int);8371 void (*xMutexFree)(sqlite3_mutex *);8372 void (*xMutexEnter)(sqlite3_mutex *);8373 int (*xMutexTry)(sqlite3_mutex *);8374 void (*xMutexLeave)(sqlite3_mutex *);8375 int (*xMutexHeld)(sqlite3_mutex *);[all …]
8685 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef8686 struct sqlite3_mutex_methods { struct8687 int (*xMutexInit)(void);8688 int (*xMutexEnd)(void);8689 sqlite3_mutex *(*xMutexAlloc)(int);8690 void (*xMutexFree)(sqlite3_mutex *);8691 void (*xMutexEnter)(sqlite3_mutex *);8692 int (*xMutexTry)(sqlite3_mutex *);8693 void (*xMutexLeave)(sqlite3_mutex *);8694 int (*xMutexHeld)(sqlite3_mutex *);[all …]