Lines Matching full:xshutdown
2060 ** structures. The xShutdown method is invoked (indirectly) by
2063 ** xInit and xShutdown.
2067 ** xShutdown method is only called from [sqlite3_shutdown()] so it does
2077 ** call to xShutdown().
2087 void (*xShutdown)(void*); /* Deinitialize the memory allocator */
2088 void *pAppData; /* Argument to xInit() and xShutdown() */
9282 ** [[the xShutdown() page cache method]]
9283 ** ^The xShutdown() method is called by [sqlite3_shutdown()].
9286 ** ^The xShutdown() method may be NULL.
9290 ** xShutdown method is only called from [sqlite3_shutdown()] so it does
9295 ** call to xShutdown().
9410 void (*xShutdown)(void*);
9432 void (*xShutdown)(void*);
30403 if( sqlite3GlobalConfig.m.xShutdown ){
30404 sqlite3GlobalConfig.m.xShutdown(sqlite3GlobalConfig.m.pAppData);
54528 if( sqlite3GlobalConfig.pcache2.xShutdown ){
54529 /* IMPLEMENTATION-OF: R-26000-56589 The xShutdown() method may be NULL. */
54530 sqlite3GlobalConfig.pcache2.xShutdown(sqlite3GlobalConfig.pcache2.pArg);
55902 ** Implementation of the sqlite3_pcache.xShutdown method.
56355 pcache1Shutdown, /* xShutdown */