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

  /external/dbus/dbus/
dbus-file-unix.c 170 int bytes_to_write; local
244 bytes_to_write = _dbus_string_get_length (str);
246 while (total < bytes_to_write)
251 bytes_to_write - total);
dbus-file-win.c 218 int bytes_to_write; local
285 bytes_to_write = _dbus_string_get_length (str);
288 while (total < bytes_to_write)
293 res = WriteFile (hnd, str_c + total, bytes_to_write - total,
dbus-sysdeps-util-win.c 88 int bytes_to_write; local
118 bytes_to_write = strlen (pidstr);;
120 while (total < bytes_to_write)
125 res = WriteFile (hnd, pidstr + total, bytes_to_write - total,
    [all...]
  /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;
  /ndk/sources/cxx-stl/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/qemu/audio/
ossaudio.c 397 int bytes_to_write = samples_to_write << hw->info.shift; local
400 bytes_written = write (oss->fd, pcm, bytes_to_write);
404 bytes_to_write);
411 bytes_to_write, bytes_written);
418 if (bytes_written - bytes_to_write) {

Completed in 475 milliseconds