Home
last modified time | relevance | path

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

/netbsd/src/external/public-domain/sqlite/dist/
Dsqlite3.h8130 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef
8131 struct sqlite3_mutex_methods { struct
8132 int (*xMutexInit)(void);
8133 int (*xMutexEnd)(void);
8134 sqlite3_mutex *(*xMutexAlloc)(int);
8135 void (*xMutexFree)(sqlite3_mutex *);
8136 void (*xMutexEnter)(sqlite3_mutex *);
8137 int (*xMutexTry)(sqlite3_mutex *);
8138 void (*xMutexLeave)(sqlite3_mutex *);
8139 int (*xMutexHeld)(sqlite3_mutex *);
[all …]
Dsqlite3.c8443 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef
8444 struct sqlite3_mutex_methods { struct
8445 int (*xMutexInit)(void);
8446 int (*xMutexEnd)(void);
8447 sqlite3_mutex *(*xMutexAlloc)(int);
8448 void (*xMutexFree)(sqlite3_mutex *);
8449 void (*xMutexEnter)(sqlite3_mutex *);
8450 int (*xMutexTry)(sqlite3_mutex *);
8451 void (*xMutexLeave)(sqlite3_mutex *);
8452 int (*xMutexHeld)(sqlite3_mutex *);
[all …]