OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PCache
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/sqlite/src/src/
pcache.h
19
typedef struct
PCache
PCache
;
37
** Elements above are public. All that follows is private to
pcache
.c
41
PCache
*
pCache
; /* Cache that owns this page */
74
PCache
*pToInit /* Preallocated space for the
PCache
*/
78
void sqlite3PcacheSetPageSize(
PCache
*, int);
80
/* Return the size in bytes of a
PCache
object. Used to preallocate
88
int sqlite3PcacheFetch(
PCache
*, Pgno, int createFlag, PgHdr**)
[
all
...]
pcache.c
19
struct
PCache
{
29
sqlite3_pcache *
pCache
; /* Pluggable cache module */
49
** Check that the
pCache
->pSynced variable is set correctly. If it
53
** expensive_assert( pcacheCheckSynced(
pCache
) );
55
static int pcacheCheckSynced(
PCache
*
pCache
){
57
for(p=
pCache
->pDirtyTail; p!=
pCache
->pSynced; p=p->pDirtyPrev){
68
PCache
*p = pPage->
pCache
;
[
all
...]
pager.c
525
** (calls made by the
pcache
module to the pagerStress() routine to
530
** comes up during savepoint rollback that requires the
pcache
module
[
all
...]
/external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c
10773
sqlite3_
pcache
_methods
pcache
; \/* Low-level page-cache interface *\/
member in struct:Sqlite3Config
[
all
...]
Completed in 94 milliseconds