Lines Matching refs:nRead
470 DWORD nRead = 0; in sqlite3_fgets() local
472 && ReadConsoleW(GetStdHandle(STD_INPUT_HANDLE), b1, sz-1, &nRead, 0) in sqlite3_fgets()
474 b1[nRead] = 0; in sqlite3_fgets()
10741 int nRead, /* Number of bytes to read */ in zipfileReadData() argument
10747 n = fread(aRead, 1, nRead, pFile); in zipfileReadData()
10748 if( (int)n!=nRead ){ in zipfileReadData()
11364 int nRead; /* Bytes to read from file */ in zipfileReadEOCD() local
11376 nRead = (int)(MIN(szFile, ZIPFILE_BUFFER_SIZE)); in zipfileReadEOCD()
11377 iOff = szFile - nRead; in zipfileReadEOCD()
11378 rc = zipfileReadData(pFile, aRead, nRead, iOff, &pTab->base.zErrMsg); in zipfileReadEOCD()
11380 nRead = (int)(MIN(nBlob, ZIPFILE_BUFFER_SIZE)); in zipfileReadEOCD()
11381 aRead = (u8*)&aBlob[nBlob-nRead]; in zipfileReadEOCD()
11388 for(i=nRead-20; i>=0; i--){ in zipfileReadEOCD()
25702 size_t nRead; in readFile() local
25720 nRead = fread(pBuf, nIn, 1, in); in readFile()
25722 if( nRead!=1 ){ in readFile()