Searched defs:sqlite3_mutex_methods (Results 1 – 2 of 2) sorted by relevance
5965 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef5966 struct sqlite3_mutex_methods { struct5967 int (*xMutexInit)(void);5968 int (*xMutexEnd)(void);5969 sqlite3_mutex *(*xMutexAlloc)(int);5970 void (*xMutexFree)(sqlite3_mutex *);5971 void (*xMutexEnter)(sqlite3_mutex *);5972 int (*xMutexTry)(sqlite3_mutex *);5973 void (*xMutexLeave)(sqlite3_mutex *);5974 int (*xMutexHeld)(sqlite3_mutex *);[all …]
5993 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef5994 struct sqlite3_mutex_methods { struct5995 int (*xMutexInit)(void);5996 int (*xMutexEnd)(void);5997 sqlite3_mutex *(*xMutexAlloc)(int);5998 void (*xMutexFree)(sqlite3_mutex *);5999 void (*xMutexEnter)(sqlite3_mutex *);6000 int (*xMutexTry)(sqlite3_mutex *);6001 void (*xMutexLeave)(sqlite3_mutex *);6002 int (*xMutexHeld)(sqlite3_mutex *);[all …]