Searched defs:sqlite3_mutex_methods (Results 1 – 2 of 2) sorted by relevance
7947 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef7948 struct sqlite3_mutex_methods { struct7949 int (*xMutexInit)(void);7950 int (*xMutexEnd)(void);7951 sqlite3_mutex *(*xMutexAlloc)(int);7952 void (*xMutexFree)(sqlite3_mutex *);7953 void (*xMutexEnter)(sqlite3_mutex *);7954 int (*xMutexTry)(sqlite3_mutex *);7955 void (*xMutexLeave)(sqlite3_mutex *);7956 int (*xMutexHeld)(sqlite3_mutex *);[all …]
8267 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef8268 struct sqlite3_mutex_methods { struct8269 int (*xMutexInit)(void);8270 int (*xMutexEnd)(void);8271 sqlite3_mutex *(*xMutexAlloc)(int);8272 void (*xMutexFree)(sqlite3_mutex *);8273 void (*xMutexEnter)(sqlite3_mutex *);8274 int (*xMutexTry)(sqlite3_mutex *);8275 void (*xMutexLeave)(sqlite3_mutex *);8276 int (*xMutexHeld)(sqlite3_mutex *);[all …]