| /sqlite-3.40.0/ext/misc/ |
| H A D | vtshim.c | 93 rc = pAux->pMod->xCreate(db, pAux->pChildAux, argc, argv, in vtshimCreate() 485 pAux->sSelf.xCreate = p->xCreate ? vtshimCreate : 0; in sqlite3_create_disposable_module()
|
| /sqlite-3.40.0/src/ |
| H A D | test_pcache.c | 459 assert( defaultPcache.xCreate!=testpcacheCreate ); in installTestPCache() 462 assert( defaultPcache.xCreate!=0 ); in installTestPCache()
|
| H A D | vtab.c | 783 if( pMod==0 || pMod->pModule->xCreate==0 || pMod->pModule->xDestroy==0 ){ in sqlite3VtabCallCreate() 787 rc = vtabCallConstructor(db, pTab, pMod, pMod->pModule->xCreate, pzErr); in sqlite3VtabCallCreate() 1236 if( pModule->xCreate!=0 && pModule->xCreate!=pModule->xConnect ) return 0; in sqlite3VtabEponymousTableInit()
|
| H A D | test_init.c | 131 return wrapped.pcache.xCreate(a, b, c); in wrPCacheCreate()
|
| H A D | pcache.c | 350 pNew = sqlite3GlobalConfig.pcache2.xCreate( in sqlite3PcacheSetPageSize()
|
| H A D | sqlite.h.in | 7034 int (*xCreate)(sqlite3*, void *pAux, member 7283 ** into the [xCreate] and [xConnect] methods of the virtual table module 7305 void *pClientData /* Client data for xCreate/xConnect */ 7311 void *pClientData, /* Client data for xCreate/xConnect */ 7382 ** ^The [xCreate] and [xConnect] methods of a 8704 ** [[the xCreate() page cache methods]] 8818 sqlite3_pcache *(*xCreate)(int szPage, int szExtra, int bPurgeable); member 8840 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable); member 9472 ** xCreate virtual table method then the behavior is undefined. 9529 ** the [xConnect] or [xCreate] methods of a [virtual table] implmentation [all …]
|
| /sqlite-3.40.0/ext/fts3/ |
| H A D | fts3_tokenizer.c | 212 rc = m->xCreate(iArg, aArg, ppTok); in sqlite3Fts3InitTokenizer() 316 if( SQLITE_OK!=p->xCreate(argc-2, azArg, &pTokenizer) ){ in testFunc()
|
| H A D | fts3_tokenizer.h | 76 int (*xCreate)( member
|
| H A D | fts3_tokenize_vtab.c | 193 rc = pMod->xCreate((nDequote>1 ? nDequote-1 : 0), azArg, &pTok); in fts3tokConnectMethod()
|
| H A D | README.tokenizers | 68 xCreate() method (see fts3_tokenizer.h) of this tokenizer may be
|
| /sqlite-3.40.0/ext/fts2/ |
| H A D | fts2_tokenizer.h | 76 int (*xCreate)( member
|
| H A D | fts2_tokenizer.c | 186 if( SQLITE_OK!=p->xCreate(zArg ? 1 : 0, &zArg, &pTokenizer) ){ in testFunc()
|
| H A D | README.tokenizers | 66 xCreate() method (see fts2_tokenizer.h) of this tokenizer may be
|
| /sqlite-3.40.0/ext/fts1/ |
| H A D | tokenizer.h | 43 int (*xCreate)(int argc, const char **argv, member
|
| H A D | fts1_tokenizer.h | 43 int (*xCreate)(int argc, const char *const*argv, member
|
| H A D | fts1.c | 1976 rc = m->xCreate(n-1, (const char*const*)&spec->azTokenizer[1], in constructVtab() 1979 rc = m->xCreate(0, 0, &v->pTokenizer); in constructVtab()
|
| H A D | fulltext.c | 892 rc = m->xCreate(argc-3, (const char **) (argv+3), &v->pTokenizer); in fulltextConnect()
|
| /sqlite-3.40.0/ext/fts5/ |
| H A D | fts5.h | 502 int (*xCreate)(void*, const char **azArg, int nArg, Fts5Tokenizer **ppOut); member
|
| H A D | fts5_tokenize.c | 598 rc = pRet->tokenizer.xCreate(pUserdata, azArg2, nArg2, &pRet->pTokenizer); in fts5PorterCreate() 1378 int (*xCreate)(void*, const char**, int, Fts5Tokenizer**), in sqlite3Fts5TokenizerPattern() 1381 if( xCreate==fts5TriCreate ){ in sqlite3Fts5TokenizerPattern()
|
| H A D | fts5_test_tok.c | 216 rc = pTab->tok.xCreate(pTokCtx, azArg, nArg, &pTab->pTok); in fts5tokConnectMethod()
|
| H A D | fts5_tcl.c | 729 rc = tokenizer.xCreate(pUserdata, &azArg[1], nArg-1, &pTok); in f5tTokenize() 983 t.xCreate = f5tTokenizerCreate; in f5tCreateTokenizer()
|
| H A D | fts5Int.h | 826 int (*xCreate)(void*, const char**, int, Fts5Tokenizer**),
|
| H A D | fts5_main.c | 2732 rc = pMod->x.xCreate( in sqlite3Fts5GetTokenizer() 2740 pMod->x.xCreate, pConfig->pTok in sqlite3Fts5GetTokenizer()
|
| /sqlite-3.40.0/test/ |
| H A D | vtabC.test | 13 # and xRollback methods are only invoked after an xBegin or xCreate.
|
| H A D | vtab1.test | 78 # may be created. However if a module xCreate() fails to call 100 # The "echo" module xCreate method returns an error and does not create 351 } [list xCreate echo main t1 treal \ 894 } [list xCreate echo aux e2 real_abc \ 933 xCreate echo main e r e_log {virtual 1 2 3 varchar(32)} \
|