• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/sqlite-3.6.22/

Lines Matching defs: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*);
8542 void (*xDestroy)(void *); /* Module destructor function */
17716 ** set to 2 for xDestroy method calls and 1 for all other methods. This
17717 ** variable is used for two purposes: to allow xDestroy methods to execute
29630 sqlite3GlobalConfig.pcache.xDestroy(pCache->pCache);
29866 sqlite3GlobalConfig.pcache.xDestroy(pCache->pCache);
30709 ** Implementation of the sqlite3_pcache.xDestroy method.
30742 pcache1Destroy /* xDestroy */
57503 ** P4 is the name of a virtual table in database P1. Call the xDestroy method
75865 int (*create_module_v2)(sqlite3*,const char*,const sqlite3_module*,void*,void (*xDestroy)(void *));
85571 void (*xDestroy)(void *) /* Module destructor function */
85586 pMod->xDestroy = xDestroy;
85588 if( pDel && pDel->xDestroy ){
85589 pDel->xDestroy(pDel->pAux);
85596 }else if( xDestroy ){
85597 xDestroy(pAux);
85625 void (*xDestroy)(void *) /* Module destructor function */
85627 return createModule(db, zName, pModule, pAux, xDestroy);
86250 ** This function is invoked by the vdbe to call the xDestroy method
86266 rc = p->pMod->pModule->xDestroy(p->pVtab);
95882 if( pMod->xDestroy ){
95883 pMod->xDestroy(pMod->pAux);
98254 int (*xDestroy)(sqlite3_tokenizer *pTokenizer);
98507 ** of this structure and xDestroy and xDisconnect free that instance.
98865 p->pTokenizer->pModule->xDestroy(p->pTokenizer);
98872 ** The xDestroy() virtual table method.
99116 pTokenizer->pModule->xDestroy(pTokenizer);
100776 /* xDestroy */ fts3DestroyMethod,
101808 rc = pModule->xDestroy(pTokenizer);
103169 if( SQLITE_OK!=p->xDestroy(pTokenizer) ){
103170 zErr = "error in xDestroy()";
107910 ** Rtree virtual table module xDestroy method.
109771 rtreeDestroy, /* xDestroy - Drop a table */