Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/sqlite3/
H A Dsqlite3.h7753 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef
7754 struct sqlite3_mutex_methods { struct
7755 int (*xMutexInit)(void);
7756 int (*xMutexEnd)(void);
7757 sqlite3_mutex *(*xMutexAlloc)(int);
7758 void (*xMutexFree)(sqlite3_mutex *);
7759 void (*xMutexEnter)(sqlite3_mutex *);
7760 int (*xMutexTry)(sqlite3_mutex *);
7761 void (*xMutexLeave)(sqlite3_mutex *);
7762 int (*xMutexHeld)(sqlite3_mutex *);
[all …]
H A Dsqlite3.c8059 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef
8060 struct sqlite3_mutex_methods { struct
8061 int (*xMutexInit)(void);
8062 int (*xMutexEnd)(void);
8063 sqlite3_mutex *(*xMutexAlloc)(int);
8064 void (*xMutexFree)(sqlite3_mutex *);
8065 void (*xMutexEnter)(sqlite3_mutex *);
8066 int (*xMutexTry)(sqlite3_mutex *);
8067 void (*xMutexLeave)(sqlite3_mutex *);
8068 int (*xMutexHeld)(sqlite3_mutex *);
[all …]