Home | History | Annotate | Download | only in dist

Lines Matching refs:xCreate

5500   int (*xCreate)(sqlite3*, void *pAux,
5640 ** into the [xCreate] and [xConnect] methods of the virtual table module
5656 void *pClientData /* Client data for xCreate/xConnect */
5662 void *pClientData, /* Client data for xCreate/xConnect */
5716 ** ^The [xCreate] and [xConnect] methods of a
6710 ** [[the xCreate() page cache methods]]
6711 ** ^SQLite invokes the xCreate() method to construct a new cache instance.
6722 ** ^The third argument to xCreate(), bPurgeable, is true if the cache being
6806 ** ^The xDestroy() method is used to delete a cache allocated by xCreate().
6824 sqlite3_pcache *(*xCreate)(int szPage, int szExtra, int bPurgeable);
6846 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);
7396 ** This function may be called by either the [xConnect] or [xCreate] method
7401 ** xCreate virtual table method then the behavior is undefined.
7421 ** [xCreate] or [xConnect] method invoked [sqlite3_vtab_config()] does not
10103 ** connection handle passed to it via the xConnect() or xCreate() method
36484 p = sqlite3GlobalConfig.pcache2.xCreate(
37423 ** Implementation of the sqlite3_pcache.xCreate method.
37823 pcache1Create, /* xCreate */
70664 ** P4 is the name of a virtual table in database P1. Call the xCreate method
101517 ** Before a virtual table xCreate() or xConnect() method is invoked, the
101521 ** are invoked only from within xCreate and xConnect methods.
101537 void *pAux, /* Context pointer for xCreate/xConnect */
101579 void *pAux /* Context pointer for xCreate/xConnect */
101591 void *pAux, /* Context pointer for xCreate/xConnect */
101938 ** Invoke a virtual table constructor (either xCreate or xConnect). The
102113 ** This function is invoked by the vdbe to call the xCreate method
102141 rc = vtabCallConstructor(db, pTab, pMod, pMod->pModule->xCreate, pzErr);
102158 ** valid to call this function from within the xCreate() or xConnect() of a
102533 ** Call from within the xCreate() or xConnect() methods to provide
116227 ** sqlite3_tokenizer_module.xCreate() function of the requested tokenizer
116228 ** implementation. The xCreate() function in turn returns an
116266 int (*xCreate)(
116274 ** exactly once for each successful call to xCreate().
116612 ** structure. The xCreate and xConnect methods create an instance
117204 ** and xCreate() methods.
117247 ** as part of the vtab xCreate() method.
117700 ** This function is the implementation of both the xConnect and xCreate
117711 int isCreate, /* True for xCreate, false for xConnect */
117715 const char * const *argv, /* xCreate/xConnect argument array */
117995 /* If this is an xCreate call, create the underlying tables in the
118032 ** The xConnect() and xCreate() methods for the virtual table. All the
118039 const char * const *argv, /* xCreate/xConnect argument array */
118049 const char * const *argv, /* xCreate/xConnect argument array */
120125 /* xCreate */ fts3CreateMethod,
121907 ** This function does all the work for both the xConnect and xCreate methods.
121909 ** and xCreate are identical operations.
121915 const char * const *argv, /* xCreate/xConnect argument array */
122301 fts3auxConnectMethod, /* xCreate */
123293 rc = pModule->xCreate(0, 0, &pTokenizer);
124567 rc = m->xCreate(iArg, aArg, ppTok);
124664 if( SQLITE_OK!=p->xCreate(zArg ? 1 : 0, &zArg, &pTokenizer) ){
124665 zErr = "error in xCreate()";
130864 ** the virtual table module xCreate() and xConnect() methods.
130871 ** Rtree virtual table module xCreate method.
133017 rtreeCreate, /* xCreate - create a table */
133136 ** This function is called from within the xConnect() or xCreate() method to
133145 xCreate(), use 64 bytes less than the database page-size.
133153 int isCreate /* True for xCreate, false for xConnect */
133180 ** This function is the implementation of both the xConnect and xCreate
133194 int isCreate /* True for xCreate, false for xConnect */
134188 icuCreate, /* xCreate */
134189 icuDestroy, /* xCreate */