Lines Matching refs:aExt
143741 void (**aExt)(void); /* Pointers to the extension init functions */ member
143785 if( wsdAutoext.aExt[i]==xInit ) break;
143788 u64 nByte = (wsdAutoext.nExt+1)*sizeof(wsdAutoext.aExt[0]);
143790 aNew = sqlite3_realloc64(wsdAutoext.aExt, nByte);
143794 wsdAutoext.aExt = aNew;
143795 wsdAutoext.aExt[wsdAutoext.nExt] = xInit;
143828 if( wsdAutoext.aExt[i]==xInit ){
143830 wsdAutoext.aExt[i] = wsdAutoext.aExt[wsdAutoext.nExt];
143852 sqlite3_free(wsdAutoext.aExt);
143853 wsdAutoext.aExt = 0;
143890 xInit = (sqlite3_loadext_entry)wsdAutoext.aExt[i];