Lines Matching full:sink
6 #define TYPE_STREAM_SINK "stream-sink"
21 * can push - determine if a stream sink is capable of accepting at least
23 * sink is assumed to always be capable of receiving.
24 * @notify: Optional callback that the sink will call when the sink is
31 * push - push data to a Stream sink. The number of bytes pushed is
32 * returned. If the sink short returns, the master must wait before trying
33 * again, the sink may continue to just return 0 waiting for the vm time to
35 * where the sink is ready to receive again, otherwise polling on a QEMU
37 * @obj: Stream sink to push to
46 stream_push(StreamSink *sink, uint8_t *buf, size_t len, bool eop);
49 stream_can_push(StreamSink *sink, StreamCanPushNotifyFn notify,