Home | History | Annotate | Download | only in gobject

Lines Matching full:user_data

808  * @user_data: user data to pass to @callback_func
809 * @destroy_data: destroy notify to be called when @user_data is no longer used
811 * Creates a new closure which invokes @callback_func with @user_data as
818 gpointer user_data,
825 closure = g_closure_new_simple (sizeof (GCClosure), user_data);
827 g_closure_add_finalize_notifier (closure, user_data, destroy_data);
836 * @user_data: user data to pass to @callback_func
837 * @destroy_data: destroy notify to be called when @user_data is no longer used
839 * Creates a new closure which invokes @callback_func with @user_data as
846 gpointer user_data,
853 closure = g_closure_new_simple (sizeof (GCClosure), user_data);
855 g_closure_add_finalize_notifier (closure, user_data, destroy_data);
950 * <literal>void (*callback) (gpointer instance, gpointer user_data)</literal>.
964 * <literal>void (*callback) (gpointer instance, gboolean arg1, gpointer user_data)</literal>.
978 * <literal>void (*callback) (gpointer instance, gchar arg1, gpointer user_data)</literal>.
992 * <literal>void (*callback) (gpointer instance, guchar arg1, gpointer user_data)</literal>.
1006 * <literal>void (*callback) (gpointer instance, gint arg1, gpointer user_data)</literal>.
1020 * <literal>void (*callback) (gpointer instance, guint arg1, gpointer user_data)</literal>.
1034 * <literal>void (*callback) (gpointer instance, glong arg1, gpointer user_data)</literal>.
1048 * <literal>void (*callback) (gpointer instance, gulong arg1, gpointer user_data)</literal>.
1062 * <literal>void (*callback) (gpointer instance, gint arg1, gpointer user_data)</literal> where the #gint parameter denotes an enumeration type..
1076 * <literal>void (*callback) (gpointer instance, gint arg1, gpointer user_data)</literal> where the #gint parameter denotes a flags type.
1090 * <literal>void (*callback) (gpointer instance, gfloat arg1, gpointer user_data)</literal>.
1104 * <literal>void (*callback) (gpointer instance, gdouble arg1, gpointer user_data)</literal>.
1118 * <literal>void (*callback) (gpointer instance, const gchar *arg1, gpointer user_data)</literal>.
1132 * <literal>void (*callback) (gpointer instance, GParamSpec *arg1, gpointer user_data)</literal>.
1146 * <literal>void (*callback) (gpointer instance, GBoxed *arg1, gpointer user_data)</literal>.
1160 * <literal>void (*callback) (gpointer instance, gpointer arg1, gpointer user_data)</literal>.
1174 * <literal>void (*callback) (gpointer instance, GOBject *arg1, gpointer user_data)</literal>.
1188 * <literal>void (*callback) (gpointer instance, guint arg1, gpointer arg2, gpointer user_data)</literal>.
1202 * <literal>gboolean (*callback) (gpointer instance, gint arg1, gpointer user_data)</literal> where the #gint parameter
1222 * <literal>gchar* (*callback) (gpointer instance, GObject *arg1, gpointer arg2, gpointer user_data)</literal>.