Lines Matching defs:nbytes
155 PRUintn nbytes; /* number of bytes in this buffer */
161 PRInt32 nbytes;
165 nbytes = PR_Read((PRFileDesc*)arg, buf[i].data, BSIZE);
166 if (nbytes >= 0) {
167 buf[i].nbytes = nbytes;
171 } while (nbytes > 0);
177 PRInt32 nbytes;
181 nbytes = buf[i].nbytes;
182 if (nbytes > 0) {
183 nbytes = PR_Write((PRFileDesc*)arg, buf[i].data, nbytes);
187 } while (nbytes > 0);