Home
last modified time | relevance | path

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

/PHP-5.5/ext/sqlite3/libsqlite/
H A Dsqlite3.h6202 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef
6203 struct sqlite3_mutex_methods { struct
6204 int (*xMutexInit)(void);
6205 int (*xMutexEnd)(void);
6206 sqlite3_mutex *(*xMutexAlloc)(int);
6207 void (*xMutexFree)(sqlite3_mutex *);
6208 void (*xMutexEnter)(sqlite3_mutex *);
6209 int (*xMutexTry)(sqlite3_mutex *);
6210 void (*xMutexLeave)(sqlite3_mutex *);
6211 int (*xMutexHeld)(sqlite3_mutex *);
[all …]
H A Dsqlite3.c6409 typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; typedef
6410 struct sqlite3_mutex_methods { struct
6411 int (*xMutexInit)(void);
6412 int (*xMutexEnd)(void);
6413 sqlite3_mutex *(*xMutexAlloc)(int);
6414 void (*xMutexFree)(sqlite3_mutex *);
6415 void (*xMutexEnter)(sqlite3_mutex *);
6416 int (*xMutexTry)(sqlite3_mutex *);
6417 void (*xMutexLeave)(sqlite3_mutex *);
6418 int (*xMutexHeld)(sqlite3_mutex *);
[all …]

Completed in 333 milliseconds