Home
last modified time | relevance | path

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

/PHP-5.5/ext/sqlite3/libsqlite/
H A Dsqlite3.h6910 typedef struct sqlite3_pcache_methods sqlite3_pcache_methods; typedef
6911 struct sqlite3_pcache_methods { struct
6912 void *pArg;
6913 int (*xInit)(void*);
6914 void (*xShutdown)(void*);
6915 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);
6916 void (*xCachesize)(sqlite3_pcache*, int nCachesize);
6917 int (*xPagecount)(sqlite3_pcache*);
6919 void (*xUnpin)(sqlite3_pcache*, void*, int discard);
6921 void (*xTruncate)(sqlite3_pcache*, unsigned iLimit);
[all …]
H A Dsqlite3.c7117 typedef struct sqlite3_pcache_methods sqlite3_pcache_methods; typedef
7118 struct sqlite3_pcache_methods { struct
7119 void *pArg;
7120 int (*xInit)(void*);
7121 void (*xShutdown)(void*);
7122 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);
7123 void (*xCachesize)(sqlite3_pcache*, int nCachesize);
7124 int (*xPagecount)(sqlite3_pcache*);
7126 void (*xUnpin)(sqlite3_pcache*, void*, int discard);
7128 void (*xTruncate)(sqlite3_pcache*, unsigned iLimit);
[all …]

Completed in 344 milliseconds