Lines Matching refs:source
387 GSource *source;
404 source = g_idle_source_new ();
405 g_source_set_priority (source, 0);
410 g_source_set_callback (source, emit_cb, monitor, NULL);
411 priv->pending_file_change_id = g_source_attach (source, NULL);
412 g_source_unref (source);
545 GSource *source;
566 source = g_timeout_source_new (data.min_time + 1); /* + 1 to make sure we've really passed the time */
567 g_source_set_callback (source, rate_limiter_timeout, monitor, NULL);
568 g_source_attach (source, NULL);
570 monitor->priv->timeout = source;
593 GSource *source;
618 source = g_timeout_source_new (data.min_time + 1); /* + 1 to make sure we've really passed the time */
619 g_source_set_callback (source, rate_limiter_timeout, monitor, NULL);
620 g_source_attach (source, NULL);
622 monitor->priv->timeout = source;