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

  /external/chromium_org/ppapi/native_client/src/trusted/plugin/
file_utils.cc 54 size_t total_bytes_read = 0; local
56 size_t bytes_this_read = fread(&buffer[total_bytes_read],
65 total_bytes_read += bytes_this_read;
70 buffer[total_bytes_read] = '\0';
  /external/chromium_org/third_party/tcmalloc/chromium/src/
symbolize.cc 238 int total_bytes_read = 0;
243 int bytes_read = read(child_out[1], symbol_buffer_ + total_bytes_read,
244 kSymbolBufferSize - total_bytes_read);
254 total_bytes_read += bytes_read;
259 if (total_bytes_read == 0 || symbol_buffer_[total_bytes_read - 1] != '\n')
265 for (int i = 0; i < total_bytes_read; i++) {
  /external/chromium_org/third_party/tcmalloc/vendor/src/
symbolize.cc 238 int total_bytes_read = 0;
243 int bytes_read = read(child_out[1], symbol_buffer_ + total_bytes_read,
244 kSymbolBufferSize - total_bytes_read);
254 total_bytes_read += bytes_read;
259 if (total_bytes_read == 0 || symbol_buffer_[total_bytes_read - 1] != '\n')
265 for (int i = 0; i < total_bytes_read; i++) {
  /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_org/net/base/
file_stream_unittest.cc 168 int total_bytes_read = 0; local
177 total_bytes_read += rv;
180 EXPECT_EQ(file_size, total_bytes_read);
201 int total_bytes_read = 0; local
212 total_bytes_read += rv;
215 EXPECT_EQ(file_size, total_bytes_read);
267 int64 total_bytes_read = 0; local
276 total_bytes_read += rv;
279 EXPECT_EQ(file_size - kOffset, total_bytes_read);
308 int total_bytes_read = 0 local
554 int total_bytes_read = 0; local
602 int64 total_bytes_read = 0; local
644 int64 total_bytes_read = 0; local
733 int total_bytes_read = 0; local
799 int total_bytes_written = 0, total_bytes_read = 0; local
873 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;
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
mount_node_http.cc 379 int total_bytes_read = 0; local
382 char* buf = cached_data_.data() + total_bytes_read;
388 total_bytes_read += bytes_read;
391 SetCachedSize(total_bytes_read);
392 cached_data_.resize(total_bytes_read);
396 cached_data_.resize(total_bytes_read + bytes_to_read);
  /external/chromium_org/webkit/browser/blob/
local_file_stream_reader_unittest.cc 35 size_t total_bytes_read = 0; local
36 while (total_bytes_read < size) {
38 new net::IOBufferWithSize(size - total_bytes_read));
46 total_bytes_read += rv;
  /external/chromium_org/webkit/browser/fileapi/
file_system_file_stream_reader_unittest.cc 41 size_t total_bytes_read = 0; local
42 while (total_bytes_read < size) {
44 new net::IOBufferWithSize(size - total_bytes_read));
52 total_bytes_read += rv;
  /external/chromium_org/net/socket/
ssl_client_socket_openssl.cc     [all...]
ssl_client_socket_nss.cc 1949 int total_bytes_read = 0; local
    [all...]

Completed in 548 milliseconds