Home | History | Annotate | Download | only in gio

Lines Matching refs:cancelled

54 G_LOCK_DEFINE_STATIC(cancelled);
74 gboolean cancelled;
134 G_LOCK (cancelled);
135 g_value_set_boolean (value, priv->cancelled);
136 G_UNLOCK (cancelled);
243 g_param_spec_boolean ("cancelled",
244 P_("Cancelled"),
245 P_("Whether the monitor has been cancelled"),
277 G_LOCK (cancelled);
278 res = monitor->priv->cancelled;
279 G_UNLOCK (cancelled);
290 * Returns: %TRUE if monitor was cancelled.
299 G_LOCK (cancelled);
300 if (monitor->priv->cancelled)
302 G_UNLOCK (cancelled);
306 monitor->priv->cancelled = TRUE;
307 G_UNLOCK (cancelled);
309 g_object_notify (G_OBJECT (monitor), "cancelled");