Lines Matching defs:mmapSize

24266   sqlite3_int64 mmapSize;             /* Usable size of mapping at pMapRegion */
27474 if( offset<pFile->mmapSize ){
27475 if( offset+amt <= pFile->mmapSize ){
27479 int nCopy = pFile->mmapSize - offset;
27609 if( offset<pFile->mmapSize ){
27610 if( offset+amt <= pFile->mmapSize ){
27614 int nCopy = pFile->mmapSize - offset;
27910 if( nByte<pFile->mmapSize ){
27911 pFile->mmapSize = nByte;
28006 if( pFile->mmapSizeMax>0 && nByte>pFile->mmapSize ){
28101 if( pFile->mmapSize>0 ){
28972 pFd->mmapSize = 0;
28984 ** unixFile.mmapSize
29004 assert( nNew>pFd->mmapSize );
29007 assert( pFd->mmapSizeActual>=pFd->mmapSize );
29014 i64 nReuse = pFd->mmapSize;
29017 i64 nReuse = (pFd->mmapSize & ~(szSyspage-1));
29063 pFd->mmapSize = pFd->mmapSizeActual = nNew;
29101 if( nMap!=pFd->mmapSize ){
29137 if( pFd->mmapSize >= iOff+nAmt ){
32265 sqlite3_int64 mmapSize; /* Usable size of mapped region */
34476 if( offset<pFile->mmapSize ){
34477 if( offset+amt <= pFile->mmapSize ){
34482 int nCopy = (int)(pFile->mmapSize - offset);
34548 if( offset<pFile->mmapSize ){
34549 if( offset+amt <= pFile->mmapSize ){
34554 int nCopy = (int)(pFile->mmapSize - offset);
34666 if( pFile->pMapRegion && nByte<pFile->mmapSize ){
34667 pFile->mmapSize = nByte;
35240 if( pFile->mmapSize>0 ){
35929 "mmapSize=%lld, mmapSizeActual=%lld, mmapSizeMax=%lld\n",
35931 pFile->mmapSize, pFile->mmapSizeActual, pFile->mmapSizeMax));
35942 pFile->mmapSize = 0;
35999 if( nMap==0 && pFd->mmapSize>0 ){
36002 if( nMap!=pFd->mmapSize ){
36051 pFd->mmapSize = nMap;
36092 if( pFd->mmapSize >= iOff+nAmt ){
36780 pFile->mmapSize = 0;