Lines Matching refs:xMutexInit
8795 ** ^The xMutexInit method defined by this structure is invoked as
8797 ** ^The xMutexInit routine is called by SQLite exactly once for each
8804 ** those obtained by the xMutexInit method. ^The xMutexEnd()
8829 ** The xMutexInit() method must be threadsafe. It must be harmless to
8830 ** invoke xMutexInit() multiple times within the same process and without
8832 ** xMutexInit() must be no-ops.
8834 ** xMutexInit() must not use SQLite memory allocation ([sqlite3_malloc()]
8840 ** called, but only if the prior call to xMutexInit returned SQLITE_OK.
8841 ** If xMutexInit fails in any way, it is expected to clean up after itself
8846 int (*xMutexInit)(void);
30081 return pGlobalMutexMethods->xMutexInit();
30242 pTo->xMutexInit = pFrom->xMutexInit;
30253 assert( sqlite3GlobalConfig.mutex.xMutexInit );
30254 rc = sqlite3GlobalConfig.mutex.xMutexInit();