Home
last modified time | relevance | path

Searched refs:PGHDR_DIRTY (Results 1 – 25 of 167) sorted by relevance

1234567

/dports/databases/sqlite3/sqlite-src-3350500/src/
H A Dpcache.c115 assert( (pPg->flags & PGHDR_DIRTY)==0 );/* Cannot be both CLEAN and DIRTY */ in sqlite3PcachePageSanity()
121 assert( pPg->flags & PGHDR_DIRTY ); /* WRITEABLE implies DIRTY */ in sqlite3PcachePageSanity()
539 if( p->flags&PGHDR_DIRTY ){ in sqlite3PcacheDrop()
556 p->flags ^= (PGHDR_DIRTY|PGHDR_CLEAN); in sqlite3PcacheMakeDirty()
558 assert( (p->flags & (PGHDR_DIRTY|PGHDR_CLEAN))==PGHDR_DIRTY ); in sqlite3PcacheMakeDirty()
571 assert( (p->flags & PGHDR_DIRTY)!=0 ); in sqlite3PcacheMakeClean()
574 p->flags &= ~(PGHDR_DIRTY|PGHDR_NEED_SYNC|PGHDR_WRITEABLE); in sqlite3PcacheMakeClean()
628 if( (p->flags&PGHDR_DIRTY) && (p->flags&PGHDR_NEED_SYNC) ){ in sqlite3PcacheMove()
655 assert( p->flags&PGHDR_DIRTY ); in sqlite3PcacheTruncate()
H A Dpcache.h52 #define PGHDR_DIRTY 0x002 /* Page is on the PCache.pDirty list */ macro
H A Dpager.c1264 assert( (pPg->flags&PGHDR_DIRTY) || pPg->pageHash==pager_pagehash(pPg) ); in checkPage()
3917 assert( pPg->flags&PGHDR_DIRTY ); in assertTruncateConstraintCb()
4532 assert( pPg->flags&PGHDR_DIRTY ); in pagerStress()
6195 if( !pPager->tempFile && (pPg->flags&PGHDR_DIRTY) && pPager->nSavepoint==0 ){ in sqlite3PagerDontWrite()
7096 if( (pPg->flags & PGHDR_DIRTY)!=0 in sqlite3PagerMovepage()
7117 assert( pPg->flags&PGHDR_DIRTY ); in sqlite3PagerMovepage()
/dports/databases/sqlcipher/sqlcipher-3.4.2/src/
H A Dpcache.c115 assert( (pPg->flags & PGHDR_DIRTY)==0 );/* Cannot be both CLEAN and DIRTY */ in sqlite3PcachePageSanity()
121 assert( pPg->flags & PGHDR_DIRTY ); /* WRITEABLE implies DIRTY */ in sqlite3PcachePageSanity()
544 if( p->flags&PGHDR_DIRTY ){ in sqlite3PcacheDrop()
561 p->flags ^= (PGHDR_DIRTY|PGHDR_CLEAN); in sqlite3PcacheMakeDirty()
563 assert( (p->flags & (PGHDR_DIRTY|PGHDR_CLEAN))==PGHDR_DIRTY ); in sqlite3PcacheMakeDirty()
576 if( ALWAYS((p->flags & PGHDR_DIRTY)!=0) ){ in sqlite3PcacheMakeClean()
579 p->flags &= ~(PGHDR_DIRTY|PGHDR_NEED_SYNC|PGHDR_WRITEABLE); in sqlite3PcacheMakeClean()
634 if( (p->flags&PGHDR_DIRTY) && (p->flags&PGHDR_NEED_SYNC) ){ in sqlite3PcacheMove()
661 assert( p->flags&PGHDR_DIRTY ); in sqlite3PcacheTruncate()
H A Dpcache.h50 #define PGHDR_DIRTY 0x002 /* Page is on the PCache.pDirty list */ macro
H A Dpager.c1246 assert( (pPg->flags&PGHDR_DIRTY) || pPg->pageHash==pager_pagehash(pPg) ); in checkPage()
3935 assert( pPg->flags&PGHDR_DIRTY ); in assertTruncateConstraintCb()
4533 assert( pPg->flags&PGHDR_DIRTY ); in pagerStress()
6114 if( !pPager->tempFile && (pPg->flags&PGHDR_DIRTY) && pPager->nSavepoint==0 ){ in sqlite3PagerDontWrite()
6995 if( (pPg->flags & PGHDR_DIRTY)!=0 in sqlite3PagerMovepage()
7016 assert( pPg->flags&PGHDR_DIRTY ); in sqlite3PagerMovepage()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/sqlite/src/src/
H A Dpcache.c115 assert( (pPg->flags & PGHDR_DIRTY)==0 );/* Cannot be both CLEAN and DIRTY */ in sqlite3PcachePageSanity()
121 assert( pPg->flags & PGHDR_DIRTY ); /* WRITEABLE implies DIRTY */ in sqlite3PcachePageSanity()
539 if( p->flags&PGHDR_DIRTY ){ in sqlite3PcacheDrop()
556 p->flags ^= (PGHDR_DIRTY|PGHDR_CLEAN); in sqlite3PcacheMakeDirty()
558 assert( (p->flags & (PGHDR_DIRTY|PGHDR_CLEAN))==PGHDR_DIRTY ); in sqlite3PcacheMakeDirty()
571 assert( (p->flags & PGHDR_DIRTY)!=0 ); in sqlite3PcacheMakeClean()
574 p->flags &= ~(PGHDR_DIRTY|PGHDR_NEED_SYNC|PGHDR_WRITEABLE); in sqlite3PcacheMakeClean()
628 if( (p->flags&PGHDR_DIRTY) && (p->flags&PGHDR_NEED_SYNC) ){ in sqlite3PcacheMove()
655 assert( p->flags&PGHDR_DIRTY ); in sqlite3PcacheTruncate()
H A Dpcache.h52 #define PGHDR_DIRTY 0x002 /* Page is on the PCache.pDirty list */ macro
H A Dpager.c1292 assert( (pPg->flags&PGHDR_DIRTY) || pPg->pageHash==pager_pagehash(pPg) ); in checkPage()
3989 assert( pPg->flags&PGHDR_DIRTY ); in assertTruncateConstraintCb()
4616 assert( pPg->flags&PGHDR_DIRTY ); in pagerStress()
6262 if( !pPager->tempFile && (pPg->flags&PGHDR_DIRTY) && pPager->nSavepoint==0 ){ in sqlite3PagerDontWrite()
7218 if( (pPg->flags & PGHDR_DIRTY)!=0 in sqlite3PagerMovepage()
7239 assert( pPg->flags&PGHDR_DIRTY ); in sqlite3PagerMovepage()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/sqlite/src/src/
H A Dpcache.c115 assert( (pPg->flags & PGHDR_DIRTY)==0 );/* Cannot be both CLEAN and DIRTY */ in sqlite3PcachePageSanity()
121 assert( pPg->flags & PGHDR_DIRTY ); /* WRITEABLE implies DIRTY */ in sqlite3PcachePageSanity()
539 if( p->flags&PGHDR_DIRTY ){ in sqlite3PcacheDrop()
556 p->flags ^= (PGHDR_DIRTY|PGHDR_CLEAN); in sqlite3PcacheMakeDirty()
558 assert( (p->flags & (PGHDR_DIRTY|PGHDR_CLEAN))==PGHDR_DIRTY ); in sqlite3PcacheMakeDirty()
571 assert( (p->flags & PGHDR_DIRTY)!=0 ); in sqlite3PcacheMakeClean()
574 p->flags &= ~(PGHDR_DIRTY|PGHDR_NEED_SYNC|PGHDR_WRITEABLE); in sqlite3PcacheMakeClean()
628 if( (p->flags&PGHDR_DIRTY) && (p->flags&PGHDR_NEED_SYNC) ){ in sqlite3PcacheMove()
655 assert( p->flags&PGHDR_DIRTY ); in sqlite3PcacheTruncate()
H A Dpcache.h52 #define PGHDR_DIRTY 0x002 /* Page is on the PCache.pDirty list */ macro
H A Dpager.c1260 assert( (pPg->flags&PGHDR_DIRTY) || pPg->pageHash==pager_pagehash(pPg) ); in checkPage()
3913 assert( pPg->flags&PGHDR_DIRTY ); in assertTruncateConstraintCb()
4528 assert( pPg->flags&PGHDR_DIRTY ); in pagerStress()
6191 if( !pPager->tempFile && (pPg->flags&PGHDR_DIRTY) && pPager->nSavepoint==0 ){ in sqlite3PagerDontWrite()
7089 if( (pPg->flags & PGHDR_DIRTY)!=0 in sqlite3PagerMovepage()
7110 assert( pPg->flags&PGHDR_DIRTY ); in sqlite3PagerMovepage()
/dports/math/vtk6/VTK-6.2.0/ThirdParty/sqlite/vtksqlite/
H A Dvtk_sqlite3.c29755 if( (p->flags&PGHDR_DIRTY)==0 ){
29781 if( p->flags&PGHDR_DIRTY ){
29799 if( 0==(p->flags & PGHDR_DIRTY) ){
29800 p->flags |= PGHDR_DIRTY;
29810 if( (p->flags & PGHDR_DIRTY) ){
29871 assert( p->flags&PGHDR_DIRTY );
33824 assert( pPg->flags&PGHDR_DIRTY );
34229 assert( pPg->flags&PGHDR_DIRTY );
35627 return pPg->flags&PGHDR_DIRTY;
36376 if( pPg->flags&PGHDR_DIRTY
[all …]
/dports/devel/raknet/raknet-3.9.2_10,1/DependentExtensions/SQLite3Plugin/
H A Dsqlite3.c28685 if( (p->flags&PGHDR_DIRTY)==0 ){
28711 if( p->flags&PGHDR_DIRTY ){
28729 if( 0==(p->flags & PGHDR_DIRTY) ){
28730 p->flags |= PGHDR_DIRTY;
28740 if( (p->flags & PGHDR_DIRTY) ){
28742 p->flags &= ~(PGHDR_DIRTY|PGHDR_NEED_SYNC);
28801 assert( p->flags&PGHDR_DIRTY );
32944 assert( pPg->flags&PGHDR_DIRTY );
34282 return pPg->flags&PGHDR_DIRTY;
35010 if( pPg->flags&PGHDR_DIRTY
[all …]
/dports/security/vault/vault-1.8.2/vendor/github.com/apple/foundationdb/fdbserver/sqlite/
H A Dsqlite3.amalgamation.c27321 if( (p->flags&PGHDR_DIRTY)==0 ){
27347 if( p->flags&PGHDR_DIRTY ){
27367 if( 0==(p->flags & PGHDR_DIRTY) ){
27368 p->flags |= PGHDR_DIRTY;
27378 if( (p->flags & PGHDR_DIRTY) ){
27444 assert( p->flags&PGHDR_DIRTY );
32816 assert( pPg->flags&PGHDR_DIRTY );
33299 assert( pPg->flags&PGHDR_DIRTY );
34657 return pPg->flags&PGHDR_DIRTY;
35481 if( pPg->flags&PGHDR_DIRTY
[all …]
/dports/games/pokerth/pokerth-1.1.2-rc/src/third_party/sqlite3/
H A Dsqlite3.c36545 if( (p->flags&PGHDR_DIRTY)==0 ){
36571 if( p->flags&PGHDR_DIRTY ){
36589 if( 0==(p->flags & PGHDR_DIRTY) ){
36590 p->flags |= PGHDR_DIRTY;
36600 if( (p->flags & PGHDR_DIRTY) ){
36666 assert( p->flags&PGHDR_DIRTY );
42122 assert( pPg->flags&PGHDR_DIRTY );
42606 assert( pPg->flags&PGHDR_DIRTY );
43980 return pPg->flags&PGHDR_DIRTY;
44830 if( pPg->flags&PGHDR_DIRTY
[all …]
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/sqlite/
H A Dsqlite3.c35023 if( (p->flags&PGHDR_DIRTY)==0 ){
35049 if( p->flags&PGHDR_DIRTY ){
35067 if( 0==(p->flags & PGHDR_DIRTY) ){
35068 p->flags |= PGHDR_DIRTY;
35078 if( (p->flags & PGHDR_DIRTY) ){
35144 assert( p->flags&PGHDR_DIRTY );
40503 assert( pPg->flags&PGHDR_DIRTY );
40986 assert( pPg->flags&PGHDR_DIRTY );
42356 return pPg->flags&PGHDR_DIRTY;
43179 if( pPg->flags&PGHDR_DIRTY
[all …]
/dports/devel/emscripten/emscripten-2.0.3/tests/third_party/sqlite/
H A Dsqlite3.c34987 if( (p->flags&PGHDR_DIRTY)==0 ){
35013 if( p->flags&PGHDR_DIRTY ){
35031 if( 0==(p->flags & PGHDR_DIRTY) ){
35032 p->flags |= PGHDR_DIRTY;
35042 if( (p->flags & PGHDR_DIRTY) ){
35108 assert( p->flags&PGHDR_DIRTY );
40467 assert( pPg->flags&PGHDR_DIRTY );
40950 assert( pPg->flags&PGHDR_DIRTY );
42320 return pPg->flags&PGHDR_DIRTY;
43143 if( pPg->flags&PGHDR_DIRTY
[all …]
/dports/irc/ircd-ratbox-devel/ircd-ratbox-3.0.7/bandb/sqlite3/
H A Dsqlite3.c35480 if( (p->flags&PGHDR_DIRTY)==0 ){
35506 if( p->flags&PGHDR_DIRTY ){
35524 if( 0==(p->flags & PGHDR_DIRTY) ){
35525 p->flags |= PGHDR_DIRTY;
35535 if( (p->flags & PGHDR_DIRTY) ){
35601 assert( p->flags&PGHDR_DIRTY );
41209 assert( pPg->flags&PGHDR_DIRTY );
41693 assert( pPg->flags&PGHDR_DIRTY );
43063 return pPg->flags&PGHDR_DIRTY;
43886 if( pPg->flags&PGHDR_DIRTY
[all …]
/dports/games/craft/Craft-1.0fbsd/deps/sqlite/
H A Dsqlite3.c37556 if( (p->flags&PGHDR_DIRTY)==0 ){
37582 if( p->flags&PGHDR_DIRTY ){
37600 if( 0==(p->flags & PGHDR_DIRTY) ){
37601 p->flags |= PGHDR_DIRTY;
37611 if( (p->flags & PGHDR_DIRTY) ){
37677 assert( p->flags&PGHDR_DIRTY );
43350 assert( pPg->flags&PGHDR_DIRTY );
43927 assert( pPg->flags&PGHDR_DIRTY );
45416 return pPg->flags&PGHDR_DIRTY;
46271 if( pPg->flags&PGHDR_DIRTY
[all …]
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/vic/vendor/github.com/docker/docker/vendor/github.com/mattn/go-sqlite3/code/
H A Dsqlite3-binding.c37880 if( (p->flags&PGHDR_DIRTY)==0 ){
37906 if( p->flags&PGHDR_DIRTY ){
37924 if( 0==(p->flags & PGHDR_DIRTY) ){
37925 p->flags |= PGHDR_DIRTY;
37935 if( (p->flags & PGHDR_DIRTY) ){
38001 assert( p->flags&PGHDR_DIRTY );
43674 assert( pPg->flags&PGHDR_DIRTY );
44251 assert( pPg->flags&PGHDR_DIRTY );
45749 return pPg->flags&PGHDR_DIRTY;
46604 if( pPg->flags&PGHDR_DIRTY
[all …]
/dports/deskutils/coolreader/coolreader-cr3.2.55/thirdparty_unman/sqlite/
H A Dsqlite3.c36362 if( (p->flags&PGHDR_DIRTY)==0 ){
36388 if( p->flags&PGHDR_DIRTY ){
36406 if( 0==(p->flags & PGHDR_DIRTY) ){
36407 p->flags |= PGHDR_DIRTY;
36417 if( (p->flags & PGHDR_DIRTY) ){
36483 assert( p->flags&PGHDR_DIRTY );
42128 assert( pPg->flags&PGHDR_DIRTY );
42704 assert( pPg->flags&PGHDR_DIRTY );
44157 return pPg->flags&PGHDR_DIRTY;
44990 if( pPg->flags&PGHDR_DIRTY
[all …]
/dports/databases/R-cran-RSQLite/RSQLite/src/sqlite/
H A Dsqlite3.c38265 if( (p->flags&PGHDR_DIRTY)==0 ){
38291 if( p->flags&PGHDR_DIRTY ){
38309 if( 0==(p->flags & PGHDR_DIRTY) ){
38310 p->flags |= PGHDR_DIRTY;
38320 if( (p->flags & PGHDR_DIRTY) ){
38386 assert( p->flags&PGHDR_DIRTY );
44059 assert( pPg->flags&PGHDR_DIRTY );
44636 assert( pPg->flags&PGHDR_DIRTY );
46134 return pPg->flags&PGHDR_DIRTY;
46989 if( pPg->flags&PGHDR_DIRTY
[all …]
/dports/chinese/libchewing/libchewing-0.5.1/thirdparty/sqlite-amalgamation/
H A Dsqlite3.c36363 if( (p->flags&PGHDR_DIRTY)==0 ){
36389 if( p->flags&PGHDR_DIRTY ){
36407 if( 0==(p->flags & PGHDR_DIRTY) ){
36408 p->flags |= PGHDR_DIRTY;
36418 if( (p->flags & PGHDR_DIRTY) ){
36484 assert( p->flags&PGHDR_DIRTY );
42144 assert( pPg->flags&PGHDR_DIRTY );
42721 assert( pPg->flags&PGHDR_DIRTY );
44180 return pPg->flags&PGHDR_DIRTY;
45033 if( pPg->flags&PGHDR_DIRTY
[all …]
/dports/games/freeminer/freeminer-0.4.10.4/src/sqlite/
H A Dsqlite3.c37880 if( (p->flags&PGHDR_DIRTY)==0 ){
37906 if( p->flags&PGHDR_DIRTY ){
37924 if( 0==(p->flags & PGHDR_DIRTY) ){
37925 p->flags |= PGHDR_DIRTY;
37935 if( (p->flags & PGHDR_DIRTY) ){
38001 assert( p->flags&PGHDR_DIRTY );
43674 assert( pPg->flags&PGHDR_DIRTY );
44251 assert( pPg->flags&PGHDR_DIRTY );
45749 return pPg->flags&PGHDR_DIRTY;
46604 if( pPg->flags&PGHDR_DIRTY
[all …]

1234567