Home
last modified time | relevance | path

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

/third_party/glib/gio/
Dgunixoutputstream.c179 GUnixOutputStream *unix_stream; in g_unix_output_stream_set_property() local
181 unix_stream = G_UNIX_OUTPUT_STREAM (object); in g_unix_output_stream_set_property()
186 unix_stream->priv->fd = g_value_get_int (value); in g_unix_output_stream_set_property()
187 unix_stream->priv->can_poll = _g_fd_is_pollable (unix_stream->priv->fd); in g_unix_output_stream_set_property()
190 unix_stream->priv->close_fd = g_value_get_boolean (value); in g_unix_output_stream_set_property()
204 GUnixOutputStream *unix_stream; in g_unix_output_stream_get_property() local
206 unix_stream = G_UNIX_OUTPUT_STREAM (object); in g_unix_output_stream_get_property()
211 g_value_set_int (value, unix_stream->priv->fd); in g_unix_output_stream_get_property()
214 g_value_set_boolean (value, unix_stream->priv->close_fd); in g_unix_output_stream_get_property()
222 g_unix_output_stream_init (GUnixOutputStream *unix_stream) in g_unix_output_stream_init() argument
[all …]
Dgunixinputstream.c179 GUnixInputStream *unix_stream; in g_unix_input_stream_set_property() local
181 unix_stream = G_UNIX_INPUT_STREAM (object); in g_unix_input_stream_set_property()
186 unix_stream->priv->fd = g_value_get_int (value); in g_unix_input_stream_set_property()
187 unix_stream->priv->can_poll = _g_fd_is_pollable (unix_stream->priv->fd); in g_unix_input_stream_set_property()
190 unix_stream->priv->close_fd = g_value_get_boolean (value); in g_unix_input_stream_set_property()
204 GUnixInputStream *unix_stream; in g_unix_input_stream_get_property() local
206 unix_stream = G_UNIX_INPUT_STREAM (object); in g_unix_input_stream_get_property()
211 g_value_set_int (value, unix_stream->priv->fd); in g_unix_input_stream_get_property()
214 g_value_set_boolean (value, unix_stream->priv->close_fd); in g_unix_input_stream_get_property()
222 g_unix_input_stream_init (GUnixInputStream *unix_stream) in g_unix_input_stream_init() argument
[all …]