Lines Matching refs:nFetchOut
39114 int nFetchOut; /* Number of outstanding xFetch refs */ member
40972 assert( eFileLock==SHARED_LOCK || ((unixFile *)id)->nFetchOut==0 ); in unixUnlock()
42925 if( newLimit>=0 && newLimit!=pFile->mmapSizeMax && pFile->nFetchOut==0 ){ in unixFileControl()
44124 assert( pFd->nFetchOut==0 ); in unixUnmapfile()
44159 assert( pFd->nFetchOut==0 ); in unixRemapfile()
44241 assert( nMap>=0 || pFd->nFetchOut==0 ); in unixMapfile()
44243 if( pFd->nFetchOut>0 ) return SQLITE_OK; in unixMapfile()
44296 pFd->nFetchOut++; in unixFetch()
44321 assert( (p==0)==(pFd->nFetchOut==0) ); in unixUnfetch()
44327 pFd->nFetchOut--; in unixUnfetch()
44332 assert( pFd->nFetchOut>=0 ); in unixUnfetch()
47414 int nFetchOut; /* Number of outstanding xFetch references */ member
50319 if( pFile->nFetchOut>0 ){
51053 if( newLimit>=0 && newLimit!=pFile->mmapSizeMax && pFile->nFetchOut==0 ){
51982 assert( nMap>=0 || pFd->nFetchOut==0 );
51986 if( pFd->nFetchOut>0 ) return SQLITE_OK;
52103 pFd->nFetchOut++;
52130 assert( (p==0)==(pFd->nFetchOut==0) );
52139 pFd->nFetchOut--;
52148 assert( pFd->nFetchOut>=0 );