Lines Matching refs:xCreate

5737   int (*xCreate)(sqlite3*, void *pAux,
5877 ** into the [xCreate] and [xConnect] methods of the virtual table module
5893 void *pClientData /* Client data for xCreate/xConnect */
5899 void *pClientData, /* Client data for xCreate/xConnect */
5953 ** ^The [xCreate] and [xConnect] methods of a
6958 ** [[the xCreate() page cache methods]]
6959 ** ^SQLite invokes the xCreate() method to construct a new cache instance.
6970 ** ^The third argument to xCreate(), bPurgeable, is true if the cache being
7054 ** ^The xDestroy() method is used to delete a cache allocated by xCreate().
7072 sqlite3_pcache *(*xCreate)(int szPage, int szExtra, int bPurgeable);
7094 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);
7659 ** This function may be called by either the [xConnect] or [xCreate] method
7664 ** xCreate virtual table method then the behavior is undefined.
7684 ** [xCreate] or [xConnect] method invoked [sqlite3_vtab_config()] does not
10435 ** connection handle passed to it via the xConnect() or xCreate() method
36273 p = sqlite3GlobalConfig.pcache2.xCreate(
37215 ** Implementation of the sqlite3_pcache.xCreate method.
37614 pcache1Create, /* xCreate */
71162 ** P4 is the name of a virtual table in database P1. Call the xCreate method
103289 ** Before a virtual table xCreate() or xConnect() method is invoked, the
103293 ** are invoked only from within xCreate and xConnect methods.
103309 void *pAux, /* Context pointer for xCreate/xConnect */
103353 void *pAux /* Context pointer for xCreate/xConnect */
103365 void *pAux, /* Context pointer for xCreate/xConnect */
103737 ** Invoke a virtual table constructor (either xCreate or xConnect). The
103917 ** This function is invoked by the vdbe to call the xCreate method
103945 rc = vtabCallConstructor(db, pTab, pMod, pMod->pModule->xCreate, pzErr);
103962 ** valid to call this function from within the xCreate() or xConnect() of a
104337 ** Call from within the xCreate() or xConnect() methods to provide
118819 ** sqlite3_tokenizer_module.xCreate() function of the requested tokenizer
118820 ** implementation. The xCreate() function in turn returns an
118858 int (*xCreate)(
118866 ** exactly once for each successful call to xCreate().
119208 ** structure. The xCreate and xConnect methods create an instance
119829 ** and xCreate() methods.
119884 ** as part of the vtab xCreate() method.
120335 ** This function is the implementation of both the xConnect and xCreate
120346 int isCreate, /* True for xCreate, false for xConnect */
120350 const char * const *argv, /* xCreate/xConnect argument array */
120632 /* If this is an xCreate call, create the underlying tables in the
120679 ** The xConnect() and xCreate() methods for the virtual table. All the
120686 const char * const *argv, /* xCreate/xConnect argument array */
120696 const char * const *argv, /* xCreate/xConnect argument array */
122804 /* xCreate */ fts3CreateMethod,
124701 ** This function does all the work for both the xConnect and xCreate methods.
124703 ** and xCreate are identical operations.
124709 const char * const *argv, /* xCreate/xConnect argument array */
125108 fts3auxConnectMethod, /* xCreate */
126348 rc = pModule->xCreate(0, 0, &pTokenizer);
127639 rc = m->xCreate(iArg, aArg, ppTok);
127739 if( SQLITE_OK!=p->xCreate(argc-2, azArg, &pTokenizer) ){
127740 zErr = "error in xCreate()";
128324 ** This function does all the work for both the xConnect and xCreate methods.
128326 ** and xCreate are identical operations.
128337 const char * const *argv, /* xCreate/xConnect argument array */
128367 rc = pMod->xCreate((nDequote>1 ? nDequote-1 : 0), azArg, &pTok);
128600 fts3tokConnectMethod, /* xCreate */
137050 ** the virtual table module xCreate() and xConnect() methods.
137057 ** Rtree virtual table module xCreate method.
139243 rtreeCreate, /* xCreate - create a table */
139362 ** This function is called from within the xConnect() or xCreate() method to
139371 ** Otherwise, for an xCreate(), use 64 bytes less than the database page-size.
139379 int isCreate, /* True for xCreate, false for xConnect */
139412 ** This function is the implementation of both the xConnect and xCreate
139426 int isCreate /* True for xCreate, false for xConnect */
140437 icuCreate, /* xCreate */
140438 icuDestroy, /* xCreate */