Lines Matching refs:xInit
2086 int (*xInit)(void*); /* Initialize the memory allocator */ member
9409 int (*xInit)(void*); member
9431 int (*xInit)(void*); member
30385 rc = sqlite3GlobalConfig.m.xInit(sqlite3GlobalConfig.m.pAppData); in sqlite3MallocInit()
54518 if( sqlite3GlobalConfig.pcache2.xInit==0 ){
54523 assert( sqlite3GlobalConfig.pcache2.xInit!=0 );
54525 return sqlite3GlobalConfig.pcache2.xInit(sqlite3GlobalConfig.pcache2.pArg);
137687 sqlite3_loadext_entry xInit;
137752 xInit = (sqlite3_loadext_entry)sqlite3OsDlSym(pVfs, handle, zEntry);
137765 if( xInit==0 && zProc==0 ){
137784 xInit = (sqlite3_loadext_entry)sqlite3OsDlSym(pVfs, handle, zEntry);
137786 if( xInit==0 ){
137802 rc = xInit(db, &zErrmsg, &sqlite3Apis);
137921 void (*xInit)(void)
137925 if( xInit==0 ) return SQLITE_MISUSE_BKPT;
137941 if( wsdAutoext.aExt[i]==xInit ) break;
137951 wsdAutoext.aExt[wsdAutoext.nExt] = xInit;
137971 void (*xInit)(void)
137980 if( xInit==0 ) return 0;
137984 if( wsdAutoext.aExt[i]==xInit ){
138024 sqlite3_loadext_entry xInit;
138043 xInit = 0;
138046 xInit = (sqlite3_loadext_entry)wsdAutoext.aExt[i];
138050 if( xInit && (rc = xInit(db, &zErrmsg, pThunk))!=0 ){
180352 if( sqlite3GlobalConfig.pcache2.xInit==0 ){