Home
last modified time | relevance | path

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

/third_party/sqlite/include/
Dsqlite3.h7664 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef
7665 struct sqlite3_mutex_methods { struct
7666 int (*xMutexInit)(void);
7667 int (*xMutexEnd)(void);
7668 sqlite3_mutex *(*xMutexAlloc)(int);
7669 void (*xMutexFree)(sqlite3_mutex *);
7670 void (*xMutexEnter)(sqlite3_mutex *);
7671 int (*xMutexTry)(sqlite3_mutex *);
7672 void (*xMutexLeave)(sqlite3_mutex *);
7673 int (*xMutexHeld)(sqlite3_mutex *);
[all …]
/third_party/sqlite/src/
Dsqlite3.c8759 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef
8760 struct sqlite3_mutex_methods { struct
8761 int (*xMutexInit)(void);
8762 int (*xMutexEnd)(void);
8763 sqlite3_mutex *(*xMutexAlloc)(int);
8764 void (*xMutexFree)(sqlite3_mutex *);
8765 void (*xMutexEnter)(sqlite3_mutex *);
8766 int (*xMutexTry)(sqlite3_mutex *);
8767 void (*xMutexLeave)(sqlite3_mutex *);
8768 int (*xMutexHeld)(sqlite3_mutex *);
[all …]