Home
last modified time | relevance | path

Searched refs:sqlite3_mutex (Results 1 – 3 of 3) sorted by relevance

/freebsd-13.1/contrib/sqlite3/
H A Dsqlite3.h1244 typedef struct sqlite3_mutex sqlite3_mutex; typedef
7682 SQLITE_API sqlite3_mutex *sqlite3_mutex_alloc(int);
7685 SQLITE_API int sqlite3_mutex_try(sqlite3_mutex*);
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 *);
7763 int (*xMutexNotheld)(sqlite3_mutex *);
[all …]
H A Dsqlite3ext.h184 sqlite3_mutex *(*mutex_alloc)(int);
185 void (*mutex_enter)(sqlite3_mutex*);
186 void (*mutex_free)(sqlite3_mutex*);
187 void (*mutex_leave)(sqlite3_mutex*);
188 int (*mutex_try)(sqlite3_mutex*);
222 sqlite3_mutex *(*db_mutex)(sqlite3*);
H A Dsqlite3.c1550 typedef struct sqlite3_mutex sqlite3_mutex; typedef
24277 sqlite3_mutex *mutex;
24895 sqlite3_mutex *mutex;
25455 sqlite3_mutex *mutex;
26132 sqlite3_mutex *mutex;
26665 sqlite3_mutex *mutex;
27231 struct sqlite3_mutex {
27358 sqlite3_mutex *p;
27716 struct sqlite3_mutex {
27892 sqlite3_mutex *p;
[all …]