Home
last modified time | relevance | path

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

/freebsd-12.1/crypto/heimdal/lib/sqlite/
H A Dsqlite3.h5449 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef
5450 struct sqlite3_mutex_methods { struct
5451 int (*xMutexInit)(void);
5452 int (*xMutexEnd)(void);
5453 sqlite3_mutex *(*xMutexAlloc)(int);
5454 void (*xMutexFree)(sqlite3_mutex *);
5455 void (*xMutexEnter)(sqlite3_mutex *);
5456 int (*xMutexTry)(sqlite3_mutex *);
5457 void (*xMutexLeave)(sqlite3_mutex *);
5458 int (*xMutexHeld)(sqlite3_mutex *);
[all …]
H A Dsqlite3.c6002 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef
6003 struct sqlite3_mutex_methods { struct
6004 int (*xMutexInit)(void);
6005 int (*xMutexEnd)(void);
6006 sqlite3_mutex *(*xMutexAlloc)(int);
6007 void (*xMutexFree)(sqlite3_mutex *);
6008 void (*xMutexEnter)(sqlite3_mutex *);
6009 int (*xMutexTry)(sqlite3_mutex *);
6010 void (*xMutexLeave)(sqlite3_mutex *);
6011 int (*xMutexHeld)(sqlite3_mutex *);
[all …]
/freebsd-12.1/contrib/sqlite3/
H A Dsqlite3.h7522 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef
7523 struct sqlite3_mutex_methods { struct
7524 int (*xMutexInit)(void);
7525 int (*xMutexEnd)(void);
7526 sqlite3_mutex *(*xMutexAlloc)(int);
7527 void (*xMutexFree)(sqlite3_mutex *);
7528 void (*xMutexEnter)(sqlite3_mutex *);
7529 int (*xMutexTry)(sqlite3_mutex *);
7530 void (*xMutexLeave)(sqlite3_mutex *);
7531 int (*xMutexHeld)(sqlite3_mutex *);
[all …]
H A Dsqlite3.c8561 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef
8562 struct sqlite3_mutex_methods { struct
8563 int (*xMutexInit)(void);
8564 int (*xMutexEnd)(void);
8565 sqlite3_mutex *(*xMutexAlloc)(int);
8566 void (*xMutexFree)(sqlite3_mutex *);
8567 void (*xMutexEnter)(sqlite3_mutex *);
8568 int (*xMutexTry)(sqlite3_mutex *);
8569 void (*xMutexLeave)(sqlite3_mutex *);
8570 int (*xMutexHeld)(sqlite3_mutex *);
[all …]