Github User Fetcher 1.0.0
C Application with Server and GUI
Loading...
Searching...
No Matches
sqlite3_pcache_methods Struct Reference

#include <sqlite3.h>

Data Fields

void * pArg
 
int(* xInit )(void *)
 
void(* xShutdown )(void *)
 
sqlite3_pcache *(* xCreate )(int szPage, int bPurgeable)
 
void(* xCachesize )(sqlite3_pcache *, int nCachesize)
 
int(* xPagecount )(sqlite3_pcache *)
 
void *(* xFetch )(sqlite3_pcache *, unsigned key, int createFlag)
 
void(* xUnpin )(sqlite3_pcache *, void *, int discard)
 
void(* xRekey )(sqlite3_pcache *, void *, unsigned oldKey, unsigned newKey)
 
void(* xTruncate )(sqlite3_pcache *, unsigned iLimit)
 
void(* xDestroy )(sqlite3_pcache *)
 

Detailed Description

Definition at line 9514 of file sqlite3.c.

Field Documentation

◆ pArg

void * sqlite3_pcache_methods::pArg

Definition at line 9515 of file sqlite3.c.

◆ xCachesize

void(* sqlite3_pcache_methods::xCachesize)(sqlite3_pcache *, int nCachesize)

Definition at line 9519 of file sqlite3.c.

◆ xCreate

sqlite3_pcache *(* sqlite3_pcache_methods::xCreate)(int szPage, int bPurgeable)

Definition at line 9518 of file sqlite3.c.

◆ xDestroy

void(* sqlite3_pcache_methods::xDestroy)(sqlite3_pcache *)

Definition at line 9525 of file sqlite3.c.

◆ xFetch

void *(* sqlite3_pcache_methods::xFetch)(sqlite3_pcache *, unsigned key, int createFlag)

Definition at line 9521 of file sqlite3.c.

◆ xInit

int(* sqlite3_pcache_methods::xInit)(void *)

Definition at line 9516 of file sqlite3.c.

◆ xPagecount

int(* sqlite3_pcache_methods::xPagecount)(sqlite3_pcache *)

Definition at line 9520 of file sqlite3.c.

◆ xRekey

void(* sqlite3_pcache_methods::xRekey)(sqlite3_pcache *, void *, unsigned oldKey, unsigned newKey)

Definition at line 9523 of file sqlite3.c.

◆ xShutdown

void(* sqlite3_pcache_methods::xShutdown)(void *)

Definition at line 9517 of file sqlite3.c.

◆ xTruncate

void(* sqlite3_pcache_methods::xTruncate)(sqlite3_pcache *, unsigned iLimit)

Definition at line 9524 of file sqlite3.c.

◆ xUnpin

void(* sqlite3_pcache_methods::xUnpin)(sqlite3_pcache *, void *, int discard)

Definition at line 9522 of file sqlite3.c.


The documentation for this struct was generated from the following files: