• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/sqlite/

Lines Matching defs:xDestroy

4299   void(*xDestroy)(void*)
4856 int (*xDestroy)(sqlite3_vtab *pVTab);
5004 void(*xDestroy)(void*) /* Module destructor function */
6027 ** ^The xDestroy() method is used to delete a cache allocated by xCreate().
6029 ** calling the xDestroy() method, SQLite considers the [sqlite3_pcache*]
6045 void (*xDestroy)(sqlite3_pcache*);
8880 void (*xDestroy)(void *); /* Module destructor function */
11892 ** set to 2 for xDestroy method calls and 1 for all other methods. This
11893 ** variable is used for two purposes: to allow xDestroy methods to execute
32419 sqlite3GlobalConfig.pcache.xDestroy(pCache->pCache);
32664 sqlite3GlobalConfig.pcache.xDestroy(pCache->pCache);
33530 ** Implementation of the sqlite3_pcache.xDestroy method.
33563 pcache1Destroy /* xDestroy */
64993 ** P4 is the name of a virtual table in database P1. Call the xDestroy method
83454 int (*create_module_v2)(sqlite3*,const char*,const sqlite3_module*,void*,void (*xDestroy)(void *));
93282 void (*xDestroy)(void *) /* Module destructor function */
93297 pMod->xDestroy = xDestroy;
93299 if( pDel && pDel->xDestroy ){
93300 pDel->xDestroy(pDel->pAux);
93307 }else if( xDestroy ){
93308 xDestroy(pAux);
93336 void (*xDestroy)(void *) /* Module destructor function */
93338 return createModule(db, zName, pModule, pAux, xDestroy);
93950 ** This function is invoked by the vdbe to call the xDestroy method
93965 rc = p->pMod->pModule->xDestroy(p->pVtab);
104032 if( pMod->xDestroy ){
104033 pMod->xDestroy(pMod->pAux);
106589 int (*xDestroy)(sqlite3_tokenizer *pTokenizer);
106856 ** of this structure and xDestroy and xDisconnect free that instance.
107226 p->pTokenizer->pModule->xDestroy(p->pTokenizer);
107260 ** The xDestroy() virtual table method.
107549 pTokenizer->pModule->xDestroy(pTokenizer);
109391 /* xDestroy */ fts3DestroyMethod,
110428 rc = pModule->xDestroy(pTokenizer);
111791 if( SQLITE_OK!=p->xDestroy(pTokenizer) ){
111792 zErr = "error in xDestroy()";
116661 ** Rtree virtual table module xDestroy method.
118522 rtreeDestroy, /* xDestroy - Drop a table */