HomeSort by relevance Sort by last modified time
    Searched defs:bytes_to_write (Results 1 - 4 of 4) sorted by null

  /external/zlib/contrib/iostream3/
zfstream.cc 229 int bytes_to_write = this->pptr() - this->pbase(); local
231 if (bytes_to_write > 0)
237 if (gzwrite(file, this->pbase(), bytes_to_write) != bytes_to_write)
240 this->pbump(-bytes_to_write);
  /external/bluetooth/glib/gio/
glocalfileoutputstream.c 601 gssize bytes_to_write; local
624 bytes_to_write = bytes_read;
629 bytes_written = write (dfd, write_buffer, bytes_to_write);
645 bytes_to_write -= bytes_written;
648 while (bytes_to_write > 0);
  /external/stlport/src/details/
fstream_win32io.cpp 479 size_t bytes_to_write = (size_t)n; local
482 for (; bytes_to_write != 0;) {
484 __STATIC_CAST(DWORD, (min)(size_t(0xffffffff), bytes_to_write)),
488 bytes_to_write -= NumberOfBytesWritten;
  /external/dbus/dbus/
dbus-sysdeps-unix.c 1712 int bytes_to_write; local
    [all...]

Completed in 570 milliseconds