Lines Matching defs:xShutdown
2051 ** structures. The xShutdown method is invoked (indirectly) by
2054 ** xInit and xShutdown.
2058 ** xShutdown method is only called from [sqlite3_shutdown()] so it does
2068 ** call to xShutdown().
2078 void (*xShutdown)(void*); /* Deinitialize the memory allocator */
2079 void *pAppData; /* Argument to xInit() and xShutdown() */
9050 ** [[the xShutdown() page cache method]]
9051 ** ^The xShutdown() method is called by [sqlite3_shutdown()].
9054 ** ^The xShutdown() method may be NULL.
9058 ** xShutdown method is only called from [sqlite3_shutdown()] so it does
9063 ** call to xShutdown().
9178 void (*xShutdown)(void*);
9200 void (*xShutdown)(void*);
29229 if( sqlite3GlobalConfig.m.xShutdown ){
29230 sqlite3GlobalConfig.m.xShutdown(sqlite3GlobalConfig.m.pAppData);
52906 if( sqlite3GlobalConfig.pcache2.xShutdown ){
52907 /* IMPLEMENTATION-OF: R-26000-56589 The xShutdown() method may be NULL. */
52908 sqlite3GlobalConfig.pcache2.xShutdown(sqlite3GlobalConfig.pcache2.pArg);
54280 ** Implementation of the sqlite3_pcache.xShutdown method.
54733 pcache1Shutdown, /* xShutdown */