Home | History | Annotate | Download | only in src

Lines Matching defs:written

4  The source code contained or described herein and all documents related to the source code ("Material") are owned by Intel Corporation or its suppliers or licensors. Title to the Material remains with Intel Corporation or its suppliers and licensors. The Material contains trade secrets and proprietary and confidential information of Intel or its suppliers and licensors. The Material is protected by worldwide copyright and trade secret laws and treaty provisions. No part of the Material may be used, copied, reproduced, modified, published, uploaded, posted, transmitted, distributed, or disclosed in any way without Intel?s prior express written permission.
305 g_debug("_finalized(). bytes written=%" G_GUINT64_FORMAT, mix->bytes_written);
1493 ssize_t written = 0;
1506 written = writev(mix->fileDescriptor, in, iovincnt);
1507 if (written >= 0) mix->bytes_written += written;
1508 g_debug("writev() returned %d. Total %" G_GUINT64_FORMAT, written, mix->bytes_written);
1522 written = writev(mix->fileDescriptor, in, iovincnt);
1523 if (written > 0) mix->bytes_written += written;
1524 g_debug("writev() returned %d. Total %" G_GUINT64_FORMAT, written, mix->bytes_written);
1527 if (written < 0)
1534 // guranttee written is positive value before sign extending it.
1535 if (insize) *insize = (guint64)written;
1536 if (written != total_bytes)
1538 g_warning("writev() wrote only %d out of %d", written, total_bytes);
1624 ssize_t written = 0;
1627 written = writev(mix->fileDescriptor, in, iovincnt);
1628 if (written >= 0)
1630 mix->bytes_written += written;
1631 dbufs.output_bytes_produced = written;
1632 dbufs.input_bytes_consumed = written;
1634 g_debug("stub STREAM_DECODE (writev) returned %d. Total %" G_GUINT64_FORMAT, written, mix->bytes_written);