Home | History | Annotate | Download | only in dist

Lines Matching refs:xMutexInit

5270 ** ^The xMutexInit method defined by this structure is invoked as
5272 ** ^The xMutexInit routine is calle by SQLite exactly once for each
5279 ** those obtained by the xMutexInit method. ^The xMutexEnd()
5304 ** The xMutexInit() method must be threadsafe. ^It must be harmless to
5305 ** invoke xMutexInit() mutiple times within the same process and without
5307 ** 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 itself
5321 int (*xMutexInit)(void);
14436 rc = sqlite3GlobalConfig.mutex.xMutexInit();