Home
last modified time | relevance | path

Searched refs:mmapSizeMax (Results 1 – 2 of 2) sorted by relevance

/sqlite-3.40.0/src/
H A Dos_unix.c236 sqlite3_int64 mmapSizeMax; /* Configured FCNTL_MMAP_SIZE value */ member
3919 if( pFile->mmapSizeMax>0 && nByte>pFile->mmapSize ){ in fcntlSizeHint()
4045 *(i64*)pArg = pFile->mmapSizeMax; in unixFileControl()
4046 if( newLimit>=0 && newLimit!=pFile->mmapSizeMax && pFile->nFetchOut==0 ){ in unixFileControl()
4047 pFile->mmapSizeMax = newLimit; in unixFileControl()
5158 assert( nNew<=pFd->mmapSizeMax ); in unixRemapfile()
5215 pFd->mmapSizeMax = 0; in unixRemapfile()
5249 if( nMap>pFd->mmapSizeMax ){ in unixMapfile()
5250 nMap = pFd->mmapSizeMax; in unixMapfile()
5281 if( pFd->mmapSizeMax>0 ){ in unixFetch()
[all …]
H A Dos_win.c288 sqlite3_int64 mmapSizeMax; /* Configured FCNTL_MMAP_SIZE value */ member
3626 *(i64*)pArg = pFile->mmapSizeMax;
3627 if( newLimit>=0 && newLimit!=pFile->mmapSizeMax && pFile->nFetchOut==0 ){
3628 pFile->mmapSizeMax = newLimit;
4371 pFile->mmapSize, pFile->mmapSizeMax));
4433 if( nMap>pFd->mmapSizeMax ){
4434 nMap = pFd->mmapSizeMax;
4523 if( pFd->mmapSizeMax>0 ){
5317 pFile->mmapSizeMax = sqlite3GlobalConfig.szMmap;