Home | History | Annotate | Download | only in orig

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
38171 p = sqlite3GlobalConfig.pcache2.xCreate(
39118 ** Implementation of the sqlite3_pcache.xCreate method.
39526 pcache1Create, /* xCreate */
73981 ** P4 is the name of a virtual table in database P1. Call the xCreate method
109348 ** Before a virtual table xCreate() or xConnect() method is invoked, the
109352 ** are invoked only from within xCreate and xConnect methods.
109368 void *pAux, /* Context pointer for xCreate/xConnect */
109412 void *pAux /* Context pointer for xCreate/xConnect */
109424 void *pAux, /* Context pointer for xCreate/xConnect */
109796 ** Invoke a virtual table constructor (either xCreate or xConnect). The
109976 ** This function is invoked by the vdbe to call the xCreate method
110004 rc = vtabCallConstructor(db, pTab, pMod, pMod->pModule->xCreate, pzErr);
110021 ** valid to call this function from within the xCreate() or xConnect() of a
110394 ** Call from within the xCreate() or xConnect() methods to provide
126324 ** sqlite3_tokenizer_module.xCreate() function of the requested tokenizer
126325 ** implementation. The xCreate() function in turn returns an
126363 int (*xCreate)(
126371 ** exactly once for each successful call to xCreate().
126725 ** structure. The xCreate and xConnect methods create an instance
127393 ** and xCreate() methods.
127448 ** as part of the vtab xCreate() method.
127899 ** This function is the implementation of both the xConnect and xCreate
127910 int isCreate, /* True for xCreate, false for xConnect */
127914 const char * const *argv, /* xCreate/xConnect argument array */
128237 /* If this is an xCreate call, create the underlying tables in the
128283 ** The xConnect() and xCreate() methods for the virtual table. All the
128290 const char * const *argv, /* xCreate/xConnect argument array */
128300 const char * const *argv, /* xCreate/xConnect argument array */
130539 /* xCreate */ fts3CreateMethod,
132687 ** This function does all the work for both the xConnect and xCreate methods.
132689 ** and xCreate are identical operations.
132695 const char * const *argv, /* xCreate/xConnect argument array */
133155 fts3auxConnectMethod, /* xCreate */
134400 rc = pModule->xCreate(0, 0, &pTokenizer);
135707 rc = m->xCreate(iArg, aArg, ppTok);
135807 if( SQLITE_OK!=p->xCreate(argc-2, azArg, &pTokenizer) ){
135808 zErr = "error in xCreate()";
136392 ** This function does all the work for both the xConnect and xCreate methods.
136394 ** and xCreate are identical operations.
136405 const char * const *argv, /* xCreate/xConnect argument array */
136435 rc = pMod->xCreate((nDequote>1 ? nDequote-1 : 0), azArg, &pTok);
136668 fts3tokConnectMethod, /* xCreate */
145396 ** the virtual table module xCreate() and xConnect() methods.
145403 ** Rtree virtual table module xCreate method.
147618 rtreeCreate, /* xCreate - create a table */
147739 ** This function is called from within the xConnect() or xCreate() method to
147748 ** Otherwise, for an xCreate(), use 64 bytes less than the database page-size.
147756 int isCreate, /* True for xCreate, false for xConnect */
147789 ** This function is the implementation of both the xConnect and xCreate
147803 int isCreate /* True for xCreate, false for xConnect */
148863 icuCreate, /* xCreate */
148864 icuDestroy, /* xCreate */