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.h8155 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef
8156 struct sqlite3_mutex_methods { struct
8157 int (*xMutexInit)(void);
8158 int (*xMutexEnd)(void);
8159 sqlite3_mutex *(*xMutexAlloc)(int);
8160 void (*xMutexFree)(sqlite3_mutex *);
8161 void (*xMutexEnter)(sqlite3_mutex *);
8162 int (*xMutexTry)(sqlite3_mutex *);
8163 void (*xMutexLeave)(sqlite3_mutex *);
8164 int (*xMutexHeld)(sqlite3_mutex *);
[all …]
H A Dsqlite3.c8468 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef
8469 struct sqlite3_mutex_methods { struct
8470 int (*xMutexInit)(void);
8471 int (*xMutexEnd)(void);
8472 sqlite3_mutex *(*xMutexAlloc)(int);
8473 void (*xMutexFree)(sqlite3_mutex *);
8474 void (*xMutexEnter)(sqlite3_mutex *);
8475 int (*xMutexTry)(sqlite3_mutex *);
8476 void (*xMutexLeave)(sqlite3_mutex *);
8477 int (*xMutexHeld)(sqlite3_mutex *);
[all …]