Home | History | Annotate | Download | only in dist

Lines Matching defs:xCreate

5421   int (*xCreate)(sqlite3*, void *pAux,
5575 ** into the [xCreate] and [xConnect] methods of the virtual table module
5591 void *pClientData /* Client data for xCreate/xConnect */
5597 void *pClientData, /* Client data for xCreate/xConnect */
5651 ** ^The [xCreate] and [xConnect] methods of a
6685 ** [[the xCreate() page cache methods]]
6686 ** ^SQLite invokes the xCreate() method to construct a new cache instance.
6697 ** ^The third argument to xCreate(), bPurgeable, is true if the cache being
6781 ** ^The xDestroy() method is used to delete a cache allocated by xCreate().
6799 sqlite3_pcache *(*xCreate)(int szPage, int szExtra, int bPurgeable);
6821 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
10867 ** connection handle passed to it via the xConnect() or xCreate() method
38191 p = sqlite3GlobalConfig.pcache2.xCreate(
39138 ** Implementation of the sqlite3_pcache.xCreate method.
39546 pcache1Create, /* xCreate */
74001 ** P4 is the name of a virtual table in database P1. Call the xCreate method
109368 ** Before a virtual table xCreate() or xConnect() method is invoked, the
109372 ** are invoked only from within xCreate and xConnect methods.
109388 void *pAux, /* Context pointer for xCreate/xConnect */
109432 void *pAux /* Context pointer for xCreate/xConnect */
109444 void *pAux, /* Context pointer for xCreate/xConnect */
109816 ** Invoke a virtual table constructor (either xCreate or xConnect). The
109996 ** This function is invoked by the vdbe to call the xCreate method
110024 rc = vtabCallConstructor(db, pTab, pMod, pMod->pModule->xCreate, pzErr);
110041 ** valid to call this function from within the xCreate() or xConnect() of a
110414 ** Call from within the xCreate() or xConnect() methods to provide
126344 ** sqlite3_tokenizer_module.xCreate() function of the requested tokenizer
126345 ** implementation. The xCreate() function in turn returns an
126383 int (*xCreate)(
126391 ** exactly once for each successful call to xCreate().
126745 xCreate and xConnect methods create an instance
127413 ** and xCreate() methods.
127468 ** as part of the vtab xCreate() method.
127919 ** This function is the implementation of both the xConnect and xCreate
127930 int isCreate, /* True for xCreate, false for xConnect */
127934 const char * const *argv, /* xCreate/xConnect argument array */
128257 /* If this is an xCreate call, create the underlying tables in the
128303 ** The xConnect() and xCreate() methods for the virtual table. All the
128310 const char * const *argv, /* xCreate/xConnect argument array */
128320 const char * const *argv, /* xCreate/xConnect argument array */
130559 /* xCreate */ fts3CreateMethod,
132719 ** This function does all the work for both the xConnect and xCreate methods.
132721 ** and xCreate are identical operations.
132727 const char * const *argv, /* xCreate/xConnect argument array */
133187 fts3auxConnectMethod, /* xCreate */
134432 rc = pModule->xCreate(0, 0, &pTokenizer);
135739 rc = m->xCreate(iArg, aArg, ppTok);
135839 if( SQLITE_OK!=p->xCreate(argc-2, azArg, &pTokenizer) ){
135840 zErr = "error in xCreate()";
136424 ** This function does all the work for both the xConnect and xCreate methods.
136426 ** and xCreate are identical operations.
136437 const char * const *argv, /* xCreate/xConnect argument array */
136467 rc = pMod->xCreate((nDequote>1 ? nDequote-1 : 0), azArg, &pTok);
136700 fts3tokConnectMethod, /* xCreate */
145428 ** the virtual table module xCreate() and xConnect() methods.
145435 ** Rtree virtual table module xCreate method.
147650 rtreeCreate, /* xCreate - create a table */
147771 ** This function is called from within the xConnect() or xCreate() method to
147780 ** Otherwise, for an xCreate(), use 64 bytes less than the database page-size.
147788 int isCreate, /* True for xCreate, false for xConnect */
147821 ** This function is the implementation of both the xConnect and xCreate
147835 int isCreate /* True for xCreate, false for xConnect */
148895 icuCreate, /* xCreate */
148896 icuDestroy, /* xCreate */