Searched refs:xMutexInit (Results 1 – 4 of 4) sorted by relevance
4797 int (*xMutexInit)(void); member
4746 ** ^The xMutexInit method defined by this structure is invoked as4748 ** ^The xMutexInit routine is calle by SQLite exactly once for each4755 ** those obtained by the xMutexInit method. ^The xMutexEnd()4780 ** The xMutexInit() method must be threadsafe. ^It must be harmless to4781 ** invoke xMutexInit() mutiple times within the same process and without4783 ** xMutexInit() must be no-ops.4785 ** ^xMutexInit() must not use SQLite memory allocation ([sqlite3_malloc()]4791 ** called, but only if the prior call to xMutexInit returned SQLITE_OK.4792 ** If xMutexInit fails in any way, it is expected to clean up after itself4797 int (*xMutexInit)(void);
5270 ** ^The xMutexInit method defined by this structure is invoked as5272 ** ^The xMutexInit routine is calle by SQLite exactly once for each5279 ** those obtained by the xMutexInit method. ^The xMutexEnd()5304 ** The xMutexInit() method must be threadsafe. ^It must be harmless to5305 ** invoke xMutexInit() mutiple times within the same process and without5307 ** xMutexInit() must be no-ops.5309 ** ^xMutexInit() must not use SQLite memory allocation ([sqlite3_malloc()]5315 ** called, but only if the prior call to xMutexInit returned SQLITE_OK.5316 ** If xMutexInit fails in any way, it is expected to clean up after itself5321 int (*xMutexInit)(void);[all …]
5321 int (*xMutexInit)(void); member14441 rc = sqlite3GlobalConfig.mutex.xMutexInit(); in sqlite3MutexInit()