Home
last modified time | relevance | path

Searched refs:close_fd (Results 1 – 5 of 5) sorted by relevance

/external/bluetooth/glib/gio/
Dgunixoutputstream.c69 gboolean close_fd; member
184 unix_stream->priv->close_fd = g_value_get_boolean (value); in g_unix_output_stream_set_property()
208 g_value_set_boolean (value, unix_stream->priv->close_fd); in g_unix_output_stream_get_property()
223 unix_stream->priv->close_fd = TRUE; in g_unix_output_stream_init()
240 gboolean close_fd) in g_unix_output_stream_new() argument
248 "close-fd", close_fd, in g_unix_output_stream_new()
266 gboolean close_fd) in g_unix_output_stream_set_close_fd() argument
270 close_fd = close_fd != FALSE; in g_unix_output_stream_set_close_fd()
271 if (stream->priv->close_fd != close_fd) in g_unix_output_stream_set_close_fd()
273 stream->priv->close_fd = close_fd; in g_unix_output_stream_set_close_fd()
[all …]
Dgunixinputstream.c68 gboolean close_fd; member
198 unix_stream->priv->close_fd = g_value_get_boolean (value); in g_unix_input_stream_set_property()
222 g_value_set_boolean (value, unix_stream->priv->close_fd); in g_unix_input_stream_get_property()
237 unix_stream->priv->close_fd = TRUE; in g_unix_input_stream_init()
254 gboolean close_fd) in g_unix_input_stream_new() argument
262 "close-fd", close_fd, in g_unix_input_stream_new()
280 gboolean close_fd) in g_unix_input_stream_set_close_fd() argument
284 close_fd = close_fd != FALSE; in g_unix_input_stream_set_close_fd()
285 if (stream->priv->close_fd != close_fd) in g_unix_input_stream_set_close_fd()
287 stream->priv->close_fd = close_fd; in g_unix_input_stream_set_close_fd()
[all …]
Dgunixoutputstream.h70 gboolean close_fd);
72 gboolean close_fd);
Dgunixinputstream.h70 gboolean close_fd);
72 gboolean close_fd);
/external/gtest/src/
Dgtest-death-test.cc970 int close_fd; // File descriptor to close; the read end of a pipe member
994 GTEST_DEATH_TEST_CHECK_SYSCALL_(close(args->close_fd)); in ExecDeathTestChildMain()
1040 static pid_t ExecDeathTestFork(char* const* argv, int close_fd) { in ExecDeathTestFork() argument
1041 ExecDeathTestArgs args = { argv, close_fd }; in ExecDeathTestFork()