Searched defs:sqlite3_mutex_methods (Results 1 – 3 of 3) sorted by relevance
8130 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef8131 struct sqlite3_mutex_methods { struct8132 int (*xMutexInit)(void);8133 int (*xMutexEnd)(void);8134 sqlite3_mutex *(*xMutexAlloc)(int);8135 void (*xMutexFree)(sqlite3_mutex *);8136 void (*xMutexEnter)(sqlite3_mutex *);8137 int (*xMutexTry)(sqlite3_mutex *);8138 void (*xMutexLeave)(sqlite3_mutex *);8139 int (*xMutexHeld)(sqlite3_mutex *);[all …]
8443 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef8444 struct sqlite3_mutex_methods { struct8445 int (*xMutexInit)(void);8446 int (*xMutexEnd)(void);8447 sqlite3_mutex *(*xMutexAlloc)(int);8448 void (*xMutexFree)(sqlite3_mutex *);8449 void (*xMutexEnter)(sqlite3_mutex *);8450 int (*xMutexTry)(sqlite3_mutex *);8451 void (*xMutexLeave)(sqlite3_mutex *);8452 int (*xMutexHeld)(sqlite3_mutex *);[all …]
1575 struct sqlite3_mutex_methods struct