Lines Matching defs:sqlite3_pcache_methods2
2300 ** a pointer to an [sqlite3_pcache_methods2] object. This object specifies
2302 ** ^SQLite makes a copy of the [sqlite3_pcache_methods2] object.</dd>
2306 ** is a pointer to an [sqlite3_pcache_methods2] object. SQLite copies of
2494 #define SQLITE_CONFIG_PCACHE2 18 /* sqlite3_pcache_methods2* */
2495 #define SQLITE_CONFIG_GETPCACHE2 19 /* sqlite3_pcache_methods2* */
9226 ** See [sqlite3_pcache_methods2] for additional information.
9238 ** See [sqlite3_pcache_methods2] for additional information.
9252 ** instance of the sqlite3_pcache_methods2 structure.)^
9266 ** ^(The contents of the sqlite3_pcache_methods2 structure are copied to an
9275 ** method is passed a copy of the sqlite3_pcache_methods2.pArg value.)^
9396 ** handle invalid, and will not use it with any other sqlite3_pcache_methods2
9405 typedef struct sqlite3_pcache_methods2 sqlite3_pcache_methods2;
9406 struct sqlite3_pcache_methods2 {
9425 ** by sqlite3_pcache_methods2. This object is not used by SQLite. It is
20201 sqlite3_pcache_methods2 pcache2; /* Low-level page-cache interface */
56351 static const sqlite3_pcache_methods2 defaultMethods = {
180341 ** single argument which is a pointer to an sqlite3_pcache_methods2
180344 sqlite3GlobalConfig.pcache2 = *va_arg(ap, sqlite3_pcache_methods2*);
180349 ** single argument which is a pointer to an sqlite3_pcache_methods2
180355 *va_arg(ap, sqlite3_pcache_methods2*) = sqlite3GlobalConfig.pcache2;