HomeSort by relevance Sort by last modified time
    Searched refs:total_bytes_read (Results 1 - 3 of 3) sorted by null

  /device/moto/stingray/recovery/
masterclear_bp.c 157 UINT32 total_bytes_read = 0; local
167 while( total_bytes_read != bytes_to_read )
169 bytes_read = read(cmd_engine_fd, &data[total_bytes_read], bytes_to_read - total_bytes_read);
170 LOGE("Attempted to read %d bytes and read %d bytes.\n", bytes_to_read - total_bytes_read, bytes_read);
177 total_bytes_read += bytes_read;
179 if( total_bytes_read == bytes_to_read )
181 LOGE("Successfully read %d bytes.\n", total_bytes_read);
  /external/chromium/net/base/
file_stream_unittest.cc 117 int total_bytes_read = 0; local
126 total_bytes_read += rv;
129 EXPECT_EQ(file_size, total_bytes_read);
150 int total_bytes_read = 0; local
161 total_bytes_read += rv;
164 EXPECT_EQ(file_size, total_bytes_read);
216 int64 total_bytes_read = 0; local
225 total_bytes_read += rv;
228 EXPECT_EQ(file_size - kOffset, total_bytes_read);
254 int total_bytes_read = 0 local
455 int total_bytes_read = 0; local
503 int64 total_bytes_read = 0; local
544 int64 total_bytes_read = 0; local
621 int total_bytes_read = 0; local
682 int total_bytes_written = 0, total_bytes_read = 0; local
752 int total_bytes_read = 0; local
    [all...]
  /external/chromium/base/
platform_file_unittest.cc 16 int total_bytes_read = 0; local
18 while (total_bytes_read < size) {
20 file, offset + total_bytes_read, &data[total_bytes_read],
21 size - total_bytes_read);
25 return total_bytes_read;
27 if ((bytes_read < 0) || (bytes_read > size - total_bytes_read))
30 total_bytes_read += bytes_read;
33 return total_bytes_read;

Completed in 80 milliseconds