Searched defs:szJ (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dpager.c642 off_t szJ; /* Size of the journal file in bytes */ local
655 rc = sqliteOsFileSize(&pPager->jfd, &szJ);
666 if( szJ < sizeof(aMagic)+sizeof(Pgno) ){
689 if( szJ < sizeof(aMagic) + 3*sizeof(u32) ){
703 nRec = (szJ - JOURNAL_HDR_SZ(3))/JOURNAL_PG_SZ(3);
706 nRec = (szJ - JOURNAL_HDR_SZ(2))/JOURNAL_PG_SZ(2);
707 assert( nRec*JOURNAL_PG_SZ(2)+JOURNAL_HDR_SZ(2)==szJ );
785 off_t szJ; /* Size of the full journal */ local
819 rc = sqliteOsFileSize(&pPager->jfd, &szJ);
823 nRec = (szJ
1211 off_t szJ; local
[all...]

Completed in 91 milliseconds