Lines Matching defs:sqlite3_pcache_methods2
2274 ** a pointer to an [sqlite3_pcache_methods2] object. This object specifies
2276 ** ^SQLite makes a copy of the [sqlite3_pcache_methods2] object.</dd>
2280 ** is a pointer to an [sqlite3_pcache_methods2] object. SQLite copies of
2452 #define SQLITE_CONFIG_PCACHE2 18 /* sqlite3_pcache_methods2* */
2453 #define SQLITE_CONFIG_GETPCACHE2 19 /* sqlite3_pcache_methods2* */
8994 ** See [sqlite3_pcache_methods2] for additional information.
9006 ** See [sqlite3_pcache_methods2] for additional information.
9020 ** instance of the sqlite3_pcache_methods2 structure.)^
9034 ** ^(The contents of the sqlite3_pcache_methods2 structure are copied to an
9043 ** method is passed a copy of the sqlite3_pcache_methods2.pArg value.)^
9164 ** handle invalid, and will not use it with any other sqlite3_pcache_methods2
9173 typedef struct sqlite3_pcache_methods2 sqlite3_pcache_methods2;
9174 struct sqlite3_pcache_methods2 {
9193 ** by sqlite3_pcache_methods2. This object is not used by SQLite. It is
19485 sqlite3_pcache_methods2 pcache2; /* Low-level page-cache interface */
54729 static const sqlite3_pcache_methods2 defaultMethods = {
173955 ** single argument which is a pointer to an sqlite3_pcache_methods2
173958 sqlite3GlobalConfig.pcache2 = *va_arg(ap, sqlite3_pcache_methods2*);
173963 ** single argument which is a pointer to an sqlite3_pcache_methods2
173969 *va_arg(ap, sqlite3_pcache_methods2*) = sqlite3GlobalConfig.pcache2;