mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 03:16:17 +01:00
Merge branch 'fix-annotation' into 'master'
Fix annotation of count arguments See merge request GNOME/glib!2033
This commit is contained in:
commit
afceb250ce
@ -129,7 +129,7 @@ g_input_stream_init (GInputStream *stream)
|
||||
* @stream: a #GInputStream.
|
||||
* @buffer: (array length=count) (element-type guint8) (out caller-allocates):
|
||||
* a buffer to read data into (which should be at least count bytes long).
|
||||
* @count: the number of bytes that will be read from the stream
|
||||
* @count: (in): the number of bytes that will be read from the stream
|
||||
* @cancellable: (nullable): optional #GCancellable object, %NULL to ignore.
|
||||
* @error: location to store the error occurring, or %NULL to ignore
|
||||
*
|
||||
@ -210,7 +210,7 @@ g_input_stream_read (GInputStream *stream,
|
||||
* @stream: a #GInputStream.
|
||||
* @buffer: (array length=count) (element-type guint8) (out caller-allocates):
|
||||
* a buffer to read data into (which should be at least count bytes long).
|
||||
* @count: the number of bytes that will be read from the stream
|
||||
* @count: (in): the number of bytes that will be read from the stream
|
||||
* @bytes_read: (out): location to store the number of bytes that was read from the stream
|
||||
* @cancellable: (nullable): optional #GCancellable object, %NULL to ignore.
|
||||
* @error: location to store the error occurring, or %NULL to ignore
|
||||
@ -581,7 +581,7 @@ async_ready_close_callback_wrapper (GObject *source_object,
|
||||
* @stream: A #GInputStream.
|
||||
* @buffer: (array length=count) (element-type guint8) (out caller-allocates):
|
||||
* a buffer to read data into (which should be at least count bytes long).
|
||||
* @count: the number of bytes that will be read from the stream
|
||||
* @count: (in): the number of bytes that will be read from the stream
|
||||
* @io_priority: the [I/O priority][io-priority]
|
||||
* of the request.
|
||||
* @cancellable: (nullable): optional #GCancellable object, %NULL to ignore.
|
||||
@ -773,7 +773,7 @@ read_all_async_thread (GTask *task,
|
||||
* @stream: A #GInputStream
|
||||
* @buffer: (array length=count) (element-type guint8) (out caller-allocates):
|
||||
* a buffer to read data into (which should be at least count bytes long)
|
||||
* @count: the number of bytes that will be read from the stream
|
||||
* @count: (in): the number of bytes that will be read from the stream
|
||||
* @io_priority: the [I/O priority][io-priority] of the request
|
||||
* @cancellable: (nullable): optional #GCancellable object, %NULL to ignore
|
||||
* @callback: (scope async): callback to call when the request is satisfied
|
||||
|
@ -161,7 +161,7 @@ g_pollable_input_stream_default_read_nonblocking (GPollableInputStream *stream,
|
||||
* @stream: a #GPollableInputStream
|
||||
* @buffer: (array length=count) (element-type guint8) (out caller-allocates): a
|
||||
* buffer to read data into (which should be at least @count bytes long).
|
||||
* @count: the number of bytes you want to read
|
||||
* @count: (in): the number of bytes you want to read
|
||||
* @cancellable: (nullable): a #GCancellable, or %NULL
|
||||
* @error: #GError for error reporting, or %NULL to ignore.
|
||||
*
|
||||
|
Loading…
Reference in New Issue
Block a user