Home
last modified time | relevance | path

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

/third_party/sqlite/include/
Dsqlite3.h8191 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef
8192 struct sqlite3_mutex_methods { struct
8193 int (*xMutexInit)(void);
8194 int (*xMutexEnd)(void);
8195 sqlite3_mutex *(*xMutexAlloc)(int);
8196 void (*xMutexFree)(sqlite3_mutex *);
8197 void (*xMutexEnter)(sqlite3_mutex *);
8198 int (*xMutexTry)(sqlite3_mutex *);
8199 void (*xMutexLeave)(sqlite3_mutex *);
8200 int (*xMutexHeld)(sqlite3_mutex *);
[all …]