Merge branch 'update-closure-annotations-2' into 'main'

Rename user data parameters to user_data

See merge request GNOME/glib!2679
This commit is contained in:
Philip Withnall 2022-05-22 13:37:37 +00:00
commit f0f2c0107e
16 changed files with 28 additions and 28 deletions

View File

@ -300,7 +300,7 @@ typedef void (*GFileProgressCallback) (goffset current_num_bytes,
* GFileReadMoreCallback: * GFileReadMoreCallback:
* @file_contents: the data as currently read. * @file_contents: the data as currently read.
* @file_size: the size of the data currently read. * @file_size: the size of the data currently read.
* @callback_data: (closure): data passed to the callback. * @user_data: data passed to the callback.
* *
* When loading the partial contents of a file with g_file_load_partial_contents_async(), * When loading the partial contents of a file with g_file_load_partial_contents_async(),
* it may become necessary to determine if any more data from the file should be loaded. * it may become necessary to determine if any more data from the file should be loaded.
@ -311,7 +311,7 @@ typedef void (*GFileProgressCallback) (goffset current_num_bytes,
**/ **/
typedef gboolean (* GFileReadMoreCallback) (const char *file_contents, typedef gboolean (* GFileReadMoreCallback) (const char *file_contents,
goffset file_size, goffset file_size,
gpointer callback_data); gpointer user_data);
/** /**
* GFileMeasureProgressCallback: * GFileMeasureProgressCallback:

View File

@ -584,7 +584,7 @@ g_hook_list_invoke_check (GHookList *hook_list,
/** /**
* GHookCheckMarshaller: * GHookCheckMarshaller:
* @hook: a #GHook * @hook: a #GHook
* @marshal_data: user data * @user_data: user data
* *
* Defines the type of function used by g_hook_list_marshal_check(). * Defines the type of function used by g_hook_list_marshal_check().
* *
@ -636,7 +636,7 @@ g_hook_list_marshal_check (GHookList *hook_list,
/** /**
* GHookMarshaller: * GHookMarshaller:
* @hook: a #GHook * @hook: a #GHook
* @marshal_data: user data * @user_data: user data
* *
* Defines the type of function used by g_hook_list_marshal(). * Defines the type of function used by g_hook_list_marshal().
*/ */
@ -793,7 +793,7 @@ g_hook_get (GHookList *hook_list,
/** /**
* GHookFindFunc: * GHookFindFunc:
* @hook: a #GHook * @hook: a #GHook
* @data: user data passed to g_hook_find_func() * @user_data: user data passed to g_hook_find_func()
* *
* Defines the type of the function passed to g_hook_find(). * Defines the type of the function passed to g_hook_find().
* *

View File

@ -43,11 +43,11 @@ typedef struct _GHookList GHookList;
typedef gint (*GHookCompareFunc) (GHook *new_hook, typedef gint (*GHookCompareFunc) (GHook *new_hook,
GHook *sibling); GHook *sibling);
typedef gboolean (*GHookFindFunc) (GHook *hook, typedef gboolean (*GHookFindFunc) (GHook *hook,
gpointer data); gpointer user_data);
typedef void (*GHookMarshaller) (GHook *hook, typedef void (*GHookMarshaller) (GHook *hook,
gpointer marshal_data); gpointer user_data);
typedef gboolean (*GHookCheckMarshaller) (GHook *hook, typedef gboolean (*GHookCheckMarshaller) (GHook *hook,
gpointer marshal_data); gpointer user_data);
typedef void (*GHookFunc) (gpointer data); typedef void (*GHookFunc) (gpointer data);
typedef gboolean (*GHookCheckFunc) (gpointer data); typedef gboolean (*GHookCheckFunc) (gpointer data);
typedef void (*GHookFinalizeFunc) (GHookList *hook_list, typedef void (*GHookFinalizeFunc) (GHookList *hook_list,

View File

@ -679,7 +679,7 @@ g_io_add_watch_full (GIOChannel *channel,
* GIOFunc: * GIOFunc:
* @source: the #GIOChannel event source * @source: the #GIOChannel event source
* @condition: the condition which has been satisfied * @condition: the condition which has been satisfied
* @data: user data set in g_io_add_watch() or g_io_add_watch_full() * @user_data: user data set in g_io_add_watch() or g_io_add_watch_full()
* *
* Specifies the type of function passed to g_io_add_watch() or * Specifies the type of function passed to g_io_add_watch() or
* g_io_add_watch_full(), which is called when the requested condition * g_io_add_watch_full(), which is called when the requested condition

View File

@ -129,7 +129,7 @@ struct _GIOChannel
typedef gboolean (*GIOFunc) (GIOChannel *source, typedef gboolean (*GIOFunc) (GIOChannel *source,
GIOCondition condition, GIOCondition condition,
gpointer data); gpointer user_data);
struct _GIOFuncs struct _GIOFuncs
{ {
GIOStatus (*io_read) (GIOChannel *channel, GIOStatus (*io_read) (GIOChannel *channel,

View File

@ -868,7 +868,7 @@ g_node_depth_traverse_level (GNode *node,
/** /**
* GNodeTraverseFunc: * GNodeTraverseFunc:
* @node: a #GNode. * @node: a #GNode.
* @data: user data passed to g_node_traverse(). * @user_data: user data passed to g_node_traverse().
* *
* Specifies the type of function passed to g_node_traverse(). The * Specifies the type of function passed to g_node_traverse(). The
* function is called with each of the nodes visited, together with the * function is called with each of the nodes visited, together with the
@ -1245,7 +1245,7 @@ g_node_last_sibling (GNode *node)
/** /**
* GNodeForeachFunc: * GNodeForeachFunc:
* @node: a #GNode. * @node: a #GNode.
* @data: user data passed to g_node_children_foreach(). * @user_data: user data passed to g_node_children_foreach().
* *
* Specifies the type of function passed to g_node_children_foreach(). * Specifies the type of function passed to g_node_children_foreach().
* The function is called with each child node, together with the user * The function is called with each child node, together with the user

View File

@ -58,9 +58,9 @@ typedef enum
} GTraverseType; } GTraverseType;
typedef gboolean (*GNodeTraverseFunc) (GNode *node, typedef gboolean (*GNodeTraverseFunc) (GNode *node,
gpointer data); gpointer user_data);
typedef void (*GNodeForeachFunc) (GNode *node, typedef void (*GNodeForeachFunc) (GNode *node,
gpointer data); gpointer user_data);
/* N-way tree implementation /* N-way tree implementation
*/ */

View File

@ -85,7 +85,7 @@
* GSequenceIterCompareFunc: * GSequenceIterCompareFunc:
* @a: a #GSequenceIter * @a: a #GSequenceIter
* @b: a #GSequenceIter * @b: a #GSequenceIter
* @data: user data * @user_data: user data
* *
* A #GSequenceIterCompareFunc is a function used to compare iterators. * A #GSequenceIterCompareFunc is a function used to compare iterators.
* It must return zero if the iterators compare equal, a negative value * It must return zero if the iterators compare equal, a negative value

View File

@ -34,7 +34,7 @@ typedef struct _GSequenceNode GSequenceIter;
typedef gint (* GSequenceIterCompareFunc) (GSequenceIter *a, typedef gint (* GSequenceIterCompareFunc) (GSequenceIter *a,
GSequenceIter *b, GSequenceIter *b,
gpointer data); gpointer user_data);
/* GSequence */ /* GSequence */

View File

@ -474,7 +474,7 @@
/** /**
* GThreadFunc: * GThreadFunc:
* @data: data passed to the thread * @user_data: data passed to the thread
* *
* Specifies the type of the @func functions passed to g_thread_new() * Specifies the type of the @func functions passed to g_thread_new()
* or g_thread_try_new(). * or g_thread_try_new().

View File

@ -46,7 +46,7 @@ typedef enum
G_THREAD_ERROR_AGAIN /* Resource temporarily unavailable */ G_THREAD_ERROR_AGAIN /* Resource temporarily unavailable */
} GThreadError; } GThreadError;
typedef gpointer (*GThreadFunc) (gpointer data); typedef gpointer (*GThreadFunc) (gpointer user_data);
typedef struct _GThread GThread; typedef struct _GThread GThread;

View File

@ -1197,7 +1197,7 @@ g_tree_foreach_node (GTree *tree,
* GTraverseFunc: * GTraverseFunc:
* @key: a key of a #GTree node * @key: a key of a #GTree node
* @value: the value corresponding to the key * @value: the value corresponding to the key
* @data: user data passed to g_tree_traverse() * @user_data: user data passed to g_tree_traverse()
* *
* Specifies the type of function passed to g_tree_traverse(). It is * Specifies the type of function passed to g_tree_traverse(). It is
* passed the key and value of each node, together with the @user_data * passed the key and value of each node, together with the @user_data

View File

@ -50,7 +50,7 @@ typedef struct _GTreeNode GTreeNode;
typedef gboolean (*GTraverseFunc) (gpointer key, typedef gboolean (*GTraverseFunc) (gpointer key,
gpointer value, gpointer value,
gpointer data); gpointer user_data);
/** /**
* GTraverseNodeFunc: * GTraverseNodeFunc:

View File

@ -144,7 +144,7 @@ typedef void (*GHFunc) (gpointer key,
/** /**
* GCopyFunc: * GCopyFunc:
* @src: (not nullable): A pointer to the data which should be copied * @src: (not nullable): A pointer to the data which should be copied
* @data: Additional data * @user_data: Additional data
* *
* A function of this signature is used to copy the node data * A function of this signature is used to copy the node data
* when doing a deep-copy of a tree. * when doing a deep-copy of a tree.
@ -154,7 +154,7 @@ typedef void (*GHFunc) (gpointer key,
* Since: 2.4 * Since: 2.4
*/ */
typedef gpointer (*GCopyFunc) (gconstpointer src, typedef gpointer (*GCopyFunc) (gconstpointer src,
gpointer data); gpointer user_data);
/** /**
* GFreeFunc: * GFreeFunc:
* @data: a data pointer * @data: a data pointer

View File

@ -110,7 +110,7 @@ typedef void (*GClosureNotify) (gpointer data,
* callback of @closure * callback of @closure
* @invocation_hint: (nullable): the invocation hint given as the * @invocation_hint: (nullable): the invocation hint given as the
* last argument to g_closure_invoke() * last argument to g_closure_invoke()
* @marshal_data: (nullable): additional data specified when * @user_data: (nullable): additional data specified when
* registering the marshaller, see g_closure_set_marshal() and * registering the marshaller, see g_closure_set_marshal() and
* g_closure_set_meta_marshal() * g_closure_set_meta_marshal()
* *
@ -121,7 +121,7 @@ typedef void (*GClosureMarshal) (GClosure *closure,
guint n_param_values, guint n_param_values,
const GValue *param_values, const GValue *param_values,
gpointer invocation_hint, gpointer invocation_hint,
gpointer marshal_data); gpointer user_data);
/** /**
* GVaClosureMarshal: * GVaClosureMarshal:

View File

@ -58,7 +58,7 @@ typedef GVaClosureMarshal GSignalCVaMarshaller;
* the instance on which the signal was emitted. * the instance on which the signal was emitted.
* @param_values: (array length=n_param_values): the instance on which * @param_values: (array length=n_param_values): the instance on which
* the signal was emitted, followed by the parameters of the emission. * the signal was emitted, followed by the parameters of the emission.
* @data: user data associated with the hook. * @user_data: user data associated with the hook.
* *
* A simple function pointer to get invoked when the signal is emitted. * A simple function pointer to get invoked when the signal is emitted.
* *
@ -73,14 +73,14 @@ typedef GVaClosureMarshal GSignalCVaMarshaller;
typedef gboolean (*GSignalEmissionHook) (GSignalInvocationHint *ihint, typedef gboolean (*GSignalEmissionHook) (GSignalInvocationHint *ihint,
guint n_param_values, guint n_param_values,
const GValue *param_values, const GValue *param_values,
gpointer data); gpointer user_data);
/** /**
* GSignalAccumulator: * GSignalAccumulator:
* @ihint: Signal invocation hint, see #GSignalInvocationHint. * @ihint: Signal invocation hint, see #GSignalInvocationHint.
* @return_accu: Accumulator to collect callback return values in, this * @return_accu: Accumulator to collect callback return values in, this
* is the return value of the current signal emission. * is the return value of the current signal emission.
* @handler_return: A #GValue holding the return value of the signal handler. * @handler_return: A #GValue holding the return value of the signal handler.
* @data: Callback data that was specified when creating the signal. * @user_data: Callback data that was specified when creating the signal.
* *
* The signal accumulator is a special callback function that can be used * The signal accumulator is a special callback function that can be used
* to collect return values of the various callbacks that are called * to collect return values of the various callbacks that are called
@ -101,7 +101,7 @@ typedef gboolean (*GSignalEmissionHook) (GSignalInvocationHint *ihint,
typedef gboolean (*GSignalAccumulator) (GSignalInvocationHint *ihint, typedef gboolean (*GSignalAccumulator) (GSignalInvocationHint *ihint,
GValue *return_accu, GValue *return_accu,
const GValue *handler_return, const GValue *handler_return,
gpointer data); gpointer user_data);
/* --- run, match and connect types --- */ /* --- run, match and connect types --- */