Lines Matching defs:bytesRead
377 PRUint32 bytesRead;
379 rv = Read(NS_REINTERPRET_CAST(char*, aByte), sizeof(*aByte), &bytesRead);
381 if (bytesRead != 1)
390 PRUint32 bytesRead;
392 rv = Read(NS_REINTERPRET_CAST(char*, a16), sizeof *a16, &bytesRead);
394 if (bytesRead != sizeof *a16)
404 PRUint32 bytesRead;
406 rv = Read(NS_REINTERPRET_CAST(char*, a32), sizeof *a32, &bytesRead);
408 if (bytesRead != sizeof *a32)
418 PRUint32 bytesRead;
420 rv = Read(NS_REINTERPRET_CAST(char*, a64), sizeof *a64, &bytesRead);
422 if (bytesRead != sizeof *a64)
465 PRUint32 length, bytesRead;
471 rv = ReadSegments(WriteSegmentToCString, &aString, length, &bytesRead);
474 if (bytesRead != length)
578 PRUint32 length, bytesRead;
593 length*sizeof(PRUnichar), &bytesRead);
598 if (bytesRead != length*sizeof(PRUnichar))
608 PRUint32 bytesRead;
615 rv = Read(s, aLength, &bytesRead);
620 if (bytesRead != aLength) {