Home
last modified time | relevance | path

Searched refs:nwrote (Results 1 – 2 of 2) sorted by relevance

/external/bluetooth/glib/gio/tests/
Dunix-streams.c41 gssize nwrote, offset; in writer_thread() local
53 nwrote = g_output_stream_write (out, DATA + offset, in writer_thread()
56 if (nwrote <= 0 || err != NULL) in writer_thread()
58 offset += nwrote; in writer_thread()
61 g_assert (nwrote > 0 || err != NULL); in writer_thread()
160 gssize nwrote; in writable() local
162 nwrote = g_output_stream_write_finish (out, res, &err); in writable()
171 g_assert_cmpint (nwrote, <=, main_len - main_offset); in writable()
173 main_offset += nwrote; in writable()
/external/qemu/distrib/sdl-1.2.12/src/file/
DSDL_rwops.c284 size_t nwrote; in stdio_write() local
286 nwrote = fwrite(ptr, size, num, context->hidden.stdio.fp); in stdio_write()
287 if ( nwrote == 0 && ferror(context->hidden.stdio.fp) ) { in stdio_write()
290 return(nwrote); in stdio_write()