Home
last modified time | relevance | path

Searched refs:xInit (Results 1 – 8 of 8) sorted by relevance

/sqlite-3.40.0/src/
H A Dloadext.c544 sqlite3_loadext_entry xInit; in sqlite3LoadExtension() local
612 if( xInit==0 && zProc==0 ){ in sqlite3LoadExtension()
633 if( xInit==0 ){ in sqlite3LoadExtension()
649 rc = xInit(db, &zErrmsg, &sqlite3Apis); in sqlite3LoadExtension()
765 void (*xInit)(void) in sqlite3_auto_extension()
782 if( wsdAutoext.aExt[i]==xInit ) break; in sqlite3_auto_extension()
812 void (*xInit)(void) in sqlite3_cancel_auto_extension()
822 if( wsdAutoext.aExt[i]==xInit ){ in sqlite3_cancel_auto_extension()
862 sqlite3_loadext_entry xInit; in sqlite3AutoLoadExtensions() local
881 xInit = 0; in sqlite3AutoLoadExtensions()
[all …]
H A Dtest_init.c54 rc = wrapped.mem.xInit(wrapped.mem.pAppData); in wrMemInit()
118 rc = wrapped.pcache.xInit(wrapped.pcache.pArg); in wrPCacheInit()
H A Dpcache.c287 if( sqlite3GlobalConfig.pcache2.xInit==0 ){ in sqlite3PcacheInitialize()
292 assert( sqlite3GlobalConfig.pcache2.xInit!=0 ); in sqlite3PcacheInitialize()
294 return sqlite3GlobalConfig.pcache2.xInit(sqlite3GlobalConfig.pcache2.pArg); in sqlite3PcacheInitialize()
H A Dmalloc.c170 rc = sqlite3GlobalConfig.m.xInit(sqlite3GlobalConfig.m.pAppData); in sqlite3MallocInit()
H A Dsqlite.h.in1732 ** The xInit method initializes the memory allocator. For example,
1736 ** by xInit. The pAppData pointer is used as the only parameter to
1737 ** xInit and xShutdown.
1740 ** the xInit method, so the xInit method need not be threadsafe. The
8678 ** [[the xInit() page cache method]]
8679 ** ^(The xInit() method is called once for each effective
8685 ** ^(If the xInit() method is NULL, then the
8695 ** ^SQLite automatically serializes calls to the xInit method,
8696 ** so the xInit method need not be threadsafe. ^The
8816 int (*xInit)(void*); member
[all …]
H A Dmain.c559 if( sqlite3GlobalConfig.pcache2.xInit==0 ){ in sqlite3_config()
/sqlite-3.40.0/ext/misc/
H A Dmemtrace.c66 return memtraceBase.xInit(p); in memtraceInit()
/sqlite-3.40.0/test/
H A Ddbfuzz2.c119 return memtraceBase.xInit(p); in memtraceInit()