OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:sqlite3_pcache
(Results
1 - 2
of
2
) sorted by relevancy
/src/external/public-domain/sqlite/dist/
sqlite3.h
9315
** The
sqlite3_pcache
type is opaque. It is implemented by
9318
**
sqlite3_pcache
object except by holding and passing pointers
9323
typedef struct
sqlite3_pcache
sqlite3_pcache
;
typedef in typeref:struct:sqlite3_pcache
9490
** calling the xDestroy() method, SQLite considers the [
sqlite3_pcache
*]
9506
sqlite3_pcache
*(*xCreate)(int szPage, int szExtra, int bPurgeable);
9507
void (*xCachesize)(
sqlite3_pcache
*, int nCachesize);
9508
int (*xPagecount)(
sqlite3_pcache
*);
9509
sqlite3_pcache_page *(*xFetch)(
sqlite3_pcache
*, unsigned key, int createFlag);
9510
void (*xUnpin)(
sqlite3_pcache
*, sqlite3_pcache_page*, int discard)
[
all
...]
sqlite3.c
9636
** The
sqlite3_pcache
type is opaque. It is implemented by
9639
**
sqlite3_pcache
object except by holding and passing pointers
9644
typedef struct
sqlite3_pcache
sqlite3_pcache
;
typedef in typeref:struct:sqlite3_pcache
9811
** calling the xDestroy() method, SQLite considers the [
sqlite3_pcache
*]
9827
sqlite3_pcache
*(*xCreate)(int szPage, int szExtra, int bPurgeable);
9828
void (*xCachesize)(
sqlite3_pcache
*, int nCachesize);
9829
int (*xPagecount)(
sqlite3_pcache
*);
9830
sqlite3_pcache_page *(*xFetch)(
sqlite3_pcache
*, unsigned key, int createFlag);
9831
void (*xUnpin)(
sqlite3_pcache
*, sqlite3_pcache_page*, int discard)
[
all
...]
Completed in 72 milliseconds
Indexes created Tue Jun 09 00:24:00 UTC 2026