Home | History | Annotate | Download | only in dist

Lines Matching refs:xMutexInit

6129 ** ^The xMutexInit method defined by this structure is invoked as
6131 ** ^The xMutexInit routine is called by SQLite exactly once for each
6138 ** those obtained by the xMutexInit method. ^The xMutexEnd()
6163 ** The xMutexInit() method must be threadsafe. ^It must be harmless to
6164 ** invoke xMutexInit() multiple times within the same process and without
6166 ** xMutexInit() must be no-ops.
6168 ** ^xMutexInit() must not use SQLite memory allocation ([sqlite3_malloc()]
6174 ** called, but only if the prior call to xMutexInit returned SQLITE_OK.
6175 ** If xMutexInit fails in any way, it is expected to clean up after itself
6180 int (*xMutexInit)(void);
17312 rc = sqlite3GlobalConfig.mutex.xMutexInit();