Searched refs:nRead (Results 1 - 6 of 6) sorted by relevance

/freebsd-current/contrib/ncurses/ncurses/tinfo/
H A Dlib_win32con.c840 DWORD nRead = 0, rc = (DWORD) (-1); local
853 #define CONSUME() ReadConsoleInput(hdl, &inp_rec, 1, &nRead)
878 nRead = 0;
879 b = GetNumberOfConsoleInputEvents(hdl, &nRead);
884 T(("twait: Events Available: %ld", nRead));
885 if (nRead == 0) {
891 TypeAlloca(INPUT_RECORD, nRead);
895 memset(pInpRec, 0, sizeof(INPUT_RECORD) * nRead);
896 f = PeekConsoleInput(hdl, pInpRec, nRead, &n);
921 if (b && nRead >
1030 DWORD nRead; local
[all...]
/freebsd-current/contrib/ncurses/ncurses/win32con/
H A Dwin_driver.c1537 DWORD nRead = 0, rc = (DWORD) (-1); local
1548 #define CONSUME() ReadConsoleInput(fd,&inp_rec,1,&nRead)
1572 b = GetNumberOfConsoleInputEvents(fd, &nRead);
1573 if (b && nRead > 0) {
1574 b = PeekConsoleInput(fd, &inp_rec, 1, &nRead);
1575 if (b && nRead > 0) {
2113 DWORD nRead; local
2123 while ((b = ReadConsoleInput(fd, &inp_rec, 1, &nRead))) {
2124 if (b && nRead > 0) {
2127 rc = rc + (int) nRead;
[all...]
/freebsd-current/contrib/bmake/
H A Djob.c1850 ssize_t nRead; /* (Temporary) number of bytes read */ local
1857 nRead = read(job->inPipe, &job->outBuf[job->curPos],
1859 if (nRead < 0) {
1866 nr = (size_t)nRead;
/freebsd-current/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c296 int nRead = bufSize; /* Number of bytes to read */ local
301 if( (p->iSeek+nRead)>nBlob ){
302 nRead = nBlob-p->iSeek;
304 if( nRead<=0 ){
308 rc = sqlite3_blob_read(p->pBlob, (void *)buf, nRead, p->iSeek);
314 p->iSeek += nRead;
315 return nRead;
/freebsd-current/contrib/sqlite3/
H A Dsqlite3.c49381 DWORD nRead; /* Number of bytes actually read from file */ local
57801 int nRead; /* Database pages read */ member in struct:Pager
87997 int nRead = 0; local
103306 int nRead; /* Bytes to read from disk */ local
103458 int nRead = pgsz - iBuf; local
106111 int nRead = iAmt; local
197740 int nRead; /* Number of bytes to read */ local
228419 int nRead = 0; local
240902 int nRead; /* Total number of blocks read */ member in struct:Fts5Index
[all...]
H A Dshell.c9895 ** Read nRead bytes of data from offset iOff of file pFile into buffer
9907 int nRead, /* Number of bytes to read */
9913 n = fread(aRead, 1, nRead, pFile);
9914 if( (int)n!=nRead ){
10530 int nRead; /* Bytes to read from file */ local
10542 nRead = (int)(MIN(szFile, ZIPFILE_BUFFER_SIZE));
10543 iOff = szFile - nRead;
10544 rc = zipfileReadData(pFile, aRead, nRead, iOff, &pTab->base.zErrMsg);
10546 nRead = (int)(MIN(nBlob, ZIPFILE_BUFFER_SIZE));
10547 aRead = (u8*)&aBlob[nBlob-nRead];
9904 zipfileReadData( FILE *pFile, u8 *aRead, int nRead, i64 iOff, char **pzErrmsg ) argument
23164 size_t nRead; local
[all...]

Completed in 779 milliseconds