• Home
  • Raw
  • Download

Lines Matching refs:xDestroy

4141   void(*xDestroy)(void*)
4683 int (*xDestroy)(sqlite3_vtab *pVTab);
4821 void(*xDestroy)(void*) /* Module destructor function */
5819 ** ^The xDestroy() method is used to delete a cache allocated by xCreate().
5821 ** calling the xDestroy() method, SQLite considers the [sqlite3_pcache*]
5837 void (*xDestroy)(sqlite3_pcache*);
8564 void (*xDestroy)(void *); /* Module destructor function */
17784 ** set to 2 for xDestroy method calls and 1 for all other methods. This
17785 ** variable is used for two purposes: to allow xDestroy methods to execute
29838 sqlite3GlobalConfig.pcache.xDestroy(pCache->pCache);
30076 sqlite3GlobalConfig.pcache.xDestroy(pCache->pCache);
30919 ** Implementation of the sqlite3_pcache.xDestroy method.
30952 pcache1Destroy /* xDestroy */
57793 ** P4 is the name of a virtual table in database P1. Call the xDestroy method
76125 …int (*create_module_v2)(sqlite3*,const char*,const sqlite3_module*,void*,void (*xDestroy)(void *));
85828 void (*xDestroy)(void *) /* Module destructor function */
85843 pMod->xDestroy = xDestroy;
85845 if( pDel && pDel->xDestroy ){
85846 pDel->xDestroy(pDel->pAux);
85853 }else if( xDestroy ){
85854 xDestroy(pAux);
85882 void (*xDestroy)(void *) /* Module destructor function */
85884 return createModule(db, zName, pModule, pAux, xDestroy);
86496 ** This function is invoked by the vdbe to call the xDestroy method
86511 rc = p->pMod->pModule->xDestroy(p->pVtab);
96128 if( pMod->xDestroy ){
96129 pMod->xDestroy(pMod->pAux);
98516 int (*xDestroy)(sqlite3_tokenizer *pTokenizer);
98769 ** of this structure and xDestroy and xDisconnect free that instance.
99127 p->pTokenizer->pModule->xDestroy(p->pTokenizer);
99134 ** The xDestroy() virtual table method.
99378 pTokenizer->pModule->xDestroy(pTokenizer);
101038 /* xDestroy */ fts3DestroyMethod,
102070 rc = pModule->xDestroy(pTokenizer);
103431 if( SQLITE_OK!=p->xDestroy(pTokenizer) ){
103432 zErr = "error in xDestroy()";
108172 ** Rtree virtual table module xDestroy method.
110033 rtreeDestroy, /* xDestroy - Drop a table */