OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PGHDR_NEED_SYNC
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/sqlite/src/src/
pcache.c
58
assert( p->nRef || (p->flags&
PGHDR_NEED_SYNC
) );
60
return (p==0 || p->nRef || (p->flags&
PGHDR_NEED_SYNC
)==0);
76
while( pSynced && (pSynced->flags&
PGHDR_NEED_SYNC
) ){
118
if( !p->pSynced && 0==(pPage->flags&
PGHDR_NEED_SYNC
) ){
241
** page that does not require a journal-sync (one with
PGHDR_NEED_SYNC
247
pPg && (pPg->nRef || (pPg->flags&
PGHDR_NEED_SYNC
));
358
p->flags &= ~(PGHDR_DIRTY|
PGHDR_NEED_SYNC
);
376
** Clear the
PGHDR_NEED_SYNC
flag from all dirty pages.
381
p->flags &= ~
PGHDR_NEED_SYNC
;
395
if( (p->flags&PGHDR_DIRTY) && (p->flags&
PGHDR_NEED_SYNC
) ){
[
all
...]
pcache.h
49
#define
PGHDR_NEED_SYNC
0x004 /* Fsync the rollback journal before
pager.c
[
all
...]
/external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c
[
all
...]
Completed in 47 milliseconds