Lines Matching defs:sqlite3_mutex
1257 ** The mutex module within SQLite defines [sqlite3_mutex] to be an
1259 ** at the internal representation of an [sqlite3_mutex]. It only
1260 ** deals with pointers to the [sqlite3_mutex] object.
1264 typedef struct sqlite3_mutex sqlite3_mutex;
8084 SQLITE_API sqlite3_mutex *sqlite3_mutex_alloc(int);
8085 SQLITE_API void sqlite3_mutex_free(sqlite3_mutex*);
8086 SQLITE_API void sqlite3_mutex_enter(sqlite3_mutex*);
8087 SQLITE_API int sqlite3_mutex_try(sqlite3_mutex*);
8088 SQLITE_API void sqlite3_mutex_leave(sqlite3_mutex*);
8159 sqlite3_mutex *(*xMutexAlloc)(int);
8160 void (*xMutexFree)(sqlite3_mutex *);
8161 void (*xMutexEnter)(sqlite3_mutex *);
8162 int (*xMutexTry)(sqlite3_mutex *);
8163 void (*xMutexLeave)(sqlite3_mutex *);
8164 int (*xMutexHeld)(sqlite3_mutex *);
8165 int (*xMutexNotheld)(sqlite3_mutex *);
8198 SQLITE_API int sqlite3_mutex_held(sqlite3_mutex*);
8199 SQLITE_API int sqlite3_mutex_notheld(sqlite3_mutex*);
8237 ** ^This interface returns a pointer the [sqlite3_mutex] object that
8243 SQLITE_API sqlite3_mutex *sqlite3_db_mutex(sqlite3*);