Lines Matching defs:mmapSize

24259   sqlite3_int64 mmapSize;             /* Usable size of mapping at pMapRegion */
27456 if( offset<pFile->mmapSize ){
27457 if( offset+amt <= pFile->mmapSize ){
27461 int nCopy = pFile->mmapSize - offset;
27591 if( offset<pFile->mmapSize ){
27592 if( offset+amt <= pFile->mmapSize ){
27596 int nCopy = pFile->mmapSize - offset;
27892 if( nByte<pFile->mmapSize ){
27893 pFile->mmapSize = nByte;
27986 if( pFile->mmapSizeMax>0 && nByte>pFile->mmapSize ){
28081 if( pFile->mmapSize>0 ){
28952 pFd->mmapSize = 0;
28964 ** unixFile.mmapSize
28984 assert( nNew>pFd->mmapSize );
28987 assert( pFd->mmapSizeActual>=pFd->mmapSize );
28994 i64 nReuse = pFd->mmapSize;
28997 i64 nReuse = (pFd->mmapSize & ~(szSyspage-1));
29043 pFd->mmapSize = pFd->mmapSizeActual = nNew;
29081 if( nMap!=pFd->mmapSize ){
29117 if( pFd->mmapSize >= iOff+nAmt ){
32245 sqlite3_int64 mmapSize; /* Usable size of mapped region */
34456 if( offset<pFile->mmapSize ){
34457 if( offset+amt <= pFile->mmapSize ){
34462 int nCopy = (int)(pFile->mmapSize - offset);
34528 if( offset<pFile->mmapSize ){
34529 if( offset+amt <= pFile->mmapSize ){
34534 int nCopy = (int)(pFile->mmapSize - offset);
34646 if( pFile->pMapRegion && nByte<pFile->mmapSize ){
34647 pFile->mmapSize = nByte;
35220 if( pFile->mmapSize>0 ){
35909 "mmapSize=%lld, mmapSizeActual=%lld, mmapSizeMax=%lld\n",
35911 pFile->mmapSize, pFile->mmapSizeActual, pFile->mmapSizeMax));
35922 pFile->mmapSize = 0;
35979 if( nMap==0 && pFd->mmapSize>0 ){
35982 if( nMap!=pFd->mmapSize ){
36031 pFd->mmapSize = nMap;
36072 if( pFd->mmapSize >= iOff+nAmt ){
36760 pFile->mmapSize = 0;