Home
last modified time | relevance | path

Searched refs:xMutexInit (Results 1 – 4 of 4) sorted by relevance

/external/sqlite/dist/
Dsqlite3.h4797 int (*xMutexInit)(void); member
Dsqlite3.h.orig4746 ** ^The xMutexInit method defined by this structure is invoked as
4748 ** ^The xMutexInit routine is calle by SQLite exactly once for each
4755 ** those obtained by the xMutexInit method. ^The xMutexEnd()
4780 ** The xMutexInit() method must be threadsafe. ^It must be harmless to
4781 ** invoke xMutexInit() mutiple times within the same process and without
4783 ** 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 itself
4797 int (*xMutexInit)(void);
Dsqlite3.c.orig5270 ** ^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);
[all …]
Dsqlite3.c5321 int (*xMutexInit)(void); member
14441 rc = sqlite3GlobalConfig.mutex.xMutexInit(); in sqlite3MutexInit()