Home
last modified time | relevance | path

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

/netbsd-src/external/public-domain/sqlite/dist/
H A 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 …]
H A 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 …]
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/etc/c/
H A Dsqlite3.d1575 struct sqlite3_mutex_methods struct