Home
last modified time | relevance | path

Searched defs:sqlite3_mutex_methods (Results 1 – 2 of 2) 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 …]
/third_party/sqlite/src/
Dsqlite3.c8239 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef
8240 struct sqlite3_mutex_methods { struct
8241 int (*xMutexInit)(void);
8242 int (*xMutexEnd)(void);
8243 sqlite3_mutex *(*xMutexAlloc)(int);
8244 void (*xMutexFree)(sqlite3_mutex *);
8245 void (*xMutexEnter)(sqlite3_mutex *);
8246 int (*xMutexTry)(sqlite3_mutex *);
8247 void (*xMutexLeave)(sqlite3_mutex *);
8248 int (*xMutexHeld)(sqlite3_mutex *);
[all …]