Searched refs:bytes_read (Results 1 - 6 of 6) sorted by relevance

/inkscape/src/
H A Dwinconsole.cpp56 DWORD bytes_read, bytes_written; local
59 if (!ReadFile(info->echo_read, buffer, info->buffer_size, &bytes_read, NULL) || bytes_read == 0)
63 if (!WriteFile(info->echo_write, buffer, bytes_read, &bytes_written, NULL)) {
H A Dfile.cpp752 GnomeVFSFileSize bytes_read; local
786 result = gnome_vfs_read (from_handle, buffer, 8192, &bytes_read);
788 if ((result == GNOME_VFS_ERROR_EOF) &&(!bytes_read)){
798 result = gnome_vfs_write (to_handle, buffer, bytes_read, &bytes_written);
805 if (bytes_read != bytes_written){
/inkscape/src/extension/internal/
H A Dsvg.cpp154 GnomeVFSFileSize bytes_read; local
174 result = gnome_vfs_read (handle, buffer, BUF_SIZE, &bytes_read);
175 doc.insert(doc.end(), buffer, buffer+bytes_read);
/inkscape/src/io/
H A Dsys.h49 gsize *bytes_read,
H A Dsys.cpp316 gsize *bytes_read,
322 gchar *newFileName = g_locale_to_utf8( opsysstring, len, bytes_read, bytes_written, error );
314 locale_to_utf8_fallback( const gchar *opsysstring, gssize len, gsize *bytes_read, gsize *bytes_written, GError **error ) argument
/inkscape/src/2geom/
H A Dsvg-path-parser.cpp1582 size_t bytes_read; local
1586 bytes_read = fread(buffer, 1, BUFFER_SIZE, fi);
1587 if (bytes_read < BUFFER_SIZE) {
1588 parser.parse(buffer, bytes_read);
1591 parser.feed(buffer, bytes_read);

Completed in 66 milliseconds