Lines Matching defs:_GTask
544 struct _GTask { struct
545 GObject parent_instance;
547 gpointer source_object;
548 gpointer source_tag;
549 gchar *name; /* (owned); may only be modified before the #GTask is threaded */
551 gpointer task_data;
552 GDestroyNotify task_data_destroy;
554 GMainContext *context;
555 gint64 creation_time;
556 gint priority;
557 GCancellable *cancellable;
559 GAsyncReadyCallback callback;
560 gpointer callback_data;
562 GTaskThreadFunc task_func;
563 GMutex lock;
564 GCond cond;
567 gboolean thread_cancelled;
570 gboolean thread_complete : 1;
571 gboolean return_on_cancel : 1;
597 struct _GTaskClass argument