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

  /external/chromium_org/third_party/sqlite/src/ext/fts1/
fts1_tokenizer.h 45 int (*xDestroy)(sqlite3_tokenizer *pTokenizer);
tokenizer.h 45 int (*xDestroy)(sqlite3_tokenizer *pTokenizer);
fulltext.c 840 v->pTokenizer->pModule->xDestroy(v->pTokenizer);
    [all...]
fts1.c     [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts2/
fts2_tokenizer.h 86 int (*xDestroy)(sqlite3_tokenizer *pTokenizer);
fts2_tokenizer.c 208 if( SQLITE_OK!=p->xDestroy(pTokenizer) ){
209 zErr = "error in xDestroy()";
fts2.c     [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3_tokenizer.h 86 int (*xDestroy)(sqlite3_tokenizer *pTokenizer);
fts3_expr.c 921 rc = pModule->xDestroy(pTokenizer);
fts3.c 456 p->pTokenizer->pModule->xDestroy(p->pTokenizer);
490 ** The xDestroy() virtual table method.
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
test_quota.c 80 void (*xDestroy)(void*); /* Optional destructor for pArg */
175 if( pGroup->xDestroy ) pGroup->xDestroy(pGroup->pArg);
672 void (*xDestroy)(void*) /* Optional destructor for pArg */
701 if( pGroup->xDestroy && pGroup->pArg!=pArg ){
702 pGroup->xDestroy(pGroup->pArg);
705 pGroup->xDestroy = xDestroy;
848 void (*xDestroy)(void*); /* Optional destructor for pArg */
872 xDestroy = tclCallbackDestructor
    [all...]
vtab.c 27 void (*xDestroy)(void *) /* Module destructor function */
42 pMod->xDestroy = xDestroy;
44 if( pDel && pDel->xDestroy ){
45 pDel->xDestroy(pDel->pAux);
52 }else if( xDestroy ){
53 xDestroy(pAux);
81 void (*xDestroy)(void *) /* Module destructor function */
83 return createModule(db, zName, pModule, pAux, xDestroy);
695 ** This function is invoked by the vdbe to call the xDestroy metho
    [all...]
test8.c 478 ** from within an xDestroy method call.
527 ** Echo virtual table module xDestroy method.
532 appendToEchoModule(((echo_vtab *)pVtab)->interp, "xDestroy");
    [all...]
sqlite.h.in     [all...]
main.c 669 pDestructor->xDestroy(pDestructor->pUserData);
690 /* Force xDestroy calls on all virtual tables */
769 if( pMod->xDestroy ){
770 pMod->xDestroy(pMod->pAux);
    [all...]
pcache.c 194 sqlite3GlobalConfig.pcache.xDestroy(pCache->pCache);
439 sqlite3GlobalConfig.pcache.xDestroy(pCache->pCache);
test_init.c 148 wrapped.pcache.xDestroy(p);
sqlite3ext.h 157 int (*create_module_v2)(sqlite3*,const char*,const sqlite3_module*,void*,void (*xDestroy)(void *));
201 int (*create_function_v2)(sqlite3*,const char*,int,int,void*,void (*xFunc)(sqlite3_context*,int,sqlite3_value**),void (*xStep)(sqlite3_context*,int,sqlite3_value**),void (*xFinal)(sqlite3_context*),void(*xDestroy)(void*));
sqliteInt.h     [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.h     [all...]
sqlite3.c     [all...]

Completed in 906 milliseconds