Searched defs:bytes_to_write (Results 1 - 4 of 4) sorted by relevance

/external/dbus/dbus/
H A Ddbus-file-unix.c170 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);
H A Ddbus-file-win.c218 int bytes_to_write; local
288 bytes_to_write = _dbus_string_get_length (str);
291 while (total < bytes_to_write)
296 res = WriteFile (hnd, str_c + total, bytes_to_write - total,
H A Ddbus-sysdeps-util-win.c88 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,
/external/zlib/src/contrib/iostream3/
H A Dzfstream.cc229 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);

Completed in 109 milliseconds