Home
last modified time | relevance | path

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

/third_party/sqlite/include/
Dsqlite3.h7930 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef
7931 struct sqlite3_mutex_methods { struct
7932 int (*xMutexInit)(void);
7933 int (*xMutexEnd)(void);
7934 sqlite3_mutex *(*xMutexAlloc)(int);
7935 void (*xMutexFree)(sqlite3_mutex *);
7936 void (*xMutexEnter)(sqlite3_mutex *);
7937 int (*xMutexTry)(sqlite3_mutex *);
7938 void (*xMutexLeave)(sqlite3_mutex *);
7939 int (*xMutexHeld)(sqlite3_mutex *);
[all …]