Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.h8366 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef
8367 struct sqlite3_mutex_methods { struct
8368 int (*xMutexInit)(void);
8369 int (*xMutexEnd)(void);
8370 sqlite3_mutex *(*xMutexAlloc)(int);
8371 void (*xMutexFree)(sqlite3_mutex *);
8372 void (*xMutexEnter)(sqlite3_mutex *);
8373 int (*xMutexTry)(sqlite3_mutex *);
8374 void (*xMutexLeave)(sqlite3_mutex *);
8375 int (*xMutexHeld)(sqlite3_mutex *);
[all …]
H A Dsqlite3.c8685 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef
8686 struct sqlite3_mutex_methods { struct
8687 int (*xMutexInit)(void);
8688 int (*xMutexEnd)(void);
8689 sqlite3_mutex *(*xMutexAlloc)(int);
8690 void (*xMutexFree)(sqlite3_mutex *);
8691 void (*xMutexEnter)(sqlite3_mutex *);
8692 int (*xMutexTry)(sqlite3_mutex *);
8693 void (*xMutexLeave)(sqlite3_mutex *);
8694 int (*xMutexHeld)(sqlite3_mutex *);
[all …]