Home
last modified time | relevance | path

Searched defs:sqlite3_pcache_methods (Results 1 – 2 of 2) sorted by relevance

/PHP-7.2/ext/sqlite3/libsqlite/
H A Dsqlite3.h8072 typedef struct sqlite3_pcache_methods sqlite3_pcache_methods; typedef
8073 struct sqlite3_pcache_methods { struct
8074 void *pArg;
8075 int (*xInit)(void*);
8076 void (*xShutdown)(void*);
8077 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);
8078 void (*xCachesize)(sqlite3_pcache*, int nCachesize);
8079 int (*xPagecount)(sqlite3_pcache*);
8081 void (*xUnpin)(sqlite3_pcache*, void*, int discard);
8083 void (*xTruncate)(sqlite3_pcache*, unsigned iLimit);
[all …]
H A Dsqlite3.c9111 typedef struct sqlite3_pcache_methods sqlite3_pcache_methods; typedef
9112 struct sqlite3_pcache_methods { struct
9113 void *pArg;
9114 int (*xInit)(void*);
9115 void (*xShutdown)(void*);
9116 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);
9117 void (*xCachesize)(sqlite3_pcache*, int nCachesize);
9118 int (*xPagecount)(sqlite3_pcache*);
9120 void (*xUnpin)(sqlite3_pcache*, void*, int discard);
9122 void (*xTruncate)(sqlite3_pcache*, unsigned iLimit);
[all …]

Completed in 476 milliseconds