Home
last modified time | relevance | path

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

/sqlite-3.40.0/src/
H A Dos_unix.c233 int nFetchOut; /* Number of outstanding xFetch refs */ member
2070 assert( eFileLock==SHARED_LOCK || ((unixFile *)id)->nFetchOut==0 ); in unixUnlock()
4046 if( newLimit>=0 && newLimit!=pFile->mmapSizeMax && pFile->nFetchOut==0 ){ in unixFileControl()
5121 assert( pFd->nFetchOut==0 ); in unixUnmapfile()
5156 assert( pFd->nFetchOut==0 ); in unixRemapfile()
5238 assert( nMap>=0 || pFd->nFetchOut==0 ); in unixMapfile()
5240 if( pFd->nFetchOut>0 ) return SQLITE_OK; in unixMapfile()
5288 pFd->nFetchOut++; in unixFetch()
5313 assert( (p==0)==(pFd->nFetchOut==0) ); in unixUnfetch()
5319 pFd->nFetchOut--; in unixUnfetch()
[all …]
H A Dos_win.c284 int nFetchOut; /* Number of outstanding xFetch references */ member
2915 if( pFile->nFetchOut>0 ){
3627 if( newLimit>=0 && newLimit!=pFile->mmapSizeMax && pFile->nFetchOut==0 ){
4419 assert( nMap>=0 || pFd->nFetchOut==0 );
4423 if( pFd->nFetchOut>0 ) return SQLITE_OK;
4535 pFd->nFetchOut++;
4562 assert( (p==0)==(pFd->nFetchOut==0) );
4571 pFd->nFetchOut--;
4580 assert( pFd->nFetchOut>=0 );