Searched refs:sqlite3_mutex (Results 1 - 3 of 3) sorted by relevance

/netbsd-6-1-5-RELEASE/external/public-domain/sqlite/dist/
H A Dsqlite3.h822 ** The mutex module within SQLite defines [sqlite3_mutex] to be an
824 ** at the internal representation of an [sqlite3_mutex]. It only
825 ** deals with pointers to the [sqlite3_mutex] object.
829 typedef struct sqlite3_mutex sqlite3_mutex; typedef in typeref:struct:sqlite3_mutex
5508 SQLITE_API sqlite3_mutex *sqlite3_mutex_alloc(int);
5509 SQLITE_API void sqlite3_mutex_free(sqlite3_mutex*);
5510 SQLITE_API void sqlite3_mutex_enter(sqlite3_mutex*);
5511 SQLITE_API int sqlite3_mutex_try(sqlite3_mutex*);
5512 SQLITE_API void sqlite3_mutex_leave(sqlite3_mutex*);
[all...]
H A Dsqlite3ext.h186 sqlite3_mutex *(*mutex_alloc)(int);
187 void (*mutex_enter)(sqlite3_mutex*);
188 void (*mutex_free)(sqlite3_mutex*);
189 void (*mutex_leave)(sqlite3_mutex*);
190 int (*mutex_try)(sqlite3_mutex*);
224 sqlite3_mutex *(*db_mutex)(sqlite3*);
H A Dsqlite3.c1372 ** The mutex module within SQLite defines [sqlite3_mutex] to be an
1374 ** at the internal representation of an [sqlite3_mutex]. It only
1375 ** deals with pointers to the [sqlite3_mutex] object.
1379 typedef struct sqlite3_mutex sqlite3_mutex; typedef in typeref:struct:sqlite3_mutex
6058 SQLITE_API sqlite3_mutex *sqlite3_mutex_alloc(int);
6059 SQLITE_API void sqlite3_mutex_free(sqlite3_mutex*);
6060 SQLITE_API void sqlite3_mutex_enter(sqlite3_mutex*);
6061 SQLITE_API int sqlite3_mutex_try(sqlite3_mutex*);
6062 SQLITE_API void sqlite3_mutex_leave(sqlite3_mutex*);
17589 struct sqlite3_mutex { struct
17875 struct sqlite3_mutex { struct
18212 struct sqlite3_mutex { struct
[all...]

Completed in 413 milliseconds