Home
last modified time | relevance | path

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

/third_party/sqlite/include/
Dsqlite3.h7947 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef
7948 struct sqlite3_mutex_methods { struct
7949 int (*xMutexInit)(void);
7950 int (*xMutexEnd)(void);
7951 sqlite3_mutex *(*xMutexAlloc)(int);
7952 void (*xMutexFree)(sqlite3_mutex *);
7953 void (*xMutexEnter)(sqlite3_mutex *);
7954 int (*xMutexTry)(sqlite3_mutex *);
7955 void (*xMutexLeave)(sqlite3_mutex *);
7956 int (*xMutexHeld)(sqlite3_mutex *);
[all …]
/third_party/sqlite/src/
Dsqlite3.c8267 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef
8268 struct sqlite3_mutex_methods { struct
8269 int (*xMutexInit)(void);
8270 int (*xMutexEnd)(void);
8271 sqlite3_mutex *(*xMutexAlloc)(int);
8272 void (*xMutexFree)(sqlite3_mutex *);
8273 void (*xMutexEnter)(sqlite3_mutex *);
8274 int (*xMutexTry)(sqlite3_mutex *);
8275 void (*xMutexLeave)(sqlite3_mutex *);
8276 int (*xMutexHeld)(sqlite3_mutex *);
[all …]