Lines Matching refs:read
149 var read = 0; in ReadBytes()
150 while(read < count) in ReadBytes()
154 read, in ReadBytes()
155 count - read in ReadBytes()
161 read in ReadBytes()
165 read += readInThisIteration; in ReadBytes()
168 if(throwIfEndOfStream && read < count) in ReadBytes()
674 int read; in Copy()
677 read = from.Read(buffer, 0, buffer.Length); in Copy()
678 if(read <= 0) // to workaround ionic zip's bug in Copy()
682 to.Write(buffer, 0, read); in Copy()