Home
last modified time | relevance | path

Searched defs:sqlite3_mutex_methods (Results 1 – 1 of 1) sorted by relevance

/sqlite-3.40.0/src/
H A Dsqlite.h.in7878 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef
7879 struct sqlite3_mutex_methods { struct
7880 int (*xMutexInit)(void);
7881 int (*xMutexEnd)(void);
7882 sqlite3_mutex *(*xMutexAlloc)(int);
7883 void (*xMutexFree)(sqlite3_mutex *);
7884 void (*xMutexEnter)(sqlite3_mutex *);
7885 int (*xMutexTry)(sqlite3_mutex *);
7886 void (*xMutexLeave)(sqlite3_mutex *);
7887 int (*xMutexHeld)(sqlite3_mutex *);
[all …]