Lines Matching refs:bytes_copied
728 gssize bytes_copied; in g_output_stream_splice() local
748 bytes_copied = class->splice (stream, source, flags, cancellable, error); in g_output_stream_splice()
755 return bytes_copied; in g_output_stream_splice()
767 gsize bytes_copied; in g_output_stream_real_splice() local
771 bytes_copied = 0; in g_output_stream_real_splice()
805 bytes_copied += n_written; in g_output_stream_real_splice()
808 if (bytes_copied > G_MAXSSIZE) in g_output_stream_real_splice()
809 bytes_copied = G_MAXSSIZE; in g_output_stream_real_splice()
831 return bytes_copied; in g_output_stream_real_splice()
2650 gsize bytes_copied; member
2684 g_task_return_int (task, op->bytes_copied); in real_splice_async_complete_cb()
2772 op->bytes_copied += ret; in real_splice_async_write_cb()
2773 if (op->bytes_copied > G_MAXSSIZE) in real_splice_async_write_cb()
2774 op->bytes_copied = G_MAXSSIZE; in real_splice_async_write_cb()
2831 gssize bytes_copied; in splice_async_thread() local
2835 bytes_copied = class->splice (stream, in splice_async_thread()
2840 if (bytes_copied == -1) in splice_async_thread()
2843 g_task_return_int (task, bytes_copied); in splice_async_thread()