/third_party/glib/glib/tests/ |
D | mainloop.c | 1130 pfd.events = G_IO_OUT; in fill_a_pipe() 1191 a = g_unix_fd_add_full (G_PRIORITY_HIGH, fds[1], G_IO_OUT, write_bytes, &to_write, NULL); in test_unix_fd() 1316 source = g_unix_fd_source_new (fds[1], G_IO_OUT); in test_unix_fd_source() 1329 out_source = g_unix_fd_source_new (fds[1], G_IO_OUT); in test_unix_fd_source() 1347 fds[1], G_IO_OUT, 0); in test_unix_fd_source() 1356 fds[1], G_IO_OUT, G_IO_OUT); in test_unix_fd_source() 1365 fds[1], G_IO_OUT, G_IO_OUT); in test_unix_fd_source() 1373 fds[1], G_IO_OUT, G_IO_OUT); in test_unix_fd_source() 1424 g_source_add_unix_fd (source_a, fds_a[1], G_IO_OUT); in test_source_unix_fd_api() 1428 fds_a[1], G_IO_OUT, 0); in test_source_unix_fd_api() [all …]
|
D | gpoll.c | 61 fds[i].events = G_IO_IN | G_IO_OUT | G_IO_ERR; in reset_fds() 94 fds[i].revents |= G_IO_OUT; in check_fds() 103 fds[i].revents |= G_IO_OUT; in check_fds()
|
/third_party/glib/gio/ |
D | gdatagrambased.c | 415 g_return_val_if_fail ((out & (G_IO_OUT | G_IO_HUP)) != (G_IO_OUT | G_IO_HUP), in g_datagram_based_condition_check() 416 out & ~G_IO_OUT); in g_datagram_based_condition_check()
|
D | gunixoutputstream.c | 334 poll_fds[0].events = G_IO_OUT; in g_unix_output_stream_write() 441 poll_fds[0].events = G_IO_OUT; in g_unix_output_stream_writev() 541 poll_fd.events = G_IO_OUT; in g_unix_output_stream_pollable_is_writable() 560 inner_source = g_unix_fd_source_new (unix_stream->priv->fd, G_IO_OUT); in g_unix_output_stream_pollable_create_source()
|
D | gsocketoutputstream.c | 170 return g_socket_condition_check (output_stream->priv->socket, G_IO_OUT); in g_socket_output_stream_pollable_is_writable() 216 G_IO_OUT, cancellable); in g_socket_output_stream_pollable_create_source()
|
D | gsocket.c | 3006 if (g_socket_condition_wait (socket, G_IO_OUT, cancellable, error)) in g_socket_connect() 3444 if (!block_on_timeout (socket, G_IO_OUT, timeout_us, start_time, in g_socket_send_with_timeout() 3783 if (condition & G_IO_OUT) in network_events_for_condition() 3914 condition |= G_IO_OUT; in update_condition_unlocked() 3923 condition |= G_IO_OUT; in update_condition_unlocked() 4020 events |= (G_IO_IN | G_IO_OUT); in socket_source_dispatch() 4993 if (!block_on_timeout (socket, G_IO_OUT, timeout_us, start_time, in g_socket_send_message_with_timeout() 5078 if (!block_on_timeout (socket, G_IO_OUT, timeout_us, in g_socket_send_message_with_timeout() 5247 if (!block_on_timeout (socket, G_IO_OUT, timeout_us, start_time, in g_socket_send_messages_with_timeout()
|
D | gsocketconnection.c | 215 G_IO_OUT, cancellable); in g_socket_connection_connect_async()
|
D | gdbusprivate.c | 701 G_IO_IN | G_IO_OUT | G_IO_HUP), in _g_dbus_worker_do_read_cb() 1054 G_IO_OUT | G_IO_HUP | G_IO_ERR, in write_message_continue_writing()
|
/third_party/glib/glib/ |
D | gpoll.c | 524 if (f->events & G_IO_OUT) in g_poll() 528 if (f->fd > maxfd && (f->events & (G_IO_IN|G_IO_OUT|G_IO_PRI))) in g_poll() 546 f->revents |= G_IO_OUT; in g_poll()
|
D | giowin32.c | 468 channel->revents = G_IO_OUT; in write_thread() 502 channel->revents |= G_IO_OUT; in write_thread() 765 if (watch->condition & G_IO_OUT) in g_io_win32_prepare() 913 watch->pollfd.revents |= G_IO_OUT; in g_io_win32_check() 922 watch->pollfd.revents |= G_IO_OUT; in g_io_win32_check() 939 watch->pollfd.revents |= G_IO_OUT; in g_io_win32_check() 1404 else if (condition & G_IO_OUT) in g_io_win32_fd_create_watch() 2197 else if (condition & G_IO_OUT) in g_io_channel_win32_make_pollfd()
|
D | gmain.h | 34 G_IO_OUT GLIB_SYSDEF_POLLOUT, enumerator
|
D | giochannel.c | 738 condition |= G_IO_OUT; in g_io_channel_get_buffer_condition()
|
/third_party/libwebsockets/lib/event-libs/glib/ |
D | glib.c | 125 if (cond & G_IO_OUT) in lws_glib_dispatch() 373 cond &= (unsigned int)~G_IO_OUT; in elops_io_glib() 375 cond |= G_IO_OUT; in elops_io_glib()
|
/third_party/glib/gio/tests/ |
D | socket-server.c | 301 ensure_socket_condition (recv_socket, G_IO_OUT, cancellable); in main() 307 ensure_connection_condition (connection, G_IO_OUT, cancellable); in main()
|
D | socket-client.c | 337 ensure_socket_condition (socket, G_IO_OUT, cancellable); in main() 344 ensure_connection_condition (connection, G_IO_OUT, cancellable); in main()
|
D | socket.c | 238 g_assert_cmpint (cond, ==, G_IO_OUT); in test_ip_async_write_ready() 273 source = g_socket_create_source (client, G_IO_OUT, NULL); in test_ip_async_timed_out() 298 g_assert_cmpint (cond, ==, G_IO_OUT); in test_ip_async_connected() 327 return test_ip_async_connected (data->client, G_IO_OUT, data); in idle_test_ip_async_connected() 378 source = g_socket_create_source (client, G_IO_OUT, NULL); in test_ip_async()
|
D | gdbus-peer.c | 652 …g_debug ("socket_condition_check = %d", g_socket_condition_check (socket, G_IO_IN|G_IO_OUT|G_IO_ER…
|
/third_party/curl/docs/examples/ |
D | ghiper.c | 186 ((condition & G_IO_OUT) ? CURL_CSELECT_OUT : 0); in event_cb() 222 ((act & CURL_POLL_OUT) ? G_IO_OUT : 0); in setsock()
|
/third_party/pulseaudio/src/pulse/ |
D | glib-mainloop.c | 197 (flags & PA_IO_EVENT_OUTPUT ? G_IO_OUT : 0) | in map_flags_to_glib() 205 (flags & G_IO_OUT ? PA_IO_EVENT_OUTPUT : 0) | in map_flags_from_glib()
|
D | ohos_glib-mainloop.c | 198 (flags & PA_IO_EVENT_OUTPUT ? G_IO_OUT : 0) | in map_flags_to_glib() 206 (flags & G_IO_OUT ? PA_IO_EVENT_OUTPUT : 0) | in map_flags_from_glib()
|
/third_party/glib/gobject/ |
D | gsourceclosure.c | 41 { G_IO_OUT, "G_IO_OUT", "out" }, in G_DEFINE_BOXED_TYPE()
|
/third_party/gstreamer/gstplugins_base/gst/tcp/ |
D | gsttcpserversink.c | 356 G_IO_IN | G_IO_OUT | G_IO_PRI | G_IO_ERR | G_IO_HUP, in gst_tcp_server_sink_init_send()
|
D | gstmultisocketsink.c | 1024 G_IO_IN | G_IO_OUT | G_IO_PRI | G_IO_ERR | G_IO_HUP); in gst_multi_socket_sink_hash_adding() 1098 if ((condition & G_IO_OUT)) { in gst_multi_socket_sink_socket_condition()
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/rtsp/ |
D | gstrtspconnection.c | 3004 ws = g_socket_create_source (conn->write_socket, G_IO_OUT, in gst_rtsp_connection_poll_usec() 3024 condition = g_socket_condition_check (conn->write_socket, G_IO_OUT); in gst_rtsp_connection_poll_usec() 3025 if ((condition & G_IO_OUT)) in gst_rtsp_connection_poll_usec() 3706 #define WRITE_COND (G_IO_OUT | WRITE_ERR)
|
/third_party/libsoup/libsoup/ |
D | soup-socket.c | 2044 G_IO_OUT, in soup_socket_write()
|