Searched defs:nRead (Results 1 - 5 of 5) sorted by relevance

/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/
H A Dfileio.c112 PRInt32 nRead, rv; local
120 nRead = PR_Read((PRFileDesc*)t2, tbuf, TBSIZE);
121 PR_ASSERT(nRead == TBSIZE);
H A Dpoll_nm.c341 PRInt32 nRead; local
345 nRead = PR_Read(pds[j].fd, buf, sizeof(buf));
346 PR_ASSERT(nAvail == nRead);
347 if (nRead == -1) {
351 } else if (nRead == 0) {
/vbox/src/libs/zlib-1.2.6/contrib/minizip/
H A Dmztools.c259 int nRead; local
261 while ( (nRead = (int)fread(buffer, 1, sizeof(buffer), fpOutCD)) > 0) {
262 if ((int)fwrite(buffer, 1, nRead, fpOut) != nRead) {
/vbox/src/libs/xpcom18a4/nsprpub/tools/
H A Dhttpget.c101 PRInt32 nRead; local
128 nRead = PR_Read(fd, inputBuf, sizeof(inputBuf));
129 if (nRead == -1) {
132 } else if (nRead == 0) {
138 inputTail = inputBuf + nRead;
/vbox/src/libs/xpcom18a4/xpcom/ds/
H A DnsPersistentProperties.cpp369 PRUint32 nRead; local
372 ret = mIn->Read(&c, 1, &nRead);
373 if (ret == NS_OK && nRead == 1) {

Completed in 55 milliseconds