Lines Matching refs:source

58 qio_channel_fd_source_prepare(GSource *source G_GNUC_UNUSED,  in qio_channel_fd_source_prepare()
68 qio_channel_fd_source_check(GSource *source) in qio_channel_fd_source_check() argument
70 QIOChannelFDSource *ssource = (QIOChannelFDSource *)source; in qio_channel_fd_source_check()
77 qio_channel_fd_source_dispatch(GSource *source, in qio_channel_fd_source_dispatch() argument
82 QIOChannelFDSource *ssource = (QIOChannelFDSource *)source; in qio_channel_fd_source_dispatch()
91 qio_channel_fd_source_finalize(GSource *source) in qio_channel_fd_source_finalize() argument
93 QIOChannelFDSource *ssource = (QIOChannelFDSource *)source; in qio_channel_fd_source_finalize()
101 qio_channel_socket_source_prepare(GSource *source G_GNUC_UNUSED, in qio_channel_socket_source_prepare()
115 qio_channel_socket_source_check(GSource *source) in qio_channel_socket_source_check() argument
118 QIOChannelSocketSource *ssource = (QIOChannelSocketSource *)source; in qio_channel_socket_source_check()
157 qio_channel_socket_source_dispatch(GSource *source, in qio_channel_socket_source_dispatch() argument
162 QIOChannelSocketSource *ssource = (QIOChannelSocketSource *)source; in qio_channel_socket_source_dispatch()
169 qio_channel_socket_source_finalize(GSource *source) in qio_channel_socket_source_finalize() argument
171 QIOChannelSocketSource *ssource = (QIOChannelSocketSource *)source; in qio_channel_socket_source_finalize()
187 qio_channel_fd_pair_source_prepare(GSource *source G_GNUC_UNUSED, in qio_channel_fd_pair_source_prepare()
197 qio_channel_fd_pair_source_check(GSource *source) in qio_channel_fd_pair_source_check() argument
199 QIOChannelFDPairSource *ssource = (QIOChannelFDPairSource *)source; in qio_channel_fd_pair_source_check()
208 qio_channel_fd_pair_source_dispatch(GSource *source, in qio_channel_fd_pair_source_dispatch() argument
213 QIOChannelFDPairSource *ssource = (QIOChannelFDPairSource *)source; in qio_channel_fd_pair_source_dispatch()
224 qio_channel_fd_pair_source_finalize(GSource *source) in qio_channel_fd_pair_source_finalize() argument
226 QIOChannelFDPairSource *ssource = (QIOChannelFDPairSource *)source; in qio_channel_fd_pair_source_finalize()
252 GSource *source; in qio_channel_create_fd_watch() local
255 source = g_source_new(&qio_channel_fd_source_funcs, in qio_channel_create_fd_watch()
257 ssource = (QIOChannelFDSource *)source; in qio_channel_create_fd_watch()
271 g_source_add_poll(source, &ssource->fd); in qio_channel_create_fd_watch()
273 return source; in qio_channel_create_fd_watch()
281 GSource *source; in qio_channel_create_socket_watch() local
288 source = g_source_new(&qio_channel_socket_source_funcs, in qio_channel_create_socket_watch()
290 ssource = (QIOChannelSocketSource *)source; in qio_channel_create_socket_watch()
302 g_source_add_poll(source, &ssource->fd); in qio_channel_create_socket_watch()
304 return source; in qio_channel_create_socket_watch()
320 GSource *source; in qio_channel_create_fd_pair_watch() local
323 source = g_source_new(&qio_channel_fd_pair_source_funcs, in qio_channel_create_fd_pair_watch()
325 ssource = (QIOChannelFDPairSource *)source; in qio_channel_create_fd_pair_watch()
343 g_source_add_poll(source, &ssource->fdread); in qio_channel_create_fd_pair_watch()
344 g_source_add_poll(source, &ssource->fdwrite); in qio_channel_create_fd_pair_watch()
346 return source; in qio_channel_create_fd_pair_watch()