Lines Matching refs:xCreate
5050 int (*xCreate)(sqlite3*, void *pAux,
5185 ** into the [xCreate] and [xConnect] methods of the virtual table module
5201 void *pClientData /* Client data for xCreate/xConnect */
5207 void *pClientData, /* Client data for xCreate/xConnect */
5261 ** ^The [xCreate] and [xConnect] methods of a
6193 ** ^SQLite invokes the xCreate() method to construct a new cache instance.
6204 ** xCreate(), bPurgeable, is true if the cache being created will
6277 ** ^The xDestroy() method is used to delete a cache allocated by xCreate().
6288 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);
9328 ** connection handle passed to it via the xConnect() or xCreate() method
33053 p = sqlite3GlobalConfig.pcache.xCreate(nByte, pCache->bPurgeable);
33904 ** Implementation of the sqlite3_pcache.xCreate method.
34209 pcache1Create, /* xCreate */
65984 ** P4 is the name of a virtual table in database P1. Call the xCreate method
94609 void *pAux, /* Context pointer for xCreate/xConnect */
94651 void *pAux /* Context pointer for xCreate/xConnect */
94663 void *pAux, /* Context pointer for xCreate/xConnect */
95009 ** Invoke a virtual table constructor (either xCreate or xConnect). The
95175 ** This function is invoked by the vdbe to call the xCreate method
95203 rc = vtabCallConstructor(db, pTab, pMod, pMod->pModule->xCreate, pzErr);
95217 ** valid to call this function from within the xCreate() or xConnect() of a
108125 ** sqlite3_tokenizer_module.xCreate() function of the requested tokenizer
108126 ** implementation. The xCreate() function in turn returns an
108164 int (*xCreate)(
108172 ** exactly once for each successful call to xCreate().
108450 ** structure. The xCreate and xConnect methods create an instance
108900 ** and xCreate() methods.
108938 ** as part of the vtab xCreate() method.
109057 ** This function is the implementation of both the xConnect and xCreate
109068 int isCreate, /* True for xCreate, false for xConnect */
109072 const char * const *argv, /* xCreate/xConnect argument array */
109216 /* If this is an xCreate call, create the underlying tables in the
109248 ** The xConnect() and xCreate() methods for the virtual table. All the
109255 const char * const *argv, /* xCreate/xConnect argument array */
109265 const char * const *argv, /* xCreate/xConnect argument array */
111765 /* xCreate */ fts3CreateMethod,
112789 rc = pModule->xCreate(0, 0, &pTokenizer);
114058 rc = m->xCreate(iArg, aArg, ppTok);
114153 if( SQLITE_OK!=p->xCreate(zArg ? 1 : 0, &zArg, &pTokenizer) ){
114154 zErr = "error in xCreate()";
119821 ** the virtual table module xCreate() and xConnect() methods.
119828 ** Rtree virtual table module xCreate method.
121961 rtreeCreate, /* xCreate - create a table */
122077 ** This function is called from within the xConnect() or xCreate() method to
122086 ** Otherwise, for an xCreate(), use 64 bytes less than the database page-size.
122094 int isCreate /* True for xCreate, false for xConnect */
122121 ** This function is the implementation of both the xConnect and xCreate
122135 int isCreate /* True for xCreate, false for xConnect */
123123 icuCreate, /* xCreate */
123124 icuDestroy, /* xCreate */