Home
last modified time | relevance | path

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

/external/sqlite/dist/
Dsqlite3.h6622 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef
6623 struct sqlite3_mutex_methods { struct
6624 int (*xMutexInit)(void);
6625 int (*xMutexEnd)(void);
6626 sqlite3_mutex *(*xMutexAlloc)(int);
6627 void (*xMutexFree)(sqlite3_mutex *);
6628 void (*xMutexEnter)(sqlite3_mutex *);
6629 int (*xMutexTry)(sqlite3_mutex *);
6630 void (*xMutexLeave)(sqlite3_mutex *);
6631 int (*xMutexHeld)(sqlite3_mutex *);
[all …]
Dsqlite3.c6899 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef
6900 struct sqlite3_mutex_methods { struct
6901 int (*xMutexInit)(void);
6902 int (*xMutexEnd)(void);
6903 sqlite3_mutex *(*xMutexAlloc)(int);
6904 void (*xMutexFree)(sqlite3_mutex *);
6905 void (*xMutexEnter)(sqlite3_mutex *);
6906 int (*xMutexTry)(sqlite3_mutex *);
6907 void (*xMutexLeave)(sqlite3_mutex *);
6908 int (*xMutexHeld)(sqlite3_mutex *);
[all …]
/external/sqlite/dist/orig/
Dsqlite3.h6622 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef
6623 struct sqlite3_mutex_methods { struct
6624 int (*xMutexInit)(void);
6625 int (*xMutexEnd)(void);
6626 sqlite3_mutex *(*xMutexAlloc)(int);
6627 void (*xMutexFree)(sqlite3_mutex *);
6628 void (*xMutexEnter)(sqlite3_mutex *);
6629 int (*xMutexTry)(sqlite3_mutex *);
6630 void (*xMutexLeave)(sqlite3_mutex *);
6631 int (*xMutexHeld)(sqlite3_mutex *);
[all …]
Dsqlite3.c6899 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef
6900 struct sqlite3_mutex_methods { struct
6901 int (*xMutexInit)(void);
6902 int (*xMutexEnd)(void);
6903 sqlite3_mutex *(*xMutexAlloc)(int);
6904 void (*xMutexFree)(sqlite3_mutex *);
6905 void (*xMutexEnter)(sqlite3_mutex *);
6906 int (*xMutexTry)(sqlite3_mutex *);
6907 void (*xMutexLeave)(sqlite3_mutex *);
6908 int (*xMutexHeld)(sqlite3_mutex *);
[all …]