Lines Matching refs:mmapSize
39115 sqlite3_int64 mmapSize; /* Usable size of mapping at pMapRegion */ member
42222 if( offset<pFile->mmapSize ){ in unixRead()
42223 if( offset+amt <= pFile->mmapSize ){ in unixRead()
42227 int nCopy = pFile->mmapSize - offset; in unixRead()
42374 if( offset<pFile->mmapSize ){ in unixWrite()
42375 if( offset+amt <= pFile->mmapSize ){ in unixWrite()
42379 int nCopy = pFile->mmapSize - offset; in unixWrite()
42685 if( nByte<pFile->mmapSize ){ in unixTruncate()
42686 pFile->mmapSize = nByte; in unixTruncate()
42781 if( pFile->mmapSizeMax>0 && nByte>pFile->mmapSize ){ in fcntlSizeHint()
42927 if( pFile->mmapSize>0 ){ in unixFileControl()
44128 pFd->mmapSize = 0; in unixUnmapfile()
44160 assert( nNew>pFd->mmapSize ); in unixRemapfile()
44163 assert( pFd->mmapSizeActual>=pFd->mmapSize ); in unixRemapfile()
44172 i64 nReuse = pFd->mmapSize; in unixRemapfile()
44175 i64 nReuse = (pFd->mmapSize & ~(szSyspage-1)); in unixRemapfile()
44221 pFd->mmapSize = pFd->mmapSizeActual = nNew; in unixRemapfile()
44242 assert( nMap>0 || (pFd->mmapSize==0 && pFd->pMapRegion==0) ); in unixMapfile()
44256 assert( nMap>0 || (pFd->mmapSize==0 && pFd->pMapRegion==0) ); in unixMapfile()
44257 if( nMap!=pFd->mmapSize ){ in unixMapfile()
44294 if( pFd->mmapSize >= (iOff+nAmt+nEofBuffer) ){ in unixFetch()
47417 sqlite3_int64 mmapSize; /* Size of mapped region */ member
50094 if( offset<pFile->mmapSize ){
50095 if( offset+amt <= pFile->mmapSize ){
50101 int nCopy = (int)(pFile->mmapSize - offset);
50172 if( offset<pFile->mmapSize ){
50173 if( offset+amt <= pFile->mmapSize ){
50179 int nCopy = (int)(pFile->mmapSize - offset);
50357 oldMmapSize = pFile->mmapSize;
51055 if( pFile->mmapSize>0 ){
51934 pFile->mmapSize, pFile->mmapSizeMax));
51945 pFile->mmapSize = 0;
52001 if( nMap==0 && pFd->mmapSize>0 ){
52004 if( nMap!=pFd->mmapSize ){
52055 pFd->mmapSize = nMap;
52100 if( pFd->mmapSize >= (iOff+nAmt+nEofBuffer) ){
52830 pFile->mmapSize = 0;