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

  /external/chromium_org/content/renderer/
mhtml_generator.cc 50 size_t total_bytes_written = 0; local
51 while (total_bytes_written < mhtml.length()) {
53 std::min(mhtml.length() - total_bytes_written, chunk_size);
54 int bytes_written = file_.Write(total_bytes_written,
55 data + total_bytes_written, copy_size);
58 total_bytes_written += bytes_written;
60 return total_bytes_written;
  /external/chromium_org/net/base/
file_stream_unittest.cc 317 int total_bytes_written = 0; local
322 while (total_bytes_written != kTestDataSize) {
331 total_bytes_written += rv;
334 EXPECT_EQ(file_size, total_bytes_written);
384 int total_bytes_written = 0; local
389 while (total_bytes_written != kTestDataSize) {
398 total_bytes_written += rv;
434 int total_bytes_written = 0; local
439 while (total_bytes_written != kTestDataSize) {
448 total_bytes_written += rv
476 int total_bytes_written = 0; local
565 int total_bytes_written = 0, total_bytes_read = 0; local
641 int total_bytes_written = 0; local
700 int total_bytes_written = 0; local
745 int total_bytes_written = 0; local
    [all...]
  /external/lldb/tools/debugserver/source/MacOSX/
MachVMMemory.cpp 594 nub_size_t total_bytes_written = 0; local
599 while (total_bytes_written < data_count)
603 mach_vm_size_t curr_data_count = data_count - total_bytes_written;
622 total_bytes_written += bytes_written;
640 return total_bytes_written;
650 nub_size_t total_bytes_written = 0;
653 while (total_bytes_written < data_count)
655 mach_msg_type_number_t curr_data_count = MaxBytesLeftInPage(task, curr_addr, data_count - total_bytes_written);
670 total_bytes_written += curr_data_count;
679 return total_bytes_written;
    [all...]
  /external/chromium_org/google_apis/gcm/base/
socket_stream_unittest.cc 136 uint64 total_bytes_written = 0; local
146 write_src.data() + total_bytes_written,
150 total_bytes_written += bytes_to_write;
151 } while (total_bytes_written < bytes);
159 return total_bytes_written;
  /system/core/init/
init.c 609 size_t total_bytes_written = 0; local
631 while (total_bytes_written < sizeof(buf)) {
633 read(hwrandom_fd, buf, sizeof(buf) - total_bytes_written));
647 total_bytes_written += chunk_size;
651 total_bytes_written);
    [all...]
  /external/chromium_org/mojo/system/
message_pipe_dispatcher_unittest.cc 575 size_t total_bytes_written = 0; local
578 total_bytes_written += bytes_written[i];
590 EXPECT_EQ(total_bytes_written, total_bytes_read);

Completed in 490 milliseconds