Home
last modified time | relevance | path

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

/minix3/external/public-domain/sqlite/dist/
H A Dsqlite3.h5965 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef
5966 struct sqlite3_mutex_methods { struct
5967 int (*xMutexInit)(void);
5968 int (*xMutexEnd)(void);
5969 sqlite3_mutex *(*xMutexAlloc)(int);
5970 void (*xMutexFree)(sqlite3_mutex *);
5971 void (*xMutexEnter)(sqlite3_mutex *);
5972 int (*xMutexTry)(sqlite3_mutex *);
5973 void (*xMutexLeave)(sqlite3_mutex *);
5974 int (*xMutexHeld)(sqlite3_mutex *);
[all …]
H A Dsqlite3.c5993 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef
5994 struct sqlite3_mutex_methods { struct
5995 int (*xMutexInit)(void);
5996 int (*xMutexEnd)(void);
5997 sqlite3_mutex *(*xMutexAlloc)(int);
5998 void (*xMutexFree)(sqlite3_mutex *);
5999 void (*xMutexEnter)(sqlite3_mutex *);
6000 int (*xMutexTry)(sqlite3_mutex *);
6001 void (*xMutexLeave)(sqlite3_mutex *);
6002 int (*xMutexHeld)(sqlite3_mutex *);
[all …]