Searched defs:sqlite3_mutex_methods (Results 1 – 2 of 2) sorted by relevance
7791 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef7792 struct sqlite3_mutex_methods { struct7793 int (*xMutexInit)(void);7794 int (*xMutexEnd)(void);7795 sqlite3_mutex *(*xMutexAlloc)(int);7796 void (*xMutexFree)(sqlite3_mutex *);7797 void (*xMutexEnter)(sqlite3_mutex *);7798 int (*xMutexTry)(sqlite3_mutex *);7799 void (*xMutexLeave)(sqlite3_mutex *);7800 int (*xMutexHeld)(sqlite3_mutex *);[all …]
8104 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef8105 struct sqlite3_mutex_methods { struct8106 int (*xMutexInit)(void);8107 int (*xMutexEnd)(void);8108 sqlite3_mutex *(*xMutexAlloc)(int);8109 void (*xMutexFree)(sqlite3_mutex *);8110 void (*xMutexEnter)(sqlite3_mutex *);8111 int (*xMutexTry)(sqlite3_mutex *);8112 void (*xMutexLeave)(sqlite3_mutex *);8113 int (*xMutexHeld)(sqlite3_mutex *);[all …]