HomeSort by relevance Sort by last modified time
    Searched refs:xCreate (Results 1 - 15 of 15) sorted by null

  /external/chromium_org/third_party/sqlite/src/ext/fts1/
fts1_tokenizer.h 43 int (*xCreate)(int argc, const char *const*argv,
82 ** specified by the first argv argument to xCreate().
tokenizer.h 43 int (*xCreate)(int argc, const char **argv,
82 ** specified by the first argv argument to xCreate().
fulltext.c 886 rc = m->xCreate(argc-3, (const char **) (argv+3), &v->pTokenizer);
    [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts2/
fts2_tokenizer.h 37 ** sqlite3_tokenizer_module.xCreate() function of the requested tokenizer
38 ** implementation. The xCreate() function in turn returns an
76 int (*xCreate)(
84 ** exactly once for each successful call to xCreate().
fts2_tokenizer.c 185 if( SQLITE_OK!=p->xCreate(zArg ? 1 : 0, &zArg, &pTokenizer) ){
186 zErr = "error in xCreate()";
  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3_tokenizer.h 37 ** sqlite3_tokenizer_module.xCreate() function of the requested tokenizer
38 ** implementation. The xCreate() function in turn returns an
76 int (*xCreate)(
84 ** exactly once for each successful call to xCreate().
fts3_expr.c 885 rc = pModule->xCreate(0, 0, &pTokenizer);
  /external/chromium_org/third_party/sqlite/src/src/
test8.c 314 ** This function is called from within the echo-modules xCreate and
457 ** Echo virtual table module xCreate method.
467 appendToEchoModule(((EchoModule *)pAux)->interp, "xCreate");
    [all...]
test_pcache.c 450 assert( defaultPcache.xCreate!=testpcacheCreate );
453 assert( defaultPcache.xCreate!=0 );
test_init.c 127 return wrapped.pcache.xCreate(a, b);
pcache.c 224 p = sqlite3GlobalConfig.pcache.xCreate(nByte, pCache->bPurgeable);
sqlite.h.in     [all...]
vtab.c 26 void *pAux, /* Context pointer for xCreate/xConnect */
68 void *pAux /* Context pointer for xCreate/xConnect */
80 void *pAux, /* Context pointer for xCreate/xConnect */
426 ** Invoke a virtual table constructor (either xCreate or xConnect). The
592 ** This function is invoked by the vdbe to call the xCreate method
620 rc = vtabCallConstructor(db, pTab, pMod, pMod->pModule->xCreate, pzErr);
634 ** valid to call this function from within the xCreate() or xConnect() of a
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.h     [all...]
sqlite3.c     [all...]

Completed in 439 milliseconds