Lines Matching full:closed
54 guint closed : 1;
98 if (!stream->priv->closed)
111 if (!stream->priv->closed)
411 * Once the stream is closed, all other operations will return %G_IO_ERROR_CLOSED.
414 * Streams will be automatically closed when the last reference
419 * open after the stream is closed. See the documentation for the individual
430 * Cancelling a close will still leave the stream closed, but some streams
447 if (stream->priv->closed)
466 stream->priv->closed = TRUE;
492 stream->priv->closed = TRUE;
783 if (stream->priv->closed)
821 * Returns: %TRUE if the stream was closed successfully.
840 /* Special case already closed */
853 * Checks if an input stream is closed.
855 * Returns: %TRUE if the stream is closed.
862 return stream->priv->closed;
888 * already set or @stream is closed, it will return %FALSE and set
898 if (stream->priv->closed)
901 _("Stream is already closed"));