Home | History | Annotate | Download | only in data

Lines Matching refs:bytes_read

113   int32_t bytes_read = 0;
117 while ((bytes_read =
119 int bytes_written = array->Put(index + dst_offset, &(b[0]), 0, bytes_read);
121 index += bytes_read;
122 remaining_length -= bytes_read;
134 int32_t bytes_read = 0;
137 while ((bytes_read = Get(index + offset, &(b[0]), 0, buffer_length)) > 0) {
138 os->Write(&b, 0, bytes_read);
139 index += bytes_read;
147 int32_t bytes_read = 0;
150 while ((bytes_read = is->Read(&b, 0, buffer_length)) > 0) {
151 if (Put(index, &(b[0]), 0, bytes_read) != bytes_read) {
158 index += bytes_read;
159 length -= bytes_read;
167 int32_t bytes_read = 0;
170 while ((bytes_read = is->Read(&b, 0, buffer_length)) > 0) {
171 if (Put(index, &b[0], 0, bytes_read) != bytes_read) {
178 index += bytes_read;