51314 lines
2.7 MiB
51314 lines
2.7 MiB
<?xml version="1.0"?>
|
|
<!-- This file was automatically generated from C sources - DO NOT EDIT!
|
|
To affect the contents of this file, edit the original C definitions,
|
|
and/or use gtk-doc annotations. -->
|
|
<repository xmlns="http://www.gtk.org/introspection/core/1.0" xmlns:c="http://www.gtk.org/introspection/c/1.0" xmlns:glib="http://www.gtk.org/introspection/glib/1.0" version="1.2">
|
|
<package name="glib-2.0"/>
|
|
<c:include name="glib.h"/>
|
|
<namespace name="GLib" version="2.0" shared-library="libgobject-2.0.so.0,libglib-2.0.so.0" c:identifier-prefixes="G" c:symbol-prefixes="g,glib">
|
|
<alias name="DateDay" c:type="GDateDay">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="289">Integer representing a day of the month; between 1 and 31.
|
|
#G_DATE_BAD_DAY represents an invalid day of the month.</doc>
|
|
<source-position filename="gdate.h" line="50"/>
|
|
<type name="guint8" c:type="guint8"/>
|
|
</alias>
|
|
<alias name="DateYear" c:type="GDateYear">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="334">Integer representing a year; #G_DATE_BAD_YEAR is the invalid
|
|
value. The year must be 1 or higher; negative (BC) years are not
|
|
allowed. The year is represented with four digits.</doc>
|
|
<source-position filename="gdate.h" line="49"/>
|
|
<type name="guint16" c:type="guint16"/>
|
|
</alias>
|
|
<alias name="MutexLocker" c:type="GMutexLocker">
|
|
<doc xml:space="preserve" filename="gthread.h" line="270">Opaque type. See g_mutex_locker_new() for details.</doc>
|
|
<source-position filename="gthread.h" line="276"/>
|
|
<type name="none" c:type="void"/>
|
|
</alias>
|
|
<alias name="Pid" c:type="GPid">
|
|
<doc xml:space="preserve" filename="gmain.h" line="135">A type which is used to hold a process identification.
|
|
|
|
On UNIX, processes are identified by a process id (an integer),
|
|
while Windows uses process handles (which are pointers).
|
|
|
|
GPid is used in GLib only for descendant processes spawned with
|
|
the g_spawn functions.</doc>
|
|
<source-position filename="glibconfig.h" line="198"/>
|
|
<type name="gint" c:type="int"/>
|
|
</alias>
|
|
<alias name="Quark" c:type="GQuark">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1495">A GQuark is a non-zero integer which uniquely identifies a
|
|
particular string. A GQuark value of zero is associated to %NULL.</doc>
|
|
<source-position filename="gquark.h" line="36"/>
|
|
<type name="guint32" c:type="guint32"/>
|
|
</alias>
|
|
<alias name="RWLockReaderLocker" c:type="GRWLockReaderLocker">
|
|
<doc xml:space="preserve" filename="gthread.h" line="509">Opaque type. See g_rw_lock_reader_locker_new() for details.</doc>
|
|
<source-position filename="gthread.h" line="515"/>
|
|
<type name="none" c:type="void"/>
|
|
</alias>
|
|
<alias name="RWLockWriterLocker" c:type="GRWLockWriterLocker">
|
|
<doc xml:space="preserve" filename="gthread.h" line="408">Opaque type. See g_rw_lock_writer_locker_new() for details.</doc>
|
|
<source-position filename="gthread.h" line="414"/>
|
|
<type name="none" c:type="void"/>
|
|
</alias>
|
|
<alias name="RecMutexLocker" c:type="GRecMutexLocker">
|
|
<doc xml:space="preserve" filename="gthread.h" line="339">Opaque type. See g_rec_mutex_locker_new() for details.</doc>
|
|
<source-position filename="gthread.h" line="345"/>
|
|
<type name="none" c:type="void"/>
|
|
</alias>
|
|
<alias name="RefString" c:type="GRefString">
|
|
<doc xml:space="preserve" filename="grefstring.h" line="42">A typedef for a reference-counted string. A pointer to a #GRefString can be
|
|
treated like a standard `char*` array by all code, but can additionally have
|
|
`g_ref_string_*()` methods called on it. `g_ref_string_*()` methods cannot be
|
|
called on `char*` arrays not allocated using g_ref_string_new().
|
|
|
|
If using #GRefString with autocleanups, g_autoptr() must be used rather than
|
|
g_autofree(), so that the reference counting metadata is also freed.</doc>
|
|
<source-position filename="grefstring.h" line="55"/>
|
|
<type name="gchar" c:type="char"/>
|
|
</alias>
|
|
<alias name="Strv" c:type="GStrv">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1897">A typedef alias for gchar**. This is mostly useful when used together with
|
|
g_auto().</doc>
|
|
<source-position filename="gstrfuncs.h" line="269"/>
|
|
<type name="utf8" c:type="gchar**"/>
|
|
</alias>
|
|
<alias name="Time" c:type="GTime" deprecated="1" deprecated-version="2.62">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2057">Simply a replacement for `time_t`. It has been deprecated
|
|
since it is not equivalent to `time_t` on 64-bit platforms
|
|
with a 64-bit `time_t`. Unrelated to #GTimer.
|
|
|
|
Note that #GTime is defined to always be a 32-bit integer,
|
|
unlike `time_t` which may be 64-bit on some systems. Therefore,
|
|
#GTime will overflow in the year 2038, and you cannot use the
|
|
address of a #GTime variable as argument to the UNIX time()
|
|
function.
|
|
|
|
Instead, do the following:
|
|
|[<!-- language="C" -->
|
|
time_t ttime;
|
|
GTime gtime;
|
|
|
|
time (&ttime);
|
|
gtime = (GTime)ttime;
|
|
]|</doc>
|
|
<doc-deprecated xml:space="preserve">This is not [Y2038-safe](https://en.wikipedia.org/wiki/Year_2038_problem).
|
|
Use #GDateTime or #time_t instead.</doc-deprecated>
|
|
<source-position filename="gdate.h" line="48"/>
|
|
<type name="gint32" c:type="gint32"/>
|
|
</alias>
|
|
<alias name="TimeSpan" c:type="GTimeSpan">
|
|
<doc xml:space="preserve" filename="gdatetime.h" line="80">A value representing an interval of time, in microseconds.</doc>
|
|
<source-position filename="gdatetime.h" line="87"/>
|
|
<type name="gint64" c:type="gint64"/>
|
|
</alias>
|
|
<alias name="Type" c:type="GType">
|
|
<source-position filename="glib-types.h" line="30"/>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</alias>
|
|
<function-macro name="ALIGNOF" c:identifier="G_ALIGNOF" version="2.60" introspectable="0">
|
|
<doc xml:space="preserve" filename="gmacros.h" line="873">Return the minimal alignment required by the platform ABI for values of the given
|
|
type. The address of a variable or struct member of the given type must always be
|
|
a multiple of this alignment. For example, most platforms require int variables
|
|
to be aligned at a 4-byte boundary, so `G_ALIGNOF (int)` is 4 on most platforms.
|
|
|
|
Note this is not necessarily the same as the value returned by GCC’s
|
|
`__alignof__` operator, which returns the preferred alignment for a type.
|
|
The preferred alignment may be a stricter alignment than the minimal
|
|
alignment.</doc>
|
|
<source-position filename="gmacros.h" line="870"/>
|
|
<parameters>
|
|
<parameter name="type">
|
|
<doc xml:space="preserve" filename="gmacros.h" line="875">a type-name</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<constant name="ANALYZER_ANALYZING" value="1" c:type="G_ANALYZER_ANALYZING">
|
|
<source-position filename="gmacros.h" line="708"/>
|
|
<type name="gint" c:type="gint"/>
|
|
</constant>
|
|
<function-macro name="APPROX_VALUE" c:identifier="G_APPROX_VALUE" version="2.58" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2721">Evaluates to a truth value if the absolute difference between @a and @b is
|
|
smaller than @epsilon, and to a false value otherwise.
|
|
|
|
For example,
|
|
- `G_APPROX_VALUE (5, 6, 2)` evaluates to true
|
|
- `G_APPROX_VALUE (3.14, 3.15, 0.001)` evaluates to false
|
|
- `G_APPROX_VALUE (n, 0.f, FLT_EPSILON)` evaluates to true if `n` is within
|
|
the single precision floating point epsilon from zero</doc>
|
|
<source-position filename="gmacros.h" line="797"/>
|
|
<parameters>
|
|
<parameter name="a">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2723">a numeric value</doc>
|
|
</parameter>
|
|
<parameter name="b">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2724">a numeric value</doc>
|
|
</parameter>
|
|
<parameter name="epsilon">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2725">a numeric value that expresses the tolerance between @a and @b</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<constant name="ASCII_DTOSTR_BUF_SIZE" value="39" c:type="G_ASCII_DTOSTR_BUF_SIZE">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2741">A good size for a buffer to be passed into g_ascii_dtostr().
|
|
It is guaranteed to be enough for all output of that function
|
|
on systems with 64bit IEEE-compatible doubles.
|
|
|
|
The typical usage would be something like:
|
|
|[<!-- language="C" -->
|
|
char buf[G_ASCII_DTOSTR_BUF_SIZE];
|
|
|
|
fprintf (out, "value=%s\n", g_ascii_dtostr (buf, sizeof (buf), value));
|
|
]|</doc>
|
|
<source-position filename="gstrfuncs.h" line="163"/>
|
|
<type name="gint" c:type="gint"/>
|
|
</constant>
|
|
<function-macro name="ATEXIT" c:identifier="g_ATEXIT" introspectable="0">
|
|
<source-position filename="gutils.h" line="197"/>
|
|
<parameters>
|
|
<parameter name="proc">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<record name="Array" c:type="GArray" glib:type-name="GArray" glib:get-type="g_array_get_type" c:symbol-prefix="array">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="68">Contains the public fields of a GArray.</doc>
|
|
<source-position filename="garray.h" line="45"/>
|
|
<field name="data" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="70">a pointer to the element data. The data may be moved as
|
|
elements are added to the #GArray.</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</field>
|
|
<field name="len" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="72">the number of elements in the #GArray not including the
|
|
possible terminating zero element.</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<function name="append_vals" c:identifier="g_array_append_vals" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="8818">Adds @len elements onto the end of the array.</doc>
|
|
<source-position filename="garray.h" line="90"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="8826">the #GArray</doc>
|
|
<array name="GLib.Array" c:type="GArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="array" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="8820">a #GArray</doc>
|
|
<array name="GLib.Array" c:type="GArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="8821">a pointer to the elements to append to the end of the array</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
<parameter name="len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="8822">the number of elements to append</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="binary_search" c:identifier="g_array_binary_search" version="2.62" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="8830">Checks whether @target exists in @array by performing a binary
|
|
search based on the given comparison function @compare_func which
|
|
get pointers to items as arguments. If the element is found, %TRUE
|
|
is returned and the element’s index is returned in @out_match_index
|
|
(if non-%NULL). Otherwise, %FALSE is returned and @out_match_index
|
|
is undefined. If @target exists multiple times in @array, the index
|
|
of the first instance is returned. This search is using a binary
|
|
search, so the @array must absolutely be sorted to return a correct
|
|
result (if not, the function may produce false-negative).
|
|
|
|
This example defines a comparison function and search an element in a #GArray:
|
|
|[<!-- language="C" -->
|
|
static gint*
|
|
cmpint (gconstpointer a, gconstpointer b)
|
|
{
|
|
const gint *_a = a;
|
|
const gint *_b = b;
|
|
|
|
return *_a - *_b;
|
|
}
|
|
...
|
|
gint i = 424242;
|
|
guint matched_index;
|
|
gboolean result = g_array_binary_search (garray, &i, cmpint, &matched_index);
|
|
...
|
|
]|</doc>
|
|
<source-position filename="garray.h" line="123"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="8865">%TRUE if @target is one of the elements of @array, %FALSE otherwise.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="array" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="8832">a #GArray.</doc>
|
|
<array name="GLib.Array" c:type="GArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="target" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="8833">a pointer to the item to look up.</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
<parameter name="compare_func" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="8834">A #GCompareFunc used to locate @target.</doc>
|
|
<type name="CompareFunc" c:type="GCompareFunc"/>
|
|
</parameter>
|
|
<parameter name="out_match_index" direction="out" caller-allocates="1" transfer-ownership="none" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="8835">return location
|
|
for the index of the element, if found.</doc>
|
|
<type name="guint" c:type="guint*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="copy" c:identifier="g_array_copy" version="2.62" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="8870">Create a shallow copy of a #GArray. If the array elements consist of
|
|
pointers to data, the pointers are copied but the actual data is not.</doc>
|
|
<source-position filename="garray.h" line="79"/>
|
|
<return-value transfer-ownership="container">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="8877">A copy of @array.</doc>
|
|
<array name="GLib.Array" c:type="GArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="array" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="8872">A #GArray.</doc>
|
|
<array name="GLib.Array" c:type="GArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="free" c:identifier="g_array_free" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="8882">Frees the memory allocated for the #GArray. If @free_segment is
|
|
%TRUE it frees the memory block holding the elements as well. Pass
|
|
%FALSE if you want to free the #GArray wrapper but preserve the
|
|
underlying array for use elsewhere. If the reference count of
|
|
@array is greater than one, the #GArray wrapper is preserved but
|
|
the size of @array will be set to zero.
|
|
|
|
If array contents point to dynamically-allocated memory, they should
|
|
be freed separately if @free_seg is %TRUE and no @clear_func
|
|
function has been set for @array.
|
|
|
|
This function is not thread-safe. If using a #GArray from multiple
|
|
threads, use only the atomic g_array_ref() and g_array_unref()
|
|
functions.</doc>
|
|
<source-position filename="garray.h" line="81"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="8902">the element data if @free_segment is %FALSE, otherwise
|
|
%NULL. The element data should be freed using g_free().</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="array" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="8884">a #GArray</doc>
|
|
<array name="GLib.Array" c:type="GArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="free_segment" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="8885">if %TRUE the actual element data is freed as well</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="get_element_size" c:identifier="g_array_get_element_size" version="2.22" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="8907">Gets the size of the elements in @array.</doc>
|
|
<source-position filename="garray.h" line="88"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="8913">Size of each element, in bytes</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="array" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="8909">A #GArray</doc>
|
|
<array name="GLib.Array" c:type="GArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="insert_vals" c:identifier="g_array_insert_vals" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="8955">Inserts @len elements into a #GArray at the given index.
|
|
|
|
If @index_ is greater than the array’s current length, the array is expanded.
|
|
The elements between the old end of the array and the newly inserted elements
|
|
will be initialised to zero if the array was configured to clear elements;
|
|
otherwise their values will be undefined.
|
|
|
|
@data may be %NULL if (and only if) @len is zero. If @len is zero, this
|
|
function is a no-op.</doc>
|
|
<source-position filename="garray.h" line="98"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="8972">the #GArray</doc>
|
|
<array name="GLib.Array" c:type="GArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="array" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="8957">a #GArray</doc>
|
|
<array name="GLib.Array" c:type="GArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="index_" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="8958">the index to place the elements at</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="8959">a pointer to the elements to insert</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
<parameter name="len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="8960">the number of elements to insert</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="new" c:identifier="g_array_new" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="8976">Creates a new #GArray with a reference count of 1.</doc>
|
|
<source-position filename="garray.h" line="70"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="8986">the new #GArray</doc>
|
|
<array name="GLib.Array" c:type="GArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="zero_terminated" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="8978">%TRUE if the array should have an extra element at
|
|
the end which is set to 0</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
<parameter name="clear_" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="8980">%TRUE if #GArray elements should be automatically cleared
|
|
to 0 when they are allocated</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
<parameter name="element_size" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="8982">the size of each element in bytes</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="prepend_vals" c:identifier="g_array_prepend_vals" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9010">Adds @len elements onto the start of the array.
|
|
|
|
@data may be %NULL if (and only if) @len is zero. If @len is zero, this
|
|
function is a no-op.
|
|
|
|
This operation is slower than g_array_append_vals() since the
|
|
existing elements in the array have to be moved to make space for
|
|
the new elements.</doc>
|
|
<source-position filename="garray.h" line="94"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9025">the #GArray</doc>
|
|
<array name="GLib.Array" c:type="GArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="array" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9012">a #GArray</doc>
|
|
<array name="GLib.Array" c:type="GArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9013">a pointer to the elements to prepend to the start of the array</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
<parameter name="len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9014">the number of elements to prepend, which may be zero</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="ref" c:identifier="g_array_ref" version="2.22" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9029">Atomically increments the reference count of @array by one.
|
|
This function is thread-safe and may be called from any thread.</doc>
|
|
<source-position filename="garray.h" line="84"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9036">The passed in #GArray</doc>
|
|
<array name="GLib.Array" c:type="GArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="array" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9031">A #GArray</doc>
|
|
<array name="GLib.Array" c:type="GArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="remove_index" c:identifier="g_array_remove_index" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9041">Removes the element at the given index from a #GArray. The following
|
|
elements are moved down one place.</doc>
|
|
<source-position filename="garray.h" line="106"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9049">the #GArray</doc>
|
|
<array name="GLib.Array" c:type="GArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="array" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9043">a #GArray</doc>
|
|
<array name="GLib.Array" c:type="GArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="index_" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9044">the index of the element to remove</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="remove_index_fast" c:identifier="g_array_remove_index_fast" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9053">Removes the element at the given index from a #GArray. The last
|
|
element in the array is used to fill in the space, so this function
|
|
does not preserve the order of the #GArray. But it is faster than
|
|
g_array_remove_index().</doc>
|
|
<source-position filename="garray.h" line="109"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9063">the #GArray</doc>
|
|
<array name="GLib.Array" c:type="GArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="array" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9055">a @GArray</doc>
|
|
<array name="GLib.Array" c:type="GArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="index_" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9056">the index of the element to remove</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="remove_range" c:identifier="g_array_remove_range" version="2.4" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9067">Removes the given number of elements starting at the given index
|
|
from a #GArray. The following elements are moved to close the gap.</doc>
|
|
<source-position filename="garray.h" line="112"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9076">the #GArray</doc>
|
|
<array name="GLib.Array" c:type="GArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="array" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9069">a @GArray</doc>
|
|
<array name="GLib.Array" c:type="GArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="index_" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9070">the index of the first element to remove</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
<parameter name="length" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9071">the number of elements to remove</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="set_clear_func" c:identifier="g_array_set_clear_func" version="2.32" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9081">Sets a function to clear an element of @array.
|
|
|
|
The @clear_func will be called when an element in the array
|
|
data segment is removed and when the array is freed and data
|
|
segment is deallocated as well. @clear_func will be passed a
|
|
pointer to the element to clear, rather than the element itself.
|
|
|
|
Note that in contrast with other uses of #GDestroyNotify
|
|
functions, @clear_func is expected to clear the contents of
|
|
the array element it is given, but not free the element itself.</doc>
|
|
<source-position filename="garray.h" line="128"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="array" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9083">A #GArray</doc>
|
|
<array name="GLib.Array" c:type="GArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="clear_func" transfer-ownership="none" scope="async">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9084">a function to clear an element of @array</doc>
|
|
<type name="DestroyNotify" c:type="GDestroyNotify"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="set_size" c:identifier="g_array_set_size" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9101">Sets the size of the array, expanding it if necessary. If the array
|
|
was created with @clear_ set to %TRUE, the new elements are set to 0.</doc>
|
|
<source-position filename="garray.h" line="103"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9109">the #GArray</doc>
|
|
<array name="GLib.Array" c:type="GArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="array" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9103">a #GArray</doc>
|
|
<array name="GLib.Array" c:type="GArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="length" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9104">the new size of the #GArray</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="sized_new" c:identifier="g_array_sized_new" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9113">Creates a new #GArray with @reserved_size elements preallocated and
|
|
a reference count of 1. This avoids frequent reallocation, if you
|
|
are going to add many elements to the array. Note however that the
|
|
size of the array is still 0.</doc>
|
|
<source-position filename="garray.h" line="74"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9127">the new #GArray</doc>
|
|
<array name="GLib.Array" c:type="GArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="zero_terminated" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9115">%TRUE if the array should have an extra element at
|
|
the end with all bits cleared</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
<parameter name="clear_" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9117">%TRUE if all bits in the array should be cleared to 0 on
|
|
allocation</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
<parameter name="element_size" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9119">size of each element in the array</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
<parameter name="reserved_size" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9120">number of elements preallocated</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="sort" c:identifier="g_array_sort" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9131">Sorts a #GArray using @compare_func which should be a qsort()-style
|
|
comparison function (returns less than zero for first arg is less
|
|
than second arg, zero for equal, greater zero if first arg is
|
|
greater than second arg).
|
|
|
|
This is guaranteed to be a stable sort since version 2.32.</doc>
|
|
<source-position filename="garray.h" line="116"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="array" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9133">a #GArray</doc>
|
|
<array name="GLib.Array" c:type="GArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="compare_func" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9134">comparison function</doc>
|
|
<type name="CompareFunc" c:type="GCompareFunc"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="sort_with_data" c:identifier="g_array_sort_with_data" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9145">Like g_array_sort(), but the comparison function receives an extra
|
|
user data argument.
|
|
|
|
This is guaranteed to be a stable sort since version 2.32.
|
|
|
|
There used to be a comment here about making the sort stable by
|
|
using the addresses of the elements in the comparison function.
|
|
This did not actually work, so any such code should be removed.</doc>
|
|
<source-position filename="garray.h" line="119"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="array" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9147">a #GArray</doc>
|
|
<array name="GLib.Array" c:type="GArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="compare_func" transfer-ownership="none" closure="2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9148">comparison function</doc>
|
|
<type name="CompareDataFunc" c:type="GCompareDataFunc"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9149">data to pass to @compare_func</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="unref" c:identifier="g_array_unref" version="2.22" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9162">Atomically decrements the reference count of @array by one. If the
|
|
reference count drops to 0, all memory allocated by the array is
|
|
released. This function is thread-safe and may be called from any
|
|
thread.</doc>
|
|
<source-position filename="garray.h" line="86"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="array" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9164">A #GArray</doc>
|
|
<array name="GLib.Array" c:type="GArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
</record>
|
|
<bitfield name="AsciiType" c:type="GAsciiType">
|
|
<source-position filename="gstrfuncs.h" line="52"/>
|
|
<member name="alnum" value="1" c:identifier="G_ASCII_ALNUM">
|
|
</member>
|
|
<member name="alpha" value="2" c:identifier="G_ASCII_ALPHA">
|
|
</member>
|
|
<member name="cntrl" value="4" c:identifier="G_ASCII_CNTRL">
|
|
</member>
|
|
<member name="digit" value="8" c:identifier="G_ASCII_DIGIT">
|
|
</member>
|
|
<member name="graph" value="16" c:identifier="G_ASCII_GRAPH">
|
|
</member>
|
|
<member name="lower" value="32" c:identifier="G_ASCII_LOWER">
|
|
</member>
|
|
<member name="print" value="64" c:identifier="G_ASCII_PRINT">
|
|
</member>
|
|
<member name="punct" value="128" c:identifier="G_ASCII_PUNCT">
|
|
</member>
|
|
<member name="space" value="256" c:identifier="G_ASCII_SPACE">
|
|
</member>
|
|
<member name="upper" value="512" c:identifier="G_ASCII_UPPER">
|
|
</member>
|
|
<member name="xdigit" value="1024" c:identifier="G_ASCII_XDIGIT">
|
|
</member>
|
|
</bitfield>
|
|
<record name="AsyncQueue" c:type="GAsyncQueue" disguised="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="79">The GAsyncQueue struct is an opaque data structure which represents
|
|
an asynchronous queue. It should only be accessed through the
|
|
g_async_queue_* functions.</doc>
|
|
<source-position filename="gasyncqueue.h" line="36"/>
|
|
<method name="length" c:identifier="g_async_queue_length">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10027">Returns the length of the queue.
|
|
|
|
Actually this function returns the number of data items in
|
|
the queue minus the number of waiting threads, so a negative
|
|
value means waiting threads, and a positive value means available
|
|
entries in the @queue. A return value of 0 could mean n entries
|
|
in the queue and n threads waiting. This can happen due to locking
|
|
of the queue or due to scheduling.</doc>
|
|
<source-position filename="gasyncqueue.h" line="88"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10040">the length of the @queue</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10029">a #GAsyncQueue.</doc>
|
|
<type name="AsyncQueue" c:type="GAsyncQueue*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="length_unlocked" c:identifier="g_async_queue_length_unlocked">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10044">Returns the length of the queue.
|
|
|
|
Actually this function returns the number of data items in
|
|
the queue minus the number of waiting threads, so a negative
|
|
value means waiting threads, and a positive value means available
|
|
entries in the @queue. A return value of 0 could mean n entries
|
|
in the queue and n threads waiting. This can happen due to locking
|
|
of the queue or due to scheduling.
|
|
|
|
This function must be called while holding the @queue's lock.</doc>
|
|
<source-position filename="gasyncqueue.h" line="90"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10059">the length of the @queue.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10046">a #GAsyncQueue</doc>
|
|
<type name="AsyncQueue" c:type="GAsyncQueue*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="lock" c:identifier="g_async_queue_lock">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10063">Acquires the @queue's lock. If another thread is already
|
|
holding the lock, this call will block until the lock
|
|
becomes available.
|
|
|
|
Call g_async_queue_unlock() to drop the lock again.
|
|
|
|
While holding the lock, you can only call the
|
|
g_async_queue_*_unlocked() functions on @queue. Otherwise,
|
|
deadlock may occur.</doc>
|
|
<source-position filename="gasyncqueue.h" line="43"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10065">a #GAsyncQueue</doc>
|
|
<type name="AsyncQueue" c:type="GAsyncQueue*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="pop" c:identifier="g_async_queue_pop">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10101">Pops data from the @queue. If @queue is empty, this function
|
|
blocks until data becomes available.</doc>
|
|
<source-position filename="gasyncqueue.h" line="74"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10108">data from the queue</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10103">a #GAsyncQueue</doc>
|
|
<type name="AsyncQueue" c:type="GAsyncQueue*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="pop_unlocked" c:identifier="g_async_queue_pop_unlocked">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10112">Pops data from the @queue. If @queue is empty, this function
|
|
blocks until data becomes available.
|
|
|
|
This function must be called while holding the @queue's lock.</doc>
|
|
<source-position filename="gasyncqueue.h" line="76"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10121">data from the queue.</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10114">a #GAsyncQueue</doc>
|
|
<type name="AsyncQueue" c:type="GAsyncQueue*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="push" c:identifier="g_async_queue_push">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10125">Pushes the @data into the @queue. @data must not be %NULL.</doc>
|
|
<source-position filename="gasyncqueue.h" line="58"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10127">a #GAsyncQueue</doc>
|
|
<type name="AsyncQueue" c:type="GAsyncQueue*"/>
|
|
</instance-parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10128">@data to push into the @queue</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="push_front" c:identifier="g_async_queue_push_front" version="2.46">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10134">Pushes the @item into the @queue. @item must not be %NULL.
|
|
In contrast to g_async_queue_push(), this function
|
|
pushes the new item ahead of the items already in the queue,
|
|
so that it will be the next one to be popped off the queue.</doc>
|
|
<source-position filename="gasyncqueue.h" line="107"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10136">a #GAsyncQueue</doc>
|
|
<type name="AsyncQueue" c:type="GAsyncQueue*"/>
|
|
</instance-parameter>
|
|
<parameter name="item" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10137">data to push into the @queue</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="push_front_unlocked" c:identifier="g_async_queue_push_front_unlocked" version="2.46">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10148">Pushes the @item into the @queue. @item must not be %NULL.
|
|
In contrast to g_async_queue_push_unlocked(), this function
|
|
pushes the new item ahead of the items already in the queue,
|
|
so that it will be the next one to be popped off the queue.
|
|
|
|
This function must be called while holding the @queue's lock.</doc>
|
|
<source-position filename="gasyncqueue.h" line="110"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10150">a #GAsyncQueue</doc>
|
|
<type name="AsyncQueue" c:type="GAsyncQueue*"/>
|
|
</instance-parameter>
|
|
<parameter name="item" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10151">data to push into the @queue</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="push_sorted" c:identifier="g_async_queue_push_sorted" version="2.10" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10164">Inserts @data into @queue using @func to determine the new
|
|
position.
|
|
|
|
This function requires that the @queue is sorted before pushing on
|
|
new elements, see g_async_queue_sort().
|
|
|
|
This function will lock @queue before it sorts the queue and unlock
|
|
it when it is finished.
|
|
|
|
For an example of @func see g_async_queue_sort().</doc>
|
|
<source-position filename="gasyncqueue.h" line="64"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10166">a #GAsyncQueue</doc>
|
|
<type name="AsyncQueue" c:type="GAsyncQueue*"/>
|
|
</instance-parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10167">the @data to push into the @queue</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="func" transfer-ownership="none" closure="2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10168">the #GCompareDataFunc is used to sort @queue</doc>
|
|
<type name="CompareDataFunc" c:type="GCompareDataFunc"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10169">user data passed to @func.</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="push_sorted_unlocked" c:identifier="g_async_queue_push_sorted_unlocked" version="2.10" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10186">Inserts @data into @queue using @func to determine the new
|
|
position.
|
|
|
|
The sort function @func is passed two elements of the @queue.
|
|
It should return 0 if they are equal, a negative value if the
|
|
first element should be higher in the @queue or a positive value
|
|
if the first element should be lower in the @queue than the second
|
|
element.
|
|
|
|
This function requires that the @queue is sorted before pushing on
|
|
new elements, see g_async_queue_sort().
|
|
|
|
This function must be called while holding the @queue's lock.
|
|
|
|
For an example of @func see g_async_queue_sort().</doc>
|
|
<source-position filename="gasyncqueue.h" line="69"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10188">a #GAsyncQueue</doc>
|
|
<type name="AsyncQueue" c:type="GAsyncQueue*"/>
|
|
</instance-parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10189">the @data to push into the @queue</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="func" transfer-ownership="none" closure="2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10190">the #GCompareDataFunc is used to sort @queue</doc>
|
|
<type name="CompareDataFunc" c:type="GCompareDataFunc"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10191">user data passed to @func.</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="push_unlocked" c:identifier="g_async_queue_push_unlocked">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10213">Pushes the @data into the @queue. @data must not be %NULL.
|
|
|
|
This function must be called while holding the @queue's lock.</doc>
|
|
<source-position filename="gasyncqueue.h" line="61"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10215">a #GAsyncQueue</doc>
|
|
<type name="AsyncQueue" c:type="GAsyncQueue*"/>
|
|
</instance-parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10216">@data to push into the @queue</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="ref" c:identifier="g_async_queue_ref" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10224">Increases the reference count of the asynchronous @queue by 1.
|
|
You do not need to hold the lock to call this function.</doc>
|
|
<source-position filename="gasyncqueue.h" line="47"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10231">the @queue that was passed in (since 2.6)</doc>
|
|
<type name="AsyncQueue" c:type="GAsyncQueue*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10226">a #GAsyncQueue</doc>
|
|
<type name="AsyncQueue" c:type="GAsyncQueue*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="ref_unlocked" c:identifier="g_async_queue_ref_unlocked" deprecated="1" deprecated-version="2.8">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10235">Increases the reference count of the asynchronous @queue by 1.</doc>
|
|
<doc-deprecated xml:space="preserve">Reference counting is done atomically.
|
|
so g_async_queue_ref() can be used regardless of the @queue's
|
|
lock.</doc-deprecated>
|
|
<source-position filename="gasyncqueue.h" line="52"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10237">a #GAsyncQueue</doc>
|
|
<type name="AsyncQueue" c:type="GAsyncQueue*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="remove" c:identifier="g_async_queue_remove" version="2.46">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10247">Remove an item from the queue.</doc>
|
|
<source-position filename="gasyncqueue.h" line="101"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10254">%TRUE if the item was removed</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10249">a #GAsyncQueue</doc>
|
|
<type name="AsyncQueue" c:type="GAsyncQueue*"/>
|
|
</instance-parameter>
|
|
<parameter name="item" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10250">the data to remove from the @queue</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="remove_unlocked" c:identifier="g_async_queue_remove_unlocked" version="2.46">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10259">Remove an item from the queue.
|
|
|
|
This function must be called while holding the @queue's lock.</doc>
|
|
<source-position filename="gasyncqueue.h" line="104"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10268">%TRUE if the item was removed</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10261">a #GAsyncQueue</doc>
|
|
<type name="AsyncQueue" c:type="GAsyncQueue*"/>
|
|
</instance-parameter>
|
|
<parameter name="item" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10262">the data to remove from the @queue</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="sort" c:identifier="g_async_queue_sort" version="2.10" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10273">Sorts @queue using @func.
|
|
|
|
The sort function @func is passed two elements of the @queue.
|
|
It should return 0 if they are equal, a negative value if the
|
|
first element should be higher in the @queue or a positive value
|
|
if the first element should be lower in the @queue than the second
|
|
element.
|
|
|
|
This function will lock @queue before it sorts the queue and unlock
|
|
it when it is finished.
|
|
|
|
If you were sorting a list of priority numbers to make sure the
|
|
lowest priority would be at the top of the queue, you could use:
|
|
|[<!-- language="C" -->
|
|
gint32 id1;
|
|
gint32 id2;
|
|
|
|
id1 = GPOINTER_TO_INT (element1);
|
|
id2 = GPOINTER_TO_INT (element2);
|
|
|
|
return (id1 > id2 ? +1 : id1 == id2 ? 0 : -1);
|
|
]|</doc>
|
|
<source-position filename="gasyncqueue.h" line="92"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10275">a #GAsyncQueue</doc>
|
|
<type name="AsyncQueue" c:type="GAsyncQueue*"/>
|
|
</instance-parameter>
|
|
<parameter name="func" transfer-ownership="none" closure="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10276">the #GCompareDataFunc is used to sort @queue</doc>
|
|
<type name="CompareDataFunc" c:type="GCompareDataFunc"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10277">user data passed to @func</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="sort_unlocked" c:identifier="g_async_queue_sort_unlocked" version="2.10" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10306">Sorts @queue using @func.
|
|
|
|
The sort function @func is passed two elements of the @queue.
|
|
It should return 0 if they are equal, a negative value if the
|
|
first element should be higher in the @queue or a positive value
|
|
if the first element should be lower in the @queue than the second
|
|
element.
|
|
|
|
This function must be called while holding the @queue's lock.</doc>
|
|
<source-position filename="gasyncqueue.h" line="96"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10308">a #GAsyncQueue</doc>
|
|
<type name="AsyncQueue" c:type="GAsyncQueue*"/>
|
|
</instance-parameter>
|
|
<parameter name="func" transfer-ownership="none" closure="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10309">the #GCompareDataFunc is used to sort @queue</doc>
|
|
<type name="CompareDataFunc" c:type="GCompareDataFunc"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10310">user data passed to @func</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="timed_pop" c:identifier="g_async_queue_timed_pop" deprecated="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10326">Pops data from the @queue. If the queue is empty, blocks until
|
|
@end_time or until data becomes available.
|
|
|
|
If no data is received before @end_time, %NULL is returned.
|
|
|
|
To easily calculate @end_time, a combination of g_get_real_time()
|
|
and g_time_val_add() can be used.</doc>
|
|
<doc-deprecated xml:space="preserve">use g_async_queue_timeout_pop().</doc-deprecated>
|
|
<source-position filename="gasyncqueue.h" line="115"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10339">data from the queue or %NULL, when no data is
|
|
received before @end_time.</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10328">a #GAsyncQueue</doc>
|
|
<type name="AsyncQueue" c:type="GAsyncQueue*"/>
|
|
</instance-parameter>
|
|
<parameter name="end_time" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10329">a #GTimeVal, determining the final time</doc>
|
|
<type name="TimeVal" c:type="GTimeVal*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="timed_pop_unlocked" c:identifier="g_async_queue_timed_pop_unlocked" deprecated="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10345">Pops data from the @queue. If the queue is empty, blocks until
|
|
@end_time or until data becomes available.
|
|
|
|
If no data is received before @end_time, %NULL is returned.
|
|
|
|
To easily calculate @end_time, a combination of g_get_real_time()
|
|
and g_time_val_add() can be used.
|
|
|
|
This function must be called while holding the @queue's lock.</doc>
|
|
<doc-deprecated xml:space="preserve">use g_async_queue_timeout_pop_unlocked().</doc-deprecated>
|
|
<source-position filename="gasyncqueue.h" line="118"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10360">data from the queue or %NULL, when no data is
|
|
received before @end_time.</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10347">a #GAsyncQueue</doc>
|
|
<type name="AsyncQueue" c:type="GAsyncQueue*"/>
|
|
</instance-parameter>
|
|
<parameter name="end_time" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10348">a #GTimeVal, determining the final time</doc>
|
|
<type name="TimeVal" c:type="GTimeVal*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="timeout_pop" c:identifier="g_async_queue_timeout_pop">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10366">Pops data from the @queue. If the queue is empty, blocks for
|
|
@timeout microseconds, or until data becomes available.
|
|
|
|
If no data is received before the timeout, %NULL is returned.</doc>
|
|
<source-position filename="gasyncqueue.h" line="82"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10376">data from the queue or %NULL, when no data is
|
|
received before the timeout.</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10368">a #GAsyncQueue</doc>
|
|
<type name="AsyncQueue" c:type="GAsyncQueue*"/>
|
|
</instance-parameter>
|
|
<parameter name="timeout" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10369">the number of microseconds to wait</doc>
|
|
<type name="guint64" c:type="guint64"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="timeout_pop_unlocked" c:identifier="g_async_queue_timeout_pop_unlocked">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10381">Pops data from the @queue. If the queue is empty, blocks for
|
|
@timeout microseconds, or until data becomes available.
|
|
|
|
If no data is received before the timeout, %NULL is returned.
|
|
|
|
This function must be called while holding the @queue's lock.</doc>
|
|
<source-position filename="gasyncqueue.h" line="85"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10393">data from the queue or %NULL, when no data is
|
|
received before the timeout.</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10383">a #GAsyncQueue</doc>
|
|
<type name="AsyncQueue" c:type="GAsyncQueue*"/>
|
|
</instance-parameter>
|
|
<parameter name="timeout" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10384">the number of microseconds to wait</doc>
|
|
<type name="guint64" c:type="guint64"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="try_pop" c:identifier="g_async_queue_try_pop">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10398">Tries to pop data from the @queue. If no data is available,
|
|
%NULL is returned.</doc>
|
|
<source-position filename="gasyncqueue.h" line="78"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10405">data from the queue or %NULL, when no data is
|
|
available immediately.</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10400">a #GAsyncQueue</doc>
|
|
<type name="AsyncQueue" c:type="GAsyncQueue*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="try_pop_unlocked" c:identifier="g_async_queue_try_pop_unlocked">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10410">Tries to pop data from the @queue. If no data is available,
|
|
%NULL is returned.
|
|
|
|
This function must be called while holding the @queue's lock.</doc>
|
|
<source-position filename="gasyncqueue.h" line="80"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10419">data from the queue or %NULL, when no data is
|
|
available immediately.</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10412">a #GAsyncQueue</doc>
|
|
<type name="AsyncQueue" c:type="GAsyncQueue*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="unlock" c:identifier="g_async_queue_unlock">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10424">Releases the queue's lock.
|
|
|
|
Calling this function when you have not acquired
|
|
the with g_async_queue_lock() leads to undefined
|
|
behaviour.</doc>
|
|
<source-position filename="gasyncqueue.h" line="45"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10426">a #GAsyncQueue</doc>
|
|
<type name="AsyncQueue" c:type="GAsyncQueue*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="unref" c:identifier="g_async_queue_unref">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10436">Decreases the reference count of the asynchronous @queue by 1.
|
|
|
|
If the reference count went to 0, the @queue will be destroyed
|
|
and the memory allocated will be freed. So you are not allowed
|
|
to use the @queue afterwards, as it might have disappeared.
|
|
You do not need to hold the lock to call this function.</doc>
|
|
<source-position filename="gasyncqueue.h" line="49"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10438">a #GAsyncQueue.</doc>
|
|
<type name="AsyncQueue" c:type="GAsyncQueue*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="unref_and_unlock" c:identifier="g_async_queue_unref_and_unlock" deprecated="1" deprecated-version="2.8">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10449">Decreases the reference count of the asynchronous @queue by 1
|
|
and releases the lock. This function must be called while holding
|
|
the @queue's lock. If the reference count went to 0, the @queue
|
|
will be destroyed and the memory allocated will be freed.</doc>
|
|
<doc-deprecated xml:space="preserve">Reference counting is done atomically.
|
|
so g_async_queue_unref() can be used regardless of the @queue's
|
|
lock.</doc-deprecated>
|
|
<source-position filename="gasyncqueue.h" line="55"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10451">a #GAsyncQueue</doc>
|
|
<type name="AsyncQueue" c:type="GAsyncQueue*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<function name="new" c:identifier="g_async_queue_new" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10079">Creates a new asynchronous queue.</doc>
|
|
<source-position filename="gasyncqueue.h" line="39"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10084">a new #GAsyncQueue. Free with g_async_queue_unref()</doc>
|
|
<type name="AsyncQueue" c:type="GAsyncQueue*"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="new_full" c:identifier="g_async_queue_new_full" version="2.16" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10088">Creates a new asynchronous queue and sets up a destroy notify
|
|
function that is used to free any remaining queue items when
|
|
the queue is destroyed after the final unref.</doc>
|
|
<source-position filename="gasyncqueue.h" line="41"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10096">a new #GAsyncQueue. Free with g_async_queue_unref()</doc>
|
|
<type name="AsyncQueue" c:type="GAsyncQueue*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="item_free_func" transfer-ownership="none" scope="async">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10090">function to free queue elements</doc>
|
|
<type name="DestroyNotify" c:type="GDestroyNotify"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
</record>
|
|
<constant name="BIG_ENDIAN" value="4321" c:type="G_BIG_ENDIAN">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2780">Specifies one of the possible types of byte order.
|
|
See #G_BYTE_ORDER.</doc>
|
|
<source-position filename="gtypes.h" line="185"/>
|
|
<type name="gint" c:type="gint"/>
|
|
</constant>
|
|
<record name="BookmarkFile" c:type="GBookmarkFile" disguised="1">
|
|
<doc xml:space="preserve" filename="gbookmarkfile.h" line="71">The `GBookmarkFile` structure contains only
|
|
private data and should not be directly accessed.</doc>
|
|
<source-position filename="gbookmarkfile.h" line="77"/>
|
|
<method name="add_application" c:identifier="g_bookmark_file_add_application" version="2.12">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11460">Adds the application with @name and @exec to the list of
|
|
applications that have registered a bookmark for @uri into
|
|
@bookmark.
|
|
|
|
Every bookmark inside a #GBookmarkFile must have at least an
|
|
application registered. Each application must provide a name, a
|
|
command line useful for launching the bookmark, the number of times
|
|
the bookmark has been registered by the application and the last
|
|
time the application registered this bookmark.
|
|
|
|
If @name is %NULL, the name of the application will be the
|
|
same returned by g_get_application_name(); if @exec is %NULL, the
|
|
command line will be a composition of the program name as
|
|
returned by g_get_prgname() and the "\%u" modifier, which will be
|
|
expanded to the bookmark's URI.
|
|
|
|
This function will automatically take care of updating the
|
|
registrations count and timestamping in case an application
|
|
with the same @name had already registered a bookmark for
|
|
@uri inside @bookmark.
|
|
|
|
If no bookmark for @uri is found, one is created.</doc>
|
|
<source-position filename="gbookmarkfile.h" line="151"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="bookmark" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11462">a #GBookmarkFile</doc>
|
|
<type name="BookmarkFile" c:type="GBookmarkFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="uri" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11463">a valid URI</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="name" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11464">the name of the application registering the bookmark
|
|
or %NULL</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="exec" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11466">command line to be used to launch the bookmark or %NULL</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="add_group" c:identifier="g_bookmark_file_add_group" version="2.12">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11495">Adds @group to the list of groups to which the bookmark for @uri
|
|
belongs to.
|
|
|
|
If no bookmark for @uri is found then it is created.</doc>
|
|
<source-position filename="gbookmarkfile.h" line="137"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="bookmark" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11497">a #GBookmarkFile</doc>
|
|
<type name="BookmarkFile" c:type="GBookmarkFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="uri" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11498">a valid URI</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="group" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11499">the group name to be added</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="free" c:identifier="g_bookmark_file_free" version="2.12">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11510">Frees a #GBookmarkFile.</doc>
|
|
<source-position filename="gbookmarkfile.h" line="82"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="bookmark" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11512">a #GBookmarkFile</doc>
|
|
<type name="BookmarkFile" c:type="GBookmarkFile*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_added" c:identifier="g_bookmark_file_get_added" version="2.12" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11520">Gets the time the bookmark for @uri was added to @bookmark
|
|
|
|
In the event the URI cannot be found, -1 is returned and
|
|
@error is set to #G_BOOKMARK_FILE_ERROR_URI_NOT_FOUND.</doc>
|
|
<source-position filename="gbookmarkfile.h" line="205"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11531">a timestamp</doc>
|
|
<type name="glong" c:type="time_t"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="bookmark" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11522">a #GBookmarkFile</doc>
|
|
<type name="BookmarkFile" c:type="GBookmarkFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="uri" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11523">a valid URI</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_app_info" c:identifier="g_bookmark_file_get_app_info" version="2.12" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11536">Gets the registration information of @app_name for the bookmark for
|
|
@uri. See g_bookmark_file_set_app_info() for more information about
|
|
the returned data.
|
|
|
|
The string returned in @app_exec must be freed.
|
|
|
|
In the event the URI cannot be found, %FALSE is returned and
|
|
@error is set to #G_BOOKMARK_FILE_ERROR_URI_NOT_FOUND. In the
|
|
event that no application with name @app_name has registered a bookmark
|
|
for @uri, %FALSE is returned and error is set to
|
|
#G_BOOKMARK_FILE_ERROR_APP_NOT_REGISTERED. In the event that unquoting
|
|
the command line fails, an error of the #G_SHELL_ERROR domain is
|
|
set and %FALSE is returned.</doc>
|
|
<source-position filename="gbookmarkfile.h" line="174"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11560">%TRUE on success.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="bookmark" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11538">a #GBookmarkFile</doc>
|
|
<type name="BookmarkFile" c:type="GBookmarkFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="uri" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11539">a valid URI</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11540">an application's name</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="exec" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11541">return location for the command line of the application, or %NULL</doc>
|
|
<type name="utf8" c:type="gchar**"/>
|
|
</parameter>
|
|
<parameter name="count" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11542">return location for the registration count, or %NULL</doc>
|
|
<type name="guint" c:type="guint*"/>
|
|
</parameter>
|
|
<parameter name="stamp" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11543">return location for the last registration time, or %NULL</doc>
|
|
<type name="glong" c:type="time_t*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_applications" c:identifier="g_bookmark_file_get_applications" version="2.12" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11565">Retrieves the names of the applications that have registered the
|
|
bookmark for @uri.
|
|
|
|
In the event the URI cannot be found, %NULL is returned and
|
|
@error is set to #G_BOOKMARK_FILE_ERROR_URI_NOT_FOUND.</doc>
|
|
<source-position filename="gbookmarkfile.h" line="161"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11578">a newly allocated %NULL-terminated array of strings.
|
|
Use g_strfreev() to free it.</doc>
|
|
<array length="1" zero-terminated="0" c:type="gchar**">
|
|
<type name="utf8"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="bookmark" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11567">a #GBookmarkFile</doc>
|
|
<type name="BookmarkFile" c:type="GBookmarkFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="uri" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11568">a valid URI</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="length" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11569">return location of the length of the returned list, or %NULL</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_description" c:identifier="g_bookmark_file_get_description" version="2.12" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11584">Retrieves the description of the bookmark for @uri.
|
|
|
|
In the event the URI cannot be found, %NULL is returned and
|
|
@error is set to #G_BOOKMARK_FILE_ERROR_URI_NOT_FOUND.</doc>
|
|
<source-position filename="gbookmarkfile.h" line="120"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11595">a newly allocated string or %NULL if the specified
|
|
URI cannot be found.</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="bookmark" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11586">a #GBookmarkFile</doc>
|
|
<type name="BookmarkFile" c:type="GBookmarkFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="uri" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11587">a valid URI</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_groups" c:identifier="g_bookmark_file_get_groups" version="2.12" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11601">Retrieves the list of group names of the bookmark for @uri.
|
|
|
|
In the event the URI cannot be found, %NULL is returned and
|
|
@error is set to #G_BOOKMARK_FILE_ERROR_URI_NOT_FOUND.
|
|
|
|
The returned array is %NULL terminated, so @length may optionally
|
|
be %NULL.</doc>
|
|
<source-position filename="gbookmarkfile.h" line="146"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11616">a newly allocated %NULL-terminated array of group names.
|
|
Use g_strfreev() to free it.</doc>
|
|
<array length="1" zero-terminated="0" c:type="gchar**">
|
|
<type name="utf8"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="bookmark" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11603">a #GBookmarkFile</doc>
|
|
<type name="BookmarkFile" c:type="GBookmarkFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="uri" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11604">a valid URI</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="length" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11605">return location for the length of the returned string, or %NULL</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_icon" c:identifier="g_bookmark_file_get_icon" version="2.12" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11622">Gets the icon of the bookmark for @uri.
|
|
|
|
In the event the URI cannot be found, %FALSE is returned and
|
|
@error is set to #G_BOOKMARK_FILE_ERROR_URI_NOT_FOUND.</doc>
|
|
<source-position filename="gbookmarkfile.h" line="195"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11635">%TRUE if the icon for the bookmark for the URI was found.
|
|
You should free the returned strings.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="bookmark" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11624">a #GBookmarkFile</doc>
|
|
<type name="BookmarkFile" c:type="GBookmarkFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="uri" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11625">a valid URI</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="href" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11626">return location for the icon's location or %NULL</doc>
|
|
<type name="utf8" c:type="gchar**"/>
|
|
</parameter>
|
|
<parameter name="mime_type" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11627">return location for the icon's MIME type or %NULL</doc>
|
|
<type name="utf8" c:type="gchar**"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_is_private" c:identifier="g_bookmark_file_get_is_private" version="2.12" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11641">Gets whether the private flag of the bookmark for @uri is set.
|
|
|
|
In the event the URI cannot be found, %FALSE is returned and
|
|
@error is set to #G_BOOKMARK_FILE_ERROR_URI_NOT_FOUND. In the
|
|
event that the private flag cannot be found, %FALSE is returned and
|
|
@error is set to #G_BOOKMARK_FILE_ERROR_INVALID_VALUE.</doc>
|
|
<source-position filename="gbookmarkfile.h" line="186"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11654">%TRUE if the private flag is set, %FALSE otherwise.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="bookmark" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11643">a #GBookmarkFile</doc>
|
|
<type name="BookmarkFile" c:type="GBookmarkFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="uri" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11644">a valid URI</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_mime_type" c:identifier="g_bookmark_file_get_mime_type" version="2.12" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11659">Retrieves the MIME type of the resource pointed by @uri.
|
|
|
|
In the event the URI cannot be found, %NULL is returned and
|
|
@error is set to #G_BOOKMARK_FILE_ERROR_URI_NOT_FOUND. In the
|
|
event that the MIME type cannot be found, %NULL is returned and
|
|
@error is set to #G_BOOKMARK_FILE_ERROR_INVALID_VALUE.</doc>
|
|
<source-position filename="gbookmarkfile.h" line="128"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11672">a newly allocated string or %NULL if the specified
|
|
URI cannot be found.</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="bookmark" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11661">a #GBookmarkFile</doc>
|
|
<type name="BookmarkFile" c:type="GBookmarkFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="uri" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11662">a valid URI</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_modified" c:identifier="g_bookmark_file_get_modified" version="2.12" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11678">Gets the time when the bookmark for @uri was last modified.
|
|
|
|
In the event the URI cannot be found, -1 is returned and
|
|
@error is set to #G_BOOKMARK_FILE_ERROR_URI_NOT_FOUND.</doc>
|
|
<source-position filename="gbookmarkfile.h" line="213"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11689">a timestamp</doc>
|
|
<type name="glong" c:type="time_t"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="bookmark" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11680">a #GBookmarkFile</doc>
|
|
<type name="BookmarkFile" c:type="GBookmarkFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="uri" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11681">a valid URI</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_size" c:identifier="g_bookmark_file_get_size" version="2.12">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11694">Gets the number of bookmarks inside @bookmark.</doc>
|
|
<source-position filename="gbookmarkfile.h" line="228"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11700">the number of bookmarks</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="bookmark" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11696">a #GBookmarkFile</doc>
|
|
<type name="BookmarkFile" c:type="GBookmarkFile*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_title" c:identifier="g_bookmark_file_get_title" version="2.12" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11705">Returns the title of the bookmark for @uri.
|
|
|
|
If @uri is %NULL, the title of @bookmark is returned.
|
|
|
|
In the event the URI cannot be found, %NULL is returned and
|
|
@error is set to #G_BOOKMARK_FILE_ERROR_URI_NOT_FOUND.</doc>
|
|
<source-position filename="gbookmarkfile.h" line="112"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11718">a newly allocated string or %NULL if the specified
|
|
URI cannot be found.</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="bookmark" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11707">a #GBookmarkFile</doc>
|
|
<type name="BookmarkFile" c:type="GBookmarkFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="uri" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11708">a valid URI or %NULL</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_uris" c:identifier="g_bookmark_file_get_uris" version="2.12">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11724">Returns all URIs of the bookmarks in the bookmark file @bookmark.
|
|
The array of returned URIs will be %NULL-terminated, so @length may
|
|
optionally be %NULL.</doc>
|
|
<source-position filename="gbookmarkfile.h" line="230"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11733">a newly allocated %NULL-terminated array of strings.
|
|
Use g_strfreev() to free it.</doc>
|
|
<array length="0" zero-terminated="0" c:type="gchar**">
|
|
<type name="utf8"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="bookmark" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11726">a #GBookmarkFile</doc>
|
|
<type name="BookmarkFile" c:type="GBookmarkFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="length" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11727">return location for the number of returned URIs, or %NULL</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_visited" c:identifier="g_bookmark_file_get_visited" version="2.12" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11739">Gets the time the bookmark for @uri was last visited.
|
|
|
|
In the event the URI cannot be found, -1 is returned and
|
|
@error is set to #G_BOOKMARK_FILE_ERROR_URI_NOT_FOUND.</doc>
|
|
<source-position filename="gbookmarkfile.h" line="221"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11750">a timestamp.</doc>
|
|
<type name="glong" c:type="time_t"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="bookmark" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11741">a #GBookmarkFile</doc>
|
|
<type name="BookmarkFile" c:type="GBookmarkFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="uri" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11742">a valid URI</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="has_application" c:identifier="g_bookmark_file_has_application" version="2.12" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11755">Checks whether the bookmark for @uri inside @bookmark has been
|
|
registered by application @name.
|
|
|
|
In the event the URI cannot be found, %FALSE is returned and
|
|
@error is set to #G_BOOKMARK_FILE_ERROR_URI_NOT_FOUND.</doc>
|
|
<source-position filename="gbookmarkfile.h" line="156"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11768">%TRUE if the application @name was found</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="bookmark" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11757">a #GBookmarkFile</doc>
|
|
<type name="BookmarkFile" c:type="GBookmarkFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="uri" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11758">a valid URI</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11759">the name of the application</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="has_group" c:identifier="g_bookmark_file_has_group" version="2.12" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11773">Checks whether @group appears in the list of groups to which
|
|
the bookmark for @uri belongs to.
|
|
|
|
In the event the URI cannot be found, %FALSE is returned and
|
|
@error is set to #G_BOOKMARK_FILE_ERROR_URI_NOT_FOUND.</doc>
|
|
<source-position filename="gbookmarkfile.h" line="141"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11786">%TRUE if @group was found.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="bookmark" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11775">a #GBookmarkFile</doc>
|
|
<type name="BookmarkFile" c:type="GBookmarkFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="uri" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11776">a valid URI</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="group" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11777">the group name to be searched</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="has_item" c:identifier="g_bookmark_file_has_item" version="2.12">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11791">Looks whether the desktop bookmark has an item with its URI set to @uri.</doc>
|
|
<source-position filename="gbookmarkfile.h" line="225"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11798">%TRUE if @uri is inside @bookmark, %FALSE otherwise</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="bookmark" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11793">a #GBookmarkFile</doc>
|
|
<type name="BookmarkFile" c:type="GBookmarkFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="uri" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11794">a valid URI</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="load_from_data" c:identifier="g_bookmark_file_load_from_data" version="2.12" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11803">Loads a bookmark file from memory into an empty #GBookmarkFile
|
|
structure. If the object cannot be created then @error is set to a
|
|
#GBookmarkFileError.</doc>
|
|
<source-position filename="gbookmarkfile.h" line="89"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11815">%TRUE if a desktop bookmark could be loaded.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="bookmark" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11805">an empty #GBookmarkFile struct</doc>
|
|
<type name="BookmarkFile" c:type="GBookmarkFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="data" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11806">desktop bookmarks
|
|
loaded in memory</doc>
|
|
<array length="1" zero-terminated="0" c:type="const gchar*">
|
|
<type name="guint8"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="length" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11808">the length of @data in bytes</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="load_from_data_dirs" c:identifier="g_bookmark_file_load_from_data_dirs" version="2.12" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11820">This function looks for a desktop bookmark file named @file in the
|
|
paths returned from g_get_user_data_dir() and g_get_system_data_dirs(),
|
|
loads the file into @bookmark and returns the file's full path in
|
|
@full_path. If the file could not be loaded then @error is
|
|
set to either a #GFileError or #GBookmarkFileError.</doc>
|
|
<source-position filename="gbookmarkfile.h" line="94"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11834">%TRUE if a key file could be loaded, %FALSE otherwise</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="bookmark" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11822">a #GBookmarkFile</doc>
|
|
<type name="BookmarkFile" c:type="GBookmarkFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11823">a relative path to a filename to open and parse</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="full_path" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11824">return location for a string
|
|
containing the full path of the file, or %NULL</doc>
|
|
<type name="filename" c:type="gchar**"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="load_from_file" c:identifier="g_bookmark_file_load_from_file" version="2.12" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11839">Loads a desktop bookmark file into an empty #GBookmarkFile structure.
|
|
If the file could not be loaded then @error is set to either a #GFileError
|
|
or #GBookmarkFileError.</doc>
|
|
<source-position filename="gbookmarkfile.h" line="85"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11850">%TRUE if a desktop bookmark file could be loaded</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="bookmark" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11841">an empty #GBookmarkFile struct</doc>
|
|
<type name="BookmarkFile" c:type="GBookmarkFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="filename" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11842">the path of a filename to load, in the
|
|
GLib file name encoding</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="move_item" c:identifier="g_bookmark_file_move_item" version="2.12" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11855">Changes the URI of a bookmark item from @old_uri to @new_uri. Any
|
|
existing bookmark for @new_uri will be overwritten. If @new_uri is
|
|
%NULL, then the bookmark is removed.
|
|
|
|
In the event the URI cannot be found, %FALSE is returned and
|
|
@error is set to #G_BOOKMARK_FILE_ERROR_URI_NOT_FOUND.</doc>
|
|
<source-position filename="gbookmarkfile.h" line="247"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11869">%TRUE if the URI was successfully changed</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="bookmark" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11857">a #GBookmarkFile</doc>
|
|
<type name="BookmarkFile" c:type="GBookmarkFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="old_uri" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11858">a valid URI</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="new_uri" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11859">a valid URI, or %NULL</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="remove_application" c:identifier="g_bookmark_file_remove_application" version="2.12" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11888">Removes application registered with @name from the list of applications
|
|
that have registered a bookmark for @uri inside @bookmark.
|
|
|
|
In the event the URI cannot be found, %FALSE is returned and
|
|
@error is set to #G_BOOKMARK_FILE_ERROR_URI_NOT_FOUND.
|
|
In the event that no application with name @app_name has registered
|
|
a bookmark for @uri, %FALSE is returned and error is set to
|
|
#G_BOOKMARK_FILE_ERROR_APP_NOT_REGISTERED.</doc>
|
|
<source-position filename="gbookmarkfile.h" line="238"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11904">%TRUE if the application was successfully removed.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="bookmark" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11890">a #GBookmarkFile</doc>
|
|
<type name="BookmarkFile" c:type="GBookmarkFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="uri" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11891">a valid URI</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11892">the name of the application</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="remove_group" c:identifier="g_bookmark_file_remove_group" version="2.12" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11909">Removes @group from the list of groups to which the bookmark
|
|
for @uri belongs to.
|
|
|
|
In the event the URI cannot be found, %FALSE is returned and
|
|
@error is set to #G_BOOKMARK_FILE_ERROR_URI_NOT_FOUND.
|
|
In the event no group was defined, %FALSE is returned and
|
|
@error is set to #G_BOOKMARK_FILE_ERROR_INVALID_VALUE.</doc>
|
|
<source-position filename="gbookmarkfile.h" line="233"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11924">%TRUE if @group was successfully removed.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="bookmark" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11911">a #GBookmarkFile</doc>
|
|
<type name="BookmarkFile" c:type="GBookmarkFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="uri" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11912">a valid URI</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="group" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11913">the group name to be removed</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="remove_item" c:identifier="g_bookmark_file_remove_item" version="2.12" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11929">Removes the bookmark for @uri from the bookmark file @bookmark.</doc>
|
|
<source-position filename="gbookmarkfile.h" line="243"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11937">%TRUE if the bookmark was removed successfully.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="bookmark" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11931">a #GBookmarkFile</doc>
|
|
<type name="BookmarkFile" c:type="GBookmarkFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="uri" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11932">a valid URI</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_added" c:identifier="g_bookmark_file_set_added" version="2.12">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11942">Sets the time the bookmark for @uri was added into @bookmark.
|
|
|
|
If no bookmark for @uri is found then it is created.</doc>
|
|
<source-position filename="gbookmarkfile.h" line="201"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="bookmark" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11944">a #GBookmarkFile</doc>
|
|
<type name="BookmarkFile" c:type="GBookmarkFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="uri" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11945">a valid URI</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="added" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11946">a timestamp or -1 to use the current time</doc>
|
|
<type name="glong" c:type="time_t"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_app_info" c:identifier="g_bookmark_file_set_app_info" version="2.12" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11956">Sets the meta-data of application @name inside the list of
|
|
applications that have registered a bookmark for @uri inside
|
|
@bookmark.
|
|
|
|
You should rarely use this function; use g_bookmark_file_add_application()
|
|
and g_bookmark_file_remove_application() instead.
|
|
|
|
@name can be any UTF-8 encoded string used to identify an
|
|
application.
|
|
@exec can have one of these two modifiers: "\%f", which will
|
|
be expanded as the local file name retrieved from the bookmark's
|
|
URI; "\%u", which will be expanded as the bookmark's URI.
|
|
The expansion is done automatically when retrieving the stored
|
|
command line using the g_bookmark_file_get_app_info() function.
|
|
@count is the number of times the application has registered the
|
|
bookmark; if is < 0, the current registration count will be increased
|
|
by one, if is 0, the application with @name will be removed from
|
|
the list of registered applications.
|
|
@stamp is the Unix time of the last registration; if it is -1, the
|
|
current time will be used.
|
|
|
|
If you try to remove an application by setting its registration count to
|
|
zero, and no bookmark for @uri is found, %FALSE is returned and
|
|
@error is set to #G_BOOKMARK_FILE_ERROR_URI_NOT_FOUND; similarly,
|
|
in the event that no application @name has registered a bookmark
|
|
for @uri, %FALSE is returned and error is set to
|
|
#G_BOOKMARK_FILE_ERROR_APP_NOT_REGISTERED. Otherwise, if no bookmark
|
|
for @uri is found, one is created.</doc>
|
|
<source-position filename="gbookmarkfile.h" line="166"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11995">%TRUE if the application's meta-data was successfully
|
|
changed.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="bookmark" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11958">a #GBookmarkFile</doc>
|
|
<type name="BookmarkFile" c:type="GBookmarkFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="uri" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11959">a valid URI</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11960">an application's name</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="exec" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11961">an application's command line</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="count" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11962">the number of registrations done for this application</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="stamp" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11963">the time of the last registration for this application</doc>
|
|
<type name="glong" c:type="time_t"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_description" c:identifier="g_bookmark_file_set_description" version="2.12">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12001">Sets @description as the description of the bookmark for @uri.
|
|
|
|
If @uri is %NULL, the description of @bookmark is set.
|
|
|
|
If a bookmark for @uri cannot be found then it is created.</doc>
|
|
<source-position filename="gbookmarkfile.h" line="116"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="bookmark" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12003">a #GBookmarkFile</doc>
|
|
<type name="BookmarkFile" c:type="GBookmarkFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="uri" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12004">a valid URI or %NULL</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="description" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12005">a string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_groups" c:identifier="g_bookmark_file_set_groups" version="2.12">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12017">Sets a list of group names for the item with URI @uri. Each previously
|
|
set group name list is removed.
|
|
|
|
If @uri cannot be found then an item for it is created.</doc>
|
|
<source-position filename="gbookmarkfile.h" line="132"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="bookmark" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12019">a #GBookmarkFile</doc>
|
|
<type name="BookmarkFile" c:type="GBookmarkFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="uri" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12020">an item's URI</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="groups" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12021">an array of
|
|
group names, or %NULL to remove all groups</doc>
|
|
<array length="2" zero-terminated="0" c:type="const gchar**">
|
|
<type name="utf8"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="length" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12023">number of group name values in @groups</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_icon" c:identifier="g_bookmark_file_set_icon" version="2.12">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12034">Sets the icon for the bookmark for @uri. If @href is %NULL, unsets
|
|
the currently set icon. @href can either be a full URL for the icon
|
|
file or the icon name following the Icon Naming specification.
|
|
|
|
If no bookmark for @uri is found one is created.</doc>
|
|
<source-position filename="gbookmarkfile.h" line="190"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="bookmark" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12036">a #GBookmarkFile</doc>
|
|
<type name="BookmarkFile" c:type="GBookmarkFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="uri" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12037">a valid URI</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="href" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12038">the URI of the icon for the bookmark, or %NULL</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="mime_type" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12039">the MIME type of the icon for the bookmark</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_is_private" c:identifier="g_bookmark_file_set_is_private" version="2.12">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12051">Sets the private flag of the bookmark for @uri.
|
|
|
|
If a bookmark for @uri cannot be found then it is created.</doc>
|
|
<source-position filename="gbookmarkfile.h" line="182"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="bookmark" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12053">a #GBookmarkFile</doc>
|
|
<type name="BookmarkFile" c:type="GBookmarkFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="uri" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12054">a valid URI</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="is_private" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12055">%TRUE if the bookmark should be marked as private</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_mime_type" c:identifier="g_bookmark_file_set_mime_type" version="2.12">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12065">Sets @mime_type as the MIME type of the bookmark for @uri.
|
|
|
|
If a bookmark for @uri cannot be found then it is created.</doc>
|
|
<source-position filename="gbookmarkfile.h" line="124"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="bookmark" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12067">a #GBookmarkFile</doc>
|
|
<type name="BookmarkFile" c:type="GBookmarkFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="uri" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12068">a valid URI</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="mime_type" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12069">a MIME type</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_modified" c:identifier="g_bookmark_file_set_modified" version="2.12">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12079">Sets the last time the bookmark for @uri was last modified.
|
|
|
|
If no bookmark for @uri is found then it is created.
|
|
|
|
The "modified" time should only be set when the bookmark's meta-data
|
|
was actually changed. Every function of #GBookmarkFile that
|
|
modifies a bookmark also changes the modification time, except for
|
|
g_bookmark_file_set_visited().</doc>
|
|
<source-position filename="gbookmarkfile.h" line="209"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="bookmark" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12081">a #GBookmarkFile</doc>
|
|
<type name="BookmarkFile" c:type="GBookmarkFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="uri" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12082">a valid URI</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="modified" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12083">a timestamp or -1 to use the current time</doc>
|
|
<type name="glong" c:type="time_t"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_title" c:identifier="g_bookmark_file_set_title" version="2.12">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12098">Sets @title as the title of the bookmark for @uri inside the
|
|
bookmark file @bookmark.
|
|
|
|
If @uri is %NULL, the title of @bookmark is set.
|
|
|
|
If a bookmark for @uri cannot be found then it is created.</doc>
|
|
<source-position filename="gbookmarkfile.h" line="108"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="bookmark" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12100">a #GBookmarkFile</doc>
|
|
<type name="BookmarkFile" c:type="GBookmarkFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="uri" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12101">a valid URI or %NULL</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="title" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12102">a UTF-8 encoded string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_visited" c:identifier="g_bookmark_file_set_visited" version="2.12">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12115">Sets the time the bookmark for @uri was last visited.
|
|
|
|
If no bookmark for @uri is found then it is created.
|
|
|
|
The "visited" time should only be set if the bookmark was launched,
|
|
either using the command line retrieved by g_bookmark_file_get_app_info()
|
|
or by the default application for the bookmark's MIME type, retrieved
|
|
using g_bookmark_file_get_mime_type(). Changing the "visited" time
|
|
does not affect the "modified" time.</doc>
|
|
<source-position filename="gbookmarkfile.h" line="217"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="bookmark" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12117">a #GBookmarkFile</doc>
|
|
<type name="BookmarkFile" c:type="GBookmarkFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="uri" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12118">a valid URI</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="visited" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12119">a timestamp or -1 to use the current time</doc>
|
|
<type name="glong" c:type="time_t"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="to_data" c:identifier="g_bookmark_file_to_data" version="2.12" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12135">This function outputs @bookmark as a string.</doc>
|
|
<source-position filename="gbookmarkfile.h" line="99"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12143">
|
|
a newly allocated string holding the contents of the #GBookmarkFile</doc>
|
|
<array length="0" zero-terminated="0" c:type="gchar*">
|
|
<type name="guint8"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="bookmark" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12137">a #GBookmarkFile</doc>
|
|
<type name="BookmarkFile" c:type="GBookmarkFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="length" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12138">return location for the length of the returned string, or %NULL</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="to_file" c:identifier="g_bookmark_file_to_file" version="2.12" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12149">This function outputs @bookmark into a file. The write process is
|
|
guaranteed to be atomic by using g_file_set_contents() internally.</doc>
|
|
<source-position filename="gbookmarkfile.h" line="103"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12158">%TRUE if the file was successfully written.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="bookmark" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12151">a #GBookmarkFile</doc>
|
|
<type name="BookmarkFile" c:type="GBookmarkFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="filename" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12152">path of the output file</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<function name="error_quark" c:identifier="g_bookmark_file_error_quark">
|
|
<return-value transfer-ownership="none">
|
|
<type name="Quark" c:type="GQuark"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="new" c:identifier="g_bookmark_file_new" version="2.12" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11874">Creates a new empty #GBookmarkFile object.
|
|
|
|
Use g_bookmark_file_load_from_file(), g_bookmark_file_load_from_data()
|
|
or g_bookmark_file_load_from_data_dirs() to read an existing bookmark
|
|
file.</doc>
|
|
<source-position filename="gbookmarkfile.h" line="80"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11883">an empty #GBookmarkFile</doc>
|
|
<type name="BookmarkFile" c:type="GBookmarkFile*"/>
|
|
</return-value>
|
|
</function>
|
|
</record>
|
|
<enumeration name="BookmarkFileError" c:type="GBookmarkFileError" glib:error-domain="g-bookmark-file-error-quark">
|
|
<doc xml:space="preserve" filename="gbookmarkfile.h" line="41">Error codes returned by bookmark file parsing.</doc>
|
|
<source-position filename="gbookmarkfile.h" line="66"/>
|
|
<member name="invalid_uri" value="0" c:identifier="G_BOOKMARK_FILE_ERROR_INVALID_URI">
|
|
<doc xml:space="preserve" filename="gbookmarkfile.h" line="43">URI was ill-formed</doc>
|
|
</member>
|
|
<member name="invalid_value" value="1" c:identifier="G_BOOKMARK_FILE_ERROR_INVALID_VALUE">
|
|
<doc xml:space="preserve" filename="gbookmarkfile.h" line="44">a requested field was not found</doc>
|
|
</member>
|
|
<member name="app_not_registered" value="2" c:identifier="G_BOOKMARK_FILE_ERROR_APP_NOT_REGISTERED">
|
|
<doc xml:space="preserve" filename="gbookmarkfile.h" line="45">a requested application did
|
|
not register a bookmark</doc>
|
|
</member>
|
|
<member name="uri_not_found" value="3" c:identifier="G_BOOKMARK_FILE_ERROR_URI_NOT_FOUND">
|
|
<doc xml:space="preserve" filename="gbookmarkfile.h" line="47">a requested URI was not found</doc>
|
|
</member>
|
|
<member name="read" value="4" c:identifier="G_BOOKMARK_FILE_ERROR_READ">
|
|
<doc xml:space="preserve" filename="gbookmarkfile.h" line="48">document was ill formed</doc>
|
|
</member>
|
|
<member name="unknown_encoding" value="5" c:identifier="G_BOOKMARK_FILE_ERROR_UNKNOWN_ENCODING">
|
|
<doc xml:space="preserve" filename="gbookmarkfile.h" line="49">the text being parsed was
|
|
in an unknown encoding</doc>
|
|
</member>
|
|
<member name="write" value="6" c:identifier="G_BOOKMARK_FILE_ERROR_WRITE">
|
|
<doc xml:space="preserve" filename="gbookmarkfile.h" line="51">an error occurred while writing</doc>
|
|
</member>
|
|
<member name="file_not_found" value="7" c:identifier="G_BOOKMARK_FILE_ERROR_FILE_NOT_FOUND">
|
|
<doc xml:space="preserve" filename="gbookmarkfile.h" line="52">requested file was not found</doc>
|
|
</member>
|
|
</enumeration>
|
|
<record name="ByteArray" c:type="GByteArray" glib:type-name="GByteArray" glib:get-type="g_byte_array_get_type" c:symbol-prefix="byte_array">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="88">Contains the public fields of a GByteArray.</doc>
|
|
<source-position filename="garray.h" line="51"/>
|
|
<field name="data" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="90">a pointer to the element data. The data may be moved as
|
|
elements are added to the #GByteArray</doc>
|
|
<type name="guint8" c:type="guint8*"/>
|
|
</field>
|
|
<field name="len" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="92">the number of elements in the #GByteArray</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<function name="append" c:identifier="g_byte_array_append" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12272">Adds the given bytes to the end of the #GByteArray.
|
|
The array will grow in size automatically if necessary.</doc>
|
|
<source-position filename="garray.h" line="242"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12281">the #GByteArray</doc>
|
|
<array name="GLib.ByteArray" c:type="GByteArray*">
|
|
<type name="guint8" c:type="guint8"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="array" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12274">a #GByteArray</doc>
|
|
<array name="GLib.ByteArray" c:type="GByteArray*">
|
|
<type name="guint8" c:type="guint8"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12275">the byte data to be added</doc>
|
|
<type name="guint8" c:type="const guint8*"/>
|
|
</parameter>
|
|
<parameter name="len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12276">the number of bytes to add</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="free" c:identifier="g_byte_array_free">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12285">Frees the memory allocated by the #GByteArray. If @free_segment is
|
|
%TRUE it frees the actual byte data. If the reference count of
|
|
@array is greater than one, the #GByteArray wrapper is preserved but
|
|
the size of @array will be set to zero.</doc>
|
|
<source-position filename="garray.h" line="233"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12295">the element data if @free_segment is %FALSE, otherwise
|
|
%NULL. The element data should be freed using g_free().</doc>
|
|
<type name="guint8" c:type="guint8*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="array" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12287">a #GByteArray</doc>
|
|
<array name="GLib.ByteArray" c:type="GByteArray*">
|
|
<type name="guint8" c:type="guint8"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="free_segment" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12288">if %TRUE the actual byte data is freed as well</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="free_to_bytes" c:identifier="g_byte_array_free_to_bytes" version="2.32">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12300">Transfers the data from the #GByteArray into a new immutable #GBytes.
|
|
|
|
The #GByteArray is freed unless the reference count of @array is greater
|
|
than one, the #GByteArray wrapper is preserved but the size of @array
|
|
will be set to zero.
|
|
|
|
This is identical to using g_bytes_new_take() and g_byte_array_free()
|
|
together.</doc>
|
|
<source-position filename="garray.h" line="236"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12314">a new immutable #GBytes representing same
|
|
byte data that was in the array</doc>
|
|
<type name="Bytes" c:type="GBytes*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="array" transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12302">a #GByteArray</doc>
|
|
<array name="GLib.ByteArray" c:type="GByteArray*">
|
|
<type name="guint8" c:type="guint8"/>
|
|
</array>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="new" c:identifier="g_byte_array_new">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12319">Creates a new #GByteArray with a reference count of 1.</doc>
|
|
<source-position filename="garray.h" line="226"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12324">the new #GByteArray</doc>
|
|
<array name="GLib.ByteArray" c:type="GByteArray*">
|
|
<type name="guint8" c:type="guint8"/>
|
|
</array>
|
|
</return-value>
|
|
</function>
|
|
<function name="new_take" c:identifier="g_byte_array_new_take" version="2.32">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12328">Create byte array containing the data. The data will be owned by the array
|
|
and will be freed with g_free(), i.e. it could be allocated using g_strdup().</doc>
|
|
<source-position filename="garray.h" line="228"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12337">a new #GByteArray</doc>
|
|
<array name="GLib.ByteArray" c:type="GByteArray*">
|
|
<type name="guint8" c:type="guint8"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="data" transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12330">byte data for the array</doc>
|
|
<array length="1" zero-terminated="0" c:type="guint8*">
|
|
<type name="guint8" c:type="guint8"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12331">length of @data</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="prepend" c:identifier="g_byte_array_prepend" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12341">Adds the given data to the start of the #GByteArray.
|
|
The array will grow in size automatically if necessary.</doc>
|
|
<source-position filename="garray.h" line="246"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12350">the #GByteArray</doc>
|
|
<array name="GLib.ByteArray" c:type="GByteArray*">
|
|
<type name="guint8" c:type="guint8"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="array" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12343">a #GByteArray</doc>
|
|
<array name="GLib.ByteArray" c:type="GByteArray*">
|
|
<type name="guint8" c:type="guint8"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12344">the byte data to be added</doc>
|
|
<type name="guint8" c:type="const guint8*"/>
|
|
</parameter>
|
|
<parameter name="len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12345">the number of bytes to add</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="ref" c:identifier="g_byte_array_ref" version="2.22" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12354">Atomically increments the reference count of @array by one.
|
|
This function is thread-safe and may be called from any thread.</doc>
|
|
<source-position filename="garray.h" line="238"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12361">The passed in #GByteArray</doc>
|
|
<array name="GLib.ByteArray" c:type="GByteArray*">
|
|
<type name="guint8" c:type="guint8"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="array" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12356">A #GByteArray</doc>
|
|
<array name="GLib.ByteArray" c:type="GByteArray*">
|
|
<type name="guint8" c:type="guint8"/>
|
|
</array>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="remove_index" c:identifier="g_byte_array_remove_index" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12366">Removes the byte at the given index from a #GByteArray.
|
|
The following bytes are moved down one place.</doc>
|
|
<source-position filename="garray.h" line="253"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12374">the #GByteArray</doc>
|
|
<array name="GLib.ByteArray" c:type="GByteArray*">
|
|
<type name="guint8" c:type="guint8"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="array" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12368">a #GByteArray</doc>
|
|
<array name="GLib.ByteArray" c:type="GByteArray*">
|
|
<type name="guint8" c:type="guint8"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="index_" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12369">the index of the byte to remove</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="remove_index_fast" c:identifier="g_byte_array_remove_index_fast" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12378">Removes the byte at the given index from a #GByteArray. The last
|
|
element in the array is used to fill in the space, so this function
|
|
does not preserve the order of the #GByteArray. But it is faster
|
|
than g_byte_array_remove_index().</doc>
|
|
<source-position filename="garray.h" line="256"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12388">the #GByteArray</doc>
|
|
<array name="GLib.ByteArray" c:type="GByteArray*">
|
|
<type name="guint8" c:type="guint8"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="array" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12380">a #GByteArray</doc>
|
|
<array name="GLib.ByteArray" c:type="GByteArray*">
|
|
<type name="guint8" c:type="guint8"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="index_" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12381">the index of the byte to remove</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="remove_range" c:identifier="g_byte_array_remove_range" version="2.4" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12392">Removes the given number of bytes starting at the given index from a
|
|
#GByteArray. The following elements are moved to close the gap.</doc>
|
|
<source-position filename="garray.h" line="259"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12401">the #GByteArray</doc>
|
|
<array name="GLib.ByteArray" c:type="GByteArray*">
|
|
<type name="guint8" c:type="guint8"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="array" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12394">a @GByteArray</doc>
|
|
<array name="GLib.ByteArray" c:type="GByteArray*">
|
|
<type name="guint8" c:type="guint8"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="index_" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12395">the index of the first byte to remove</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
<parameter name="length" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12396">the number of bytes to remove</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="set_size" c:identifier="g_byte_array_set_size" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12406">Sets the size of the #GByteArray, expanding it if necessary.</doc>
|
|
<source-position filename="garray.h" line="250"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12413">the #GByteArray</doc>
|
|
<array name="GLib.ByteArray" c:type="GByteArray*">
|
|
<type name="guint8" c:type="guint8"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="array" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12408">a #GByteArray</doc>
|
|
<array name="GLib.ByteArray" c:type="GByteArray*">
|
|
<type name="guint8" c:type="guint8"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="length" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12409">the new size of the #GByteArray</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="sized_new" c:identifier="g_byte_array_sized_new" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12417">Creates a new #GByteArray with @reserved_size bytes preallocated.
|
|
This avoids frequent reallocation, if you are going to add many
|
|
bytes to the array. Note however that the size of the array is still
|
|
0.</doc>
|
|
<source-position filename="garray.h" line="231"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12426">the new #GByteArray</doc>
|
|
<array name="GLib.ByteArray" c:type="GByteArray*">
|
|
<type name="guint8" c:type="guint8"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="reserved_size" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12419">number of bytes preallocated</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="sort" c:identifier="g_byte_array_sort" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12430">Sorts a byte array, using @compare_func which should be a
|
|
qsort()-style comparison function (returns less than zero for first
|
|
arg is less than second arg, zero for equal, greater than zero if
|
|
first arg is greater than second arg).
|
|
|
|
If two array elements compare equal, their order in the sorted array
|
|
is undefined. If you want equal elements to keep their order (i.e.
|
|
you want a stable sort) you can write a comparison function that,
|
|
if two elements would otherwise compare equal, compares them by
|
|
their addresses.</doc>
|
|
<source-position filename="garray.h" line="263"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="array" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12432">a #GByteArray</doc>
|
|
<array name="GLib.ByteArray" c:type="GByteArray*">
|
|
<type name="guint8" c:type="guint8"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="compare_func" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12433">comparison function</doc>
|
|
<type name="CompareFunc" c:type="GCompareFunc"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="sort_with_data" c:identifier="g_byte_array_sort_with_data" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12448">Like g_byte_array_sort(), but the comparison function takes an extra
|
|
user data argument.</doc>
|
|
<source-position filename="garray.h" line="266"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="array" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12450">a #GByteArray</doc>
|
|
<array name="GLib.ByteArray" c:type="GByteArray*">
|
|
<type name="guint8" c:type="guint8"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="compare_func" transfer-ownership="none" closure="2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12451">comparison function</doc>
|
|
<type name="CompareDataFunc" c:type="GCompareDataFunc"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12452">data to pass to @compare_func</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="unref" c:identifier="g_byte_array_unref" version="2.22">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12459">Atomically decrements the reference count of @array by one. If the
|
|
reference count drops to 0, all memory allocated by the array is
|
|
released. This function is thread-safe and may be called from any
|
|
thread.</doc>
|
|
<source-position filename="garray.h" line="240"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="array" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12461">A #GByteArray</doc>
|
|
<array name="GLib.ByteArray" c:type="GByteArray*">
|
|
<type name="guint8" c:type="guint8"/>
|
|
</array>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
</record>
|
|
<record name="Bytes" c:type="GBytes" version="2.32" glib:type-name="GBytes" glib:get-type="g_bytes_get_type" c:symbol-prefix="bytes">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="98">A simple refcounted data type representing an immutable sequence of zero or
|
|
more bytes from an unspecified origin.
|
|
|
|
The purpose of a #GBytes is to keep the memory region that it holds
|
|
alive for as long as anyone holds a reference to the bytes. When
|
|
the last reference count is dropped, the memory is released. Multiple
|
|
unrelated callers can use byte data in the #GBytes without coordinating
|
|
their activities, resting assured that the byte data will not change or
|
|
move while they hold a reference.
|
|
|
|
A #GBytes can come from many different origins that may have
|
|
different procedures for freeing the memory region. Examples are
|
|
memory from g_malloc(), from memory slices, from a #GMappedFile or
|
|
memory from other allocators.
|
|
|
|
#GBytes work well as keys in #GHashTable. Use g_bytes_equal() and
|
|
g_bytes_hash() as parameters to g_hash_table_new() or g_hash_table_new_full().
|
|
#GBytes can also be used as keys in a #GTree by passing the g_bytes_compare()
|
|
function to g_tree_new().
|
|
|
|
The data pointed to by this bytes must not be modified. For a mutable
|
|
array of bytes see #GByteArray. Use g_bytes_unref_to_array() to create a
|
|
mutable array for a #GBytes sequence. To create an immutable #GBytes from
|
|
a mutable #GByteArray, use the g_byte_array_free_to_bytes() function.</doc>
|
|
<source-position filename="garray.h" line="36"/>
|
|
<constructor name="new" c:identifier="g_bytes_new" version="2.32">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12556">Creates a new #GBytes from @data.
|
|
|
|
@data is copied. If @size is 0, @data may be %NULL.</doc>
|
|
<source-position filename="gbytes.h" line="35"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12566">a new #GBytes</doc>
|
|
<type name="Bytes" c:type="GBytes*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12558">
|
|
the data to be used for the bytes</doc>
|
|
<array length="1" zero-terminated="0" c:type="gconstpointer">
|
|
<type name="guint8"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="size" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12560">the size of @data</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="new_static" c:identifier="g_bytes_new_static" version="2.32" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12594">Creates a new #GBytes from static data.
|
|
|
|
@data must be static (ie: never modified or freed). It may be %NULL if @size
|
|
is 0.</doc>
|
|
<source-position filename="gbytes.h" line="43"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12605">a new #GBytes</doc>
|
|
<type name="Bytes" c:type="GBytes*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="data" transfer-ownership="full" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12596">
|
|
the data to be used for the bytes</doc>
|
|
<array length="1" zero-terminated="0" c:type="gconstpointer">
|
|
<type name="guint8"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="size" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12598">the size of @data</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="new_take" c:identifier="g_bytes_new_take" version="2.32">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12610">Creates a new #GBytes from @data.
|
|
|
|
After this call, @data belongs to the bytes and may no longer be
|
|
modified by the caller. g_free() will be called on @data when the
|
|
bytes is no longer in use. Because of this @data must have been created by
|
|
a call to g_malloc(), g_malloc0() or g_realloc() or by one of the many
|
|
functions that wrap these calls (such as g_new(), g_strdup(), etc).
|
|
|
|
For creating #GBytes with memory from other allocators, see
|
|
g_bytes_new_with_free_func().
|
|
|
|
@data may be %NULL if @size is 0.</doc>
|
|
<source-position filename="gbytes.h" line="39"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12629">a new #GBytes</doc>
|
|
<type name="Bytes" c:type="GBytes*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="data" transfer-ownership="full" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12612">
|
|
the data to be used for the bytes</doc>
|
|
<array length="1" zero-terminated="0" c:type="gpointer">
|
|
<type name="guint8"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="size" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12614">the size of @data</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="new_with_free_func" c:identifier="g_bytes_new_with_free_func" version="2.32" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12634">Creates a #GBytes from @data.
|
|
|
|
When the last reference is dropped, @free_func will be called with the
|
|
@user_data argument.
|
|
|
|
@data must not be modified after this call is made until @free_func has
|
|
been called to indicate that the bytes is no longer in use.
|
|
|
|
@data may be %NULL if @size is 0.</doc>
|
|
<source-position filename="gbytes.h" line="47"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12652">a new #GBytes</doc>
|
|
<type name="Bytes" c:type="GBytes*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12636">
|
|
the data to be used for the bytes</doc>
|
|
<array length="1" zero-terminated="0" c:type="gconstpointer">
|
|
<type name="guint8"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="size" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12638">the size of @data</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
<parameter name="free_func" transfer-ownership="none" scope="async">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12639">the function to call to release the data</doc>
|
|
<type name="DestroyNotify" c:type="GDestroyNotify"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12640">data to pass to @free_func</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<method name="compare" c:identifier="g_bytes_compare" version="2.32">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12472">Compares the two #GBytes values.
|
|
|
|
This function can be used to sort GBytes instances in lexicographical order.
|
|
|
|
If @bytes1 and @bytes2 have different length but the shorter one is a
|
|
prefix of the longer one then the shorter one is considered to be less than
|
|
the longer one. Otherwise the first byte where both differ is used for
|
|
comparison. If @bytes1 has a smaller value at that position it is
|
|
considered less, otherwise greater than @bytes2.</doc>
|
|
<source-position filename="gbytes.h" line="85"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12487">a negative value if @bytes1 is less than @bytes2, a positive value
|
|
if @bytes1 is greater than @bytes2, and zero if @bytes1 is equal to
|
|
@bytes2</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="bytes1" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12474">a pointer to a #GBytes</doc>
|
|
<type name="Bytes" c:type="gconstpointer"/>
|
|
</instance-parameter>
|
|
<parameter name="bytes2" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12475">a pointer to a #GBytes to compare with @bytes1</doc>
|
|
<type name="Bytes" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="equal" c:identifier="g_bytes_equal" version="2.32">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12494">Compares the two #GBytes values being pointed to and returns
|
|
%TRUE if they are equal.
|
|
|
|
This function can be passed to g_hash_table_new() as the @key_equal_func
|
|
parameter, when using non-%NULL #GBytes pointers as keys in a #GHashTable.</doc>
|
|
<source-position filename="gbytes.h" line="81"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12505">%TRUE if the two keys match.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="bytes1" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12496">a pointer to a #GBytes</doc>
|
|
<type name="Bytes" c:type="gconstpointer"/>
|
|
</instance-parameter>
|
|
<parameter name="bytes2" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12497">a pointer to a #GBytes to compare with @bytes1</doc>
|
|
<type name="Bytes" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_data" c:identifier="g_bytes_get_data" version="2.32">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12510">Get the byte data in the #GBytes. This data should not be modified.
|
|
|
|
This function will always return the same pointer for a given #GBytes.
|
|
|
|
%NULL may be returned if @size is 0. This is not guaranteed, as the #GBytes
|
|
may represent an empty string with @data non-%NULL and @size as 0. %NULL will
|
|
not be returned if @size is non-zero.</doc>
|
|
<source-position filename="gbytes.h" line="58"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12523">
|
|
a pointer to the byte data, or %NULL</doc>
|
|
<array length="0" zero-terminated="0" c:type="gconstpointer">
|
|
<type name="guint8"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="bytes" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12512">a #GBytes</doc>
|
|
<type name="Bytes" c:type="GBytes*"/>
|
|
</instance-parameter>
|
|
<parameter name="size" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12513">location to return size of byte data</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_size" c:identifier="g_bytes_get_size" version="2.32">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12529">Get the size of the byte data in the #GBytes.
|
|
|
|
This function will always return the same value for a given #GBytes.</doc>
|
|
<source-position filename="gbytes.h" line="62"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12537">the size</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="bytes" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12531">a #GBytes</doc>
|
|
<type name="Bytes" c:type="GBytes*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="hash" c:identifier="g_bytes_hash" version="2.32">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12542">Creates an integer hash code for the byte data in the #GBytes.
|
|
|
|
This function can be passed to g_hash_table_new() as the @key_hash_func
|
|
parameter, when using non-%NULL #GBytes pointers as keys in a #GHashTable.</doc>
|
|
<source-position filename="gbytes.h" line="78"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12551">a hash value corresponding to the key.</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="bytes" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12544">a pointer to a #GBytes key</doc>
|
|
<type name="Bytes" c:type="gconstpointer"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="new_from_bytes" c:identifier="g_bytes_new_from_bytes" version="2.32">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12571">Creates a #GBytes which is a subsection of another #GBytes. The @offset +
|
|
@length may not be longer than the size of @bytes.
|
|
|
|
A reference to @bytes will be held by the newly created #GBytes until
|
|
the byte data is no longer needed.
|
|
|
|
Since 2.56, if @offset is 0 and @length matches the size of @bytes, then
|
|
@bytes will be returned with the reference count incremented by 1. If @bytes
|
|
is a slice of another #GBytes, then the resulting #GBytes will reference
|
|
the same #GBytes instead of @bytes. This allows consumers to simplify the
|
|
usage of #GBytes when asynchronously writing to streams.</doc>
|
|
<source-position filename="gbytes.h" line="53"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12589">a new #GBytes</doc>
|
|
<type name="Bytes" c:type="GBytes*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="bytes" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12573">a #GBytes</doc>
|
|
<type name="Bytes" c:type="GBytes*"/>
|
|
</instance-parameter>
|
|
<parameter name="offset" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12574">offset which subsection starts at</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
<parameter name="length" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12575">length of subsection</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="ref" c:identifier="g_bytes_ref" version="2.32">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12657">Increase the reference count on @bytes.</doc>
|
|
<source-position filename="gbytes.h" line="65"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12663">the #GBytes</doc>
|
|
<type name="Bytes" c:type="GBytes*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="bytes" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12659">a #GBytes</doc>
|
|
<type name="Bytes" c:type="GBytes*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="unref" c:identifier="g_bytes_unref" version="2.32">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12668">Releases a reference on @bytes. This may result in the bytes being
|
|
freed. If @bytes is %NULL, it will return immediately.</doc>
|
|
<source-position filename="gbytes.h" line="68"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="bytes" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12670">a #GBytes</doc>
|
|
<type name="Bytes" c:type="GBytes*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="unref_to_array" c:identifier="g_bytes_unref_to_array" version="2.32">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12679">Unreferences the bytes, and returns a new mutable #GByteArray containing
|
|
the same byte data.
|
|
|
|
As an optimization, the byte data is transferred to the array without copying
|
|
if this was the last reference to bytes and bytes was created with
|
|
g_bytes_new(), g_bytes_new_take() or g_byte_array_free_to_bytes(). In all
|
|
other cases the data is copied.</doc>
|
|
<source-position filename="gbytes.h" line="75"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12691">a new mutable #GByteArray containing the same byte data</doc>
|
|
<array name="GLib.ByteArray" c:type="GByteArray*">
|
|
<type name="guint8" c:type="guint8"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="bytes" transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12681">a #GBytes</doc>
|
|
<type name="Bytes" c:type="GBytes*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="unref_to_data" c:identifier="g_bytes_unref_to_data" version="2.32">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12696">Unreferences the bytes, and returns a pointer the same byte data
|
|
contents.
|
|
|
|
As an optimization, the byte data is returned without copying if this was
|
|
the last reference to bytes and bytes was created with g_bytes_new(),
|
|
g_bytes_new_take() or g_byte_array_free_to_bytes(). In all other cases the
|
|
data is copied.</doc>
|
|
<source-position filename="gbytes.h" line="71"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12709">a pointer to the same byte data, which should be
|
|
freed with g_free()</doc>
|
|
<array length="0" zero-terminated="0" c:type="gpointer">
|
|
<type name="guint8"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="bytes" transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12698">a #GBytes</doc>
|
|
<type name="Bytes" c:type="GBytes*"/>
|
|
</instance-parameter>
|
|
<parameter name="size" direction="out" caller-allocates="0" transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12699">location to place the length of the returned data</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
</record>
|
|
<function-macro name="CHECK_VERSION" c:identifier="GLIB_CHECK_VERSION" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1110">Checks the version of the GLib library that is being compiled
|
|
against. See glib_check_version() for a runtime check.</doc>
|
|
<source-position filename="gversion.h" line="47"/>
|
|
<parameters>
|
|
<parameter name="major">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1112">the major version to check for</doc>
|
|
</parameter>
|
|
<parameter name="minor">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1113">the minor version to check for</doc>
|
|
</parameter>
|
|
<parameter name="micro">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1114">the micro version to check for</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<constant name="CSET_A_2_Z" value="ABCDEFGHIJKLMNOPQRSTUVWXYZ" c:type="G_CSET_A_2_Z">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2797">The set of uppercase ASCII alphabet characters.
|
|
Used for specifying valid identifier characters
|
|
in #GScannerConfig.</doc>
|
|
<source-position filename="gscanner.h" line="49"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<constant name="CSET_DIGITS" value="0123456789" c:type="G_CSET_DIGITS">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2806">The set of ASCII digits.
|
|
Used for specifying valid identifier characters
|
|
in #GScannerConfig.</doc>
|
|
<source-position filename="gscanner.h" line="51"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<constant name="CSET_a_2_z" value="abcdefghijklmnopqrstuvwxyz" c:type="G_CSET_a_2_z">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2835">The set of lowercase ASCII alphabet characters.
|
|
Used for specifying valid identifier characters
|
|
in #GScannerConfig.</doc>
|
|
<source-position filename="gscanner.h" line="50"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<record name="Checksum" c:type="GChecksum" version="2.16" glib:type-name="GChecksum" glib:get-type="g_checksum_get_type" c:symbol-prefix="checksum">
|
|
<doc xml:space="preserve" filename="gchecksum.h" line="55">An opaque structure representing a checksumming operation.
|
|
To create a new GChecksum, use g_checksum_new(). To free
|
|
a GChecksum, use g_checksum_free().</doc>
|
|
<source-position filename="gchecksum.h" line="64"/>
|
|
<constructor name="new" c:identifier="g_checksum_new" version="2.16">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12816">Creates a new #GChecksum, using the checksum algorithm @checksum_type.
|
|
If the @checksum_type is not known, %NULL is returned.
|
|
A #GChecksum can be used to compute the checksum, or digest, of an
|
|
arbitrary binary blob, using different hashing algorithms.
|
|
|
|
A #GChecksum works by feeding a binary blob through g_checksum_update()
|
|
until there is data to be checked; the digest can then be extracted
|
|
using g_checksum_get_string(), which will return the checksum as a
|
|
hexadecimal string; or g_checksum_get_digest(), which will return a
|
|
vector of raw bytes. Once either g_checksum_get_string() or
|
|
g_checksum_get_digest() have been called on a #GChecksum, the checksum
|
|
will be closed and it won't be possible to call g_checksum_update()
|
|
on it anymore.</doc>
|
|
<source-position filename="gchecksum.h" line="70"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12834">the newly created #GChecksum, or %NULL.
|
|
Use g_checksum_free() to free the memory allocated by it.</doc>
|
|
<type name="Checksum" c:type="GChecksum*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="checksum_type" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12818">the desired type of checksum</doc>
|
|
<type name="ChecksumType" c:type="GChecksumType"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<method name="copy" c:identifier="g_checksum_copy" version="2.16">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12757">Copies a #GChecksum. If @checksum has been closed, by calling
|
|
g_checksum_get_string() or g_checksum_get_digest(), the copied
|
|
checksum will be closed as well.</doc>
|
|
<source-position filename="gchecksum.h" line="74"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12765">the copy of the passed #GChecksum. Use g_checksum_free()
|
|
when finished using it.</doc>
|
|
<type name="Checksum" c:type="GChecksum*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="checksum" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12759">the #GChecksum to copy</doc>
|
|
<type name="Checksum" c:type="const GChecksum*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="free" c:identifier="g_checksum_free" version="2.16">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12771">Frees the memory allocated for @checksum.</doc>
|
|
<source-position filename="gchecksum.h" line="76"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="checksum" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12773">a #GChecksum</doc>
|
|
<type name="Checksum" c:type="GChecksum*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_digest" c:identifier="g_checksum_get_digest" version="2.16" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12781">Gets the digest from @checksum as a raw binary vector and places it
|
|
into @buffer. The size of the digest depends on the type of checksum.
|
|
|
|
Once this function has been called, the #GChecksum is closed and can
|
|
no longer be updated with g_checksum_update().</doc>
|
|
<source-position filename="gchecksum.h" line="84"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="checksum" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12783">a #GChecksum</doc>
|
|
<type name="Checksum" c:type="GChecksum*"/>
|
|
</instance-parameter>
|
|
<parameter name="buffer" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12784">output buffer</doc>
|
|
<array length="1" zero-terminated="0" c:type="guint8*">
|
|
<type name="guint8" c:type="guint8"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="digest_len" direction="inout" caller-allocates="0" transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12785">an inout parameter. The caller initializes it to the size of @buffer.
|
|
After the call it contains the length of the digest.</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_string" c:identifier="g_checksum_get_string" version="2.16">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12798">Gets the digest as an hexadecimal string.
|
|
|
|
Once this function has been called the #GChecksum can no longer be
|
|
updated with g_checksum_update().
|
|
|
|
The hexadecimal characters will be lower case.</doc>
|
|
<source-position filename="gchecksum.h" line="82"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12809">the hexadecimal representation of the checksum. The
|
|
returned string is owned by the checksum and should not be modified
|
|
or freed.</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="checksum" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12800">a #GChecksum</doc>
|
|
<type name="Checksum" c:type="GChecksum*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="reset" c:identifier="g_checksum_reset" version="2.18">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12840">Resets the state of the @checksum back to its initial state.</doc>
|
|
<source-position filename="gchecksum.h" line="72"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="checksum" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12842">the #GChecksum to reset</doc>
|
|
<type name="Checksum" c:type="GChecksum*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="update" c:identifier="g_checksum_update" version="2.16">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12862">Feeds @data into an existing #GChecksum. The checksum must still be
|
|
open, that is g_checksum_get_string() or g_checksum_get_digest() must
|
|
not have been called on @checksum.</doc>
|
|
<source-position filename="gchecksum.h" line="78"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="checksum" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12864">a #GChecksum</doc>
|
|
<type name="Checksum" c:type="GChecksum*"/>
|
|
</instance-parameter>
|
|
<parameter name="data" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12865">buffer used to compute the checksum</doc>
|
|
<array length="1" zero-terminated="0" c:type="const guchar*">
|
|
<type name="guint8"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="length" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12866">size of the buffer, or -1 if it is a null-terminated string.</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<function name="type_get_length" c:identifier="g_checksum_type_get_length" version="2.16">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12850">Gets the length in bytes of digests of type @checksum_type</doc>
|
|
<source-position filename="gchecksum.h" line="67"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12856">the checksum length, or -1 if @checksum_type is
|
|
not supported.</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="checksum_type" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12852">a #GChecksumType</doc>
|
|
<type name="ChecksumType" c:type="GChecksumType"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
</record>
|
|
<enumeration name="ChecksumType" version="2.16" c:type="GChecksumType">
|
|
<doc xml:space="preserve" filename="gchecksum.h" line="31">The hashing algorithm to be used by #GChecksum when performing the
|
|
digest of some data.
|
|
|
|
Note that the #GChecksumType enumeration may be extended at a later
|
|
date to include new hashing algorithm types.</doc>
|
|
<source-position filename="gchecksum.h" line="53"/>
|
|
<member name="md5" value="0" c:identifier="G_CHECKSUM_MD5">
|
|
<doc xml:space="preserve" filename="gchecksum.h" line="33">Use the MD5 hashing algorithm</doc>
|
|
</member>
|
|
<member name="sha1" value="1" c:identifier="G_CHECKSUM_SHA1">
|
|
<doc xml:space="preserve" filename="gchecksum.h" line="34">Use the SHA-1 hashing algorithm</doc>
|
|
</member>
|
|
<member name="sha256" value="2" c:identifier="G_CHECKSUM_SHA256">
|
|
<doc xml:space="preserve" filename="gchecksum.h" line="35">Use the SHA-256 hashing algorithm</doc>
|
|
</member>
|
|
<member name="sha512" value="3" c:identifier="G_CHECKSUM_SHA512">
|
|
<doc xml:space="preserve" filename="gchecksum.h" line="37">Use the SHA-512 hashing algorithm (Since: 2.36)</doc>
|
|
</member>
|
|
<member name="sha384" value="4" c:identifier="G_CHECKSUM_SHA384">
|
|
<doc xml:space="preserve" filename="gchecksum.h" line="36">Use the SHA-384 hashing algorithm (Since: 2.51)</doc>
|
|
</member>
|
|
</enumeration>
|
|
<callback name="ChildWatchFunc" c:type="GChildWatchFunc">
|
|
<doc xml:space="preserve" filename="gmain.h" line="193">Prototype of a #GChildWatchSource callback, called when a child
|
|
process has exited. To interpret @status, see the documentation
|
|
for g_spawn_check_exit_status().</doc>
|
|
<source-position filename="gmain.h" line="204"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="pid" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="gmain.h" line="195">the process id of the child process</doc>
|
|
<type name="Pid" c:type="GPid"/>
|
|
</parameter>
|
|
<parameter name="status" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="gmain.h" line="196">Status information about the child process, encoded
|
|
in a platform-specific manner</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1" closure="2">
|
|
<doc xml:space="preserve" filename="gmain.h" line="198">user data passed to g_child_watch_add()</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
<callback name="ClearHandleFunc" c:type="GClearHandleFunc" version="2.56">
|
|
<doc xml:space="preserve" filename="gmain.h" line="593">Specifies the type of function passed to g_clear_handle_id().
|
|
The implementation is expected to free the resource identified
|
|
by @handle_id; for instance, if @handle_id is a #GSource ID,
|
|
g_source_remove() can be used.</doc>
|
|
<source-position filename="gmain.h" line="604"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="handle_id" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="gmain.h" line="595">the handle ID to clear</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
<callback name="CompareDataFunc" c:type="GCompareDataFunc">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="130">Specifies the type of a comparison function used to compare two
|
|
values. The function should return a negative integer if the first
|
|
value comes before the second, 0 if they are equal, or a positive
|
|
integer if the first value comes after the second.</doc>
|
|
<source-position filename="gtypes.h" line="108"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="141">negative value if @a < @b; zero if @a = @b; positive
|
|
value if @a > @b</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="a" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="132">a value</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
<parameter name="b" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="133">a value to compare with</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1" closure="2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="134">user data</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
<callback name="CompareFunc" c:type="GCompareFunc">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="146">Specifies the type of a comparison function used to compare two
|
|
values. The function should return a negative integer if the first
|
|
value comes before the second, 0 if they are equal, or a positive
|
|
integer if the first value comes after the second.</doc>
|
|
<source-position filename="gtypes.h" line="106"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="156">negative value if @a < @b; zero if @a = @b; positive
|
|
value if @a > @b</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="a" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="148">a value</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
<parameter name="b" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="149">a value to compare with</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
<record name="Cond" c:type="GCond">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="161">The #GCond struct is an opaque data structure that represents a
|
|
condition. Threads can block on a #GCond if they find a certain
|
|
condition to be false. If other threads change the state of this
|
|
condition they signal the #GCond, and that causes the waiting
|
|
threads to be woken up.
|
|
|
|
Consider the following example of a shared variable. One or more
|
|
threads can wait for data to be published to the variable and when
|
|
another thread publishes the data, it can signal one of the waiting
|
|
threads to wake up to collect the data.
|
|
|
|
Here is an example for using GCond to block a thread until a condition
|
|
is satisfied:
|
|
|[<!-- language="C" -->
|
|
gpointer current_data = NULL;
|
|
GMutex data_mutex;
|
|
GCond data_cond;
|
|
|
|
void
|
|
push_data (gpointer data)
|
|
{
|
|
g_mutex_lock (&data_mutex);
|
|
current_data = data;
|
|
g_cond_signal (&data_cond);
|
|
g_mutex_unlock (&data_mutex);
|
|
}
|
|
|
|
gpointer
|
|
pop_data (void)
|
|
{
|
|
gpointer data;
|
|
|
|
g_mutex_lock (&data_mutex);
|
|
while (!current_data)
|
|
g_cond_wait (&data_cond, &data_mutex);
|
|
data = current_data;
|
|
current_data = NULL;
|
|
g_mutex_unlock (&data_mutex);
|
|
|
|
return data;
|
|
}
|
|
]|
|
|
Whenever a thread calls pop_data() now, it will wait until
|
|
current_data is non-%NULL, i.e. until some other thread
|
|
has called push_data().
|
|
|
|
The example shows that use of a condition variable must always be
|
|
paired with a mutex. Without the use of a mutex, there would be a
|
|
race between the check of @current_data by the while loop in
|
|
pop_data() and waiting. Specifically, another thread could set
|
|
@current_data after the check, and signal the cond (with nobody
|
|
waiting on it) before the first thread goes to sleep. #GCond is
|
|
specifically useful for its ability to release the mutex and go
|
|
to sleep atomically.
|
|
|
|
It is also important to use the g_cond_wait() and g_cond_wait_until()
|
|
functions only inside a loop which checks for the condition to be
|
|
true. See g_cond_wait() for an explanation of why the condition may
|
|
not be true even after it returns.
|
|
|
|
If a #GCond is allocated in static storage then it can be used
|
|
without initialisation. Otherwise, you should call g_cond_init()
|
|
on it and g_cond_clear() when done.
|
|
|
|
A #GCond should only be accessed via the g_cond_ functions.</doc>
|
|
<source-position filename="gthread.h" line="77"/>
|
|
<field name="p" readable="0" private="1">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</field>
|
|
<field name="i" readable="0" private="1">
|
|
<array zero-terminated="0" fixed-size="2">
|
|
<type name="guint" c:type="guint"/>
|
|
</array>
|
|
</field>
|
|
<method name="broadcast" c:identifier="g_cond_broadcast">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13195">If threads are waiting for @cond, all of them are unblocked.
|
|
If no threads are waiting for @cond, this function has no effect.
|
|
It is good practice to lock the same mutex as the waiting threads
|
|
while calling this function, though not required.</doc>
|
|
<source-position filename="gthread.h" line="212"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="cond" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13197">a #GCond</doc>
|
|
<type name="Cond" c:type="GCond*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="clear" c:identifier="g_cond_clear" version="2.32">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13206">Frees the resources allocated to a #GCond with g_cond_init().
|
|
|
|
This function should not be used with a #GCond that has been
|
|
statically allocated.
|
|
|
|
Calling g_cond_clear() for a #GCond on which threads are
|
|
blocking leads to undefined behaviour.</doc>
|
|
<source-position filename="gthread.h" line="205"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="cond" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13208">an initialised #GCond</doc>
|
|
<type name="Cond" c:type="GCond*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="init" c:identifier="g_cond_init" version="2.32">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13222">Initialises a #GCond so that it can be used.
|
|
|
|
This function is useful to initialise a #GCond that has been
|
|
allocated as part of a larger structure. It is not necessary to
|
|
initialise a #GCond that has been statically allocated.
|
|
|
|
To undo the effect of g_cond_init() when a #GCond is no longer
|
|
needed, use g_cond_clear().
|
|
|
|
Calling g_cond_init() on an already-initialised #GCond leads
|
|
to undefined behaviour.</doc>
|
|
<source-position filename="gthread.h" line="203"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="cond" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13224">an uninitialized #GCond</doc>
|
|
<type name="Cond" c:type="GCond*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="signal" c:identifier="g_cond_signal">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13242">If threads are waiting for @cond, at least one of them is unblocked.
|
|
If no threads are waiting for @cond, this function has no effect.
|
|
It is good practice to hold the same lock as the waiting thread
|
|
while calling this function, though not required.</doc>
|
|
<source-position filename="gthread.h" line="210"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="cond" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13244">a #GCond</doc>
|
|
<type name="Cond" c:type="GCond*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="wait" c:identifier="g_cond_wait">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13253">Atomically releases @mutex and waits until @cond is signalled.
|
|
When this function returns, @mutex is locked again and owned by the
|
|
calling thread.
|
|
|
|
When using condition variables, it is possible that a spurious wakeup
|
|
may occur (ie: g_cond_wait() returns even though g_cond_signal() was
|
|
not called). It's also possible that a stolen wakeup may occur.
|
|
This is when g_cond_signal() is called, but another thread acquires
|
|
@mutex before this thread and modifies the state of the program in
|
|
such a way that when g_cond_wait() is able to return, the expected
|
|
condition is no longer met.
|
|
|
|
For this reason, g_cond_wait() must always be used in a loop. See
|
|
the documentation for #GCond for a complete example.</doc>
|
|
<source-position filename="gthread.h" line="207"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="cond" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13255">a #GCond</doc>
|
|
<type name="Cond" c:type="GCond*"/>
|
|
</instance-parameter>
|
|
<parameter name="mutex" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13256">a #GMutex that is currently locked</doc>
|
|
<type name="Mutex" c:type="GMutex*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="wait_until" c:identifier="g_cond_wait_until" version="2.32">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13275">Waits until either @cond is signalled or @end_time has passed.
|
|
|
|
As with g_cond_wait() it is possible that a spurious or stolen wakeup
|
|
could occur. For that reason, waiting on a condition variable should
|
|
always be in a loop, based on an explicitly-checked predicate.
|
|
|
|
%TRUE is returned if the condition variable was signalled (or in the
|
|
case of a spurious wakeup). %FALSE is returned if @end_time has
|
|
passed.
|
|
|
|
The following code shows how to correctly perform a timed wait on a
|
|
condition variable (extending the example presented in the
|
|
documentation for #GCond):
|
|
|
|
|[<!-- language="C" -->
|
|
gpointer
|
|
pop_data_timed (void)
|
|
{
|
|
gint64 end_time;
|
|
gpointer data;
|
|
|
|
g_mutex_lock (&data_mutex);
|
|
|
|
end_time = g_get_monotonic_time () + 5 * G_TIME_SPAN_SECOND;
|
|
while (!current_data)
|
|
if (!g_cond_wait_until (&data_cond, &data_mutex, end_time))
|
|
{
|
|
// timeout has passed.
|
|
g_mutex_unlock (&data_mutex);
|
|
return NULL;
|
|
}
|
|
|
|
// there is data for us
|
|
data = current_data;
|
|
current_data = NULL;
|
|
|
|
g_mutex_unlock (&data_mutex);
|
|
|
|
return data;
|
|
}
|
|
]|
|
|
|
|
Notice that the end time is calculated once, before entering the
|
|
loop and reused. This is the motivation behind the use of absolute
|
|
time on this API -- if a relative time of 5 seconds were passed
|
|
directly to the call and a spurious wakeup occurred, the program would
|
|
have to start over waiting again (which would lead to a total wait
|
|
time of more than 5 seconds).</doc>
|
|
<source-position filename="gthread.h" line="214"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13330">%TRUE on a signal, %FALSE on a timeout</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="cond" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13277">a #GCond</doc>
|
|
<type name="Cond" c:type="GCond*"/>
|
|
</instance-parameter>
|
|
<parameter name="mutex" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13278">a #GMutex that is currently locked</doc>
|
|
<type name="Mutex" c:type="GMutex*"/>
|
|
</parameter>
|
|
<parameter name="end_time" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13279">the monotonic time to wait until</doc>
|
|
<type name="gint64" c:type="gint64"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
</record>
|
|
<enumeration name="ConvertError" c:type="GConvertError" glib:error-domain="g_convert_error">
|
|
<doc xml:space="preserve" filename="gconvert.h" line="36">Error codes returned by character set conversion routines.</doc>
|
|
<source-position filename="gconvert.h" line="64"/>
|
|
<member name="no_conversion" value="0" c:identifier="G_CONVERT_ERROR_NO_CONVERSION">
|
|
<doc xml:space="preserve" filename="gconvert.h" line="38">Conversion between the requested character
|
|
sets is not supported.</doc>
|
|
</member>
|
|
<member name="illegal_sequence" value="1" c:identifier="G_CONVERT_ERROR_ILLEGAL_SEQUENCE">
|
|
<doc xml:space="preserve" filename="gconvert.h" line="40">Invalid byte sequence in conversion input;
|
|
or the character sequence could not be represented in the target
|
|
character set.</doc>
|
|
</member>
|
|
<member name="failed" value="2" c:identifier="G_CONVERT_ERROR_FAILED">
|
|
<doc xml:space="preserve" filename="gconvert.h" line="43">Conversion failed for some reason.</doc>
|
|
</member>
|
|
<member name="partial_input" value="3" c:identifier="G_CONVERT_ERROR_PARTIAL_INPUT">
|
|
<doc xml:space="preserve" filename="gconvert.h" line="44">Partial character sequence at end of input.</doc>
|
|
</member>
|
|
<member name="bad_uri" value="4" c:identifier="G_CONVERT_ERROR_BAD_URI">
|
|
<doc xml:space="preserve" filename="gconvert.h" line="45">URI is invalid.</doc>
|
|
</member>
|
|
<member name="not_absolute_path" value="5" c:identifier="G_CONVERT_ERROR_NOT_ABSOLUTE_PATH">
|
|
<doc xml:space="preserve" filename="gconvert.h" line="46">Pathname is not an absolute path.</doc>
|
|
</member>
|
|
<member name="no_memory" value="6" c:identifier="G_CONVERT_ERROR_NO_MEMORY">
|
|
<doc xml:space="preserve" filename="gconvert.h" line="47">No memory available. Since: 2.40</doc>
|
|
</member>
|
|
<member name="embedded_nul" value="7" c:identifier="G_CONVERT_ERROR_EMBEDDED_NUL">
|
|
<doc xml:space="preserve" filename="gconvert.h" line="48">An embedded NUL character is present in
|
|
conversion output where a NUL-terminated string is expected.
|
|
Since: 2.56</doc>
|
|
</member>
|
|
</enumeration>
|
|
<callback name="CopyFunc" c:type="GCopyFunc" version="2.4">
|
|
<doc xml:space="preserve" filename="gtypes.h" line="121">A function of this signature is used to copy the node data
|
|
when doing a deep-copy of a tree.</doc>
|
|
<source-position filename="gtypes.h" line="133"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="gtypes.h" line="129">A pointer to the copy</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="src" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="gtypes.h" line="123">A pointer to the data which should be copied</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="gtypes.h" line="124">Additional data</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
<constant name="DATALIST_FLAGS_MASK" value="3" c:type="G_DATALIST_FLAGS_MASK">
|
|
<doc xml:space="preserve" filename="gdataset.h" line="80">A bitmask that restricts the possible flags passed to
|
|
g_datalist_set_flags(). Passing a flags value where
|
|
flags & ~G_DATALIST_FLAGS_MASK != 0 is an error.</doc>
|
|
<source-position filename="gdataset.h" line="87"/>
|
|
<type name="gint" c:type="gint"/>
|
|
</constant>
|
|
<constant name="DATE_BAD_DAY" value="0" c:type="G_DATE_BAD_DAY">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2844">Represents an invalid #GDateDay.</doc>
|
|
<source-position filename="gdate.h" line="91"/>
|
|
<type name="gint" c:type="gint"/>
|
|
</constant>
|
|
<constant name="DATE_BAD_JULIAN" value="0" c:type="G_DATE_BAD_JULIAN">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2851">Represents an invalid Julian day number.</doc>
|
|
<source-position filename="gdate.h" line="90"/>
|
|
<type name="gint" c:type="gint"/>
|
|
</constant>
|
|
<constant name="DATE_BAD_YEAR" value="0" c:type="G_DATE_BAD_YEAR">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2858">Represents an invalid year.</doc>
|
|
<source-position filename="gdate.h" line="92"/>
|
|
<type name="gint" c:type="gint"/>
|
|
</constant>
|
|
<function-macro name="DEFINE_AUTOPTR_CLEANUP_FUNC" c:identifier="G_DEFINE_AUTOPTR_CLEANUP_FUNC" version="2.44" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2865">Defines the appropriate cleanup function for a pointer type.
|
|
|
|
The function will not be called if the variable to be cleaned up
|
|
contains %NULL.
|
|
|
|
This will typically be the `_free()` or `_unref()` function for the given
|
|
type.
|
|
|
|
With this definition, it will be possible to use g_autoptr() with
|
|
@TypeName.
|
|
|
|
|[
|
|
G_DEFINE_AUTOPTR_CLEANUP_FUNC(GObject, g_object_unref)
|
|
]|
|
|
|
|
This macro should be used unconditionally; it is a no-op on compilers
|
|
where cleanup is not supported.</doc>
|
|
<source-position filename="gmacros.h" line="1073"/>
|
|
<parameters>
|
|
<parameter name="TypeName">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2867">a type name to define a g_autoptr() cleanup function for</doc>
|
|
</parameter>
|
|
<parameter name="func">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2868">the cleanup function</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEFINE_AUTO_CLEANUP_CLEAR_FUNC" c:identifier="G_DEFINE_AUTO_CLEANUP_CLEAR_FUNC" version="2.44" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2892">Defines the appropriate cleanup function for a type.
|
|
|
|
This will typically be the `_clear()` function for the given type.
|
|
|
|
With this definition, it will be possible to use g_auto() with
|
|
@TypeName.
|
|
|
|
|[
|
|
G_DEFINE_AUTO_CLEANUP_CLEAR_FUNC(GQueue, g_queue_clear)
|
|
]|
|
|
|
|
This macro should be used unconditionally; it is a no-op on compilers
|
|
where cleanup is not supported.</doc>
|
|
<source-position filename="gmacros.h" line="1074"/>
|
|
<parameters>
|
|
<parameter name="TypeName">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2894">a type name to define a g_auto() cleanup function for</doc>
|
|
</parameter>
|
|
<parameter name="func">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2895">the clear function</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEFINE_AUTO_CLEANUP_FREE_FUNC" c:identifier="G_DEFINE_AUTO_CLEANUP_FREE_FUNC" version="2.44" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2915">Defines the appropriate cleanup function for a type.
|
|
|
|
With this definition, it will be possible to use g_auto() with
|
|
@TypeName.
|
|
|
|
This function will be rarely used. It is used with pointer-based
|
|
typedefs and non-pointer types where the value of the variable
|
|
represents a resource that must be freed. Two examples are #GStrv
|
|
and file descriptors.
|
|
|
|
@none specifies the "none" value for the type in question. It is
|
|
probably something like %NULL or `-1`. If the variable is found to
|
|
contain this value then the free function will not be called.
|
|
|
|
|[
|
|
G_DEFINE_AUTO_CLEANUP_FREE_FUNC(GStrv, g_strfreev, NULL)
|
|
]|
|
|
|
|
This macro should be used unconditionally; it is a no-op on compilers
|
|
where cleanup is not supported.</doc>
|
|
<source-position filename="gmacros.h" line="1075"/>
|
|
<parameters>
|
|
<parameter name="TypeName">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2917">a type name to define a g_auto() cleanup function for</doc>
|
|
</parameter>
|
|
<parameter name="func">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2918">the free function</doc>
|
|
</parameter>
|
|
<parameter name="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2919">the "none" value for the type</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEFINE_QUARK" c:identifier="G_DEFINE_QUARK" version="2.34" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2946">A convenience macro which defines a function returning the
|
|
#GQuark for the name @QN. The function will be named
|
|
@q_n_quark().
|
|
|
|
Note that the quark name will be stringified automatically
|
|
in the macro, so you shouldn't use double quotes.</doc>
|
|
<source-position filename="gquark.h" line="49"/>
|
|
<parameters>
|
|
<parameter name="QN">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2948">the name to return a #GQuark for</doc>
|
|
</parameter>
|
|
<parameter name="q_n">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2949">prefix for the function name</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_ENUMERATOR_FOR" c:identifier="GLIB_DEPRECATED_ENUMERATOR_FOR" introspectable="0">
|
|
<source-position filename="gmacros.h" line="982"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_ENUMERATOR_IN_2_26_FOR" c:identifier="GLIB_DEPRECATED_ENUMERATOR_IN_2_26_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="325"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_ENUMERATOR_IN_2_28_FOR" c:identifier="GLIB_DEPRECATED_ENUMERATOR_IN_2_28_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="357"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_ENUMERATOR_IN_2_30_FOR" c:identifier="GLIB_DEPRECATED_ENUMERATOR_IN_2_30_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="389"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_ENUMERATOR_IN_2_32_FOR" c:identifier="GLIB_DEPRECATED_ENUMERATOR_IN_2_32_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="421"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_ENUMERATOR_IN_2_34_FOR" c:identifier="GLIB_DEPRECATED_ENUMERATOR_IN_2_34_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="457"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_ENUMERATOR_IN_2_36_FOR" c:identifier="GLIB_DEPRECATED_ENUMERATOR_IN_2_36_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="489"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_ENUMERATOR_IN_2_38_FOR" c:identifier="GLIB_DEPRECATED_ENUMERATOR_IN_2_38_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="521"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_ENUMERATOR_IN_2_40_FOR" c:identifier="GLIB_DEPRECATED_ENUMERATOR_IN_2_40_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="553"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_ENUMERATOR_IN_2_42_FOR" c:identifier="GLIB_DEPRECATED_ENUMERATOR_IN_2_42_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="590"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_ENUMERATOR_IN_2_44_FOR" c:identifier="GLIB_DEPRECATED_ENUMERATOR_IN_2_44_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="613"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_ENUMERATOR_IN_2_46_FOR" c:identifier="GLIB_DEPRECATED_ENUMERATOR_IN_2_46_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="650"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_ENUMERATOR_IN_2_48_FOR" c:identifier="GLIB_DEPRECATED_ENUMERATOR_IN_2_48_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="673"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_ENUMERATOR_IN_2_50_FOR" c:identifier="GLIB_DEPRECATED_ENUMERATOR_IN_2_50_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="705"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_ENUMERATOR_IN_2_52_FOR" c:identifier="GLIB_DEPRECATED_ENUMERATOR_IN_2_52_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="737"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_ENUMERATOR_IN_2_54_FOR" c:identifier="GLIB_DEPRECATED_ENUMERATOR_IN_2_54_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="769"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_ENUMERATOR_IN_2_56_FOR" c:identifier="GLIB_DEPRECATED_ENUMERATOR_IN_2_56_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="801"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_ENUMERATOR_IN_2_58_FOR" c:identifier="GLIB_DEPRECATED_ENUMERATOR_IN_2_58_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="833"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_ENUMERATOR_IN_2_60_FOR" c:identifier="GLIB_DEPRECATED_ENUMERATOR_IN_2_60_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="865"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_ENUMERATOR_IN_2_62_FOR" c:identifier="GLIB_DEPRECATED_ENUMERATOR_IN_2_62_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="897"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_FOR" c:identifier="G_DEPRECATED_FOR" version="2.32" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2979">This macro is similar to %G_GNUC_DEPRECATED_FOR, and can be used to mark
|
|
functions declarations as deprecated. Unlike %G_GNUC_DEPRECATED_FOR, it
|
|
is meant to be portable across different compilers and must be placed
|
|
before the function declaration.
|
|
|
|
|[<!-- language="C" --
|
|
G_DEPRECATED_FOR(my_replacement)
|
|
int my_mistake (void);
|
|
]|</doc>
|
|
<source-position filename="gmacros.h" line="930"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2981">the name of the function that this function was deprecated for</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_IN_2_26_FOR" c:identifier="GLIB_DEPRECATED_IN_2_26_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="321"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_IN_2_28_FOR" c:identifier="GLIB_DEPRECATED_IN_2_28_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="353"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_IN_2_30_FOR" c:identifier="GLIB_DEPRECATED_IN_2_30_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="385"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_IN_2_32_FOR" c:identifier="GLIB_DEPRECATED_IN_2_32_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="417"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_IN_2_34_FOR" c:identifier="GLIB_DEPRECATED_IN_2_34_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="453"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_IN_2_36_FOR" c:identifier="GLIB_DEPRECATED_IN_2_36_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="485"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_IN_2_38_FOR" c:identifier="GLIB_DEPRECATED_IN_2_38_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="517"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_IN_2_40_FOR" c:identifier="GLIB_DEPRECATED_IN_2_40_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="549"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_IN_2_42_FOR" c:identifier="GLIB_DEPRECATED_IN_2_42_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="581"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_IN_2_44_FOR" c:identifier="GLIB_DEPRECATED_IN_2_44_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="609"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_IN_2_46_FOR" c:identifier="GLIB_DEPRECATED_IN_2_46_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="641"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_IN_2_48_FOR" c:identifier="GLIB_DEPRECATED_IN_2_48_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="669"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_IN_2_50_FOR" c:identifier="GLIB_DEPRECATED_IN_2_50_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="701"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_IN_2_52_FOR" c:identifier="GLIB_DEPRECATED_IN_2_52_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="733"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_IN_2_54_FOR" c:identifier="GLIB_DEPRECATED_IN_2_54_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="765"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_IN_2_56_FOR" c:identifier="GLIB_DEPRECATED_IN_2_56_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="797"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_IN_2_58_FOR" c:identifier="GLIB_DEPRECATED_IN_2_58_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="829"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_IN_2_60_FOR" c:identifier="GLIB_DEPRECATED_IN_2_60_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="861"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_IN_2_62_FOR" c:identifier="GLIB_DEPRECATED_IN_2_62_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="893"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_MACRO_FOR" c:identifier="GLIB_DEPRECATED_MACRO_FOR" introspectable="0">
|
|
<source-position filename="gmacros.h" line="970"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_MACRO_IN_2_26_FOR" c:identifier="GLIB_DEPRECATED_MACRO_IN_2_26_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="323"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_MACRO_IN_2_28_FOR" c:identifier="GLIB_DEPRECATED_MACRO_IN_2_28_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="355"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_MACRO_IN_2_30_FOR" c:identifier="GLIB_DEPRECATED_MACRO_IN_2_30_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="387"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_MACRO_IN_2_32_FOR" c:identifier="GLIB_DEPRECATED_MACRO_IN_2_32_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="419"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_MACRO_IN_2_34_FOR" c:identifier="GLIB_DEPRECATED_MACRO_IN_2_34_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="455"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_MACRO_IN_2_36_FOR" c:identifier="GLIB_DEPRECATED_MACRO_IN_2_36_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="487"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_MACRO_IN_2_38_FOR" c:identifier="GLIB_DEPRECATED_MACRO_IN_2_38_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="519"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_MACRO_IN_2_40_FOR" c:identifier="GLIB_DEPRECATED_MACRO_IN_2_40_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="551"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_MACRO_IN_2_42_FOR" c:identifier="GLIB_DEPRECATED_MACRO_IN_2_42_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="583"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_MACRO_IN_2_44_FOR" c:identifier="GLIB_DEPRECATED_MACRO_IN_2_44_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="611"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_MACRO_IN_2_46_FOR" c:identifier="GLIB_DEPRECATED_MACRO_IN_2_46_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="643"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_MACRO_IN_2_48_FOR" c:identifier="GLIB_DEPRECATED_MACRO_IN_2_48_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="671"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_MACRO_IN_2_50_FOR" c:identifier="GLIB_DEPRECATED_MACRO_IN_2_50_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="703"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_MACRO_IN_2_52_FOR" c:identifier="GLIB_DEPRECATED_MACRO_IN_2_52_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="735"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_MACRO_IN_2_54_FOR" c:identifier="GLIB_DEPRECATED_MACRO_IN_2_54_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="767"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_MACRO_IN_2_56_FOR" c:identifier="GLIB_DEPRECATED_MACRO_IN_2_56_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="799"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_MACRO_IN_2_58_FOR" c:identifier="GLIB_DEPRECATED_MACRO_IN_2_58_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="831"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_MACRO_IN_2_60_FOR" c:identifier="GLIB_DEPRECATED_MACRO_IN_2_60_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="863"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_MACRO_IN_2_62_FOR" c:identifier="GLIB_DEPRECATED_MACRO_IN_2_62_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="895"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_TYPE_FOR" c:identifier="GLIB_DEPRECATED_TYPE_FOR" introspectable="0">
|
|
<source-position filename="gmacros.h" line="994"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_TYPE_IN_2_26_FOR" c:identifier="GLIB_DEPRECATED_TYPE_IN_2_26_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="327"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_TYPE_IN_2_28_FOR" c:identifier="GLIB_DEPRECATED_TYPE_IN_2_28_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="359"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_TYPE_IN_2_30_FOR" c:identifier="GLIB_DEPRECATED_TYPE_IN_2_30_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="391"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_TYPE_IN_2_32_FOR" c:identifier="GLIB_DEPRECATED_TYPE_IN_2_32_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="423"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_TYPE_IN_2_34_FOR" c:identifier="GLIB_DEPRECATED_TYPE_IN_2_34_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="459"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_TYPE_IN_2_36_FOR" c:identifier="GLIB_DEPRECATED_TYPE_IN_2_36_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="491"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_TYPE_IN_2_38_FOR" c:identifier="GLIB_DEPRECATED_TYPE_IN_2_38_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="523"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_TYPE_IN_2_40_FOR" c:identifier="GLIB_DEPRECATED_TYPE_IN_2_40_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="555"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_TYPE_IN_2_42_FOR" c:identifier="GLIB_DEPRECATED_TYPE_IN_2_42_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="592"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_TYPE_IN_2_44_FOR" c:identifier="GLIB_DEPRECATED_TYPE_IN_2_44_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="615"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_TYPE_IN_2_46_FOR" c:identifier="GLIB_DEPRECATED_TYPE_IN_2_46_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="652"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_TYPE_IN_2_48_FOR" c:identifier="GLIB_DEPRECATED_TYPE_IN_2_48_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="675"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_TYPE_IN_2_50_FOR" c:identifier="GLIB_DEPRECATED_TYPE_IN_2_50_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="707"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_TYPE_IN_2_52_FOR" c:identifier="GLIB_DEPRECATED_TYPE_IN_2_52_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="739"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_TYPE_IN_2_54_FOR" c:identifier="GLIB_DEPRECATED_TYPE_IN_2_54_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="771"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_TYPE_IN_2_56_FOR" c:identifier="GLIB_DEPRECATED_TYPE_IN_2_56_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="803"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_TYPE_IN_2_58_FOR" c:identifier="GLIB_DEPRECATED_TYPE_IN_2_58_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="835"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_TYPE_IN_2_60_FOR" c:identifier="GLIB_DEPRECATED_TYPE_IN_2_60_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="867"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="DEPRECATED_TYPE_IN_2_62_FOR" c:identifier="GLIB_DEPRECATED_TYPE_IN_2_62_FOR" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="899"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<constant name="DIR_SEPARATOR" value="47" c:type="G_DIR_SEPARATOR">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2997">The directory separator character.
|
|
This is '/' on UNIX machines and '\' under Windows.</doc>
|
|
<source-position filename="glibconfig.h" line="209"/>
|
|
<type name="gint" c:type="gint"/>
|
|
</constant>
|
|
<constant name="DIR_SEPARATOR_S" value="/" c:type="G_DIR_SEPARATOR_S">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3005">The directory separator as a string.
|
|
This is "/" on UNIX machines and "\" under Windows.</doc>
|
|
<source-position filename="glibconfig.h" line="210"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<record name="Data" c:type="GData" disguised="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="232">The #GData struct is an opaque data structure to represent a
|
|
[Keyed Data List][glib-Keyed-Data-Lists]. It should only be
|
|
accessed via the following functions.</doc>
|
|
<source-position filename="gdataset.h" line="36"/>
|
|
</record>
|
|
<callback name="DataForeachFunc" c:type="GDataForeachFunc">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="241">Specifies the type of function passed to g_dataset_foreach(). It is
|
|
called with each #GQuark id and associated data element, together
|
|
with the @user_data parameter supplied to g_dataset_foreach().</doc>
|
|
<source-position filename="gdataset.h" line="38"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="key_id" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="243">the #GQuark id to identifying the data element.</doc>
|
|
<type name="Quark" c:type="GQuark"/>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="244">the data element.</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1" closure="2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="245">user data passed to g_dataset_foreach().</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
<record name="Date" c:type="GDate" glib:type-name="GDate" glib:get-type="g_date_get_type" c:symbol-prefix="date">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="253">Represents a day between January 1, Year 1 and a few thousand years in
|
|
the future. None of its members should be accessed directly.
|
|
|
|
If the #GDate-struct is obtained from g_date_new(), it will be safe
|
|
to mutate but invalid and thus not safe for calendrical computations.
|
|
|
|
If it's declared on the stack, it will contain garbage so must be
|
|
initialized with g_date_clear(). g_date_clear() makes the date invalid
|
|
but sane. An invalid date doesn't represent a day, it's "empty." A date
|
|
becomes valid after you set it to a Julian day or you set a day, month,
|
|
and year.</doc>
|
|
<source-position filename="gdate.h" line="114"/>
|
|
<field name="julian_days" writable="1" bits="32">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="255">the Julian representation of the date</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="julian" writable="1" bits="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="256">this bit is set if @julian_days is valid</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="dmy" writable="1" bits="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="257">this is set if @day, @month and @year are valid</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="day" writable="1" bits="6">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="258">the day of the day-month-year representation of the date,
|
|
as a number between 1 and 31</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="month" writable="1" bits="4">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="260">the day of the day-month-year representation of the date,
|
|
as a number between 1 and 12</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="year" writable="1" bits="16">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="262">the day of the day-month-year representation of the date</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<constructor name="new" c:identifier="g_date_new">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14255">Allocates a #GDate and initializes
|
|
it to a sane state. The new date will
|
|
be cleared (as if you'd called g_date_clear()) but invalid (it won't
|
|
represent an existing day). Free the return value with g_date_free().</doc>
|
|
<source-position filename="gdate.h" line="121"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14263">a newly-allocated #GDate</doc>
|
|
<type name="Date" c:type="GDate*"/>
|
|
</return-value>
|
|
</constructor>
|
|
<constructor name="new_dmy" c:identifier="g_date_new_dmy">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14267">Like g_date_new(), but also sets the value of the date. Assuming the
|
|
day-month-year triplet you pass in represents an existing day, the
|
|
returned date will be valid.</doc>
|
|
<source-position filename="gdate.h" line="123"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14277">a newly-allocated #GDate initialized with @day, @month, and @year</doc>
|
|
<type name="Date" c:type="GDate*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="day" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14269">day of the month</doc>
|
|
<type name="DateDay" c:type="GDateDay"/>
|
|
</parameter>
|
|
<parameter name="month" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14270">month of the year</doc>
|
|
<type name="DateMonth" c:type="GDateMonth"/>
|
|
</parameter>
|
|
<parameter name="year" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14271">year</doc>
|
|
<type name="DateYear" c:type="GDateYear"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="new_julian" c:identifier="g_date_new_julian">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14281">Like g_date_new(), but also sets the value of the date. Assuming the
|
|
Julian day number you pass in is valid (greater than 0, less than an
|
|
unreasonably large number), the returned date will be valid.</doc>
|
|
<source-position filename="gdate.h" line="127"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14289">a newly-allocated #GDate initialized with @julian_day</doc>
|
|
<type name="Date" c:type="GDate*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="julian_day" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14283">days since January 1, Year 1</doc>
|
|
<type name="guint32" c:type="guint32"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<method name="add_days" c:identifier="g_date_add_days">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13965">Increments a date some number of days.
|
|
To move forward by weeks, add weeks*7 days.
|
|
The date must be valid.</doc>
|
|
<source-position filename="gdate.h" line="230"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="date" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13967">a #GDate to increment</doc>
|
|
<type name="Date" c:type="GDate*"/>
|
|
</instance-parameter>
|
|
<parameter name="n_days" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13968">number of days to move the date forward</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="add_months" c:identifier="g_date_add_months">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13976">Increments a date by some number of months.
|
|
If the day of the month is greater than 28,
|
|
this routine may change the day of the month
|
|
(because the destination month may not have
|
|
the current day in it). The date must be valid.</doc>
|
|
<source-position filename="gdate.h" line="238"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="date" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13978">a #GDate to increment</doc>
|
|
<type name="Date" c:type="GDate*"/>
|
|
</instance-parameter>
|
|
<parameter name="n_months" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13979">number of months to move forward</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="add_years" c:identifier="g_date_add_years">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13989">Increments a date by some number of years.
|
|
If the date is February 29, and the destination
|
|
year is not a leap year, the date will be changed
|
|
to February 28. The date must be valid.</doc>
|
|
<source-position filename="gdate.h" line="246"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="date" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13991">a #GDate to increment</doc>
|
|
<type name="Date" c:type="GDate*"/>
|
|
</instance-parameter>
|
|
<parameter name="n_years" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13992">number of years to move forward</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="clamp" c:identifier="g_date_clamp">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14001">If @date is prior to @min_date, sets @date equal to @min_date.
|
|
If @date falls after @max_date, sets @date equal to @max_date.
|
|
Otherwise, @date is unchanged.
|
|
Either of @min_date and @max_date may be %NULL.
|
|
All non-%NULL dates must be valid.</doc>
|
|
<source-position filename="gdate.h" line="276"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="date" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14003">a #GDate to clamp</doc>
|
|
<type name="Date" c:type="GDate*"/>
|
|
</instance-parameter>
|
|
<parameter name="min_date" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14004">minimum accepted value for @date</doc>
|
|
<type name="Date" c:type="const GDate*"/>
|
|
</parameter>
|
|
<parameter name="max_date" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14005">maximum accepted value for @date</doc>
|
|
<type name="Date" c:type="const GDate*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="clear" c:identifier="g_date_clear">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14015">Initializes one or more #GDate structs to a sane but invalid
|
|
state. The cleared dates will not represent an existing date, but will
|
|
not contain garbage. Useful to init a date declared on the stack.
|
|
Validity can be tested with g_date_valid().</doc>
|
|
<source-position filename="gdate.h" line="185"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="date" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14017">pointer to one or more dates to clear</doc>
|
|
<type name="Date" c:type="GDate*"/>
|
|
</instance-parameter>
|
|
<parameter name="n_dates" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14018">number of dates to clear</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="compare" c:identifier="g_date_compare">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14027">qsort()-style comparison function for dates.
|
|
Both dates must be valid.</doc>
|
|
<source-position filename="gdate.h" line="269"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14035">0 for equal, less than zero if @lhs is less than @rhs,
|
|
greater than zero if @lhs is greater than @rhs</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="lhs" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14029">first date to compare</doc>
|
|
<type name="Date" c:type="const GDate*"/>
|
|
</instance-parameter>
|
|
<parameter name="rhs" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14030">second date to compare</doc>
|
|
<type name="Date" c:type="const GDate*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="copy" c:identifier="g_date_copy" version="2.56">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14040">Copies a GDate to a newly-allocated GDate. If the input was invalid
|
|
(as determined by g_date_valid()), the invalid state will be copied
|
|
as is into the new object.</doc>
|
|
<source-position filename="gdate.h" line="131"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14048">a newly-allocated #GDate initialized from @date</doc>
|
|
<type name="Date" c:type="GDate*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="date" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14042">a #GDate to copy</doc>
|
|
<type name="Date" c:type="const GDate*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="days_between" c:identifier="g_date_days_between">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14053">Computes the number of days between two dates.
|
|
If @date2 is prior to @date1, the returned value is negative.
|
|
Both dates must be valid.</doc>
|
|
<source-position filename="gdate.h" line="264"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14062">the number of days between @date1 and @date2</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="date1" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14055">the first date</doc>
|
|
<type name="Date" c:type="const GDate*"/>
|
|
</instance-parameter>
|
|
<parameter name="date2" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14056">the second date</doc>
|
|
<type name="Date" c:type="const GDate*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="free" c:identifier="g_date_free">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14066">Frees a #GDate returned from g_date_new().</doc>
|
|
<source-position filename="gdate.h" line="129"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="date" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14068">a #GDate to free</doc>
|
|
<type name="Date" c:type="GDate*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_day" c:identifier="g_date_get_day">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14074">Returns the day of the month. The date must be valid.</doc>
|
|
<source-position filename="gdate.h" line="162"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14080">day of the month</doc>
|
|
<type name="DateDay" c:type="GDateDay"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="date" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14076">a #GDate to extract the day of the month from</doc>
|
|
<type name="Date" c:type="const GDate*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_day_of_year" c:identifier="g_date_get_day_of_year">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14084">Returns the day of the year, where Jan 1 is the first day of the
|
|
year. The date must be valid.</doc>
|
|
<source-position filename="gdate.h" line="166"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14091">day of the year</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="date" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14086">a #GDate to extract day of year from</doc>
|
|
<type name="Date" c:type="const GDate*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_iso8601_week_of_year" c:identifier="g_date_get_iso8601_week_of_year" version="2.6">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14107">Returns the week of the year, where weeks are interpreted according
|
|
to ISO 8601.</doc>
|
|
<source-position filename="gdate.h" line="178"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14114">ISO 8601 week number of the year.</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="date" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14109">a valid #GDate</doc>
|
|
<type name="Date" c:type="const GDate*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_julian" c:identifier="g_date_get_julian">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14119">Returns the Julian day or "serial number" of the #GDate. The
|
|
Julian day is simply the number of days since January 1, Year 1; i.e.,
|
|
January 1, Year 1 is Julian day 1; January 2, Year 1 is Julian day 2,
|
|
etc. The date must be valid.</doc>
|
|
<source-position filename="gdate.h" line="164"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14128">Julian day</doc>
|
|
<type name="guint32" c:type="guint32"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="date" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14121">a #GDate to extract the Julian day from</doc>
|
|
<type name="Date" c:type="const GDate*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_monday_week_of_year" c:identifier="g_date_get_monday_week_of_year">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14132">Returns the week of the year, where weeks are understood to start on
|
|
Monday. If the date is before the first Monday of the year, return 0.
|
|
The date must be valid.</doc>
|
|
<source-position filename="gdate.h" line="174"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14140">week of the year</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="date" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14134">a #GDate</doc>
|
|
<type name="Date" c:type="const GDate*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_month" c:identifier="g_date_get_month">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14160">Returns the month of the year. The date must be valid.</doc>
|
|
<source-position filename="gdate.h" line="158"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14166">month of the year as a #GDateMonth</doc>
|
|
<type name="DateMonth" c:type="GDateMonth"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="date" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14162">a #GDate to get the month from</doc>
|
|
<type name="Date" c:type="const GDate*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_sunday_week_of_year" c:identifier="g_date_get_sunday_week_of_year">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14170">Returns the week of the year during which this date falls, if
|
|
weeks are understood to begin on Sunday. The date must be valid.
|
|
Can return 0 if the day is before the first Sunday of the year.</doc>
|
|
<source-position filename="gdate.h" line="176"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14178">week number</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="date" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14172">a #GDate</doc>
|
|
<type name="Date" c:type="const GDate*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_weekday" c:identifier="g_date_get_weekday">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14198">Returns the day of the week for a #GDate. The date must be valid.</doc>
|
|
<source-position filename="gdate.h" line="156"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14204">day of the week as a #GDateWeekday.</doc>
|
|
<type name="DateWeekday" c:type="GDateWeekday"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="date" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14200">a #GDate</doc>
|
|
<type name="Date" c:type="const GDate*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_year" c:identifier="g_date_get_year">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14208">Returns the year of a #GDate. The date must be valid.</doc>
|
|
<source-position filename="gdate.h" line="160"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14214">year in which the date falls</doc>
|
|
<type name="DateYear" c:type="GDateYear"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="date" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14210">a #GDate</doc>
|
|
<type name="Date" c:type="const GDate*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="is_first_of_month" c:identifier="g_date_is_first_of_month">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14218">Returns %TRUE if the date is on the first of a month.
|
|
The date must be valid.</doc>
|
|
<source-position filename="gdate.h" line="224"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14225">%TRUE if the date is the first of the month</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="date" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14220">a #GDate to check</doc>
|
|
<type name="Date" c:type="const GDate*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="is_last_of_month" c:identifier="g_date_is_last_of_month">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14229">Returns %TRUE if the date is the last day of the month.
|
|
The date must be valid.</doc>
|
|
<source-position filename="gdate.h" line="226"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14236">%TRUE if the date is the last day of the month</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="date" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14231">a #GDate to check</doc>
|
|
<type name="Date" c:type="const GDate*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="order" c:identifier="g_date_order">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14293">Checks if @date1 is less than or equal to @date2,
|
|
and swap the values if this is not the case.</doc>
|
|
<source-position filename="gdate.h" line="282"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="date1" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14295">the first date</doc>
|
|
<type name="Date" c:type="GDate*"/>
|
|
</instance-parameter>
|
|
<parameter name="date2" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14296">the second date</doc>
|
|
<type name="Date" c:type="GDate*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_day" c:identifier="g_date_set_day">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14303">Sets the day of the month for a #GDate. If the resulting
|
|
day-month-year triplet is invalid, the date will be invalid.</doc>
|
|
<source-position filename="gdate.h" line="210"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="date" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14305">a #GDate</doc>
|
|
<type name="Date" c:type="GDate*"/>
|
|
</instance-parameter>
|
|
<parameter name="day" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14306">day to set</doc>
|
|
<type name="DateDay" c:type="GDateDay"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_dmy" c:identifier="g_date_set_dmy">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14313">Sets the value of a #GDate from a day, month, and year.
|
|
The day-month-year triplet must be valid; if you aren't
|
|
sure it is, call g_date_valid_dmy() to check before you
|
|
set it.</doc>
|
|
<source-position filename="gdate.h" line="216"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="date" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14315">a #GDate</doc>
|
|
<type name="Date" c:type="GDate*"/>
|
|
</instance-parameter>
|
|
<parameter name="day" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14316">day</doc>
|
|
<type name="DateDay" c:type="GDateDay"/>
|
|
</parameter>
|
|
<parameter name="month" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14317">month</doc>
|
|
<type name="DateMonth" c:type="GDateMonth"/>
|
|
</parameter>
|
|
<parameter name="y" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14318">year</doc>
|
|
<type name="DateYear" c:type="GDateYear"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_julian" c:identifier="g_date_set_julian">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14327">Sets the value of a #GDate from a Julian day number.</doc>
|
|
<source-position filename="gdate.h" line="221"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="date" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14329">a #GDate</doc>
|
|
<type name="Date" c:type="GDate*"/>
|
|
</instance-parameter>
|
|
<parameter name="julian_date" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14330">Julian day number (days since January 1, Year 1)</doc>
|
|
<type name="guint32" c:type="guint32"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_month" c:identifier="g_date_set_month">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14336">Sets the month of the year for a #GDate. If the resulting
|
|
day-month-year triplet is invalid, the date will be invalid.</doc>
|
|
<source-position filename="gdate.h" line="207"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="date" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14338">a #GDate</doc>
|
|
<type name="Date" c:type="GDate*"/>
|
|
</instance-parameter>
|
|
<parameter name="month" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14339">month to set</doc>
|
|
<type name="DateMonth" c:type="GDateMonth"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_parse" c:identifier="g_date_set_parse">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14346">Parses a user-inputted string @str, and try to figure out what date it
|
|
represents, taking the [current locale][setlocale] into account. If the
|
|
string is successfully parsed, the date will be valid after the call.
|
|
Otherwise, it will be invalid. You should check using g_date_valid()
|
|
to see whether the parsing succeeded.
|
|
|
|
This function is not appropriate for file formats and the like; it
|
|
isn't very precise, and its exact behavior varies with the locale.
|
|
It's intended to be a heuristic routine that guesses what the user
|
|
means by a given string (and it does work pretty well in that
|
|
capacity).</doc>
|
|
<source-position filename="gdate.h" line="193"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="date" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14348">a #GDate to fill in</doc>
|
|
<type name="Date" c:type="GDate*"/>
|
|
</instance-parameter>
|
|
<parameter name="str" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14349">string to parse</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_time" c:identifier="g_date_set_time" deprecated="1" deprecated-version="2.10">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14365">Sets the value of a date from a #GTime value.
|
|
The time to date conversion is done using the user's current timezone.</doc>
|
|
<doc-deprecated xml:space="preserve">Use g_date_set_time_t() instead.</doc-deprecated>
|
|
<source-position filename="gdate.h" line="203"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="date" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14367">a #GDate.</doc>
|
|
<type name="Date" c:type="GDate*"/>
|
|
</instance-parameter>
|
|
<parameter name="time_" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14368">#GTime value to set.</doc>
|
|
<type name="Time" c:type="GTime"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_time_t" c:identifier="g_date_set_time_t" version="2.10">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14377">Sets the value of a date to the date corresponding to a time
|
|
specified as a time_t. The time to date conversion is done using
|
|
the user's current timezone.
|
|
|
|
To set the value of a date to the current day, you could write:
|
|
|[<!-- language="C" -->
|
|
time_t now = time (NULL);
|
|
if (now == (time_t) -1)
|
|
// handle the error
|
|
g_date_set_time_t (date, now);
|
|
]|</doc>
|
|
<source-position filename="gdate.h" line="196"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="date" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14379">a #GDate</doc>
|
|
<type name="Date" c:type="GDate*"/>
|
|
</instance-parameter>
|
|
<parameter name="timet" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14380">time_t value to set</doc>
|
|
<type name="glong" c:type="time_t"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_time_val" c:identifier="g_date_set_time_val" version="2.10" deprecated="1" deprecated-version="2.62">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14398">Sets the value of a date from a #GTimeVal value. Note that the
|
|
@tv_usec member is ignored, because #GDate can't make use of the
|
|
additional precision.
|
|
|
|
The time to date conversion is done using the user's current timezone.</doc>
|
|
<doc-deprecated xml:space="preserve">#GTimeVal is not year-2038-safe. Use g_date_set_time_t()
|
|
instead.</doc-deprecated>
|
|
<source-position filename="gdate.h" line="200"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="date" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14400">a #GDate</doc>
|
|
<type name="Date" c:type="GDate*"/>
|
|
</instance-parameter>
|
|
<parameter name="timeval" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14401">#GTimeVal value to set</doc>
|
|
<type name="TimeVal" c:type="GTimeVal*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_year" c:identifier="g_date_set_year">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14415">Sets the year for a #GDate. If the resulting day-month-year
|
|
triplet is invalid, the date will be invalid.</doc>
|
|
<source-position filename="gdate.h" line="213"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="date" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14417">a #GDate</doc>
|
|
<type name="Date" c:type="GDate*"/>
|
|
</instance-parameter>
|
|
<parameter name="year" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14418">year to set</doc>
|
|
<type name="DateYear" c:type="GDateYear"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="subtract_days" c:identifier="g_date_subtract_days">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14450">Moves a date some number of days into the past.
|
|
To move by weeks, just move by weeks*7 days.
|
|
The date must be valid.</doc>
|
|
<source-position filename="gdate.h" line="233"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="date" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14452">a #GDate to decrement</doc>
|
|
<type name="Date" c:type="GDate*"/>
|
|
</instance-parameter>
|
|
<parameter name="n_days" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14453">number of days to move</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="subtract_months" c:identifier="g_date_subtract_months">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14461">Moves a date some number of months into the past.
|
|
If the current day of the month doesn't exist in
|
|
the destination month, the day of the month
|
|
may change. The date must be valid.</doc>
|
|
<source-position filename="gdate.h" line="241"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="date" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14463">a #GDate to decrement</doc>
|
|
<type name="Date" c:type="GDate*"/>
|
|
</instance-parameter>
|
|
<parameter name="n_months" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14464">number of months to move</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="subtract_years" c:identifier="g_date_subtract_years">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14473">Moves a date some number of years into the past.
|
|
If the current day doesn't exist in the destination
|
|
year (i.e. it's February 29 and you move to a non-leap-year)
|
|
then the day is changed to February 29. The date
|
|
must be valid.</doc>
|
|
<source-position filename="gdate.h" line="249"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="date" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14475">a #GDate to decrement</doc>
|
|
<type name="Date" c:type="GDate*"/>
|
|
</instance-parameter>
|
|
<parameter name="n_years" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14476">number of years to move</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="to_struct_tm" c:identifier="g_date_to_struct_tm">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15437">Fills in the date-related bits of a struct tm using the @date value.
|
|
Initializes the non-date parts with something sane but meaningless.</doc>
|
|
<source-position filename="gdate.h" line="272"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="date" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15439">a #GDate to set the struct tm from</doc>
|
|
<type name="Date" c:type="const GDate*"/>
|
|
</instance-parameter>
|
|
<parameter name="tm" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15440">struct tm to fill</doc>
|
|
<type name="gpointer" c:type="tm*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="valid" c:identifier="g_date_valid">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15447">Returns %TRUE if the #GDate represents an existing day. The date must not
|
|
contain garbage; it should have been initialized with g_date_clear()
|
|
if it wasn't allocated by one of the g_date_new() variants.</doc>
|
|
<source-position filename="gdate.h" line="139"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15455">Whether the date is valid</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="date" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15449">a #GDate to check</doc>
|
|
<type name="Date" c:type="const GDate*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<function name="get_days_in_month" c:identifier="g_date_get_days_in_month">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14095">Returns the number of days in a month, taking leap
|
|
years into account.</doc>
|
|
<source-position filename="gdate.h" line="254"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14103">number of days in @month during the @year</doc>
|
|
<type name="guint8" c:type="guint8"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="month" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14097">month</doc>
|
|
<type name="DateMonth" c:type="GDateMonth"/>
|
|
</parameter>
|
|
<parameter name="year" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14098">year</doc>
|
|
<type name="DateYear" c:type="GDateYear"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="get_monday_weeks_in_year" c:identifier="g_date_get_monday_weeks_in_year">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14144">Returns the number of weeks in the year, where weeks
|
|
are taken to start on Monday. Will be 52 or 53. The
|
|
date must be valid. (Years always have 52 7-day periods,
|
|
plus 1 or 2 extra days depending on whether it's a leap
|
|
year. This function is basically telling you how many
|
|
Mondays are in the year, i.e. there are 53 Mondays if
|
|
one of the extra days happens to be a Monday.)</doc>
|
|
<source-position filename="gdate.h" line="257"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14156">number of Mondays in the year</doc>
|
|
<type name="guint8" c:type="guint8"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="year" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14146">a year</doc>
|
|
<type name="DateYear" c:type="GDateYear"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="get_sunday_weeks_in_year" c:identifier="g_date_get_sunday_weeks_in_year">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14182">Returns the number of weeks in the year, where weeks
|
|
are taken to start on Sunday. Will be 52 or 53. The
|
|
date must be valid. (Years always have 52 7-day periods,
|
|
plus 1 or 2 extra days depending on whether it's a leap
|
|
year. This function is basically telling you how many
|
|
Sundays are in the year, i.e. there are 53 Sundays if
|
|
one of the extra days happens to be a Sunday.)</doc>
|
|
<source-position filename="gdate.h" line="259"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14194">the number of weeks in @year</doc>
|
|
<type name="guint8" c:type="guint8"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="year" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14184">year to count weeks in</doc>
|
|
<type name="DateYear" c:type="GDateYear"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="is_leap_year" c:identifier="g_date_is_leap_year">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14240">Returns %TRUE if the year is a leap year.
|
|
|
|
For the purposes of this function, leap year is every year
|
|
divisible by 4 unless that year is divisible by 100. If it
|
|
is divisible by 100 it would be a leap year only if that year
|
|
is also divisible by 400.</doc>
|
|
<source-position filename="gdate.h" line="252"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14251">%TRUE if the year is a leap year</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="year" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14242">year to check</doc>
|
|
<type name="DateYear" c:type="GDateYear"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="strftime" c:identifier="g_date_strftime">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14425">Generates a printed representation of the date, in a
|
|
[locale][setlocale]-specific way.
|
|
Works just like the platform's C library strftime() function,
|
|
but only accepts date-related formats; time-related formats
|
|
give undefined results. Date must be valid. Unlike strftime()
|
|
(which uses the locale encoding), works on a UTF-8 format
|
|
string and stores a UTF-8 result.
|
|
|
|
This function does not provide any conversion specifiers in
|
|
addition to those implemented by the platform's C library.
|
|
For example, don't expect that using g_date_strftime() would
|
|
make the \%F provided by the C99 strftime() work on Windows
|
|
where the C library only complies to C89.</doc>
|
|
<source-position filename="gdate.h" line="288"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14446">number of characters written to the buffer, or 0 the buffer was too small</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="s" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14427">destination buffer</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</parameter>
|
|
<parameter name="slen" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14428">buffer size</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
<parameter name="format" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14429">format string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="date" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14430">valid #GDate</doc>
|
|
<type name="Date" c:type="const GDate*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="valid_day" c:identifier="g_date_valid_day">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15459">Returns %TRUE if the day of the month is valid (a day is valid if it's
|
|
between 1 and 31 inclusive).</doc>
|
|
<source-position filename="gdate.h" line="141"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15466">%TRUE if the day is valid</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="day" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15461">day to check</doc>
|
|
<type name="DateDay" c:type="GDateDay"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="valid_dmy" c:identifier="g_date_valid_dmy">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15470">Returns %TRUE if the day-month-year triplet forms a valid, existing day
|
|
in the range of days #GDate understands (Year 1 or later, no more than
|
|
a few thousand years in the future).</doc>
|
|
<source-position filename="gdate.h" line="151"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15480">%TRUE if the date is a valid one</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="day" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15472">day</doc>
|
|
<type name="DateDay" c:type="GDateDay"/>
|
|
</parameter>
|
|
<parameter name="month" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15473">month</doc>
|
|
<type name="DateMonth" c:type="GDateMonth"/>
|
|
</parameter>
|
|
<parameter name="year" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15474">year</doc>
|
|
<type name="DateYear" c:type="GDateYear"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="valid_julian" c:identifier="g_date_valid_julian">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15484">Returns %TRUE if the Julian day is valid. Anything greater than zero
|
|
is basically a valid Julian, though there is a 32-bit limit.</doc>
|
|
<source-position filename="gdate.h" line="149"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15491">%TRUE if the Julian day is valid</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="julian_date" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15486">Julian day to check</doc>
|
|
<type name="guint32" c:type="guint32"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="valid_month" c:identifier="g_date_valid_month">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15495">Returns %TRUE if the month value is valid. The 12 #GDateMonth
|
|
enumeration values are the only valid months.</doc>
|
|
<source-position filename="gdate.h" line="143"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15502">%TRUE if the month is valid</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="month" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15497">month</doc>
|
|
<type name="DateMonth" c:type="GDateMonth"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="valid_weekday" c:identifier="g_date_valid_weekday">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15506">Returns %TRUE if the weekday is valid. The seven #GDateWeekday enumeration
|
|
values are the only valid weekdays.</doc>
|
|
<source-position filename="gdate.h" line="147"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15513">%TRUE if the weekday is valid</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="weekday" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15508">weekday</doc>
|
|
<type name="DateWeekday" c:type="GDateWeekday"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="valid_year" c:identifier="g_date_valid_year">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15517">Returns %TRUE if the year is valid. Any year greater than 0 is valid,
|
|
though there is a 16-bit limit to what #GDate will understand.</doc>
|
|
<source-position filename="gdate.h" line="145"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15524">%TRUE if the year is valid</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="year" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15519">year</doc>
|
|
<type name="DateYear" c:type="GDateYear"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
</record>
|
|
<enumeration name="DateDMY" c:type="GDateDMY">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="278">This enumeration isn't used in the API, but may be useful if you need
|
|
to mark a number as a day, month, or year.</doc>
|
|
<source-position filename="gdate.h" line="59"/>
|
|
<member name="day" value="0" c:identifier="G_DATE_DAY">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="280">a day</doc>
|
|
</member>
|
|
<member name="month" value="1" c:identifier="G_DATE_MONTH">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="281">a month</doc>
|
|
</member>
|
|
<member name="year" value="2" c:identifier="G_DATE_YEAR">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="282">a year</doc>
|
|
</member>
|
|
</enumeration>
|
|
<enumeration name="DateMonth" c:type="GDateMonth">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="297">Enumeration representing a month; values are #G_DATE_JANUARY,
|
|
#G_DATE_FEBRUARY, etc. #G_DATE_BAD_MONTH is the invalid value.</doc>
|
|
<source-position filename="gdate.h" line="88"/>
|
|
<member name="bad_month" value="0" c:identifier="G_DATE_BAD_MONTH">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="299">invalid value</doc>
|
|
</member>
|
|
<member name="january" value="1" c:identifier="G_DATE_JANUARY">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="300">January</doc>
|
|
</member>
|
|
<member name="february" value="2" c:identifier="G_DATE_FEBRUARY">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="301">February</doc>
|
|
</member>
|
|
<member name="march" value="3" c:identifier="G_DATE_MARCH">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="302">March</doc>
|
|
</member>
|
|
<member name="april" value="4" c:identifier="G_DATE_APRIL">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="303">April</doc>
|
|
</member>
|
|
<member name="may" value="5" c:identifier="G_DATE_MAY">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="304">May</doc>
|
|
</member>
|
|
<member name="june" value="6" c:identifier="G_DATE_JUNE">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="305">June</doc>
|
|
</member>
|
|
<member name="july" value="7" c:identifier="G_DATE_JULY">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="306">July</doc>
|
|
</member>
|
|
<member name="august" value="8" c:identifier="G_DATE_AUGUST">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="307">August</doc>
|
|
</member>
|
|
<member name="september" value="9" c:identifier="G_DATE_SEPTEMBER">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="308">September</doc>
|
|
</member>
|
|
<member name="october" value="10" c:identifier="G_DATE_OCTOBER">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="309">October</doc>
|
|
</member>
|
|
<member name="november" value="11" c:identifier="G_DATE_NOVEMBER">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="310">November</doc>
|
|
</member>
|
|
<member name="december" value="12" c:identifier="G_DATE_DECEMBER">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="311">December</doc>
|
|
</member>
|
|
</enumeration>
|
|
<record name="DateTime" c:type="GDateTime" version="2.26" glib:type-name="GDateTime" glib:get-type="g_date_time_get_type" c:symbol-prefix="date_time">
|
|
<doc xml:space="preserve" filename="gdatetime.h" line="89">`GDateTime` is an opaque structure whose members
|
|
cannot be accessed directly.</doc>
|
|
<source-position filename="gdatetime.h" line="97"/>
|
|
<constructor name="new" c:identifier="g_date_time_new" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15057">Creates a new #GDateTime corresponding to the given date and time in
|
|
the time zone @tz.
|
|
|
|
The @year must be between 1 and 9999, @month between 1 and 12 and @day
|
|
between 1 and 28, 29, 30 or 31 depending on the month and the year.
|
|
|
|
@hour must be between 0 and 23 and @minute must be between 0 and 59.
|
|
|
|
@seconds must be at least 0.0 and must be strictly less than 60.0.
|
|
It will be rounded down to the nearest microsecond.
|
|
|
|
If the given time is not representable in the given time zone (for
|
|
example, 02:30 on March 14th 2010 in Toronto, due to daylight savings
|
|
time) then the time will be rounded up to the nearest existing time
|
|
(in this case, 03:00). If this matters to you then you should verify
|
|
the return value for containing the same as the numbers you gave.
|
|
|
|
In the case that the given time is ambiguous in the given time zone
|
|
(for example, 01:30 on November 7th 2010 in Toronto, due to daylight
|
|
savings time) then the time falling within standard (ie:
|
|
non-daylight) time is taken.
|
|
|
|
It not considered a programmer error for the values to this function
|
|
to be out of range, but in the case that they are, the function will
|
|
return %NULL.
|
|
|
|
You should release the return value by calling g_date_time_unref()
|
|
when you are done with it.</doc>
|
|
<source-position filename="gdatetime.h" line="128"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15096">a new #GDateTime, or %NULL</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="tz" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15059">a #GTimeZone</doc>
|
|
<type name="TimeZone" c:type="GTimeZone*"/>
|
|
</parameter>
|
|
<parameter name="year" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15060">the year component of the date</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="month" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15061">the month component of the date</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="day" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15062">the day component of the date</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="hour" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15063">the hour component of the date</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="minute" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15064">the minute component of the date</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="seconds" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15065">the number of seconds past the minute</doc>
|
|
<type name="gdouble" c:type="gdouble"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="new_from_iso8601" c:identifier="g_date_time_new_from_iso8601" version="2.56">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15101">Creates a #GDateTime corresponding to the given
|
|
[ISO 8601 formatted string](https://en.wikipedia.org/wiki/ISO_8601)
|
|
@text. ISO 8601 strings of the form <date><sep><time><tz> are supported.
|
|
|
|
<sep> is the separator and can be either 'T', 't' or ' '.
|
|
|
|
<date> is in the form:
|
|
|
|
- `YYYY-MM-DD` - Year/month/day, e.g. 2016-08-24.
|
|
- `YYYYMMDD` - Same as above without dividers.
|
|
- `YYYY-DDD` - Ordinal day where DDD is from 001 to 366, e.g. 2016-237.
|
|
- `YYYYDDD` - Same as above without dividers.
|
|
- `YYYY-Www-D` - Week day where ww is from 01 to 52 and D from 1-7,
|
|
e.g. 2016-W34-3.
|
|
- `YYYYWwwD` - Same as above without dividers.
|
|
|
|
<time> is in the form:
|
|
|
|
- `hh:mm:ss(.sss)` - Hours, minutes, seconds (subseconds), e.g. 22:10:42.123.
|
|
- `hhmmss(.sss)` - Same as above without dividers.
|
|
|
|
<tz> is an optional timezone suffix of the form:
|
|
|
|
- `Z` - UTC.
|
|
- `+hh:mm` or `-hh:mm` - Offset from UTC in hours and minutes, e.g. +12:00.
|
|
- `+hh` or `-hh` - Offset from UTC in hours, e.g. +12.
|
|
|
|
If the timezone is not provided in @text it must be provided in @default_tz
|
|
(this field is otherwise ignored).
|
|
|
|
This call can fail (returning %NULL) if @text is not a valid ISO 8601
|
|
formatted string.
|
|
|
|
You should release the return value by calling g_date_time_unref()
|
|
when you are done with it.</doc>
|
|
<source-position filename="gdatetime.h" line="124"/>
|
|
<return-value transfer-ownership="full" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15143">a new #GDateTime, or %NULL</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="text" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15103">an ISO 8601 formatted time string.</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="default_tz" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15104">a #GTimeZone to use if the text doesn't contain a
|
|
timezone, or %NULL.</doc>
|
|
<type name="TimeZone" c:type="GTimeZone*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="new_from_timeval_local" c:identifier="g_date_time_new_from_timeval_local" version="2.26" deprecated="1" deprecated-version="2.62">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15148">Creates a #GDateTime corresponding to the given #GTimeVal @tv in the
|
|
local time zone.
|
|
|
|
The time contained in a #GTimeVal is always stored in the form of
|
|
seconds elapsed since 1970-01-01 00:00:00 UTC, regardless of the
|
|
local time offset.
|
|
|
|
This call can fail (returning %NULL) if @tv represents a time outside
|
|
of the supported range of #GDateTime.
|
|
|
|
You should release the return value by calling g_date_time_unref()
|
|
when you are done with it.</doc>
|
|
<doc-deprecated xml:space="preserve">#GTimeVal is not year-2038-safe. Use
|
|
g_date_time_new_from_unix_local() instead.</doc-deprecated>
|
|
<source-position filename="gdatetime.h" line="118"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15165">a new #GDateTime, or %NULL</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="tv" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15150">a #GTimeVal</doc>
|
|
<type name="TimeVal" c:type="const GTimeVal*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="new_from_timeval_utc" c:identifier="g_date_time_new_from_timeval_utc" version="2.26" deprecated="1" deprecated-version="2.62">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15172">Creates a #GDateTime corresponding to the given #GTimeVal @tv in UTC.
|
|
|
|
The time contained in a #GTimeVal is always stored in the form of
|
|
seconds elapsed since 1970-01-01 00:00:00 UTC.
|
|
|
|
This call can fail (returning %NULL) if @tv represents a time outside
|
|
of the supported range of #GDateTime.
|
|
|
|
You should release the return value by calling g_date_time_unref()
|
|
when you are done with it.</doc>
|
|
<doc-deprecated xml:space="preserve">#GTimeVal is not year-2038-safe. Use
|
|
g_date_time_new_from_unix_utc() instead.</doc-deprecated>
|
|
<source-position filename="gdatetime.h" line="120"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15187">a new #GDateTime, or %NULL</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="tv" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15174">a #GTimeVal</doc>
|
|
<type name="TimeVal" c:type="const GTimeVal*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="new_from_unix_local" c:identifier="g_date_time_new_from_unix_local" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15194">Creates a #GDateTime corresponding to the given Unix time @t in the
|
|
local time zone.
|
|
|
|
Unix time is the number of seconds that have elapsed since 1970-01-01
|
|
00:00:00 UTC, regardless of the local time offset.
|
|
|
|
This call can fail (returning %NULL) if @t represents a time outside
|
|
of the supported range of #GDateTime.
|
|
|
|
You should release the return value by calling g_date_time_unref()
|
|
when you are done with it.</doc>
|
|
<source-position filename="gdatetime.h" line="112"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15210">a new #GDateTime, or %NULL</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="t" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15196">the Unix time</doc>
|
|
<type name="gint64" c:type="gint64"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="new_from_unix_utc" c:identifier="g_date_time_new_from_unix_utc" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15215">Creates a #GDateTime corresponding to the given Unix time @t in UTC.
|
|
|
|
Unix time is the number of seconds that have elapsed since 1970-01-01
|
|
00:00:00 UTC.
|
|
|
|
This call can fail (returning %NULL) if @t represents a time outside
|
|
of the supported range of #GDateTime.
|
|
|
|
You should release the return value by calling g_date_time_unref()
|
|
when you are done with it.</doc>
|
|
<source-position filename="gdatetime.h" line="114"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15230">a new #GDateTime, or %NULL</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="t" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15217">the Unix time</doc>
|
|
<type name="gint64" c:type="gint64"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="new_local" c:identifier="g_date_time_new_local" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15235">Creates a new #GDateTime corresponding to the given date and time in
|
|
the local time zone.
|
|
|
|
This call is equivalent to calling g_date_time_new() with the time
|
|
zone returned by g_time_zone_new_local().</doc>
|
|
<source-position filename="gdatetime.h" line="136"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15250">a #GDateTime, or %NULL</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="year" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15237">the year component of the date</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="month" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15238">the month component of the date</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="day" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15239">the day component of the date</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="hour" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15240">the hour component of the date</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="minute" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15241">the minute component of the date</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="seconds" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15242">the number of seconds past the minute</doc>
|
|
<type name="gdouble" c:type="gdouble"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="new_now" c:identifier="g_date_time_new_now" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15255">Creates a #GDateTime corresponding to this exact instant in the given
|
|
time zone @tz. The time is as accurate as the system allows, to a
|
|
maximum accuracy of 1 microsecond.
|
|
|
|
This function will always succeed unless the system clock is set to
|
|
truly insane values (or unless GLib is still being used after the
|
|
year 9999).
|
|
|
|
You should release the return value by calling g_date_time_unref()
|
|
when you are done with it.</doc>
|
|
<source-position filename="gdatetime.h" line="105"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15270">a new #GDateTime, or %NULL</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="tz" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15257">a #GTimeZone</doc>
|
|
<type name="TimeZone" c:type="GTimeZone*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="new_now_local" c:identifier="g_date_time_new_now_local" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15275">Creates a #GDateTime corresponding to this exact instant in the local
|
|
time zone.
|
|
|
|
This is equivalent to calling g_date_time_new_now() with the time
|
|
zone returned by g_time_zone_new_local().</doc>
|
|
<source-position filename="gdatetime.h" line="107"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15284">a new #GDateTime, or %NULL</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</return-value>
|
|
</constructor>
|
|
<constructor name="new_now_utc" c:identifier="g_date_time_new_now_utc" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15289">Creates a #GDateTime corresponding to this exact instant in UTC.
|
|
|
|
This is equivalent to calling g_date_time_new_now() with the time
|
|
zone returned by g_time_zone_new_utc().</doc>
|
|
<source-position filename="gdatetime.h" line="109"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15297">a new #GDateTime, or %NULL</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</return-value>
|
|
</constructor>
|
|
<constructor name="new_utc" c:identifier="g_date_time_new_utc" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15302">Creates a new #GDateTime corresponding to the given date and time in
|
|
UTC.
|
|
|
|
This call is equivalent to calling g_date_time_new() with the time
|
|
zone returned by g_time_zone_new_utc().</doc>
|
|
<source-position filename="gdatetime.h" line="143"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15317">a #GDateTime, or %NULL</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="year" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15304">the year component of the date</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="month" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15305">the month component of the date</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="day" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15306">the day component of the date</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="hour" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15307">the hour component of the date</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="minute" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15308">the minute component of the date</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="seconds" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15309">the number of seconds past the minute</doc>
|
|
<type name="gdouble" c:type="gdouble"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<method name="add" c:identifier="g_date_time_add" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14486">Creates a copy of @datetime and adds the specified timespan to the copy.</doc>
|
|
<source-position filename="gdatetime.h" line="152"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14493">the newly created #GDateTime which should be freed with
|
|
g_date_time_unref().</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="datetime" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14488">a #GDateTime</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</instance-parameter>
|
|
<parameter name="timespan" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14489">a #GTimeSpan</doc>
|
|
<type name="TimeSpan" c:type="GTimeSpan"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="add_days" c:identifier="g_date_time_add_days" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14499">Creates a copy of @datetime and adds the specified number of days to the
|
|
copy. Add negative values to subtract days.</doc>
|
|
<source-position filename="gdatetime.h" line="169"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14507">the newly created #GDateTime which should be freed with
|
|
g_date_time_unref().</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="datetime" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14501">a #GDateTime</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</instance-parameter>
|
|
<parameter name="days" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14502">the number of days</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="add_full" c:identifier="g_date_time_add_full" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14513">Creates a new #GDateTime adding the specified values to the current date and
|
|
time in @datetime. Add negative values to subtract.</doc>
|
|
<source-position filename="gdatetime.h" line="187"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14526">the newly created #GDateTime that should be freed with
|
|
g_date_time_unref().</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="datetime" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14515">a #GDateTime</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</instance-parameter>
|
|
<parameter name="years" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14516">the number of years to add</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="months" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14517">the number of months to add</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="days" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14518">the number of days to add</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="hours" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14519">the number of hours to add</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="minutes" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14520">the number of minutes to add</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="seconds" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14521">the number of seconds to add</doc>
|
|
<type name="gdouble" c:type="gdouble"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="add_hours" c:identifier="g_date_time_add_hours" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14532">Creates a copy of @datetime and adds the specified number of hours.
|
|
Add negative values to subtract hours.</doc>
|
|
<source-position filename="gdatetime.h" line="174"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14540">the newly created #GDateTime which should be freed with
|
|
g_date_time_unref().</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="datetime" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14534">a #GDateTime</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</instance-parameter>
|
|
<parameter name="hours" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14535">the number of hours to add</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="add_minutes" c:identifier="g_date_time_add_minutes" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14546">Creates a copy of @datetime adding the specified number of minutes.
|
|
Add negative values to subtract minutes.</doc>
|
|
<source-position filename="gdatetime.h" line="178"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14554">the newly created #GDateTime which should be freed with
|
|
g_date_time_unref().</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="datetime" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14548">a #GDateTime</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</instance-parameter>
|
|
<parameter name="minutes" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14549">the number of minutes to add</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="add_months" c:identifier="g_date_time_add_months" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14560">Creates a copy of @datetime and adds the specified number of months to the
|
|
copy. Add negative values to subtract months.
|
|
|
|
The day of the month of the resulting #GDateTime is clamped to the number
|
|
of days in the updated calendar month. For example, if adding 1 month to
|
|
31st January 2018, the result would be 28th February 2018. In 2020 (a leap
|
|
year), the result would be 29th February.</doc>
|
|
<source-position filename="gdatetime.h" line="161"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14573">the newly created #GDateTime which should be freed with
|
|
g_date_time_unref().</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="datetime" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14562">a #GDateTime</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</instance-parameter>
|
|
<parameter name="months" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14563">the number of months</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="add_seconds" c:identifier="g_date_time_add_seconds" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14579">Creates a copy of @datetime and adds the specified number of seconds.
|
|
Add negative values to subtract seconds.</doc>
|
|
<source-position filename="gdatetime.h" line="182"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14587">the newly created #GDateTime which should be freed with
|
|
g_date_time_unref().</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="datetime" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14581">a #GDateTime</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</instance-parameter>
|
|
<parameter name="seconds" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14582">the number of seconds to add</doc>
|
|
<type name="gdouble" c:type="gdouble"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="add_weeks" c:identifier="g_date_time_add_weeks" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14593">Creates a copy of @datetime and adds the specified number of weeks to the
|
|
copy. Add negative values to subtract weeks.</doc>
|
|
<source-position filename="gdatetime.h" line="165"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14601">the newly created #GDateTime which should be freed with
|
|
g_date_time_unref().</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="datetime" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14595">a #GDateTime</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</instance-parameter>
|
|
<parameter name="weeks" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14596">the number of weeks</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="add_years" c:identifier="g_date_time_add_years" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14607">Creates a copy of @datetime and adds the specified number of years to the
|
|
copy. Add negative values to subtract years.
|
|
|
|
As with g_date_time_add_months(), if the resulting date would be 29th
|
|
February on a non-leap year, the day will be clamped to 28th February.</doc>
|
|
<source-position filename="gdatetime.h" line="157"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14618">the newly created #GDateTime which should be freed with
|
|
g_date_time_unref().</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="datetime" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14609">a #GDateTime</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</instance-parameter>
|
|
<parameter name="years" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14610">the number of years</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="difference" c:identifier="g_date_time_difference" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14638">Calculates the difference in time between @end and @begin. The
|
|
#GTimeSpan that is returned is effectively @end - @begin (ie:
|
|
positive if the first parameter is larger).</doc>
|
|
<source-position filename="gdatetime.h" line="199"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14647">the difference between the two #GDateTime, as a time
|
|
span expressed in microseconds.</doc>
|
|
<type name="TimeSpan" c:type="GTimeSpan"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="end" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14640">a #GDateTime</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</instance-parameter>
|
|
<parameter name="begin" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14641">a #GDateTime</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="format" c:identifier="g_date_time_format" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14668">Creates a newly allocated string representing the requested @format.
|
|
|
|
The format strings understood by this function are a subset of the
|
|
strftime() format language as specified by C99. The \%D, \%U and \%W
|
|
conversions are not supported, nor is the 'E' modifier. The GNU
|
|
extensions \%k, \%l, \%s and \%P are supported, however, as are the
|
|
'0', '_' and '-' modifiers.
|
|
|
|
In contrast to strftime(), this function always produces a UTF-8
|
|
string, regardless of the current locale. Note that the rendering of
|
|
many formats is locale-dependent and may not match the strftime()
|
|
output exactly.
|
|
|
|
The following format specifiers are supported:
|
|
|
|
- \%a: the abbreviated weekday name according to the current locale
|
|
- \%A: the full weekday name according to the current locale
|
|
- \%b: the abbreviated month name according to the current locale
|
|
- \%B: the full month name according to the current locale
|
|
- \%c: the preferred date and time representation for the current locale
|
|
- \%C: the century number (year/100) as a 2-digit integer (00-99)
|
|
- \%d: the day of the month as a decimal number (range 01 to 31)
|
|
- \%e: the day of the month as a decimal number (range 1 to 31)
|
|
- \%F: equivalent to `%Y-%m-%d` (the ISO 8601 date format)
|
|
- \%g: the last two digits of the ISO 8601 week-based year as a
|
|
decimal number (00-99). This works well with \%V and \%u.
|
|
- \%G: the ISO 8601 week-based year as a decimal number. This works
|
|
well with \%V and \%u.
|
|
- \%h: equivalent to \%b
|
|
- \%H: the hour as a decimal number using a 24-hour clock (range 00 to 23)
|
|
- \%I: the hour as a decimal number using a 12-hour clock (range 01 to 12)
|
|
- \%j: the day of the year as a decimal number (range 001 to 366)
|
|
- \%k: the hour (24-hour clock) as a decimal number (range 0 to 23);
|
|
single digits are preceded by a blank
|
|
- \%l: the hour (12-hour clock) as a decimal number (range 1 to 12);
|
|
single digits are preceded by a blank
|
|
- \%m: the month as a decimal number (range 01 to 12)
|
|
- \%M: the minute as a decimal number (range 00 to 59)
|
|
- \%p: either "AM" or "PM" according to the given time value, or the
|
|
corresponding strings for the current locale. Noon is treated as
|
|
"PM" and midnight as "AM".
|
|
- \%P: like \%p but lowercase: "am" or "pm" or a corresponding string for
|
|
the current locale
|
|
- \%r: the time in a.m. or p.m. notation
|
|
- \%R: the time in 24-hour notation (\%H:\%M)
|
|
- \%s: the number of seconds since the Epoch, that is, since 1970-01-01
|
|
00:00:00 UTC
|
|
- \%S: the second as a decimal number (range 00 to 60)
|
|
- \%t: a tab character
|
|
- \%T: the time in 24-hour notation with seconds (\%H:\%M:\%S)
|
|
- \%u: the ISO 8601 standard day of the week as a decimal, range 1 to 7,
|
|
Monday being 1. This works well with \%G and \%V.
|
|
- \%V: the ISO 8601 standard week number of the current year as a decimal
|
|
number, range 01 to 53, where week 1 is the first week that has at
|
|
least 4 days in the new year. See g_date_time_get_week_of_year().
|
|
This works well with \%G and \%u.
|
|
- \%w: the day of the week as a decimal, range 0 to 6, Sunday being 0.
|
|
This is not the ISO 8601 standard format -- use \%u instead.
|
|
- \%x: the preferred date representation for the current locale without
|
|
the time
|
|
- \%X: the preferred time representation for the current locale without
|
|
the date
|
|
- \%y: the year as a decimal number without the century
|
|
- \%Y: the year as a decimal number including the century
|
|
- \%z: the time zone as an offset from UTC (+hhmm)
|
|
- \%:z: the time zone as an offset from UTC (+hh:mm).
|
|
This is a gnulib strftime() extension. Since: 2.38
|
|
- \%::z: the time zone as an offset from UTC (+hh:mm:ss). This is a
|
|
gnulib strftime() extension. Since: 2.38
|
|
- \%:::z: the time zone as an offset from UTC, with : to necessary
|
|
precision (e.g., -04, +05:30). This is a gnulib strftime() extension. Since: 2.38
|
|
- \%Z: the time zone or name or abbreviation
|
|
- \%\%: a literal \% character
|
|
|
|
Some conversion specifications can be modified by preceding the
|
|
conversion specifier by one or more modifier characters. The
|
|
following modifiers are supported for many of the numeric
|
|
conversions:
|
|
|
|
- O: Use alternative numeric symbols, if the current locale supports those.
|
|
- _: Pad a numeric result with spaces. This overrides the default padding
|
|
for the specifier.
|
|
- -: Do not pad a numeric result. This overrides the default padding
|
|
for the specifier.
|
|
- 0: Pad a numeric result with zeros. This overrides the default padding
|
|
for the specifier.
|
|
|
|
Additionally, when O is used with B, b, or h, it produces the alternative
|
|
form of a month name. The alternative form should be used when the month
|
|
name is used without a day number (e.g., standalone). It is required in
|
|
some languages (Baltic, Slavic, Greek, and more) due to their grammatical
|
|
rules. For other languages there is no difference. \%OB is a GNU and BSD
|
|
strftime() extension expected to be added to the future POSIX specification,
|
|
\%Ob and \%Oh are GNU strftime() extensions. Since: 2.56</doc>
|
|
<source-position filename="gdatetime.h" line="267"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14769">a newly allocated string formatted to the requested format
|
|
or %NULL in the case that there was an error (such as a format specifier
|
|
not being supported in the current locale). The string
|
|
should be freed with g_free().</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="datetime" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14670">A #GDateTime</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</instance-parameter>
|
|
<parameter name="format" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14671">a valid UTF-8 string, containing the format for the
|
|
#GDateTime</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="format_iso8601" c:identifier="g_date_time_format_iso8601" version="2.62">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14777">Format @datetime in [ISO 8601 format](https://en.wikipedia.org/wiki/ISO_8601),
|
|
including the date, time and time zone, and return that as a UTF-8 encoded
|
|
string.</doc>
|
|
<source-position filename="gdatetime.h" line="270"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14785">a newly allocated string formatted in ISO 8601 format
|
|
or %NULL in the case that there was an error. The string
|
|
should be freed with g_free().</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="datetime" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14779">A #GDateTime</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_day_of_month" c:identifier="g_date_time_get_day_of_month" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14792">Retrieves the day of the month represented by @datetime in the gregorian
|
|
calendar.</doc>
|
|
<source-position filename="gdatetime.h" line="218"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14799">the day of the month</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="datetime" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14794">a #GDateTime</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_day_of_week" c:identifier="g_date_time_get_day_of_week" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14804">Retrieves the ISO 8601 day of the week on which @datetime falls (1 is
|
|
Monday, 2 is Tuesday... 7 is Sunday).</doc>
|
|
<source-position filename="gdatetime.h" line="225"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14811">the day of the week</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="datetime" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14806">a #GDateTime</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_day_of_year" c:identifier="g_date_time_get_day_of_year" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14816">Retrieves the day of the year represented by @datetime in the Gregorian
|
|
calendar.</doc>
|
|
<source-position filename="gdatetime.h" line="228"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14823">the day of the year</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="datetime" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14818">a #GDateTime</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_hour" c:identifier="g_date_time_get_hour" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14828">Retrieves the hour of the day represented by @datetime</doc>
|
|
<source-position filename="gdatetime.h" line="231"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14834">the hour of the day</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="datetime" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14830">a #GDateTime</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_microsecond" c:identifier="g_date_time_get_microsecond" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14839">Retrieves the microsecond of the date represented by @datetime</doc>
|
|
<source-position filename="gdatetime.h" line="237"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14845">the microsecond of the second</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="datetime" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14841">a #GDateTime</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_minute" c:identifier="g_date_time_get_minute" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14850">Retrieves the minute of the hour represented by @datetime</doc>
|
|
<source-position filename="gdatetime.h" line="233"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14856">the minute of the hour</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="datetime" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14852">a #GDateTime</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_month" c:identifier="g_date_time_get_month" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14861">Retrieves the month of the year represented by @datetime in the Gregorian
|
|
calendar.</doc>
|
|
<source-position filename="gdatetime.h" line="216"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14868">the month represented by @datetime</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="datetime" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14863">a #GDateTime</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_second" c:identifier="g_date_time_get_second" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14873">Retrieves the second of the minute represented by @datetime</doc>
|
|
<source-position filename="gdatetime.h" line="235"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14879">the second represented by @datetime</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="datetime" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14875">a #GDateTime</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_seconds" c:identifier="g_date_time_get_seconds" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14884">Retrieves the number of seconds since the start of the last minute,
|
|
including the fractional part.</doc>
|
|
<source-position filename="gdatetime.h" line="239"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14891">the number of seconds</doc>
|
|
<type name="gdouble" c:type="gdouble"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="datetime" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14886">a #GDateTime</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_timezone" c:identifier="g_date_time_get_timezone" version="2.58">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14896">Get the time zone for this @datetime.</doc>
|
|
<source-position filename="gdatetime.h" line="252"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14902">the time zone</doc>
|
|
<type name="TimeZone" c:type="GTimeZone*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="datetime" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14898">a #GDateTime</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_timezone_abbreviation" c:identifier="g_date_time_get_timezone_abbreviation" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14907">Determines the time zone abbreviation to be used at the time and in
|
|
the time zone of @datetime.
|
|
|
|
For example, in Toronto this is currently "EST" during the winter
|
|
months and "EDT" during the summer months when daylight savings
|
|
time is in effect.</doc>
|
|
<source-position filename="gdatetime.h" line="254"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14918">the time zone abbreviation. The returned
|
|
string is owned by the #GDateTime and it should not be
|
|
modified or freed</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="datetime" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14909">a #GDateTime</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_utc_offset" c:identifier="g_date_time_get_utc_offset" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14925">Determines the offset to UTC in effect at the time and in the time
|
|
zone of @datetime.
|
|
|
|
The offset is the number of microseconds that you add to UTC time to
|
|
arrive at local time for the time zone (ie: negative numbers for time
|
|
zones west of GMT, positive numbers for east).
|
|
|
|
If @datetime represents UTC time, then the offset is always zero.</doc>
|
|
<source-position filename="gdatetime.h" line="250"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14938">the number of microseconds that should be added to UTC to
|
|
get the local time</doc>
|
|
<type name="TimeSpan" c:type="GTimeSpan"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="datetime" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14927">a #GDateTime</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_week_numbering_year" c:identifier="g_date_time_get_week_numbering_year" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14944">Returns the ISO 8601 week-numbering year in which the week containing
|
|
@datetime falls.
|
|
|
|
This function, taken together with g_date_time_get_week_of_year() and
|
|
g_date_time_get_day_of_week() can be used to determine the full ISO
|
|
week date on which @datetime falls.
|
|
|
|
This is usually equal to the normal Gregorian year (as returned by
|
|
g_date_time_get_year()), except as detailed below:
|
|
|
|
For Thursday, the week-numbering year is always equal to the usual
|
|
calendar year. For other days, the number is such that every day
|
|
within a complete week (Monday to Sunday) is contained within the
|
|
same week-numbering year.
|
|
|
|
For Monday, Tuesday and Wednesday occurring near the end of the year,
|
|
this may mean that the week-numbering year is one greater than the
|
|
calendar year (so that these days have the same week-numbering year
|
|
as the Thursday occurring early in the next year).
|
|
|
|
For Friday, Saturday and Sunday occurring near the start of the year,
|
|
this may mean that the week-numbering year is one less than the
|
|
calendar year (so that these days have the same week-numbering year
|
|
as the Thursday occurring late in the previous year).
|
|
|
|
An equivalent description is that the week-numbering year is equal to
|
|
the calendar year containing the majority of the days in the current
|
|
week (Monday to Sunday).
|
|
|
|
Note that January 1 0001 in the proleptic Gregorian calendar is a
|
|
Monday, so this function never returns 0.</doc>
|
|
<source-position filename="gdatetime.h" line="221"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14980">the ISO 8601 week-numbering year for @datetime</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="datetime" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14946">a #GDateTime</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_week_of_year" c:identifier="g_date_time_get_week_of_year" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14985">Returns the ISO 8601 week number for the week containing @datetime.
|
|
The ISO 8601 week number is the same for every day of the week (from
|
|
Moday through Sunday). That can produce some unusual results
|
|
(described below).
|
|
|
|
The first week of the year is week 1. This is the week that contains
|
|
the first Thursday of the year. Equivalently, this is the first week
|
|
that has more than 4 of its days falling within the calendar year.
|
|
|
|
The value 0 is never returned by this function. Days contained
|
|
within a year but occurring before the first ISO 8601 week of that
|
|
year are considered as being contained in the last week of the
|
|
previous year. Similarly, the final days of a calendar year may be
|
|
considered as being part of the first ISO 8601 week of the next year
|
|
if 4 or more days of that week are contained within the new year.</doc>
|
|
<source-position filename="gdatetime.h" line="223"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15005">the ISO 8601 week number for @datetime.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="datetime" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14987">a #GDateTime</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_year" c:identifier="g_date_time_get_year" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15010">Retrieves the year represented by @datetime in the Gregorian calendar.</doc>
|
|
<source-position filename="gdatetime.h" line="214"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15016">the year represented by @datetime</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="datetime" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15012">A #GDateTime</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_ymd" c:identifier="g_date_time_get_ymd" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15021">Retrieves the Gregorian day, month, and year of a given #GDateTime.</doc>
|
|
<source-position filename="gdatetime.h" line="208"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="datetime" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15023">a #GDateTime.</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</instance-parameter>
|
|
<parameter name="year" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15024">the return location for the gregorian year, or %NULL.</doc>
|
|
<type name="gint" c:type="gint*"/>
|
|
</parameter>
|
|
<parameter name="month" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15025">the return location for the month of the year, or %NULL.</doc>
|
|
<type name="gint" c:type="gint*"/>
|
|
</parameter>
|
|
<parameter name="day" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15026">the return location for the day of the month, or %NULL.</doc>
|
|
<type name="gint" c:type="gint*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="is_daylight_savings" c:identifier="g_date_time_is_daylight_savings" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15045">Determines if daylight savings time is in effect at the time and in
|
|
the time zone of @datetime.</doc>
|
|
<source-position filename="gdatetime.h" line="256"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15052">%TRUE if daylight savings time is in effect</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="datetime" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15047">a #GDateTime</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="ref" c:identifier="g_date_time_ref" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15322">Atomically increments the reference count of @datetime by one.</doc>
|
|
<source-position filename="gdatetime.h" line="102"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15328">the #GDateTime with the reference count increased</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="datetime" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15324">a #GDateTime</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="to_local" c:identifier="g_date_time_to_local" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15333">Creates a new #GDateTime corresponding to the same instant in time as
|
|
@datetime, but in the local time zone.
|
|
|
|
This call is equivalent to calling g_date_time_to_timezone() with the
|
|
time zone returned by g_time_zone_new_local().</doc>
|
|
<source-position filename="gdatetime.h" line="262"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15343">the newly created #GDateTime</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="datetime" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15335">a #GDateTime</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="to_timeval" c:identifier="g_date_time_to_timeval" version="2.26" deprecated="1" deprecated-version="2.62">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15348">Stores the instant in time that @datetime represents into @tv.
|
|
|
|
The time contained in a #GTimeVal is always stored in the form of
|
|
seconds elapsed since 1970-01-01 00:00:00 UTC, regardless of the time
|
|
zone associated with @datetime.
|
|
|
|
On systems where 'long' is 32bit (ie: all 32bit systems and all
|
|
Windows systems), a #GTimeVal is incapable of storing the entire
|
|
range of values that #GDateTime is capable of expressing. On those
|
|
systems, this function returns %FALSE to indicate that the time is
|
|
out of range.
|
|
|
|
On systems where 'long' is 64bit, this function never fails.</doc>
|
|
<doc-deprecated xml:space="preserve">#GTimeVal is not year-2038-safe. Use
|
|
g_date_time_to_unix() instead.</doc-deprecated>
|
|
<source-position filename="gdatetime.h" line="245"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15367">%TRUE if successful, else %FALSE</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="datetime" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15350">a #GDateTime</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</instance-parameter>
|
|
<parameter name="tv" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15351">a #GTimeVal to modify</doc>
|
|
<type name="TimeVal" c:type="GTimeVal*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="to_timezone" c:identifier="g_date_time_to_timezone" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15374">Create a new #GDateTime corresponding to the same instant in time as
|
|
@datetime, but in the time zone @tz.
|
|
|
|
This call can fail in the case that the time goes out of bounds. For
|
|
example, converting 0001-01-01 00:00:00 UTC to a time zone west of
|
|
Greenwich will fail (due to the year 0 being out of range).
|
|
|
|
You should release the return value by calling g_date_time_unref()
|
|
when you are done with it.</doc>
|
|
<source-position filename="gdatetime.h" line="259"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15389">a new #GDateTime, or %NULL</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="datetime" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15376">a #GDateTime</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</instance-parameter>
|
|
<parameter name="tz" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15377">the new #GTimeZone</doc>
|
|
<type name="TimeZone" c:type="GTimeZone*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="to_unix" c:identifier="g_date_time_to_unix" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15394">Gives the Unix time corresponding to @datetime, rounding down to the
|
|
nearest second.
|
|
|
|
Unix time is the number of seconds that have elapsed since 1970-01-01
|
|
00:00:00 UTC, regardless of the time zone associated with @datetime.</doc>
|
|
<source-position filename="gdatetime.h" line="242"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15404">the Unix time corresponding to @datetime</doc>
|
|
<type name="gint64" c:type="gint64"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="datetime" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15396">a #GDateTime</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="to_utc" c:identifier="g_date_time_to_utc" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15409">Creates a new #GDateTime corresponding to the same instant in time as
|
|
@datetime, but in UTC.
|
|
|
|
This call is equivalent to calling g_date_time_to_timezone() with the
|
|
time zone returned by g_time_zone_new_utc().</doc>
|
|
<source-position filename="gdatetime.h" line="264"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15419">the newly created #GDateTime</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="datetime" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15411">a #GDateTime</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="unref" c:identifier="g_date_time_unref" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15424">Atomically decrements the reference count of @datetime by one.
|
|
|
|
When the reference count reaches zero, the resources allocated by
|
|
@datetime are freed</doc>
|
|
<source-position filename="gdatetime.h" line="100"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="datetime" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15426">a #GDateTime</doc>
|
|
<type name="DateTime" c:type="GDateTime*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<function name="compare" c:identifier="g_date_time_compare" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14624">A comparison function for #GDateTimes that is suitable
|
|
as a #GCompareFunc. Both #GDateTimes must be non-%NULL.</doc>
|
|
<source-position filename="gdatetime.h" line="196"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14632">-1, 0 or 1 if @dt1 is less than, equal to or greater
|
|
than @dt2.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="dt1" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14626">first #GDateTime to compare</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
<parameter name="dt2" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14627">second #GDateTime to compare</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="equal" c:identifier="g_date_time_equal" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14653">Checks to see if @dt1 and @dt2 are equal.
|
|
|
|
Equal here means that they represent the same moment after converting
|
|
them to the same time zone.</doc>
|
|
<source-position filename="gdatetime.h" line="204"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14663">%TRUE if @dt1 and @dt2 are equal</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="dt1" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14655">a #GDateTime</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
<parameter name="dt2" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14656">a #GDateTime</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="hash" c:identifier="g_date_time_hash" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15034">Hashes @datetime into a #guint, suitable for use within #GHashTable.</doc>
|
|
<source-position filename="gdatetime.h" line="202"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15040">a #guint containing the hash</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="datetime" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15036">a #GDateTime</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
</record>
|
|
<enumeration name="DateWeekday" c:type="GDateWeekday">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="318">Enumeration representing a day of the week; #G_DATE_MONDAY,
|
|
#G_DATE_TUESDAY, etc. #G_DATE_BAD_WEEKDAY is an invalid weekday.</doc>
|
|
<source-position filename="gdate.h" line="72"/>
|
|
<member name="bad_weekday" value="0" c:identifier="G_DATE_BAD_WEEKDAY">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="320">invalid value</doc>
|
|
</member>
|
|
<member name="monday" value="1" c:identifier="G_DATE_MONDAY">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="321">Monday</doc>
|
|
</member>
|
|
<member name="tuesday" value="2" c:identifier="G_DATE_TUESDAY">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="322">Tuesday</doc>
|
|
</member>
|
|
<member name="wednesday" value="3" c:identifier="G_DATE_WEDNESDAY">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="323">Wednesday</doc>
|
|
</member>
|
|
<member name="thursday" value="4" c:identifier="G_DATE_THURSDAY">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="324">Thursday</doc>
|
|
</member>
|
|
<member name="friday" value="5" c:identifier="G_DATE_FRIDAY">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="325">Friday</doc>
|
|
</member>
|
|
<member name="saturday" value="6" c:identifier="G_DATE_SATURDAY">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="326">Saturday</doc>
|
|
</member>
|
|
<member name="sunday" value="7" c:identifier="G_DATE_SUNDAY">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="327">Sunday</doc>
|
|
</member>
|
|
</enumeration>
|
|
<record name="DebugKey" c:type="GDebugKey">
|
|
<doc xml:space="preserve" filename="gutils.h" line="143">Associates a string with a bit flag.
|
|
Used in g_parse_debug_string().</doc>
|
|
<source-position filename="gutils.h" line="156"/>
|
|
<field name="key" writable="1">
|
|
<doc xml:space="preserve" filename="gutils.h" line="145">the string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</field>
|
|
<field name="value" writable="1">
|
|
<doc xml:space="preserve" filename="gutils.h" line="146">the flag</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
</record>
|
|
<callback name="DestroyNotify" c:type="GDestroyNotify">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="343">Specifies the type of function which is called when a data element
|
|
is destroyed. It is passed the pointer to the data element and
|
|
should free any memory and resources allocated for it.</doc>
|
|
<source-position filename="gtypes.h" line="113"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="345">the data element.</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
<record name="Dir" c:type="GDir" disguised="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="353">An opaque structure representing an opened directory.</doc>
|
|
<source-position filename="gdir.h" line="37"/>
|
|
<method name="close" c:identifier="g_dir_close">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15613">Closes the directory and deallocates all related resources.</doc>
|
|
<source-position filename="gdir.h" line="48"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="dir" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15615">a #GDir* created by g_dir_open()</doc>
|
|
<type name="Dir" c:type="GDir*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="read_name" c:identifier="g_dir_read_name">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15666">Retrieves the name of another entry in the directory, or %NULL.
|
|
The order of entries returned from this function is not defined,
|
|
and may vary by file system or other operating-system dependent
|
|
factors.
|
|
|
|
%NULL may also be returned in case of errors. On Unix, you can
|
|
check `errno` to find out if %NULL was returned because of an error.
|
|
|
|
On Unix, the '.' and '..' entries are omitted, and the returned
|
|
name is in the on-disk encoding.
|
|
|
|
On Windows, as is true of all GLib functions which operate on
|
|
filenames, the returned name is in UTF-8.</doc>
|
|
<source-position filename="gdir.h" line="44"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15684">The entry's name or %NULL if there are no
|
|
more entries. The return value is owned by GLib and
|
|
must not be modified or freed.</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="dir" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15668">a #GDir* created by g_dir_open()</doc>
|
|
<type name="Dir" c:type="GDir*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="rewind" c:identifier="g_dir_rewind">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15690">Resets the given directory. The next call to g_dir_read_name()
|
|
will return the first entry again.</doc>
|
|
<source-position filename="gdir.h" line="46"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="dir" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15692">a #GDir* created by g_dir_open()</doc>
|
|
<type name="Dir" c:type="GDir*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<function name="make_tmp" c:identifier="g_dir_make_tmp" version="2.30" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15621">Creates a subdirectory in the preferred directory for temporary
|
|
files (as returned by g_get_tmp_dir()).
|
|
|
|
@tmpl should be a string in the GLib file name encoding containing
|
|
a sequence of six 'X' characters, as the parameter to g_mkstemp().
|
|
However, unlike these functions, the template should only be a
|
|
basename, no directory components are allowed. If template is
|
|
%NULL, a default template is used.
|
|
|
|
Note that in contrast to g_mkdtemp() (and mkdtemp()) @tmpl is not
|
|
modified, and might thus be a read-only literal string.</doc>
|
|
<source-position filename="gfileutils.h" line="119"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15639">The actual name used. This string
|
|
should be freed with g_free() when not needed any longer and is
|
|
is in the GLib file name encoding. In case of errors, %NULL is
|
|
returned and @error will be set.</doc>
|
|
<type name="filename" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="tmpl" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15623">Template for directory name,
|
|
as in g_mkdtemp(), basename only, or %NULL for a default template</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="open" c:identifier="g_dir_open" introspectable="0" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15647">Opens a directory for reading. The names of the files in the
|
|
directory can then be retrieved using g_dir_read_name(). Note
|
|
that the ordering is not defined.</doc>
|
|
<source-position filename="gdir.h" line="40"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15660">a newly allocated #GDir on success, %NULL on failure.
|
|
If non-%NULL, you must free the result with g_dir_close()
|
|
when you are finished with it.</doc>
|
|
<type name="Dir" c:type="GDir*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="path" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15649">the path to the directory you are interested in. On Unix
|
|
in the on-disk encoding. On Windows in UTF-8</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="flags" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15651">Currently must be set to 0. Reserved for future use.</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
</record>
|
|
<union name="DoubleIEEE754" c:type="GDoubleIEEE754">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="360">The #GFloatIEEE754 and #GDoubleIEEE754 unions are used to access the sign,
|
|
mantissa and exponent of IEEE floats and doubles. These unions are defined
|
|
as appropriate for a given platform. IEEE floats and doubles are supported
|
|
(used for storage) by at least Intel, PPC and Sparc.</doc>
|
|
<source-position filename="gtypes.h" line="524"/>
|
|
<field name="v_double" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="362">the double value</doc>
|
|
<type name="gdouble" c:type="gdouble"/>
|
|
</field>
|
|
<record name="mpn" c:type="mpn">
|
|
<source-position filename="gtypes.h" line="523"/>
|
|
<field name="mantissa_low" writable="1" bits="32">
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="mantissa_high" writable="1" bits="20">
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="biased_exponent" writable="1" bits="11">
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="sign" writable="1" bits="1">
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
</record>
|
|
</union>
|
|
<callback name="DuplicateFunc" c:type="GDuplicateFunc">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="371">The type of functions that are used to 'duplicate' an object.
|
|
What this means depends on the context, it could just be
|
|
incrementing the reference count, if @data is a ref-counted
|
|
object.</doc>
|
|
<source-position filename="gdataset.h" line="57"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="382">a duplicate of data</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="373">the data to duplicate</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1" closure="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="374">user data that was specified in
|
|
g_datalist_id_dup_data()</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
<constant name="E" value="2.718282" c:type="G_E">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3013">The base of natural logarithms.</doc>
|
|
<source-position filename="gtypes.h" line="171"/>
|
|
<type name="gdouble" c:type="gdouble"/>
|
|
</constant>
|
|
<function-macro name="ENCODE_VERSION" c:identifier="G_ENCODE_VERSION" introspectable="0">
|
|
<source-position filename="gversionmacros.h" line="34"/>
|
|
<parameters>
|
|
<parameter name="major">
|
|
</parameter>
|
|
<parameter name="minor">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<callback name="EqualFunc" c:type="GEqualFunc">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="386">Specifies the type of a function used to test two values for
|
|
equality. The function should return %TRUE if both values are equal
|
|
and %FALSE otherwise.</doc>
|
|
<source-position filename="gtypes.h" line="111"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="395">%TRUE if @a = @b; %FALSE otherwise</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="a" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="388">a value</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
<parameter name="b" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="389">a value to compare with</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
<record name="Error" c:type="GError" glib:type-name="GError" glib:get-type="g_error_get_type" c:symbol-prefix="error">
|
|
<doc xml:space="preserve" filename="gerror.h" line="32">The `GError` structure contains information about
|
|
an error that has occurred.</doc>
|
|
<source-position filename="gerror.h" line="48"/>
|
|
<field name="domain" writable="1">
|
|
<doc xml:space="preserve" filename="gerror.h" line="34">error domain, e.g. #G_FILE_ERROR</doc>
|
|
<type name="Quark" c:type="GQuark"/>
|
|
</field>
|
|
<field name="code" writable="1">
|
|
<doc xml:space="preserve" filename="gerror.h" line="35">error code, e.g. %G_FILE_ERROR_NOENT</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</field>
|
|
<field name="message" writable="1">
|
|
<doc xml:space="preserve" filename="gerror.h" line="36">human-readable informative error message</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</field>
|
|
<constructor name="new" c:identifier="g_error_new" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15968">Creates a new #GError with the given @domain and @code,
|
|
and a message formatted with @format.</doc>
|
|
<source-position filename="gerror.h" line="51"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15978">a new #GError</doc>
|
|
<type name="Error" c:type="GError*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="domain" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15970">error domain</doc>
|
|
<type name="Quark" c:type="GQuark"/>
|
|
</parameter>
|
|
<parameter name="code" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15971">error code</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="format" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15972">printf()-style format for error message</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="..." transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15973">parameters for message format</doc>
|
|
<varargs/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="new_literal" c:identifier="g_error_new_literal">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15982">Creates a new #GError; unlike g_error_new(), @message is
|
|
not a printf()-style format string. Use this function if
|
|
@message contains text you don't have control over,
|
|
that could include printf() escape sequences.</doc>
|
|
<source-position filename="gerror.h" line="57"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15993">a new #GError</doc>
|
|
<type name="Error" c:type="GError*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="domain" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15984">error domain</doc>
|
|
<type name="Quark" c:type="GQuark"/>
|
|
</parameter>
|
|
<parameter name="code" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15985">error code</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="message" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15986">error message</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="new_valist" c:identifier="g_error_new_valist" version="2.22" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15997">Creates a new #GError with the given @domain and @code,
|
|
and a message formatted with @format.</doc>
|
|
<source-position filename="gerror.h" line="61"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16007">a new #GError</doc>
|
|
<type name="Error" c:type="GError*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="domain" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15999">error domain</doc>
|
|
<type name="Quark" c:type="GQuark"/>
|
|
</parameter>
|
|
<parameter name="code" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16000">error code</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="format" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16001">printf()-style format for error message</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="args" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16002">#va_list of parameters for the message format</doc>
|
|
<type name="va_list" c:type="va_list"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<method name="copy" c:identifier="g_error_copy">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15929">Makes a copy of @error.</doc>
|
|
<source-position filename="gerror.h" line="69"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15935">a new #GError</doc>
|
|
<type name="Error" c:type="GError*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="error" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15931">a #GError</doc>
|
|
<type name="Error" c:type="const GError*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="free" c:identifier="g_error_free">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15939">Frees a #GError and associated resources.</doc>
|
|
<source-position filename="gerror.h" line="67"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="error" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15941">a #GError</doc>
|
|
<type name="Error" c:type="GError*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="matches" c:identifier="g_error_matches">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15947">Returns %TRUE if @error matches @domain and @code, %FALSE
|
|
otherwise. In particular, when @error is %NULL, %FALSE will
|
|
be returned.
|
|
|
|
If @domain contains a `FAILED` (or otherwise generic) error code,
|
|
you should generally not check for it explicitly, but should
|
|
instead treat any not-explicitly-recognized error code as being
|
|
equivalent to the `FAILED` code. This way, if the domain is
|
|
extended in the future to provide a more specific error code for
|
|
a certain case, your code will still work.</doc>
|
|
<source-position filename="gerror.h" line="72"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15964">whether @error has @domain and @code</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="error" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15949">a #GError</doc>
|
|
<type name="Error" c:type="const GError*"/>
|
|
</instance-parameter>
|
|
<parameter name="domain" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15950">an error domain</doc>
|
|
<type name="Quark" c:type="GQuark"/>
|
|
</parameter>
|
|
<parameter name="code" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15951">an error code</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
</record>
|
|
<enumeration name="ErrorType" c:type="GErrorType">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="399">The possible errors, used in the @v_error field
|
|
of #GTokenValue, when the token is a %G_TOKEN_ERROR.</doc>
|
|
<source-position filename="gscanner.h" line="72"/>
|
|
<member name="unknown" value="0" c:identifier="G_ERR_UNKNOWN">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="401">unknown error</doc>
|
|
</member>
|
|
<member name="unexp_eof" value="1" c:identifier="G_ERR_UNEXP_EOF">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="402">unexpected end of file</doc>
|
|
</member>
|
|
<member name="unexp_eof_in_string" value="2" c:identifier="G_ERR_UNEXP_EOF_IN_STRING">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="403">unterminated string constant</doc>
|
|
</member>
|
|
<member name="unexp_eof_in_comment" value="3" c:identifier="G_ERR_UNEXP_EOF_IN_COMMENT">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="404">unterminated comment</doc>
|
|
</member>
|
|
<member name="non_digit_in_const" value="4" c:identifier="G_ERR_NON_DIGIT_IN_CONST">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="405">non-digit character in a number</doc>
|
|
</member>
|
|
<member name="digit_radix" value="5" c:identifier="G_ERR_DIGIT_RADIX">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="406">digit beyond radix in a number</doc>
|
|
</member>
|
|
<member name="float_radix" value="6" c:identifier="G_ERR_FLOAT_RADIX">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="407">non-decimal floating point number</doc>
|
|
</member>
|
|
<member name="float_malformed" value="7" c:identifier="G_ERR_FLOAT_MALFORMED">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="408">malformed floating point number</doc>
|
|
</member>
|
|
</enumeration>
|
|
<enumeration name="FileError" c:type="GFileError" glib:error-domain="g-file-error-quark">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="415">Values corresponding to @errno codes returned from file operations
|
|
on UNIX. Unlike @errno codes, GFileError values are available on
|
|
all systems, even Windows. The exact meaning of each code depends
|
|
on what sort of file operation you were performing; the UNIX
|
|
documentation gives more details. The following error code descriptions
|
|
come from the GNU C Library manual, and are under the copyright
|
|
of that manual.
|
|
|
|
It's not very portable to make detailed assumptions about exactly
|
|
which errors will be returned from a given operation. Some errors
|
|
don't occur on some systems, etc., sometimes there are subtle
|
|
differences in when a system will report a given error, etc.</doc>
|
|
<source-position filename="gfileutils.h" line="60"/>
|
|
<member name="exist" value="0" c:identifier="G_FILE_ERROR_EXIST">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="417">Operation not permitted; only the owner of
|
|
the file (or other resource) or processes with special privileges
|
|
can perform the operation.</doc>
|
|
</member>
|
|
<member name="isdir" value="1" c:identifier="G_FILE_ERROR_ISDIR">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="420">File is a directory; you cannot open a directory
|
|
for writing, or create or remove hard links to it.</doc>
|
|
</member>
|
|
<member name="acces" value="2" c:identifier="G_FILE_ERROR_ACCES">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="422">Permission denied; the file permissions do not
|
|
allow the attempted operation.</doc>
|
|
</member>
|
|
<member name="nametoolong" value="3" c:identifier="G_FILE_ERROR_NAMETOOLONG">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="424">Filename too long.</doc>
|
|
</member>
|
|
<member name="noent" value="4" c:identifier="G_FILE_ERROR_NOENT">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="425">No such file or directory. This is a "file
|
|
doesn't exist" error for ordinary files that are referenced in
|
|
contexts where they are expected to already exist.</doc>
|
|
</member>
|
|
<member name="notdir" value="5" c:identifier="G_FILE_ERROR_NOTDIR">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="428">A file that isn't a directory was specified when
|
|
a directory is required.</doc>
|
|
</member>
|
|
<member name="nxio" value="6" c:identifier="G_FILE_ERROR_NXIO">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="430">No such device or address. The system tried to
|
|
use the device represented by a file you specified, and it
|
|
couldn't find the device. This can mean that the device file was
|
|
installed incorrectly, or that the physical device is missing or
|
|
not correctly attached to the computer.</doc>
|
|
</member>
|
|
<member name="nodev" value="7" c:identifier="G_FILE_ERROR_NODEV">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="435">The underlying file system of the specified file
|
|
does not support memory mapping.</doc>
|
|
</member>
|
|
<member name="rofs" value="8" c:identifier="G_FILE_ERROR_ROFS">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="437">The directory containing the new link can't be
|
|
modified because it's on a read-only file system.</doc>
|
|
</member>
|
|
<member name="txtbsy" value="9" c:identifier="G_FILE_ERROR_TXTBSY">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="439">Text file busy.</doc>
|
|
</member>
|
|
<member name="fault" value="10" c:identifier="G_FILE_ERROR_FAULT">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="440">You passed in a pointer to bad memory.
|
|
(GLib won't reliably return this, don't pass in pointers to bad
|
|
memory.)</doc>
|
|
</member>
|
|
<member name="loop" value="11" c:identifier="G_FILE_ERROR_LOOP">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="443">Too many levels of symbolic links were encountered
|
|
in looking up a file name. This often indicates a cycle of symbolic
|
|
links.</doc>
|
|
</member>
|
|
<member name="nospc" value="12" c:identifier="G_FILE_ERROR_NOSPC">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="446">No space left on device; write operation on a
|
|
file failed because the disk is full.</doc>
|
|
</member>
|
|
<member name="nomem" value="13" c:identifier="G_FILE_ERROR_NOMEM">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="448">No memory available. The system cannot allocate
|
|
more virtual memory because its capacity is full.</doc>
|
|
</member>
|
|
<member name="mfile" value="14" c:identifier="G_FILE_ERROR_MFILE">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="450">The current process has too many files open and
|
|
can't open any more. Duplicate descriptors do count toward this
|
|
limit.</doc>
|
|
</member>
|
|
<member name="nfile" value="15" c:identifier="G_FILE_ERROR_NFILE">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="453">There are too many distinct file openings in the
|
|
entire system.</doc>
|
|
</member>
|
|
<member name="badf" value="16" c:identifier="G_FILE_ERROR_BADF">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="455">Bad file descriptor; for example, I/O on a
|
|
descriptor that has been closed or reading from a descriptor open
|
|
only for writing (or vice versa).</doc>
|
|
</member>
|
|
<member name="inval" value="17" c:identifier="G_FILE_ERROR_INVAL">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="458">Invalid argument. This is used to indicate
|
|
various kinds of problems with passing the wrong argument to a
|
|
library function.</doc>
|
|
</member>
|
|
<member name="pipe" value="18" c:identifier="G_FILE_ERROR_PIPE">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="461">Broken pipe; there is no process reading from the
|
|
other end of a pipe. Every library function that returns this
|
|
error code also generates a 'SIGPIPE' signal; this signal
|
|
terminates the program if not handled or blocked. Thus, your
|
|
program will never actually see this code unless it has handled
|
|
or blocked 'SIGPIPE'.</doc>
|
|
</member>
|
|
<member name="again" value="19" c:identifier="G_FILE_ERROR_AGAIN">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="467">Resource temporarily unavailable; the call might
|
|
work if you try again later.</doc>
|
|
</member>
|
|
<member name="intr" value="20" c:identifier="G_FILE_ERROR_INTR">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="469">Interrupted function call; an asynchronous signal
|
|
occurred and prevented completion of the call. When this
|
|
happens, you should try the call again.</doc>
|
|
</member>
|
|
<member name="io" value="21" c:identifier="G_FILE_ERROR_IO">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="472">Input/output error; usually used for physical read
|
|
or write errors. i.e. the disk or other physical device hardware
|
|
is returning errors.</doc>
|
|
</member>
|
|
<member name="perm" value="22" c:identifier="G_FILE_ERROR_PERM">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="475">Operation not permitted; only the owner of the
|
|
file (or other resource) or processes with special privileges can
|
|
perform the operation.</doc>
|
|
</member>
|
|
<member name="nosys" value="23" c:identifier="G_FILE_ERROR_NOSYS">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="478">Function not implemented; this indicates that
|
|
the system is missing some functionality.</doc>
|
|
</member>
|
|
<member name="failed" value="24" c:identifier="G_FILE_ERROR_FAILED">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="480">Does not correspond to a UNIX error code; this
|
|
is the standard "failed for unspecified reason" error code present
|
|
in all #GError error code enumerations. Returned if no specific
|
|
code applies.</doc>
|
|
</member>
|
|
</enumeration>
|
|
<bitfield name="FileTest" c:type="GFileTest">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="500">A test to perform on a file using g_file_test().</doc>
|
|
<source-position filename="gfileutils.h" line="73"/>
|
|
<member name="is_regular" value="1" c:identifier="G_FILE_TEST_IS_REGULAR">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="502">%TRUE if the file is a regular file
|
|
(not a directory). Note that this test will also return %TRUE
|
|
if the tested file is a symlink to a regular file.</doc>
|
|
</member>
|
|
<member name="is_symlink" value="2" c:identifier="G_FILE_TEST_IS_SYMLINK">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="505">%TRUE if the file is a symlink.</doc>
|
|
</member>
|
|
<member name="is_dir" value="4" c:identifier="G_FILE_TEST_IS_DIR">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="506">%TRUE if the file is a directory.</doc>
|
|
</member>
|
|
<member name="is_executable" value="8" c:identifier="G_FILE_TEST_IS_EXECUTABLE">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="507">%TRUE if the file is executable.</doc>
|
|
</member>
|
|
<member name="exists" value="16" c:identifier="G_FILE_TEST_EXISTS">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="508">%TRUE if the file exists. It may or may not
|
|
be a regular file.</doc>
|
|
</member>
|
|
</bitfield>
|
|
<union name="FloatIEEE754" c:type="GFloatIEEE754">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="515">The #GFloatIEEE754 and #GDoubleIEEE754 unions are used to access the sign,
|
|
mantissa and exponent of IEEE floats and doubles. These unions are defined
|
|
as appropriate for a given platform. IEEE floats and doubles are supported
|
|
(used for storage) by at least Intel, PPC and Sparc.</doc>
|
|
<source-position filename="gtypes.h" line="514"/>
|
|
<field name="v_float" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="517">the double value</doc>
|
|
<type name="gfloat" c:type="gfloat"/>
|
|
</field>
|
|
<record name="mpn" c:type="mpn">
|
|
<source-position filename="gtypes.h" line="513"/>
|
|
<field name="mantissa" writable="1" bits="23">
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="biased_exponent" writable="1" bits="8">
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="sign" writable="1" bits="1">
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
</record>
|
|
</union>
|
|
<bitfield name="FormatSizeFlags" c:type="GFormatSizeFlags">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="526">Flags to modify the format of the string returned by g_format_size_full().</doc>
|
|
<source-position filename="gutils.h" line="186"/>
|
|
<member name="default" value="0" c:identifier="G_FORMAT_SIZE_DEFAULT">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="528">behave the same as g_format_size()</doc>
|
|
</member>
|
|
<member name="long_format" value="1" c:identifier="G_FORMAT_SIZE_LONG_FORMAT">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="529">include the exact number of bytes as part
|
|
of the returned string. For example, "45.6 kB (45,612 bytes)".</doc>
|
|
</member>
|
|
<member name="iec_units" value="2" c:identifier="G_FORMAT_SIZE_IEC_UNITS">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="531">use IEC (base 1024) units with "KiB"-style
|
|
suffixes. IEC units should only be used for reporting things with
|
|
a strong "power of 2" basis, like RAM sizes or RAID stripe sizes.
|
|
Network and storage sizes should be reported in the normal SI units.</doc>
|
|
</member>
|
|
<member name="bits" value="4" c:identifier="G_FORMAT_SIZE_BITS">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="535">set the size as a quantity in bits, rather than
|
|
bytes, and return units in bits. For example, ‘Mb’ rather than ‘MB’.</doc>
|
|
</member>
|
|
</bitfield>
|
|
<callback name="FreeFunc" c:type="GFreeFunc">
|
|
<doc xml:space="preserve" filename="gtypes.h" line="135">Declares a type of function which takes an arbitrary
|
|
data pointer argument and has no return value. It is
|
|
not currently used in GLib or GTK+.</doc>
|
|
<source-position filename="gtypes.h" line="143"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="gtypes.h" line="137">a data pointer</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
<callback name="Func" c:type="GFunc">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="542">Specifies the type of functions passed to g_list_foreach() and
|
|
g_slist_foreach().</doc>
|
|
<source-position filename="gtypes.h" line="114"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="544">the element's data</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1" closure="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="545">user data passed to g_list_foreach() or g_slist_foreach()</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
<constant name="GINT16_FORMAT" value="hi" c:type="G_GINT16_FORMAT">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3038">This is the platform dependent conversion specifier for scanning and
|
|
printing values of type #gint16. It is a string literal, but doesn't
|
|
include the percent-sign, such that you can add precision and length
|
|
modifiers between percent-sign and conversion specifier.
|
|
|
|
|[<!-- language="C" -->
|
|
gint16 in;
|
|
gint32 out;
|
|
sscanf ("42", "%" G_GINT16_FORMAT, &in)
|
|
out = in * 1000;
|
|
g_print ("%" G_GINT32_FORMAT, out);
|
|
]|</doc>
|
|
<source-position filename="glibconfig.h" line="47"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<constant name="GINT16_MODIFIER" value="h" c:type="G_GINT16_MODIFIER" version="2.4">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3056">The platform dependent length modifier for conversion specifiers
|
|
for scanning and printing values of type #gint16 or #guint16. It
|
|
is a string literal, but doesn't include the percent-sign, such
|
|
that you can add precision and length modifiers between percent-sign
|
|
and conversion specifier and append a conversion specifier.
|
|
|
|
The following example prints "0x7b";
|
|
|[<!-- language="C" -->
|
|
gint16 value = 123;
|
|
g_print ("%#" G_GINT16_MODIFIER "x", value);
|
|
]|</doc>
|
|
<source-position filename="glibconfig.h" line="46"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<constant name="GINT32_FORMAT" value="i" c:type="G_GINT32_FORMAT">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3075">This is the platform dependent conversion specifier for scanning
|
|
and printing values of type #gint32. See also #G_GINT16_FORMAT.</doc>
|
|
<source-position filename="glibconfig.h" line="55"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<constant name="GINT32_MODIFIER" value="" c:type="G_GINT32_MODIFIER" version="2.4">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3083">The platform dependent length modifier for conversion specifiers
|
|
for scanning and printing values of type #gint32 or #guint32. It
|
|
is a string literal. See also #G_GINT16_MODIFIER.</doc>
|
|
<source-position filename="glibconfig.h" line="54"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<function-macro name="GINT64_CONSTANT" c:identifier="G_GINT64_CONSTANT" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3094">This macro is used to insert 64-bit integer literals
|
|
into the source code.</doc>
|
|
<source-position filename="glibconfig.h" line="64"/>
|
|
<parameters>
|
|
<parameter name="val">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3096">a literal integer value, e.g. 0x1d636b02300a7aa7</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<constant name="GINT64_FORMAT" value="li" c:type="G_GINT64_FORMAT">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3103">This is the platform dependent conversion specifier for scanning
|
|
and printing values of type #gint64. See also #G_GINT16_FORMAT.
|
|
|
|
Some platforms do not support scanning and printing 64-bit integers,
|
|
even though the types are supported. On such platforms %G_GINT64_FORMAT
|
|
is not defined. Note that scanf() may not support 64-bit integers, even
|
|
if %G_GINT64_FORMAT is defined. Due to its weak error handling, scanf()
|
|
is not recommended for parsing anyway; consider using g_ascii_strtoull()
|
|
instead.</doc>
|
|
<source-position filename="glibconfig.h" line="68"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<constant name="GINT64_MODIFIER" value="l" c:type="G_GINT64_MODIFIER" version="2.4">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3118">The platform dependent length modifier for conversion specifiers
|
|
for scanning and printing values of type #gint64 or #guint64.
|
|
It is a string literal.
|
|
|
|
Some platforms do not support printing 64-bit integers, even
|
|
though the types are supported. On such platforms %G_GINT64_MODIFIER
|
|
is not defined.</doc>
|
|
<source-position filename="glibconfig.h" line="67"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<constant name="GINTPTR_FORMAT" value="li" c:type="G_GINTPTR_FORMAT" version="2.22">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3133">This is the platform dependent conversion specifier for scanning
|
|
and printing values of type #gintptr.</doc>
|
|
<source-position filename="glibconfig.h" line="108"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<constant name="GINTPTR_MODIFIER" value="l" c:type="G_GINTPTR_MODIFIER" version="2.22">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3143">The platform dependent length modifier for conversion specifiers
|
|
for scanning and printing values of type #gintptr or #guintptr.
|
|
It is a string literal.</doc>
|
|
<source-position filename="glibconfig.h" line="107"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<function-macro name="GNUC_ALLOC_SIZE" c:identifier="G_GNUC_ALLOC_SIZE" version="2.18" introspectable="0">
|
|
<doc xml:space="preserve" filename="gmacros.h" line="267">Expands to the GNU C `alloc_size` function attribute if the compiler
|
|
is a new enough gcc. This attribute tells the compiler that the
|
|
function returns a pointer to memory of a size that is specified
|
|
by the @xth function parameter.
|
|
|
|
Place the attribute after the function declaration, just before the
|
|
semicolon.
|
|
|
|
|[<!-- language="C" -->
|
|
gpointer g_malloc (gsize n_bytes) G_GNUC_MALLOC G_GNUC_ALLOC_SIZE(1);
|
|
]|
|
|
|
|
See the [GNU C documentation](https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-alloc_005fsize-function-attribute) for more details.</doc>
|
|
<source-position filename="gmacros.h" line="312"/>
|
|
<parameters>
|
|
<parameter name="x">
|
|
<doc xml:space="preserve" filename="gmacros.h" line="269">the index of the argument specifying the allocation size</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="GNUC_ALLOC_SIZE2" c:identifier="G_GNUC_ALLOC_SIZE2" version="2.18" introspectable="0">
|
|
<doc xml:space="preserve" filename="gmacros.h" line="288">Expands to the GNU C `alloc_size` function attribute if the compiler is a
|
|
new enough gcc. This attribute tells the compiler that the function returns
|
|
a pointer to memory of a size that is specified by the product of two
|
|
function parameters.
|
|
|
|
Place the attribute after the function declaration, just before the
|
|
semicolon.
|
|
|
|
|[<!-- language="C" -->
|
|
gpointer g_malloc_n (gsize n_blocks,
|
|
gsize n_block_bytes) G_GNUC_MALLOC G_GNUC_ALLOC_SIZE2(1, 2);
|
|
]|
|
|
|
|
See the [GNU C documentation](https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-alloc_005fsize-function-attribute) for more details.</doc>
|
|
<source-position filename="gmacros.h" line="313"/>
|
|
<parameters>
|
|
<parameter name="x">
|
|
<doc xml:space="preserve" filename="gmacros.h" line="290">the index of the argument specifying one factor of the allocation size</doc>
|
|
</parameter>
|
|
<parameter name="y">
|
|
<doc xml:space="preserve" filename="gmacros.h" line="291">the index of the argument specifying the second factor of the allocation size</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="GNUC_CHECK_VERSION" c:identifier="G_GNUC_CHECK_VERSION" version="2.42" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3221">Expands to a a check for a compiler with __GNUC__ defined and a version
|
|
greater than or equal to the major and minor numbers provided. For example,
|
|
the following would only match on compilers such as GCC 4.8 or newer.
|
|
|
|
|[<!-- language="C" -->
|
|
#if G_GNUC_CHECK_VERSION(4, 8)
|
|
#endif
|
|
]|</doc>
|
|
<source-position filename="gmacros.h" line="41"/>
|
|
<parameters>
|
|
<parameter name="major">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3223">major version to check against</doc>
|
|
</parameter>
|
|
<parameter name="minor">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3224">minor version to check against</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="GNUC_DEPRECATED_FOR" c:identifier="G_GNUC_DEPRECATED_FOR" version="2.26" introspectable="0">
|
|
<doc xml:space="preserve" filename="gmacros.h" line="590">Like %G_GNUC_DEPRECATED, but names the intended replacement for the
|
|
deprecated symbol if the version of gcc in use is new enough to support
|
|
custom deprecation messages.
|
|
|
|
Place the attribute after the declaration, just before the semicolon.
|
|
|
|
|[<!-- language="C" -->
|
|
int my_mistake (void) G_GNUC_DEPRECATED_FOR(my_replacement);
|
|
]|
|
|
|
|
See the [GNU C documentation](https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-deprecated-function-attribute) for more details.
|
|
|
|
Note that if @f is a macro, it will be expanded in the warning message.
|
|
You can enclose it in quotes to prevent this. (The quotes will show up
|
|
in the warning, but it's better than showing the macro expansion.)</doc>
|
|
<source-position filename="gmacros.h" line="610"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
<doc xml:space="preserve" filename="gmacros.h" line="592">the intended replacement for the deprecated symbol,
|
|
such as the name of a function</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="GNUC_FORMAT" c:identifier="G_GNUC_FORMAT" introspectable="0">
|
|
<doc xml:space="preserve" filename="gmacros.h" line="395">Expands to the GNU C `format_arg` function attribute if the compiler
|
|
is gcc. This function attribute specifies that a function takes a
|
|
format string for a `printf()`, `scanf()`, `strftime()` or `strfmon()` style
|
|
function and modifies it, so that the result can be passed to a `printf()`,
|
|
`scanf()`, `strftime()` or `strfmon()` style function (with the remaining
|
|
arguments to the format function the same as they would have been
|
|
for the unmodified string).
|
|
|
|
Place the attribute after the function declaration, just before the
|
|
semicolon.
|
|
|
|
See the [GNU C documentation](https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-Wformat-nonliteral-1) for more details.
|
|
|
|
|[<!-- language="C" -->
|
|
gchar *g_dgettext (gchar *domain_name, gchar *msgid) G_GNUC_FORMAT (2);
|
|
]|</doc>
|
|
<source-position filename="gmacros.h" line="507"/>
|
|
<parameters>
|
|
<parameter name="arg_idx">
|
|
<doc xml:space="preserve" filename="gmacros.h" line="397">the index of the argument</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<constant name="GNUC_FUNCTION" value="" c:type="G_GNUC_FUNCTION" deprecated="1" deprecated-version="2.16">
|
|
<doc xml:space="preserve" filename="gmacros.h" line="690">Expands to "" on all modern compilers, and to __FUNCTION__ on gcc
|
|
version 2.x. Don't use it.</doc>
|
|
<doc-deprecated xml:space="preserve">Use G_STRFUNC() instead</doc-deprecated>
|
|
<source-position filename="gmacros.h" line="703"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<constant name="GNUC_PRETTY_FUNCTION" value="" c:type="G_GNUC_PRETTY_FUNCTION" deprecated="1" deprecated-version="2.16">
|
|
<doc xml:space="preserve" filename="gmacros.h" line="699">Expands to "" on all modern compilers, and to __PRETTY_FUNCTION__
|
|
on gcc version 2.x. Don't use it.</doc>
|
|
<doc-deprecated xml:space="preserve">Use G_STRFUNC() instead</doc-deprecated>
|
|
<source-position filename="gmacros.h" line="704"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<function-macro name="GNUC_PRINTF" c:identifier="G_GNUC_PRINTF" introspectable="0">
|
|
<doc xml:space="preserve" filename="gmacros.h" line="319">Expands to the GNU C `format` function attribute if the compiler is gcc.
|
|
This is used for declaring functions which take a variable number of
|
|
arguments, with the same syntax as `printf()`. It allows the compiler
|
|
to type-check the arguments passed to the function.
|
|
|
|
Place the attribute after the function declaration, just before the
|
|
semicolon.
|
|
|
|
See the
|
|
[GNU C documentation](https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-Wformat-3288)
|
|
for more details.
|
|
|
|
|[<!-- language="C" -->
|
|
gint g_snprintf (gchar *string,
|
|
gulong n,
|
|
gchar const *format,
|
|
...) G_GNUC_PRINTF (3, 4);
|
|
]|</doc>
|
|
<source-position filename="gmacros.h" line="493"/>
|
|
<parameters>
|
|
<parameter name="format_idx">
|
|
<doc xml:space="preserve" filename="gmacros.h" line="321">the index of the argument corresponding to the
|
|
format string (the arguments are numbered from 1)</doc>
|
|
</parameter>
|
|
<parameter name="arg_idx">
|
|
<doc xml:space="preserve" filename="gmacros.h" line="323">the index of the first of the format arguments, or 0 if
|
|
there are no format arguments</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="GNUC_SCANF" c:identifier="G_GNUC_SCANF" introspectable="0">
|
|
<doc xml:space="preserve" filename="gmacros.h" line="346">Expands to the GNU C `format` function attribute if the compiler is gcc.
|
|
This is used for declaring functions which take a variable number of
|
|
arguments, with the same syntax as `scanf()`. It allows the compiler
|
|
to type-check the arguments passed to the function.
|
|
|
|
|[<!-- language="C" -->
|
|
int my_scanf (MyStream *stream,
|
|
const char *format,
|
|
...) G_GNUC_SCANF (2, 3);
|
|
int my_vscanf (MyStream *stream,
|
|
const char *format,
|
|
va_list ap) G_GNUC_SCANF (2, 0);
|
|
]|
|
|
|
|
See the
|
|
[GNU C documentation](https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-Wformat-3288)
|
|
for details.</doc>
|
|
<source-position filename="gmacros.h" line="495"/>
|
|
<parameters>
|
|
<parameter name="format_idx">
|
|
<doc xml:space="preserve" filename="gmacros.h" line="348">the index of the argument corresponding to
|
|
the format string (the arguments are numbered from 1)</doc>
|
|
</parameter>
|
|
<parameter name="arg_idx">
|
|
<doc xml:space="preserve" filename="gmacros.h" line="350">the index of the first of the format arguments, or 0 if
|
|
there are no format arguments</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="GNUC_STRFTIME" c:identifier="G_GNUC_STRFTIME" version="2.60" introspectable="0">
|
|
<doc xml:space="preserve" filename="gmacros.h" line="372">Expands to the GNU C `strftime` format function attribute if the compiler
|
|
is gcc. This is used for declaring functions which take a format argument
|
|
which is passed to `strftime()` or an API implementing its formats. It allows
|
|
the compiler check the format passed to the function.
|
|
|
|
|[<!-- language="C" -->
|
|
gsize my_strftime (MyBuffer *buffer,
|
|
const char *format,
|
|
const struct tm *tm) G_GNUC_STRFTIME (2);
|
|
]|
|
|
|
|
See the
|
|
[GNU C documentation](https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-Wformat-3288)
|
|
for details.</doc>
|
|
<source-position filename="gmacros.h" line="497"/>
|
|
<parameters>
|
|
<parameter name="format_idx">
|
|
<doc xml:space="preserve" filename="gmacros.h" line="374">the index of the argument corresponding to
|
|
the format string (the arguments are numbered from 1)</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="GOFFSET_CONSTANT" c:identifier="G_GOFFSET_CONSTANT" version="2.20" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3291">This macro is used to insert #goffset 64-bit integer literals
|
|
into the source code.
|
|
|
|
See also #G_GINT64_CONSTANT.</doc>
|
|
<source-position filename="glibconfig.h" line="94"/>
|
|
<parameters>
|
|
<parameter name="val">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3293">a literal integer value, e.g. 0x1d636b02300a7aa7</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<constant name="GSIZE_FORMAT" value="lu" c:type="G_GSIZE_FORMAT" version="2.6">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3325">This is the platform dependent conversion specifier for scanning
|
|
and printing values of type #gsize. See also #G_GINT16_FORMAT.</doc>
|
|
<source-position filename="glibconfig.h" line="81"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<constant name="GSIZE_MODIFIER" value="l" c:type="G_GSIZE_MODIFIER" version="2.6">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3335">The platform dependent length modifier for conversion specifiers
|
|
for scanning and printing values of type #gsize. It
|
|
is a string literal.</doc>
|
|
<source-position filename="glibconfig.h" line="79"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<constant name="GSSIZE_FORMAT" value="li" c:type="G_GSSIZE_FORMAT" version="2.6">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3346">This is the platform dependent conversion specifier for scanning
|
|
and printing values of type #gssize. See also #G_GINT16_FORMAT.</doc>
|
|
<source-position filename="glibconfig.h" line="82"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<constant name="GSSIZE_MODIFIER" value="l" c:type="G_GSSIZE_MODIFIER" version="2.6">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3356">The platform dependent length modifier for conversion specifiers
|
|
for scanning and printing values of type #gssize. It
|
|
is a string literal.</doc>
|
|
<source-position filename="glibconfig.h" line="80"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<constant name="GUINT16_FORMAT" value="hu" c:type="G_GUINT16_FORMAT">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3367">This is the platform dependent conversion specifier for scanning
|
|
and printing values of type #guint16. See also #G_GINT16_FORMAT</doc>
|
|
<source-position filename="glibconfig.h" line="48"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<constant name="GUINT32_FORMAT" value="u" c:type="G_GUINT32_FORMAT">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3375">This is the platform dependent conversion specifier for scanning
|
|
and printing values of type #guint32. See also #G_GINT16_FORMAT.</doc>
|
|
<source-position filename="glibconfig.h" line="56"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<function-macro name="GUINT64_CONSTANT" c:identifier="G_GUINT64_CONSTANT" version="2.10" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3383">This macro is used to insert 64-bit unsigned integer
|
|
literals into the source code.</doc>
|
|
<source-position filename="glibconfig.h" line="65"/>
|
|
<parameters>
|
|
<parameter name="val">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3385">a literal integer value, e.g. 0x1d636b02300a7aa7U</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<constant name="GUINT64_FORMAT" value="lu" c:type="G_GUINT64_FORMAT">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3394">This is the platform dependent conversion specifier for scanning
|
|
and printing values of type #guint64. See also #G_GINT16_FORMAT.
|
|
|
|
Some platforms do not support scanning and printing 64-bit integers,
|
|
even though the types are supported. On such platforms %G_GUINT64_FORMAT
|
|
is not defined. Note that scanf() may not support 64-bit integers, even
|
|
if %G_GINT64_FORMAT is defined. Due to its weak error handling, scanf()
|
|
is not recommended for parsing anyway; consider using g_ascii_strtoull()
|
|
instead.</doc>
|
|
<source-position filename="glibconfig.h" line="69"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<constant name="GUINTPTR_FORMAT" value="lu" c:type="G_GUINTPTR_FORMAT" version="2.22">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3409">This is the platform dependent conversion specifier
|
|
for scanning and printing values of type #guintptr.</doc>
|
|
<source-position filename="glibconfig.h" line="109"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<constant name="HAVE_GINT64" value="1" c:type="G_HAVE_GINT64">
|
|
<source-position filename="glibconfig.h" line="59"/>
|
|
<type name="gint" c:type="gint"/>
|
|
</constant>
|
|
<constant name="HAVE_GNUC_VARARGS" value="1" c:type="G_HAVE_GNUC_VARARGS">
|
|
<source-position filename="glibconfig.h" line="141"/>
|
|
<type name="gint" c:type="gint"/>
|
|
</constant>
|
|
<constant name="HAVE_GNUC_VISIBILITY" value="1" c:type="G_HAVE_GNUC_VISIBILITY">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3419">Defined to 1 if gcc-style visibility handling is supported.</doc>
|
|
<source-position filename="glibconfig.h" line="138"/>
|
|
<type name="gint" c:type="gint"/>
|
|
</constant>
|
|
<constant name="HAVE_GROWING_STACK" value="0" c:type="G_HAVE_GROWING_STACK">
|
|
<source-position filename="glibconfig.h" line="137"/>
|
|
<type name="gint" c:type="gint"/>
|
|
</constant>
|
|
<constant name="HAVE_ISO_VARARGS" value="1" c:type="G_HAVE_ISO_VARARGS">
|
|
<source-position filename="glibconfig.h" line="122"/>
|
|
<type name="gint" c:type="gint"/>
|
|
</constant>
|
|
<callback name="HFunc" c:type="GHFunc">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="552">Specifies the type of the function passed to g_hash_table_foreach().
|
|
It is called with each key/value pair, together with the @user_data
|
|
parameter which is passed to g_hash_table_foreach().</doc>
|
|
<source-position filename="gtypes.h" line="117"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="key" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="554">a key</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="value" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="555">the value corresponding to the key</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1" closure="2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="556">user data passed to g_hash_table_foreach()</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
<function-macro name="HOOK" c:identifier="G_HOOK" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3426">Casts a pointer to a `GHook*`.</doc>
|
|
<source-position filename="ghook.h" line="87"/>
|
|
<parameters>
|
|
<parameter name="hook">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3428">a pointer</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="HOOK_ACTIVE" c:identifier="G_HOOK_ACTIVE" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3434">Returns %TRUE if the #GHook is active, which is normally the case
|
|
until the #GHook is destroyed.</doc>
|
|
<source-position filename="ghook.h" line="89"/>
|
|
<parameters>
|
|
<parameter name="hook">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3436">a #GHook</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="HOOK_FLAGS" c:identifier="G_HOOK_FLAGS" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3445">Gets the flags of a hook.</doc>
|
|
<source-position filename="ghook.h" line="88"/>
|
|
<parameters>
|
|
<parameter name="hook">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3447">a #GHook</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<constant name="HOOK_FLAG_USER_SHIFT" value="4" c:type="G_HOOK_FLAG_USER_SHIFT">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3453">The position of the first bit which is not reserved for internal
|
|
use be the #GHook implementation, i.e.
|
|
`1 << G_HOOK_FLAG_USER_SHIFT` is the first
|
|
bit which can be used for application-defined flags.</doc>
|
|
<source-position filename="ghook.h" line="59"/>
|
|
<type name="gint" c:type="gint"/>
|
|
</constant>
|
|
<function-macro name="HOOK_IN_CALL" c:identifier="G_HOOK_IN_CALL" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3463">Returns %TRUE if the #GHook function is currently executing.</doc>
|
|
<source-position filename="ghook.h" line="91"/>
|
|
<parameters>
|
|
<parameter name="hook">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3465">a #GHook</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="HOOK_IS_UNLINKED" c:identifier="G_HOOK_IS_UNLINKED" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3473">Returns %TRUE if the #GHook is not in a #GHookList.</doc>
|
|
<source-position filename="ghook.h" line="96"/>
|
|
<parameters>
|
|
<parameter name="hook">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3475">a #GHook</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="HOOK_IS_VALID" c:identifier="G_HOOK_IS_VALID" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3483">Returns %TRUE if the #GHook is valid, i.e. it is in a #GHookList,
|
|
it is active and it has not been destroyed.</doc>
|
|
<source-position filename="ghook.h" line="93"/>
|
|
<parameters>
|
|
<parameter name="hook">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3485">a #GHook</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<callback name="HRFunc" c:type="GHRFunc">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="564">Specifies the type of the function passed to
|
|
g_hash_table_foreach_remove(). It is called with each key/value
|
|
pair, together with the @user_data parameter passed to
|
|
g_hash_table_foreach_remove(). It should return %TRUE if the
|
|
key/value pair should be removed from the #GHashTable.</doc>
|
|
<source-position filename="ghash.h" line="39"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="576">%TRUE if the key/value pair should be removed from the
|
|
#GHashTable</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="key" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="566">a key</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="value" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="567">the value associated with the key</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1" closure="2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="568">user data passed to g_hash_table_remove()</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
<callback name="HashFunc" c:type="GHashFunc">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="581">Specifies the type of the hash function which is passed to
|
|
g_hash_table_new() when a #GHashTable is created.
|
|
|
|
The function is passed a key and should return a #guint hash value.
|
|
The functions g_direct_hash(), g_int_hash() and g_str_hash() provide
|
|
hash functions which can be used when the key is a #gpointer, #gint*,
|
|
and #gchar* respectively.
|
|
|
|
g_direct_hash() is also the appropriate hash function for keys
|
|
of the form `GINT_TO_POINTER (n)` (or similar macros).
|
|
|
|
A good hash functions should produce
|
|
hash values that are evenly distributed over a fairly large range.
|
|
The modulus is taken with the hash table size (a prime number) to
|
|
find the 'bucket' to place each key into. The function should also
|
|
be very fast, since it is called for each key lookup.
|
|
|
|
Note that the hash functions provided by GLib have these qualities,
|
|
but are not particularly robust against manufactured keys that
|
|
cause hash collisions. Therefore, you should consider choosing
|
|
a more secure hash function when using a GHashTable with keys
|
|
that originate in untrusted data (such as HTTP requests).
|
|
Using g_str_hash() in that situation might make your application
|
|
vulerable to
|
|
[Algorithmic Complexity Attacks](https://lwn.net/Articles/474912/).
|
|
|
|
The key to choosing a good hash is unpredictability. Even
|
|
cryptographic hashes are very easy to find collisions for when the
|
|
remainder is taken modulo a somewhat predictable prime number. There
|
|
must be an element of randomness that an attacker is unable to guess.</doc>
|
|
<source-position filename="gtypes.h" line="116"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="616">the hash value corresponding to the key</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="key" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="583">a key</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
<record name="HashTable" c:type="GHashTable" glib:type-name="GHashTable" glib:get-type="g_hash_table_get_type" c:symbol-prefix="hash_table">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="620">The #GHashTable struct is an opaque data structure to represent a
|
|
[Hash Table][glib-Hash-Tables]. It should only be accessed via the
|
|
following functions.</doc>
|
|
<source-position filename="ghash.h" line="37"/>
|
|
<function name="add" c:identifier="g_hash_table_add" version="2.32">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17123">This is a convenience function for using a #GHashTable as a set. It
|
|
is equivalent to calling g_hash_table_replace() with @key as both the
|
|
key and the value.
|
|
|
|
When a hash table only ever contains keys that have themselves as the
|
|
corresponding value it is able to be stored more efficiently. See
|
|
the discussion in the section description.
|
|
|
|
Starting from GLib 2.40, this function returns a boolean value to
|
|
indicate whether the newly added value was already in the hash table
|
|
or not.</doc>
|
|
<source-position filename="ghash.h" line="75"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17140">%TRUE if the key did not exist yet</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hash_table" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17125">a #GHashTable</doc>
|
|
<type name="GLib.HashTable" c:type="GHashTable*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="key" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17126">a key to insert</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="contains" c:identifier="g_hash_table_contains" version="2.32">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17145">Checks if @key is in @hash_table.</doc>
|
|
<source-position filename="ghash.h" line="96"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17152">%TRUE if @key is in @hash_table, %FALSE otherwise.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hash_table" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17147">a #GHashTable</doc>
|
|
<type name="GLib.HashTable" c:type="GHashTable*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="key" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17148">a key to check</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="destroy" c:identifier="g_hash_table_destroy">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17157">Destroys all keys and values in the #GHashTable and decrements its
|
|
reference count by 1. If keys and/or values are dynamically allocated,
|
|
you should either free them first or create the #GHashTable with destroy
|
|
notifiers using g_hash_table_new_full(). In the latter case the destroy
|
|
functions you supplied will be called on all keys and values during the
|
|
destruction phase.</doc>
|
|
<source-position filename="ghash.h" line="65"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hash_table" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17159">a #GHashTable</doc>
|
|
<type name="GLib.HashTable" c:type="GHashTable*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="find" c:identifier="g_hash_table_find" version="2.4" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17170">Calls the given function for key/value pairs in the #GHashTable
|
|
until @predicate returns %TRUE. The function is passed the key
|
|
and value of each pair, and the given @user_data parameter. The
|
|
hash table may not be modified while iterating over it (you can't
|
|
add/remove items).
|
|
|
|
Note, that hash tables are really only optimized for forward
|
|
lookups, i.e. g_hash_table_lookup(). So code that frequently issues
|
|
g_hash_table_find() or g_hash_table_foreach() (e.g. in the order of
|
|
once per every entry in a hash table) should probably be reworked
|
|
to use additional or different data structures for reverse lookups
|
|
(keep in mind that an O(n) find/foreach operation issued for all n
|
|
values in a hash table ends up needing O(n*n) operations).</doc>
|
|
<source-position filename="ghash.h" line="108"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17190">The value of the first key/value pair is returned,
|
|
for which @predicate evaluates to %TRUE. If no pair with the
|
|
requested property is found, %NULL is returned.</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hash_table" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17172">a #GHashTable</doc>
|
|
<type name="GLib.HashTable" c:type="GHashTable*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="predicate" transfer-ownership="none" closure="2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17173">function to test the key/value pairs for a certain property</doc>
|
|
<type name="HRFunc" c:type="GHRFunc"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17174">user data to pass to the function</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="foreach" c:identifier="g_hash_table_foreach" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17197">Calls the given function for each of the key/value pairs in the
|
|
#GHashTable. The function is passed the key and value of each
|
|
pair, and the given @user_data parameter. The hash table may not
|
|
be modified while iterating over it (you can't add/remove
|
|
items). To remove all items matching a predicate, use
|
|
g_hash_table_foreach_remove().
|
|
|
|
See g_hash_table_find() for performance caveats for linear
|
|
order searches in contrast to g_hash_table_lookup().</doc>
|
|
<source-position filename="ghash.h" line="104"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hash_table" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17199">a #GHashTable</doc>
|
|
<type name="GLib.HashTable" c:type="GHashTable*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="func" transfer-ownership="none" closure="2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17200">the function to call for each key/value pair</doc>
|
|
<type name="HFunc" c:type="GHFunc"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17201">user data to pass to the function</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="foreach_remove" c:identifier="g_hash_table_foreach_remove" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17215">Calls the given function for each key/value pair in the
|
|
#GHashTable. If the function returns %TRUE, then the key/value
|
|
pair is removed from the #GHashTable. If you supplied key or
|
|
value destroy functions when creating the #GHashTable, they are
|
|
used to free the memory allocated for the removed keys and values.
|
|
|
|
See #GHashTableIter for an alternative way to loop over the
|
|
key/value pairs in the hash table.</doc>
|
|
<source-position filename="ghash.h" line="112"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17230">the number of key/value pairs removed</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hash_table" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17217">a #GHashTable</doc>
|
|
<type name="GLib.HashTable" c:type="GHashTable*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="func" transfer-ownership="none" closure="2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17218">the function to call for each key/value pair</doc>
|
|
<type name="HRFunc" c:type="GHRFunc"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17219">user data to pass to the function</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="foreach_steal" c:identifier="g_hash_table_foreach_steal" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17234">Calls the given function for each key/value pair in the
|
|
#GHashTable. If the function returns %TRUE, then the key/value
|
|
pair is removed from the #GHashTable, but no key or value
|
|
destroy functions are called.
|
|
|
|
See #GHashTableIter for an alternative way to loop over the
|
|
key/value pairs in the hash table.</doc>
|
|
<source-position filename="ghash.h" line="116"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17248">the number of key/value pairs removed.</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hash_table" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17236">a #GHashTable</doc>
|
|
<type name="GLib.HashTable" c:type="GHashTable*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="func" transfer-ownership="none" closure="2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17237">the function to call for each key/value pair</doc>
|
|
<type name="HRFunc" c:type="GHRFunc"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17238">user data to pass to the function</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="get_keys" c:identifier="g_hash_table_get_keys" version="2.14" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17261">Retrieves every key inside @hash_table. The returned data is valid
|
|
until changes to the hash release those keys.
|
|
|
|
This iterates over every entry in the hash table to build its return value.
|
|
To iterate over the entries in a #GHashTable more efficiently, use a
|
|
#GHashTableIter.</doc>
|
|
<source-position filename="ghash.h" line="122"/>
|
|
<return-value transfer-ownership="container">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17272">a #GList containing all the keys
|
|
inside the hash table. The content of the list is owned by the
|
|
hash table and should not be modified or freed. Use g_list_free()
|
|
when done using the list.</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hash_table" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17263">a #GHashTable</doc>
|
|
<type name="GLib.HashTable" c:type="GHashTable*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="get_keys_as_array" c:identifier="g_hash_table_get_keys_as_array" version="2.40" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17280">Retrieves every key inside @hash_table, as an array.
|
|
|
|
The returned array is %NULL-terminated but may contain %NULL as a
|
|
key. Use @length to determine the true length if it's possible that
|
|
%NULL was used as the value for a key.
|
|
|
|
Note: in the common case of a string-keyed #GHashTable, the return
|
|
value of this function can be conveniently cast to (const gchar **).
|
|
|
|
This iterates over every entry in the hash table to build its return value.
|
|
To iterate over the entries in a #GHashTable more efficiently, use a
|
|
#GHashTableIter.
|
|
|
|
You should always free the return result with g_free(). In the
|
|
above-mentioned case of a string-keyed hash table, it may be
|
|
appropriate to use g_strfreev() if you call g_hash_table_steal_all()
|
|
first to transfer ownership of the keys.</doc>
|
|
<source-position filename="ghash.h" line="126"/>
|
|
<return-value transfer-ownership="container">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17303">a
|
|
%NULL-terminated array containing each key from the table.</doc>
|
|
<array length="1" zero-terminated="0" c:type="gpointer*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hash_table" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17282">a #GHashTable</doc>
|
|
<type name="GLib.HashTable" c:type="GHashTable*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="length" direction="out" caller-allocates="0" transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17283">the length of the returned array</doc>
|
|
<type name="guint" c:type="guint*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="get_values" c:identifier="g_hash_table_get_values" version="2.14" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17309">Retrieves every value inside @hash_table. The returned data
|
|
is valid until @hash_table is modified.
|
|
|
|
This iterates over every entry in the hash table to build its return value.
|
|
To iterate over the entries in a #GHashTable more efficiently, use a
|
|
#GHashTableIter.</doc>
|
|
<source-position filename="ghash.h" line="124"/>
|
|
<return-value transfer-ownership="container">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17320">a #GList containing all the values
|
|
inside the hash table. The content of the list is owned by the
|
|
hash table and should not be modified or freed. Use g_list_free()
|
|
when done using the list.</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hash_table" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17311">a #GHashTable</doc>
|
|
<type name="GLib.HashTable" c:type="GHashTable*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="insert" c:identifier="g_hash_table_insert">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17328">Inserts a new key and value into a #GHashTable.
|
|
|
|
If the key already exists in the #GHashTable its current
|
|
value is replaced with the new value. If you supplied a
|
|
@value_destroy_func when creating the #GHashTable, the old
|
|
value is freed using that function. If you supplied a
|
|
@key_destroy_func when creating the #GHashTable, the passed
|
|
key is freed using that function.
|
|
|
|
Starting from GLib 2.40, this function returns a boolean value to
|
|
indicate whether the newly added value was already in the hash table
|
|
or not.</doc>
|
|
<source-position filename="ghash.h" line="67"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17347">%TRUE if the key did not exist yet</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hash_table" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17330">a #GHashTable</doc>
|
|
<type name="GLib.HashTable" c:type="GHashTable*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="key" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17331">a key to insert</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="value" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17332">the value to associate with the key</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="lookup" c:identifier="g_hash_table_lookup">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17457">Looks up a key in a #GHashTable. Note that this function cannot
|
|
distinguish between a key that is not present and one which is present
|
|
and has the value %NULL. If you need this distinction, use
|
|
g_hash_table_lookup_extended().</doc>
|
|
<source-position filename="ghash.h" line="93"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17467">the associated value, or %NULL if the key is not found</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hash_table" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17459">a #GHashTable</doc>
|
|
<type name="GLib.HashTable" c:type="GHashTable*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="key" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17460">the key to look up</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="lookup_extended" c:identifier="g_hash_table_lookup_extended">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17471">Looks up a key in the #GHashTable, returning the original key and the
|
|
associated value and a #gboolean which is %TRUE if the key was found. This
|
|
is useful if you need to free the memory allocated for the original key,
|
|
for example before calling g_hash_table_remove().
|
|
|
|
You can actually pass %NULL for @lookup_key to test
|
|
whether the %NULL key exists, provided the hash and equal functions
|
|
of @hash_table are %NULL-safe.</doc>
|
|
<source-position filename="ghash.h" line="99"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17488">%TRUE if the key was found in the #GHashTable</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hash_table" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17473">a #GHashTable</doc>
|
|
<type name="GLib.HashTable" c:type="GHashTable*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="lookup_key" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17474">the key to look up</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
<parameter name="orig_key" direction="out" caller-allocates="0" transfer-ownership="full" nullable="1" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17475">return location for the original key</doc>
|
|
<type name="gpointer" c:type="gpointer*"/>
|
|
</parameter>
|
|
<parameter name="value" direction="out" caller-allocates="0" transfer-ownership="full" nullable="1" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17476">return location for the value associated
|
|
with the key</doc>
|
|
<type name="gpointer" c:type="gpointer*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="new" c:identifier="g_hash_table_new" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17492">Creates a new #GHashTable with a reference count of 1.
|
|
|
|
Hash values returned by @hash_func are used to determine where keys
|
|
are stored within the #GHashTable data structure. The g_direct_hash(),
|
|
g_int_hash(), g_int64_hash(), g_double_hash() and g_str_hash()
|
|
functions are provided for some common types of keys.
|
|
If @hash_func is %NULL, g_direct_hash() is used.
|
|
|
|
@key_equal_func is used when looking up keys in the #GHashTable.
|
|
The g_direct_equal(), g_int_equal(), g_int64_equal(), g_double_equal()
|
|
and g_str_equal() functions are provided for the most common types
|
|
of keys. If @key_equal_func is %NULL, keys are compared directly in
|
|
a similar fashion to g_direct_equal(), but without the overhead of
|
|
a function call. @key_equal_func is called with the key from the hash table
|
|
as its first parameter, and the user-provided key to check against as
|
|
its second.</doc>
|
|
<source-position filename="ghash.h" line="57"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17514">a new #GHashTable</doc>
|
|
<type name="GLib.HashTable" c:type="GHashTable*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hash_func" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17494">a function to create a hash value from a key</doc>
|
|
<type name="HashFunc" c:type="GHashFunc"/>
|
|
</parameter>
|
|
<parameter name="key_equal_func" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17495">a function to check two keys for equality</doc>
|
|
<type name="EqualFunc" c:type="GEqualFunc"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="new_full" c:identifier="g_hash_table_new_full" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17518">Creates a new #GHashTable like g_hash_table_new() with a reference
|
|
count of 1 and allows to specify functions to free the memory
|
|
allocated for the key and value that get called when removing the
|
|
entry from the #GHashTable.
|
|
|
|
Since version 2.42 it is permissible for destroy notify functions to
|
|
recursively remove further items from the hash table. This is only
|
|
permissible if the application still holds a reference to the hash table.
|
|
This means that you may need to ensure that the hash table is empty by
|
|
calling g_hash_table_remove_all() before releasing the last reference using
|
|
g_hash_table_unref().</doc>
|
|
<source-position filename="ghash.h" line="60"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17541">a new #GHashTable</doc>
|
|
<type name="GLib.HashTable" c:type="GHashTable*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hash_func" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17520">a function to create a hash value from a key</doc>
|
|
<type name="HashFunc" c:type="GHashFunc"/>
|
|
</parameter>
|
|
<parameter name="key_equal_func" transfer-ownership="none" scope="notified" destroy="3">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17521">a function to check two keys for equality</doc>
|
|
<type name="EqualFunc" c:type="GEqualFunc"/>
|
|
</parameter>
|
|
<parameter name="key_destroy_func" transfer-ownership="none" nullable="1" allow-none="1" scope="async">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17522">a function to free the memory allocated for the key
|
|
used when removing the entry from the #GHashTable, or %NULL
|
|
if you don't want to supply such a function.</doc>
|
|
<type name="DestroyNotify" c:type="GDestroyNotify"/>
|
|
</parameter>
|
|
<parameter name="value_destroy_func" transfer-ownership="none" nullable="1" allow-none="1" scope="async">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17525">a function to free the memory allocated for the
|
|
value used when removing the entry from the #GHashTable, or %NULL
|
|
if you don't want to supply such a function.</doc>
|
|
<type name="DestroyNotify" c:type="GDestroyNotify"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="ref" c:identifier="g_hash_table_ref" version="2.10" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17545">Atomically increments the reference count of @hash_table by one.
|
|
This function is MT-safe and may be called from any thread.</doc>
|
|
<source-position filename="ghash.h" line="147"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17552">the passed in #GHashTable</doc>
|
|
<type name="GLib.HashTable" c:type="GHashTable*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hash_table" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17547">a valid #GHashTable</doc>
|
|
<type name="GLib.HashTable" c:type="GHashTable*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="remove" c:identifier="g_hash_table_remove">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17557">Removes a key and its associated value from a #GHashTable.
|
|
|
|
If the #GHashTable was created using g_hash_table_new_full(), the
|
|
key and value are freed using the supplied destroy functions, otherwise
|
|
you have to make sure that any dynamically allocated values are freed
|
|
yourself.</doc>
|
|
<source-position filename="ghash.h" line="78"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17569">%TRUE if the key was found and removed from the #GHashTable</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hash_table" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17559">a #GHashTable</doc>
|
|
<type name="GLib.HashTable" c:type="GHashTable*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="key" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17560">the key to remove</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="remove_all" c:identifier="g_hash_table_remove_all" version="2.12">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17573">Removes all keys and their associated values from a #GHashTable.
|
|
|
|
If the #GHashTable was created using g_hash_table_new_full(),
|
|
the keys and values are freed using the supplied destroy functions,
|
|
otherwise you have to make sure that any dynamically allocated
|
|
values are freed yourself.</doc>
|
|
<source-position filename="ghash.h" line="81"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hash_table" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17575">a #GHashTable</doc>
|
|
<type name="GLib.HashTable" c:type="GHashTable*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="replace" c:identifier="g_hash_table_replace">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17588">Inserts a new key and value into a #GHashTable similar to
|
|
g_hash_table_insert(). The difference is that if the key
|
|
already exists in the #GHashTable, it gets replaced by the
|
|
new key. If you supplied a @value_destroy_func when creating
|
|
the #GHashTable, the old value is freed using that function.
|
|
If you supplied a @key_destroy_func when creating the
|
|
#GHashTable, the old key is freed using that function.
|
|
|
|
Starting from GLib 2.40, this function returns a boolean value to
|
|
indicate whether the newly added value was already in the hash table
|
|
or not.</doc>
|
|
<source-position filename="ghash.h" line="71"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17606">%TRUE if the key did not exist yet</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hash_table" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17590">a #GHashTable</doc>
|
|
<type name="GLib.HashTable" c:type="GHashTable*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="key" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17591">a key to insert</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="value" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17592">the value to associate with the key</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="size" c:identifier="g_hash_table_size">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17610">Returns the number of elements contained in the #GHashTable.</doc>
|
|
<source-position filename="ghash.h" line="120"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17616">the number of key/value pairs in the #GHashTable.</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hash_table" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17612">a #GHashTable</doc>
|
|
<type name="GLib.HashTable" c:type="GHashTable*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="steal" c:identifier="g_hash_table_steal">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17620">Removes a key and its associated value from a #GHashTable without
|
|
calling the key and value destroy functions.</doc>
|
|
<source-position filename="ghash.h" line="83"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17628">%TRUE if the key was found and removed from the #GHashTable</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hash_table" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17622">a #GHashTable</doc>
|
|
<type name="GLib.HashTable" c:type="GHashTable*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="key" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17623">the key to remove</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="steal_all" c:identifier="g_hash_table_steal_all" version="2.12">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17632">Removes all keys and their associated values from a #GHashTable
|
|
without calling the key and value destroy functions.</doc>
|
|
<source-position filename="ghash.h" line="91"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hash_table" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17634">a #GHashTable</doc>
|
|
<type name="GLib.HashTable" c:type="GHashTable*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="steal_extended" c:identifier="g_hash_table_steal_extended" version="2.58">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17643">Looks up a key in the #GHashTable, stealing the original key and the
|
|
associated value and returning %TRUE if the key was found. If the key was
|
|
not found, %FALSE is returned.
|
|
|
|
If found, the stolen key and value are removed from the hash table without
|
|
calling the key and value destroy functions, and ownership is transferred to
|
|
the caller of this method; as with g_hash_table_steal().
|
|
|
|
You can pass %NULL for @lookup_key, provided the hash and equal functions
|
|
of @hash_table are %NULL-safe.</doc>
|
|
<source-position filename="ghash.h" line="86"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17663">%TRUE if the key was found in the #GHashTable</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hash_table" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17645">a #GHashTable</doc>
|
|
<type name="GLib.HashTable" c:type="GHashTable*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="lookup_key" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17646">the key to look up</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
<parameter name="stolen_key" direction="out" caller-allocates="0" transfer-ownership="full" nullable="1" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17647">return location for the
|
|
original key</doc>
|
|
<type name="gpointer" c:type="gpointer*"/>
|
|
</parameter>
|
|
<parameter name="stolen_value" direction="out" caller-allocates="0" transfer-ownership="full" nullable="1" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17649">return location
|
|
for the value associated with the key</doc>
|
|
<type name="gpointer" c:type="gpointer*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="unref" c:identifier="g_hash_table_unref" version="2.10">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17677">Atomically decrements the reference count of @hash_table by one.
|
|
If the reference count drops to 0, all keys and values will be
|
|
destroyed, and all memory allocated by the hash table is released.
|
|
This function is MT-safe and may be called from any thread.</doc>
|
|
<source-position filename="ghash.h" line="149"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hash_table" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17679">a valid #GHashTable</doc>
|
|
<type name="GLib.HashTable" c:type="GHashTable*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
</record>
|
|
<record name="HashTableIter" c:type="GHashTableIter">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="629">A GHashTableIter structure represents an iterator that can be used
|
|
to iterate over the elements of a #GHashTable. GHashTableIter
|
|
structures are typically allocated on the stack and then initialized
|
|
with g_hash_table_iter_init().</doc>
|
|
<source-position filename="ghash.h" line="54"/>
|
|
<field name="dummy1" readable="0" private="1">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</field>
|
|
<field name="dummy2" readable="0" private="1">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</field>
|
|
<field name="dummy3" readable="0" private="1">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</field>
|
|
<field name="dummy4" readable="0" private="1">
|
|
<type name="gint" c:type="int"/>
|
|
</field>
|
|
<field name="dummy5" readable="0" private="1">
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</field>
|
|
<field name="dummy6" readable="0" private="1">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</field>
|
|
<method name="get_hash_table" c:identifier="g_hash_table_iter_get_hash_table" version="2.16" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17351">Returns the #GHashTable associated with @iter.</doc>
|
|
<source-position filename="ghash.h" line="137"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17357">the #GHashTable associated with @iter.</doc>
|
|
<type name="GLib.HashTable" c:type="GHashTable*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="iter" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17353">an initialized #GHashTableIter</doc>
|
|
<type name="HashTableIter" c:type="GHashTableIter*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="init" c:identifier="g_hash_table_iter_init" version="2.16">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17362">Initializes a key/value pair iterator and associates it with
|
|
@hash_table. Modifying the hash table after calling this function
|
|
invalidates the returned iterator.
|
|
|[<!-- language="C" -->
|
|
GHashTableIter iter;
|
|
gpointer key, value;
|
|
|
|
g_hash_table_iter_init (&iter, hash_table);
|
|
while (g_hash_table_iter_next (&iter, &key, &value))
|
|
{
|
|
// do something with key and value
|
|
}
|
|
]|</doc>
|
|
<source-position filename="ghash.h" line="130"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="iter" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17364">an uninitialized #GHashTableIter</doc>
|
|
<type name="HashTableIter" c:type="GHashTableIter*"/>
|
|
</instance-parameter>
|
|
<parameter name="hash_table" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17365">a #GHashTable</doc>
|
|
<type name="GLib.HashTable" c:type="GHashTable*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="next" c:identifier="g_hash_table_iter_next" version="2.16">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17385">Advances @iter and retrieves the key and/or value that are now
|
|
pointed to as a result of this advancement. If %FALSE is returned,
|
|
@key and @value are not set, and the iterator becomes invalid.</doc>
|
|
<source-position filename="ghash.h" line="133"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17395">%FALSE if the end of the #GHashTable has been reached.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="iter" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17387">an initialized #GHashTableIter</doc>
|
|
<type name="HashTableIter" c:type="GHashTableIter*"/>
|
|
</instance-parameter>
|
|
<parameter name="key" direction="out" caller-allocates="0" transfer-ownership="full" nullable="1" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17388">a location to store the key</doc>
|
|
<type name="gpointer" c:type="gpointer*"/>
|
|
</parameter>
|
|
<parameter name="value" direction="out" caller-allocates="0" transfer-ownership="full" nullable="1" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17389">a location to store the value</doc>
|
|
<type name="gpointer" c:type="gpointer*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="remove" c:identifier="g_hash_table_iter_remove" version="2.16">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17400">Removes the key/value pair currently pointed to by the iterator
|
|
from its associated #GHashTable. Can only be called after
|
|
g_hash_table_iter_next() returned %TRUE, and cannot be called
|
|
more than once for the same key/value pair.
|
|
|
|
If the #GHashTable was created using g_hash_table_new_full(),
|
|
the key and value are freed using the supplied destroy functions,
|
|
otherwise you have to make sure that any dynamically allocated
|
|
values are freed yourself.
|
|
|
|
It is safe to continue iterating the #GHashTable afterward:
|
|
|[<!-- language="C" -->
|
|
while (g_hash_table_iter_next (&iter, &key, &value))
|
|
{
|
|
if (condition)
|
|
g_hash_table_iter_remove (&iter);
|
|
}
|
|
]|</doc>
|
|
<source-position filename="ghash.h" line="139"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="iter" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17402">an initialized #GHashTableIter</doc>
|
|
<type name="HashTableIter" c:type="GHashTableIter*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="replace" c:identifier="g_hash_table_iter_replace" version="2.30">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17427">Replaces the value currently pointed to by the iterator
|
|
from its associated #GHashTable. Can only be called after
|
|
g_hash_table_iter_next() returned %TRUE.
|
|
|
|
If you supplied a @value_destroy_func when creating the
|
|
#GHashTable, the old value is freed using that function.</doc>
|
|
<source-position filename="ghash.h" line="141"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="iter" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17429">an initialized #GHashTableIter</doc>
|
|
<type name="HashTableIter" c:type="GHashTableIter*"/>
|
|
</instance-parameter>
|
|
<parameter name="value" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17430">the value to replace with</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="steal" c:identifier="g_hash_table_iter_steal" version="2.16">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17443">Removes the key/value pair currently pointed to by the
|
|
iterator from its associated #GHashTable, without calling
|
|
the key and value destroy functions. Can only be called
|
|
after g_hash_table_iter_next() returned %TRUE, and cannot
|
|
be called more than once for the same key/value pair.</doc>
|
|
<source-position filename="ghash.h" line="144"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="iter" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17445">an initialized #GHashTableIter</doc>
|
|
<type name="HashTableIter" c:type="GHashTableIter*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
</record>
|
|
<record name="Hmac" c:type="GHmac" disguised="1" version="2.30">
|
|
<doc xml:space="preserve" filename="ghmac.h" line="31">An opaque structure representing a HMAC operation.
|
|
To create a new GHmac, use g_hmac_new(). To free
|
|
a GHmac, use g_hmac_unref().</doc>
|
|
<source-position filename="ghmac.h" line="40"/>
|
|
<method name="copy" c:identifier="g_hmac_copy" version="2.30" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17690">Copies a #GHmac. If @hmac has been closed, by calling
|
|
g_hmac_get_string() or g_hmac_get_digest(), the copied
|
|
HMAC will be closed as well.</doc>
|
|
<source-position filename="ghmac.h" line="47"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17698">the copy of the passed #GHmac. Use g_hmac_unref()
|
|
when finished using it.</doc>
|
|
<type name="Hmac" c:type="GHmac*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="hmac" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17692">the #GHmac to copy</doc>
|
|
<type name="Hmac" c:type="const GHmac*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_digest" c:identifier="g_hmac_get_digest" version="2.30">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17704">Gets the digest from @checksum as a raw binary array and places it
|
|
into @buffer. The size of the digest depends on the type of checksum.
|
|
|
|
Once this function has been called, the #GHmac is closed and can
|
|
no longer be updated with g_checksum_update().</doc>
|
|
<source-position filename="ghmac.h" line="59"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="hmac" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17706">a #GHmac</doc>
|
|
<type name="Hmac" c:type="GHmac*"/>
|
|
</instance-parameter>
|
|
<parameter name="buffer" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17707">output buffer</doc>
|
|
<array length="1" zero-terminated="0" c:type="guint8*">
|
|
<type name="guint8" c:type="guint8"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="digest_len" direction="inout" caller-allocates="0" transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17708">an inout parameter. The caller initializes it to the
|
|
size of @buffer. After the call it contains the length of the digest</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_string" c:identifier="g_hmac_get_string" version="2.30">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17721">Gets the HMAC as an hexadecimal string.
|
|
|
|
Once this function has been called the #GHmac can no longer be
|
|
updated with g_hmac_update().
|
|
|
|
The hexadecimal characters will be lower case.</doc>
|
|
<source-position filename="ghmac.h" line="57"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17732">the hexadecimal representation of the HMAC. The
|
|
returned string is owned by the HMAC and should not be modified
|
|
or freed.</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="hmac" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17723">a #GHmac</doc>
|
|
<type name="Hmac" c:type="GHmac*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="ref" c:identifier="g_hmac_ref" version="2.30" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17768">Atomically increments the reference count of @hmac by one.
|
|
|
|
This function is MT-safe and may be called from any thread.</doc>
|
|
<source-position filename="ghmac.h" line="49"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17776">the passed in #GHmac.</doc>
|
|
<type name="Hmac" c:type="GHmac*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="hmac" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17770">a valid #GHmac</doc>
|
|
<type name="Hmac" c:type="GHmac*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="unref" c:identifier="g_hmac_unref" version="2.30">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17781">Atomically decrements the reference count of @hmac by one.
|
|
|
|
If the reference count drops to 0, all keys and values will be
|
|
destroyed, and all memory allocated by the hash table is released.
|
|
This function is MT-safe and may be called from any thread.
|
|
Frees the memory allocated for @hmac.</doc>
|
|
<source-position filename="ghmac.h" line="51"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="hmac" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17783">a #GHmac</doc>
|
|
<type name="Hmac" c:type="GHmac*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="update" c:identifier="g_hmac_update" version="2.30">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17796">Feeds @data into an existing #GHmac.
|
|
|
|
The HMAC must still be open, that is g_hmac_get_string() or
|
|
g_hmac_get_digest() must not have been called on @hmac.</doc>
|
|
<source-position filename="ghmac.h" line="53"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="hmac" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17798">a #GHmac</doc>
|
|
<type name="Hmac" c:type="GHmac*"/>
|
|
</instance-parameter>
|
|
<parameter name="data" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17799">buffer used to compute the checksum</doc>
|
|
<array length="1" zero-terminated="0" c:type="const guchar*">
|
|
<type name="guint8" c:type="guchar"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="length" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17800">size of the buffer, or -1 if it is a nul-terminated string</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<function name="new" c:identifier="g_hmac_new" version="2.30" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17739">Creates a new #GHmac, using the digest algorithm @digest_type.
|
|
If the @digest_type is not known, %NULL is returned.
|
|
A #GHmac can be used to compute the HMAC of a key and an
|
|
arbitrary binary blob, using different hashing algorithms.
|
|
|
|
A #GHmac works by feeding a binary blob through g_hmac_update()
|
|
until the data is complete; the digest can then be extracted
|
|
using g_hmac_get_string(), which will return the checksum as a
|
|
hexadecimal string; or g_hmac_get_digest(), which will return a
|
|
array of raw bytes. Once either g_hmac_get_string() or
|
|
g_hmac_get_digest() have been called on a #GHmac, the HMAC
|
|
will be closed and it won't be possible to call g_hmac_update()
|
|
on it anymore.
|
|
|
|
Support for digests of type %G_CHECKSUM_SHA512 has been added in GLib 2.42.
|
|
Support for %G_CHECKSUM_SHA384 was added in GLib 2.52.</doc>
|
|
<source-position filename="ghmac.h" line="43"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17762">the newly created #GHmac, or %NULL.
|
|
Use g_hmac_unref() to free the memory allocated by it.</doc>
|
|
<type name="Hmac" c:type="GHmac*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="digest_type" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17741">the desired type of digest</doc>
|
|
<type name="ChecksumType" c:type="GChecksumType"/>
|
|
</parameter>
|
|
<parameter name="key" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17742">the key for the HMAC</doc>
|
|
<array length="2" zero-terminated="0" c:type="const guchar*">
|
|
<type name="guint8" c:type="guchar"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="key_len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17743">the length of the keys</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
</record>
|
|
<record name="Hook" c:type="GHook">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="639">The #GHook struct represents a single hook function in a #GHookList.</doc>
|
|
<source-position filename="ghook.h" line="83"/>
|
|
<field name="data" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="641">data which is passed to func when this hook is invoked</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</field>
|
|
<field name="next" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="642">pointer to the next hook in the list</doc>
|
|
<type name="Hook" c:type="GHook*"/>
|
|
</field>
|
|
<field name="prev" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="643">pointer to the previous hook in the list</doc>
|
|
<type name="Hook" c:type="GHook*"/>
|
|
</field>
|
|
<field name="ref_count" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="644">the reference count of this hook</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="hook_id" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="645">the id of this hook, which is unique within its list</doc>
|
|
<type name="gulong" c:type="gulong"/>
|
|
</field>
|
|
<field name="flags" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="646">flags which are set for this hook. See #GHookFlagMask for
|
|
predefined flags</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="func" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="648">the function to call when this hook is invoked. The possible
|
|
signatures for this function are #GHookFunc and #GHookCheckFunc</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</field>
|
|
<field name="destroy" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="650">the default @finalize_hook function of a #GHookList calls
|
|
this member of the hook that is being finalized</doc>
|
|
<type name="DestroyNotify" c:type="GDestroyNotify"/>
|
|
</field>
|
|
<method name="compare_ids" c:identifier="g_hook_compare_ids">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17830">Compares the ids of two #GHook elements, returning a negative value
|
|
if the second id is greater than the first.</doc>
|
|
<source-position filename="ghook.h" line="171"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17838">a value <= 0 if the id of @sibling is >= the id of @new_hook</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="new_hook" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17832">a #GHook</doc>
|
|
<type name="Hook" c:type="GHook*"/>
|
|
</instance-parameter>
|
|
<parameter name="sibling" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17833">a #GHook to compare with @new_hook</doc>
|
|
<type name="Hook" c:type="GHook*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<function name="alloc" c:identifier="g_hook_alloc" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17811">Allocates space for a #GHook and initializes it.</doc>
|
|
<source-position filename="ghook.h" line="110"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17817">a new #GHook</doc>
|
|
<type name="Hook" c:type="GHook*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hook_list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17813">a #GHookList</doc>
|
|
<type name="HookList" c:type="GHookList*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="destroy" c:identifier="g_hook_destroy">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17842">Destroys a #GHook, given its ID.</doc>
|
|
<source-position filename="ghook.h" line="121"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17849">%TRUE if the #GHook was found in the #GHookList and destroyed</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hook_list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17844">a #GHookList</doc>
|
|
<type name="HookList" c:type="GHookList*"/>
|
|
</parameter>
|
|
<parameter name="hook_id" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17845">a hook ID</doc>
|
|
<type name="gulong" c:type="gulong"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="destroy_link" c:identifier="g_hook_destroy_link">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17853">Removes one #GHook from a #GHookList, marking it
|
|
inactive and calling g_hook_unref() on it.</doc>
|
|
<source-position filename="ghook.h" line="124"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hook_list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17855">a #GHookList</doc>
|
|
<type name="HookList" c:type="GHookList*"/>
|
|
</parameter>
|
|
<parameter name="hook" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17856">the #GHook to remove</doc>
|
|
<type name="Hook" c:type="GHook*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="find" c:identifier="g_hook_find" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17863">Finds a #GHook in a #GHookList using the given function to
|
|
test for a match.</doc>
|
|
<source-position filename="ghook.h" line="141"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17875">the found #GHook or %NULL if no matching #GHook is found</doc>
|
|
<type name="Hook" c:type="GHook*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hook_list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17865">a #GHookList</doc>
|
|
<type name="HookList" c:type="GHookList*"/>
|
|
</parameter>
|
|
<parameter name="need_valids" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17866">%TRUE if #GHook elements which have been destroyed
|
|
should be skipped</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
<parameter name="func" transfer-ownership="none" closure="3">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17868">the function to call for each #GHook, which should return
|
|
%TRUE when the #GHook has been found</doc>
|
|
<type name="HookFindFunc" c:type="GHookFindFunc"/>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17870">the data to pass to @func</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="find_data" c:identifier="g_hook_find_data" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17879">Finds a #GHook in a #GHookList with the given data.</doc>
|
|
<source-position filename="ghook.h" line="146"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17888">the #GHook with the given @data or %NULL if no matching
|
|
#GHook is found</doc>
|
|
<type name="Hook" c:type="GHook*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hook_list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17881">a #GHookList</doc>
|
|
<type name="HookList" c:type="GHookList*"/>
|
|
</parameter>
|
|
<parameter name="need_valids" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17882">%TRUE if #GHook elements which have been destroyed
|
|
should be skipped</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17884">the data to find</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="find_func" c:identifier="g_hook_find_func" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17893">Finds a #GHook in a #GHookList with the given function.</doc>
|
|
<source-position filename="ghook.h" line="150"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17902">the #GHook with the given @func or %NULL if no matching
|
|
#GHook is found</doc>
|
|
<type name="Hook" c:type="GHook*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hook_list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17895">a #GHookList</doc>
|
|
<type name="HookList" c:type="GHookList*"/>
|
|
</parameter>
|
|
<parameter name="need_valids" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17896">%TRUE if #GHook elements which have been destroyed
|
|
should be skipped</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
<parameter name="func" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17898">the function to find</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="find_func_data" c:identifier="g_hook_find_func_data" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17907">Finds a #GHook in a #GHookList with the given function and data.</doc>
|
|
<source-position filename="ghook.h" line="154"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17917">the #GHook with the given @func and @data or %NULL if
|
|
no matching #GHook is found</doc>
|
|
<type name="Hook" c:type="GHook*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hook_list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17909">a #GHookList</doc>
|
|
<type name="HookList" c:type="GHookList*"/>
|
|
</parameter>
|
|
<parameter name="need_valids" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17910">%TRUE if #GHook elements which have been destroyed
|
|
should be skipped</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
<parameter name="func" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17912">the function to find</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17913">the data to find</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="first_valid" c:identifier="g_hook_first_valid" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17922">Returns the first #GHook in a #GHookList which has not been destroyed.
|
|
The reference count for the #GHook is incremented, so you must call
|
|
g_hook_unref() to restore it when no longer needed. (Or call
|
|
g_hook_next_valid() if you are stepping through the #GHookList.)</doc>
|
|
<source-position filename="ghook.h" line="160"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17934">the first valid #GHook, or %NULL if none are valid</doc>
|
|
<type name="Hook" c:type="GHook*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hook_list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17924">a #GHookList</doc>
|
|
<type name="HookList" c:type="GHookList*"/>
|
|
</parameter>
|
|
<parameter name="may_be_in_call" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17925">%TRUE if hooks which are currently running
|
|
(e.g. in another thread) are considered valid. If set to %FALSE,
|
|
these are skipped</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="free" c:identifier="g_hook_free">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17938">Calls the #GHookList @finalize_hook function if it exists,
|
|
and frees the memory allocated for the #GHook.</doc>
|
|
<source-position filename="ghook.h" line="112"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hook_list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17940">a #GHookList</doc>
|
|
<type name="HookList" c:type="GHookList*"/>
|
|
</parameter>
|
|
<parameter name="hook" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17941">the #GHook to free</doc>
|
|
<type name="Hook" c:type="GHook*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="get" c:identifier="g_hook_get" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17948">Returns the #GHook with the given id, or %NULL if it is not found.</doc>
|
|
<source-position filename="ghook.h" line="138"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17955">the #GHook with the given id, or %NULL if it is not found</doc>
|
|
<type name="Hook" c:type="GHook*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hook_list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17950">a #GHookList</doc>
|
|
<type name="HookList" c:type="GHookList*"/>
|
|
</parameter>
|
|
<parameter name="hook_id" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17951">a hook id</doc>
|
|
<type name="gulong" c:type="gulong"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="insert_before" c:identifier="g_hook_insert_before">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17959">Inserts a #GHook into a #GHookList, before a given #GHook.</doc>
|
|
<source-position filename="ghook.h" line="130"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hook_list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17961">a #GHookList</doc>
|
|
<type name="HookList" c:type="GHookList*"/>
|
|
</parameter>
|
|
<parameter name="sibling" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17962">the #GHook to insert the new #GHook before</doc>
|
|
<type name="Hook" c:type="GHook*"/>
|
|
</parameter>
|
|
<parameter name="hook" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17963">the #GHook to insert</doc>
|
|
<type name="Hook" c:type="GHook*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="insert_sorted" c:identifier="g_hook_insert_sorted" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17969">Inserts a #GHook into a #GHookList, sorted by the given function.</doc>
|
|
<source-position filename="ghook.h" line="134"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hook_list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17971">a #GHookList</doc>
|
|
<type name="HookList" c:type="GHookList*"/>
|
|
</parameter>
|
|
<parameter name="hook" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17972">the #GHook to insert</doc>
|
|
<type name="Hook" c:type="GHook*"/>
|
|
</parameter>
|
|
<parameter name="func" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17973">the comparison function used to sort the #GHook elements</doc>
|
|
<type name="HookCompareFunc" c:type="GHookCompareFunc"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="next_valid" c:identifier="g_hook_next_valid" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18048">Returns the next #GHook in a #GHookList which has not been destroyed.
|
|
The reference count for the #GHook is incremented, so you must call
|
|
g_hook_unref() to restore it when no longer needed. (Or continue to call
|
|
g_hook_next_valid() until %NULL is returned.)</doc>
|
|
<source-position filename="ghook.h" line="166"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18061">the next valid #GHook, or %NULL if none are valid</doc>
|
|
<type name="Hook" c:type="GHook*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hook_list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18050">a #GHookList</doc>
|
|
<type name="HookList" c:type="GHookList*"/>
|
|
</parameter>
|
|
<parameter name="hook" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18051">the current #GHook</doc>
|
|
<type name="Hook" c:type="GHook*"/>
|
|
</parameter>
|
|
<parameter name="may_be_in_call" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18052">%TRUE if hooks which are currently running
|
|
(e.g. in another thread) are considered valid. If set to %FALSE,
|
|
these are skipped</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="prepend" c:identifier="g_hook_prepend">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18065">Prepends a #GHook on the start of a #GHookList.</doc>
|
|
<source-position filename="ghook.h" line="127"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hook_list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18067">a #GHookList</doc>
|
|
<type name="HookList" c:type="GHookList*"/>
|
|
</parameter>
|
|
<parameter name="hook" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18068">the #GHook to add to the start of @hook_list</doc>
|
|
<type name="Hook" c:type="GHook*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="ref" c:identifier="g_hook_ref" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18074">Increments the reference count for a #GHook.</doc>
|
|
<source-position filename="ghook.h" line="115"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18081">the @hook that was passed in (since 2.6)</doc>
|
|
<type name="Hook" c:type="GHook*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hook_list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18076">a #GHookList</doc>
|
|
<type name="HookList" c:type="GHookList*"/>
|
|
</parameter>
|
|
<parameter name="hook" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18077">the #GHook to increment the reference count of</doc>
|
|
<type name="Hook" c:type="GHook*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="unref" c:identifier="g_hook_unref">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18085">Decrements the reference count of a #GHook.
|
|
If the reference count falls to 0, the #GHook is removed
|
|
from the #GHookList and g_hook_free() is called to free it.</doc>
|
|
<source-position filename="ghook.h" line="118"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hook_list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18087">a #GHookList</doc>
|
|
<type name="HookList" c:type="GHookList*"/>
|
|
</parameter>
|
|
<parameter name="hook" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18088">the #GHook to unref</doc>
|
|
<type name="Hook" c:type="GHook*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
</record>
|
|
<callback name="HookCheckFunc" c:type="GHookCheckFunc">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="657">Defines the type of a hook function that can be invoked
|
|
by g_hook_list_invoke_check().</doc>
|
|
<source-position filename="ghook.h" line="50"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="664">%FALSE if the #GHook should be destroyed</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="659">the data field of the #GHook is passed to the hook function here</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
<callback name="HookCheckMarshaller" c:type="GHookCheckMarshaller">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="668">Defines the type of function used by g_hook_list_marshal_check().</doc>
|
|
<source-position filename="ghook.h" line="47"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="675">%FALSE if @hook should be destroyed</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hook" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="670">a #GHook</doc>
|
|
<type name="Hook" c:type="GHook*"/>
|
|
</parameter>
|
|
<parameter name="marshal_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="671">user data</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
<callback name="HookCompareFunc" c:type="GHookCompareFunc">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="679">Defines the type of function used to compare #GHook elements in
|
|
g_hook_insert_sorted().</doc>
|
|
<source-position filename="ghook.h" line="41"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="687">a value <= 0 if @new_hook should be before @sibling</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="new_hook" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="681">the #GHook being inserted</doc>
|
|
<type name="Hook" c:type="GHook*"/>
|
|
</parameter>
|
|
<parameter name="sibling" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="682">the #GHook to compare with @new_hook</doc>
|
|
<type name="Hook" c:type="GHook*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
<callback name="HookFinalizeFunc" c:type="GHookFinalizeFunc">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="691">Defines the type of function to be called when a hook in a
|
|
list of hooks gets finalized.</doc>
|
|
<source-position filename="ghook.h" line="51"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hook_list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="693">a #GHookList</doc>
|
|
<type name="HookList" c:type="GHookList*"/>
|
|
</parameter>
|
|
<parameter name="hook" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="694">the hook in @hook_list that gets finalized</doc>
|
|
<type name="Hook" c:type="GHook*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
<callback name="HookFindFunc" c:type="GHookFindFunc">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="701">Defines the type of the function passed to g_hook_find().</doc>
|
|
<source-position filename="ghook.h" line="43"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="708">%TRUE if the required #GHook has been found</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hook" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="703">a #GHook</doc>
|
|
<type name="Hook" c:type="GHook*"/>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="704">user data passed to g_hook_find_func()</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
<bitfield name="HookFlagMask" c:type="GHookFlagMask">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="712">Flags used internally in the #GHook implementation.</doc>
|
|
<source-position filename="ghook.h" line="58"/>
|
|
<member name="active" value="1" c:identifier="G_HOOK_FLAG_ACTIVE">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="714">set if the hook has not been destroyed</doc>
|
|
</member>
|
|
<member name="in_call" value="2" c:identifier="G_HOOK_FLAG_IN_CALL">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="715">set if the hook is currently being run</doc>
|
|
</member>
|
|
<member name="mask" value="15" c:identifier="G_HOOK_FLAG_MASK">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="716">A mask covering all bits reserved for
|
|
hook flags; see %G_HOOK_FLAG_USER_SHIFT</doc>
|
|
</member>
|
|
</bitfield>
|
|
<callback name="HookFunc" c:type="GHookFunc">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="723">Defines the type of a hook function that can be invoked
|
|
by g_hook_list_invoke().</doc>
|
|
<source-position filename="ghook.h" line="49"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="725">the data field of the #GHook is passed to the hook function here</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
<record name="HookList" c:type="GHookList">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="732">The #GHookList struct represents a list of hook functions.</doc>
|
|
<source-position filename="ghook.h" line="72"/>
|
|
<field name="seq_id" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="734">the next free #GHook id</doc>
|
|
<type name="gulong" c:type="gulong"/>
|
|
</field>
|
|
<field name="hook_size" writable="1" bits="16">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="735">the size of the #GHookList elements, in bytes</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="is_setup" writable="1" bits="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="736">1 if the #GHookList has been initialized</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="hooks" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="737">the first #GHook element in the list</doc>
|
|
<type name="Hook" c:type="GHook*"/>
|
|
</field>
|
|
<field name="dummy3" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="738">unused</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</field>
|
|
<field name="finalize_hook" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="739">the function to call to finalize a #GHook element.
|
|
The default behaviour is to call the hooks @destroy function</doc>
|
|
<type name="HookFinalizeFunc" c:type="GHookFinalizeFunc"/>
|
|
</field>
|
|
<field name="dummy" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="741">unused</doc>
|
|
<array zero-terminated="0" fixed-size="2">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</field>
|
|
<method name="clear" c:identifier="g_hook_list_clear">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17979">Removes all the #GHook elements from a #GHookList.</doc>
|
|
<source-position filename="ghook.h" line="108"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="hook_list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17981">a #GHookList</doc>
|
|
<type name="HookList" c:type="GHookList*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="init" c:identifier="g_hook_list_init">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17987">Initializes a #GHookList.
|
|
This must be called before the #GHookList is used.</doc>
|
|
<source-position filename="ghook.h" line="105"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="hook_list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17989">a #GHookList</doc>
|
|
<type name="HookList" c:type="GHookList*"/>
|
|
</instance-parameter>
|
|
<parameter name="hook_size" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17990">the size of each element in the #GHookList,
|
|
typically `sizeof (GHook)`.</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="invoke" c:identifier="g_hook_list_invoke">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17998">Calls all of the #GHook functions in a #GHookList.</doc>
|
|
<source-position filename="ghook.h" line="179"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="hook_list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18000">a #GHookList</doc>
|
|
<type name="HookList" c:type="GHookList*"/>
|
|
</instance-parameter>
|
|
<parameter name="may_recurse" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18001">%TRUE if functions which are already running
|
|
(e.g. in another thread) can be called. If set to %FALSE,
|
|
these are skipped</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="invoke_check" c:identifier="g_hook_list_invoke_check">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18009">Calls all of the #GHook functions in a #GHookList.
|
|
Any function which returns %FALSE is removed from the #GHookList.</doc>
|
|
<source-position filename="ghook.h" line="185"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="hook_list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18011">a #GHookList</doc>
|
|
<type name="HookList" c:type="GHookList*"/>
|
|
</instance-parameter>
|
|
<parameter name="may_recurse" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18012">%TRUE if functions which are already running
|
|
(e.g. in another thread) can be called. If set to %FALSE,
|
|
these are skipped</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="marshal" c:identifier="g_hook_list_marshal" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18021">Calls a function on each valid #GHook.</doc>
|
|
<source-position filename="ghook.h" line="190"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="hook_list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18023">a #GHookList</doc>
|
|
<type name="HookList" c:type="GHookList*"/>
|
|
</instance-parameter>
|
|
<parameter name="may_recurse" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18024">%TRUE if hooks which are currently running
|
|
(e.g. in another thread) are considered valid. If set to %FALSE,
|
|
these are skipped</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
<parameter name="marshaller" transfer-ownership="none" closure="2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18027">the function to call for each #GHook</doc>
|
|
<type name="HookMarshaller" c:type="GHookMarshaller"/>
|
|
</parameter>
|
|
<parameter name="marshal_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18028">data to pass to @marshaller</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="marshal_check" c:identifier="g_hook_list_marshal_check" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18034">Calls a function on each valid #GHook and destroys it if the
|
|
function returns %FALSE.</doc>
|
|
<source-position filename="ghook.h" line="195"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="hook_list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18036">a #GHookList</doc>
|
|
<type name="HookList" c:type="GHookList*"/>
|
|
</instance-parameter>
|
|
<parameter name="may_recurse" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18037">%TRUE if hooks which are currently running
|
|
(e.g. in another thread) are considered valid. If set to %FALSE,
|
|
these are skipped</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
<parameter name="marshaller" transfer-ownership="none" closure="2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18040">the function to call for each #GHook</doc>
|
|
<type name="HookCheckMarshaller" c:type="GHookCheckMarshaller"/>
|
|
</parameter>
|
|
<parameter name="marshal_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18041">data to pass to @marshaller</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
</record>
|
|
<callback name="HookMarshaller" c:type="GHookMarshaller">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="747">Defines the type of function used by g_hook_list_marshal().</doc>
|
|
<source-position filename="ghook.h" line="45"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hook" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="749">a #GHook</doc>
|
|
<type name="Hook" c:type="GHook*"/>
|
|
</parameter>
|
|
<parameter name="marshal_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="750">user data</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
<record name="IConv" c:type="GIConv" disguised="1" introspectable="0">
|
|
<doc xml:space="preserve" filename="gconvert.h" line="77">The GIConv struct wraps an iconv() conversion descriptor. It contains
|
|
private data and should only be accessed using the following functions.</doc>
|
|
<source-position filename="gconvert.h" line="83"/>
|
|
<method name="" c:identifier="g_iconv" moved-to="iconv" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18196">Same as the standard UNIX routine iconv(), but
|
|
may be implemented via libiconv on UNIX flavors that lack
|
|
a native implementation.
|
|
|
|
GLib provides g_convert() and g_locale_to_utf8() which are likely
|
|
more convenient than the raw iconv wrappers.
|
|
|
|
Note that the behaviour of iconv() for characters which are valid in the
|
|
input character set, but which have no representation in the output character
|
|
set, is implementation defined. This function may return success (with a
|
|
positive number of non-reversible conversions as replacement characters were
|
|
used), or it may return -1 and set an error such as %EILSEQ, in such a
|
|
situation.</doc>
|
|
<source-position filename="gconvert.h" line="89"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18218">count of non-reversible conversions, or -1 on error</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="converter" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18198">conversion descriptor from g_iconv_open()</doc>
|
|
<type name="IConv" c:type="GIConv"/>
|
|
</instance-parameter>
|
|
<parameter name="inbuf" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18199">bytes to convert</doc>
|
|
<type name="utf8" c:type="gchar**"/>
|
|
</parameter>
|
|
<parameter name="inbytes_left" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18200">inout parameter, bytes remaining to convert in @inbuf</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
<parameter name="outbuf" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18201">converted output bytes</doc>
|
|
<type name="utf8" c:type="gchar**"/>
|
|
</parameter>
|
|
<parameter name="outbytes_left" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18202">inout parameter, bytes available to fill in @outbuf</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="close" c:identifier="g_iconv_close" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18222">Same as the standard UNIX routine iconv_close(), but
|
|
may be implemented via libiconv on UNIX flavors that lack
|
|
a native implementation. Should be called to clean up
|
|
the conversion descriptor from g_iconv_open() when
|
|
you are done converting things.
|
|
|
|
GLib provides g_convert() and g_locale_to_utf8() which are likely
|
|
more convenient than the raw iconv wrappers.</doc>
|
|
<source-position filename="gconvert.h" line="95"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18235">-1 on error, 0 on success</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="converter" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18224">a conversion descriptor from g_iconv_open()</doc>
|
|
<type name="IConv" c:type="GIConv"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<function name="open" c:identifier="g_iconv_open" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18239">Same as the standard UNIX routine iconv_open(), but
|
|
may be implemented via libiconv on UNIX flavors that lack
|
|
a native implementation.
|
|
|
|
GLib provides g_convert() and g_locale_to_utf8() which are likely
|
|
more convenient than the raw iconv wrappers.</doc>
|
|
<source-position filename="gconvert.h" line="86"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18251">a "conversion descriptor", or (GIConv)-1 if
|
|
opening the converter failed.</doc>
|
|
<type name="IConv" c:type="GIConv"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="to_codeset" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18241">destination codeset</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="from_codeset" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18242">source codeset</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
</record>
|
|
<constant name="IEEE754_DOUBLE_BIAS" value="1023" c:type="G_IEEE754_DOUBLE_BIAS">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3494">The bias by which exponents in double-precision floats are offset.</doc>
|
|
<source-position filename="gtypes.h" line="502"/>
|
|
<type name="gint" c:type="gint"/>
|
|
</constant>
|
|
<constant name="IEEE754_FLOAT_BIAS" value="127" c:type="G_IEEE754_FLOAT_BIAS">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3501">The bias by which exponents in single-precision floats are offset.</doc>
|
|
<source-position filename="gtypes.h" line="501"/>
|
|
<type name="gint" c:type="gint"/>
|
|
</constant>
|
|
<record name="IOChannel" c:type="GIOChannel" glib:type-name="GIOChannel" glib:get-type="g_io_channel_get_type" c:symbol-prefix="io_channel">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="929">A data structure representing an IO Channel. The fields should be
|
|
considered private and should only be accessed with the following
|
|
functions.</doc>
|
|
<source-position filename="giochannel.h" line="126"/>
|
|
<field name="ref_count" readable="0" private="1">
|
|
<type name="gint" c:type="gint"/>
|
|
</field>
|
|
<field name="funcs" readable="0" private="1">
|
|
<type name="IOFuncs" c:type="GIOFuncs*"/>
|
|
</field>
|
|
<field name="encoding" readable="0" private="1">
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</field>
|
|
<field name="read_cd" introspectable="0" readable="0" private="1">
|
|
<type name="IConv" c:type="GIConv"/>
|
|
</field>
|
|
<field name="write_cd" introspectable="0" readable="0" private="1">
|
|
<type name="IConv" c:type="GIConv"/>
|
|
</field>
|
|
<field name="line_term" readable="0" private="1">
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</field>
|
|
<field name="line_term_len" readable="0" private="1">
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="buf_size" readable="0" private="1">
|
|
<type name="gsize" c:type="gsize"/>
|
|
</field>
|
|
<field name="read_buf" readable="0" private="1">
|
|
<type name="String" c:type="GString*"/>
|
|
</field>
|
|
<field name="encoded_read_buf" readable="0" private="1">
|
|
<type name="String" c:type="GString*"/>
|
|
</field>
|
|
<field name="write_buf" readable="0" private="1">
|
|
<type name="String" c:type="GString*"/>
|
|
</field>
|
|
<field name="partial_write_buf" readable="0" private="1">
|
|
<array zero-terminated="0" fixed-size="6">
|
|
<type name="gchar" c:type="gchar"/>
|
|
</array>
|
|
</field>
|
|
<field name="use_buffer" readable="0" bits="1" private="1">
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="do_encode" readable="0" bits="1" private="1">
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="close_on_unref" readable="0" bits="1" private="1">
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="is_readable" readable="0" bits="1" private="1">
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="is_writeable" readable="0" bits="1" private="1">
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="is_seekable" readable="0" bits="1" private="1">
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="reserved1" readable="0" private="1">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</field>
|
|
<field name="reserved2" readable="0" private="1">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</field>
|
|
<constructor name="new_file" c:identifier="g_io_channel_new_file" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18626">Open a file @filename as a #GIOChannel using mode @mode. This
|
|
channel will be closed when the last reference to it is dropped,
|
|
so there is no need to call g_io_channel_close() (though doing
|
|
so will not cause problems, as long as no attempt is made to
|
|
access the channel after it is closed).</doc>
|
|
<source-position filename="giochannel.h" line="291"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18639">A #GIOChannel on success, %NULL on failure.</doc>
|
|
<type name="IOChannel" c:type="GIOChannel*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="filename" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18628">A string containing the name of a file</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="mode" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18629">One of "r", "w", "a", "r+", "w+", "a+". These have
|
|
the same meaning as in fopen()</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="unix_new" c:identifier="g_io_channel_unix_new">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18943">Creates a new #GIOChannel given a file descriptor. On UNIX systems
|
|
this works for plain files, pipes, and sockets.
|
|
|
|
The returned #GIOChannel has a reference count of 1.
|
|
|
|
The default encoding for #GIOChannel is UTF-8. If your application
|
|
is reading output from a command using via pipe, you may need to set
|
|
the encoding to the encoding of the current locale (see
|
|
g_get_charset()) with the g_io_channel_set_encoding() function.
|
|
By default, the fd passed will not be closed when the final reference
|
|
to the #GIOChannel data structure is dropped.
|
|
|
|
If you want to read raw binary data without interpretation, then
|
|
call the g_io_channel_set_encoding() function with %NULL for the
|
|
encoding argument.
|
|
|
|
This function is available in GLib on Windows, too, but you should
|
|
avoid using it on Windows. The domain of file descriptors and
|
|
sockets overlap. There is no way for GLib to know which one you mean
|
|
in case the argument you pass to this function happens to be both a
|
|
valid file descriptor and socket. If that happens a warning is
|
|
issued, and GLib assumes that it is the file descriptor you mean.</doc>
|
|
<source-position filename="giochannel.h" line="321"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18970">a new #GIOChannel.</doc>
|
|
<type name="IOChannel" c:type="GIOChannel*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="fd" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18945">a file descriptor.</doc>
|
|
<type name="gint" c:type="int"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<method name="close" c:identifier="g_io_channel_close" deprecated="1" deprecated-version="2.2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18488">Close an IO channel. Any pending data to be written will be
|
|
flushed, ignoring errors. The channel will not be freed until the
|
|
last reference is dropped using g_io_channel_unref().</doc>
|
|
<doc-deprecated xml:space="preserve">Use g_io_channel_shutdown() instead.</doc-deprecated>
|
|
<source-position filename="giochannel.h" line="183"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="channel" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18490">A #GIOChannel</doc>
|
|
<type name="IOChannel" c:type="GIOChannel*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="flush" c:identifier="g_io_channel_flush" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18511">Flushes the write buffer for the GIOChannel.</doc>
|
|
<source-position filename="giochannel.h" line="247"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18518">the status of the operation: One of
|
|
#G_IO_STATUS_NORMAL, #G_IO_STATUS_AGAIN, or
|
|
#G_IO_STATUS_ERROR.</doc>
|
|
<type name="IOStatus" c:type="GIOStatus"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="channel" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18513">a #GIOChannel</doc>
|
|
<type name="IOChannel" c:type="GIOChannel*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_buffer_condition" c:identifier="g_io_channel_get_buffer_condition">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18524">This function returns a #GIOCondition depending on whether there
|
|
is data to be read/space to write data in the internal buffers in
|
|
the #GIOChannel. Only the flags %G_IO_IN and %G_IO_OUT may be set.</doc>
|
|
<source-position filename="giochannel.h" line="214"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18532">A #GIOCondition</doc>
|
|
<type name="IOCondition" c:type="GIOCondition"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="channel" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18526">A #GIOChannel</doc>
|
|
<type name="IOChannel" c:type="GIOChannel*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_buffer_size" c:identifier="g_io_channel_get_buffer_size">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18536">Gets the buffer size.</doc>
|
|
<source-position filename="giochannel.h" line="212"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18542">the size of the buffer.</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="channel" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18538">a #GIOChannel</doc>
|
|
<type name="IOChannel" c:type="GIOChannel*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_buffered" c:identifier="g_io_channel_get_buffered">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18546">Returns whether @channel is buffered.</doc>
|
|
<source-position filename="giochannel.h" line="232"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18552">%TRUE if the @channel is buffered.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="channel" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18548">a #GIOChannel</doc>
|
|
<type name="IOChannel" c:type="GIOChannel*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_close_on_unref" c:identifier="g_io_channel_get_close_on_unref">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18556">Returns whether the file/socket/whatever associated with @channel
|
|
will be closed when @channel receives its final unref and is
|
|
destroyed. The default value of this is %TRUE for channels created
|
|
by g_io_channel_new_file (), and %FALSE for all other channels.</doc>
|
|
<source-position filename="giochannel.h" line="243"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18565">%TRUE if the channel will be closed, %FALSE otherwise.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="channel" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18558">a #GIOChannel.</doc>
|
|
<type name="IOChannel" c:type="GIOChannel*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_encoding" c:identifier="g_io_channel_get_encoding">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18569">Gets the encoding for the input/output of the channel.
|
|
The internal encoding is always UTF-8. The encoding %NULL
|
|
makes the channel safe for binary data.</doc>
|
|
<source-position filename="giochannel.h" line="238"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18577">A string containing the encoding, this string is
|
|
owned by GLib and must not be freed.</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="channel" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18571">a #GIOChannel</doc>
|
|
<type name="IOChannel" c:type="GIOChannel*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_flags" c:identifier="g_io_channel_get_flags">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18582">Gets the current flags for a #GIOChannel, including read-only
|
|
flags such as %G_IO_FLAG_IS_READABLE.
|
|
|
|
The values of the flags %G_IO_FLAG_IS_READABLE and %G_IO_FLAG_IS_WRITABLE
|
|
are cached for internal use by the channel when it is created.
|
|
If they should change at some later point (e.g. partial shutdown
|
|
of a socket with the UNIX shutdown() function), the user
|
|
should immediately call g_io_channel_get_flags() to update
|
|
the internal values of these flags.</doc>
|
|
<source-position filename="giochannel.h" line="220"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18596">the flags which are set on the channel</doc>
|
|
<type name="IOFlags" c:type="GIOFlags"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="channel" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18584">a #GIOChannel</doc>
|
|
<type name="IOChannel" c:type="GIOChannel*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_line_term" c:identifier="g_io_channel_get_line_term">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18600">This returns the string that #GIOChannel uses to determine
|
|
where in the file a line break occurs. A value of %NULL
|
|
indicates autodetection.</doc>
|
|
<source-position filename="giochannel.h" line="226"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18609">The line termination string. This value
|
|
is owned by GLib and must not be freed.</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="channel" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18602">a #GIOChannel</doc>
|
|
<type name="IOChannel" c:type="GIOChannel*"/>
|
|
</instance-parameter>
|
|
<parameter name="length" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18603">a location to return the length of the line terminator</doc>
|
|
<type name="gint" c:type="gint*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="init" c:identifier="g_io_channel_init">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18614">Initializes a #GIOChannel struct.
|
|
|
|
This is called by each of the above functions when creating a
|
|
#GIOChannel, and so is not often needed by the application
|
|
programmer (unless you are creating a new type of #GIOChannel).</doc>
|
|
<source-position filename="giochannel.h" line="159"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="channel" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18616">a #GIOChannel</doc>
|
|
<type name="IOChannel" c:type="GIOChannel*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="read" c:identifier="g_io_channel_read" deprecated="1" deprecated-version="2.2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18643">Reads data from a #GIOChannel.</doc>
|
|
<doc-deprecated xml:space="preserve">Use g_io_channel_read_chars() instead.</doc-deprecated>
|
|
<source-position filename="giochannel.h" line="166"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18653">%G_IO_ERROR_NONE if the operation was successful.</doc>
|
|
<type name="IOError" c:type="GIOError"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="channel" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18645">a #GIOChannel</doc>
|
|
<type name="IOChannel" c:type="GIOChannel*"/>
|
|
</instance-parameter>
|
|
<parameter name="buf" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18646">a buffer to read the data into (which should be at least
|
|
count bytes long)</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</parameter>
|
|
<parameter name="count" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18648">the number of bytes to read from the #GIOChannel</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
<parameter name="bytes_read" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18649">returns the number of bytes actually read</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="read_chars" c:identifier="g_io_channel_read_chars" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18658">Replacement for g_io_channel_read() with the new API.</doc>
|
|
<source-position filename="giochannel.h" line="266"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18675">the status of the operation.</doc>
|
|
<type name="IOStatus" c:type="GIOStatus"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="channel" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18660">a #GIOChannel</doc>
|
|
<type name="IOChannel" c:type="GIOChannel*"/>
|
|
</instance-parameter>
|
|
<parameter name="buf" direction="out" caller-allocates="1" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18661">
|
|
a buffer to read data into</doc>
|
|
<array length="1" zero-terminated="0" c:type="gchar*">
|
|
<type name="guint8"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="count" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18663">the size of the buffer. Note that the buffer may not be
|
|
complelely filled even if there is data in the buffer if the
|
|
remaining data is not a complete character.</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
<parameter name="bytes_read" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18666">The number of bytes read. This may be
|
|
zero even on success if count < 6 and the channel's encoding
|
|
is non-%NULL. This indicates that the next UTF-8 character is
|
|
too wide for the buffer.</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="read_line" c:identifier="g_io_channel_read_line" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18679">Reads a line, including the terminating character(s),
|
|
from a #GIOChannel into a newly-allocated string.
|
|
@str_return will contain allocated memory if the return
|
|
is %G_IO_STATUS_NORMAL.</doc>
|
|
<source-position filename="giochannel.h" line="250"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18696">the status of the operation.</doc>
|
|
<type name="IOStatus" c:type="GIOStatus"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="channel" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18681">a #GIOChannel</doc>
|
|
<type name="IOChannel" c:type="GIOChannel*"/>
|
|
</instance-parameter>
|
|
<parameter name="str_return" direction="out" caller-allocates="0" transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18682">The line read from the #GIOChannel, including the
|
|
line terminator. This data should be freed with g_free()
|
|
when no longer needed. This is a nul-terminated string.
|
|
If a @length of zero is returned, this will be %NULL instead.</doc>
|
|
<type name="utf8" c:type="gchar**"/>
|
|
</parameter>
|
|
<parameter name="length" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18686">location to store length of the read data, or %NULL</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
<parameter name="terminator_pos" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18687">location to store position of line terminator, or %NULL</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="read_line_string" c:identifier="g_io_channel_read_line_string" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18700">Reads a line from a #GIOChannel, using a #GString as a buffer.</doc>
|
|
<source-position filename="giochannel.h" line="256"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18712">the status of the operation.</doc>
|
|
<type name="IOStatus" c:type="GIOStatus"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="channel" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18702">a #GIOChannel</doc>
|
|
<type name="IOChannel" c:type="GIOChannel*"/>
|
|
</instance-parameter>
|
|
<parameter name="buffer" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18703">a #GString into which the line will be written.
|
|
If @buffer already contains data, the old data will
|
|
be overwritten.</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</parameter>
|
|
<parameter name="terminator_pos" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18706">location to store position of line terminator, or %NULL</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="read_to_end" c:identifier="g_io_channel_read_to_end" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18716">Reads all the remaining data from the file.</doc>
|
|
<source-position filename="giochannel.h" line="261"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18730">%G_IO_STATUS_NORMAL on success.
|
|
This function never returns %G_IO_STATUS_EOF.</doc>
|
|
<type name="IOStatus" c:type="GIOStatus"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="channel" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18718">a #GIOChannel</doc>
|
|
<type name="IOChannel" c:type="GIOChannel*"/>
|
|
</instance-parameter>
|
|
<parameter name="str_return" direction="out" caller-allocates="0" transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18719">Location to
|
|
store a pointer to a string holding the remaining data in the
|
|
#GIOChannel. This data should be freed with g_free() when no
|
|
longer needed. This data is terminated by an extra nul
|
|
character, but there may be other nuls in the intervening data.</doc>
|
|
<array length="1" zero-terminated="0" c:type="gchar**">
|
|
<type name="guint8"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="length" direction="out" caller-allocates="0" transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18724">location to store length of the data</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="read_unichar" c:identifier="g_io_channel_read_unichar" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18735">Reads a Unicode character from @channel.
|
|
This function cannot be called on a channel with %NULL encoding.</doc>
|
|
<source-position filename="giochannel.h" line="272"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18745">a #GIOStatus</doc>
|
|
<type name="IOStatus" c:type="GIOStatus"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="channel" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18737">a #GIOChannel</doc>
|
|
<type name="IOChannel" c:type="GIOChannel*"/>
|
|
</instance-parameter>
|
|
<parameter name="thechar" direction="out" caller-allocates="0" transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18738">a location to return a character</doc>
|
|
<type name="gunichar" c:type="gunichar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="ref" c:identifier="g_io_channel_ref">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18749">Increments the reference count of a #GIOChannel.</doc>
|
|
<source-position filename="giochannel.h" line="161"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18755">the @channel that was passed in (since 2.6)</doc>
|
|
<type name="IOChannel" c:type="GIOChannel*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="channel" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18751">a #GIOChannel</doc>
|
|
<type name="IOChannel" c:type="GIOChannel*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="seek" c:identifier="g_io_channel_seek" deprecated="1" deprecated-version="2.2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18759">Sets the current position in the #GIOChannel, similar to the standard
|
|
library function fseek().</doc>
|
|
<doc-deprecated xml:space="preserve">Use g_io_channel_seek_position() instead.</doc-deprecated>
|
|
<source-position filename="giochannel.h" line="178"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18771">%G_IO_ERROR_NONE if the operation was successful.</doc>
|
|
<type name="IOError" c:type="GIOError"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="channel" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18761">a #GIOChannel</doc>
|
|
<type name="IOChannel" c:type="GIOChannel*"/>
|
|
</instance-parameter>
|
|
<parameter name="offset" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18762">an offset, in bytes, which is added to the position specified
|
|
by @type</doc>
|
|
<type name="gint64" c:type="gint64"/>
|
|
</parameter>
|
|
<parameter name="type" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18764">the position in the file, which can be %G_SEEK_CUR (the current
|
|
position), %G_SEEK_SET (the start of the file), or %G_SEEK_END
|
|
(the end of the file)</doc>
|
|
<type name="SeekType" c:type="GSeekType"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="seek_position" c:identifier="g_io_channel_seek_position" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18776">Replacement for g_io_channel_seek() with the new API.</doc>
|
|
<source-position filename="giochannel.h" line="286"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18788">the status of the operation.</doc>
|
|
<type name="IOStatus" c:type="GIOStatus"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="channel" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18778">a #GIOChannel</doc>
|
|
<type name="IOChannel" c:type="GIOChannel*"/>
|
|
</instance-parameter>
|
|
<parameter name="offset" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18779">The offset in bytes from the position specified by @type</doc>
|
|
<type name="gint64" c:type="gint64"/>
|
|
</parameter>
|
|
<parameter name="type" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18780">a #GSeekType. The type %G_SEEK_CUR is only allowed in those
|
|
cases where a call to g_io_channel_set_encoding ()
|
|
is allowed. See the documentation for
|
|
g_io_channel_set_encoding () for details.</doc>
|
|
<type name="SeekType" c:type="GSeekType"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_buffer_size" c:identifier="g_io_channel_set_buffer_size">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18792">Sets the buffer size.</doc>
|
|
<source-position filename="giochannel.h" line="209"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="channel" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18794">a #GIOChannel</doc>
|
|
<type name="IOChannel" c:type="GIOChannel*"/>
|
|
</instance-parameter>
|
|
<parameter name="size" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18795">the size of the buffer, or 0 to let GLib pick a good size</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_buffered" c:identifier="g_io_channel_set_buffered">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18801">The buffering state can only be set if the channel's encoding
|
|
is %NULL. For any other encoding, the channel must be buffered.
|
|
|
|
A buffered channel can only be set unbuffered if the channel's
|
|
internal buffers have been flushed. Newly created channels or
|
|
channels which have returned %G_IO_STATUS_EOF
|
|
not require such a flush. For write-only channels, a call to
|
|
g_io_channel_flush () is sufficient. For all other channels,
|
|
the buffers may be flushed by a call to g_io_channel_seek_position ().
|
|
This includes the possibility of seeking with seek type %G_SEEK_CUR
|
|
and an offset of zero. Note that this means that socket-based
|
|
channels cannot be set unbuffered once they have had data
|
|
read from them.
|
|
|
|
On unbuffered channels, it is safe to mix read and write
|
|
calls from the new and old APIs, if this is necessary for
|
|
maintaining old code.
|
|
|
|
The default state of the channel is buffered.</doc>
|
|
<source-position filename="giochannel.h" line="229"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="channel" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18803">a #GIOChannel</doc>
|
|
<type name="IOChannel" c:type="GIOChannel*"/>
|
|
</instance-parameter>
|
|
<parameter name="buffered" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18804">whether to set the channel buffered or unbuffered</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_close_on_unref" c:identifier="g_io_channel_set_close_on_unref">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18828">Whether to close the channel on the final unref of the #GIOChannel
|
|
data structure. The default value of this is %TRUE for channels
|
|
created by g_io_channel_new_file (), and %FALSE for all other channels.
|
|
|
|
Setting this flag to %TRUE for a channel you have already closed
|
|
can cause problems when the final reference to the #GIOChannel is dropped.</doc>
|
|
<source-position filename="giochannel.h" line="240"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="channel" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18830">a #GIOChannel</doc>
|
|
<type name="IOChannel" c:type="GIOChannel*"/>
|
|
</instance-parameter>
|
|
<parameter name="do_close" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18831">Whether to close the channel on the final unref of
|
|
the GIOChannel data structure.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_encoding" c:identifier="g_io_channel_set_encoding" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18843">Sets the encoding for the input/output of the channel.
|
|
The internal encoding is always UTF-8. The default encoding
|
|
for the external file is UTF-8.
|
|
|
|
The encoding %NULL is safe to use with binary data.
|
|
|
|
The encoding can only be set if one of the following conditions
|
|
is true:
|
|
|
|
- The channel was just created, and has not been written to or read from yet.
|
|
|
|
- The channel is write-only.
|
|
|
|
- The channel is a file, and the file pointer was just repositioned
|
|
by a call to g_io_channel_seek_position(). (This flushes all the
|
|
internal buffers.)
|
|
|
|
- The current encoding is %NULL or UTF-8.
|
|
|
|
- One of the (new API) read functions has just returned %G_IO_STATUS_EOF
|
|
(or, in the case of g_io_channel_read_to_end(), %G_IO_STATUS_NORMAL).
|
|
|
|
- One of the functions g_io_channel_read_chars() or
|
|
g_io_channel_read_unichar() has returned %G_IO_STATUS_AGAIN or
|
|
%G_IO_STATUS_ERROR. This may be useful in the case of
|
|
%G_CONVERT_ERROR_ILLEGAL_SEQUENCE.
|
|
Returning one of these statuses from g_io_channel_read_line(),
|
|
g_io_channel_read_line_string(), or g_io_channel_read_to_end()
|
|
does not guarantee that the encoding can be changed.
|
|
|
|
Channels which do not meet one of the above conditions cannot call
|
|
g_io_channel_seek_position() with an offset of %G_SEEK_CUR, and, if
|
|
they are "seekable", cannot call g_io_channel_write_chars() after
|
|
calling one of the API "read" functions.</doc>
|
|
<source-position filename="giochannel.h" line="234"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18884">%G_IO_STATUS_NORMAL if the encoding was successfully set</doc>
|
|
<type name="IOStatus" c:type="GIOStatus"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="channel" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18845">a #GIOChannel</doc>
|
|
<type name="IOChannel" c:type="GIOChannel*"/>
|
|
</instance-parameter>
|
|
<parameter name="encoding" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18846">the encoding type</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_flags" c:identifier="g_io_channel_set_flags" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18888">Sets the (writeable) flags in @channel to (@flags & %G_IO_FLAG_SET_MASK).</doc>
|
|
<source-position filename="giochannel.h" line="216"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18896">the status of the operation.</doc>
|
|
<type name="IOStatus" c:type="GIOStatus"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="channel" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18890">a #GIOChannel</doc>
|
|
<type name="IOChannel" c:type="GIOChannel*"/>
|
|
</instance-parameter>
|
|
<parameter name="flags" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18891">the flags to set on the IO channel</doc>
|
|
<type name="IOFlags" c:type="GIOFlags"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_line_term" c:identifier="g_io_channel_set_line_term">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18900">This sets the string that #GIOChannel uses to determine
|
|
where in the file a line break occurs.</doc>
|
|
<source-position filename="giochannel.h" line="222"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="channel" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18902">a #GIOChannel</doc>
|
|
<type name="IOChannel" c:type="GIOChannel*"/>
|
|
</instance-parameter>
|
|
<parameter name="line_term" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18903">The line termination string. Use %NULL for
|
|
autodetect. Autodetection breaks on "\n", "\r\n", "\r", "\0",
|
|
and the Unicode paragraph separator. Autodetection should not be
|
|
used for anything other than file-based channels.</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="length" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18907">The length of the termination string. If -1 is passed, the
|
|
string is assumed to be nul-terminated. This option allows
|
|
termination strings with embedded nuls.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="shutdown" c:identifier="g_io_channel_shutdown" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18916">Close an IO channel. Any pending data to be written will be
|
|
flushed if @flush is %TRUE. The channel will not be freed until the
|
|
last reference is dropped using g_io_channel_unref().</doc>
|
|
<source-position filename="giochannel.h" line="186"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18926">the status of the operation.</doc>
|
|
<type name="IOStatus" c:type="GIOStatus"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="channel" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18918">a #GIOChannel</doc>
|
|
<type name="IOChannel" c:type="GIOChannel*"/>
|
|
</instance-parameter>
|
|
<parameter name="flush" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18919">if %TRUE, flush pending</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="unix_get_fd" c:identifier="g_io_channel_unix_get_fd">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18930">Returns the file descriptor of the #GIOChannel.
|
|
|
|
On Windows this function returns the file descriptor or socket of
|
|
the #GIOChannel.</doc>
|
|
<source-position filename="giochannel.h" line="323"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18939">the file descriptor of the #GIOChannel.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="channel" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18932">a #GIOChannel, created with g_io_channel_unix_new().</doc>
|
|
<type name="IOChannel" c:type="GIOChannel*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="unref" c:identifier="g_io_channel_unref">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18974">Decrements the reference count of a #GIOChannel.</doc>
|
|
<source-position filename="giochannel.h" line="163"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="channel" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18976">a #GIOChannel</doc>
|
|
<type name="IOChannel" c:type="GIOChannel*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="write" c:identifier="g_io_channel_write" deprecated="1" deprecated-version="2.2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19043">Writes data to a #GIOChannel.</doc>
|
|
<doc-deprecated xml:space="preserve">Use g_io_channel_write_chars() instead.</doc-deprecated>
|
|
<source-position filename="giochannel.h" line="172"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19052">%G_IO_ERROR_NONE if the operation was successful.</doc>
|
|
<type name="IOError" c:type="GIOError"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="channel" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19045">a #GIOChannel</doc>
|
|
<type name="IOChannel" c:type="GIOChannel*"/>
|
|
</instance-parameter>
|
|
<parameter name="buf" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19046">the buffer containing the data to write</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="count" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19047">the number of bytes to write</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
<parameter name="bytes_written" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19048">the number of bytes actually written</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="write_chars" c:identifier="g_io_channel_write_chars" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19057">Replacement for g_io_channel_write() with the new API.
|
|
|
|
On seekable channels with encodings other than %NULL or UTF-8, generic
|
|
mixing of reading and writing is not allowed. A call to g_io_channel_write_chars ()
|
|
may only be made on a channel from which data has been read in the
|
|
cases described in the documentation for g_io_channel_set_encoding ().</doc>
|
|
<source-position filename="giochannel.h" line="276"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19078">the status of the operation.</doc>
|
|
<type name="IOStatus" c:type="GIOStatus"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="channel" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19059">a #GIOChannel</doc>
|
|
<type name="IOChannel" c:type="GIOChannel*"/>
|
|
</instance-parameter>
|
|
<parameter name="buf" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19060">a buffer to write data from</doc>
|
|
<array zero-terminated="0" c:type="const gchar*">
|
|
<type name="guint8"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="count" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19061">the size of the buffer. If -1, the buffer
|
|
is taken to be a nul-terminated string.</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
<parameter name="bytes_written" direction="out" caller-allocates="0" transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19063">The number of bytes written. This can be nonzero
|
|
even if the return value is not %G_IO_STATUS_NORMAL.
|
|
If the return value is %G_IO_STATUS_NORMAL and the
|
|
channel is blocking, this will always be equal
|
|
to @count if @count >= 0.</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="write_unichar" c:identifier="g_io_channel_write_unichar" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19082">Writes a Unicode character to @channel.
|
|
This function cannot be called on a channel with %NULL encoding.</doc>
|
|
<source-position filename="giochannel.h" line="282"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19092">a #GIOStatus</doc>
|
|
<type name="IOStatus" c:type="GIOStatus"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="channel" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19084">a #GIOChannel</doc>
|
|
<type name="IOChannel" c:type="GIOChannel*"/>
|
|
</instance-parameter>
|
|
<parameter name="thechar" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19085">a character</doc>
|
|
<type name="gunichar" c:type="gunichar"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<function name="error_from_errno" c:identifier="g_io_channel_error_from_errno">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18500">Converts an `errno` error number to a #GIOChannelError.</doc>
|
|
<source-position filename="giochannel.h" line="300"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18506">a #GIOChannelError error number, e.g.
|
|
%G_IO_CHANNEL_ERROR_INVAL.</doc>
|
|
<type name="IOChannelError" c:type="GIOChannelError"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="en" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18502">an `errno` error number, e.g. `EINVAL`</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="error_quark" c:identifier="g_io_channel_error_quark">
|
|
<return-value transfer-ownership="none">
|
|
<type name="Quark" c:type="GQuark"/>
|
|
</return-value>
|
|
</function>
|
|
</record>
|
|
<enumeration name="IOChannelError" c:type="GIOChannelError" glib:error-domain="g-io-channel-error-quark">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="938">Error codes returned by #GIOChannel operations.</doc>
|
|
<source-position filename="giochannel.h" line="67"/>
|
|
<member name="fbig" value="0" c:identifier="G_IO_CHANNEL_ERROR_FBIG">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="940">File too large.</doc>
|
|
</member>
|
|
<member name="inval" value="1" c:identifier="G_IO_CHANNEL_ERROR_INVAL">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="941">Invalid argument.</doc>
|
|
</member>
|
|
<member name="io" value="2" c:identifier="G_IO_CHANNEL_ERROR_IO">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="942">IO error.</doc>
|
|
</member>
|
|
<member name="isdir" value="3" c:identifier="G_IO_CHANNEL_ERROR_ISDIR">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="943">File is a directory.</doc>
|
|
</member>
|
|
<member name="nospc" value="4" c:identifier="G_IO_CHANNEL_ERROR_NOSPC">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="944">No space left on device.</doc>
|
|
</member>
|
|
<member name="nxio" value="5" c:identifier="G_IO_CHANNEL_ERROR_NXIO">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="945">No such device or address.</doc>
|
|
</member>
|
|
<member name="overflow" value="6" c:identifier="G_IO_CHANNEL_ERROR_OVERFLOW">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="946">Value too large for defined datatype.</doc>
|
|
</member>
|
|
<member name="pipe" value="7" c:identifier="G_IO_CHANNEL_ERROR_PIPE">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="947">Broken pipe.</doc>
|
|
</member>
|
|
<member name="failed" value="8" c:identifier="G_IO_CHANNEL_ERROR_FAILED">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="948">Some other error.</doc>
|
|
</member>
|
|
</enumeration>
|
|
<bitfield name="IOCondition" glib:type-name="GIOCondition" glib:get-type="g_io_condition_get_type" c:type="GIOCondition">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="954">A bitwise combination representing a condition to watch for on an
|
|
event source.</doc>
|
|
<member name="in" value="1" c:identifier="G_IO_IN" glib:nick="in">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="956">There is data to read.</doc>
|
|
</member>
|
|
<member name="out" value="4" c:identifier="G_IO_OUT" glib:nick="out">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="957">Data can be written (without blocking).</doc>
|
|
</member>
|
|
<member name="pri" value="2" c:identifier="G_IO_PRI" glib:nick="pri">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="958">There is urgent data to read.</doc>
|
|
</member>
|
|
<member name="err" value="8" c:identifier="G_IO_ERR" glib:nick="err">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="959">Error condition.</doc>
|
|
</member>
|
|
<member name="hup" value="16" c:identifier="G_IO_HUP" glib:nick="hup">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="960">Hung up (the connection has been broken, usually for
|
|
pipes and sockets).</doc>
|
|
</member>
|
|
<member name="nval" value="32" c:identifier="G_IO_NVAL" glib:nick="nval">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="962">Invalid request. The file descriptor is not open.</doc>
|
|
</member>
|
|
</bitfield>
|
|
<enumeration name="IOError" c:type="GIOError">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="969">#GIOError is only used by the deprecated functions
|
|
g_io_channel_read(), g_io_channel_write(), and g_io_channel_seek().</doc>
|
|
<source-position filename="giochannel.h" line="50"/>
|
|
<member name="none" value="0" c:identifier="G_IO_ERROR_NONE">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="971">no error</doc>
|
|
</member>
|
|
<member name="again" value="1" c:identifier="G_IO_ERROR_AGAIN">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="972">an EAGAIN error occurred</doc>
|
|
</member>
|
|
<member name="inval" value="2" c:identifier="G_IO_ERROR_INVAL">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="973">an EINVAL error occurred</doc>
|
|
</member>
|
|
<member name="unknown" value="3" c:identifier="G_IO_ERROR_UNKNOWN">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="974">another error occurred</doc>
|
|
</member>
|
|
</enumeration>
|
|
<bitfield name="IOFlags" c:type="GIOFlags">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="981">Specifies properties of a #GIOChannel. Some of the flags can only be
|
|
read with g_io_channel_get_flags(), but not changed with
|
|
g_io_channel_set_flags().</doc>
|
|
<source-position filename="giochannel.h" line="95"/>
|
|
<member name="append" value="1" c:identifier="G_IO_FLAG_APPEND">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="983">turns on append mode, corresponds to %O_APPEND
|
|
(see the documentation of the UNIX open() syscall)</doc>
|
|
</member>
|
|
<member name="nonblock" value="2" c:identifier="G_IO_FLAG_NONBLOCK">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="985">turns on nonblocking mode, corresponds to
|
|
%O_NONBLOCK/%O_NDELAY (see the documentation of the UNIX open()
|
|
syscall)</doc>
|
|
</member>
|
|
<member name="is_readable" value="4" c:identifier="G_IO_FLAG_IS_READABLE">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="988">indicates that the io channel is readable.
|
|
This flag cannot be changed.</doc>
|
|
</member>
|
|
<member name="is_writable" value="8" c:identifier="G_IO_FLAG_IS_WRITABLE">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="990">indicates that the io channel is writable.
|
|
This flag cannot be changed.</doc>
|
|
</member>
|
|
<member name="is_writeable" value="8" c:identifier="G_IO_FLAG_IS_WRITEABLE">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="992">a misspelled version of @G_IO_FLAG_IS_WRITABLE
|
|
that existed before the spelling was fixed in GLib 2.30. It is kept
|
|
here for compatibility reasons. Deprecated since 2.30</doc>
|
|
</member>
|
|
<member name="is_seekable" value="16" c:identifier="G_IO_FLAG_IS_SEEKABLE">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="995">indicates that the io channel is seekable,
|
|
i.e. that g_io_channel_seek_position() can be used on it.
|
|
This flag cannot be changed.</doc>
|
|
</member>
|
|
<member name="mask" value="31" c:identifier="G_IO_FLAG_MASK">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="998">the mask that specifies all the valid flags.</doc>
|
|
</member>
|
|
<member name="get_mask" value="31" c:identifier="G_IO_FLAG_GET_MASK">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="999">the mask of the flags that are returned from
|
|
g_io_channel_get_flags()</doc>
|
|
</member>
|
|
<member name="set_mask" value="3" c:identifier="G_IO_FLAG_SET_MASK">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1001">the mask of the flags that the user can modify
|
|
with g_io_channel_set_flags()</doc>
|
|
</member>
|
|
</bitfield>
|
|
<callback name="IOFunc" c:type="GIOFunc">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1010">Specifies the type of function passed to g_io_add_watch() or
|
|
g_io_add_watch_full(), which is called when the requested condition
|
|
on a #GIOChannel is satisfied.</doc>
|
|
<source-position filename="giochannel.h" line="128"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1020">the function should return %FALSE if the event source
|
|
should be removed</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="source" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1012">the #GIOChannel event source</doc>
|
|
<type name="IOChannel" c:type="GIOChannel*"/>
|
|
</parameter>
|
|
<parameter name="condition" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1013">the condition which has been satisfied</doc>
|
|
<type name="IOCondition" c:type="GIOCondition"/>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1014">user data set in g_io_add_watch() or g_io_add_watch_full()</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
<record name="IOFuncs" c:type="GIOFuncs">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1025">A table of functions used to handle different types of #GIOChannel
|
|
in a generic way.</doc>
|
|
<source-position filename="giochannel.h" line="156"/>
|
|
<field name="io_read">
|
|
<callback name="io_read" throws="1">
|
|
<source-position filename="giochannel.h" line="133"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="IOStatus" c:type="GIOStatus"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="channel" transfer-ownership="none">
|
|
<type name="IOChannel" c:type="GIOChannel*"/>
|
|
</parameter>
|
|
<parameter name="buf" transfer-ownership="none">
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</parameter>
|
|
<parameter name="count" transfer-ownership="none">
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
<parameter name="bytes_read" transfer-ownership="none">
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
</field>
|
|
<field name="io_write">
|
|
<callback name="io_write" throws="1">
|
|
<source-position filename="giochannel.h" line="138"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="IOStatus" c:type="GIOStatus"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="channel" transfer-ownership="none">
|
|
<type name="IOChannel" c:type="GIOChannel*"/>
|
|
</parameter>
|
|
<parameter name="buf" transfer-ownership="none">
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="count" transfer-ownership="none">
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
<parameter name="bytes_written" transfer-ownership="none">
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
</field>
|
|
<field name="io_seek">
|
|
<callback name="io_seek" throws="1">
|
|
<source-position filename="giochannel.h" line="143"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="IOStatus" c:type="GIOStatus"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="channel" transfer-ownership="none">
|
|
<type name="IOChannel" c:type="GIOChannel*"/>
|
|
</parameter>
|
|
<parameter name="offset" transfer-ownership="none">
|
|
<type name="gint64" c:type="gint64"/>
|
|
</parameter>
|
|
<parameter name="type" transfer-ownership="none">
|
|
<type name="SeekType" c:type="GSeekType"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
</field>
|
|
<field name="io_close">
|
|
<callback name="io_close" throws="1">
|
|
<source-position filename="giochannel.h" line="147"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="IOStatus" c:type="GIOStatus"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="channel" transfer-ownership="none">
|
|
<type name="IOChannel" c:type="GIOChannel*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
</field>
|
|
<field name="io_create_watch">
|
|
<callback name="io_create_watch">
|
|
<source-position filename="giochannel.h" line="149"/>
|
|
<return-value transfer-ownership="full">
|
|
<type name="Source" c:type="GSource*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="channel" transfer-ownership="none">
|
|
<type name="IOChannel" c:type="GIOChannel*"/>
|
|
</parameter>
|
|
<parameter name="condition" transfer-ownership="none">
|
|
<type name="IOCondition" c:type="GIOCondition"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
</field>
|
|
<field name="io_free">
|
|
<callback name="io_free">
|
|
<source-position filename="giochannel.h" line="151"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="channel" transfer-ownership="none">
|
|
<type name="IOChannel" c:type="GIOChannel*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
</field>
|
|
<field name="io_set_flags">
|
|
<callback name="io_set_flags" throws="1">
|
|
<source-position filename="giochannel.h" line="152"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="IOStatus" c:type="GIOStatus"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="channel" transfer-ownership="none">
|
|
<type name="IOChannel" c:type="GIOChannel*"/>
|
|
</parameter>
|
|
<parameter name="flags" transfer-ownership="none">
|
|
<type name="IOFlags" c:type="GIOFlags"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
</field>
|
|
<field name="io_get_flags">
|
|
<callback name="io_get_flags">
|
|
<source-position filename="giochannel.h" line="155"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="IOFlags" c:type="GIOFlags"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="channel" transfer-ownership="none">
|
|
<type name="IOChannel" c:type="GIOChannel*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
</field>
|
|
</record>
|
|
<enumeration name="IOStatus" c:type="GIOStatus">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1061">Stati returned by most of the #GIOFuncs functions.</doc>
|
|
<source-position filename="giochannel.h" line="75"/>
|
|
<member name="error" value="0" c:identifier="G_IO_STATUS_ERROR">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1063">An error occurred.</doc>
|
|
</member>
|
|
<member name="normal" value="1" c:identifier="G_IO_STATUS_NORMAL">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1064">Success.</doc>
|
|
</member>
|
|
<member name="eof" value="2" c:identifier="G_IO_STATUS_EOF">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1065">End of file.</doc>
|
|
</member>
|
|
<member name="again" value="3" c:identifier="G_IO_STATUS_AGAIN">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1066">Resource temporarily unavailable.</doc>
|
|
</member>
|
|
</enumeration>
|
|
<function-macro name="IS_DIR_SEPARATOR" c:identifier="G_IS_DIR_SEPARATOR" version="2.6" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3517">Checks whether a character is a directory
|
|
separator. It returns %TRUE for '/' on UNIX
|
|
machines and for '\' or '/' under Windows.</doc>
|
|
<source-position filename="gfileutils.h" line="149"/>
|
|
<parameters>
|
|
<parameter name="c">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3519">a character</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<constant name="KEY_FILE_DESKTOP_ACTION_GROUP_PREFIX" value="Desktop Action" c:type="G_KEY_FILE_DESKTOP_ACTION_GROUP_PREFIX">
|
|
<source-position filename="gkeyfile.h" line="301"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<constant name="KEY_FILE_DESKTOP_GROUP" value="Desktop Entry" c:type="G_KEY_FILE_DESKTOP_GROUP" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3529">The name of the main group of a desktop entry file, as defined in the
|
|
[Desktop Entry Specification](http://freedesktop.org/Standards/desktop-entry-spec).
|
|
Consult the specification for more
|
|
details about the meanings of the keys below.</doc>
|
|
<source-position filename="gkeyfile.h" line="300"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<constant name="KEY_FILE_DESKTOP_KEY_ACTIONS" value="Actions" c:type="G_KEY_FILE_DESKTOP_KEY_ACTIONS" version="2.38">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3541">A key under #G_KEY_FILE_DESKTOP_GROUP, whose value is a string list
|
|
giving the available application actions.</doc>
|
|
<source-position filename="gkeyfile.h" line="323"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<constant name="KEY_FILE_DESKTOP_KEY_CATEGORIES" value="Categories" c:type="G_KEY_FILE_DESKTOP_KEY_CATEGORIES" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3551">A key under #G_KEY_FILE_DESKTOP_GROUP, whose value is a list
|
|
of strings giving the categories in which the desktop entry
|
|
should be shown in a menu.</doc>
|
|
<source-position filename="gkeyfile.h" line="318"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<constant name="KEY_FILE_DESKTOP_KEY_COMMENT" value="Comment" c:type="G_KEY_FILE_DESKTOP_KEY_COMMENT" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3562">A key under #G_KEY_FILE_DESKTOP_GROUP, whose value is a localized
|
|
string giving the tooltip for the desktop entry.</doc>
|
|
<source-position filename="gkeyfile.h" line="308"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<constant name="KEY_FILE_DESKTOP_KEY_DBUS_ACTIVATABLE" value="DBusActivatable" c:type="G_KEY_FILE_DESKTOP_KEY_DBUS_ACTIVATABLE" version="2.38">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3572">A key under #G_KEY_FILE_DESKTOP_GROUP, whose value is a boolean set to true
|
|
if the application is D-Bus activatable.</doc>
|
|
<source-position filename="gkeyfile.h" line="322"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<constant name="KEY_FILE_DESKTOP_KEY_EXEC" value="Exec" c:type="G_KEY_FILE_DESKTOP_KEY_EXEC" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3582">A key under #G_KEY_FILE_DESKTOP_GROUP, whose value is a string
|
|
giving the command line to execute. It is only valid for desktop
|
|
entries with the `Application` type.</doc>
|
|
<source-position filename="gkeyfile.h" line="314"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<constant name="KEY_FILE_DESKTOP_KEY_FULLNAME" value="X-GNOME-FullName" c:type="G_KEY_FILE_DESKTOP_KEY_FULLNAME">
|
|
<source-position filename="gkeyfile.h" line="325"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<constant name="KEY_FILE_DESKTOP_KEY_GENERIC_NAME" value="GenericName" c:type="G_KEY_FILE_DESKTOP_KEY_GENERIC_NAME" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3593">A key under #G_KEY_FILE_DESKTOP_GROUP, whose value is a localized
|
|
string giving the generic name of the desktop entry.</doc>
|
|
<source-position filename="gkeyfile.h" line="306"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<constant name="KEY_FILE_DESKTOP_KEY_GETTEXT_DOMAIN" value="X-GNOME-Gettext-Domain" c:type="G_KEY_FILE_DESKTOP_KEY_GETTEXT_DOMAIN">
|
|
<source-position filename="gkeyfile.h" line="324"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<constant name="KEY_FILE_DESKTOP_KEY_HIDDEN" value="Hidden" c:type="G_KEY_FILE_DESKTOP_KEY_HIDDEN" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3603">A key under #G_KEY_FILE_DESKTOP_GROUP, whose value is a boolean
|
|
stating whether the desktop entry has been deleted by the user.</doc>
|
|
<source-position filename="gkeyfile.h" line="310"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<constant name="KEY_FILE_DESKTOP_KEY_ICON" value="Icon" c:type="G_KEY_FILE_DESKTOP_KEY_ICON" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3613">A key under #G_KEY_FILE_DESKTOP_GROUP, whose value is a localized
|
|
string giving the name of the icon to be displayed for the desktop
|
|
entry.</doc>
|
|
<source-position filename="gkeyfile.h" line="309"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<constant name="KEY_FILE_DESKTOP_KEY_KEYWORDS" value="Keywords" c:type="G_KEY_FILE_DESKTOP_KEY_KEYWORDS">
|
|
<source-position filename="gkeyfile.h" line="326"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<constant name="KEY_FILE_DESKTOP_KEY_MIME_TYPE" value="MimeType" c:type="G_KEY_FILE_DESKTOP_KEY_MIME_TYPE" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3624">A key under #G_KEY_FILE_DESKTOP_GROUP, whose value is a list
|
|
of strings giving the MIME types supported by this desktop entry.</doc>
|
|
<source-position filename="gkeyfile.h" line="317"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<constant name="KEY_FILE_DESKTOP_KEY_NAME" value="Name" c:type="G_KEY_FILE_DESKTOP_KEY_NAME" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3634">A key under #G_KEY_FILE_DESKTOP_GROUP, whose value is a localized
|
|
string giving the specific name of the desktop entry.</doc>
|
|
<source-position filename="gkeyfile.h" line="305"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<constant name="KEY_FILE_DESKTOP_KEY_NOT_SHOW_IN" value="NotShowIn" c:type="G_KEY_FILE_DESKTOP_KEY_NOT_SHOW_IN" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3644">A key under #G_KEY_FILE_DESKTOP_GROUP, whose value is a list of
|
|
strings identifying the environments that should not display the
|
|
desktop entry.</doc>
|
|
<source-position filename="gkeyfile.h" line="312"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<constant name="KEY_FILE_DESKTOP_KEY_NO_DISPLAY" value="NoDisplay" c:type="G_KEY_FILE_DESKTOP_KEY_NO_DISPLAY" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3655">A key under #G_KEY_FILE_DESKTOP_GROUP, whose value is a boolean
|
|
stating whether the desktop entry should be shown in menus.</doc>
|
|
<source-position filename="gkeyfile.h" line="307"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<constant name="KEY_FILE_DESKTOP_KEY_ONLY_SHOW_IN" value="OnlyShowIn" c:type="G_KEY_FILE_DESKTOP_KEY_ONLY_SHOW_IN" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3665">A key under #G_KEY_FILE_DESKTOP_GROUP, whose value is a list of
|
|
strings identifying the environments that should display the
|
|
desktop entry.</doc>
|
|
<source-position filename="gkeyfile.h" line="311"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<constant name="KEY_FILE_DESKTOP_KEY_PATH" value="Path" c:type="G_KEY_FILE_DESKTOP_KEY_PATH" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3676">A key under #G_KEY_FILE_DESKTOP_GROUP, whose value is a string
|
|
containing the working directory to run the program in. It is only
|
|
valid for desktop entries with the `Application` type.</doc>
|
|
<source-position filename="gkeyfile.h" line="315"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<constant name="KEY_FILE_DESKTOP_KEY_STARTUP_NOTIFY" value="StartupNotify" c:type="G_KEY_FILE_DESKTOP_KEY_STARTUP_NOTIFY" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3687">A key under #G_KEY_FILE_DESKTOP_GROUP, whose value is a boolean
|
|
stating whether the application supports the
|
|
[Startup Notification Protocol Specification](http://www.freedesktop.org/Standards/startup-notification-spec).</doc>
|
|
<source-position filename="gkeyfile.h" line="319"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<constant name="KEY_FILE_DESKTOP_KEY_STARTUP_WM_CLASS" value="StartupWMClass" c:type="G_KEY_FILE_DESKTOP_KEY_STARTUP_WM_CLASS" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3698">A key under #G_KEY_FILE_DESKTOP_GROUP, whose value is string
|
|
identifying the WM class or name hint of a window that the application
|
|
will create, which can be used to emulate Startup Notification with
|
|
older applications.</doc>
|
|
<source-position filename="gkeyfile.h" line="320"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<constant name="KEY_FILE_DESKTOP_KEY_TERMINAL" value="Terminal" c:type="G_KEY_FILE_DESKTOP_KEY_TERMINAL" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3710">A key under #G_KEY_FILE_DESKTOP_GROUP, whose value is a boolean
|
|
stating whether the program should be run in a terminal window.
|
|
It is only valid for desktop entries with the
|
|
`Application` type.</doc>
|
|
<source-position filename="gkeyfile.h" line="316"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<constant name="KEY_FILE_DESKTOP_KEY_TRY_EXEC" value="TryExec" c:type="G_KEY_FILE_DESKTOP_KEY_TRY_EXEC" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3722">A key under #G_KEY_FILE_DESKTOP_GROUP, whose value is a string
|
|
giving the file name of a binary on disk used to determine if the
|
|
program is actually installed. It is only valid for desktop entries
|
|
with the `Application` type.</doc>
|
|
<source-position filename="gkeyfile.h" line="313"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<constant name="KEY_FILE_DESKTOP_KEY_TYPE" value="Type" c:type="G_KEY_FILE_DESKTOP_KEY_TYPE" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3734">A key under #G_KEY_FILE_DESKTOP_GROUP, whose value is a string
|
|
giving the type of the desktop entry. Usually
|
|
#G_KEY_FILE_DESKTOP_TYPE_APPLICATION,
|
|
#G_KEY_FILE_DESKTOP_TYPE_LINK, or
|
|
#G_KEY_FILE_DESKTOP_TYPE_DIRECTORY.</doc>
|
|
<source-position filename="gkeyfile.h" line="303"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<constant name="KEY_FILE_DESKTOP_KEY_URL" value="URL" c:type="G_KEY_FILE_DESKTOP_KEY_URL" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3747">A key under #G_KEY_FILE_DESKTOP_GROUP, whose value is a string
|
|
giving the URL to access. It is only valid for desktop entries
|
|
with the `Link` type.</doc>
|
|
<source-position filename="gkeyfile.h" line="321"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<constant name="KEY_FILE_DESKTOP_KEY_VERSION" value="Version" c:type="G_KEY_FILE_DESKTOP_KEY_VERSION" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3758">A key under #G_KEY_FILE_DESKTOP_GROUP, whose value is a string
|
|
giving the version of the Desktop Entry Specification used for
|
|
the desktop entry file.</doc>
|
|
<source-position filename="gkeyfile.h" line="304"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<constant name="KEY_FILE_DESKTOP_TYPE_APPLICATION" value="Application" c:type="G_KEY_FILE_DESKTOP_TYPE_APPLICATION" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3769">The value of the #G_KEY_FILE_DESKTOP_KEY_TYPE, key for desktop
|
|
entries representing applications.</doc>
|
|
<source-position filename="gkeyfile.h" line="328"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<constant name="KEY_FILE_DESKTOP_TYPE_DIRECTORY" value="Directory" c:type="G_KEY_FILE_DESKTOP_TYPE_DIRECTORY" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3779">The value of the #G_KEY_FILE_DESKTOP_KEY_TYPE, key for desktop
|
|
entries representing directories.</doc>
|
|
<source-position filename="gkeyfile.h" line="330"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<constant name="KEY_FILE_DESKTOP_TYPE_LINK" value="Link" c:type="G_KEY_FILE_DESKTOP_TYPE_LINK" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3789">The value of the #G_KEY_FILE_DESKTOP_KEY_TYPE, key for desktop
|
|
entries representing links to documents.</doc>
|
|
<source-position filename="gkeyfile.h" line="329"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<record name="KeyFile" c:type="GKeyFile" glib:type-name="GKeyFile" glib:get-type="g_key_file_get_type" c:symbol-prefix="key_file">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1072">The GKeyFile struct contains only private data
|
|
and should not be accessed directly.</doc>
|
|
<source-position filename="gkeyfile.h" line="48"/>
|
|
<constructor name="new" c:identifier="g_key_file_new" version="2.6">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19645">Creates a new empty #GKeyFile object. Use
|
|
g_key_file_load_from_file(), g_key_file_load_from_data(),
|
|
g_key_file_load_from_dirs() or g_key_file_load_from_data_dirs() to
|
|
read an existing key file.</doc>
|
|
<source-position filename="gkeyfile.h" line="58"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19653">an empty #GKeyFile.</doc>
|
|
<type name="KeyFile" c:type="GKeyFile*"/>
|
|
</return-value>
|
|
</constructor>
|
|
<method name="free" c:identifier="g_key_file_free" version="2.6" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19117">Clears all keys and groups from @key_file, and decreases the
|
|
reference count by 1. If the reference count reaches zero,
|
|
frees the key file and all its allocated memory.</doc>
|
|
<source-position filename="gkeyfile.h" line="64"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="key_file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19119">a #GKeyFile</doc>
|
|
<type name="KeyFile" c:type="GKeyFile*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_boolean" c:identifier="g_key_file_get_boolean" version="2.6" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19129">Returns the value associated with @key under @group_name as a
|
|
boolean.
|
|
|
|
If @key cannot be found then %FALSE is returned and @error is set
|
|
to #G_KEY_FILE_ERROR_KEY_NOT_FOUND. Likewise, if the value
|
|
associated with @key cannot be interpreted as a boolean then %FALSE
|
|
is returned and @error is set to #G_KEY_FILE_ERROR_INVALID_VALUE.</doc>
|
|
<source-position filename="gkeyfile.h" line="161"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19144">the value associated with the key as a boolean,
|
|
or %FALSE if the key was not found or could not be parsed.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="key_file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19131">a #GKeyFile</doc>
|
|
<type name="KeyFile" c:type="GKeyFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="group_name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19132">a group name</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="key" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19133">a key</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_boolean_list" c:identifier="g_key_file_get_boolean_list" version="2.6" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19150">Returns the values associated with @key under @group_name as
|
|
booleans.
|
|
|
|
If @key cannot be found then %NULL is returned and @error is set to
|
|
#G_KEY_FILE_ERROR_KEY_NOT_FOUND. Likewise, if the values associated
|
|
with @key cannot be interpreted as booleans then %NULL is returned
|
|
and @error is set to #G_KEY_FILE_ERROR_INVALID_VALUE.</doc>
|
|
<source-position filename="gkeyfile.h" line="237"/>
|
|
<return-value transfer-ownership="container">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19166">
|
|
the values associated with the key as a list of booleans, or %NULL if the
|
|
key was not found or could not be parsed. The returned list of booleans
|
|
should be freed with g_free() when no longer needed.</doc>
|
|
<array length="2" zero-terminated="0" c:type="gboolean*">
|
|
<type name="gboolean"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="key_file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19152">a #GKeyFile</doc>
|
|
<type name="KeyFile" c:type="GKeyFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="group_name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19153">a group name</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="key" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19154">a key</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="length" direction="out" caller-allocates="0" transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19155">the number of booleans returned</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_comment" c:identifier="g_key_file_get_comment" version="2.6" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19174">Retrieves a comment above @key from @group_name.
|
|
If @key is %NULL then @comment will be read from above
|
|
@group_name. If both @key and @group_name are %NULL, then
|
|
@comment will be read from above the first group in the file.
|
|
|
|
Note that the returned string does not include the '#' comment markers,
|
|
but does include any whitespace after them (on each line). It includes
|
|
the line breaks between lines, but does not include the final line break.</doc>
|
|
<source-position filename="gkeyfile.h" line="279"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19190">a comment that should be freed with g_free()</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="key_file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19176">a #GKeyFile</doc>
|
|
<type name="KeyFile" c:type="GKeyFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="group_name" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19177">a group name, or %NULL</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="key" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19178">a key</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_double" c:identifier="g_key_file_get_double" version="2.12" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19195">Returns the value associated with @key under @group_name as a
|
|
double. If @group_name is %NULL, the start_group is used.
|
|
|
|
If @key cannot be found then 0.0 is returned and @error is set to
|
|
#G_KEY_FILE_ERROR_KEY_NOT_FOUND. Likewise, if the value associated
|
|
with @key cannot be interpreted as a double then 0.0 is returned
|
|
and @error is set to #G_KEY_FILE_ERROR_INVALID_VALUE.</doc>
|
|
<source-position filename="gkeyfile.h" line="201"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19210">the value associated with the key as a double, or
|
|
0.0 if the key was not found or could not be parsed.</doc>
|
|
<type name="gdouble" c:type="gdouble"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="key_file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19197">a #GKeyFile</doc>
|
|
<type name="KeyFile" c:type="GKeyFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="group_name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19198">a group name</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="key" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19199">a key</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_double_list" c:identifier="g_key_file_get_double_list" version="2.12" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19216">Returns the values associated with @key under @group_name as
|
|
doubles.
|
|
|
|
If @key cannot be found then %NULL is returned and @error is set to
|
|
#G_KEY_FILE_ERROR_KEY_NOT_FOUND. Likewise, if the values associated
|
|
with @key cannot be interpreted as doubles then %NULL is returned
|
|
and @error is set to #G_KEY_FILE_ERROR_INVALID_VALUE.</doc>
|
|
<source-position filename="gkeyfile.h" line="261"/>
|
|
<return-value transfer-ownership="container">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19232">
|
|
the values associated with the key as a list of doubles, or %NULL if the
|
|
key was not found or could not be parsed. The returned list of doubles
|
|
should be freed with g_free() when no longer needed.</doc>
|
|
<array length="2" zero-terminated="0" c:type="gdouble*">
|
|
<type name="gdouble"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="key_file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19218">a #GKeyFile</doc>
|
|
<type name="KeyFile" c:type="GKeyFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="group_name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19219">a group name</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="key" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19220">a key</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="length" direction="out" caller-allocates="0" transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19221">the number of doubles returned</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_groups" c:identifier="g_key_file_get_groups" version="2.6">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19240">Returns all groups in the key file loaded with @key_file.
|
|
The array of returned groups will be %NULL-terminated, so
|
|
@length may optionally be %NULL.</doc>
|
|
<source-position filename="gkeyfile.h" line="108"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19249">a newly-allocated %NULL-terminated array of strings.
|
|
Use g_strfreev() to free it.</doc>
|
|
<array c:type="gchar**">
|
|
<type name="utf8"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="key_file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19242">a #GKeyFile</doc>
|
|
<type name="KeyFile" c:type="GKeyFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="length" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19243">return location for the number of returned groups, or %NULL</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_int64" c:identifier="g_key_file_get_int64" version="2.26" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19255">Returns the value associated with @key under @group_name as a signed
|
|
64-bit integer. This is similar to g_key_file_get_integer() but can return
|
|
64-bit results without truncation.</doc>
|
|
<source-position filename="gkeyfile.h" line="181"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19266">the value associated with the key as a signed 64-bit integer, or
|
|
0 if the key was not found or could not be parsed.</doc>
|
|
<type name="gint64" c:type="gint64"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="key_file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19257">a non-%NULL #GKeyFile</doc>
|
|
<type name="KeyFile" c:type="GKeyFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="group_name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19258">a non-%NULL group name</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="key" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19259">a non-%NULL key</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_integer" c:identifier="g_key_file_get_integer" version="2.6" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19272">Returns the value associated with @key under @group_name as an
|
|
integer.
|
|
|
|
If @key cannot be found then 0 is returned and @error is set to
|
|
#G_KEY_FILE_ERROR_KEY_NOT_FOUND. Likewise, if the value associated
|
|
with @key cannot be interpreted as an integer, or is out of range
|
|
for a #gint, then 0 is returned
|
|
and @error is set to #G_KEY_FILE_ERROR_INVALID_VALUE.</doc>
|
|
<source-position filename="gkeyfile.h" line="171"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19288">the value associated with the key as an integer, or
|
|
0 if the key was not found or could not be parsed.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="key_file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19274">a #GKeyFile</doc>
|
|
<type name="KeyFile" c:type="GKeyFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="group_name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19275">a group name</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="key" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19276">a key</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_integer_list" c:identifier="g_key_file_get_integer_list" version="2.6" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19294">Returns the values associated with @key under @group_name as
|
|
integers.
|
|
|
|
If @key cannot be found then %NULL is returned and @error is set to
|
|
#G_KEY_FILE_ERROR_KEY_NOT_FOUND. Likewise, if the values associated
|
|
with @key cannot be interpreted as integers, or are out of range for
|
|
#gint, then %NULL is returned
|
|
and @error is set to #G_KEY_FILE_ERROR_INVALID_VALUE.</doc>
|
|
<source-position filename="gkeyfile.h" line="249"/>
|
|
<return-value transfer-ownership="container">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19311">
|
|
the values associated with the key as a list of integers, or %NULL if
|
|
the key was not found or could not be parsed. The returned list of
|
|
integers should be freed with g_free() when no longer needed.</doc>
|
|
<array length="2" zero-terminated="0" c:type="gint*">
|
|
<type name="gint"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="key_file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19296">a #GKeyFile</doc>
|
|
<type name="KeyFile" c:type="GKeyFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="group_name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19297">a group name</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="key" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19298">a key</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="length" direction="out" caller-allocates="0" transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19299">the number of integers returned</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_keys" c:identifier="g_key_file_get_keys" version="2.6" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19319">Returns all keys for the group name @group_name. The array of
|
|
returned keys will be %NULL-terminated, so @length may
|
|
optionally be %NULL. In the event that the @group_name cannot
|
|
be found, %NULL is returned and @error is set to
|
|
#G_KEY_FILE_ERROR_GROUP_NOT_FOUND.</doc>
|
|
<source-position filename="gkeyfile.h" line="111"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19332">a newly-allocated %NULL-terminated array of strings.
|
|
Use g_strfreev() to free it.</doc>
|
|
<array c:type="gchar**">
|
|
<type name="utf8"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="key_file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19321">a #GKeyFile</doc>
|
|
<type name="KeyFile" c:type="GKeyFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="group_name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19322">a group name</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="length" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19323">return location for the number of keys returned, or %NULL</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_locale_for_key" c:identifier="g_key_file_get_locale_for_key" version="2.56">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19338">Returns the actual locale which the result of
|
|
g_key_file_get_locale_string() or g_key_file_get_locale_string_list()
|
|
came from.
|
|
|
|
If calling g_key_file_get_locale_string() or
|
|
g_key_file_get_locale_string_list() with exactly the same @key_file,
|
|
@group_name, @key and @locale, the result of those functions will
|
|
have originally been tagged with the locale that is the result of
|
|
this function.</doc>
|
|
<source-position filename="gkeyfile.h" line="150"/>
|
|
<return-value transfer-ownership="full" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19355">the locale from the file, or %NULL if the key was not
|
|
found or the entry in the file was was untranslated</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="key_file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19340">a #GKeyFile</doc>
|
|
<type name="KeyFile" c:type="GKeyFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="group_name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19341">a group name</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="key" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19342">a key</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="locale" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19343">a locale identifier or %NULL</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_locale_string" c:identifier="g_key_file_get_locale_string" version="2.6" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19361">Returns the value associated with @key under @group_name
|
|
translated in the given @locale if available. If @locale is
|
|
%NULL then the current locale is assumed.
|
|
|
|
If @locale is to be non-%NULL, or if the current locale will change over
|
|
the lifetime of the #GKeyFile, it must be loaded with
|
|
%G_KEY_FILE_KEEP_TRANSLATIONS in order to load strings for all locales.
|
|
|
|
If @key cannot be found then %NULL is returned and @error is set
|
|
to #G_KEY_FILE_ERROR_KEY_NOT_FOUND. If the value associated
|
|
with @key cannot be interpreted or no suitable translation can
|
|
be found then the untranslated value is returned.</doc>
|
|
<source-position filename="gkeyfile.h" line="144"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19382">a newly allocated string or %NULL if the specified
|
|
key cannot be found.</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="key_file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19363">a #GKeyFile</doc>
|
|
<type name="KeyFile" c:type="GKeyFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="group_name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19364">a group name</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="key" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19365">a key</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="locale" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19366">a locale identifier or %NULL</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_locale_string_list" c:identifier="g_key_file_get_locale_string_list" version="2.6" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19388">Returns the values associated with @key under @group_name
|
|
translated in the given @locale if available. If @locale is
|
|
%NULL then the current locale is assumed.
|
|
|
|
If @locale is to be non-%NULL, or if the current locale will change over
|
|
the lifetime of the #GKeyFile, it must be loaded with
|
|
%G_KEY_FILE_KEEP_TRANSLATIONS in order to load strings for all locales.
|
|
|
|
If @key cannot be found then %NULL is returned and @error is set
|
|
to #G_KEY_FILE_ERROR_KEY_NOT_FOUND. If the values associated
|
|
with @key cannot be interpreted or no suitable translations
|
|
can be found then the untranslated values are returned. The
|
|
returned array is %NULL-terminated, so @length may optionally
|
|
be %NULL.</doc>
|
|
<source-position filename="gkeyfile.h" line="223"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19412">a newly allocated %NULL-terminated string array
|
|
or %NULL if the key isn't found. The string array should be freed
|
|
with g_strfreev().</doc>
|
|
<array length="3" zero-terminated="1" c:type="gchar**">
|
|
<type name="utf8"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="key_file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19390">a #GKeyFile</doc>
|
|
<type name="KeyFile" c:type="GKeyFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="group_name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19391">a group name</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="key" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19392">a key</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="locale" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19393">a locale identifier or %NULL</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="length" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19394">return location for the number of returned strings or %NULL</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_start_group" c:identifier="g_key_file_get_start_group" version="2.6">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19419">Returns the name of the start group of the file.</doc>
|
|
<source-position filename="gkeyfile.h" line="106"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19425">The start group of the key file.</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="key_file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19421">a #GKeyFile</doc>
|
|
<type name="KeyFile" c:type="GKeyFile*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_string" c:identifier="g_key_file_get_string" version="2.6" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19430">Returns the string value associated with @key under @group_name.
|
|
Unlike g_key_file_get_value(), this function handles escape sequences
|
|
like \s.
|
|
|
|
In the event the key cannot be found, %NULL is returned and
|
|
@error is set to #G_KEY_FILE_ERROR_KEY_NOT_FOUND. In the
|
|
event that the @group_name cannot be found, %NULL is returned
|
|
and @error is set to #G_KEY_FILE_ERROR_GROUP_NOT_FOUND.</doc>
|
|
<source-position filename="gkeyfile.h" line="134"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19446">a newly allocated string or %NULL if the specified
|
|
key cannot be found.</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="key_file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19432">a #GKeyFile</doc>
|
|
<type name="KeyFile" c:type="GKeyFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="group_name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19433">a group name</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="key" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19434">a key</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_string_list" c:identifier="g_key_file_get_string_list" version="2.6" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19452">Returns the values associated with @key under @group_name.
|
|
|
|
In the event the key cannot be found, %NULL is returned and
|
|
@error is set to #G_KEY_FILE_ERROR_KEY_NOT_FOUND. In the
|
|
event that the @group_name cannot be found, %NULL is returned
|
|
and @error is set to #G_KEY_FILE_ERROR_GROUP_NOT_FOUND.</doc>
|
|
<source-position filename="gkeyfile.h" line="211"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19467">
|
|
a %NULL-terminated string array or %NULL if the specified
|
|
key cannot be found. The array should be freed with g_strfreev().</doc>
|
|
<array length="2" zero-terminated="1" c:type="gchar**">
|
|
<type name="utf8"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="key_file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19454">a #GKeyFile</doc>
|
|
<type name="KeyFile" c:type="GKeyFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="group_name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19455">a group name</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="key" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19456">a key</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="length" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19457">return location for the number of returned strings, or %NULL</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_uint64" c:identifier="g_key_file_get_uint64" version="2.26" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19474">Returns the value associated with @key under @group_name as an unsigned
|
|
64-bit integer. This is similar to g_key_file_get_integer() but can return
|
|
large positive results without truncation.</doc>
|
|
<source-position filename="gkeyfile.h" line="191"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19485">the value associated with the key as an unsigned 64-bit integer,
|
|
or 0 if the key was not found or could not be parsed.</doc>
|
|
<type name="guint64" c:type="guint64"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="key_file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19476">a non-%NULL #GKeyFile</doc>
|
|
<type name="KeyFile" c:type="GKeyFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="group_name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19477">a non-%NULL group name</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="key" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19478">a non-%NULL key</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_value" c:identifier="g_key_file_get_value" version="2.6" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19491">Returns the raw value associated with @key under @group_name.
|
|
Use g_key_file_get_string() to retrieve an unescaped UTF-8 string.
|
|
|
|
In the event the key cannot be found, %NULL is returned and
|
|
@error is set to #G_KEY_FILE_ERROR_KEY_NOT_FOUND. In the
|
|
event that the @group_name cannot be found, %NULL is returned
|
|
and @error is set to #G_KEY_FILE_ERROR_GROUP_NOT_FOUND.</doc>
|
|
<source-position filename="gkeyfile.h" line="124"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19506">a newly allocated string or %NULL if the specified
|
|
key cannot be found.</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="key_file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19493">a #GKeyFile</doc>
|
|
<type name="KeyFile" c:type="GKeyFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="group_name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19494">a group name</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="key" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19495">a key</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="has_group" c:identifier="g_key_file_has_group" version="2.6">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19512">Looks whether the key file has the group @group_name.</doc>
|
|
<source-position filename="gkeyfile.h" line="116"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19519">%TRUE if @group_name is a part of @key_file, %FALSE
|
|
otherwise.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="key_file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19514">a #GKeyFile</doc>
|
|
<type name="KeyFile" c:type="GKeyFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="group_name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19515">a group name</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="has_key" c:identifier="g_key_file_has_key" version="2.6" introspectable="0" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19525">Looks whether the key file has the key @key in the group
|
|
@group_name.
|
|
|
|
Note that this function does not follow the rules for #GError strictly;
|
|
the return value both carries meaning and signals an error. To use
|
|
this function, you must pass a #GError pointer in @error, and check
|
|
whether it is not %NULL to see if an error occurred.
|
|
|
|
Language bindings should use g_key_file_get_value() to test whether
|
|
or not a key exists.</doc>
|
|
<source-position filename="gkeyfile.h" line="119"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19543">%TRUE if @key is a part of @group_name, %FALSE otherwise</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="key_file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19527">a #GKeyFile</doc>
|
|
<type name="KeyFile" c:type="GKeyFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="group_name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19528">a group name</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="key" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19529">a key name</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="load_from_bytes" c:identifier="g_key_file_load_from_bytes" version="2.50" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19548">Loads a key file from the data in @bytes into an empty #GKeyFile structure.
|
|
If the object cannot be created then %error is set to a #GKeyFileError.</doc>
|
|
<source-position filename="gkeyfile.h" line="80"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19558">%TRUE if a key file could be loaded, %FALSE otherwise</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="key_file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19550">an empty #GKeyFile struct</doc>
|
|
<type name="KeyFile" c:type="GKeyFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="bytes" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19551">a #GBytes</doc>
|
|
<type name="Bytes" c:type="GBytes*"/>
|
|
</parameter>
|
|
<parameter name="flags" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19552">flags from #GKeyFileFlags</doc>
|
|
<type name="KeyFileFlags" c:type="GKeyFileFlags"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="load_from_data" c:identifier="g_key_file_load_from_data" version="2.6" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19563">Loads a key file from memory into an empty #GKeyFile structure.
|
|
If the object cannot be created then %error is set to a #GKeyFileError.</doc>
|
|
<source-position filename="gkeyfile.h" line="74"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19574">%TRUE if a key file could be loaded, %FALSE otherwise</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="key_file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19565">an empty #GKeyFile struct</doc>
|
|
<type name="KeyFile" c:type="GKeyFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="data" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19566">key file loaded in memory</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="length" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19567">the length of @data in bytes (or (gsize)-1 if data is nul-terminated)</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
<parameter name="flags" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19568">flags from #GKeyFileFlags</doc>
|
|
<type name="KeyFileFlags" c:type="GKeyFileFlags"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="load_from_data_dirs" c:identifier="g_key_file_load_from_data_dirs" version="2.6" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19579">This function looks for a key file named @file in the paths
|
|
returned from g_get_user_data_dir() and g_get_system_data_dirs(),
|
|
loads the file into @key_file and returns the file's full path in
|
|
@full_path. If the file could not be loaded then an %error is
|
|
set to either a #GFileError or #GKeyFileError.</doc>
|
|
<source-position filename="gkeyfile.h" line="92"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19594">%TRUE if a key file could be loaded, %FALSE othewise</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="key_file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19581">an empty #GKeyFile struct</doc>
|
|
<type name="KeyFile" c:type="GKeyFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19582">a relative path to a filename to open and parse</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="full_path" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19583">return location for a string containing the full path
|
|
of the file, or %NULL</doc>
|
|
<type name="filename" c:type="gchar**"/>
|
|
</parameter>
|
|
<parameter name="flags" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19585">flags from #GKeyFileFlags</doc>
|
|
<type name="KeyFileFlags" c:type="GKeyFileFlags"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="load_from_dirs" c:identifier="g_key_file_load_from_dirs" version="2.14" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19599">This function looks for a key file named @file in the paths
|
|
specified in @search_dirs, loads the file into @key_file and
|
|
returns the file's full path in @full_path.
|
|
|
|
If the file could not be found in any of the @search_dirs,
|
|
%G_KEY_FILE_ERROR_NOT_FOUND is returned. If
|
|
the file is found but the OS returns an error when opening or reading the
|
|
file, a %G_FILE_ERROR is returned. If there is a problem parsing the file, a
|
|
%G_KEY_FILE_ERROR is returned.</doc>
|
|
<source-position filename="gkeyfile.h" line="85"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19619">%TRUE if a key file could be loaded, %FALSE otherwise</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="key_file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19601">an empty #GKeyFile struct</doc>
|
|
<type name="KeyFile" c:type="GKeyFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19602">a relative path to a filename to open and parse</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="search_dirs" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19603">%NULL-terminated array of directories to search</doc>
|
|
<array c:type="const gchar**">
|
|
<type name="filename"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="full_path" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19604">return location for a string containing the full path
|
|
of the file, or %NULL</doc>
|
|
<type name="filename" c:type="gchar**"/>
|
|
</parameter>
|
|
<parameter name="flags" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19606">flags from #GKeyFileFlags</doc>
|
|
<type name="KeyFileFlags" c:type="GKeyFileFlags"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="load_from_file" c:identifier="g_key_file_load_from_file" version="2.6" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19624">Loads a key file into an empty #GKeyFile structure.
|
|
|
|
If the OS returns an error when opening or reading the file, a
|
|
%G_FILE_ERROR is returned. If there is a problem parsing the file, a
|
|
%G_KEY_FILE_ERROR is returned.
|
|
|
|
This function will never return a %G_KEY_FILE_ERROR_NOT_FOUND error. If the
|
|
@file is not found, %G_FILE_ERROR_NOENT is returned.</doc>
|
|
<source-position filename="gkeyfile.h" line="69"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19640">%TRUE if a key file could be loaded, %FALSE otherwise</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="key_file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19626">an empty #GKeyFile struct</doc>
|
|
<type name="KeyFile" c:type="GKeyFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19627">the path of a filename to load, in the GLib filename encoding</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="flags" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19628">flags from #GKeyFileFlags</doc>
|
|
<type name="KeyFileFlags" c:type="GKeyFileFlags"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="ref" c:identifier="g_key_file_ref" version="2.32" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19658">Increases the reference count of @key_file.</doc>
|
|
<source-position filename="gkeyfile.h" line="60"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19664">the same @key_file.</doc>
|
|
<type name="KeyFile" c:type="GKeyFile*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="key_file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19660">a #GKeyFile</doc>
|
|
<type name="KeyFile" c:type="GKeyFile*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="remove_comment" c:identifier="g_key_file_remove_comment" version="2.6" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19669">Removes a comment above @key from @group_name.
|
|
If @key is %NULL then @comment will be removed above @group_name.
|
|
If both @key and @group_name are %NULL, then @comment will
|
|
be removed above the first group in the file.</doc>
|
|
<source-position filename="gkeyfile.h" line="285"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19681">%TRUE if the comment was removed, %FALSE otherwise</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="key_file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19671">a #GKeyFile</doc>
|
|
<type name="KeyFile" c:type="GKeyFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="group_name" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19672">a group name, or %NULL</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="key" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19673">a key</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="remove_group" c:identifier="g_key_file_remove_group" version="2.6" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19686">Removes the specified group, @group_name,
|
|
from the key file.</doc>
|
|
<source-position filename="gkeyfile.h" line="295"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19695">%TRUE if the group was removed, %FALSE otherwise</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="key_file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19688">a #GKeyFile</doc>
|
|
<type name="KeyFile" c:type="GKeyFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="group_name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19689">a group name</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="remove_key" c:identifier="g_key_file_remove_key" version="2.6" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19700">Removes @key in @group_name from the key file.</doc>
|
|
<source-position filename="gkeyfile.h" line="290"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19709">%TRUE if the key was removed, %FALSE otherwise</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="key_file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19702">a #GKeyFile</doc>
|
|
<type name="KeyFile" c:type="GKeyFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="group_name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19703">a group name</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="key" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19704">a key name to remove</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="save_to_file" c:identifier="g_key_file_save_to_file" version="2.40" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19714">Writes the contents of @key_file to @filename using
|
|
g_file_set_contents().
|
|
|
|
This function can fail for any of the reasons that
|
|
g_file_set_contents() may fail.</doc>
|
|
<source-position filename="gkeyfile.h" line="102"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19726">%TRUE if successful, else %FALSE with @error set</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="key_file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19716">a #GKeyFile</doc>
|
|
<type name="KeyFile" c:type="GKeyFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="filename" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19717">the name of the file to write to</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_boolean" c:identifier="g_key_file_set_boolean" version="2.6">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19731">Associates a new boolean value with @key under @group_name.
|
|
If @key cannot be found then it is created.</doc>
|
|
<source-position filename="gkeyfile.h" line="166"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="key_file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19733">a #GKeyFile</doc>
|
|
<type name="KeyFile" c:type="GKeyFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="group_name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19734">a group name</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="key" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19735">a key</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19736">%TRUE or %FALSE</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_boolean_list" c:identifier="g_key_file_set_boolean_list" version="2.6">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19745">Associates a list of boolean values with @key under @group_name.
|
|
If @key cannot be found then it is created.
|
|
If @group_name is %NULL, the start_group is used.</doc>
|
|
<source-position filename="gkeyfile.h" line="243"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="key_file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19747">a #GKeyFile</doc>
|
|
<type name="KeyFile" c:type="GKeyFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="group_name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19748">a group name</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="key" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19749">a key</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19750">an array of boolean values</doc>
|
|
<array length="3" zero-terminated="0" c:type="gboolean*">
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="length" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19751">length of @list</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_comment" c:identifier="g_key_file_set_comment" version="2.6" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19761">Places a comment above @key from @group_name.
|
|
|
|
If @key is %NULL then @comment will be written above @group_name.
|
|
If both @key and @group_name are %NULL, then @comment will be
|
|
written above the first group in the file.
|
|
|
|
Note that this function prepends a '#' comment marker to
|
|
each line of @comment.</doc>
|
|
<source-position filename="gkeyfile.h" line="273"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19778">%TRUE if the comment was written, %FALSE otherwise</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="key_file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19763">a #GKeyFile</doc>
|
|
<type name="KeyFile" c:type="GKeyFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="group_name" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19764">a group name, or %NULL</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="key" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19765">a key</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="comment" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19766">a comment</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_double" c:identifier="g_key_file_set_double" version="2.12">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19783">Associates a new double value with @key under @group_name.
|
|
If @key cannot be found then it is created.</doc>
|
|
<source-position filename="gkeyfile.h" line="206"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="key_file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19785">a #GKeyFile</doc>
|
|
<type name="KeyFile" c:type="GKeyFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="group_name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19786">a group name</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="key" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19787">a key</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19788">an double value</doc>
|
|
<type name="gdouble" c:type="gdouble"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_double_list" c:identifier="g_key_file_set_double_list" version="2.12">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19797">Associates a list of double values with @key under
|
|
@group_name. If @key cannot be found then it is created.</doc>
|
|
<source-position filename="gkeyfile.h" line="255"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="key_file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19799">a #GKeyFile</doc>
|
|
<type name="KeyFile" c:type="GKeyFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="group_name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19800">a group name</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="key" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19801">a key</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19802">an array of double values</doc>
|
|
<array length="3" zero-terminated="0" c:type="gdouble*">
|
|
<type name="gdouble" c:type="gdouble"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="length" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19803">number of double values in @list</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_int64" c:identifier="g_key_file_set_int64" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19812">Associates a new integer value with @key under @group_name.
|
|
If @key cannot be found then it is created.</doc>
|
|
<source-position filename="gkeyfile.h" line="186"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="key_file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19814">a #GKeyFile</doc>
|
|
<type name="KeyFile" c:type="GKeyFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="group_name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19815">a group name</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="key" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19816">a key</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19817">an integer value</doc>
|
|
<type name="gint64" c:type="gint64"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_integer" c:identifier="g_key_file_set_integer" version="2.6">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19826">Associates a new integer value with @key under @group_name.
|
|
If @key cannot be found then it is created.</doc>
|
|
<source-position filename="gkeyfile.h" line="176"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="key_file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19828">a #GKeyFile</doc>
|
|
<type name="KeyFile" c:type="GKeyFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="group_name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19829">a group name</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="key" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19830">a key</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19831">an integer value</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_integer_list" c:identifier="g_key_file_set_integer_list" version="2.6">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19840">Associates a list of integer values with @key under @group_name.
|
|
If @key cannot be found then it is created.</doc>
|
|
<source-position filename="gkeyfile.h" line="267"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="key_file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19842">a #GKeyFile</doc>
|
|
<type name="KeyFile" c:type="GKeyFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="group_name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19843">a group name</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="key" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19844">a key</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19845">an array of integer values</doc>
|
|
<array length="3" zero-terminated="0" c:type="gint*">
|
|
<type name="gint" c:type="gint"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="length" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19846">number of integer values in @list</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_list_separator" c:identifier="g_key_file_set_list_separator" version="2.6">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19855">Sets the character which is used to separate
|
|
values in lists. Typically ';' or ',' are used
|
|
as separators. The default list separator is ';'.</doc>
|
|
<source-position filename="gkeyfile.h" line="66"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="key_file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19857">a #GKeyFile</doc>
|
|
<type name="KeyFile" c:type="GKeyFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="separator" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19858">the separator</doc>
|
|
<type name="gchar" c:type="gchar"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_locale_string" c:identifier="g_key_file_set_locale_string" version="2.6">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19868">Associates a string value for @key and @locale under @group_name.
|
|
If the translation for @key cannot be found then it is created.</doc>
|
|
<source-position filename="gkeyfile.h" line="155"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="key_file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19870">a #GKeyFile</doc>
|
|
<type name="KeyFile" c:type="GKeyFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="group_name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19871">a group name</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="key" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19872">a key</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="locale" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19873">a locale identifier</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19874">a string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_locale_string_list" c:identifier="g_key_file_set_locale_string_list" version="2.6">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19883">Associates a list of string values for @key and @locale under
|
|
@group_name. If the translation for @key cannot be found then
|
|
it is created.</doc>
|
|
<source-position filename="gkeyfile.h" line="230"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="key_file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19885">a #GKeyFile</doc>
|
|
<type name="KeyFile" c:type="GKeyFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="group_name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19886">a group name</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="key" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19887">a key</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="locale" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19888">a locale identifier</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19889">a %NULL-terminated array of locale string values</doc>
|
|
<array length="4" zero-terminated="1" c:type="const gchar* const*">
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="length" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19890">the length of @list</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_string" c:identifier="g_key_file_set_string" version="2.6">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19900">Associates a new string value with @key under @group_name.
|
|
If @key cannot be found then it is created.
|
|
If @group_name cannot be found then it is created.
|
|
Unlike g_key_file_set_value(), this function handles characters
|
|
that need escaping, such as newlines.</doc>
|
|
<source-position filename="gkeyfile.h" line="139"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="key_file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19902">a #GKeyFile</doc>
|
|
<type name="KeyFile" c:type="GKeyFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="group_name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19903">a group name</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="key" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19904">a key</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19905">a string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_string_list" c:identifier="g_key_file_set_string_list" version="2.6">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19917">Associates a list of string values for @key under @group_name.
|
|
If @key cannot be found then it is created.
|
|
If @group_name cannot be found then it is created.</doc>
|
|
<source-position filename="gkeyfile.h" line="217"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="key_file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19919">a #GKeyFile</doc>
|
|
<type name="KeyFile" c:type="GKeyFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="group_name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19920">a group name</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="key" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19921">a key</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19922">an array of string values</doc>
|
|
<array length="3" zero-terminated="1" c:type="const gchar* const*">
|
|
<type name="utf8"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="length" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19923">number of string values in @list</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_uint64" c:identifier="g_key_file_set_uint64" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19933">Associates a new integer value with @key under @group_name.
|
|
If @key cannot be found then it is created.</doc>
|
|
<source-position filename="gkeyfile.h" line="196"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="key_file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19935">a #GKeyFile</doc>
|
|
<type name="KeyFile" c:type="GKeyFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="group_name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19936">a group name</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="key" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19937">a key</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19938">an integer value</doc>
|
|
<type name="guint64" c:type="guint64"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_value" c:identifier="g_key_file_set_value" version="2.6">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19947">Associates a new value with @key under @group_name.
|
|
|
|
If @key cannot be found then it is created. If @group_name cannot
|
|
be found then it is created. To set an UTF-8 string which may contain
|
|
characters that need escaping (such as newlines or spaces), use
|
|
g_key_file_set_string().</doc>
|
|
<source-position filename="gkeyfile.h" line="129"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="key_file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19949">a #GKeyFile</doc>
|
|
<type name="KeyFile" c:type="GKeyFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="group_name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19950">a group name</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="key" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19951">a key</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19952">a string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="to_data" c:identifier="g_key_file_to_data" version="2.6" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19965">This function outputs @key_file as a string.
|
|
|
|
Note that this function never reports an error,
|
|
so it is safe to pass %NULL as @error.</doc>
|
|
<source-position filename="gkeyfile.h" line="98"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19977">a newly allocated string holding
|
|
the contents of the #GKeyFile</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="key_file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19967">a #GKeyFile</doc>
|
|
<type name="KeyFile" c:type="GKeyFile*"/>
|
|
</instance-parameter>
|
|
<parameter name="length" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19968">return location for the length of the
|
|
returned string, or %NULL</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="unref" c:identifier="g_key_file_unref" version="2.32">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19983">Decreases the reference count of @key_file by 1. If the reference count
|
|
reaches zero, frees the key file and all its allocated memory.</doc>
|
|
<source-position filename="gkeyfile.h" line="62"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="key_file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19985">a #GKeyFile</doc>
|
|
<type name="KeyFile" c:type="GKeyFile*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<function name="error_quark" c:identifier="g_key_file_error_quark">
|
|
<return-value transfer-ownership="none">
|
|
<type name="Quark" c:type="GQuark"/>
|
|
</return-value>
|
|
</function>
|
|
</record>
|
|
<enumeration name="KeyFileError" c:type="GKeyFileError" glib:error-domain="g-key-file-error-quark">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1080">Error codes returned by key file parsing.</doc>
|
|
<source-position filename="gkeyfile.h" line="41"/>
|
|
<member name="unknown_encoding" value="0" c:identifier="G_KEY_FILE_ERROR_UNKNOWN_ENCODING">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1082">the text being parsed was in
|
|
an unknown encoding</doc>
|
|
</member>
|
|
<member name="parse" value="1" c:identifier="G_KEY_FILE_ERROR_PARSE">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1084">document was ill-formed</doc>
|
|
</member>
|
|
<member name="not_found" value="2" c:identifier="G_KEY_FILE_ERROR_NOT_FOUND">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1085">the file was not found</doc>
|
|
</member>
|
|
<member name="key_not_found" value="3" c:identifier="G_KEY_FILE_ERROR_KEY_NOT_FOUND">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1086">a requested key was not found</doc>
|
|
</member>
|
|
<member name="group_not_found" value="4" c:identifier="G_KEY_FILE_ERROR_GROUP_NOT_FOUND">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1087">a requested group was not found</doc>
|
|
</member>
|
|
<member name="invalid_value" value="5" c:identifier="G_KEY_FILE_ERROR_INVALID_VALUE">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1088">a value could not be parsed</doc>
|
|
</member>
|
|
</enumeration>
|
|
<bitfield name="KeyFileFlags" c:type="GKeyFileFlags">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1094">Flags which influence the parsing.</doc>
|
|
<source-position filename="gkeyfile.h" line="55"/>
|
|
<member name="none" value="0" c:identifier="G_KEY_FILE_NONE">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1096">No flags, default behaviour</doc>
|
|
</member>
|
|
<member name="keep_comments" value="1" c:identifier="G_KEY_FILE_KEEP_COMMENTS">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1097">Use this flag if you plan to write the
|
|
(possibly modified) contents of the key file back to a file;
|
|
otherwise all comments will be lost when the key file is
|
|
written back.</doc>
|
|
</member>
|
|
<member name="keep_translations" value="2" c:identifier="G_KEY_FILE_KEEP_TRANSLATIONS">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1101">Use this flag if you plan to write the
|
|
(possibly modified) contents of the key file back to a file;
|
|
otherwise only the translations for the current language will be
|
|
written back.</doc>
|
|
</member>
|
|
</bitfield>
|
|
<function-macro name="LIKELY" c:identifier="G_LIKELY" version="2.2" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3809">Hints the compiler that the expression is likely to evaluate to
|
|
a true value. The compiler may use this information for optimizations.
|
|
|
|
|[<!-- language="C" -->
|
|
if (G_LIKELY (random () != 1))
|
|
g_print ("not one");
|
|
]|</doc>
|
|
<source-position filename="gmacros.h" line="914"/>
|
|
<parameters>
|
|
<parameter name="expr">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3811">the expression</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<constant name="LITTLE_ENDIAN" value="1234" c:type="G_LITTLE_ENDIAN">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3826">Specifies one of the possible types of byte order.
|
|
See #G_BYTE_ORDER.</doc>
|
|
<source-position filename="gtypes.h" line="184"/>
|
|
<type name="gint" c:type="gint"/>
|
|
</constant>
|
|
<constant name="LN10" value="2.302585" c:type="G_LN10">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3834">The natural logarithm of 10.</doc>
|
|
<source-position filename="gtypes.h" line="173"/>
|
|
<type name="gdouble" c:type="gdouble"/>
|
|
</constant>
|
|
<constant name="LN2" value="0.693147" c:type="G_LN2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3841">The natural logarithm of 2.</doc>
|
|
<source-position filename="gtypes.h" line="172"/>
|
|
<type name="gdouble" c:type="gdouble"/>
|
|
</constant>
|
|
<function-macro name="LOCK" c:identifier="G_LOCK" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3848">Works like g_mutex_lock(), but for a lock defined with
|
|
#G_LOCK_DEFINE.</doc>
|
|
<source-position filename="gthread.h" line="115"/>
|
|
<parameters>
|
|
<parameter name="name">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3850">the name of the lock</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="LOCK_DEFINE" c:identifier="G_LOCK_DEFINE" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3857">The #G_LOCK_ macros provide a convenient interface to #GMutex.
|
|
#G_LOCK_DEFINE defines a lock. It can appear in any place where
|
|
variable definitions may appear in programs, i.e. in the first block
|
|
of a function or outside of functions. The @name parameter will be
|
|
mangled to get the name of the #GMutex. This means that you
|
|
can use names of existing variables as the parameter - e.g. the name
|
|
of the variable you intend to protect with the lock. Look at our
|
|
give_me_next_number() example using the #G_LOCK macros:
|
|
|
|
Here is an example for using the #G_LOCK convenience macros:
|
|
|[<!-- language="C" -->
|
|
G_LOCK_DEFINE (current_number);
|
|
|
|
int
|
|
give_me_next_number (void)
|
|
{
|
|
static int current_number = 0;
|
|
int ret_val;
|
|
|
|
G_LOCK (current_number);
|
|
ret_val = current_number = calc_next_number (current_number);
|
|
G_UNLOCK (current_number);
|
|
|
|
return ret_val;
|
|
}
|
|
]|</doc>
|
|
<source-position filename="gthread.h" line="111"/>
|
|
<parameters>
|
|
<parameter name="name">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3859">the name of the lock</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="LOCK_DEFINE_STATIC" c:identifier="G_LOCK_DEFINE_STATIC" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3890">This works like #G_LOCK_DEFINE, but it creates a static object.</doc>
|
|
<source-position filename="gthread.h" line="110"/>
|
|
<parameters>
|
|
<parameter name="name">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3892">the name of the lock</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="LOCK_EXTERN" c:identifier="G_LOCK_EXTERN" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3898">This declares a lock, that is defined with #G_LOCK_DEFINE in another
|
|
module.</doc>
|
|
<source-position filename="gthread.h" line="112"/>
|
|
<parameters>
|
|
<parameter name="name">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3900">the name of the lock</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="LOCK_NAME" c:identifier="G_LOCK_NAME" introspectable="0">
|
|
<source-position filename="gthread.h" line="109"/>
|
|
<parameters>
|
|
<parameter name="name">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<constant name="LOG_2_BASE_10" value="0.301030" c:type="G_LOG_2_BASE_10">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3907">Multiplying the base 2 exponent by this number yields the base 10 exponent.</doc>
|
|
<source-position filename="gtypes.h" line="504"/>
|
|
<type name="gdouble" c:type="gdouble"/>
|
|
</constant>
|
|
<constant name="LOG_DOMAIN" value="0" c:type="G_LOG_DOMAIN">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3914">Defines the log domain. See [Log Domains](#log-domains).
|
|
|
|
Libraries should define this so that any messages
|
|
which they log can be differentiated from messages from other
|
|
libraries and application code. But be careful not to define
|
|
it in any public header files.
|
|
|
|
Log domains must be unique, and it is recommended that they are the
|
|
application or library name, optionally followed by a hyphen and a sub-domain
|
|
name. For example, `bloatpad` or `bloatpad-io`.
|
|
|
|
If undefined, it defaults to the default %NULL (or `""`) log domain; this is
|
|
not advisable, as it cannot be filtered against using the `G_MESSAGES_DEBUG`
|
|
environment variable.
|
|
|
|
For example, GTK+ uses this in its `Makefile.am`:
|
|
|[
|
|
AM_CPPFLAGS = -DG_LOG_DOMAIN=\"Gtk\"
|
|
]|
|
|
|
|
Applications can choose to leave it as the default %NULL (or `""`)
|
|
domain. However, defining the domain offers the same advantages as
|
|
above.</doc>
|
|
<source-position filename="gmessages.h" line="295"/>
|
|
<type name="gchar" c:type="gchar"/>
|
|
</constant>
|
|
<constant name="LOG_FATAL_MASK" value="5" c:type="G_LOG_FATAL_MASK">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3943">GLib log levels that are considered fatal by default.
|
|
|
|
This is not used if structured logging is enabled; see
|
|
[Using Structured Logging][using-structured-logging].</doc>
|
|
<source-position filename="gmessages.h" line="70"/>
|
|
<type name="gint" c:type="gint"/>
|
|
</constant>
|
|
<constant name="LOG_LEVEL_USER_SHIFT" value="8" c:type="G_LOG_LEVEL_USER_SHIFT">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3953">Log levels below 1<<G_LOG_LEVEL_USER_SHIFT are used by GLib.
|
|
Higher bits can be used for user-defined log levels.</doc>
|
|
<source-position filename="gmessages.h" line="48"/>
|
|
<type name="gint" c:type="gint"/>
|
|
</constant>
|
|
<record name="List" c:type="GList">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1206">The #GList struct is used for each element in a doubly-linked list.</doc>
|
|
<source-position filename="glist.h" line="44"/>
|
|
<field name="data" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1208">holds the element's data, which can be a pointer to any kind
|
|
of data, or any integer value using the
|
|
[Type Conversion Macros][glib-Type-Conversion-Macros]</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</field>
|
|
<field name="next" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1211">contains the link to the next element in the list</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</field>
|
|
<field name="prev" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1212">contains the link to the previous element in the list</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</field>
|
|
<function name="alloc" c:identifier="g_list_alloc" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19994">Allocates space for one #GList element. It is called by
|
|
g_list_append(), g_list_prepend(), g_list_insert() and
|
|
g_list_insert_sorted() and so is rarely used on its own.</doc>
|
|
<source-position filename="glist.h" line="49"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20001">a pointer to the newly-allocated #GList element</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
</function>
|
|
<function name="append" c:identifier="g_list_append" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20005">Adds a new element on to the end of the list.
|
|
|
|
Note that the return value is the new start of the list,
|
|
if @list was empty; make sure you store the new value.
|
|
|
|
g_list_append() has to traverse the entire list to find the end,
|
|
which is inefficient when adding multiple elements. A common idiom
|
|
to avoid the inefficiency is to use g_list_prepend() and reverse
|
|
the list with g_list_reverse() when all elements have been added.
|
|
|
|
|[<!-- language="C" -->
|
|
// Notice that these are initialized to the empty list.
|
|
GList *string_list = NULL, *number_list = NULL;
|
|
|
|
// This is a list of strings.
|
|
string_list = g_list_append (string_list, "first");
|
|
string_list = g_list_append (string_list, "second");
|
|
|
|
// This is a list of integers.
|
|
number_list = g_list_append (number_list, GINT_TO_POINTER (27));
|
|
number_list = g_list_append (number_list, GINT_TO_POINTER (14));
|
|
]|</doc>
|
|
<source-position filename="glist.h" line="59"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20033">either @list or the new start of the #GList if @list was %NULL</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20007">a pointer to a #GList</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20008">the data for the new element</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="concat" c:identifier="g_list_concat" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20037">Adds the second #GList onto the end of the first #GList.
|
|
Note that the elements of the second #GList are not copied.
|
|
They are used directly.
|
|
|
|
This function is for example used to move an element in the list.
|
|
The following example moves an element to the top of the list:
|
|
|[<!-- language="C" -->
|
|
list = g_list_remove_link (list, llink);
|
|
list = g_list_concat (llink, list);
|
|
]|</doc>
|
|
<source-position filename="glist.h" line="86"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20054">the start of the new #GList, which equals @list1 if not %NULL</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list1" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20039">a #GList, this must point to the top of the list</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="list2" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20040">the #GList to add to the end of the first #GList,
|
|
this must point to the top of the list</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="copy" c:identifier="g_list_copy" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20058">Copies a #GList.
|
|
|
|
Note that this is a "shallow" copy. If the list elements
|
|
consist of pointers to data, the pointers are copied but
|
|
the actual data is not. See g_list_copy_deep() if you need
|
|
to copy the data as well.</doc>
|
|
<source-position filename="glist.h" line="103"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20069">the start of the new list that holds the same data as @list</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20060">a #GList, this must point to the top of the list</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="copy_deep" c:identifier="g_list_copy_deep" version="2.34" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20073">Makes a full (deep) copy of a #GList.
|
|
|
|
In contrast with g_list_copy(), this function uses @func to make
|
|
a copy of each list element, in addition to copying the list
|
|
container itself.
|
|
|
|
@func, as a #GCopyFunc, takes two arguments, the data to be copied
|
|
and a @user_data pointer. On common processor architectures, it's safe to
|
|
pass %NULL as @user_data if the copy function takes only one argument. You
|
|
may get compiler warnings from this though if compiling with GCC’s
|
|
`-Wcast-function-type` warning.
|
|
|
|
For instance, if @list holds a list of GObjects, you can do:
|
|
|[<!-- language="C" -->
|
|
another_list = g_list_copy_deep (list, (GCopyFunc) g_object_ref, NULL);
|
|
]|
|
|
|
|
And, to entirely free the new list, you could do:
|
|
|[<!-- language="C" -->
|
|
g_list_free_full (another_list, g_object_unref);
|
|
]|</doc>
|
|
<source-position filename="glist.h" line="106"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20101">the start of the new list that holds a full copy of @list,
|
|
use g_list_free_full() to free it</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20075">a #GList, this must point to the top of the list</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="func" transfer-ownership="none" closure="2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20076">a copy function used to copy every element in the list</doc>
|
|
<type name="CopyFunc" c:type="GCopyFunc"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20077">user data passed to the copy function @func, or %NULL</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="delete_link" c:identifier="g_list_delete_link" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20107">Removes the node link_ from the list and frees it.
|
|
Compare this to g_list_remove_link() which removes the node
|
|
without freeing it.</doc>
|
|
<source-position filename="glist.h" line="98"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20116">the (possibly changed) start of the #GList</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20109">a #GList, this must point to the top of the list</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="link_" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20110">node to delete from @list</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="find" c:identifier="g_list_find" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20120">Finds the element in a #GList which contains the given data.</doc>
|
|
<source-position filename="glist.h" line="117"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20127">the found #GList element, or %NULL if it is not found</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20122">a #GList, this must point to the top of the list</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20123">the element data to find</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="find_custom" c:identifier="g_list_find_custom" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20131">Finds an element in a #GList, using a supplied function to
|
|
find the desired element. It iterates over the list, calling
|
|
the given function which should return 0 when the desired
|
|
element is found. The function takes two #gconstpointer arguments,
|
|
the #GList element's data as the first argument and the
|
|
given user data.</doc>
|
|
<source-position filename="glist.h" line="120"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20145">the found #GList element, or %NULL if it is not found</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20133">a #GList, this must point to the top of the list</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20134">user data passed to the function</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
<parameter name="func" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20135">the function to call for each element.
|
|
It should return 0 when the desired element is found</doc>
|
|
<type name="CompareFunc" c:type="GCompareFunc"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="first" c:identifier="g_list_first" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20149">Gets the first element in a #GList.</doc>
|
|
<source-position filename="glist.h" line="132"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20155">the first element in the #GList,
|
|
or %NULL if the #GList has no elements</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20151">any #GList element</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="foreach" c:identifier="g_list_foreach" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20160">Calls a function for each element of a #GList.
|
|
|
|
It is safe for @func to remove the element from @list, but it must
|
|
not modify any part of the list after that element.</doc>
|
|
<source-position filename="glist.h" line="136"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20162">a #GList, this must point to the top of the list</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="func" transfer-ownership="none" closure="2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20163">the function to call with each element's data</doc>
|
|
<type name="Func" c:type="GFunc"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20164">user data to pass to the function</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="free" c:identifier="g_list_free" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20173">Frees all of the memory used by a #GList.
|
|
The freed elements are returned to the slice allocator.
|
|
|
|
If list elements contain dynamically-allocated memory, you should
|
|
either use g_list_free_full() or free them manually first.</doc>
|
|
<source-position filename="glist.h" line="51"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20175">a #GList</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="free_1" c:identifier="g_list_free_1" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20192">Frees one #GList element, but does not update links from the next and
|
|
previous elements in the list, so you should not call this function on an
|
|
element that is currently part of a list.
|
|
|
|
It is usually used after g_list_remove_link().</doc>
|
|
<source-position filename="glist.h" line="53"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20194">a #GList element</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="free_full" c:identifier="g_list_free_full" version="2.28" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20204">Convenience method, which frees all the memory used by a #GList,
|
|
and calls @free_func on every element's data.
|
|
|
|
@free_func must not modify the list (eg, by removing the freed
|
|
element from it).</doc>
|
|
<source-position filename="glist.h" line="56"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20206">a pointer to a #GList</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="free_func" transfer-ownership="none" scope="async">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20207">the function to be called to free each element's data</doc>
|
|
<type name="DestroyNotify" c:type="GDestroyNotify"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="index" c:identifier="g_list_index" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20219">Gets the position of the element containing
|
|
the given data (starting from 0).</doc>
|
|
<source-position filename="glist.h" line="127"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20227">the index of the element containing the data,
|
|
or -1 if the data is not found</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20221">a #GList, this must point to the top of the list</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20222">the data to find</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="insert" c:identifier="g_list_insert" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20232">Inserts a new element into the list at the given position.</doc>
|
|
<source-position filename="glist.h" line="65"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20242">the (possibly changed) start of the #GList</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20234">a pointer to a #GList, this must point to the top of the list</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20235">the data for the new element</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="position" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20236">the position to insert the element. If this is
|
|
negative, or is larger than the number of elements in the
|
|
list, the new element is added on to the end of the list.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="insert_before" c:identifier="g_list_insert_before" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20246">Inserts a new element into the list before the given position.</doc>
|
|
<source-position filename="glist.h" line="78"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20255">the (possibly changed) start of the #GList</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20248">a pointer to a #GList, this must point to the top of the list</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="sibling" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20249">the list element before which the new element
|
|
is inserted or %NULL to insert at the end of the list</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20251">the data for the new element</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="insert_before_link" c:identifier="g_list_insert_before_link" version="2.62" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20259">Inserts @link_ into the list before the given position.</doc>
|
|
<source-position filename="glist.h" line="82"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20269">the (possibly changed) start of the #GList</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20261">a pointer to a #GList, this must point to the top of the list</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="sibling" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20262">the list element before which the new element
|
|
is inserted or %NULL to insert at the end of the list</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="link_" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20264">the list element to be added, which must not be part of
|
|
any other list</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="insert_sorted" c:identifier="g_list_insert_sorted" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20274">Inserts a new element into the list, using the given comparison
|
|
function to determine its position.
|
|
|
|
If you are adding many new elements to a list, and the number of
|
|
new elements is much larger than the length of the list, use
|
|
g_list_prepend() to add the new items and sort the list afterwards
|
|
with g_list_sort().</doc>
|
|
<source-position filename="glist.h" line="69"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20291">the (possibly changed) start of the #GList</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20276">a pointer to a #GList, this must point to the top of the
|
|
already sorted list</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20278">the data for the new element</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="func" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20279">the function to compare elements in the list. It should
|
|
return a number > 0 if the first parameter comes after the
|
|
second parameter in the sort order.</doc>
|
|
<type name="CompareFunc" c:type="GCompareFunc"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="insert_sorted_with_data" c:identifier="g_list_insert_sorted_with_data" version="2.10" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20295">Inserts a new element into the list, using the given comparison
|
|
function to determine its position.
|
|
|
|
If you are adding many new elements to a list, and the number of
|
|
new elements is much larger than the length of the list, use
|
|
g_list_prepend() to add the new items and sort the list afterwards
|
|
with g_list_sort().</doc>
|
|
<source-position filename="glist.h" line="73"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20313">the (possibly changed) start of the #GList</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20297">a pointer to a #GList, this must point to the top of the
|
|
already sorted list</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20299">the data for the new element</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="func" transfer-ownership="none" closure="3">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20300">the function to compare elements in the list. It should
|
|
return a number > 0 if the first parameter comes after the
|
|
second parameter in the sort order.</doc>
|
|
<type name="CompareDataFunc" c:type="GCompareDataFunc"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20303">user data to pass to comparison function</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="last" c:identifier="g_list_last" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20318">Gets the last element in a #GList.</doc>
|
|
<source-position filename="glist.h" line="130"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20324">the last element in the #GList,
|
|
or %NULL if the #GList has no elements</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20320">any #GList element</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="length" c:identifier="g_list_length" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20329">Gets the number of elements in a #GList.
|
|
|
|
This function iterates over the whole list to count its elements.
|
|
Use a #GQueue instead of a GList if you regularly need the number
|
|
of items. To check whether the list is non-empty, it is faster to check
|
|
@list against %NULL.</doc>
|
|
<source-position filename="glist.h" line="134"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20340">the number of elements in the #GList</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20331">a #GList, this must point to the top of the list</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="nth" c:identifier="g_list_nth" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20356">Gets the element at the given position in a #GList.
|
|
|
|
This iterates over the list until it reaches the @n-th position. If you
|
|
intend to iterate over every element, it is better to use a for-loop as
|
|
described in the #GList introduction.</doc>
|
|
<source-position filename="glist.h" line="111"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20367">the element, or %NULL if the position is off
|
|
the end of the #GList</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20358">a #GList, this must point to the top of the list</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="n" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20359">the position of the element, counting from 0</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="nth_data" c:identifier="g_list_nth_data" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20372">Gets the data of the element at the given position.
|
|
|
|
This iterates over the list until it reaches the @n-th position. If you
|
|
intend to iterate over every element, it is better to use a for-loop as
|
|
described in the #GList introduction.</doc>
|
|
<source-position filename="glist.h" line="147"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20383">the element's data, or %NULL if the position
|
|
is off the end of the #GList</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20374">a #GList, this must point to the top of the list</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="n" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20375">the position of the element</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="nth_prev" c:identifier="g_list_nth_prev" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20388">Gets the element @n places before @list.</doc>
|
|
<source-position filename="glist.h" line="114"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20395">the element, or %NULL if the position is
|
|
off the end of the #GList</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20390">a #GList</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="n" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20391">the position of the element, counting from 0</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="position" c:identifier="g_list_position" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20400">Gets the position of the given element
|
|
in the #GList (starting from 0).</doc>
|
|
<source-position filename="glist.h" line="124"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20408">the position of the element in the #GList,
|
|
or -1 if the element is not found</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20402">a #GList, this must point to the top of the list</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="llink" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20403">an element in the #GList</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="prepend" c:identifier="g_list_prepend" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20413">Prepends a new element on to the start of the list.
|
|
|
|
Note that the return value is the new start of the list,
|
|
which will have changed, so make sure you store the new value.
|
|
|
|
|[<!-- language="C" -->
|
|
// Notice that it is initialized to the empty list.
|
|
GList *list = NULL;
|
|
|
|
list = g_list_prepend (list, "last");
|
|
list = g_list_prepend (list, "first");
|
|
]|
|
|
|
|
Do not use this function to prepend a new element to a different
|
|
element than the start of the list. Use g_list_insert_before() instead.</doc>
|
|
<source-position filename="glist.h" line="62"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20434">a pointer to the newly prepended element, which is the new
|
|
start of the #GList</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20415">a pointer to a #GList, this must point to the top of the list</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20416">the data for the new element</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="remove" c:identifier="g_list_remove" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20452">Removes an element from a #GList.
|
|
If two elements contain the same data, only the first is removed.
|
|
If none of the elements contain the data, the #GList is unchanged.</doc>
|
|
<source-position filename="glist.h" line="89"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20461">the (possibly changed) start of the #GList</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20454">a #GList, this must point to the top of the list</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20455">the data of the element to remove</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="remove_all" c:identifier="g_list_remove_all" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20465">Removes all list nodes with data equal to @data.
|
|
Returns the new head of the list. Contrast with
|
|
g_list_remove() which removes only the first node
|
|
matching the given data.</doc>
|
|
<source-position filename="glist.h" line="92"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20475">the (possibly changed) start of the #GList</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20467">a #GList, this must point to the top of the list</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20468">data to remove</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="remove_link" c:identifier="g_list_remove_link" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20479">Removes an element from a #GList, without freeing the element.
|
|
The removed element's prev and next links are set to %NULL, so
|
|
that it becomes a self-contained list with one element.
|
|
|
|
This function is for example used to move an element in the list
|
|
(see the example for g_list_concat()) or to remove an element in
|
|
the list before freeing its data:
|
|
|[<!-- language="C" -->
|
|
list = g_list_remove_link (list, llink);
|
|
free_some_data_that_may_access_the_list_again (llink->data);
|
|
g_list_free (llink);
|
|
]|</doc>
|
|
<source-position filename="glist.h" line="95"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20497">the (possibly changed) start of the #GList</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20481">a #GList, this must point to the top of the list</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="llink" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20482">an element in the #GList</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="reverse" c:identifier="g_list_reverse" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20501">Reverses a #GList.
|
|
It simply switches the next and prev pointers of each element.</doc>
|
|
<source-position filename="glist.h" line="101"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20508">the start of the reversed #GList</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20503">a #GList, this must point to the top of the list</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="sort" c:identifier="g_list_sort" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20512">Sorts a #GList using the given comparison function. The algorithm
|
|
used is a stable sort.</doc>
|
|
<source-position filename="glist.h" line="140"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20524">the (possibly changed) start of the #GList</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20514">a #GList, this must point to the top of the list</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="compare_func" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20515">the comparison function used to sort the #GList.
|
|
This function is passed the data from 2 elements of the #GList
|
|
and should return 0 if they are equal, a negative value if the
|
|
first element comes before the second, or a positive value if
|
|
the first element comes after the second.</doc>
|
|
<type name="CompareFunc" c:type="GCompareFunc"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="sort_with_data" c:identifier="g_list_sort_with_data" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20528">Like g_list_sort(), but the comparison function accepts
|
|
a user data argument.</doc>
|
|
<source-position filename="glist.h" line="143"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20537">the (possibly changed) start of the #GList</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20530">a #GList, this must point to the top of the list</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="compare_func" transfer-ownership="none" closure="2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20531">comparison function</doc>
|
|
<type name="CompareDataFunc" c:type="GCompareDataFunc"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20532">user data to pass to comparison function</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
</record>
|
|
<record name="LogField" c:type="GLogField" version="2.50">
|
|
<doc xml:space="preserve" filename="gmessages.h" line="139">Structure representing a single field in a structured log entry. See
|
|
g_log_structured() for details.
|
|
|
|
Log fields may contain arbitrary values, including binary with embedded nul
|
|
bytes. If the field contains a string, the string must be UTF-8 encoded and
|
|
have a trailing nul byte. Otherwise, @length must be set to a non-negative
|
|
value.</doc>
|
|
<source-position filename="gmessages.h" line="161"/>
|
|
<field name="key" writable="1">
|
|
<doc xml:space="preserve" filename="gmessages.h" line="141">field name (UTF-8 string)</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</field>
|
|
<field name="value" writable="1">
|
|
<doc xml:space="preserve" filename="gmessages.h" line="142">field value (arbitrary bytes)</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</field>
|
|
<field name="length" writable="1">
|
|
<doc xml:space="preserve" filename="gmessages.h" line="143">length of @value, in bytes, or -1 if it is nul-terminated</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</field>
|
|
</record>
|
|
<callback name="LogFunc" c:type="GLogFunc">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1218">Specifies the prototype of log handler functions.
|
|
|
|
The default log handler, g_log_default_handler(), automatically appends a
|
|
new-line character to @message when printing it. It is advised that any
|
|
custom log handler functions behave similarly, so that logging calls in user
|
|
code do not need modifying to add a new-line character to the message if the
|
|
log handler is changed.
|
|
|
|
This is not used if structured logging is enabled; see
|
|
[Using Structured Logging][using-structured-logging].</doc>
|
|
<source-position filename="gmessages.h" line="72"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="log_domain" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1220">the log domain of the message</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="log_level" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1221">the log level of the message (including the
|
|
fatal and recursion flags)</doc>
|
|
<type name="LogLevelFlags" c:type="GLogLevelFlags"/>
|
|
</parameter>
|
|
<parameter name="message" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1223">the message to process</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1" closure="3">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1224">user data, set in g_log_set_handler()</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
<bitfield name="LogLevelFlags" c:type="GLogLevelFlags">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1239">Flags specifying the level of log messages.
|
|
|
|
It is possible to change how GLib treats messages of the various
|
|
levels using g_log_set_handler() and g_log_set_fatal_mask().</doc>
|
|
<source-position filename="gmessages.h" line="67"/>
|
|
<member name="flag_recursion" value="1" c:identifier="G_LOG_FLAG_RECURSION">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1241">internal flag</doc>
|
|
</member>
|
|
<member name="flag_fatal" value="2" c:identifier="G_LOG_FLAG_FATAL">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1242">internal flag</doc>
|
|
</member>
|
|
<member name="level_error" value="4" c:identifier="G_LOG_LEVEL_ERROR">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1243">log level for errors, see g_error().
|
|
This level is also used for messages produced by g_assert().</doc>
|
|
</member>
|
|
<member name="level_critical" value="8" c:identifier="G_LOG_LEVEL_CRITICAL">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1245">log level for critical warning messages, see
|
|
g_critical().
|
|
This level is also used for messages produced by g_return_if_fail()
|
|
and g_return_val_if_fail().</doc>
|
|
</member>
|
|
<member name="level_warning" value="16" c:identifier="G_LOG_LEVEL_WARNING">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1249">log level for warnings, see g_warning()</doc>
|
|
</member>
|
|
<member name="level_message" value="32" c:identifier="G_LOG_LEVEL_MESSAGE">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1250">log level for messages, see g_message()</doc>
|
|
</member>
|
|
<member name="level_info" value="64" c:identifier="G_LOG_LEVEL_INFO">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1251">log level for informational messages, see g_info()</doc>
|
|
</member>
|
|
<member name="level_debug" value="128" c:identifier="G_LOG_LEVEL_DEBUG">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1252">log level for debug messages, see g_debug()</doc>
|
|
</member>
|
|
<member name="level_mask" value="-4" c:identifier="G_LOG_LEVEL_MASK">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1253">a mask including all log levels</doc>
|
|
</member>
|
|
</bitfield>
|
|
<callback name="LogWriterFunc" c:type="GLogWriterFunc" version="2.50">
|
|
<doc xml:space="preserve" filename="gmessages.h" line="163">Writer function for log entries. A log entry is a collection of one or more
|
|
#GLogFields, using the standard [field names from journal
|
|
specification](https://www.freedesktop.org/software/systemd/man/systemd.journal-fields.html).
|
|
See g_log_structured() for more information.
|
|
|
|
Writer functions must ignore fields which they do not recognise, unless they
|
|
can write arbitrary binary output, as field values may be arbitrary binary.
|
|
|
|
@log_level is guaranteed to be included in @fields as the `PRIORITY` field,
|
|
but is provided separately for convenience of deciding whether or where to
|
|
output the log entry.
|
|
|
|
Writer functions should return %G_LOG_WRITER_HANDLED if they handled the log
|
|
message successfully or if they deliberately ignored it. If there was an
|
|
error handling the message (for example, if the writer function is meant to
|
|
send messages to a remote logging server and there is a network error), it
|
|
should return %G_LOG_WRITER_UNHANDLED. This allows writer functions to be
|
|
chained and fall back to simpler handlers in case of failure.</doc>
|
|
<source-position filename="gmessages.h" line="193"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="gmessages.h" line="189">%G_LOG_WRITER_HANDLED if the log entry was handled successfully;
|
|
%G_LOG_WRITER_UNHANDLED otherwise</doc>
|
|
<type name="LogWriterOutput" c:type="GLogWriterOutput"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="log_level" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="gmessages.h" line="165">log level of the message</doc>
|
|
<type name="LogLevelFlags" c:type="GLogLevelFlags"/>
|
|
</parameter>
|
|
<parameter name="fields" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="gmessages.h" line="166">fields forming the message</doc>
|
|
<array length="2" zero-terminated="0" c:type="const GLogField*">
|
|
<type name="LogField" c:type="GLogField"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="n_fields" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="gmessages.h" line="167">number of @fields</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1" closure="3">
|
|
<doc xml:space="preserve" filename="gmessages.h" line="168">user data passed to g_log_set_writer_func()</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
<enumeration name="LogWriterOutput" version="2.50" c:type="GLogWriterOutput">
|
|
<doc xml:space="preserve" filename="gmessages.h" line="119">Return values from #GLogWriterFuncs to indicate whether the given log entry
|
|
was successfully handled by the writer, or whether there was an error in
|
|
handling it (and hence a fallback writer should be used).
|
|
|
|
If a #GLogWriterFunc ignores a log entry, it should return
|
|
%G_LOG_WRITER_HANDLED.</doc>
|
|
<source-position filename="gmessages.h" line="137"/>
|
|
<member name="handled" value="1" c:identifier="G_LOG_WRITER_HANDLED">
|
|
<doc xml:space="preserve" filename="gmessages.h" line="121">Log writer has handled the log entry.</doc>
|
|
</member>
|
|
<member name="unhandled" value="0" c:identifier="G_LOG_WRITER_UNHANDLED">
|
|
<doc xml:space="preserve" filename="gmessages.h" line="122">Log writer could not handle the log entry.</doc>
|
|
</member>
|
|
</enumeration>
|
|
<constant name="MAJOR_VERSION" value="2" c:type="GLIB_MAJOR_VERSION">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1133">The major version number of the GLib library.
|
|
|
|
Like #glib_major_version, but from the headers used at
|
|
application compile time, rather than from the library
|
|
linked against at application run time.</doc>
|
|
<source-position filename="glibconfig.h" line="111"/>
|
|
<type name="gint" c:type="gint"/>
|
|
</constant>
|
|
<constant name="MAXINT16" value="32767" c:type="G_MAXINT16" version="2.4">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3982">The maximum value which can be held in a #gint16.</doc>
|
|
<source-position filename="gtypes.h" line="80"/>
|
|
<type name="gint16" c:type="gint16"/>
|
|
</constant>
|
|
<constant name="MAXINT32" value="2147483647" c:type="G_MAXINT32" version="2.4">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="3991">The maximum value which can be held in a #gint32.</doc>
|
|
<source-position filename="gtypes.h" line="91"/>
|
|
<type name="gint32" c:type="gint32"/>
|
|
</constant>
|
|
<constant name="MAXINT64" value="9223372036854775807" c:type="G_MAXINT64">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="4000">The maximum value which can be held in a #gint64.</doc>
|
|
<source-position filename="gtypes.h" line="100"/>
|
|
<type name="gint64" c:type="gint64"/>
|
|
</constant>
|
|
<constant name="MAXINT8" value="127" c:type="G_MAXINT8" version="2.4">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="4007">The maximum value which can be held in a #gint8.</doc>
|
|
<source-position filename="gtypes.h" line="69"/>
|
|
<type name="gint8" c:type="gint8"/>
|
|
</constant>
|
|
<constant name="MAXUINT16" value="65535" c:type="G_MAXUINT16" version="2.4">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="4062">The maximum value which can be held in a #guint16.</doc>
|
|
<source-position filename="gtypes.h" line="81"/>
|
|
<type name="guint16" c:type="guint16"/>
|
|
</constant>
|
|
<constant name="MAXUINT32" value="4294967295" c:type="G_MAXUINT32" version="2.4">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="4071">The maximum value which can be held in a #guint32.</doc>
|
|
<source-position filename="gtypes.h" line="92"/>
|
|
<type name="guint32" c:type="guint32"/>
|
|
</constant>
|
|
<constant name="MAXUINT64" value="18446744073709551615" c:type="G_MAXUINT64">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="4080">The maximum value which can be held in a #guint64.</doc>
|
|
<source-position filename="gtypes.h" line="101"/>
|
|
<type name="guint64" c:type="guint64"/>
|
|
</constant>
|
|
<constant name="MAXUINT8" value="255" c:type="G_MAXUINT8" version="2.4">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="4087">The maximum value which can be held in a #guint8.</doc>
|
|
<source-position filename="gtypes.h" line="70"/>
|
|
<type name="guint8" c:type="guint8"/>
|
|
</constant>
|
|
<constant name="MICRO_VERSION" value="0" c:type="GLIB_MICRO_VERSION">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1144">The micro version number of the GLib library.
|
|
|
|
Like #gtk_micro_version, but from the headers used at
|
|
application compile time, rather than from the library
|
|
linked against at application run time.</doc>
|
|
<source-position filename="glibconfig.h" line="113"/>
|
|
<type name="gint" c:type="gint"/>
|
|
</constant>
|
|
<constant name="MININT16" value="-32768" c:type="G_MININT16" version="2.4">
|
|
<doc xml:space="preserve" filename="gtypes.h" line="72">The minimum value which can be held in a #gint16.</doc>
|
|
<source-position filename="gtypes.h" line="79"/>
|
|
<type name="gint16" c:type="gint16"/>
|
|
</constant>
|
|
<constant name="MININT32" value="-2147483648" c:type="G_MININT32" version="2.4">
|
|
<doc xml:space="preserve" filename="gtypes.h" line="83">The minimum value which can be held in a #gint32.</doc>
|
|
<source-position filename="gtypes.h" line="90"/>
|
|
<type name="gint32" c:type="gint32"/>
|
|
</constant>
|
|
<constant name="MININT64" value="-9223372036854775808" c:type="G_MININT64">
|
|
<doc xml:space="preserve" filename="gtypes.h" line="94">The minimum value which can be held in a #gint64.</doc>
|
|
<source-position filename="gtypes.h" line="99"/>
|
|
<type name="gint64" c:type="gint64"/>
|
|
</constant>
|
|
<constant name="MININT8" value="-128" c:type="G_MININT8" version="2.4">
|
|
<doc xml:space="preserve" filename="gtypes.h" line="61">The minimum value which can be held in a #gint8.</doc>
|
|
<source-position filename="gtypes.h" line="68"/>
|
|
<type name="gint8" c:type="gint8"/>
|
|
</constant>
|
|
<constant name="MINOR_VERSION" value="62" c:type="GLIB_MINOR_VERSION">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1155">The minor version number of the GLib library.
|
|
|
|
Like #gtk_minor_version, but from the headers used at
|
|
application compile time, rather than from the library
|
|
linked against at application run time.</doc>
|
|
<source-position filename="glibconfig.h" line="112"/>
|
|
<type name="gint" c:type="gint"/>
|
|
</constant>
|
|
<constant name="MODULE_SUFFIX" value="so" c:type="G_MODULE_SUFFIX">
|
|
<source-position filename="glibconfig.h" line="196"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<record name="MainContext" c:type="GMainContext" glib:type-name="GMainContext" glib:get-type="g_main_context_get_type" c:symbol-prefix="main_context">
|
|
<doc xml:space="preserve" filename="gmain.h" line="42">The `GMainContext` struct is an opaque data
|
|
type representing a set of sources to be handled in a main loop.</doc>
|
|
<source-position filename="gmain.h" line="48"/>
|
|
<constructor name="new" c:identifier="g_main_context_new">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21430">Creates a new #GMainContext structure.</doc>
|
|
<source-position filename="gmain.h" line="342"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21435">the new #GMainContext</doc>
|
|
<type name="MainContext" c:type="GMainContext*"/>
|
|
</return-value>
|
|
</constructor>
|
|
<method name="acquire" c:identifier="g_main_context_acquire">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21185">Tries to become the owner of the specified context.
|
|
If some other thread is the owner of the context,
|
|
returns %FALSE immediately. Ownership is properly
|
|
recursive: the owner can require ownership again
|
|
and will release ownership when g_main_context_release()
|
|
is called as many times as g_main_context_acquire().
|
|
|
|
You must be the owner of a context before you
|
|
can call g_main_context_prepare(), g_main_context_query(),
|
|
g_main_context_check(), g_main_context_dispatch().</doc>
|
|
<source-position filename="gmain.h" line="374"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21200">%TRUE if the operation succeeded, and
|
|
this thread is now the owner of @context.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21187">a #GMainContext</doc>
|
|
<type name="MainContext" c:type="GMainContext*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="add_poll" c:identifier="g_main_context_add_poll">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21205">Adds a file descriptor to the set of file descriptors polled for
|
|
this context. This will very seldom be used directly. Instead
|
|
a typical event source will use g_source_add_unix_fd() instead.</doc>
|
|
<source-position filename="gmain.h" line="410"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21207">a #GMainContext (or %NULL for the default context)</doc>
|
|
<type name="MainContext" c:type="GMainContext*"/>
|
|
</instance-parameter>
|
|
<parameter name="fd" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21208">a #GPollFD structure holding information about a file
|
|
descriptor to watch.</doc>
|
|
<type name="PollFD" c:type="GPollFD*"/>
|
|
</parameter>
|
|
<parameter name="priority" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21210">the priority for this file descriptor which should be
|
|
the same as the priority used for g_source_attach() to ensure that the
|
|
file descriptor is polled whenever the results may be needed.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="check" c:identifier="g_main_context_check">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21220">Passes the results of polling back to the main loop.
|
|
|
|
You must have successfully acquired the context with
|
|
g_main_context_acquire() before you may call this function.</doc>
|
|
<source-position filename="gmain.h" line="394"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21233">%TRUE if some sources are ready to be dispatched.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21222">a #GMainContext</doc>
|
|
<type name="MainContext" c:type="GMainContext*"/>
|
|
</instance-parameter>
|
|
<parameter name="max_priority" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21223">the maximum numerical priority of sources to check</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="fds" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21224">array of #GPollFD's that was passed to
|
|
the last call to g_main_context_query()</doc>
|
|
<array length="2" zero-terminated="0" c:type="GPollFD*">
|
|
<type name="PollFD" c:type="GPollFD"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="n_fds" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21226">return value of g_main_context_query()</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="dispatch" c:identifier="g_main_context_dispatch">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21249">Dispatches all pending sources.
|
|
|
|
You must have successfully acquired the context with
|
|
g_main_context_acquire() before you may call this function.</doc>
|
|
<source-position filename="gmain.h" line="399"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21251">a #GMainContext</doc>
|
|
<type name="MainContext" c:type="GMainContext*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="find_source_by_funcs_user_data" c:identifier="g_main_context_find_source_by_funcs_user_data">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21260">Finds a source with the given source functions and user data. If
|
|
multiple sources exist with the same source function and user data,
|
|
the first one found will be returned.</doc>
|
|
<source-position filename="gmain.h" line="365"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21270">the source, if one was found, otherwise %NULL</doc>
|
|
<type name="Source" c:type="GSource*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21262">a #GMainContext (if %NULL, the default context will be used).</doc>
|
|
<type name="MainContext" c:type="GMainContext*"/>
|
|
</instance-parameter>
|
|
<parameter name="funcs" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21263">the @source_funcs passed to g_source_new().</doc>
|
|
<type name="SourceFuncs" c:type="GSourceFuncs*"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21264">the user data from the callback.</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="find_source_by_id" c:identifier="g_main_context_find_source_by_id">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21274">Finds a #GSource given a pair of context and ID.
|
|
|
|
It is a programmer error to attempt to look up a non-existent source.
|
|
|
|
More specifically: source IDs can be reissued after a source has been
|
|
destroyed and therefore it is never valid to use this function with a
|
|
source ID which may have already been removed. An example is when
|
|
scheduling an idle to run in another thread with g_idle_add(): the
|
|
idle may already have run and been removed by the time this function
|
|
is called on its (now invalid) source ID. This source ID may have
|
|
been reissued, leading to the operation being performed against the
|
|
wrong source.</doc>
|
|
<source-position filename="gmain.h" line="359"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21292">the #GSource</doc>
|
|
<type name="Source" c:type="GSource*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21276">a #GMainContext (if %NULL, the default context will be used)</doc>
|
|
<type name="MainContext" c:type="GMainContext*"/>
|
|
</instance-parameter>
|
|
<parameter name="source_id" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21277">the source ID, as returned by g_source_get_id().</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="find_source_by_user_data" c:identifier="g_main_context_find_source_by_user_data">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21296">Finds a source with the given user data for the callback. If
|
|
multiple sources exist with the same user data, the first
|
|
one found will be returned.</doc>
|
|
<source-position filename="gmain.h" line="362"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21305">the source, if one was found, otherwise %NULL</doc>
|
|
<type name="Source" c:type="GSource*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21298">a #GMainContext</doc>
|
|
<type name="MainContext" c:type="GMainContext*"/>
|
|
</instance-parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21299">the user_data for the callback.</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_poll_func" c:identifier="g_main_context_get_poll_func" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21309">Gets the poll function set by g_main_context_set_poll_func().</doc>
|
|
<source-position filename="gmain.h" line="405"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21315">the poll function</doc>
|
|
<type name="PollFunc" c:type="GPollFunc"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21311">a #GMainContext</doc>
|
|
<type name="MainContext" c:type="GMainContext*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="invoke" c:identifier="g_main_context_invoke" version="2.28" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21340">Invokes a function in such a way that @context is owned during the
|
|
invocation of @function.
|
|
|
|
If @context is %NULL then the global default main context — as
|
|
returned by g_main_context_default() — is used.
|
|
|
|
If @context is owned by the current thread, @function is called
|
|
directly. Otherwise, if @context is the thread-default main context
|
|
of the current thread and g_main_context_acquire() succeeds, then
|
|
@function is called and g_main_context_release() is called
|
|
afterwards.
|
|
|
|
In any other case, an idle source is created to call @function and
|
|
that source is attached to @context (presumably to be run in another
|
|
thread). The idle source is attached with #G_PRIORITY_DEFAULT
|
|
priority. If you want a different priority, use
|
|
g_main_context_invoke_full().
|
|
|
|
Note that, as with normal idle functions, @function should probably
|
|
return %FALSE. If it returns %TRUE, it will be continuously run in a
|
|
loop (and may prevent this call from returning).</doc>
|
|
<source-position filename="gmain.h" line="674"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21342">a #GMainContext, or %NULL</doc>
|
|
<type name="MainContext" c:type="GMainContext*"/>
|
|
</instance-parameter>
|
|
<parameter name="function" transfer-ownership="none" closure="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21343">function to call</doc>
|
|
<type name="SourceFunc" c:type="GSourceFunc"/>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21344">data to pass to @function</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="invoke_full" c:identifier="g_main_context_invoke_full" version="2.28">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21372">Invokes a function in such a way that @context is owned during the
|
|
invocation of @function.
|
|
|
|
This function is the same as g_main_context_invoke() except that it
|
|
lets you specify the priority in case @function ends up being
|
|
scheduled as an idle and also lets you give a #GDestroyNotify for @data.
|
|
|
|
@notify should not assume that it is called from any particular
|
|
thread or with any particular context acquired.</doc>
|
|
<source-position filename="gmain.h" line="668"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21374">a #GMainContext, or %NULL</doc>
|
|
<type name="MainContext" c:type="GMainContext*"/>
|
|
</instance-parameter>
|
|
<parameter name="priority" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21375">the priority at which to run @function</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="function" transfer-ownership="none" scope="notified" closure="2" destroy="3">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21376">function to call</doc>
|
|
<type name="SourceFunc" c:type="GSourceFunc"/>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21377">data to pass to @function</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="notify" transfer-ownership="none" nullable="1" allow-none="1" scope="async">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21378">a function to call when @data is no longer in use, or %NULL.</doc>
|
|
<type name="DestroyNotify" c:type="GDestroyNotify"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="is_owner" c:identifier="g_main_context_is_owner" version="2.10">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21394">Determines whether this thread holds the (recursive)
|
|
ownership of this #GMainContext. This is useful to
|
|
know before waiting on another thread that may be
|
|
blocking to get ownership of @context.</doc>
|
|
<source-position filename="gmain.h" line="378"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21403">%TRUE if current thread is owner of @context.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21396">a #GMainContext</doc>
|
|
<type name="MainContext" c:type="GMainContext*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="iteration" c:identifier="g_main_context_iteration">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21408">Runs a single iteration for the given main loop. This involves
|
|
checking to see if any event sources are ready to be processed,
|
|
then if no events sources are ready and @may_block is %TRUE, waiting
|
|
for a source to become ready, then dispatching the highest priority
|
|
events sources that are ready. Otherwise, if @may_block is %FALSE
|
|
sources are not waited to become ready, only those highest priority
|
|
events sources will be dispatched (if any), that are ready at this
|
|
given moment without further waiting.
|
|
|
|
Note that even when @may_block is %TRUE, it is still possible for
|
|
g_main_context_iteration() to return %FALSE, since the wait may
|
|
be interrupted for other reasons than an event source becoming ready.</doc>
|
|
<source-position filename="gmain.h" line="351"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21426">%TRUE if events were dispatched.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21410">a #GMainContext (if %NULL, the default context will be used)</doc>
|
|
<type name="MainContext" c:type="GMainContext*"/>
|
|
</instance-parameter>
|
|
<parameter name="may_block" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21411">whether the call may block.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="pending" c:identifier="g_main_context_pending">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21439">Checks if any sources have pending events for the given context.</doc>
|
|
<source-position filename="gmain.h" line="354"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21445">%TRUE if events are pending.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21441">a #GMainContext (if %NULL, the default context will be used)</doc>
|
|
<type name="MainContext" c:type="GMainContext*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="pop_thread_default" c:identifier="g_main_context_pop_thread_default" version="2.22">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21449">Pops @context off the thread-default context stack (verifying that
|
|
it was on the top of the stack).</doc>
|
|
<source-position filename="gmain.h" line="427"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21451">a #GMainContext object, or %NULL</doc>
|
|
<type name="MainContext" c:type="GMainContext*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="prepare" c:identifier="g_main_context_prepare">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21460">Prepares to poll sources within a main loop. The resulting information
|
|
for polling is determined by calling g_main_context_query ().
|
|
|
|
You must have successfully acquired the context with
|
|
g_main_context_acquire() before you may call this function.</doc>
|
|
<source-position filename="gmain.h" line="385"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21472">%TRUE if some source is ready to be dispatched
|
|
prior to polling.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21462">a #GMainContext</doc>
|
|
<type name="MainContext" c:type="GMainContext*"/>
|
|
</instance-parameter>
|
|
<parameter name="priority" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21463">location to store priority of highest priority
|
|
source already ready.</doc>
|
|
<type name="gint" c:type="gint*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="push_thread_default" c:identifier="g_main_context_push_thread_default" version="2.22">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21477">Acquires @context and sets it as the thread-default context for the
|
|
current thread. This will cause certain asynchronous operations
|
|
(such as most [gio][gio]-based I/O) which are
|
|
started in this thread to run under @context and deliver their
|
|
results to its main loop, rather than running under the global
|
|
default context in the main thread. Note that calling this function
|
|
changes the context returned by g_main_context_get_thread_default(),
|
|
not the one returned by g_main_context_default(), so it does not affect
|
|
the context used by functions like g_idle_add().
|
|
|
|
Normally you would call this function shortly after creating a new
|
|
thread, passing it a #GMainContext which will be run by a
|
|
#GMainLoop in that thread, to set a new default context for all
|
|
async operations in that thread. In this case you may not need to
|
|
ever call g_main_context_pop_thread_default(), assuming you want the
|
|
new #GMainContext to be the default for the whole lifecycle of the
|
|
thread.
|
|
|
|
If you don't have control over how the new thread was created (e.g.
|
|
in the new thread isn't newly created, or if the thread life
|
|
cycle is managed by a #GThreadPool), it is always suggested to wrap
|
|
the logic that needs to use the new #GMainContext inside a
|
|
g_main_context_push_thread_default() / g_main_context_pop_thread_default()
|
|
pair, otherwise threads that are re-used will end up never explicitly
|
|
releasing the #GMainContext reference they hold.
|
|
|
|
In some cases you may want to schedule a single operation in a
|
|
non-default context, or temporarily use a non-default context in
|
|
the main thread. In that case, you can wrap the call to the
|
|
asynchronous operation inside a
|
|
g_main_context_push_thread_default() /
|
|
g_main_context_pop_thread_default() pair, but it is up to you to
|
|
ensure that no other asynchronous operations accidentally get
|
|
started while the non-default context is active.
|
|
|
|
Beware that libraries that predate this function may not correctly
|
|
handle being used from a thread with a thread-default context. Eg,
|
|
see g_file_supports_thread_contexts().</doc>
|
|
<source-position filename="gmain.h" line="425"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21479">a #GMainContext, or %NULL for the global default context</doc>
|
|
<type name="MainContext" c:type="GMainContext*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="query" c:identifier="g_main_context_query">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21524">Determines information necessary to poll this main loop.
|
|
|
|
You must have successfully acquired the context with
|
|
g_main_context_acquire() before you may call this function.</doc>
|
|
<source-position filename="gmain.h" line="388"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21538">the number of records actually stored in @fds,
|
|
or, if more than @n_fds records need to be stored, the number
|
|
of records that need to be stored.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21526">a #GMainContext</doc>
|
|
<type name="MainContext" c:type="GMainContext*"/>
|
|
</instance-parameter>
|
|
<parameter name="max_priority" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21527">maximum priority source to check</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="timeout_" direction="out" caller-allocates="0" transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21528">location to store timeout to be used in polling</doc>
|
|
<type name="gint" c:type="gint*"/>
|
|
</parameter>
|
|
<parameter name="fds" direction="out" caller-allocates="1" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21529">location to
|
|
store #GPollFD records that need to be polled.</doc>
|
|
<array length="3" zero-terminated="0" c:type="GPollFD*">
|
|
<type name="PollFD" c:type="GPollFD"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="n_fds" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21531">length of @fds.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="ref" c:identifier="g_main_context_ref">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21544">Increases the reference count on a #GMainContext object by one.</doc>
|
|
<source-position filename="gmain.h" line="344"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21550">the @context that was passed in (since 2.6)</doc>
|
|
<type name="MainContext" c:type="GMainContext*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21546">a #GMainContext</doc>
|
|
<type name="MainContext" c:type="GMainContext*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="release" c:identifier="g_main_context_release">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21570">Releases ownership of a context previously acquired by this thread
|
|
with g_main_context_acquire(). If the context was acquired multiple
|
|
times, the ownership will be released only when g_main_context_release()
|
|
is called as many times as it was acquired.</doc>
|
|
<source-position filename="gmain.h" line="376"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21572">a #GMainContext</doc>
|
|
<type name="MainContext" c:type="GMainContext*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="remove_poll" c:identifier="g_main_context_remove_poll">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21581">Removes file descriptor from the set of file descriptors to be
|
|
polled for a particular context.</doc>
|
|
<source-position filename="gmain.h" line="414"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21583">a #GMainContext</doc>
|
|
<type name="MainContext" c:type="GMainContext*"/>
|
|
</instance-parameter>
|
|
<parameter name="fd" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21584">a #GPollFD descriptor previously added with g_main_context_add_poll()</doc>
|
|
<type name="PollFD" c:type="GPollFD*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_poll_func" c:identifier="g_main_context_set_poll_func" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21591">Sets the function to use to handle polling of file descriptors. It
|
|
will be used instead of the poll() system call
|
|
(or GLib's replacement function, which is used where
|
|
poll() isn't available).
|
|
|
|
This function could possibly be used to integrate the GLib event
|
|
loop with an external event loop.</doc>
|
|
<source-position filename="gmain.h" line="402"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21593">a #GMainContext</doc>
|
|
<type name="MainContext" c:type="GMainContext*"/>
|
|
</instance-parameter>
|
|
<parameter name="func" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21594">the function to call to poll all file descriptors</doc>
|
|
<type name="PollFunc" c:type="GPollFunc"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="unref" c:identifier="g_main_context_unref">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21606">Decreases the reference count on a #GMainContext object by one. If
|
|
the result is zero, free the context and free all associated memory.</doc>
|
|
<source-position filename="gmain.h" line="346"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21608">a #GMainContext</doc>
|
|
<type name="MainContext" c:type="GMainContext*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="wait" c:identifier="g_main_context_wait" deprecated="1" deprecated-version="2.58">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21615">Tries to become the owner of the specified context,
|
|
as with g_main_context_acquire(). But if another thread
|
|
is the owner, atomically drop @mutex and wait on @cond until
|
|
that owner releases ownership or until @cond is signaled, then
|
|
try again (once) to become the owner.</doc>
|
|
<doc-deprecated xml:space="preserve">Use g_main_context_is_owner() and separate locking instead.</doc-deprecated>
|
|
<source-position filename="gmain.h" line="380"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21627">%TRUE if the operation succeeded, and
|
|
this thread is now the owner of @context.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21617">a #GMainContext</doc>
|
|
<type name="MainContext" c:type="GMainContext*"/>
|
|
</instance-parameter>
|
|
<parameter name="cond" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21618">a condition variable</doc>
|
|
<type name="Cond" c:type="GCond*"/>
|
|
</parameter>
|
|
<parameter name="mutex" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21619">a mutex, currently held</doc>
|
|
<type name="Mutex" c:type="GMutex*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="wakeup" c:identifier="g_main_context_wakeup">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21633">If @context is currently blocking in g_main_context_iteration()
|
|
waiting for a source to become ready, cause it to stop blocking
|
|
and return. Otherwise, cause the next invocation of
|
|
g_main_context_iteration() to return without blocking.
|
|
|
|
This API is useful for low-level control over #GMainContext; for
|
|
example, integrating it with main loop implementations such as
|
|
#GMainLoop.
|
|
|
|
Another related use for this function is when implementing a main
|
|
loop with a termination condition, computed from multiple threads:
|
|
|
|
|[<!-- language="C" -->
|
|
#define NUM_TASKS 10
|
|
static volatile gint tasks_remaining = NUM_TASKS;
|
|
...
|
|
|
|
while (g_atomic_int_get (&tasks_remaining) != 0)
|
|
g_main_context_iteration (NULL, TRUE);
|
|
]|
|
|
|
|
Then in a thread:
|
|
|[<!-- language="C" -->
|
|
perform_work();
|
|
|
|
if (g_atomic_int_dec_and_test (&tasks_remaining))
|
|
g_main_context_wakeup (NULL);
|
|
]|</doc>
|
|
<source-position filename="gmain.h" line="372"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21635">a #GMainContext</doc>
|
|
<type name="MainContext" c:type="GMainContext*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<function name="default" c:identifier="g_main_context_default">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21237">Returns the global default main context. This is the main context
|
|
used for main loop functions when a main loop is not explicitly
|
|
specified, and corresponds to the "main" main loop. See also
|
|
g_main_context_get_thread_default().</doc>
|
|
<source-position filename="gmain.h" line="348"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21245">the global default main context.</doc>
|
|
<type name="MainContext" c:type="GMainContext*"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="get_thread_default" c:identifier="g_main_context_get_thread_default" version="2.22">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21319">Gets the thread-default #GMainContext for this thread. Asynchronous
|
|
operations that want to be able to be run in contexts other than
|
|
the default one should call this method or
|
|
g_main_context_ref_thread_default() to get a #GMainContext to add
|
|
their #GSources to. (Note that even in single-threaded
|
|
programs applications may sometimes want to temporarily push a
|
|
non-default context, so it is not safe to assume that this will
|
|
always return %NULL if you are running in the default thread.)
|
|
|
|
If you need to hold a reference on the context, use
|
|
g_main_context_ref_thread_default() instead.</doc>
|
|
<source-position filename="gmain.h" line="429"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21334">the thread-default #GMainContext, or
|
|
%NULL if the thread-default context is the global default context.</doc>
|
|
<type name="MainContext" c:type="GMainContext*"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="ref_thread_default" c:identifier="g_main_context_ref_thread_default" version="2.32">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21554">Gets the thread-default #GMainContext for this thread, as with
|
|
g_main_context_get_thread_default(), but also adds a reference to
|
|
it with g_main_context_ref(). In addition, unlike
|
|
g_main_context_get_thread_default(), if the thread-default context
|
|
is the global default context, this will return that #GMainContext
|
|
(with a ref added to it) rather than returning %NULL.</doc>
|
|
<source-position filename="gmain.h" line="431"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21564">the thread-default #GMainContext. Unref
|
|
with g_main_context_unref() when you are done with it.</doc>
|
|
<type name="MainContext" c:type="GMainContext*"/>
|
|
</return-value>
|
|
</function>
|
|
</record>
|
|
<record name="MainLoop" c:type="GMainLoop" glib:type-name="GMainLoop" glib:get-type="g_main_loop_get_type" c:symbol-prefix="main_loop">
|
|
<doc xml:space="preserve" filename="gmain.h" line="50">The `GMainLoop` struct is an opaque data type
|
|
representing the main event loop of a GLib or GTK+ application.</doc>
|
|
<source-position filename="gmain.h" line="56"/>
|
|
<constructor name="new" c:identifier="g_main_loop_new">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21807">Creates a new #GMainLoop structure.</doc>
|
|
<source-position filename="gmain.h" line="436"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21816">a new #GMainLoop.</doc>
|
|
<type name="MainLoop" c:type="GMainLoop*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="context" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21809">a #GMainContext (if %NULL, the default context will be used).</doc>
|
|
<type name="MainContext" c:type="GMainContext*"/>
|
|
</parameter>
|
|
<parameter name="is_running" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21810">set to %TRUE to indicate that the loop is running. This
|
|
is not very important since calling g_main_loop_run() will set this to
|
|
%TRUE anyway.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<method name="get_context" c:identifier="g_main_loop_get_context">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21787">Returns the #GMainContext of @loop.</doc>
|
|
<source-position filename="gmain.h" line="449"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21793">the #GMainContext of @loop</doc>
|
|
<type name="MainContext" c:type="GMainContext*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="loop" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21789">a #GMainLoop.</doc>
|
|
<type name="MainLoop" c:type="GMainLoop*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="is_running" c:identifier="g_main_loop_is_running">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21797">Checks to see if the main loop is currently being run via g_main_loop_run().</doc>
|
|
<source-position filename="gmain.h" line="447"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21803">%TRUE if the mainloop is currently being run.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="loop" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21799">a #GMainLoop.</doc>
|
|
<type name="MainLoop" c:type="GMainLoop*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="quit" c:identifier="g_main_loop_quit">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21820">Stops a #GMainLoop from running. Any calls to g_main_loop_run()
|
|
for the loop will return.
|
|
|
|
Note that sources that have already been dispatched when
|
|
g_main_loop_quit() is called will still be executed.</doc>
|
|
<source-position filename="gmain.h" line="441"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="loop" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21822">a #GMainLoop</doc>
|
|
<type name="MainLoop" c:type="GMainLoop*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="ref" c:identifier="g_main_loop_ref">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21832">Increases the reference count on a #GMainLoop object by one.</doc>
|
|
<source-position filename="gmain.h" line="443"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21838">@loop</doc>
|
|
<type name="MainLoop" c:type="GMainLoop*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="loop" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21834">a #GMainLoop</doc>
|
|
<type name="MainLoop" c:type="GMainLoop*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="run" c:identifier="g_main_loop_run">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21842">Runs a main loop until g_main_loop_quit() is called on the loop.
|
|
If this is called for the thread of the loop's #GMainContext,
|
|
it will process events from the loop, otherwise it will
|
|
simply wait.</doc>
|
|
<source-position filename="gmain.h" line="439"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="loop" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21844">a #GMainLoop</doc>
|
|
<type name="MainLoop" c:type="GMainLoop*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="unref" c:identifier="g_main_loop_unref">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21853">Decreases the reference count on a #GMainLoop object by one. If
|
|
the result is zero, free the loop and free all associated memory.</doc>
|
|
<source-position filename="gmain.h" line="445"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="loop" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21855">a #GMainLoop</doc>
|
|
<type name="MainLoop" c:type="GMainLoop*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
</record>
|
|
<record name="MappedFile" c:type="GMappedFile" glib:type-name="GMappedFile" glib:get-type="g_mapped_file_get_type" c:symbol-prefix="mapped_file">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1262">The #GMappedFile represents a file mapping created with
|
|
g_mapped_file_new(). It has only private members and should
|
|
not be accessed directly.</doc>
|
|
<source-position filename="gmappedfile.h" line="32"/>
|
|
<constructor name="new" c:identifier="g_mapped_file_new" version="2.8" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21963">Maps a file into memory. On UNIX, this is using the mmap() function.
|
|
|
|
If @writable is %TRUE, the mapped buffer may be modified, otherwise
|
|
it is an error to modify the mapped buffer. Modifications to the buffer
|
|
are not visible to other processes mapping the same file, and are not
|
|
written back to the file.
|
|
|
|
Note that modifications of the underlying file might affect the contents
|
|
of the #GMappedFile. Therefore, mapping should only be used if the file
|
|
will not be modified, or if all modifications of the file are done
|
|
atomically (e.g. using g_file_set_contents()).
|
|
|
|
If @filename is the name of an empty, regular file, the function
|
|
will successfully return an empty #GMappedFile. In other cases of
|
|
size 0 (e.g. device files such as /dev/null), @error will be set
|
|
to the #GFileError value #G_FILE_ERROR_INVAL.</doc>
|
|
<source-position filename="gmappedfile.h" line="35"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21987">a newly allocated #GMappedFile which must be unref'd
|
|
with g_mapped_file_unref(), or %NULL if the mapping failed.</doc>
|
|
<type name="MappedFile" c:type="GMappedFile*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="filename" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21965">The path of the file to load, in the GLib
|
|
filename encoding</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="writable" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21967">whether the mapping should be writable</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="new_from_fd" c:identifier="g_mapped_file_new_from_fd" version="2.32" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21993">Maps a file into memory. On UNIX, this is using the mmap() function.
|
|
|
|
If @writable is %TRUE, the mapped buffer may be modified, otherwise
|
|
it is an error to modify the mapped buffer. Modifications to the buffer
|
|
are not visible to other processes mapping the same file, and are not
|
|
written back to the file.
|
|
|
|
Note that modifications of the underlying file might affect the contents
|
|
of the #GMappedFile. Therefore, mapping should only be used if the file
|
|
will not be modified, or if all modifications of the file are done
|
|
atomically (e.g. using g_file_set_contents()).</doc>
|
|
<source-position filename="gmappedfile.h" line="39"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22011">a newly allocated #GMappedFile which must be unref'd
|
|
with g_mapped_file_unref(), or %NULL if the mapping failed.</doc>
|
|
<type name="MappedFile" c:type="GMappedFile*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="fd" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21995">The file descriptor of the file to load</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="writable" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21996">whether the mapping should be writable</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<method name="free" c:identifier="g_mapped_file_free" version="2.8" deprecated="1" deprecated-version="2.22">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21910">This call existed before #GMappedFile had refcounting and is currently
|
|
exactly the same as g_mapped_file_unref().</doc>
|
|
<doc-deprecated xml:space="preserve">Use g_mapped_file_unref() instead.</doc-deprecated>
|
|
<source-position filename="gmappedfile.h" line="54"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21912">a #GMappedFile</doc>
|
|
<type name="MappedFile" c:type="GMappedFile*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_bytes" c:identifier="g_mapped_file_get_bytes" version="2.34">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21922">Creates a new #GBytes which references the data mapped from @file.
|
|
The mapped contents of the file must not be modified after creating this
|
|
bytes object, because a #GBytes should be immutable.</doc>
|
|
<source-position filename="gmappedfile.h" line="47"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21930">A newly allocated #GBytes referencing data
|
|
from @file</doc>
|
|
<type name="Bytes" c:type="GBytes*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21924">a #GMappedFile</doc>
|
|
<type name="MappedFile" c:type="GMappedFile*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_contents" c:identifier="g_mapped_file_get_contents" version="2.8">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21936">Returns the contents of a #GMappedFile.
|
|
|
|
Note that the contents may not be zero-terminated,
|
|
even if the #GMappedFile is backed by a text file.
|
|
|
|
If the file is empty then %NULL is returned.</doc>
|
|
<source-position filename="gmappedfile.h" line="45"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21947">the contents of @file, or %NULL.</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21938">a #GMappedFile</doc>
|
|
<type name="MappedFile" c:type="GMappedFile*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_length" c:identifier="g_mapped_file_get_length" version="2.8">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21952">Returns the length of the contents of a #GMappedFile.</doc>
|
|
<source-position filename="gmappedfile.h" line="43"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21958">the length of the contents of @file.</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21954">a #GMappedFile</doc>
|
|
<type name="MappedFile" c:type="GMappedFile*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="ref" c:identifier="g_mapped_file_ref" version="2.22">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22017">Increments the reference count of @file by one. It is safe to call
|
|
this function from any thread.</doc>
|
|
<source-position filename="gmappedfile.h" line="49"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22024">the passed in #GMappedFile.</doc>
|
|
<type name="MappedFile" c:type="GMappedFile*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22019">a #GMappedFile</doc>
|
|
<type name="MappedFile" c:type="GMappedFile*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="unref" c:identifier="g_mapped_file_unref">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22029">Decrements the reference count of @file by one. If the reference count
|
|
drops to 0, unmaps the buffer of @file and frees it.
|
|
|
|
It is safe to call this function from any thread.
|
|
|
|
Since 2.22</doc>
|
|
<source-position filename="gmappedfile.h" line="51"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22031">a #GMappedFile</doc>
|
|
<type name="MappedFile" c:type="GMappedFile*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
</record>
|
|
<bitfield name="MarkupCollectType" c:type="GMarkupCollectType">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1271">A mixed enumerated type and flags field. You must specify one type
|
|
(string, strdup, boolean, tristate). Additionally, you may optionally
|
|
bitwise OR the type with the flag %G_MARKUP_COLLECT_OPTIONAL.
|
|
|
|
It is likely that this enum will be extended in the future to
|
|
support other types.</doc>
|
|
<source-position filename="gmarkup.h" line="246"/>
|
|
<member name="invalid" value="0" c:identifier="G_MARKUP_COLLECT_INVALID">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1273">used to terminate the list of attributes
|
|
to collect</doc>
|
|
</member>
|
|
<member name="string" value="1" c:identifier="G_MARKUP_COLLECT_STRING">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1275">collect the string pointer directly from
|
|
the attribute_values[] array. Expects a parameter of type (const
|
|
char **). If %G_MARKUP_COLLECT_OPTIONAL is specified and the
|
|
attribute isn't present then the pointer will be set to %NULL</doc>
|
|
</member>
|
|
<member name="strdup" value="2" c:identifier="G_MARKUP_COLLECT_STRDUP">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1279">as with %G_MARKUP_COLLECT_STRING, but
|
|
expects a parameter of type (char **) and g_strdup()s the
|
|
returned pointer. The pointer must be freed with g_free()</doc>
|
|
</member>
|
|
<member name="boolean" value="3" c:identifier="G_MARKUP_COLLECT_BOOLEAN">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1282">expects a parameter of type (gboolean *)
|
|
and parses the attribute value as a boolean. Sets %FALSE if the
|
|
attribute isn't present. Valid boolean values consist of
|
|
(case-insensitive) "false", "f", "no", "n", "0" and "true", "t",
|
|
"yes", "y", "1"</doc>
|
|
</member>
|
|
<member name="tristate" value="4" c:identifier="G_MARKUP_COLLECT_TRISTATE">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1287">as with %G_MARKUP_COLLECT_BOOLEAN, but
|
|
in the case of a missing attribute a value is set that compares
|
|
equal to neither %FALSE nor %TRUE G_MARKUP_COLLECT_OPTIONAL is
|
|
implied</doc>
|
|
</member>
|
|
<member name="optional" value="65536" c:identifier="G_MARKUP_COLLECT_OPTIONAL">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1291">can be bitwise ORed with the other fields.
|
|
If present, allows the attribute not to appear. A default value
|
|
is set depending on what value type is used</doc>
|
|
</member>
|
|
</bitfield>
|
|
<enumeration name="MarkupError" c:type="GMarkupError" glib:error-domain="g-markup-error-quark">
|
|
<doc xml:space="preserve" filename="gmarkup.h" line="33">Error codes returned by markup parsing.</doc>
|
|
<source-position filename="gmarkup.h" line="61"/>
|
|
<member name="bad_utf8" value="0" c:identifier="G_MARKUP_ERROR_BAD_UTF8">
|
|
<doc xml:space="preserve" filename="gmarkup.h" line="35">text being parsed was not valid UTF-8</doc>
|
|
</member>
|
|
<member name="empty" value="1" c:identifier="G_MARKUP_ERROR_EMPTY">
|
|
<doc xml:space="preserve" filename="gmarkup.h" line="36">document contained nothing, or only whitespace</doc>
|
|
</member>
|
|
<member name="parse" value="2" c:identifier="G_MARKUP_ERROR_PARSE">
|
|
<doc xml:space="preserve" filename="gmarkup.h" line="37">document was ill-formed</doc>
|
|
</member>
|
|
<member name="unknown_element" value="3" c:identifier="G_MARKUP_ERROR_UNKNOWN_ELEMENT">
|
|
<doc xml:space="preserve" filename="gmarkup.h" line="38">error should be set by #GMarkupParser
|
|
functions; element wasn't known</doc>
|
|
</member>
|
|
<member name="unknown_attribute" value="4" c:identifier="G_MARKUP_ERROR_UNKNOWN_ATTRIBUTE">
|
|
<doc xml:space="preserve" filename="gmarkup.h" line="40">error should be set by #GMarkupParser
|
|
functions; attribute wasn't known</doc>
|
|
</member>
|
|
<member name="invalid_content" value="5" c:identifier="G_MARKUP_ERROR_INVALID_CONTENT">
|
|
<doc xml:space="preserve" filename="gmarkup.h" line="42">error should be set by #GMarkupParser
|
|
functions; content was invalid</doc>
|
|
</member>
|
|
<member name="missing_attribute" value="6" c:identifier="G_MARKUP_ERROR_MISSING_ATTRIBUTE">
|
|
<doc xml:space="preserve" filename="gmarkup.h" line="44">error should be set by #GMarkupParser
|
|
functions; a required attribute was missing</doc>
|
|
</member>
|
|
</enumeration>
|
|
<record name="MarkupParseContext" c:type="GMarkupParseContext" glib:type-name="GMarkupParseContext" glib:get-type="g_markup_parse_context_get_type" c:symbol-prefix="markup_parse_context">
|
|
<doc xml:space="preserve" filename="gmarkup.h" line="103">A parse context is used to parse a stream of bytes that
|
|
you expect to contain marked-up text.
|
|
|
|
See g_markup_parse_context_new(), #GMarkupParser, and so
|
|
on for more details.</doc>
|
|
<source-position filename="gmarkup.h" line="112"/>
|
|
<constructor name="new" c:identifier="g_markup_parse_context_new">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22208">Creates a new parse context. A parse context is used to parse
|
|
marked-up documents. You can feed any number of documents into
|
|
a context, as long as no errors occur; once an error occurs,
|
|
the parse context can't continue to parse text (you have to
|
|
free it and create a new parse context).</doc>
|
|
<source-position filename="gmarkup.h" line="187"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22222">a new #GMarkupParseContext</doc>
|
|
<type name="MarkupParseContext" c:type="GMarkupParseContext*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="parser" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22210">a #GMarkupParser</doc>
|
|
<type name="MarkupParser" c:type="const GMarkupParser*"/>
|
|
</parameter>
|
|
<parameter name="flags" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22211">one or more #GMarkupParseFlags</doc>
|
|
<type name="MarkupParseFlags" c:type="GMarkupParseFlags"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22212">user data to pass to #GMarkupParser functions</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="user_data_dnotify" transfer-ownership="none" scope="async">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22213">user data destroy notifier called when
|
|
the parse context is freed</doc>
|
|
<type name="DestroyNotify" c:type="GDestroyNotify"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<method name="end_parse" c:identifier="g_markup_parse_context_end_parse" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22116">Signals to the #GMarkupParseContext that all data has been
|
|
fed into the parse context with g_markup_parse_context_parse().
|
|
|
|
This function reports an error if the document isn't complete,
|
|
for example if elements are still open.</doc>
|
|
<source-position filename="gmarkup.h" line="210"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22127">%TRUE on success, %FALSE if an error was set</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22118">a #GMarkupParseContext</doc>
|
|
<type name="MarkupParseContext" c:type="GMarkupParseContext*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="free" c:identifier="g_markup_parse_context_free">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22131">Frees a #GMarkupParseContext.
|
|
|
|
This function can't be called from inside one of the
|
|
#GMarkupParser functions or while a subparser is pushed.</doc>
|
|
<source-position filename="gmarkup.h" line="196"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22133">a #GMarkupParseContext</doc>
|
|
<type name="MarkupParseContext" c:type="GMarkupParseContext*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_element" c:identifier="g_markup_parse_context_get_element" version="2.2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22142">Retrieves the name of the currently open element.
|
|
|
|
If called from the start_element or end_element handlers this will
|
|
give the element_name as passed to those functions. For the parent
|
|
elements, see g_markup_parse_context_get_element_stack().</doc>
|
|
<source-position filename="gmarkup.h" line="213"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22152">the name of the currently open element, or %NULL</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22144">a #GMarkupParseContext</doc>
|
|
<type name="MarkupParseContext" c:type="GMarkupParseContext*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_element_stack" c:identifier="g_markup_parse_context_get_element_stack" version="2.16" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22157">Retrieves the element stack from the internal state of the parser.
|
|
|
|
The returned #GSList is a list of strings where the first item is
|
|
the currently open tag (as would be returned by
|
|
g_markup_parse_context_get_element()) and the next item is its
|
|
immediate parent.
|
|
|
|
This function is intended to be used in the start_element and
|
|
end_element handlers where g_markup_parse_context_get_element()
|
|
would merely return the name of the element that is being
|
|
processed.</doc>
|
|
<source-position filename="gmarkup.h" line="215"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22173">the element stack, which must not be modified</doc>
|
|
<type name="GLib.SList" c:type="const GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22159">a #GMarkupParseContext</doc>
|
|
<type name="MarkupParseContext" c:type="GMarkupParseContext*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_position" c:identifier="g_markup_parse_context_get_position">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22178">Retrieves the current line number and the number of the character on
|
|
that line. Intended for use in error messages; there are no strict
|
|
semantics for what constitutes the "current" line number other than
|
|
"the best number we could come up with for error messages."</doc>
|
|
<source-position filename="gmarkup.h" line="219"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22180">a #GMarkupParseContext</doc>
|
|
<type name="MarkupParseContext" c:type="GMarkupParseContext*"/>
|
|
</instance-parameter>
|
|
<parameter name="line_number" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22181">return location for a line number, or %NULL</doc>
|
|
<type name="gint" c:type="gint*"/>
|
|
</parameter>
|
|
<parameter name="char_number" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22182">return location for a char-on-line number, or %NULL</doc>
|
|
<type name="gint" c:type="gint*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_user_data" c:identifier="g_markup_parse_context_get_user_data" version="2.18">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22191">Returns the user_data associated with @context.
|
|
|
|
This will either be the user_data that was provided to
|
|
g_markup_parse_context_new() or to the most recent call
|
|
of g_markup_parse_context_push().</doc>
|
|
<source-position filename="gmarkup.h" line="223"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22201">the provided user_data. The returned data belongs to
|
|
the markup context and will be freed when
|
|
g_markup_parse_context_free() is called.</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22193">a #GMarkupParseContext</doc>
|
|
<type name="MarkupParseContext" c:type="GMarkupParseContext*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="parse" c:identifier="g_markup_parse_context_parse" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22226">Feed some data to the #GMarkupParseContext.
|
|
|
|
The data need not be valid UTF-8; an error will be signaled if
|
|
it's invalid. The data need not be an entire document; you can
|
|
feed a document into the parser incrementally, via multiple calls
|
|
to this function. Typically, as you receive data from a network
|
|
connection or file, you feed each received chunk of data into this
|
|
function, aborting the process if an error occurs. Once an error
|
|
is reported, no further data may be fed to the #GMarkupParseContext;
|
|
all errors are fatal.</doc>
|
|
<source-position filename="gmarkup.h" line="198"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22244">%FALSE if an error occurred, %TRUE on success</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22228">a #GMarkupParseContext</doc>
|
|
<type name="MarkupParseContext" c:type="GMarkupParseContext*"/>
|
|
</instance-parameter>
|
|
<parameter name="text" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22229">chunk of text to parse</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="text_len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22230">length of @text in bytes</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="pop" c:identifier="g_markup_parse_context_pop" version="2.18">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22248">Completes the process of a temporary sub-parser redirection.
|
|
|
|
This function exists to collect the user_data allocated by a
|
|
matching call to g_markup_parse_context_push(). It must be called
|
|
in the end_element handler corresponding to the start_element
|
|
handler during which g_markup_parse_context_push() was called.
|
|
You must not call this function from the error callback -- the
|
|
@user_data is provided directly to the callback in that case.
|
|
|
|
This function is not intended to be directly called by users
|
|
interested in invoking subparsers. Instead, it is intended to
|
|
be used by the subparsers themselves to implement a higher-level
|
|
interface.</doc>
|
|
<source-position filename="gmarkup.h" line="207"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22266">the user data passed to g_markup_parse_context_push()</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22250">a #GMarkupParseContext</doc>
|
|
<type name="MarkupParseContext" c:type="GMarkupParseContext*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="push" c:identifier="g_markup_parse_context_push" version="2.18">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22271">Temporarily redirects markup data to a sub-parser.
|
|
|
|
This function may only be called from the start_element handler of
|
|
a #GMarkupParser. It must be matched with a corresponding call to
|
|
g_markup_parse_context_pop() in the matching end_element handler
|
|
(except in the case that the parser aborts due to an error).
|
|
|
|
All tags, text and other data between the matching tags is
|
|
redirected to the subparser given by @parser. @user_data is used
|
|
as the user_data for that parser. @user_data is also passed to the
|
|
error callback in the event that an error occurs. This includes
|
|
errors that occur in subparsers of the subparser.
|
|
|
|
The end tag matching the start tag for which this call was made is
|
|
handled by the previous parser (which is given its own user_data)
|
|
which is why g_markup_parse_context_pop() is provided to allow "one
|
|
last access" to the @user_data provided to this function. In the
|
|
case of error, the @user_data provided here is passed directly to
|
|
the error callback of the subparser and g_markup_parse_context_pop()
|
|
should not be called. In either case, if @user_data was allocated
|
|
then it ought to be freed from both of these locations.
|
|
|
|
This function is not intended to be directly called by users
|
|
interested in invoking subparsers. Instead, it is intended to be
|
|
used by the subparsers themselves to implement a higher-level
|
|
interface.
|
|
|
|
As an example, see the following implementation of a simple
|
|
parser that counts the number of tags encountered.
|
|
|
|
|[<!-- language="C" -->
|
|
typedef struct
|
|
{
|
|
gint tag_count;
|
|
} CounterData;
|
|
|
|
static void
|
|
counter_start_element (GMarkupParseContext *context,
|
|
const gchar *element_name,
|
|
const gchar **attribute_names,
|
|
const gchar **attribute_values,
|
|
gpointer user_data,
|
|
GError **error)
|
|
{
|
|
CounterData *data = user_data;
|
|
|
|
data->tag_count++;
|
|
}
|
|
|
|
static void
|
|
counter_error (GMarkupParseContext *context,
|
|
GError *error,
|
|
gpointer user_data)
|
|
{
|
|
CounterData *data = user_data;
|
|
|
|
g_slice_free (CounterData, data);
|
|
}
|
|
|
|
static GMarkupParser counter_subparser =
|
|
{
|
|
counter_start_element,
|
|
NULL,
|
|
NULL,
|
|
NULL,
|
|
counter_error
|
|
};
|
|
]|
|
|
|
|
In order to allow this parser to be easily used as a subparser, the
|
|
following interface is provided:
|
|
|
|
|[<!-- language="C" -->
|
|
void
|
|
start_counting (GMarkupParseContext *context)
|
|
{
|
|
CounterData *data = g_slice_new (CounterData);
|
|
|
|
data->tag_count = 0;
|
|
g_markup_parse_context_push (context, &counter_subparser, data);
|
|
}
|
|
|
|
gint
|
|
end_counting (GMarkupParseContext *context)
|
|
{
|
|
CounterData *data = g_markup_parse_context_pop (context);
|
|
int result;
|
|
|
|
result = data->tag_count;
|
|
g_slice_free (CounterData, data);
|
|
|
|
return result;
|
|
}
|
|
]|
|
|
|
|
The subparser would then be used as follows:
|
|
|
|
|[<!-- language="C" -->
|
|
static void start_element (context, element_name, ...)
|
|
{
|
|
if (strcmp (element_name, "count-these") == 0)
|
|
start_counting (context);
|
|
|
|
// else, handle other tags...
|
|
}
|
|
|
|
static void end_element (context, element_name, ...)
|
|
{
|
|
if (strcmp (element_name, "count-these") == 0)
|
|
g_print ("Counted %d tags\n", end_counting (context));
|
|
|
|
// else, handle other tags...
|
|
}
|
|
]|</doc>
|
|
<source-position filename="gmarkup.h" line="203"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22273">a #GMarkupParseContext</doc>
|
|
<type name="MarkupParseContext" c:type="GMarkupParseContext*"/>
|
|
</instance-parameter>
|
|
<parameter name="parser" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22274">a #GMarkupParser</doc>
|
|
<type name="MarkupParser" c:type="const GMarkupParser*"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22275">user data to pass to #GMarkupParser functions</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="ref" c:identifier="g_markup_parse_context_ref" version="2.36">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22396">Increases the reference count of @context.</doc>
|
|
<source-position filename="gmarkup.h" line="192"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22402">the same @context</doc>
|
|
<type name="MarkupParseContext" c:type="GMarkupParseContext*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22398">a #GMarkupParseContext</doc>
|
|
<type name="MarkupParseContext" c:type="GMarkupParseContext*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="unref" c:identifier="g_markup_parse_context_unref" version="2.36">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22407">Decreases the reference count of @context. When its reference count
|
|
drops to 0, it is freed.</doc>
|
|
<source-position filename="gmarkup.h" line="194"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22409">a #GMarkupParseContext</doc>
|
|
<type name="MarkupParseContext" c:type="GMarkupParseContext*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
</record>
|
|
<bitfield name="MarkupParseFlags" c:type="GMarkupParseFlags">
|
|
<doc xml:space="preserve" filename="gmarkup.h" line="75">Flags that affect the behaviour of the parser.</doc>
|
|
<source-position filename="gmarkup.h" line="101"/>
|
|
<member name="do_not_use_this_unsupported_flag" value="1" c:identifier="G_MARKUP_DO_NOT_USE_THIS_UNSUPPORTED_FLAG">
|
|
<doc xml:space="preserve" filename="gmarkup.h" line="77">flag you should not use</doc>
|
|
</member>
|
|
<member name="treat_cdata_as_text" value="2" c:identifier="G_MARKUP_TREAT_CDATA_AS_TEXT">
|
|
<doc xml:space="preserve" filename="gmarkup.h" line="78">When this flag is set, CDATA marked
|
|
sections are not passed literally to the @passthrough function of
|
|
the parser. Instead, the content of the section (without the
|
|
`<![CDATA[` and `]]>`) is
|
|
passed to the @text function. This flag was added in GLib 2.12</doc>
|
|
</member>
|
|
<member name="prefix_error_position" value="4" c:identifier="G_MARKUP_PREFIX_ERROR_POSITION">
|
|
<doc xml:space="preserve" filename="gmarkup.h" line="83">Normally errors caught by GMarkup
|
|
itself have line/column information prefixed to them to let the
|
|
caller know the location of the error. When this flag is set the
|
|
location information is also prefixed to errors generated by the
|
|
#GMarkupParser implementation functions</doc>
|
|
</member>
|
|
<member name="ignore_qualified" value="8" c:identifier="G_MARKUP_IGNORE_QUALIFIED">
|
|
<doc xml:space="preserve" filename="gmarkup.h" line="88">Ignore (don't report) qualified
|
|
attributes and tags, along with their contents. A qualified
|
|
attribute or tag is one that contains ':' in its name (ie: is in
|
|
another namespace). Since: 2.40.</doc>
|
|
</member>
|
|
</bitfield>
|
|
<record name="MarkupParser" c:type="GMarkupParser">
|
|
<doc xml:space="preserve" filename="gmarkup.h" line="115">Any of the fields in #GMarkupParser can be %NULL, in which case they
|
|
will be ignored. Except for the @error function, any of these callbacks
|
|
can set an error; in particular the %G_MARKUP_ERROR_UNKNOWN_ELEMENT,
|
|
%G_MARKUP_ERROR_UNKNOWN_ATTRIBUTE, and %G_MARKUP_ERROR_INVALID_CONTENT
|
|
errors are intended to be set from these callbacks. If you set an error
|
|
from a callback, g_markup_parse_context_parse() will report that error
|
|
back to its caller.</doc>
|
|
<source-position filename="gmarkup.h" line="184"/>
|
|
<field name="start_element">
|
|
<callback name="start_element" throws="1">
|
|
<source-position filename="gmarkup.h" line="146"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="context" transfer-ownership="none">
|
|
<type name="MarkupParseContext" c:type="GMarkupParseContext*"/>
|
|
</parameter>
|
|
<parameter name="element_name" transfer-ownership="none">
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="attribute_names" transfer-ownership="none">
|
|
<type name="utf8" c:type="const gchar**"/>
|
|
</parameter>
|
|
<parameter name="attribute_values" transfer-ownership="none">
|
|
<type name="utf8" c:type="const gchar**"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1" closure="4">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
</field>
|
|
<field name="end_element">
|
|
<callback name="end_element" throws="1">
|
|
<source-position filename="gmarkup.h" line="154"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="context" transfer-ownership="none">
|
|
<type name="MarkupParseContext" c:type="GMarkupParseContext*"/>
|
|
</parameter>
|
|
<parameter name="element_name" transfer-ownership="none">
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1" closure="2">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
</field>
|
|
<field name="text">
|
|
<callback name="text" throws="1">
|
|
<source-position filename="gmarkup.h" line="161"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="context" transfer-ownership="none">
|
|
<type name="MarkupParseContext" c:type="GMarkupParseContext*"/>
|
|
</parameter>
|
|
<parameter name="text" transfer-ownership="none">
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="text_len" transfer-ownership="none">
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1" closure="3">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
</field>
|
|
<field name="passthrough">
|
|
<callback name="passthrough" throws="1">
|
|
<source-position filename="gmarkup.h" line="172"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="context" transfer-ownership="none">
|
|
<type name="MarkupParseContext" c:type="GMarkupParseContext*"/>
|
|
</parameter>
|
|
<parameter name="passthrough_text" transfer-ownership="none">
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="text_len" transfer-ownership="none">
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1" closure="3">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
</field>
|
|
<field name="error">
|
|
<callback name="error">
|
|
<source-position filename="gmarkup.h" line="181"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="context" transfer-ownership="none">
|
|
<type name="MarkupParseContext" c:type="GMarkupParseContext*"/>
|
|
</parameter>
|
|
<parameter name="error" transfer-ownership="none">
|
|
<type name="Error" c:type="GError*"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1" closure="2">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
</field>
|
|
</record>
|
|
<record name="MatchInfo" c:type="GMatchInfo" glib:type-name="GMatchInfo" glib:get-type="g_match_info_get_type" c:symbol-prefix="match_info">
|
|
<doc xml:space="preserve" filename="gregex.h" line="416">A GMatchInfo is an opaque struct used to return information about
|
|
matches.</doc>
|
|
<source-position filename="gregex.h" line="422"/>
|
|
<method name="expand_references" c:identifier="g_match_info_expand_references" version="2.14" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22463">Returns a new string containing the text in @string_to_expand with
|
|
references and escape sequences expanded. References refer to the last
|
|
match done with @string against @regex and have the same syntax used by
|
|
g_regex_replace().
|
|
|
|
The @string_to_expand must be UTF-8 encoded even if #G_REGEX_RAW was
|
|
passed to g_regex_new().
|
|
|
|
The backreferences are extracted from the string passed to the match
|
|
function, so you cannot call this function after freeing the string.
|
|
|
|
@match_info may be %NULL in which case @string_to_expand must not
|
|
contain references. For instance "foo\n" does not refer to an actual
|
|
pattern and '\n' merely will be replaced with \n character,
|
|
while to expand "\0" (whole match) one needs the result of a match.
|
|
Use g_regex_check_replacement() to find out whether @string_to_expand
|
|
contains references.</doc>
|
|
<source-position filename="gregex.h" line="585"/>
|
|
<return-value transfer-ownership="full" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22487">the expanded string, or %NULL if an error occurred</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="match_info" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22465">a #GMatchInfo or %NULL</doc>
|
|
<type name="MatchInfo" c:type="const GMatchInfo*"/>
|
|
</instance-parameter>
|
|
<parameter name="string_to_expand" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22466">the string to expand</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="fetch" c:identifier="g_match_info_fetch" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22492">Retrieves the text matching the @match_num'th capturing
|
|
parentheses. 0 is the full text of the match, 1 is the first paren
|
|
set, 2 the second, and so on.
|
|
|
|
If @match_num is a valid sub pattern but it didn't match anything
|
|
(e.g. sub pattern 1, matching "b" against "(a)?b") then an empty
|
|
string is returned.
|
|
|
|
If the match was obtained using the DFA algorithm, that is using
|
|
g_regex_match_all() or g_regex_match_all_full(), the retrieved
|
|
string is not that of a set of parentheses but that of a matched
|
|
substring. Substrings are matched in reverse order of length, so
|
|
0 is the longest match.
|
|
|
|
The string is fetched from the string passed to the match function,
|
|
so you cannot call this function after freeing the string.</doc>
|
|
<source-position filename="gregex.h" line="589"/>
|
|
<return-value transfer-ownership="full" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22514">The matched substring, or %NULL if an error
|
|
occurred. You have to free the string yourself</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="match_info" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22494">#GMatchInfo structure</doc>
|
|
<type name="MatchInfo" c:type="const GMatchInfo*"/>
|
|
</instance-parameter>
|
|
<parameter name="match_num" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22495">number of the sub expression</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="fetch_all" c:identifier="g_match_info_fetch_all" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22520">Bundles up pointers to each of the matching substrings from a match
|
|
and stores them in an array of gchar pointers. The first element in
|
|
the returned array is the match number 0, i.e. the entire matched
|
|
text.
|
|
|
|
If a sub pattern didn't match anything (e.g. sub pattern 1, matching
|
|
"b" against "(a)?b") then an empty string is inserted.
|
|
|
|
If the last match was obtained using the DFA algorithm, that is using
|
|
g_regex_match_all() or g_regex_match_all_full(), the retrieved
|
|
strings are not that matched by sets of parentheses but that of the
|
|
matched substring. Substrings are matched in reverse order of length,
|
|
so the first one is the longest match.
|
|
|
|
The strings are fetched from the string passed to the match function,
|
|
so you cannot call this function after freeing the string.</doc>
|
|
<source-position filename="gregex.h" line="605"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22541">a %NULL-terminated array of gchar *
|
|
pointers. It must be freed using g_strfreev(). If the previous
|
|
match failed %NULL is returned</doc>
|
|
<array c:type="gchar**">
|
|
<type name="utf8"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="match_info" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22522">a #GMatchInfo structure</doc>
|
|
<type name="MatchInfo" c:type="const GMatchInfo*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="fetch_named" c:identifier="g_match_info_fetch_named" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22548">Retrieves the text matching the capturing parentheses named @name.
|
|
|
|
If @name is a valid sub pattern name but it didn't match anything
|
|
(e.g. sub pattern "X", matching "b" against "(?P<X>a)?b")
|
|
then an empty string is returned.
|
|
|
|
The string is fetched from the string passed to the match function,
|
|
so you cannot call this function after freeing the string.</doc>
|
|
<source-position filename="gregex.h" line="597"/>
|
|
<return-value transfer-ownership="full" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22562">The matched substring, or %NULL if an error
|
|
occurred. You have to free the string yourself</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="match_info" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22550">#GMatchInfo structure</doc>
|
|
<type name="MatchInfo" c:type="const GMatchInfo*"/>
|
|
</instance-parameter>
|
|
<parameter name="name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22551">name of the subexpression</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="fetch_named_pos" c:identifier="g_match_info_fetch_named_pos" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22568">Retrieves the position in bytes of the capturing parentheses named @name.
|
|
|
|
If @name is a valid sub pattern name but it didn't match anything
|
|
(e.g. sub pattern "X", matching "b" against "(?P<X>a)?b")
|
|
then @start_pos and @end_pos are set to -1 and %TRUE is returned.</doc>
|
|
<source-position filename="gregex.h" line="600"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22583">%TRUE if the position was fetched, %FALSE otherwise.
|
|
If the position cannot be fetched, @start_pos and @end_pos
|
|
are left unchanged.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="match_info" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22570">#GMatchInfo structure</doc>
|
|
<type name="MatchInfo" c:type="const GMatchInfo*"/>
|
|
</instance-parameter>
|
|
<parameter name="name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22571">name of the subexpression</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="start_pos" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22572">pointer to location where to store
|
|
the start position, or %NULL</doc>
|
|
<type name="gint" c:type="gint*"/>
|
|
</parameter>
|
|
<parameter name="end_pos" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22574">pointer to location where to store
|
|
the end position, or %NULL</doc>
|
|
<type name="gint" c:type="gint*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="fetch_pos" c:identifier="g_match_info_fetch_pos" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22590">Retrieves the position in bytes of the @match_num'th capturing
|
|
parentheses. 0 is the full text of the match, 1 is the first
|
|
paren set, 2 the second, and so on.
|
|
|
|
If @match_num is a valid sub pattern but it didn't match anything
|
|
(e.g. sub pattern 1, matching "b" against "(a)?b") then @start_pos
|
|
and @end_pos are set to -1 and %TRUE is returned.
|
|
|
|
If the match was obtained using the DFA algorithm, that is using
|
|
g_regex_match_all() or g_regex_match_all_full(), the retrieved
|
|
position is not that of a set of parentheses but that of a matched
|
|
substring. Substrings are matched in reverse order of length, so
|
|
0 is the longest match.</doc>
|
|
<source-position filename="gregex.h" line="592"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22613">%TRUE if the position was fetched, %FALSE otherwise. If
|
|
the position cannot be fetched, @start_pos and @end_pos are left
|
|
unchanged</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="match_info" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22592">#GMatchInfo structure</doc>
|
|
<type name="MatchInfo" c:type="const GMatchInfo*"/>
|
|
</instance-parameter>
|
|
<parameter name="match_num" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22593">number of the sub expression</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="start_pos" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22594">pointer to location where to store
|
|
the start position, or %NULL</doc>
|
|
<type name="gint" c:type="gint*"/>
|
|
</parameter>
|
|
<parameter name="end_pos" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22596">pointer to location where to store
|
|
the end position, or %NULL</doc>
|
|
<type name="gint" c:type="gint*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="free" c:identifier="g_match_info_free" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22620">If @match_info is not %NULL, calls g_match_info_unref(); otherwise does
|
|
nothing.</doc>
|
|
<source-position filename="gregex.h" line="574"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="match_info" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22622">a #GMatchInfo, or %NULL</doc>
|
|
<type name="MatchInfo" c:type="GMatchInfo*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_match_count" c:identifier="g_match_info_get_match_count" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22631">Retrieves the number of matched substrings (including substring 0,
|
|
that is the whole matched text), so 1 is returned if the pattern
|
|
has no substrings in it and 0 is returned if the match failed.
|
|
|
|
If the last match was obtained using the DFA algorithm, that is
|
|
using g_regex_match_all() or g_regex_match_all_full(), the retrieved
|
|
count is not that of the number of capturing parentheses but that of
|
|
the number of matched substrings.</doc>
|
|
<source-position filename="gregex.h" line="581"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22644">Number of matched substrings, or -1 if an error occurred</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="match_info" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22633">a #GMatchInfo structure</doc>
|
|
<type name="MatchInfo" c:type="const GMatchInfo*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_regex" c:identifier="g_match_info_get_regex" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22649">Returns #GRegex object used in @match_info. It belongs to Glib
|
|
and must not be freed. Use g_regex_ref() if you need to keep it
|
|
after you free @match_info object.</doc>
|
|
<source-position filename="gregex.h" line="565"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22657">#GRegex object used in @match_info</doc>
|
|
<type name="Regex" c:type="GRegex*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="match_info" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22651">a #GMatchInfo</doc>
|
|
<type name="MatchInfo" c:type="const GMatchInfo*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_string" c:identifier="g_match_info_get_string" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22662">Returns the string searched with @match_info. This is the
|
|
string passed to g_regex_match() or g_regex_replace() so
|
|
you may not free it before calling this function.</doc>
|
|
<source-position filename="gregex.h" line="567"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22670">the string searched with @match_info</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="match_info" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22664">a #GMatchInfo</doc>
|
|
<type name="MatchInfo" c:type="const GMatchInfo*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="is_partial_match" c:identifier="g_match_info_is_partial_match" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22675">Usually if the string passed to g_regex_match*() matches as far as
|
|
it goes, but is too short to match the entire pattern, %FALSE is
|
|
returned. There are circumstances where it might be helpful to
|
|
distinguish this case from other cases in which there is no match.
|
|
|
|
Consider, for example, an application where a human is required to
|
|
type in data for a field with specific formatting requirements. An
|
|
example might be a date in the form ddmmmyy, defined by the pattern
|
|
"^\d?\d(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)\d\d$".
|
|
If the application sees the user’s keystrokes one by one, and can
|
|
check that what has been typed so far is potentially valid, it is
|
|
able to raise an error as soon as a mistake is made.
|
|
|
|
GRegex supports the concept of partial matching by means of the
|
|
#G_REGEX_MATCH_PARTIAL_SOFT and #G_REGEX_MATCH_PARTIAL_HARD flags.
|
|
When they are used, the return code for
|
|
g_regex_match() or g_regex_match_full() is, as usual, %TRUE
|
|
for a complete match, %FALSE otherwise. But, when these functions
|
|
return %FALSE, you can check if the match was partial calling
|
|
g_match_info_is_partial_match().
|
|
|
|
The difference between #G_REGEX_MATCH_PARTIAL_SOFT and
|
|
#G_REGEX_MATCH_PARTIAL_HARD is that when a partial match is encountered
|
|
with #G_REGEX_MATCH_PARTIAL_SOFT, matching continues to search for a
|
|
possible complete match, while with #G_REGEX_MATCH_PARTIAL_HARD matching
|
|
stops at the partial match.
|
|
When both #G_REGEX_MATCH_PARTIAL_SOFT and #G_REGEX_MATCH_PARTIAL_HARD
|
|
are set, the latter takes precedence.
|
|
|
|
There were formerly some restrictions on the pattern for partial matching.
|
|
The restrictions no longer apply.
|
|
|
|
See pcrepartial(3) for more information on partial matching.</doc>
|
|
<source-position filename="gregex.h" line="583"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22713">%TRUE if the match was partial, %FALSE otherwise</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="match_info" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22677">a #GMatchInfo structure</doc>
|
|
<type name="MatchInfo" c:type="const GMatchInfo*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="matches" c:identifier="g_match_info_matches" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22718">Returns whether the previous match operation succeeded.</doc>
|
|
<source-position filename="gregex.h" line="579"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22724">%TRUE if the previous match operation succeeded,
|
|
%FALSE otherwise</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="match_info" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22720">a #GMatchInfo structure</doc>
|
|
<type name="MatchInfo" c:type="const GMatchInfo*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="next" c:identifier="g_match_info_next" version="2.14" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22730">Scans for the next match using the same parameters of the previous
|
|
call to g_regex_match_full() or g_regex_match() that returned
|
|
@match_info.
|
|
|
|
The match is done on the string passed to the match function, so you
|
|
cannot free it before calling this function.</doc>
|
|
<source-position filename="gregex.h" line="576"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22742">%TRUE is the string matched, %FALSE otherwise</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="match_info" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22732">a #GMatchInfo structure</doc>
|
|
<type name="MatchInfo" c:type="GMatchInfo*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="ref" c:identifier="g_match_info_ref" version="2.30">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22747">Increases reference count of @match_info by 1.</doc>
|
|
<source-position filename="gregex.h" line="570"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22753">@match_info</doc>
|
|
<type name="MatchInfo" c:type="GMatchInfo*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="match_info" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22749">a #GMatchInfo</doc>
|
|
<type name="MatchInfo" c:type="GMatchInfo*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="unref" c:identifier="g_match_info_unref" version="2.30">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22758">Decreases reference count of @match_info by 1. When reference count drops
|
|
to zero, it frees all the memory associated with the match_info structure.</doc>
|
|
<source-position filename="gregex.h" line="572"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="match_info" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22760">a #GMatchInfo</doc>
|
|
<type name="MatchInfo" c:type="GMatchInfo*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
</record>
|
|
<record name="MemVTable" c:type="GMemVTable">
|
|
<doc xml:space="preserve" filename="gmem.h" line="36">A set of functions used to perform memory allocation. The same #GMemVTable must
|
|
be used for all allocations in the same program; a call to g_mem_set_vtable(),
|
|
if it exists, should be prior to any use of GLib.
|
|
|
|
This functions related to this has been deprecated in 2.46, and no longer work.</doc>
|
|
<source-position filename="gmem.h" line="376"/>
|
|
<field name="malloc">
|
|
<callback name="malloc">
|
|
<source-position filename="gmem.h" line="366"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="n_bytes" transfer-ownership="none">
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
</field>
|
|
<field name="realloc">
|
|
<callback name="realloc">
|
|
<source-position filename="gmem.h" line="367"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="mem" transfer-ownership="none">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="n_bytes" transfer-ownership="none">
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
</field>
|
|
<field name="free">
|
|
<callback name="free">
|
|
<source-position filename="gmem.h" line="369"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="mem" transfer-ownership="none">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
</field>
|
|
<field name="calloc">
|
|
<callback name="calloc">
|
|
<source-position filename="gmem.h" line="371"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="n_blocks" transfer-ownership="none">
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
<parameter name="n_block_bytes" transfer-ownership="none">
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
</field>
|
|
<field name="try_malloc">
|
|
<callback name="try_malloc">
|
|
<source-position filename="gmem.h" line="373"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="n_bytes" transfer-ownership="none">
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
</field>
|
|
<field name="try_realloc">
|
|
<callback name="try_realloc">
|
|
<source-position filename="gmem.h" line="374"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="mem" transfer-ownership="none">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="n_bytes" transfer-ownership="none">
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
</field>
|
|
</record>
|
|
<union name="Mutex" c:type="GMutex">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1304">The #GMutex struct is an opaque data structure to represent a mutex
|
|
(mutual exclusion). It can be used to protect data against shared
|
|
access.
|
|
|
|
Take for example the following function:
|
|
|[<!-- language="C" -->
|
|
int
|
|
give_me_next_number (void)
|
|
{
|
|
static int current_number = 0;
|
|
|
|
// now do a very complicated calculation to calculate the new
|
|
// number, this might for example be a random number generator
|
|
current_number = calc_next_number (current_number);
|
|
|
|
return current_number;
|
|
}
|
|
]|
|
|
It is easy to see that this won't work in a multi-threaded
|
|
application. There current_number must be protected against shared
|
|
access. A #GMutex can be used as a solution to this problem:
|
|
|[<!-- language="C" -->
|
|
int
|
|
give_me_next_number (void)
|
|
{
|
|
static GMutex mutex;
|
|
static int current_number = 0;
|
|
int ret_val;
|
|
|
|
g_mutex_lock (&mutex);
|
|
ret_val = current_number = calc_next_number (current_number);
|
|
g_mutex_unlock (&mutex);
|
|
|
|
return ret_val;
|
|
}
|
|
]|
|
|
Notice that the #GMutex is not initialised to any particular value.
|
|
Its placement in static storage ensures that it will be initialised
|
|
to all-zeros, which is appropriate.
|
|
|
|
If a #GMutex is placed in other contexts (eg: embedded in a struct)
|
|
then it must be explicitly initialised using g_mutex_init().
|
|
|
|
A #GMutex should only be accessed via g_mutex_ functions.</doc>
|
|
<source-position filename="gthread.h" line="63"/>
|
|
<field name="p" readable="0" private="1">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</field>
|
|
<field name="i" readable="0" private="1">
|
|
<array zero-terminated="0" fixed-size="2">
|
|
<type name="guint" c:type="guint"/>
|
|
</array>
|
|
</field>
|
|
<method name="clear" c:identifier="g_mutex_clear">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22997">Frees the resources allocated to a mutex with g_mutex_init().
|
|
|
|
This function should not be used with a #GMutex that has been
|
|
statically allocated.
|
|
|
|
Calling g_mutex_clear() on a locked mutex leads to undefined
|
|
behaviour.
|
|
|
|
Sine: 2.32</doc>
|
|
<source-position filename="gthread.h" line="166"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="mutex" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22999">an initialized #GMutex</doc>
|
|
<type name="Mutex" c:type="GMutex*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="init" c:identifier="g_mutex_init" version="2.32">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23013">Initializes a #GMutex so that it can be used.
|
|
|
|
This function is useful to initialize a mutex that has been
|
|
allocated on the stack, or as part of a larger structure.
|
|
It is not necessary to initialize a mutex that has been
|
|
statically allocated.
|
|
|
|
|[<!-- language="C" -->
|
|
typedef struct {
|
|
GMutex m;
|
|
...
|
|
} Blob;
|
|
|
|
Blob *b;
|
|
|
|
b = g_new (Blob, 1);
|
|
g_mutex_init (&b->m);
|
|
]|
|
|
|
|
To undo the effect of g_mutex_init() when a mutex is no longer
|
|
needed, use g_mutex_clear().
|
|
|
|
Calling g_mutex_init() on an already initialized #GMutex leads
|
|
to undefined behaviour.</doc>
|
|
<source-position filename="gthread.h" line="164"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="mutex" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23015">an uninitialized #GMutex</doc>
|
|
<type name="Mutex" c:type="GMutex*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="lock" c:identifier="g_mutex_lock">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23046">Locks @mutex. If @mutex is already locked by another thread, the
|
|
current thread will block until @mutex is unlocked by the other
|
|
thread.
|
|
|
|
#GMutex is neither guaranteed to be recursive nor to be
|
|
non-recursive. As such, calling g_mutex_lock() on a #GMutex that has
|
|
already been locked by the same thread results in undefined behaviour
|
|
(including but not limited to deadlocks).</doc>
|
|
<source-position filename="gthread.h" line="168"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="mutex" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23048">a #GMutex</doc>
|
|
<type name="Mutex" c:type="GMutex*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="trylock" c:identifier="g_mutex_trylock">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23061">Tries to lock @mutex. If @mutex is already locked by another thread,
|
|
it immediately returns %FALSE. Otherwise it locks @mutex and returns
|
|
%TRUE.
|
|
|
|
#GMutex is neither guaranteed to be recursive nor to be
|
|
non-recursive. As such, calling g_mutex_lock() on a #GMutex that has
|
|
already been locked by the same thread results in undefined behaviour
|
|
(including but not limited to deadlocks or arbitrary return values).</doc>
|
|
<source-position filename="gthread.h" line="170"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23074">%TRUE if @mutex could be locked</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="mutex" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23063">a #GMutex</doc>
|
|
<type name="Mutex" c:type="GMutex*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="unlock" c:identifier="g_mutex_unlock">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23078">Unlocks @mutex. If another thread is blocked in a g_mutex_lock()
|
|
call for @mutex, it will become unblocked and can lock @mutex itself.
|
|
|
|
Calling g_mutex_unlock() on a mutex that is not locked by the
|
|
current thread leads to undefined behaviour.</doc>
|
|
<source-position filename="gthread.h" line="172"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="mutex" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23080">a #GMutex</doc>
|
|
<type name="Mutex" c:type="GMutex*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
</union>
|
|
<function-macro name="NODE_IS_LEAF" c:identifier="G_NODE_IS_LEAF" introspectable="0">
|
|
<doc xml:space="preserve" filename="gnode.h" line="87">Returns %TRUE if a #GNode is a leaf node.</doc>
|
|
<source-position filename="gnode.h" line="96"/>
|
|
<parameters>
|
|
<parameter name="node">
|
|
<doc xml:space="preserve" filename="gnode.h" line="89">a #GNode</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="NODE_IS_ROOT" c:identifier="G_NODE_IS_ROOT" introspectable="0">
|
|
<doc xml:space="preserve" filename="gnode.h" line="74">Returns %TRUE if a #GNode is the root of a tree.</doc>
|
|
<source-position filename="gnode.h" line="83"/>
|
|
<parameters>
|
|
<parameter name="node">
|
|
<doc xml:space="preserve" filename="gnode.h" line="76">a #GNode</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="N_ELEMENTS" c:identifier="G_N_ELEMENTS" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="4167">Determines the number of elements in an array. The array must be
|
|
declared so the compiler knows its size at compile-time; this
|
|
macro will not work on an array allocated on the heap, only static
|
|
arrays or arrays on the stack.</doc>
|
|
<source-position filename="gmacros.h" line="804"/>
|
|
<parameters>
|
|
<parameter name="arr">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="4169">the array</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<record name="Node" c:type="GNode">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1354">The #GNode struct represents one node in a [n-ary tree][glib-N-ary-Trees].</doc>
|
|
<source-position filename="gnode.h" line="72"/>
|
|
<field name="data" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1356">contains the actual data of the node.</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</field>
|
|
<field name="next" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1357">points to the node's next sibling (a sibling is another
|
|
#GNode with the same parent).</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</field>
|
|
<field name="prev" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1359">points to the node's previous sibling.</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</field>
|
|
<field name="parent" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1360">points to the parent of the #GNode, or is %NULL if the
|
|
#GNode is the root of the tree.</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</field>
|
|
<field name="children" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1362">points to the first child of the #GNode. The other
|
|
children are accessed by using the @next pointer of each
|
|
child.</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</field>
|
|
<method name="child_index" c:identifier="g_node_child_index">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23090">Gets the position of the first child of a #GNode
|
|
which contains the given data.</doc>
|
|
<source-position filename="gnode.h" line="261"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23098">the index of the child of @node which contains
|
|
@data, or -1 if the data is not found</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="node" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23092">a #GNode</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</instance-parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23093">the data to find</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="child_position" c:identifier="g_node_child_position">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23103">Gets the position of a #GNode with respect to its siblings.
|
|
@child must be a child of @node. The first child is numbered 0,
|
|
the second 1, and so on.</doc>
|
|
<source-position filename="gnode.h" line="258"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23112">the position of @child with respect to its siblings</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="node" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23105">a #GNode</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</instance-parameter>
|
|
<parameter name="child" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23106">a child of @node</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="children_foreach" c:identifier="g_node_children_foreach" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23116">Calls a function for each of the children of a #GNode. Note that it
|
|
doesn't descend beneath the child nodes. @func must not do anything
|
|
that would modify the structure of the tree.</doc>
|
|
<source-position filename="gnode.h" line="240"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="node" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23118">a #GNode</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</instance-parameter>
|
|
<parameter name="flags" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23119">which types of children are to be visited, one of
|
|
%G_TRAVERSE_ALL, %G_TRAVERSE_LEAVES and %G_TRAVERSE_NON_LEAVES</doc>
|
|
<type name="TraverseFlags" c:type="GTraverseFlags"/>
|
|
</parameter>
|
|
<parameter name="func" transfer-ownership="none" closure="2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23121">the function to call for each visited node</doc>
|
|
<type name="NodeForeachFunc" c:type="GNodeForeachFunc"/>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23122">user data to pass to the function</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="copy" c:identifier="g_node_copy" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23130">Recursively copies a #GNode (but does not deep-copy the data inside the
|
|
nodes, see g_node_copy_deep() if you need that).</doc>
|
|
<source-position filename="gnode.h" line="109"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23137">a new #GNode containing the same data pointers</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="node" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23132">a #GNode</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="copy_deep" c:identifier="g_node_copy_deep" version="2.4" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23141">Recursively copies a #GNode and its data.</doc>
|
|
<source-position filename="gnode.h" line="105"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23150">a new #GNode containing copies of the data in @node.</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="node" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23143">a #GNode</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</instance-parameter>
|
|
<parameter name="copy_func" transfer-ownership="none" closure="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23144">the function which is called to copy the data inside each node,
|
|
or %NULL to use the original data.</doc>
|
|
<type name="CopyFunc" c:type="GCopyFunc"/>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23146">data to pass to @copy_func</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="depth" c:identifier="g_node_depth">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23155">Gets the depth of a #GNode.
|
|
|
|
If @node is %NULL the depth is 0. The root node has a depth of 1.
|
|
For the children of the root node the depth is 2. And so on.</doc>
|
|
<source-position filename="gnode.h" line="134"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23164">the depth of the #GNode</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="node" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23157">a #GNode</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="destroy" c:identifier="g_node_destroy">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23168">Removes @root and its children from the tree, freeing any memory
|
|
allocated.</doc>
|
|
<source-position filename="gnode.h" line="101"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="root" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23170">the root of the tree/subtree to destroy</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="find" c:identifier="g_node_find" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23177">Finds a #GNode in a tree.</doc>
|
|
<source-position filename="gnode.h" line="136"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23188">the found #GNode, or %NULL if the data is not found</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="root" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23179">the root #GNode of the tree to search</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</instance-parameter>
|
|
<parameter name="order" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23180">the order in which nodes are visited - %G_IN_ORDER,
|
|
%G_PRE_ORDER, %G_POST_ORDER, or %G_LEVEL_ORDER</doc>
|
|
<type name="TraverseType" c:type="GTraverseType"/>
|
|
</parameter>
|
|
<parameter name="flags" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23182">which types of children are to be searched, one of
|
|
%G_TRAVERSE_ALL, %G_TRAVERSE_LEAVES and %G_TRAVERSE_NON_LEAVES</doc>
|
|
<type name="TraverseFlags" c:type="GTraverseFlags"/>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23184">the data to find</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="find_child" c:identifier="g_node_find_child" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23192">Finds the first child of a #GNode with the given data.</doc>
|
|
<source-position filename="gnode.h" line="254"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23201">the found child #GNode, or %NULL if the data is not found</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="node" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23194">a #GNode</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</instance-parameter>
|
|
<parameter name="flags" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23195">which types of children are to be searched, one of
|
|
%G_TRAVERSE_ALL, %G_TRAVERSE_LEAVES and %G_TRAVERSE_NON_LEAVES</doc>
|
|
<type name="TraverseFlags" c:type="GTraverseFlags"/>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23197">the data to find</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="first_sibling" c:identifier="g_node_first_sibling" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23205">Gets the first sibling of a #GNode.
|
|
This could possibly be the node itself.</doc>
|
|
<source-position filename="gnode.h" line="265"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23212">the first sibling of @node</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="node" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23207">a #GNode</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_root" c:identifier="g_node_get_root" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23216">Gets the root of a tree.</doc>
|
|
<source-position filename="gnode.h" line="129"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23222">the root of the tree</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="node" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23218">a #GNode</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="insert" c:identifier="g_node_insert" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23226">Inserts a #GNode beneath the parent at the given position.</doc>
|
|
<source-position filename="gnode.h" line="111"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23235">the inserted #GNode</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="parent" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23228">the #GNode to place @node under</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</instance-parameter>
|
|
<parameter name="position" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23229">the position to place @node at, with respect to its siblings
|
|
If position is -1, @node is inserted as the last child of @parent</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="node" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23231">the #GNode to insert</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="insert_after" c:identifier="g_node_insert_after" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23239">Inserts a #GNode beneath the parent after the given sibling.</doc>
|
|
<source-position filename="gnode.h" line="119"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23248">the inserted #GNode</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="parent" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23241">the #GNode to place @node under</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</instance-parameter>
|
|
<parameter name="sibling" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23242">the sibling #GNode to place @node after.
|
|
If sibling is %NULL, the node is inserted as the first child of @parent.</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</parameter>
|
|
<parameter name="node" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23244">the #GNode to insert</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="insert_before" c:identifier="g_node_insert_before" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23252">Inserts a #GNode beneath the parent before the given sibling.</doc>
|
|
<source-position filename="gnode.h" line="115"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23261">the inserted #GNode</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="parent" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23254">the #GNode to place @node under</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</instance-parameter>
|
|
<parameter name="sibling" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23255">the sibling #GNode to place @node before.
|
|
If sibling is %NULL, the node is inserted as the last child of @parent.</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</parameter>
|
|
<parameter name="node" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23257">the #GNode to insert</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="is_ancestor" c:identifier="g_node_is_ancestor">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23265">Returns %TRUE if @node is an ancestor of @descendant.
|
|
This is true if node is the parent of @descendant,
|
|
or if node is the grandparent of @descendant etc.</doc>
|
|
<source-position filename="gnode.h" line="131"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23274">%TRUE if @node is an ancestor of @descendant</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="node" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23267">a #GNode</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</instance-parameter>
|
|
<parameter name="descendant" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23268">a #GNode</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="last_child" c:identifier="g_node_last_child" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23278">Gets the last child of a #GNode.</doc>
|
|
<source-position filename="gnode.h" line="252"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23284">the last child of @node, or %NULL if @node has no children</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="node" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23280">a #GNode (must not be %NULL)</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="last_sibling" c:identifier="g_node_last_sibling" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23288">Gets the last sibling of a #GNode.
|
|
This could possibly be the node itself.</doc>
|
|
<source-position filename="gnode.h" line="267"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23295">the last sibling of @node</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="node" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23290">a #GNode</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="max_height" c:identifier="g_node_max_height">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23299">Gets the maximum height of all branches beneath a #GNode.
|
|
This is the maximum distance from the #GNode to all leaf nodes.
|
|
|
|
If @root is %NULL, 0 is returned. If @root has no children,
|
|
1 is returned. If @root has children, 2 is returned. And so on.</doc>
|
|
<source-position filename="gnode.h" line="237"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23309">the maximum height of the tree beneath @root</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="root" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23301">a #GNode</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="n_children" c:identifier="g_node_n_children">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23313">Gets the number of children of a #GNode.</doc>
|
|
<source-position filename="gnode.h" line="247"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23319">the number of children of @node</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="node" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23315">a #GNode</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="n_nodes" c:identifier="g_node_n_nodes">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23323">Gets the number of nodes in a tree.</doc>
|
|
<source-position filename="gnode.h" line="126"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23331">the number of nodes in the tree</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="root" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23325">a #GNode</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</instance-parameter>
|
|
<parameter name="flags" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23326">which types of children are to be counted, one of
|
|
%G_TRAVERSE_ALL, %G_TRAVERSE_LEAVES and %G_TRAVERSE_NON_LEAVES</doc>
|
|
<type name="TraverseFlags" c:type="GTraverseFlags"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="nth_child" c:identifier="g_node_nth_child" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23346">Gets a child of a #GNode, using the given index.
|
|
The first child is at index 0. If the index is
|
|
too big, %NULL is returned.</doc>
|
|
<source-position filename="gnode.h" line="249"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23355">the child of @node at index @n</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="node" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23348">a #GNode</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</instance-parameter>
|
|
<parameter name="n" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23349">the index of the desired child</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="prepend" c:identifier="g_node_prepend" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23359">Inserts a #GNode as the first child of the given parent.</doc>
|
|
<source-position filename="gnode.h" line="123"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23366">the inserted #GNode</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="parent" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23361">the #GNode to place the new #GNode under</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</instance-parameter>
|
|
<parameter name="node" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23362">the #GNode to insert</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="reverse_children" c:identifier="g_node_reverse_children">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23370">Reverses the order of the children of a #GNode.
|
|
(It doesn't change the order of the grandchildren.)</doc>
|
|
<source-position filename="gnode.h" line="245"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="node" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23372">a #GNode.</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="traverse" c:identifier="g_node_traverse" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23379">Traverses a tree starting at the given root #GNode.
|
|
It calls the given function for each node visited.
|
|
The traversal can be halted at any point by returning %TRUE from @func.
|
|
@func must not do anything that would modify the structure of the tree.</doc>
|
|
<source-position filename="gnode.h" line="224"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="root" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23381">the root #GNode of the tree to traverse</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</instance-parameter>
|
|
<parameter name="order" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23382">the order in which nodes are visited - %G_IN_ORDER,
|
|
%G_PRE_ORDER, %G_POST_ORDER, or %G_LEVEL_ORDER.</doc>
|
|
<type name="TraverseType" c:type="GTraverseType"/>
|
|
</parameter>
|
|
<parameter name="flags" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23384">which types of children are to be visited, one of
|
|
%G_TRAVERSE_ALL, %G_TRAVERSE_LEAVES and %G_TRAVERSE_NON_LEAVES</doc>
|
|
<type name="TraverseFlags" c:type="GTraverseFlags"/>
|
|
</parameter>
|
|
<parameter name="max_depth" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23386">the maximum depth of the traversal. Nodes below this
|
|
depth will not be visited. If max_depth is -1 all nodes in
|
|
the tree are visited. If depth is 1, only the root is visited.
|
|
If depth is 2, the root and its children are visited. And so on.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="func" transfer-ownership="none" closure="4">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23390">the function to call for each visited #GNode</doc>
|
|
<type name="NodeTraverseFunc" c:type="GNodeTraverseFunc"/>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23391">user data to pass to the function</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="unlink" c:identifier="g_node_unlink">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23400">Unlinks a #GNode from a tree, resulting in two separate trees.</doc>
|
|
<source-position filename="gnode.h" line="103"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="node" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23402">the #GNode to unlink, which becomes the root of a new tree</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<function name="new" c:identifier="g_node_new" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23335">Creates a new #GNode containing the given data.
|
|
Used to create the first node in a tree.</doc>
|
|
<source-position filename="gnode.h" line="99"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23342">a new #GNode</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23337">the data of the new node</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
</record>
|
|
<callback name="NodeForeachFunc" c:type="GNodeForeachFunc">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1370">Specifies the type of function passed to g_node_children_foreach().
|
|
The function is called with each child node, together with the user
|
|
data passed to g_node_children_foreach().</doc>
|
|
<source-position filename="gnode.h" line="60"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="node" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1372">a #GNode.</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1373">user data passed to g_node_children_foreach().</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
<callback name="NodeTraverseFunc" c:type="GNodeTraverseFunc">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1381">Specifies the type of function passed to g_node_traverse(). The
|
|
function is called with each of the nodes visited, together with the
|
|
user data passed to g_node_traverse(). If the function returns
|
|
%TRUE, then the traversal is stopped.</doc>
|
|
<source-position filename="gnode.h" line="58"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1391">%TRUE to stop the traversal.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="node" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1383">a #GNode.</doc>
|
|
<type name="Node" c:type="GNode*"/>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1384">user data passed to g_node_traverse().</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
<enumeration name="NormalizeMode" c:type="GNormalizeMode">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="873">Defines how a Unicode string is transformed in a canonical
|
|
form, standardizing such issues as whether a character with
|
|
an accent is represented as a base character and combining
|
|
accent or as a single precomposed character. Unicode strings
|
|
should generally be normalized before comparing them.</doc>
|
|
<source-position filename="gunicode.h" line="906"/>
|
|
<member name="default" value="0" c:identifier="G_NORMALIZE_DEFAULT">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="875">standardize differences that do not affect the
|
|
text content, such as the above-mentioned accent representation</doc>
|
|
</member>
|
|
<member name="nfd" value="0" c:identifier="G_NORMALIZE_NFD">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="877">another name for %G_NORMALIZE_DEFAULT</doc>
|
|
</member>
|
|
<member name="default_compose" value="1" c:identifier="G_NORMALIZE_DEFAULT_COMPOSE">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="878">like %G_NORMALIZE_DEFAULT, but with
|
|
composed forms rather than a maximally decomposed form</doc>
|
|
</member>
|
|
<member name="nfc" value="1" c:identifier="G_NORMALIZE_NFC">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="880">another name for %G_NORMALIZE_DEFAULT_COMPOSE</doc>
|
|
</member>
|
|
<member name="all" value="2" c:identifier="G_NORMALIZE_ALL">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="881">beyond %G_NORMALIZE_DEFAULT also standardize the
|
|
"compatibility" characters in Unicode, such as SUPERSCRIPT THREE
|
|
to the standard forms (in this case DIGIT THREE). Formatting
|
|
information may be lost but for most text operations such
|
|
characters should be considered the same</doc>
|
|
</member>
|
|
<member name="nfkd" value="2" c:identifier="G_NORMALIZE_NFKD">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="886">another name for %G_NORMALIZE_ALL</doc>
|
|
</member>
|
|
<member name="all_compose" value="3" c:identifier="G_NORMALIZE_ALL_COMPOSE">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="887">like %G_NORMALIZE_ALL, but with composed
|
|
forms rather than a maximally decomposed form</doc>
|
|
</member>
|
|
<member name="nfkc" value="3" c:identifier="G_NORMALIZE_NFKC">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="889">another name for %G_NORMALIZE_ALL_COMPOSE</doc>
|
|
</member>
|
|
</enumeration>
|
|
<enumeration name="NumberParserError" version="2.54" c:type="GNumberParserError" glib:error-domain="g-number-parser-error-quark">
|
|
<doc xml:space="preserve" filename="gstrfuncs.h" line="316">Error codes returned by functions converting a string to a number.</doc>
|
|
<source-position filename="gstrfuncs.h" line="329"/>
|
|
<member name="invalid" value="0" c:identifier="G_NUMBER_PARSER_ERROR_INVALID">
|
|
<doc xml:space="preserve" filename="gstrfuncs.h" line="318">String was not a valid number.</doc>
|
|
</member>
|
|
<member name="out_of_bounds" value="1" c:identifier="G_NUMBER_PARSER_ERROR_OUT_OF_BOUNDS">
|
|
<doc xml:space="preserve" filename="gstrfuncs.h" line="319">String was a number, but out of bounds.</doc>
|
|
</member>
|
|
</enumeration>
|
|
<constant name="OPTION_REMAINING" value="" c:type="G_OPTION_REMAINING" version="2.6">
|
|
<doc xml:space="preserve" filename="goption.h" line="271">If a long option in the main group has this name, it is not treated as a
|
|
regular option. Instead it collects all non-option arguments which would
|
|
otherwise be left in `argv`. The option must be of type
|
|
%G_OPTION_ARG_CALLBACK, %G_OPTION_ARG_STRING_ARRAY
|
|
or %G_OPTION_ARG_FILENAME_ARRAY.
|
|
|
|
|
|
Using #G_OPTION_REMAINING instead of simply scanning `argv`
|
|
for leftover arguments has the advantage that GOption takes care of
|
|
necessary encoding conversions for strings or filenames.</doc>
|
|
<source-position filename="goption.h" line="287"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<record name="Once" c:type="GOnce" version="2.4">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1395">A #GOnce struct controls a one-time initialization function. Any
|
|
one-time initialization function must have its own unique #GOnce
|
|
struct.</doc>
|
|
<source-position filename="gthread.h" line="107"/>
|
|
<field name="status" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1397">the status of the #GOnce</doc>
|
|
<type name="OnceStatus" c:type="volatile GOnceStatus"/>
|
|
</field>
|
|
<field name="retval" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1398">the value returned by the call to the function, if @status
|
|
is %G_ONCE_STATUS_READY</doc>
|
|
<type name="gpointer" c:type="volatile gpointer"/>
|
|
</field>
|
|
<method name="impl" c:identifier="g_once_impl" introspectable="0">
|
|
<source-position filename="gthread.h" line="228"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="once" transfer-ownership="none">
|
|
<type name="Once" c:type="GOnce*"/>
|
|
</instance-parameter>
|
|
<parameter name="func" transfer-ownership="none">
|
|
<type name="ThreadFunc" c:type="GThreadFunc"/>
|
|
</parameter>
|
|
<parameter name="arg" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<function name="init_enter" c:identifier="g_once_init_enter" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23550">Function to be called when starting a critical initialization
|
|
section. The argument @location must point to a static
|
|
0-initialized variable that will be set to a value other than 0 at
|
|
the end of the initialization section. In combination with
|
|
g_once_init_leave() and the unique address @value_location, it can
|
|
be ensured that an initialization section will be executed only once
|
|
during a program's life time, and that concurrent threads are
|
|
blocked until initialization completed. To be used in constructs
|
|
like this:
|
|
|
|
|[<!-- language="C" -->
|
|
static gsize initialization_value = 0;
|
|
|
|
if (g_once_init_enter (&initialization_value))
|
|
{
|
|
gsize setup_value = 42; // initialization code here
|
|
|
|
g_once_init_leave (&initialization_value, setup_value);
|
|
}
|
|
|
|
// use initialization_value here
|
|
]|</doc>
|
|
<source-position filename="gthread.h" line="232"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23578">%TRUE if the initialization section should be entered,
|
|
%FALSE and blocks otherwise</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="location" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23552">location of a static initializable variable
|
|
containing 0</doc>
|
|
<type name="gpointer" c:type="void*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="init_leave" c:identifier="g_once_init_leave" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23584">Counterpart to g_once_init_enter(). Expects a location of a static
|
|
0-initialized initialization variable, and an initialization value
|
|
other than 0. Sets the variable to the initialization value, and
|
|
releases concurrent threads blocking in g_once_init_enter() on this
|
|
initialization variable.</doc>
|
|
<source-position filename="gthread.h" line="234"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="location" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23586">location of a static initializable variable
|
|
containing 0</doc>
|
|
<type name="gpointer" c:type="void*"/>
|
|
</parameter>
|
|
<parameter name="result" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23588">new non-0 value for *@value_location</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
</record>
|
|
<enumeration name="OnceStatus" version="2.4" c:type="GOnceStatus">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1409">The possible statuses of a one-time initialization function
|
|
controlled by a #GOnce struct.</doc>
|
|
<source-position filename="gthread.h" line="100"/>
|
|
<member name="notcalled" value="0" c:identifier="G_ONCE_STATUS_NOTCALLED">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1411">the function has not been called yet.</doc>
|
|
</member>
|
|
<member name="progress" value="1" c:identifier="G_ONCE_STATUS_PROGRESS">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1412">the function call is currently in progress.</doc>
|
|
</member>
|
|
<member name="ready" value="2" c:identifier="G_ONCE_STATUS_READY">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1413">the function has been called.</doc>
|
|
</member>
|
|
</enumeration>
|
|
<enumeration name="OptionArg" c:type="GOptionArg">
|
|
<doc xml:space="preserve" filename="goption.h" line="93">The #GOptionArg enum values determine which type of extra argument the
|
|
options expect to find. If an option expects an extra argument, it can
|
|
be specified in several ways; with a short option: `-x arg`, with a long
|
|
option: `--name arg` or combined in a single argument: `--name=arg`.</doc>
|
|
<source-position filename="goption.h" line="130"/>
|
|
<member name="none" value="0" c:identifier="G_OPTION_ARG_NONE">
|
|
<doc xml:space="preserve" filename="goption.h" line="95">No extra argument. This is useful for simple flags.</doc>
|
|
</member>
|
|
<member name="string" value="1" c:identifier="G_OPTION_ARG_STRING">
|
|
<doc xml:space="preserve" filename="goption.h" line="96">The option takes a UTF-8 string argument.</doc>
|
|
</member>
|
|
<member name="int" value="2" c:identifier="G_OPTION_ARG_INT">
|
|
<doc xml:space="preserve" filename="goption.h" line="97">The option takes an integer argument.</doc>
|
|
</member>
|
|
<member name="callback" value="3" c:identifier="G_OPTION_ARG_CALLBACK">
|
|
<doc xml:space="preserve" filename="goption.h" line="98">The option provides a callback (of type
|
|
#GOptionArgFunc) to parse the extra argument.</doc>
|
|
</member>
|
|
<member name="filename" value="4" c:identifier="G_OPTION_ARG_FILENAME">
|
|
<doc xml:space="preserve" filename="goption.h" line="100">The option takes a filename as argument, which will
|
|
be in the GLib filename encoding rather than UTF-8.</doc>
|
|
</member>
|
|
<member name="string_array" value="5" c:identifier="G_OPTION_ARG_STRING_ARRAY">
|
|
<doc xml:space="preserve" filename="goption.h" line="102">The option takes a string argument, multiple
|
|
uses of the option are collected into an array of strings.</doc>
|
|
</member>
|
|
<member name="filename_array" value="6" c:identifier="G_OPTION_ARG_FILENAME_ARRAY">
|
|
<doc xml:space="preserve" filename="goption.h" line="104">The option takes a filename as argument,
|
|
multiple uses of the option are collected into an array of strings.</doc>
|
|
</member>
|
|
<member name="double" value="7" c:identifier="G_OPTION_ARG_DOUBLE">
|
|
<doc xml:space="preserve" filename="goption.h" line="106">The option takes a double argument. The argument
|
|
can be formatted either for the user's locale or for the "C" locale.
|
|
Since 2.12</doc>
|
|
</member>
|
|
<member name="int64" value="8" c:identifier="G_OPTION_ARG_INT64">
|
|
<doc xml:space="preserve" filename="goption.h" line="109">The option takes a 64-bit integer. Like
|
|
%G_OPTION_ARG_INT but for larger numbers. The number can be in
|
|
decimal base, or in hexadecimal (when prefixed with `0x`, for
|
|
example, `0xffffffff`). Since 2.12</doc>
|
|
</member>
|
|
</enumeration>
|
|
<callback name="OptionArgFunc" c:type="GOptionArgFunc" throws="1">
|
|
<doc xml:space="preserve" filename="goption.h" line="132">The type of function to be passed as callback for %G_OPTION_ARG_CALLBACK
|
|
options.</doc>
|
|
<source-position filename="goption.h" line="149"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="goption.h" line="146">%TRUE if the option was successfully parsed, %FALSE if an error
|
|
occurred, in which case @error should be set with g_set_error()</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="option_name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="goption.h" line="134">The name of the option being parsed. This will be either a
|
|
single dash followed by a single letter (for a short name) or two dashes
|
|
followed by a long option name.</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="goption.h" line="137">The value to be parsed.</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="goption.h" line="138">User data added to the #GOptionGroup containing the option when it
|
|
was created with g_option_group_new()</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
<record name="OptionContext" c:type="GOptionContext" disguised="1">
|
|
<doc xml:space="preserve" filename="goption.h" line="31">A `GOptionContext` struct defines which options
|
|
are accepted by the commandline option parser. The struct has only private
|
|
fields and should not be directly accessed.</doc>
|
|
<source-position filename="goption.h" line="38"/>
|
|
<method name="add_group" c:identifier="g_option_context_add_group" version="2.6">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23633">Adds a #GOptionGroup to the @context, so that parsing with @context
|
|
will recognize the options in the group. Note that this will take
|
|
ownership of the @group and thus the @group should not be freed.</doc>
|
|
<source-position filename="goption.h" line="343"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23635">a #GOptionContext</doc>
|
|
<type name="OptionContext" c:type="GOptionContext*"/>
|
|
</instance-parameter>
|
|
<parameter name="group" transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23636">the group to add</doc>
|
|
<type name="OptionGroup" c:type="GOptionGroup*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="add_main_entries" c:identifier="g_option_context_add_main_entries" version="2.6">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23646">A convenience function which creates a main group if it doesn't
|
|
exist, adds the @entries to it and sets the translation domain.</doc>
|
|
<source-position filename="goption.h" line="321"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23648">a #GOptionContext</doc>
|
|
<type name="OptionContext" c:type="GOptionContext*"/>
|
|
</instance-parameter>
|
|
<parameter name="entries" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23649">a %NULL-terminated array of #GOptionEntrys</doc>
|
|
<type name="OptionEntry" c:type="const GOptionEntry*"/>
|
|
</parameter>
|
|
<parameter name="translation_domain" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23650">a translation domain to use for translating
|
|
the `--help` output for the options in @entries
|
|
with gettext(), or %NULL</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="free" c:identifier="g_option_context_free" version="2.6">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23661">Frees context and all the groups which have been
|
|
added to it.
|
|
|
|
Please note that parsed arguments need to be freed separately (see
|
|
#GOptionEntry).</doc>
|
|
<source-position filename="goption.h" line="302"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23663">a #GOptionContext</doc>
|
|
<type name="OptionContext" c:type="GOptionContext*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_description" c:identifier="g_option_context_get_description" version="2.12">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23675">Returns the description. See g_option_context_set_description().</doc>
|
|
<source-position filename="goption.h" line="300"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23681">the description</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23677">a #GOptionContext</doc>
|
|
<type name="OptionContext" c:type="GOptionContext*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_help" c:identifier="g_option_context_get_help" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23686">Returns a formatted, translated help text for the given context.
|
|
To obtain the text produced by `--help`, call
|
|
`g_option_context_get_help (context, TRUE, NULL)`.
|
|
To obtain the text produced by `--help-all`, call
|
|
`g_option_context_get_help (context, FALSE, NULL)`.
|
|
To obtain the help text for an option group, call
|
|
`g_option_context_get_help (context, FALSE, group)`.</doc>
|
|
<source-position filename="goption.h" line="351"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23700">A newly allocated string containing the help text</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23688">a #GOptionContext</doc>
|
|
<type name="OptionContext" c:type="GOptionContext*"/>
|
|
</instance-parameter>
|
|
<parameter name="main_help" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23689">if %TRUE, only include the main group</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
<parameter name="group" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23690">the #GOptionGroup to create help for, or %NULL</doc>
|
|
<type name="OptionGroup" c:type="GOptionGroup*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_help_enabled" c:identifier="g_option_context_get_help_enabled" version="2.6">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23705">Returns whether automatic `--help` generation
|
|
is turned on for @context. See g_option_context_set_help_enabled().</doc>
|
|
<source-position filename="goption.h" line="307"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23712">%TRUE if automatic help generation is turned on.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23707">a #GOptionContext</doc>
|
|
<type name="OptionContext" c:type="GOptionContext*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_ignore_unknown_options" c:identifier="g_option_context_get_ignore_unknown_options" version="2.6">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23717">Returns whether unknown options are ignored or not. See
|
|
g_option_context_set_ignore_unknown_options().</doc>
|
|
<source-position filename="goption.h" line="312"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23724">%TRUE if unknown options are ignored.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23719">a #GOptionContext</doc>
|
|
<type name="OptionContext" c:type="GOptionContext*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_main_group" c:identifier="g_option_context_get_main_group" version="2.6">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23729">Returns a pointer to the main group of @context.</doc>
|
|
<source-position filename="goption.h" line="349"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23735">the main group of @context, or %NULL if
|
|
@context doesn't have a main group. Note that group belongs to
|
|
@context and should not be modified or freed.</doc>
|
|
<type name="OptionGroup" c:type="GOptionGroup*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23731">a #GOptionContext</doc>
|
|
<type name="OptionContext" c:type="GOptionContext*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_strict_posix" c:identifier="g_option_context_get_strict_posix" version="2.44">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23742">Returns whether strict POSIX code is enabled.
|
|
|
|
See g_option_context_set_strict_posix() for more information.</doc>
|
|
<source-position filename="goption.h" line="318"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23750">%TRUE if strict POSIX is enabled, %FALSE otherwise.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23744">a #GOptionContext</doc>
|
|
<type name="OptionContext" c:type="GOptionContext*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_summary" c:identifier="g_option_context_get_summary" version="2.12">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23755">Returns the summary. See g_option_context_set_summary().</doc>
|
|
<source-position filename="goption.h" line="295"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23761">the summary</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23757">a #GOptionContext</doc>
|
|
<type name="OptionContext" c:type="GOptionContext*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="parse" c:identifier="g_option_context_parse" version="2.6" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23798">Parses the command line arguments, recognizing options
|
|
which have been added to @context. A side-effect of
|
|
calling this function is that g_set_prgname() will be
|
|
called.
|
|
|
|
If the parsing is successful, any parsed arguments are
|
|
removed from the array and @argc and @argv are updated
|
|
accordingly. A '--' option is stripped from @argv
|
|
unless there are unparsed options before and after it,
|
|
or some of the options after it start with '-'. In case
|
|
of an error, @argc and @argv are left unmodified.
|
|
|
|
If automatic `--help` support is enabled
|
|
(see g_option_context_set_help_enabled()), and the
|
|
@argv array contains one of the recognized help options,
|
|
this function will produce help output to stdout and
|
|
call `exit (0)`.
|
|
|
|
Note that function depends on the [current locale][setlocale] for
|
|
automatic character set conversion of string and filename
|
|
arguments.</doc>
|
|
<source-position filename="goption.h" line="325"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23827">%TRUE if the parsing was successful,
|
|
%FALSE if an error occurred</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23800">a #GOptionContext</doc>
|
|
<type name="OptionContext" c:type="GOptionContext*"/>
|
|
</instance-parameter>
|
|
<parameter name="argc" direction="inout" caller-allocates="0" transfer-ownership="full" optional="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23801">a pointer to the number of command line arguments</doc>
|
|
<type name="gint" c:type="gint*"/>
|
|
</parameter>
|
|
<parameter name="argv" direction="inout" caller-allocates="0" transfer-ownership="full" optional="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23802">a pointer to the array of command line arguments</doc>
|
|
<array length="0" zero-terminated="0" c:type="gchar***">
|
|
<type name="utf8" c:type="gchar**"/>
|
|
</array>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="parse_strv" c:identifier="g_option_context_parse_strv" version="2.40" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23833">Parses the command line arguments.
|
|
|
|
This function is similar to g_option_context_parse() except that it
|
|
respects the normal memory rules when dealing with a strv instead of
|
|
assuming that the passed-in array is the argv of the main function.
|
|
|
|
In particular, strings that are removed from the arguments list will
|
|
be freed using g_free().
|
|
|
|
On Windows, the strings are expected to be in UTF-8. This is in
|
|
contrast to g_option_context_parse() which expects them to be in the
|
|
system codepage, which is how they are passed as @argv to main().
|
|
See g_win32_get_command_line() for a solution.
|
|
|
|
This function is useful if you are trying to use #GOptionContext with
|
|
#GApplication.</doc>
|
|
<source-position filename="goption.h" line="330"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23857">%TRUE if the parsing was successful,
|
|
%FALSE if an error occurred</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23835">a #GOptionContext</doc>
|
|
<type name="OptionContext" c:type="GOptionContext*"/>
|
|
</instance-parameter>
|
|
<parameter name="arguments" direction="inout" caller-allocates="0" transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23836">a pointer to the
|
|
command line arguments (which must be in UTF-8 on Windows)</doc>
|
|
<array c:type="gchar***">
|
|
<type name="utf8" c:type="gchar**"/>
|
|
</array>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_description" c:identifier="g_option_context_set_description" version="2.12">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23863">Adds a string to be displayed in `--help` output after the list
|
|
of options. This text often includes a bug reporting address.
|
|
|
|
Note that the summary is translated (see
|
|
g_option_context_set_translate_func()).</doc>
|
|
<source-position filename="goption.h" line="297"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23865">a #GOptionContext</doc>
|
|
<type name="OptionContext" c:type="GOptionContext*"/>
|
|
</instance-parameter>
|
|
<parameter name="description" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23866">a string to be shown in `--help` output
|
|
after the list of options, or %NULL</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_help_enabled" c:identifier="g_option_context_set_help_enabled" version="2.6">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23879">Enables or disables automatic generation of `--help` output.
|
|
By default, g_option_context_parse() recognizes `--help`, `-h`,
|
|
`-?`, `--help-all` and `--help-groupname` and creates suitable
|
|
output to stdout.</doc>
|
|
<source-position filename="goption.h" line="304"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23881">a #GOptionContext</doc>
|
|
<type name="OptionContext" c:type="GOptionContext*"/>
|
|
</instance-parameter>
|
|
<parameter name="help_enabled" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23882">%TRUE to enable `--help`, %FALSE to disable it</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_ignore_unknown_options" c:identifier="g_option_context_set_ignore_unknown_options" version="2.6">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23893">Sets whether to ignore unknown options or not. If an argument is
|
|
ignored, it is left in the @argv array after parsing. By default,
|
|
g_option_context_parse() treats unknown options as error.
|
|
|
|
This setting does not affect non-option arguments (i.e. arguments
|
|
which don't start with a dash). But note that GOption cannot reliably
|
|
determine whether a non-option belongs to a preceding unknown option.</doc>
|
|
<source-position filename="goption.h" line="309"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23895">a #GOptionContext</doc>
|
|
<type name="OptionContext" c:type="GOptionContext*"/>
|
|
</instance-parameter>
|
|
<parameter name="ignore_unknown" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23896">%TRUE to ignore unknown options, %FALSE to produce
|
|
an error when unknown options are met</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_main_group" c:identifier="g_option_context_set_main_group" version="2.6">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23911">Sets a #GOptionGroup as main group of the @context.
|
|
This has the same effect as calling g_option_context_add_group(),
|
|
the only difference is that the options in the main group are
|
|
treated differently when generating `--help` output.</doc>
|
|
<source-position filename="goption.h" line="346"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23913">a #GOptionContext</doc>
|
|
<type name="OptionContext" c:type="GOptionContext*"/>
|
|
</instance-parameter>
|
|
<parameter name="group" transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23914">the group to set as main group</doc>
|
|
<type name="OptionGroup" c:type="GOptionGroup*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_strict_posix" c:identifier="g_option_context_set_strict_posix" version="2.44">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23925">Sets strict POSIX mode.
|
|
|
|
By default, this mode is disabled.
|
|
|
|
In strict POSIX mode, the first non-argument parameter encountered
|
|
(eg: filename) terminates argument processing. Remaining arguments
|
|
are treated as non-options and are not attempted to be parsed.
|
|
|
|
If strict POSIX mode is disabled then parsing is done in the GNU way
|
|
where option arguments can be freely mixed with non-options.
|
|
|
|
As an example, consider "ls foo -l". With GNU style parsing, this
|
|
will list "foo" in long mode. In strict POSIX style, this will list
|
|
the files named "foo" and "-l".
|
|
|
|
It may be useful to force strict POSIX mode when creating "verb
|
|
style" command line tools. For example, the "gsettings" command line
|
|
tool supports the global option "--schemadir" as well as many
|
|
subcommands ("get", "set", etc.) which each have their own set of
|
|
arguments. Using strict POSIX mode will allow parsing the global
|
|
options up to the verb name while leaving the remaining options to be
|
|
parsed by the relevant subcommand (which can be determined by
|
|
examining the verb name, which should be present in argv[1] after
|
|
parsing).</doc>
|
|
<source-position filename="goption.h" line="315"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23927">a #GOptionContext</doc>
|
|
<type name="OptionContext" c:type="GOptionContext*"/>
|
|
</instance-parameter>
|
|
<parameter name="strict_posix" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23928">the new value</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_summary" c:identifier="g_option_context_set_summary" version="2.12">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23959">Adds a string to be displayed in `--help` output before the list
|
|
of options. This is typically a summary of the program functionality.
|
|
|
|
Note that the summary is translated (see
|
|
g_option_context_set_translate_func() and
|
|
g_option_context_set_translation_domain()).</doc>
|
|
<source-position filename="goption.h" line="292"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23961">a #GOptionContext</doc>
|
|
<type name="OptionContext" c:type="GOptionContext*"/>
|
|
</instance-parameter>
|
|
<parameter name="summary" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23962">a string to be shown in `--help` output
|
|
before the list of options, or %NULL</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_translate_func" c:identifier="g_option_context_set_translate_func" version="2.12">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23976">Sets the function which is used to translate the contexts
|
|
user-visible strings, for `--help` output. If @func is %NULL,
|
|
strings are not translated.
|
|
|
|
Note that option groups have their own translation functions,
|
|
this function only affects the @parameter_string (see g_option_context_new()),
|
|
the summary (see g_option_context_set_summary()) and the description
|
|
(see g_option_context_set_description()).
|
|
|
|
If you are using gettext(), you only need to set the translation
|
|
domain, see g_option_context_set_translation_domain().</doc>
|
|
<source-position filename="goption.h" line="334"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23978">a #GOptionContext</doc>
|
|
<type name="OptionContext" c:type="GOptionContext*"/>
|
|
</instance-parameter>
|
|
<parameter name="func" transfer-ownership="none" nullable="1" allow-none="1" scope="notified" closure="1" destroy="2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23979">the #GTranslateFunc, or %NULL</doc>
|
|
<type name="TranslateFunc" c:type="GTranslateFunc"/>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23980">user data to pass to @func, or %NULL</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="destroy_notify" transfer-ownership="none" nullable="1" allow-none="1" scope="async">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23981">a function which gets called to free @data, or %NULL</doc>
|
|
<type name="DestroyNotify" c:type="GDestroyNotify"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_translation_domain" c:identifier="g_option_context_set_translation_domain" version="2.12">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23999">A convenience function to use gettext() for translating
|
|
user-visible strings.</doc>
|
|
<source-position filename="goption.h" line="339"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="context" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24001">a #GOptionContext</doc>
|
|
<type name="OptionContext" c:type="GOptionContext*"/>
|
|
</instance-parameter>
|
|
<parameter name="domain" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24002">the domain to use</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<function name="new" c:identifier="g_option_context_new" version="2.6" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23766">Creates a new option context.
|
|
|
|
The @parameter_string can serve multiple purposes. It can be used
|
|
to add descriptions for "rest" arguments, which are not parsed by
|
|
the #GOptionContext, typically something like "FILES" or
|
|
"FILE1 FILE2...". If you are using #G_OPTION_REMAINING for
|
|
collecting "rest" arguments, GLib handles this automatically by
|
|
using the @arg_description of the corresponding #GOptionEntry in
|
|
the usage summary.
|
|
|
|
Another usage is to give a short summary of the program
|
|
functionality, like " - frob the strings", which will be displayed
|
|
in the same line as the usage. For a longer description of the
|
|
program functionality that should be displayed as a paragraph
|
|
below the usage line, use g_option_context_set_summary().
|
|
|
|
Note that the @parameter_string is translated using the
|
|
function set with g_option_context_set_translate_func(), so
|
|
it should normally be passed untranslated.</doc>
|
|
<source-position filename="goption.h" line="290"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23792">a newly created #GOptionContext, which must be
|
|
freed with g_option_context_free() after use.</doc>
|
|
<type name="OptionContext" c:type="GOptionContext*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="parameter_string" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23768">a string which is displayed in
|
|
the first line of `--help` output, after the usage summary
|
|
`programname [OPTION...]`</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
</record>
|
|
<record name="OptionEntry" c:type="GOptionEntry">
|
|
<doc xml:space="preserve" filename="goption.h" line="216">A GOptionEntry struct defines a single option. To have an effect, they
|
|
must be added to a #GOptionGroup with g_option_context_add_main_entries()
|
|
or g_option_group_add_entries().</doc>
|
|
<source-position filename="goption.h" line="269"/>
|
|
<field name="long_name" writable="1">
|
|
<doc xml:space="preserve" filename="goption.h" line="218">The long name of an option can be used to specify it
|
|
in a commandline as `--long_name`. Every option must have a
|
|
long name. To resolve conflicts if multiple option groups contain
|
|
the same long name, it is also possible to specify the option as
|
|
`--groupname-long_name`.</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</field>
|
|
<field name="short_name" writable="1">
|
|
<doc xml:space="preserve" filename="goption.h" line="223">If an option has a short name, it can be specified
|
|
`-short_name` in a commandline. @short_name must be a printable
|
|
ASCII character different from '-', or zero if the option has no
|
|
short name.</doc>
|
|
<type name="gchar" c:type="gchar"/>
|
|
</field>
|
|
<field name="flags" writable="1">
|
|
<doc xml:space="preserve" filename="goption.h" line="227">Flags from #GOptionFlags</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</field>
|
|
<field name="arg" writable="1">
|
|
<doc xml:space="preserve" filename="goption.h" line="228">The type of the option, as a #GOptionArg</doc>
|
|
<type name="OptionArg" c:type="GOptionArg"/>
|
|
</field>
|
|
<field name="arg_data" writable="1">
|
|
<doc xml:space="preserve" filename="goption.h" line="229">If the @arg type is %G_OPTION_ARG_CALLBACK, then @arg_data
|
|
must point to a #GOptionArgFunc callback function, which will be
|
|
called to handle the extra argument. Otherwise, @arg_data is a
|
|
pointer to a location to store the value, the required type of
|
|
the location depends on the @arg type:
|
|
- %G_OPTION_ARG_NONE: %gboolean
|
|
- %G_OPTION_ARG_STRING: %gchar*
|
|
- %G_OPTION_ARG_INT: %gint
|
|
- %G_OPTION_ARG_FILENAME: %gchar*
|
|
- %G_OPTION_ARG_STRING_ARRAY: %gchar**
|
|
- %G_OPTION_ARG_FILENAME_ARRAY: %gchar**
|
|
- %G_OPTION_ARG_DOUBLE: %gdouble
|
|
If @arg type is %G_OPTION_ARG_STRING or %G_OPTION_ARG_FILENAME,
|
|
the location will contain a newly allocated string if the option
|
|
was given. That string needs to be freed by the callee using g_free().
|
|
Likewise if @arg type is %G_OPTION_ARG_STRING_ARRAY or
|
|
%G_OPTION_ARG_FILENAME_ARRAY, the data should be freed using g_strfreev().</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</field>
|
|
<field name="description" writable="1">
|
|
<doc xml:space="preserve" filename="goption.h" line="246">the description for the option in `--help`
|
|
output. The @description is translated using the @translate_func
|
|
of the group, see g_option_group_set_translation_domain().</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</field>
|
|
<field name="arg_description" writable="1">
|
|
<doc xml:space="preserve" filename="goption.h" line="249">The placeholder to use for the extra argument parsed
|
|
by the option in `--help` output. The @arg_description is translated
|
|
using the @translate_func of the group, see
|
|
g_option_group_set_translation_domain().</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</field>
|
|
</record>
|
|
<enumeration name="OptionError" c:type="GOptionError" glib:error-domain="g-option-error-quark">
|
|
<doc xml:space="preserve" filename="goption.h" line="196">Error codes returned by option parsing.</doc>
|
|
<source-position filename="goption.h" line="211"/>
|
|
<member name="unknown_option" value="0" c:identifier="G_OPTION_ERROR_UNKNOWN_OPTION">
|
|
<doc xml:space="preserve" filename="goption.h" line="198">An option was not known to the parser.
|
|
This error will only be reported, if the parser hasn't been instructed
|
|
to ignore unknown options, see g_option_context_set_ignore_unknown_options().</doc>
|
|
</member>
|
|
<member name="bad_value" value="1" c:identifier="G_OPTION_ERROR_BAD_VALUE">
|
|
<doc xml:space="preserve" filename="goption.h" line="201">A value couldn't be parsed.</doc>
|
|
</member>
|
|
<member name="failed" value="2" c:identifier="G_OPTION_ERROR_FAILED">
|
|
<doc xml:space="preserve" filename="goption.h" line="202">A #GOptionArgFunc callback failed.</doc>
|
|
</member>
|
|
</enumeration>
|
|
<callback name="OptionErrorFunc" c:type="GOptionErrorFunc" throws="1">
|
|
<doc xml:space="preserve" filename="goption.h" line="172">The type of function to be used as callback when a parse error occurs.</doc>
|
|
<source-position filename="goption.h" line="182"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="context" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="goption.h" line="174">The active #GOptionContext</doc>
|
|
<type name="OptionContext" c:type="GOptionContext*"/>
|
|
</parameter>
|
|
<parameter name="group" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="goption.h" line="175">The group to which the function belongs</doc>
|
|
<type name="OptionGroup" c:type="GOptionGroup*"/>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="goption.h" line="176">User data added to the #GOptionGroup containing the option when it
|
|
was created with g_option_group_new()</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
<bitfield name="OptionFlags" c:type="GOptionFlags">
|
|
<doc xml:space="preserve" filename="goption.h" line="54">Flags which modify individual options.</doc>
|
|
<source-position filename="goption.h" line="91"/>
|
|
<member name="none" value="0" c:identifier="G_OPTION_FLAG_NONE">
|
|
<doc xml:space="preserve" filename="goption.h" line="56">No flags. Since: 2.42.</doc>
|
|
</member>
|
|
<member name="hidden" value="1" c:identifier="G_OPTION_FLAG_HIDDEN">
|
|
<doc xml:space="preserve" filename="goption.h" line="57">The option doesn't appear in `--help` output.</doc>
|
|
</member>
|
|
<member name="in_main" value="2" c:identifier="G_OPTION_FLAG_IN_MAIN">
|
|
<doc xml:space="preserve" filename="goption.h" line="58">The option appears in the main section of the
|
|
`--help` output, even if it is defined in a group.</doc>
|
|
</member>
|
|
<member name="reverse" value="4" c:identifier="G_OPTION_FLAG_REVERSE">
|
|
<doc xml:space="preserve" filename="goption.h" line="60">For options of the %G_OPTION_ARG_NONE kind, this
|
|
flag indicates that the sense of the option is reversed.</doc>
|
|
</member>
|
|
<member name="no_arg" value="8" c:identifier="G_OPTION_FLAG_NO_ARG">
|
|
<doc xml:space="preserve" filename="goption.h" line="62">For options of the %G_OPTION_ARG_CALLBACK kind,
|
|
this flag indicates that the callback does not take any argument
|
|
(like a %G_OPTION_ARG_NONE option). Since 2.8</doc>
|
|
</member>
|
|
<member name="filename" value="16" c:identifier="G_OPTION_FLAG_FILENAME">
|
|
<doc xml:space="preserve" filename="goption.h" line="65">For options of the %G_OPTION_ARG_CALLBACK
|
|
kind, this flag indicates that the argument should be passed to the
|
|
callback in the GLib filename encoding rather than UTF-8. Since 2.8</doc>
|
|
</member>
|
|
<member name="optional_arg" value="32" c:identifier="G_OPTION_FLAG_OPTIONAL_ARG">
|
|
<doc xml:space="preserve" filename="goption.h" line="68">For options of the %G_OPTION_ARG_CALLBACK
|
|
kind, this flag indicates that the argument supply is optional.
|
|
If no argument is given then data of %GOptionParseFunc will be
|
|
set to NULL. Since 2.8</doc>
|
|
</member>
|
|
<member name="noalias" value="64" c:identifier="G_OPTION_FLAG_NOALIAS">
|
|
<doc xml:space="preserve" filename="goption.h" line="72">This flag turns off the automatic conflict
|
|
resolution which prefixes long option names with `groupname-` if
|
|
there is a conflict. This option should only be used in situations
|
|
where aliasing is necessary to model some legacy commandline interface.
|
|
It is not safe to use this option, unless all option groups are under
|
|
your direct control. Since 2.8.</doc>
|
|
</member>
|
|
</bitfield>
|
|
<record name="OptionGroup" c:type="GOptionGroup" glib:type-name="GOptionGroup" glib:get-type="g_option_group_get_type" c:symbol-prefix="option_group">
|
|
<doc xml:space="preserve" filename="goption.h" line="40">A `GOptionGroup` struct defines the options in a single
|
|
group. The struct has only private fields and should not be directly accessed.
|
|
|
|
All options in a group share the same translation function. Libraries which
|
|
need to parse commandline options are expected to provide a function for
|
|
getting a `GOptionGroup` holding their options, which
|
|
the application can then add to its #GOptionContext.</doc>
|
|
<source-position filename="goption.h" line="51"/>
|
|
<constructor name="new" c:identifier="g_option_group_new" version="2.6">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24034">Creates a new #GOptionGroup.</doc>
|
|
<source-position filename="goption.h" line="356"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24050">a newly created option group. It should be added
|
|
to a #GOptionContext or freed with g_option_group_unref().</doc>
|
|
<type name="OptionGroup" c:type="GOptionGroup*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24036">the name for the option group, this is used to provide
|
|
help for the options in this group with `--help-`@name</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="description" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24038">a description for this group to be shown in
|
|
`--help`. This string is translated using the translation
|
|
domain or translation function of the group</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="help_description" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24041">a description for the `--help-`@name option.
|
|
This string is translated using the translation domain or translation function
|
|
of the group</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24044">user data that will be passed to the pre- and post-parse hooks,
|
|
the error hook and to callbacks of %G_OPTION_ARG_CALLBACK options, or %NULL</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="destroy" transfer-ownership="none" nullable="1" allow-none="1" scope="async">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24046">a function that will be called to free @user_data, or %NULL</doc>
|
|
<type name="DestroyNotify" c:type="GDestroyNotify"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<method name="add_entries" c:identifier="g_option_group_add_entries" version="2.6">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24011">Adds the options specified in @entries to @group.</doc>
|
|
<source-position filename="goption.h" line="375"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="group" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24013">a #GOptionGroup</doc>
|
|
<type name="OptionGroup" c:type="GOptionGroup*"/>
|
|
</instance-parameter>
|
|
<parameter name="entries" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24014">a %NULL-terminated array of #GOptionEntrys</doc>
|
|
<type name="OptionEntry" c:type="const GOptionEntry*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="free" c:identifier="g_option_group_free" version="2.6" deprecated="1" deprecated-version="2.44">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24022">Frees a #GOptionGroup. Note that you must not free groups
|
|
which have been added to a #GOptionContext.</doc>
|
|
<doc-deprecated xml:space="preserve">Use g_option_group_unref() instead.</doc-deprecated>
|
|
<source-position filename="goption.h" line="369"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="group" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24024">a #GOptionGroup</doc>
|
|
<type name="OptionGroup" c:type="GOptionGroup*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="ref" c:identifier="g_option_group_ref" version="2.44">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24056">Increments the reference count of @group by one.</doc>
|
|
<source-position filename="goption.h" line="371"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24062">a #GOptionGroup</doc>
|
|
<type name="OptionGroup" c:type="GOptionGroup*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="group" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24058">a #GOptionGroup</doc>
|
|
<type name="OptionGroup" c:type="GOptionGroup*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_error_hook" c:identifier="g_option_group_set_error_hook" version="2.6" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24067">Associates a function with @group which will be called
|
|
from g_option_context_parse() when an error occurs.
|
|
|
|
Note that the user data to be passed to @error_func can be
|
|
specified when constructing the group with g_option_group_new().</doc>
|
|
<source-position filename="goption.h" line="366"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="group" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24069">a #GOptionGroup</doc>
|
|
<type name="OptionGroup" c:type="GOptionGroup*"/>
|
|
</instance-parameter>
|
|
<parameter name="error_func" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24070">a function to call when an error occurs</doc>
|
|
<type name="OptionErrorFunc" c:type="GOptionErrorFunc"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_parse_hooks" c:identifier="g_option_group_set_parse_hooks" version="2.6" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24082">Associates two functions with @group which will be called
|
|
from g_option_context_parse() before the first option is parsed
|
|
and after the last option has been parsed, respectively.
|
|
|
|
Note that the user data to be passed to @pre_parse_func and
|
|
@post_parse_func can be specified when constructing the group
|
|
with g_option_group_new().</doc>
|
|
<source-position filename="goption.h" line="362"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="group" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24084">a #GOptionGroup</doc>
|
|
<type name="OptionGroup" c:type="GOptionGroup*"/>
|
|
</instance-parameter>
|
|
<parameter name="pre_parse_func" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24085">a function to call before parsing, or %NULL</doc>
|
|
<type name="OptionParseFunc" c:type="GOptionParseFunc"/>
|
|
</parameter>
|
|
<parameter name="post_parse_func" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24086">a function to call after parsing, or %NULL</doc>
|
|
<type name="OptionParseFunc" c:type="GOptionParseFunc"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_translate_func" c:identifier="g_option_group_set_translate_func" version="2.6">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24100">Sets the function which is used to translate user-visible strings,
|
|
for `--help` output. Different groups can use different
|
|
#GTranslateFuncs. If @func is %NULL, strings are not translated.
|
|
|
|
If you are using gettext(), you only need to set the translation
|
|
domain, see g_option_group_set_translation_domain().</doc>
|
|
<source-position filename="goption.h" line="378"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="group" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24102">a #GOptionGroup</doc>
|
|
<type name="OptionGroup" c:type="GOptionGroup*"/>
|
|
</instance-parameter>
|
|
<parameter name="func" transfer-ownership="none" nullable="1" allow-none="1" scope="notified" closure="1" destroy="2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24103">the #GTranslateFunc, or %NULL</doc>
|
|
<type name="TranslateFunc" c:type="GTranslateFunc"/>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24104">user data to pass to @func, or %NULL</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="destroy_notify" transfer-ownership="none" nullable="1" allow-none="1" scope="async">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24105">a function which gets called to free @data, or %NULL</doc>
|
|
<type name="DestroyNotify" c:type="GDestroyNotify"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_translation_domain" c:identifier="g_option_group_set_translation_domain" version="2.6">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24118">A convenience function to use gettext() for translating
|
|
user-visible strings.</doc>
|
|
<source-position filename="goption.h" line="383"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="group" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24120">a #GOptionGroup</doc>
|
|
<type name="OptionGroup" c:type="GOptionGroup*"/>
|
|
</instance-parameter>
|
|
<parameter name="domain" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24121">the domain to use</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="unref" c:identifier="g_option_group_unref" version="2.44">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24130">Decrements the reference count of @group by one.
|
|
If the reference count drops to 0, the @group will be freed.
|
|
and all memory allocated by the @group is released.</doc>
|
|
<source-position filename="goption.h" line="373"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="group" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24132">a #GOptionGroup</doc>
|
|
<type name="OptionGroup" c:type="GOptionGroup*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
</record>
|
|
<callback name="OptionParseFunc" c:type="GOptionParseFunc" throws="1">
|
|
<doc xml:space="preserve" filename="goption.h" line="154">The type of function that can be called before and after parsing.</doc>
|
|
<source-position filename="goption.h" line="167"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="goption.h" line="164">%TRUE if the function completed successfully, %FALSE if an error
|
|
occurred, in which case @error should be set with g_set_error()</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="context" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="goption.h" line="156">The active #GOptionContext</doc>
|
|
<type name="OptionContext" c:type="GOptionContext*"/>
|
|
</parameter>
|
|
<parameter name="group" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="goption.h" line="157">The group to which the function belongs</doc>
|
|
<type name="OptionGroup" c:type="GOptionGroup*"/>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="goption.h" line="158">User data added to the #GOptionGroup containing the option when it
|
|
was created with g_option_group_new()</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
<constant name="PDP_ENDIAN" value="3412" c:type="G_PDP_ENDIAN">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="4234">Specifies one of the possible types of byte order
|
|
(currently unused). See #G_BYTE_ORDER.</doc>
|
|
<source-position filename="gtypes.h" line="186"/>
|
|
<type name="gint" c:type="gint"/>
|
|
</constant>
|
|
<constant name="PI" value="3.141593" c:type="G_PI">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="4242">The value of pi (ratio of circle's circumference to its diameter).</doc>
|
|
<source-position filename="gtypes.h" line="174"/>
|
|
<type name="gdouble" c:type="gdouble"/>
|
|
</constant>
|
|
<constant name="PID_FORMAT" value="i" c:type="G_PID_FORMAT" version="2.50">
|
|
<doc xml:space="preserve" filename="gmain.h" line="148">A format specifier that can be used in printf()-style format strings
|
|
when printing a #GPid.</doc>
|
|
<source-position filename="glibconfig.h" line="199"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<constant name="PI_2" value="1.570796" c:type="G_PI_2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="4249">Pi divided by 2.</doc>
|
|
<source-position filename="gtypes.h" line="175"/>
|
|
<type name="gdouble" c:type="gdouble"/>
|
|
</constant>
|
|
<constant name="PI_4" value="0.785398" c:type="G_PI_4">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="4256">Pi divided by 4.</doc>
|
|
<source-position filename="gtypes.h" line="176"/>
|
|
<type name="gdouble" c:type="gdouble"/>
|
|
</constant>
|
|
<constant name="POLLFD_FORMAT" value="%d" c:type="G_POLLFD_FORMAT">
|
|
<doc xml:space="preserve" filename="gpoll.h" line="104">A format specifier that can be used in printf()-style format strings
|
|
when printing the @fd member of a #GPollFD.</doc>
|
|
<source-position filename="glibconfig.h" line="96"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<constant name="PRIORITY_DEFAULT" value="0" c:type="G_PRIORITY_DEFAULT">
|
|
<doc xml:space="preserve" filename="gmain.h" line="277">Use this for default priority event sources.
|
|
|
|
In GLib this priority is used when adding timeout functions
|
|
with g_timeout_add(). In GDK this priority is used for events
|
|
from the X server.</doc>
|
|
<source-position filename="gmain.h" line="286"/>
|
|
<type name="gint" c:type="gint"/>
|
|
</constant>
|
|
<constant name="PRIORITY_DEFAULT_IDLE" value="200" c:type="G_PRIORITY_DEFAULT_IDLE">
|
|
<doc xml:space="preserve" filename="gmain.h" line="300">Use this for default priority idle functions.
|
|
|
|
In GLib this priority is used when adding idle functions with
|
|
g_idle_add().</doc>
|
|
<source-position filename="gmain.h" line="308"/>
|
|
<type name="gint" c:type="gint"/>
|
|
</constant>
|
|
<constant name="PRIORITY_HIGH" value="-100" c:type="G_PRIORITY_HIGH">
|
|
<doc xml:space="preserve" filename="gmain.h" line="268">Use this for high priority event sources.
|
|
|
|
It is not used within GLib or GTK+.</doc>
|
|
<source-position filename="gmain.h" line="275"/>
|
|
<type name="gint" c:type="gint"/>
|
|
</constant>
|
|
<constant name="PRIORITY_HIGH_IDLE" value="100" c:type="G_PRIORITY_HIGH_IDLE">
|
|
<doc xml:space="preserve" filename="gmain.h" line="288">Use this for high priority idle functions.
|
|
|
|
GTK+ uses #G_PRIORITY_HIGH_IDLE + 10 for resizing operations,
|
|
and #G_PRIORITY_HIGH_IDLE + 20 for redrawing operations. (This is
|
|
done to ensure that any pending resizes are processed before any
|
|
pending redraws, so that widgets are not redrawn twice unnecessarily.)</doc>
|
|
<source-position filename="gmain.h" line="298"/>
|
|
<type name="gint" c:type="gint"/>
|
|
</constant>
|
|
<constant name="PRIORITY_LOW" value="300" c:type="G_PRIORITY_LOW">
|
|
<doc xml:space="preserve" filename="gmain.h" line="310">Use this for very low priority background tasks.
|
|
|
|
It is not used within GLib or GTK+.</doc>
|
|
<source-position filename="gmain.h" line="317"/>
|
|
<type name="gint" c:type="gint"/>
|
|
</constant>
|
|
<function-macro name="PRIVATE_INIT" c:identifier="G_PRIVATE_INIT" version="2.32" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="4263">A macro to assist with the static initialisation of a #GPrivate.
|
|
|
|
This macro is useful for the case that a #GDestroyNotify function
|
|
should be associated with the key. This is needed when the key will be
|
|
used to point at memory that should be deallocated when the thread
|
|
exits.
|
|
|
|
Additionally, the #GDestroyNotify will also be called on the previous
|
|
value stored in the key when g_private_replace() is used.
|
|
|
|
If no #GDestroyNotify is needed, then use of this macro is not
|
|
required -- if the #GPrivate is declared in static scope then it will
|
|
be properly initialised by default (ie: to all zeros). See the
|
|
examples below.
|
|
|
|
|[<!-- language="C" -->
|
|
static GPrivate name_key = G_PRIVATE_INIT (g_free);
|
|
|
|
// return value should not be freed
|
|
const gchar *
|
|
get_local_name (void)
|
|
{
|
|
return g_private_get (&name_key);
|
|
}
|
|
|
|
void
|
|
set_local_name (const gchar *name)
|
|
{
|
|
g_private_replace (&name_key, g_strdup (name));
|
|
}
|
|
|
|
|
|
static GPrivate count_key; // no free function
|
|
|
|
gint
|
|
get_local_count (void)
|
|
{
|
|
return GPOINTER_TO_INT (g_private_get (&count_key));
|
|
}
|
|
|
|
void
|
|
set_local_count (gint count)
|
|
{
|
|
g_private_set (&count_key, GINT_TO_POINTER (count));
|
|
}
|
|
]|</doc>
|
|
<source-position filename="gthread.h" line="86"/>
|
|
<parameters>
|
|
<parameter name="notify">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="4265">a #GDestroyNotify</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<record name="PatternSpec" c:type="GPatternSpec" disguised="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1454">A GPatternSpec struct is the 'compiled' form of a pattern. This
|
|
structure is opaque and its fields cannot be accessed directly.</doc>
|
|
<source-position filename="gpattern.h" line="30"/>
|
|
<method name="equal" c:identifier="g_pattern_spec_equal">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24301">Compares two compiled pattern specs and returns whether they will
|
|
match the same set of strings.</doc>
|
|
<source-position filename="gpattern.h" line="37"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24309">Whether the compiled patterns are equal</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="pspec1" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24303">a #GPatternSpec</doc>
|
|
<type name="PatternSpec" c:type="GPatternSpec*"/>
|
|
</instance-parameter>
|
|
<parameter name="pspec2" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24304">another #GPatternSpec</doc>
|
|
<type name="PatternSpec" c:type="GPatternSpec*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="free" c:identifier="g_pattern_spec_free">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24313">Frees the memory allocated for the #GPatternSpec.</doc>
|
|
<source-position filename="gpattern.h" line="35"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="pspec" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24315">a #GPatternSpec</doc>
|
|
<type name="PatternSpec" c:type="GPatternSpec*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<function name="new" c:identifier="g_pattern_spec_new" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24321">Compiles a pattern to a #GPatternSpec.</doc>
|
|
<source-position filename="gpattern.h" line="33"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24327">a newly-allocated #GPatternSpec</doc>
|
|
<type name="PatternSpec" c:type="GPatternSpec*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="pattern" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24323">a zero-terminated UTF-8 encoded string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
</record>
|
|
<record name="PollFD" c:type="GPollFD" glib:type-name="GPollFD" glib:get-type="g_pollfd_get_type" c:symbol-prefix="pollfd">
|
|
<doc xml:space="preserve" filename="gpoll.h" line="78">Represents a file descriptor, which events to poll for, and which events
|
|
occurred.</doc>
|
|
<source-position filename="gpoll.h" line="102"/>
|
|
<field name="fd" writable="1">
|
|
<doc xml:space="preserve" filename="gpoll.h" line="80">the file descriptor to poll (or a HANDLE on Win32)</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</field>
|
|
<field name="events" writable="1">
|
|
<doc xml:space="preserve" filename="gpoll.h" line="81">a bitwise combination from #GIOCondition, specifying which
|
|
events should be polled for. Typically for reading from a file
|
|
descriptor you would use %G_IO_IN | %G_IO_HUP | %G_IO_ERR, and
|
|
for writing you would use %G_IO_OUT | %G_IO_ERR.</doc>
|
|
<type name="gushort" c:type="gushort"/>
|
|
</field>
|
|
<field name="revents" writable="1">
|
|
<doc xml:space="preserve" filename="gpoll.h" line="85">a bitwise combination of flags from #GIOCondition, returned
|
|
from the poll() function to indicate which events occurred.</doc>
|
|
<type name="gushort" c:type="gushort"/>
|
|
</field>
|
|
</record>
|
|
<callback name="PollFunc" c:type="GPollFunc">
|
|
<doc xml:space="preserve" filename="gpoll.h" line="61">Specifies the type of function passed to g_main_context_set_poll_func().
|
|
The semantics of the function should match those of the poll() system call.</doc>
|
|
<source-position filename="gpoll.h" line="74"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="gpoll.h" line="71">the number of #GPollFD elements which have events or errors
|
|
reported, or -1 if an error occurred.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="ufds" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="gpoll.h" line="63">an array of #GPollFD elements</doc>
|
|
<type name="PollFD" c:type="GPollFD*"/>
|
|
</parameter>
|
|
<parameter name="nfsd" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="gpoll.h" line="64">the number of elements in @ufds</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
<parameter name="timeout_" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="gpoll.h" line="65">the maximum time to wait for an event of the file descriptors.
|
|
A negative value indicates an infinite timeout.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
<callback name="PrintFunc" c:type="GPrintFunc">
|
|
<doc xml:space="preserve" filename="gmessages.h" line="456">Specifies the type of the print handler functions.
|
|
These are called with the complete formatted string to output.</doc>
|
|
<source-position filename="gmessages.h" line="463"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="gmessages.h" line="458">the message to output</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
<record name="Private" c:type="GPrivate">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1462">The #GPrivate struct is an opaque data structure to represent a
|
|
thread-local data key. It is approximately equivalent to the
|
|
pthread_setspecific()/pthread_getspecific() APIs on POSIX and to
|
|
TlsSetValue()/TlsGetValue() on Windows.
|
|
|
|
If you don't already know why you might want this functionality,
|
|
then you probably don't need it.
|
|
|
|
#GPrivate is a very limited resource (as far as 128 per program,
|
|
shared between all libraries). It is also not possible to destroy a
|
|
#GPrivate after it has been used. As such, it is only ever acceptable
|
|
to use #GPrivate in static scope, and even then sparingly so.
|
|
|
|
See G_PRIVATE_INIT() for a couple of examples.
|
|
|
|
The #GPrivate structure should be considered opaque. It should only
|
|
be accessed via the g_private_ functions.</doc>
|
|
<source-position filename="gthread.h" line="93"/>
|
|
<field name="p" readable="0" private="1">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</field>
|
|
<field name="notify" readable="0" private="1">
|
|
<type name="DestroyNotify" c:type="GDestroyNotify"/>
|
|
</field>
|
|
<field name="future" readable="0" private="1">
|
|
<array zero-terminated="0" fixed-size="2">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</field>
|
|
<method name="get" c:identifier="g_private_get">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24491">Returns the current value of the thread local variable @key.
|
|
|
|
If the value has not yet been set in this thread, %NULL is returned.
|
|
Values are never copied between threads (when a new thread is
|
|
created, for example).</doc>
|
|
<source-position filename="gthread.h" line="219"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24501">the thread-local value</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="key" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24493">a #GPrivate</doc>
|
|
<type name="Private" c:type="GPrivate*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="replace" c:identifier="g_private_replace" version="2.32">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24505">Sets the thread local variable @key to have the value @value in the
|
|
current thread.
|
|
|
|
This function differs from g_private_set() in the following way: if
|
|
the previous value was non-%NULL then the #GDestroyNotify handler for
|
|
@key is run on it.</doc>
|
|
<source-position filename="gthread.h" line="224"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="key" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24507">a #GPrivate</doc>
|
|
<type name="Private" c:type="GPrivate*"/>
|
|
</instance-parameter>
|
|
<parameter name="value" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24508">the new value</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set" c:identifier="g_private_set">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24521">Sets the thread local variable @key to have the value @value in the
|
|
current thread.
|
|
|
|
This function differs from g_private_replace() in the following way:
|
|
the #GDestroyNotify for @key is not called on the old value.</doc>
|
|
<source-position filename="gthread.h" line="221"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="key" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24523">a #GPrivate</doc>
|
|
<type name="Private" c:type="GPrivate*"/>
|
|
</instance-parameter>
|
|
<parameter name="value" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24524">the new value</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
</record>
|
|
<record name="PtrArray" c:type="GPtrArray" glib:type-name="GPtrArray" glib:get-type="g_ptr_array_get_type" c:symbol-prefix="ptr_array">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1485">Contains the public fields of a pointer array.</doc>
|
|
<source-position filename="garray.h" line="57"/>
|
|
<field name="pdata" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1487">points to the array of pointers, which may be moved when the
|
|
array grows</doc>
|
|
<type name="gpointer" c:type="gpointer*"/>
|
|
</field>
|
|
<field name="len" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1489">number of pointers in the array</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<function name="add" c:identifier="g_ptr_array_add" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24565">Adds a pointer to the end of the pointer array. The array will grow
|
|
in size automatically if necessary.</doc>
|
|
<source-position filename="garray.h" line="185"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="array" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24567">a #GPtrArray</doc>
|
|
<array name="GLib.PtrArray" c:type="GPtrArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24568">the pointer to add</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="copy" c:identifier="g_ptr_array_copy" version="2.62" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24575">Makes a full (deep) copy of a #GPtrArray.
|
|
|
|
@func, as a #GCopyFunc, takes two arguments, the data to be copied
|
|
and a @user_data pointer. On common processor architectures, it's safe to
|
|
pass %NULL as @user_data if the copy function takes only one argument. You
|
|
may get compiler warnings from this though if compiling with GCC’s
|
|
`-Wcast-function-type` warning.
|
|
|
|
If @func is %NULL, then only the pointers (and not what they are
|
|
pointing to) are copied to the new #GPtrArray.
|
|
|
|
The copy of @array will have the same #GDestroyNotify for its elements as
|
|
@array.</doc>
|
|
<source-position filename="garray.h" line="141"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24595">a deep copy of the initial #GPtrArray.</doc>
|
|
<array name="GLib.PtrArray" c:type="GPtrArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="array" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24577">#GPtrArray to duplicate</doc>
|
|
<array name="GLib.PtrArray" c:type="GPtrArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="func" transfer-ownership="none" nullable="1" allow-none="1" closure="2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24578">a copy function used to copy every element in the array</doc>
|
|
<type name="CopyFunc" c:type="GCopyFunc"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24579">user data passed to the copy function @func, or %NULL</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="extend" c:identifier="g_ptr_array_extend" version="2.62" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24600">Adds all pointers of @array to the end of the array @array_to_extend.
|
|
The array will grow in size automatically if needed. @array_to_extend is
|
|
modified in-place.
|
|
|
|
@func, as a #GCopyFunc, takes two arguments, the data to be copied
|
|
and a @user_data pointer. On common processor architectures, it's safe to
|
|
pass %NULL as @user_data if the copy function takes only one argument. You
|
|
may get compiler warnings from this though if compiling with GCC’s
|
|
`-Wcast-function-type` warning.
|
|
|
|
If @func is %NULL, then only the pointers (and not what they are
|
|
pointing to) are copied to the new #GPtrArray.</doc>
|
|
<source-position filename="garray.h" line="188"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="array_to_extend" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24602">a #GPtrArray.</doc>
|
|
<array name="GLib.PtrArray" c:type="GPtrArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="array" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24603">a #GPtrArray to add to the end of @array_to_extend.</doc>
|
|
<array name="GLib.PtrArray" c:type="GPtrArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="func" transfer-ownership="none" nullable="1" allow-none="1" closure="3">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24604">a copy function used to copy every element in the array</doc>
|
|
<type name="CopyFunc" c:type="GCopyFunc"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24605">user data passed to the copy function @func, or %NULL</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="extend_and_steal" c:identifier="g_ptr_array_extend_and_steal" version="2.62" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24624">Adds all the pointers in @array to the end of @array_to_extend, transferring
|
|
ownership of each element from @array to @array_to_extend and modifying
|
|
@array_to_extend in-place. @array is then freed.
|
|
|
|
As with g_ptr_array_free(), @array will be destroyed if its reference count
|
|
is 1. If its reference count is higher, it will be decremented and the
|
|
length of @array set to zero.</doc>
|
|
<source-position filename="garray.h" line="193"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="array_to_extend" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24626">a #GPtrArray.</doc>
|
|
<array name="GLib.PtrArray" c:type="GPtrArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="array" transfer-ownership="container">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24627">a #GPtrArray to add to the end of
|
|
@array_to_extend.</doc>
|
|
<array name="GLib.PtrArray" c:type="GPtrArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="find" c:identifier="g_ptr_array_find" version="2.54" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24642">Checks whether @needle exists in @haystack. If the element is found, %TRUE is
|
|
returned and the element’s index is returned in @index_ (if non-%NULL).
|
|
Otherwise, %FALSE is returned and @index_ is undefined. If @needle exists
|
|
multiple times in @haystack, the index of the first instance is returned.
|
|
|
|
This does pointer comparisons only. If you want to use more complex equality
|
|
checks, such as string comparisons, use g_ptr_array_find_with_equal_func().</doc>
|
|
<source-position filename="garray.h" line="211"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24657">%TRUE if @needle is one of the elements of @haystack</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="haystack" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24644">pointer array to be searched</doc>
|
|
<array name="GLib.PtrArray" c:type="GPtrArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="needle" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24645">pointer to look for</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
<parameter name="index_" direction="out" caller-allocates="1" transfer-ownership="none" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24646">return location for the index of
|
|
the element, if found</doc>
|
|
<type name="guint" c:type="guint*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="find_with_equal_func" c:identifier="g_ptr_array_find_with_equal_func" version="2.54" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24662">Checks whether @needle exists in @haystack, using the given @equal_func.
|
|
If the element is found, %TRUE is returned and the element’s index is
|
|
returned in @index_ (if non-%NULL). Otherwise, %FALSE is returned and @index_
|
|
is undefined. If @needle exists multiple times in @haystack, the index of
|
|
the first instance is returned.
|
|
|
|
@equal_func is called with the element from the array as its first parameter,
|
|
and @needle as its second parameter. If @equal_func is %NULL, pointer
|
|
equality is used.</doc>
|
|
<source-position filename="garray.h" line="215"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24682">%TRUE if @needle is one of the elements of @haystack</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="haystack" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24664">pointer array to be searched</doc>
|
|
<array name="GLib.PtrArray" c:type="GPtrArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="needle" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24665">pointer to look for</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
<parameter name="equal_func" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24666">the function to call for each element, which should
|
|
return %TRUE when the desired element is found; or %NULL to use pointer
|
|
equality</doc>
|
|
<type name="EqualFunc" c:type="GEqualFunc"/>
|
|
</parameter>
|
|
<parameter name="index_" direction="out" caller-allocates="1" transfer-ownership="none" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24669">return location for the index of
|
|
the element, if found</doc>
|
|
<type name="guint" c:type="guint*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="foreach" c:identifier="g_ptr_array_foreach" version="2.4" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24687">Calls a function for each element of a #GPtrArray. @func must not
|
|
add elements to or remove elements from the array.</doc>
|
|
<source-position filename="garray.h" line="207"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="array" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24689">a #GPtrArray</doc>
|
|
<array name="GLib.PtrArray" c:type="GPtrArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="func" transfer-ownership="none" closure="2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24690">the function to call for each array element</doc>
|
|
<type name="Func" c:type="GFunc"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24691">user data to pass to the function</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="free" c:identifier="g_ptr_array_free" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24700">Frees the memory allocated for the #GPtrArray. If @free_seg is %TRUE
|
|
it frees the memory block holding the elements as well. Pass %FALSE
|
|
if you want to free the #GPtrArray wrapper but preserve the
|
|
underlying array for use elsewhere. If the reference count of @array
|
|
is greater than one, the #GPtrArray wrapper is preserved but the
|
|
size of @array will be set to zero.
|
|
|
|
If array contents point to dynamically-allocated memory, they should
|
|
be freed separately if @free_seg is %TRUE and no #GDestroyNotify
|
|
function has been set for @array.
|
|
|
|
This function is not thread-safe. If using a #GPtrArray from multiple
|
|
threads, use only the atomic g_ptr_array_ref() and g_ptr_array_unref()
|
|
functions.</doc>
|
|
<source-position filename="garray.h" line="150"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24720">the pointer array if @free_seg is %FALSE, otherwise %NULL.
|
|
The pointer array should be freed using g_free().</doc>
|
|
<type name="gpointer" c:type="gpointer*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="array" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24702">a #GPtrArray</doc>
|
|
<array name="GLib.PtrArray" c:type="GPtrArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="free_seg" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24703">if %TRUE the actual pointer array is freed as well</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="insert" c:identifier="g_ptr_array_insert" version="2.40" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24739">Inserts an element into the pointer array at the given index. The
|
|
array will grow in size automatically if necessary.</doc>
|
|
<source-position filename="garray.h" line="196"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="array" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24741">a #GPtrArray</doc>
|
|
<array name="GLib.PtrArray" c:type="GPtrArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="index_" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24742">the index to place the new element at, or -1 to append</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24743">the pointer to add.</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="new" c:identifier="g_ptr_array_new" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24752">Creates a new #GPtrArray with a reference count of 1.</doc>
|
|
<source-position filename="garray.h" line="137"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24757">the new #GPtrArray</doc>
|
|
<array name="GLib.PtrArray" c:type="GPtrArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</return-value>
|
|
</function>
|
|
<function name="new_full" c:identifier="g_ptr_array_new_full" version="2.30" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24761">Creates a new #GPtrArray with @reserved_size pointers preallocated
|
|
and a reference count of 1. This avoids frequent reallocation, if
|
|
you are going to add many pointers to the array. Note however that
|
|
the size of the array is still 0. It also set @element_free_func
|
|
for freeing each element when the array is destroyed either via
|
|
g_ptr_array_unref(), when g_ptr_array_free() is called with
|
|
@free_segment set to %TRUE or when removing elements.</doc>
|
|
<source-position filename="garray.h" line="147"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24775">A new #GPtrArray</doc>
|
|
<array name="GLib.PtrArray" c:type="GPtrArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="reserved_size" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24763">number of pointers preallocated</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
<parameter name="element_free_func" transfer-ownership="none" nullable="1" allow-none="1" scope="async">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24764">A function to free elements with
|
|
destroy @array or %NULL</doc>
|
|
<type name="DestroyNotify" c:type="GDestroyNotify"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="new_with_free_func" c:identifier="g_ptr_array_new_with_free_func" version="2.22" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24780">Creates a new #GPtrArray with a reference count of 1 and use
|
|
@element_free_func for freeing each element when the array is destroyed
|
|
either via g_ptr_array_unref(), when g_ptr_array_free() is called with
|
|
@free_segment set to %TRUE or when removing elements.</doc>
|
|
<source-position filename="garray.h" line="139"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24790">A new #GPtrArray</doc>
|
|
<array name="GLib.PtrArray" c:type="GPtrArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="element_free_func" transfer-ownership="none" nullable="1" allow-none="1" scope="async">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24782">A function to free elements with
|
|
destroy @array or %NULL</doc>
|
|
<type name="DestroyNotify" c:type="GDestroyNotify"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="ref" c:identifier="g_ptr_array_ref" version="2.22" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24795">Atomically increments the reference count of @array by one.
|
|
This function is thread-safe and may be called from any thread.</doc>
|
|
<source-position filename="garray.h" line="153"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24802">The passed in #GPtrArray</doc>
|
|
<array name="GLib.PtrArray" c:type="GPtrArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="array" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24797">a #GPtrArray</doc>
|
|
<array name="GLib.PtrArray" c:type="GPtrArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="remove" c:identifier="g_ptr_array_remove" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24807">Removes the first occurrence of the given pointer from the pointer
|
|
array. The following elements are moved down one place. If @array
|
|
has a non-%NULL #GDestroyNotify function it is called for the
|
|
removed element.
|
|
|
|
It returns %TRUE if the pointer was removed, or %FALSE if the
|
|
pointer was not found.</doc>
|
|
<source-position filename="garray.h" line="175"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24820">%TRUE if the pointer is removed, %FALSE if the pointer
|
|
is not found in the array</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="array" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24809">a #GPtrArray</doc>
|
|
<array name="GLib.PtrArray" c:type="GPtrArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24810">the pointer to remove</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="remove_fast" c:identifier="g_ptr_array_remove_fast" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24825">Removes the first occurrence of the given pointer from the pointer
|
|
array. The last element in the array is used to fill in the space,
|
|
so this function does not preserve the order of the array. But it
|
|
is faster than g_ptr_array_remove(). If @array has a non-%NULL
|
|
#GDestroyNotify function it is called for the removed element.
|
|
|
|
It returns %TRUE if the pointer was removed, or %FALSE if the
|
|
pointer was not found.</doc>
|
|
<source-position filename="garray.h" line="178"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24839">%TRUE if the pointer was found in the array</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="array" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24827">a #GPtrArray</doc>
|
|
<array name="GLib.PtrArray" c:type="GPtrArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24828">the pointer to remove</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="remove_index" c:identifier="g_ptr_array_remove_index" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24843">Removes the pointer at the given index from the pointer array.
|
|
The following elements are moved down one place. If @array has
|
|
a non-%NULL #GDestroyNotify function it is called for the removed
|
|
element. If so, the return value from this function will potentially point
|
|
to freed memory (depending on the #GDestroyNotify implementation).</doc>
|
|
<source-position filename="garray.h" line="163"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24854">the pointer which was removed</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="array" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24845">a #GPtrArray</doc>
|
|
<array name="GLib.PtrArray" c:type="GPtrArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="index_" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24846">the index of the pointer to remove</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="remove_index_fast" c:identifier="g_ptr_array_remove_index_fast" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24858">Removes the pointer at the given index from the pointer array.
|
|
The last element in the array is used to fill in the space, so
|
|
this function does not preserve the order of the array. But it
|
|
is faster than g_ptr_array_remove_index(). If @array has a non-%NULL
|
|
#GDestroyNotify function it is called for the removed element. If so, the
|
|
return value from this function will potentially point to freed memory
|
|
(depending on the #GDestroyNotify implementation).</doc>
|
|
<source-position filename="garray.h" line="166"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24871">the pointer which was removed</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="array" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24860">a #GPtrArray</doc>
|
|
<array name="GLib.PtrArray" c:type="GPtrArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="index_" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24861">the index of the pointer to remove</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="remove_range" c:identifier="g_ptr_array_remove_range" version="2.4" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24875">Removes the given number of pointers starting at the given index
|
|
from a #GPtrArray. The following elements are moved to close the
|
|
gap. If @array has a non-%NULL #GDestroyNotify function it is
|
|
called for the removed elements.</doc>
|
|
<source-position filename="garray.h" line="181"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24886">the @array</doc>
|
|
<array name="GLib.PtrArray" c:type="GPtrArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="array" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24877">a @GPtrArray</doc>
|
|
<array name="GLib.PtrArray" c:type="GPtrArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="index_" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24878">the index of the first pointer to remove</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
<parameter name="length" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24879">the number of pointers to remove</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="set_free_func" c:identifier="g_ptr_array_set_free_func" version="2.22" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24891">Sets a function for freeing each element when @array is destroyed
|
|
either via g_ptr_array_unref(), when g_ptr_array_free() is called
|
|
with @free_segment set to %TRUE or when removing elements.</doc>
|
|
<source-position filename="garray.h" line="157"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="array" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24893">A #GPtrArray</doc>
|
|
<array name="GLib.PtrArray" c:type="GPtrArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="element_free_func" transfer-ownership="none" nullable="1" allow-none="1" scope="async">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24894">A function to free elements with
|
|
destroy @array or %NULL</doc>
|
|
<type name="DestroyNotify" c:type="GDestroyNotify"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="set_size" c:identifier="g_ptr_array_set_size" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24905">Sets the size of the array. When making the array larger,
|
|
newly-added elements will be set to %NULL. When making it smaller,
|
|
if @array has a non-%NULL #GDestroyNotify function then it will be
|
|
called for the removed elements.</doc>
|
|
<source-position filename="garray.h" line="160"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="array" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24907">a #GPtrArray</doc>
|
|
<array name="GLib.PtrArray" c:type="GPtrArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="length" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24908">the new length of the pointer array</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="sized_new" c:identifier="g_ptr_array_sized_new" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24917">Creates a new #GPtrArray with @reserved_size pointers preallocated
|
|
and a reference count of 1. This avoids frequent reallocation, if
|
|
you are going to add many pointers to the array. Note however that
|
|
the size of the array is still 0.</doc>
|
|
<source-position filename="garray.h" line="145"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24926">the new #GPtrArray</doc>
|
|
<array name="GLib.PtrArray" c:type="GPtrArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="reserved_size" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24919">number of pointers preallocated</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="sort" c:identifier="g_ptr_array_sort" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24930">Sorts the array, using @compare_func which should be a qsort()-style
|
|
comparison function (returns less than zero for first arg is less
|
|
than second arg, zero for equal, greater than zero if irst arg is
|
|
greater than second arg).
|
|
|
|
Note that the comparison function for g_ptr_array_sort() doesn't
|
|
take the pointers from the array as arguments, it takes pointers to
|
|
the pointers in the array.
|
|
|
|
This is guaranteed to be a stable sort since version 2.32.</doc>
|
|
<source-position filename="garray.h" line="200"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="array" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24932">a #GPtrArray</doc>
|
|
<array name="GLib.PtrArray" c:type="GPtrArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="compare_func" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24933">comparison function</doc>
|
|
<type name="CompareFunc" c:type="GCompareFunc"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="sort_with_data" c:identifier="g_ptr_array_sort_with_data" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24948">Like g_ptr_array_sort(), but the comparison function has an extra
|
|
user data argument.
|
|
|
|
Note that the comparison function for g_ptr_array_sort_with_data()
|
|
doesn't take the pointers from the array as arguments, it takes
|
|
pointers to the pointers in the array.
|
|
|
|
This is guaranteed to be a stable sort since version 2.32.</doc>
|
|
<source-position filename="garray.h" line="203"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="array" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24950">a #GPtrArray</doc>
|
|
<array name="GLib.PtrArray" c:type="GPtrArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="compare_func" transfer-ownership="none" closure="2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24951">comparison function</doc>
|
|
<type name="CompareDataFunc" c:type="GCompareDataFunc"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24952">data to pass to @compare_func</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="steal_index" c:identifier="g_ptr_array_steal_index" version="2.58" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24965">Removes the pointer at the given index from the pointer array.
|
|
The following elements are moved down one place. The #GDestroyNotify for
|
|
@array is *not* called on the removed element; ownership is transferred to
|
|
the caller of this function.</doc>
|
|
<source-position filename="garray.h" line="169"/>
|
|
<return-value transfer-ownership="full" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24975">the pointer which was removed</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="array" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24967">a #GPtrArray</doc>
|
|
<array name="GLib.PtrArray" c:type="GPtrArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="index_" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24968">the index of the pointer to steal</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="steal_index_fast" c:identifier="g_ptr_array_steal_index_fast" version="2.58" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24980">Removes the pointer at the given index from the pointer array.
|
|
The last element in the array is used to fill in the space, so
|
|
this function does not preserve the order of the array. But it
|
|
is faster than g_ptr_array_steal_index(). The #GDestroyNotify for @array is
|
|
*not* called on the removed element; ownership is transferred to the caller
|
|
of this function.</doc>
|
|
<source-position filename="garray.h" line="172"/>
|
|
<return-value transfer-ownership="full" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24992">the pointer which was removed</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="array" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24982">a #GPtrArray</doc>
|
|
<array name="GLib.PtrArray" c:type="GPtrArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="index_" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24983">the index of the pointer to steal</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="unref" c:identifier="g_ptr_array_unref" version="2.22" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24997">Atomically decrements the reference count of @array by one. If the
|
|
reference count drops to 0, the effect is the same as calling
|
|
g_ptr_array_free() with @free_segment set to %TRUE. This function
|
|
is thread-safe and may be called from any thread.</doc>
|
|
<source-position filename="garray.h" line="155"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="array" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24999">A #GPtrArray</doc>
|
|
<array name="GLib.PtrArray" c:type="GPtrArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
</record>
|
|
<record name="Queue" c:type="GQueue">
|
|
<doc xml:space="preserve" filename="gqueue.h" line="38">Contains the public fields of a
|
|
[Queue][glib-Double-ended-Queues].</doc>
|
|
<source-position filename="gqueue.h" line="52"/>
|
|
<field name="head" writable="1">
|
|
<doc xml:space="preserve" filename="gqueue.h" line="40">a pointer to the first element of the queue</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</field>
|
|
<field name="tail" writable="1">
|
|
<doc xml:space="preserve" filename="gqueue.h" line="41">a pointer to the last element of the queue</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</field>
|
|
<field name="length" writable="1">
|
|
<doc xml:space="preserve" filename="gqueue.h" line="42">the number of elements in the queue</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<method name="clear" c:identifier="g_queue_clear" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25094">Removes all the elements in @queue. If queue elements contain
|
|
dynamically-allocated memory, they should be freed first.</doc>
|
|
<source-position filename="gqueue.h" line="82"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25096">a #GQueue</doc>
|
|
<type name="Queue" c:type="GQueue*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="clear_full" c:identifier="g_queue_clear_full" version="2.60">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25105">Convenience method, which frees all the memory used by a #GQueue,
|
|
and calls the provided @free_func on each item in the #GQueue.</doc>
|
|
<source-position filename="gqueue.h" line="86"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25107">a pointer to a #GQueue</doc>
|
|
<type name="Queue" c:type="GQueue*"/>
|
|
</instance-parameter>
|
|
<parameter name="free_func" transfer-ownership="none" nullable="1" allow-none="1" scope="async">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25108">the function to be called to free memory allocated</doc>
|
|
<type name="DestroyNotify" c:type="GDestroyNotify"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="copy" c:identifier="g_queue_copy" version="2.4" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25117">Copies a @queue. Note that is a shallow copy. If the elements in the
|
|
queue consist of pointers to data, the pointers are copied, but the
|
|
actual data is not.</doc>
|
|
<source-position filename="gqueue.h" line="93"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25125">a copy of @queue</doc>
|
|
<type name="Queue" c:type="GQueue*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25119">a #GQueue</doc>
|
|
<type name="Queue" c:type="GQueue*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="delete_link" c:identifier="g_queue_delete_link" version="2.4" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25130">Removes @link_ from @queue and frees it.
|
|
|
|
@link_ must be part of @queue.</doc>
|
|
<source-position filename="gqueue.h" line="198"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25132">a #GQueue</doc>
|
|
<type name="Queue" c:type="GQueue*"/>
|
|
</instance-parameter>
|
|
<parameter name="link_" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25133">a #GList link that must be part of @queue</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="find" c:identifier="g_queue_find" version="2.4" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25143">Finds the first link in @queue which contains @data.</doc>
|
|
<source-position filename="gqueue.h" line="99"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25150">the first link in @queue which contains @data</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25145">a #GQueue</doc>
|
|
<type name="Queue" c:type="GQueue*"/>
|
|
</instance-parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25146">data to find</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="find_custom" c:identifier="g_queue_find_custom" version="2.4" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25155">Finds an element in a #GQueue, using a supplied function to find the
|
|
desired element. It iterates over the queue, calling the given function
|
|
which should return 0 when the desired element is found. The function
|
|
takes two gconstpointer arguments, the #GQueue element's data as the
|
|
first argument and the given user data as the second argument.</doc>
|
|
<source-position filename="gqueue.h" line="102"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25168">the found link, or %NULL if it wasn't found</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25157">a #GQueue</doc>
|
|
<type name="Queue" c:type="GQueue*"/>
|
|
</instance-parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25158">user data passed to @func</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
<parameter name="func" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25159">a #GCompareFunc to call for each element. It should return 0
|
|
when the desired element is found</doc>
|
|
<type name="CompareFunc" c:type="GCompareFunc"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="foreach" c:identifier="g_queue_foreach" version="2.4" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25173">Calls @func for each element in the queue passing @user_data to the
|
|
function.
|
|
|
|
It is safe for @func to remove the element from @queue, but it must
|
|
not modify any part of the queue after that element.</doc>
|
|
<source-position filename="gqueue.h" line="95"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25175">a #GQueue</doc>
|
|
<type name="Queue" c:type="GQueue*"/>
|
|
</instance-parameter>
|
|
<parameter name="func" transfer-ownership="none" closure="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25176">the function to call for each element's data</doc>
|
|
<type name="Func" c:type="GFunc"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25177">user data to pass to @func</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="free" c:identifier="g_queue_free">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25189">Frees the memory allocated for the #GQueue. Only call this function
|
|
if @queue was created with g_queue_new(). If queue elements contain
|
|
dynamically-allocated memory, they should be freed first.
|
|
|
|
If queue elements contain dynamically-allocated memory, you should
|
|
either use g_queue_free_full() or free them manually first.</doc>
|
|
<source-position filename="gqueue.h" line="75"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25191">a #GQueue</doc>
|
|
<type name="Queue" c:type="GQueue*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="free_full" c:identifier="g_queue_free_full" version="2.32">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25202">Convenience method, which frees all the memory used by a #GQueue,
|
|
and calls the specified destroy function on every element's data.
|
|
|
|
@free_func should not modify the queue (eg, by removing the freed
|
|
element from it).</doc>
|
|
<source-position filename="gqueue.h" line="77"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25204">a pointer to a #GQueue</doc>
|
|
<type name="Queue" c:type="GQueue*"/>
|
|
</instance-parameter>
|
|
<parameter name="free_func" transfer-ownership="none" scope="async">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25205">the function to be called to free each element's data</doc>
|
|
<type name="DestroyNotify" c:type="GDestroyNotify"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_length" c:identifier="g_queue_get_length" version="2.4">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25217">Returns the number of items in @queue.</doc>
|
|
<source-position filename="gqueue.h" line="89"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25223">the number of items in @queue</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25219">a #GQueue</doc>
|
|
<type name="Queue" c:type="GQueue*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="index" c:identifier="g_queue_index" version="2.4">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25228">Returns the position of the first element in @queue which contains @data.</doc>
|
|
<source-position filename="gqueue.h" line="135"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25235">the position of the first element in @queue which
|
|
contains @data, or -1 if no element in @queue contains @data</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25230">a #GQueue</doc>
|
|
<type name="Queue" c:type="GQueue*"/>
|
|
</instance-parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25231">the data to find</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="init" c:identifier="g_queue_init" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25241">A statically-allocated #GQueue must be initialized with this function
|
|
before it can be used. Alternatively you can initialize it with
|
|
#G_QUEUE_INIT. It is not necessary to initialize queues created with
|
|
g_queue_new().</doc>
|
|
<source-position filename="gqueue.h" line="80"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25243">an uninitialized #GQueue</doc>
|
|
<type name="Queue" c:type="GQueue*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="insert_after" c:identifier="g_queue_insert_after" version="2.4" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25254">Inserts @data into @queue after @sibling.
|
|
|
|
@sibling must be part of @queue. Since GLib 2.44 a %NULL sibling pushes the
|
|
data at the head of the queue.</doc>
|
|
<source-position filename="gqueue.h" line="153"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25256">a #GQueue</doc>
|
|
<type name="Queue" c:type="GQueue*"/>
|
|
</instance-parameter>
|
|
<parameter name="sibling" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25257">a #GList link that must be part of @queue, or %NULL to
|
|
push at the head of the queue.</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25259">the data to insert</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="insert_after_link" c:identifier="g_queue_insert_after_link" version="2.62" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25270">Inserts @link_ into @queue after @sibling.
|
|
|
|
@sibling must be part of @queue.</doc>
|
|
<source-position filename="gqueue.h" line="157"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25272">a #GQueue</doc>
|
|
<type name="Queue" c:type="GQueue*"/>
|
|
</instance-parameter>
|
|
<parameter name="sibling" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25273">a #GList link that must be part of @queue, or %NULL to
|
|
push at the head of the queue.</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="link_" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25275">a #GList link to insert which must not be part of any other list.</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="insert_before" c:identifier="g_queue_insert_before" version="2.4" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25285">Inserts @data into @queue before @sibling.
|
|
|
|
@sibling must be part of @queue. Since GLib 2.44 a %NULL sibling pushes the
|
|
data at the tail of the queue.</doc>
|
|
<source-position filename="gqueue.h" line="144"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25287">a #GQueue</doc>
|
|
<type name="Queue" c:type="GQueue*"/>
|
|
</instance-parameter>
|
|
<parameter name="sibling" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25288">a #GList link that must be part of @queue, or %NULL to
|
|
push at the tail of the queue.</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25290">the data to insert</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="insert_before_link" c:identifier="g_queue_insert_before_link" version="2.62" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25301">Inserts @link_ into @queue before @sibling.
|
|
|
|
@sibling must be part of @queue.</doc>
|
|
<source-position filename="gqueue.h" line="148"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25303">a #GQueue</doc>
|
|
<type name="Queue" c:type="GQueue*"/>
|
|
</instance-parameter>
|
|
<parameter name="sibling" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25304">a #GList link that must be part of @queue, or %NULL to
|
|
push at the tail of the queue.</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="link_" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25306">a #GList link to insert which must not be part of any other list.</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="insert_sorted" c:identifier="g_queue_insert_sorted" version="2.4" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25316">Inserts @data into @queue using @func to determine the new position.</doc>
|
|
<source-position filename="gqueue.h" line="162"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25318">a #GQueue</doc>
|
|
<type name="Queue" c:type="GQueue*"/>
|
|
</instance-parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25319">the data to insert</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="func" transfer-ownership="none" closure="2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25320">the #GCompareDataFunc used to compare elements in the queue. It is
|
|
called with two elements of the @queue and @user_data. It should
|
|
return 0 if the elements are equal, a negative value if the first
|
|
element comes before the second, and a positive value if the second
|
|
element comes before the first.</doc>
|
|
<type name="CompareDataFunc" c:type="GCompareDataFunc"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25325">user data passed to @func</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="is_empty" c:identifier="g_queue_is_empty">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25333">Returns %TRUE if the queue is empty.</doc>
|
|
<source-position filename="gqueue.h" line="84"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25339">%TRUE if the queue is empty</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25335">a #GQueue.</doc>
|
|
<type name="Queue" c:type="GQueue*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="link_index" c:identifier="g_queue_link_index" version="2.4" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25343">Returns the position of @link_ in @queue.</doc>
|
|
<source-position filename="gqueue.h" line="192"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25350">the position of @link_, or -1 if the link is
|
|
not part of @queue</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25345">a #GQueue</doc>
|
|
<type name="Queue" c:type="GQueue*"/>
|
|
</instance-parameter>
|
|
<parameter name="link_" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25346">a #GList link</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="peek_head" c:identifier="g_queue_peek_head">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25365">Returns the first element of the queue.</doc>
|
|
<source-position filename="gqueue.h" line="128"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25371">the data of the first element in the queue, or %NULL
|
|
if the queue is empty</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25367">a #GQueue</doc>
|
|
<type name="Queue" c:type="GQueue*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="peek_head_link" c:identifier="g_queue_peek_head_link" version="2.4" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25376">Returns the first link in @queue.</doc>
|
|
<source-position filename="gqueue.h" line="185"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25382">the first link in @queue, or %NULL if @queue is empty</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25378">a #GQueue</doc>
|
|
<type name="Queue" c:type="GQueue*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="peek_nth" c:identifier="g_queue_peek_nth" version="2.4">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25387">Returns the @n'th element of @queue.</doc>
|
|
<source-position filename="gqueue.h" line="132"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25394">the data for the @n'th element of @queue,
|
|
or %NULL if @n is off the end of @queue</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25389">a #GQueue</doc>
|
|
<type name="Queue" c:type="GQueue*"/>
|
|
</instance-parameter>
|
|
<parameter name="n" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25390">the position of the element</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="peek_nth_link" c:identifier="g_queue_peek_nth_link" version="2.4" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25400">Returns the link at the given position</doc>
|
|
<source-position filename="gqueue.h" line="189"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25407">the link at the @n'th position, or %NULL
|
|
if @n is off the end of the list</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25402">a #GQueue</doc>
|
|
<type name="Queue" c:type="GQueue*"/>
|
|
</instance-parameter>
|
|
<parameter name="n" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25403">the position of the link</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="peek_tail" c:identifier="g_queue_peek_tail">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25413">Returns the last element of the queue.</doc>
|
|
<source-position filename="gqueue.h" line="130"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25419">the data of the last element in the queue, or %NULL
|
|
if the queue is empty</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25415">a #GQueue</doc>
|
|
<type name="Queue" c:type="GQueue*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="peek_tail_link" c:identifier="g_queue_peek_tail_link" version="2.4" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25424">Returns the last link in @queue.</doc>
|
|
<source-position filename="gqueue.h" line="187"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25430">the last link in @queue, or %NULL if @queue is empty</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25426">a #GQueue</doc>
|
|
<type name="Queue" c:type="GQueue*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="pop_head" c:identifier="g_queue_pop_head">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25435">Removes the first element of the queue and returns its data.</doc>
|
|
<source-position filename="gqueue.h" line="121"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25441">the data of the first element in the queue, or %NULL
|
|
if the queue is empty</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25437">a #GQueue</doc>
|
|
<type name="Queue" c:type="GQueue*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="pop_head_link" c:identifier="g_queue_pop_head_link" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25446">Removes and returns the first element of the queue.</doc>
|
|
<source-position filename="gqueue.h" line="178"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25452">the #GList element at the head of the queue, or %NULL
|
|
if the queue is empty</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25448">a #GQueue</doc>
|
|
<type name="Queue" c:type="GQueue*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="pop_nth" c:identifier="g_queue_pop_nth" version="2.4">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25457">Removes the @n'th element of @queue and returns its data.</doc>
|
|
<source-position filename="gqueue.h" line="125"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25464">the element's data, or %NULL if @n is off the end of @queue</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25459">a #GQueue</doc>
|
|
<type name="Queue" c:type="GQueue*"/>
|
|
</instance-parameter>
|
|
<parameter name="n" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25460">the position of the element</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="pop_nth_link" c:identifier="g_queue_pop_nth_link" version="2.4" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25469">Removes and returns the link at the given position.</doc>
|
|
<source-position filename="gqueue.h" line="182"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25476">the @n'th link, or %NULL if @n is off the end of @queue</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25471">a #GQueue</doc>
|
|
<type name="Queue" c:type="GQueue*"/>
|
|
</instance-parameter>
|
|
<parameter name="n" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25472">the link's position</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="pop_tail" c:identifier="g_queue_pop_tail">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25481">Removes the last element of the queue and returns its data.</doc>
|
|
<source-position filename="gqueue.h" line="123"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25487">the data of the last element in the queue, or %NULL
|
|
if the queue is empty</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25483">a #GQueue</doc>
|
|
<type name="Queue" c:type="GQueue*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="pop_tail_link" c:identifier="g_queue_pop_tail_link" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25492">Removes and returns the last element of the queue.</doc>
|
|
<source-position filename="gqueue.h" line="180"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25498">the #GList element at the tail of the queue, or %NULL
|
|
if the queue is empty</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25494">a #GQueue</doc>
|
|
<type name="Queue" c:type="GQueue*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="push_head" c:identifier="g_queue_push_head">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25503">Adds a new element at the head of the queue.</doc>
|
|
<source-position filename="gqueue.h" line="111"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25505">a #GQueue.</doc>
|
|
<type name="Queue" c:type="GQueue*"/>
|
|
</instance-parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25506">the data for the new element.</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="push_head_link" c:identifier="g_queue_push_head_link" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25512">Adds a new element at the head of the queue.</doc>
|
|
<source-position filename="gqueue.h" line="168"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25514">a #GQueue</doc>
|
|
<type name="Queue" c:type="GQueue*"/>
|
|
</instance-parameter>
|
|
<parameter name="link_" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25515">a single #GList element, not a list with more than one element</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="push_nth" c:identifier="g_queue_push_nth" version="2.4">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25521">Inserts a new element into @queue at the given position.</doc>
|
|
<source-position filename="gqueue.h" line="117"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25523">a #GQueue</doc>
|
|
<type name="Queue" c:type="GQueue*"/>
|
|
</instance-parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25524">the data for the new element</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="n" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25525">the position to insert the new element. If @n is negative or
|
|
larger than the number of elements in the @queue, the element is
|
|
added to the end of the queue.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="push_nth_link" c:identifier="g_queue_push_nth_link" version="2.4" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25535">Inserts @link into @queue at the given position.</doc>
|
|
<source-position filename="gqueue.h" line="174"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25537">a #GQueue</doc>
|
|
<type name="Queue" c:type="GQueue*"/>
|
|
</instance-parameter>
|
|
<parameter name="n" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25538">the position to insert the link. If this is negative or larger than
|
|
the number of elements in @queue, the link is added to the end of
|
|
@queue.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="link_" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25541">the link to add to @queue</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="push_tail" c:identifier="g_queue_push_tail">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25549">Adds a new element at the tail of the queue.</doc>
|
|
<source-position filename="gqueue.h" line="114"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25551">a #GQueue</doc>
|
|
<type name="Queue" c:type="GQueue*"/>
|
|
</instance-parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25552">the data for the new element</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="push_tail_link" c:identifier="g_queue_push_tail_link" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25558">Adds a new element at the tail of the queue.</doc>
|
|
<source-position filename="gqueue.h" line="171"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25560">a #GQueue</doc>
|
|
<type name="Queue" c:type="GQueue*"/>
|
|
</instance-parameter>
|
|
<parameter name="link_" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25561">a single #GList element, not a list with more than one element</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="remove" c:identifier="g_queue_remove" version="2.4">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25567">Removes the first element in @queue that contains @data.</doc>
|
|
<source-position filename="gqueue.h" line="138"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25574">%TRUE if @data was found and removed from @queue</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25569">a #GQueue</doc>
|
|
<type name="Queue" c:type="GQueue*"/>
|
|
</instance-parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25570">the data to remove</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="remove_all" c:identifier="g_queue_remove_all" version="2.4">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25579">Remove all elements whose data equals @data from @queue.</doc>
|
|
<source-position filename="gqueue.h" line="141"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25586">the number of elements removed from @queue</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25581">a #GQueue</doc>
|
|
<type name="Queue" c:type="GQueue*"/>
|
|
</instance-parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25582">the data to remove</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="reverse" c:identifier="g_queue_reverse" version="2.4">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25591">Reverses the order of the items in @queue.</doc>
|
|
<source-position filename="gqueue.h" line="91"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25593">a #GQueue</doc>
|
|
<type name="Queue" c:type="GQueue*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="sort" c:identifier="g_queue_sort" version="2.4" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25601">Sorts @queue using @compare_func.</doc>
|
|
<source-position filename="gqueue.h" line="106"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25603">a #GQueue</doc>
|
|
<type name="Queue" c:type="GQueue*"/>
|
|
</instance-parameter>
|
|
<parameter name="compare_func" transfer-ownership="none" closure="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25604">the #GCompareDataFunc used to sort @queue. This function
|
|
is passed two elements of the queue and should return 0 if they are
|
|
equal, a negative value if the first comes before the second, and
|
|
a positive value if the second comes before the first.</doc>
|
|
<type name="CompareDataFunc" c:type="GCompareDataFunc"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25608">user data passed to @compare_func</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="unlink" c:identifier="g_queue_unlink" version="2.4" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25616">Unlinks @link_ so that it will no longer be part of @queue.
|
|
The link is not freed.
|
|
|
|
@link_ must be part of @queue.</doc>
|
|
<source-position filename="gqueue.h" line="195"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="queue" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25618">a #GQueue</doc>
|
|
<type name="Queue" c:type="GQueue*"/>
|
|
</instance-parameter>
|
|
<parameter name="link_" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25619">a #GList link that must be part of @queue</doc>
|
|
<type name="GLib.List" c:type="GList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<function name="new" c:identifier="g_queue_new" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25356">Creates a new #GQueue.</doc>
|
|
<source-position filename="gqueue.h" line="73"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25361">a newly allocated #GQueue</doc>
|
|
<type name="Queue" c:type="GQueue*"/>
|
|
</return-value>
|
|
</function>
|
|
</record>
|
|
<record name="RWLock" c:type="GRWLock" version="2.32">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1503">The GRWLock struct is an opaque data structure to represent a
|
|
reader-writer lock. It is similar to a #GMutex in that it allows
|
|
multiple threads to coordinate access to a shared resource.
|
|
|
|
The difference to a mutex is that a reader-writer lock discriminates
|
|
between read-only ('reader') and full ('writer') access. While only
|
|
one thread at a time is allowed write access (by holding the 'writer'
|
|
lock via g_rw_lock_writer_lock()), multiple threads can gain
|
|
simultaneous read-only access (by holding the 'reader' lock via
|
|
g_rw_lock_reader_lock()).
|
|
|
|
It is unspecified whether readers or writers have priority in acquiring the
|
|
lock when a reader already holds the lock and a writer is queued to acquire
|
|
it.
|
|
|
|
Here is an example for an array with access functions:
|
|
|[<!-- language="C" -->
|
|
GRWLock lock;
|
|
GPtrArray *array;
|
|
|
|
gpointer
|
|
my_array_get (guint index)
|
|
{
|
|
gpointer retval = NULL;
|
|
|
|
if (!array)
|
|
return NULL;
|
|
|
|
g_rw_lock_reader_lock (&lock);
|
|
if (index < array->len)
|
|
retval = g_ptr_array_index (array, index);
|
|
g_rw_lock_reader_unlock (&lock);
|
|
|
|
return retval;
|
|
}
|
|
|
|
void
|
|
my_array_set (guint index, gpointer data)
|
|
{
|
|
g_rw_lock_writer_lock (&lock);
|
|
|
|
if (!array)
|
|
array = g_ptr_array_new ();
|
|
|
|
if (index >= array->len)
|
|
g_ptr_array_set_size (array, index+1);
|
|
g_ptr_array_index (array, index) = data;
|
|
|
|
g_rw_lock_writer_unlock (&lock);
|
|
}
|
|
]|
|
|
This example shows an array which can be accessed by many readers
|
|
(the my_array_get() function) simultaneously, whereas the writers
|
|
(the my_array_set() function) will only be allowed one at a time
|
|
and only if no readers currently access the array. This is because
|
|
of the potentially dangerous resizing of the array. Using these
|
|
functions is fully multi-thread safe now.
|
|
|
|
If a #GRWLock is allocated in static storage then it can be used
|
|
without initialisation. Otherwise, you should call
|
|
g_rw_lock_init() on it and g_rw_lock_clear() when done.
|
|
|
|
A GRWLock should only be accessed with the g_rw_lock_ functions.</doc>
|
|
<source-position filename="gthread.h" line="70"/>
|
|
<field name="p" readable="0" private="1">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</field>
|
|
<field name="i" readable="0" private="1">
|
|
<array zero-terminated="0" fixed-size="2">
|
|
<type name="guint" c:type="guint"/>
|
|
</array>
|
|
</field>
|
|
<method name="clear" c:identifier="g_rw_lock_clear">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26966">Frees the resources allocated to a lock with g_rw_lock_init().
|
|
|
|
This function should not be used with a #GRWLock that has been
|
|
statically allocated.
|
|
|
|
Calling g_rw_lock_clear() when any thread holds the lock
|
|
leads to undefined behaviour.
|
|
|
|
Sine: 2.32</doc>
|
|
<source-position filename="gthread.h" line="177"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="rw_lock" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26968">an initialized #GRWLock</doc>
|
|
<type name="RWLock" c:type="GRWLock*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="init" c:identifier="g_rw_lock_init" version="2.32">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26982">Initializes a #GRWLock so that it can be used.
|
|
|
|
This function is useful to initialize a lock that has been
|
|
allocated on the stack, or as part of a larger structure. It is not
|
|
necessary to initialise a reader-writer lock that has been statically
|
|
allocated.
|
|
|
|
|[<!-- language="C" -->
|
|
typedef struct {
|
|
GRWLock l;
|
|
...
|
|
} Blob;
|
|
|
|
Blob *b;
|
|
|
|
b = g_new (Blob, 1);
|
|
g_rw_lock_init (&b->l);
|
|
]|
|
|
|
|
To undo the effect of g_rw_lock_init() when a lock is no longer
|
|
needed, use g_rw_lock_clear().
|
|
|
|
Calling g_rw_lock_init() on an already initialized #GRWLock leads
|
|
to undefined behaviour.</doc>
|
|
<source-position filename="gthread.h" line="175"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="rw_lock" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26984">an uninitialized #GRWLock</doc>
|
|
<type name="RWLock" c:type="GRWLock*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="reader_lock" c:identifier="g_rw_lock_reader_lock" version="2.32">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27015">Obtain a read lock on @rw_lock. If another thread currently holds
|
|
the write lock on @rw_lock, the current thread will block. If another thread
|
|
does not hold the write lock, but is waiting for it, it is implementation
|
|
defined whether the reader or writer will block. Read locks can be taken
|
|
recursively.
|
|
|
|
It is implementation-defined how many threads are allowed to
|
|
hold read locks on the same lock simultaneously. If the limit is hit,
|
|
or if a deadlock is detected, a critical warning will be emitted.</doc>
|
|
<source-position filename="gthread.h" line="185"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="rw_lock" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27017">a #GRWLock</doc>
|
|
<type name="RWLock" c:type="GRWLock*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="reader_trylock" c:identifier="g_rw_lock_reader_trylock" version="2.32">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27033">Tries to obtain a read lock on @rw_lock and returns %TRUE if
|
|
the read lock was successfully obtained. Otherwise it
|
|
returns %FALSE.</doc>
|
|
<source-position filename="gthread.h" line="187"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27041">%TRUE if @rw_lock could be locked</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="rw_lock" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27035">a #GRWLock</doc>
|
|
<type name="RWLock" c:type="GRWLock*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="reader_unlock" c:identifier="g_rw_lock_reader_unlock" version="2.32">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27046">Release a read lock on @rw_lock.
|
|
|
|
Calling g_rw_lock_reader_unlock() on a lock that is not held
|
|
by the current thread leads to undefined behaviour.</doc>
|
|
<source-position filename="gthread.h" line="189"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="rw_lock" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27048">a #GRWLock</doc>
|
|
<type name="RWLock" c:type="GRWLock*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="writer_lock" c:identifier="g_rw_lock_writer_lock" version="2.32">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27059">Obtain a write lock on @rw_lock. If any thread already holds
|
|
a read or write lock on @rw_lock, the current thread will block
|
|
until all other threads have dropped their locks on @rw_lock.</doc>
|
|
<source-position filename="gthread.h" line="179"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="rw_lock" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27061">a #GRWLock</doc>
|
|
<type name="RWLock" c:type="GRWLock*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="writer_trylock" c:identifier="g_rw_lock_writer_trylock" version="2.32">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27071">Tries to obtain a write lock on @rw_lock. If any other thread holds
|
|
a read or write lock on @rw_lock, it immediately returns %FALSE.
|
|
Otherwise it locks @rw_lock and returns %TRUE.</doc>
|
|
<source-position filename="gthread.h" line="181"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27079">%TRUE if @rw_lock could be locked</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="rw_lock" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27073">a #GRWLock</doc>
|
|
<type name="RWLock" c:type="GRWLock*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="writer_unlock" c:identifier="g_rw_lock_writer_unlock" version="2.32">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27084">Release a write lock on @rw_lock.
|
|
|
|
Calling g_rw_lock_writer_unlock() on a lock that is not held
|
|
by the current thread leads to undefined behaviour.</doc>
|
|
<source-position filename="gthread.h" line="183"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="rw_lock" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27086">a #GRWLock</doc>
|
|
<type name="RWLock" c:type="GRWLock*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
</record>
|
|
<record name="Rand" c:type="GRand" disguised="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1574">The GRand struct is an opaque data structure. It should only be
|
|
accessed through the g_rand_* functions.</doc>
|
|
<source-position filename="grand.h" line="36"/>
|
|
<method name="copy" c:identifier="g_rand_copy" version="2.4" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25641">Copies a #GRand into a new one with the same exact state as before.
|
|
This way you can take a snapshot of the random number generator for
|
|
replaying later.</doc>
|
|
<source-position filename="grand.h" line="57"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25649">the new #GRand</doc>
|
|
<type name="Rand" c:type="GRand*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="rand_" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25643">a #GRand</doc>
|
|
<type name="Rand" c:type="GRand*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="double" c:identifier="g_rand_double">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25654">Returns the next random #gdouble from @rand_ equally distributed over
|
|
the range [0..1).</doc>
|
|
<source-position filename="grand.h" line="75"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25661">a random number</doc>
|
|
<type name="gdouble" c:type="gdouble"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="rand_" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25656">a #GRand</doc>
|
|
<type name="Rand" c:type="GRand*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="double_range" c:identifier="g_rand_double_range">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25665">Returns the next random #gdouble from @rand_ equally distributed over
|
|
the range [@begin..@end).</doc>
|
|
<source-position filename="grand.h" line="77"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25674">a random number</doc>
|
|
<type name="gdouble" c:type="gdouble"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="rand_" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25667">a #GRand</doc>
|
|
<type name="Rand" c:type="GRand*"/>
|
|
</instance-parameter>
|
|
<parameter name="begin" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25668">lower closed bound of the interval</doc>
|
|
<type name="gdouble" c:type="gdouble"/>
|
|
</parameter>
|
|
<parameter name="end" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25669">upper open bound of the interval</doc>
|
|
<type name="gdouble" c:type="gdouble"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="free" c:identifier="g_rand_free">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25678">Frees the memory allocated for the #GRand.</doc>
|
|
<source-position filename="grand.h" line="55"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="rand_" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25680">a #GRand</doc>
|
|
<type name="Rand" c:type="GRand*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="int" c:identifier="g_rand_int">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25686">Returns the next random #guint32 from @rand_ equally distributed over
|
|
the range [0..2^32-1].</doc>
|
|
<source-position filename="grand.h" line="69"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25693">a random number</doc>
|
|
<type name="guint32" c:type="guint32"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="rand_" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25688">a #GRand</doc>
|
|
<type name="Rand" c:type="GRand*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="int_range" c:identifier="g_rand_int_range">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25697">Returns the next random #gint32 from @rand_ equally distributed over
|
|
the range [@begin..@end-1].</doc>
|
|
<source-position filename="grand.h" line="71"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25706">a random number</doc>
|
|
<type name="gint32" c:type="gint32"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="rand_" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25699">a #GRand</doc>
|
|
<type name="Rand" c:type="GRand*"/>
|
|
</instance-parameter>
|
|
<parameter name="begin" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25700">lower closed bound of the interval</doc>
|
|
<type name="gint32" c:type="gint32"/>
|
|
</parameter>
|
|
<parameter name="end" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25701">upper open bound of the interval</doc>
|
|
<type name="gint32" c:type="gint32"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_seed" c:identifier="g_rand_set_seed">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25746">Sets the seed for the random number generator #GRand to @seed.</doc>
|
|
<source-position filename="grand.h" line="59"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="rand_" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25748">a #GRand</doc>
|
|
<type name="Rand" c:type="GRand*"/>
|
|
</instance-parameter>
|
|
<parameter name="seed" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25749">a value to reinitialize the random number generator</doc>
|
|
<type name="guint32" c:type="guint32"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_seed_array" c:identifier="g_rand_set_seed_array" version="2.4">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25755">Initializes the random number generator by an array of longs.
|
|
Array can be of arbitrary size, though only the first 624 values
|
|
are taken. This function is useful if you have many low entropy
|
|
seeds, or if you require more then 32 bits of actual entropy for
|
|
your application.</doc>
|
|
<source-position filename="grand.h" line="62"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="rand_" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25757">a #GRand</doc>
|
|
<type name="Rand" c:type="GRand*"/>
|
|
</instance-parameter>
|
|
<parameter name="seed" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25758">array to initialize with</doc>
|
|
<type name="guint32" c:type="const guint32*"/>
|
|
</parameter>
|
|
<parameter name="seed_length" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25759">length of array</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<function name="new" c:identifier="g_rand_new" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25710">Creates a new random number generator initialized with a seed taken
|
|
either from `/dev/urandom` (if existing) or from the current time
|
|
(as a fallback).
|
|
|
|
On Windows, the seed is taken from rand_s().</doc>
|
|
<source-position filename="grand.h" line="53"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25719">the new #GRand</doc>
|
|
<type name="Rand" c:type="GRand*"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="new_with_seed" c:identifier="g_rand_new_with_seed" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25723">Creates a new random number generator initialized with @seed.</doc>
|
|
<source-position filename="grand.h" line="48"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25729">the new #GRand</doc>
|
|
<type name="Rand" c:type="GRand*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="seed" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25725">a value to initialize the random number generator</doc>
|
|
<type name="guint32" c:type="guint32"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="new_with_seed_array" c:identifier="g_rand_new_with_seed_array" version="2.4" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25733">Creates a new random number generator initialized with @seed.</doc>
|
|
<source-position filename="grand.h" line="50"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25741">the new #GRand</doc>
|
|
<type name="Rand" c:type="GRand*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="seed" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25735">an array of seeds to initialize the random number generator</doc>
|
|
<type name="guint32" c:type="const guint32*"/>
|
|
</parameter>
|
|
<parameter name="seed_length" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25736">an array of seeds to initialize the random number
|
|
generator</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
</record>
|
|
<record name="RecMutex" c:type="GRecMutex" version="2.32">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1582">The GRecMutex struct is an opaque data structure to represent a
|
|
recursive mutex. It is similar to a #GMutex with the difference
|
|
that it is possible to lock a GRecMutex multiple times in the same
|
|
thread without deadlock. When doing so, care has to be taken to
|
|
unlock the recursive mutex as often as it has been locked.
|
|
|
|
If a #GRecMutex is allocated in static storage then it can be used
|
|
without initialisation. Otherwise, you should call
|
|
g_rec_mutex_init() on it and g_rec_mutex_clear() when done.
|
|
|
|
A GRecMutex should only be accessed with the
|
|
g_rec_mutex_ functions.</doc>
|
|
<source-position filename="gthread.h" line="84"/>
|
|
<field name="p" readable="0" private="1">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</field>
|
|
<field name="i" readable="0" private="1">
|
|
<array zero-terminated="0" fixed-size="2">
|
|
<type name="guint" c:type="guint"/>
|
|
</array>
|
|
</field>
|
|
<method name="clear" c:identifier="g_rec_mutex_clear">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26000">Frees the resources allocated to a recursive mutex with
|
|
g_rec_mutex_init().
|
|
|
|
This function should not be used with a #GRecMutex that has been
|
|
statically allocated.
|
|
|
|
Calling g_rec_mutex_clear() on a locked recursive mutex leads
|
|
to undefined behaviour.
|
|
|
|
Sine: 2.32</doc>
|
|
<source-position filename="gthread.h" line="194"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="rec_mutex" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26002">an initialized #GRecMutex</doc>
|
|
<type name="RecMutex" c:type="GRecMutex*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="init" c:identifier="g_rec_mutex_init" version="2.32">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26017">Initializes a #GRecMutex so that it can be used.
|
|
|
|
This function is useful to initialize a recursive mutex
|
|
that has been allocated on the stack, or as part of a larger
|
|
structure.
|
|
|
|
It is not necessary to initialise a recursive mutex that has been
|
|
statically allocated.
|
|
|
|
|[<!-- language="C" -->
|
|
typedef struct {
|
|
GRecMutex m;
|
|
...
|
|
} Blob;
|
|
|
|
Blob *b;
|
|
|
|
b = g_new (Blob, 1);
|
|
g_rec_mutex_init (&b->m);
|
|
]|
|
|
|
|
Calling g_rec_mutex_init() on an already initialized #GRecMutex
|
|
leads to undefined behaviour.
|
|
|
|
To undo the effect of g_rec_mutex_init() when a recursive mutex
|
|
is no longer needed, use g_rec_mutex_clear().</doc>
|
|
<source-position filename="gthread.h" line="192"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="rec_mutex" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26019">an uninitialized #GRecMutex</doc>
|
|
<type name="RecMutex" c:type="GRecMutex*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="lock" c:identifier="g_rec_mutex_lock" version="2.32">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26052">Locks @rec_mutex. If @rec_mutex is already locked by another
|
|
thread, the current thread will block until @rec_mutex is
|
|
unlocked by the other thread. If @rec_mutex is already locked
|
|
by the current thread, the 'lock count' of @rec_mutex is increased.
|
|
The mutex will only become available again when it is unlocked
|
|
as many times as it has been locked.</doc>
|
|
<source-position filename="gthread.h" line="196"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="rec_mutex" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26054">a #GRecMutex</doc>
|
|
<type name="RecMutex" c:type="GRecMutex*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="trylock" c:identifier="g_rec_mutex_trylock" version="2.32">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26067">Tries to lock @rec_mutex. If @rec_mutex is already locked
|
|
by another thread, it immediately returns %FALSE. Otherwise
|
|
it locks @rec_mutex and returns %TRUE.</doc>
|
|
<source-position filename="gthread.h" line="198"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26075">%TRUE if @rec_mutex could be locked</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="rec_mutex" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26069">a #GRecMutex</doc>
|
|
<type name="RecMutex" c:type="GRecMutex*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="unlock" c:identifier="g_rec_mutex_unlock" version="2.32">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26080">Unlocks @rec_mutex. If another thread is blocked in a
|
|
g_rec_mutex_lock() call for @rec_mutex, it will become unblocked
|
|
and can lock @rec_mutex itself.
|
|
|
|
Calling g_rec_mutex_unlock() on a recursive mutex that is not
|
|
locked by the current thread leads to undefined behaviour.</doc>
|
|
<source-position filename="gthread.h" line="200"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="rec_mutex" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26082">a #GRecMutex</doc>
|
|
<type name="RecMutex" c:type="GRecMutex*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
</record>
|
|
<record name="Regex" c:type="GRegex" version="2.14" glib:type-name="GRegex" glib:get-type="g_regex_get_type" c:symbol-prefix="regex">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="5913">The g_regex_*() functions implement regular
|
|
expression pattern matching using syntax and semantics similar to
|
|
Perl regular expression.
|
|
|
|
Some functions accept a @start_position argument, setting it differs
|
|
from just passing over a shortened string and setting #G_REGEX_MATCH_NOTBOL
|
|
in the case of a pattern that begins with any kind of lookbehind assertion.
|
|
For example, consider the pattern "\Biss\B" which finds occurrences of "iss"
|
|
in the middle of words. ("\B" matches only if the current position in the
|
|
subject is not a word boundary.) When applied to the string "Mississipi"
|
|
from the fourth byte, namely "issipi", it does not match, because "\B" is
|
|
always false at the start of the subject, which is deemed to be a word
|
|
boundary. However, if the entire string is passed , but with
|
|
@start_position set to 4, it finds the second occurrence of "iss" because
|
|
it is able to look behind the starting point to discover that it is
|
|
preceded by a letter.
|
|
|
|
Note that, unless you set the #G_REGEX_RAW flag, all the strings passed
|
|
to these functions must be encoded in UTF-8. The lengths and the positions
|
|
inside the strings are in bytes and not in characters, so, for instance,
|
|
"\xc3\xa0" (i.e. "à") is two bytes long but it is treated as a
|
|
single character. If you set #G_REGEX_RAW the strings can be non-valid
|
|
UTF-8 strings and a byte is treated as a character, so "\xc3\xa0" is two
|
|
bytes and two characters long.
|
|
|
|
When matching a pattern, "\n" matches only against a "\n" character in
|
|
the string, and "\r" matches only a "\r" character. To match any newline
|
|
sequence use "\R". This particular group matches either the two-character
|
|
sequence CR + LF ("\r\n"), or one of the single characters LF (linefeed,
|
|
U+000A, "\n"), VT vertical tab, U+000B, "\v"), FF (formfeed, U+000C, "\f"),
|
|
CR (carriage return, U+000D, "\r"), NEL (next line, U+0085), LS (line
|
|
separator, U+2028), or PS (paragraph separator, U+2029).
|
|
|
|
The behaviour of the dot, circumflex, and dollar metacharacters are
|
|
affected by newline characters, the default is to recognize any newline
|
|
character (the same characters recognized by "\R"). This can be changed
|
|
with #G_REGEX_NEWLINE_CR, #G_REGEX_NEWLINE_LF and #G_REGEX_NEWLINE_CRLF
|
|
compile options, and with #G_REGEX_MATCH_NEWLINE_ANY,
|
|
#G_REGEX_MATCH_NEWLINE_CR, #G_REGEX_MATCH_NEWLINE_LF and
|
|
#G_REGEX_MATCH_NEWLINE_CRLF match options. These settings are also
|
|
relevant when compiling a pattern if #G_REGEX_EXTENDED is set, and an
|
|
unescaped "#" outside a character class is encountered. This indicates
|
|
a comment that lasts until after the next newline.
|
|
|
|
When setting the %G_REGEX_JAVASCRIPT_COMPAT flag, pattern syntax and pattern
|
|
matching is changed to be compatible with the way that regular expressions
|
|
work in JavaScript. More precisely, a lonely ']' character in the pattern
|
|
is a syntax error; the '\x' escape only allows 0 to 2 hexadecimal digits, and
|
|
you must use the '\u' escape sequence with 4 hex digits to specify a unicode
|
|
codepoint instead of '\x' or 'x{....}'. If '\x' or '\u' are not followed by
|
|
the specified number of hex digits, they match 'x' and 'u' literally; also
|
|
'\U' always matches 'U' instead of being an error in the pattern. Finally,
|
|
pattern matching is modified so that back references to an unset subpattern
|
|
group produces a match with the empty string instead of an error. See
|
|
pcreapi(3) for more information.
|
|
|
|
Creating and manipulating the same #GRegex structure from different
|
|
threads is not a problem as #GRegex does not modify its internal
|
|
state between creation and destruction, on the other hand #GMatchInfo
|
|
is not threadsafe.
|
|
|
|
The regular expressions low-level functionalities are obtained through
|
|
the excellent
|
|
[PCRE](http://www.pcre.org/)
|
|
library written by Philip Hazel.</doc>
|
|
<source-position filename="gregex.h" line="413"/>
|
|
<constructor name="new" c:identifier="g_regex_new" version="2.14" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26600">Compiles the regular expression to an internal form, and does
|
|
the initial setup of the #GRegex structure.</doc>
|
|
<source-position filename="gregex.h" line="447"/>
|
|
<return-value transfer-ownership="full" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26610">a #GRegex structure or %NULL if an error occured. Call
|
|
g_regex_unref() when you are done with it</doc>
|
|
<type name="Regex" c:type="GRegex*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="pattern" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26602">the regular expression</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="compile_options" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26603">compile options for the regular expression, or 0</doc>
|
|
<type name="RegexCompileFlags" c:type="GRegexCompileFlags"/>
|
|
</parameter>
|
|
<parameter name="match_options" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26604">match options for the regular expression, or 0</doc>
|
|
<type name="RegexMatchFlags" c:type="GRegexMatchFlags"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<method name="get_capture_count" c:identifier="g_regex_get_capture_count" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26273">Returns the number of capturing subpatterns in the pattern.</doc>
|
|
<source-position filename="gregex.h" line="460"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26279">the number of capturing subpatterns</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="regex" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26275">a #GRegex</doc>
|
|
<type name="Regex" c:type="const GRegex*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_compile_flags" c:identifier="g_regex_get_compile_flags" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26284">Returns the compile options that @regex was created with.
|
|
|
|
Depending on the version of PCRE that is used, this may or may not
|
|
include flags set by option expressions such as `(?i)` found at the
|
|
top-level within the compiled pattern.</doc>
|
|
<source-position filename="gregex.h" line="476"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26294">flags from #GRegexCompileFlags</doc>
|
|
<type name="RegexCompileFlags" c:type="GRegexCompileFlags"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="regex" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26286">a #GRegex</doc>
|
|
<type name="Regex" c:type="const GRegex*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_has_cr_or_lf" c:identifier="g_regex_get_has_cr_or_lf" version="2.34">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26299">Checks whether the pattern contains explicit CR or LF references.</doc>
|
|
<source-position filename="gregex.h" line="462"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26305">%TRUE if the pattern contains explicit CR or LF references</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="regex" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26301">a #GRegex structure</doc>
|
|
<type name="Regex" c:type="const GRegex*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_match_flags" c:identifier="g_regex_get_match_flags" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26310">Returns the match options that @regex was created with.</doc>
|
|
<source-position filename="gregex.h" line="478"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26316">flags from #GRegexMatchFlags</doc>
|
|
<type name="RegexMatchFlags" c:type="GRegexMatchFlags"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="regex" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26312">a #GRegex</doc>
|
|
<type name="Regex" c:type="const GRegex*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_max_backref" c:identifier="g_regex_get_max_backref" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26321">Returns the number of the highest back reference
|
|
in the pattern, or 0 if the pattern does not contain
|
|
back references.</doc>
|
|
<source-position filename="gregex.h" line="458"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26329">the number of the highest back reference</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="regex" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26323">a #GRegex</doc>
|
|
<type name="Regex" c:type="const GRegex*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_max_lookbehind" c:identifier="g_regex_get_max_lookbehind" version="2.38">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26334">Gets the number of characters in the longest lookbehind assertion in the
|
|
pattern. This information is useful when doing multi-segment matching using
|
|
the partial matching facilities.</doc>
|
|
<source-position filename="gregex.h" line="464"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26342">the number of characters in the longest lookbehind assertion.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="regex" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26336">a #GRegex structure</doc>
|
|
<type name="Regex" c:type="const GRegex*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_pattern" c:identifier="g_regex_get_pattern" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26347">Gets the pattern string associated with @regex, i.e. a copy of
|
|
the string passed to g_regex_new().</doc>
|
|
<source-position filename="gregex.h" line="456"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26354">the pattern of @regex</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="regex" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26349">a #GRegex structure</doc>
|
|
<type name="Regex" c:type="const GRegex*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_string_number" c:identifier="g_regex_get_string_number" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26359">Retrieves the number of the subexpression named @name.</doc>
|
|
<source-position filename="gregex.h" line="466"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26366">The number of the subexpression or -1 if @name
|
|
does not exists</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="regex" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26361">#GRegex structure</doc>
|
|
<type name="Regex" c:type="const GRegex*"/>
|
|
</instance-parameter>
|
|
<parameter name="name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26362">name of the subexpression</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="match" c:identifier="g_regex_match" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26372">Scans for a match in @string for the pattern in @regex.
|
|
The @match_options are combined with the match options specified
|
|
when the @regex structure was created, letting you have more
|
|
flexibility in reusing #GRegex structures.
|
|
|
|
Unless %G_REGEX_RAW is specified in the options, @string must be valid UTF-8.
|
|
|
|
A #GMatchInfo structure, used to get information on the match,
|
|
is stored in @match_info if not %NULL. Note that if @match_info
|
|
is not %NULL then it is created even if the function returns %FALSE,
|
|
i.e. you must free it regardless if regular expression actually matched.
|
|
|
|
To retrieve all the non-overlapping matches of the pattern in
|
|
string you can use g_match_info_next().
|
|
|
|
|[<!-- language="C" -->
|
|
static void
|
|
print_uppercase_words (const gchar *string)
|
|
{
|
|
// Print all uppercase-only words.
|
|
GRegex *regex;
|
|
GMatchInfo *match_info;
|
|
|
|
regex = g_regex_new ("[A-Z]+", 0, 0, NULL);
|
|
g_regex_match (regex, string, 0, &match_info);
|
|
while (g_match_info_matches (match_info))
|
|
{
|
|
gchar *word = g_match_info_fetch (match_info, 0);
|
|
g_print ("Found: %s\n", word);
|
|
g_free (word);
|
|
g_match_info_next (match_info, NULL);
|
|
}
|
|
g_match_info_free (match_info);
|
|
g_regex_unref (regex);
|
|
}
|
|
]|
|
|
|
|
@string is not copied and is used in #GMatchInfo internally. If
|
|
you use any #GMatchInfo method (except g_match_info_free()) after
|
|
freeing or modifying @string then the behaviour is undefined.</doc>
|
|
<source-position filename="gregex.h" line="487"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26421">%TRUE is the string matched, %FALSE otherwise</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="regex" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26374">a #GRegex structure from g_regex_new()</doc>
|
|
<type name="Regex" c:type="const GRegex*"/>
|
|
</instance-parameter>
|
|
<parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26375">the string to scan for matches</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="match_options" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26376">match options</doc>
|
|
<type name="RegexMatchFlags" c:type="GRegexMatchFlags"/>
|
|
</parameter>
|
|
<parameter name="match_info" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26377">pointer to location where to store
|
|
the #GMatchInfo, or %NULL if you do not need it</doc>
|
|
<type name="MatchInfo" c:type="GMatchInfo**"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="match_all" c:identifier="g_regex_match_all" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26426">Using the standard algorithm for regular expression matching only
|
|
the longest match in the string is retrieved. This function uses
|
|
a different algorithm so it can retrieve all the possible matches.
|
|
For more documentation see g_regex_match_all_full().
|
|
|
|
A #GMatchInfo structure, used to get information on the match, is
|
|
stored in @match_info if not %NULL. Note that if @match_info is
|
|
not %NULL then it is created even if the function returns %FALSE,
|
|
i.e. you must free it regardless if regular expression actually
|
|
matched.
|
|
|
|
@string is not copied and is used in #GMatchInfo internally. If
|
|
you use any #GMatchInfo method (except g_match_info_free()) after
|
|
freeing or modifying @string then the behaviour is undefined.</doc>
|
|
<source-position filename="gregex.h" line="500"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26449">%TRUE is the string matched, %FALSE otherwise</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="regex" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26428">a #GRegex structure from g_regex_new()</doc>
|
|
<type name="Regex" c:type="const GRegex*"/>
|
|
</instance-parameter>
|
|
<parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26429">the string to scan for matches</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="match_options" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26430">match options</doc>
|
|
<type name="RegexMatchFlags" c:type="GRegexMatchFlags"/>
|
|
</parameter>
|
|
<parameter name="match_info" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26431">pointer to location where to store
|
|
the #GMatchInfo, or %NULL if you do not need it</doc>
|
|
<type name="MatchInfo" c:type="GMatchInfo**"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="match_all_full" c:identifier="g_regex_match_all_full" version="2.14" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26454">Using the standard algorithm for regular expression matching only
|
|
the longest match in the @string is retrieved, it is not possible
|
|
to obtain all the available matches. For instance matching
|
|
"<a> <b> <c>" against the pattern "<.*>"
|
|
you get "<a> <b> <c>".
|
|
|
|
This function uses a different algorithm (called DFA, i.e. deterministic
|
|
finite automaton), so it can retrieve all the possible matches, all
|
|
starting at the same point in the string. For instance matching
|
|
"<a> <b> <c>" against the pattern "<.*>;"
|
|
you would obtain three matches: "<a> <b> <c>",
|
|
"<a> <b>" and "<a>".
|
|
|
|
The number of matched strings is retrieved using
|
|
g_match_info_get_match_count(). To obtain the matched strings and
|
|
their position you can use, respectively, g_match_info_fetch() and
|
|
g_match_info_fetch_pos(). Note that the strings are returned in
|
|
reverse order of length; that is, the longest matching string is
|
|
given first.
|
|
|
|
Note that the DFA algorithm is slower than the standard one and it
|
|
is not able to capture substrings, so backreferences do not work.
|
|
|
|
Setting @start_position differs from just passing over a shortened
|
|
string and setting #G_REGEX_MATCH_NOTBOL in the case of a pattern
|
|
that begins with any kind of lookbehind assertion, such as "\b".
|
|
|
|
Unless %G_REGEX_RAW is specified in the options, @string must be valid UTF-8.
|
|
|
|
A #GMatchInfo structure, used to get information on the match, is
|
|
stored in @match_info if not %NULL. Note that if @match_info is
|
|
not %NULL then it is created even if the function returns %FALSE,
|
|
i.e. you must free it regardless if regular expression actually
|
|
matched.
|
|
|
|
@string is not copied and is used in #GMatchInfo internally. If
|
|
you use any #GMatchInfo method (except g_match_info_free()) after
|
|
freeing or modifying @string then the behaviour is undefined.</doc>
|
|
<source-position filename="gregex.h" line="505"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26504">%TRUE is the string matched, %FALSE otherwise</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="regex" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26456">a #GRegex structure from g_regex_new()</doc>
|
|
<type name="Regex" c:type="const GRegex*"/>
|
|
</instance-parameter>
|
|
<parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26457">the string to scan for matches</doc>
|
|
<array length="1" zero-terminated="0" c:type="const gchar*">
|
|
<type name="utf8" c:type="gchar"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="string_len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26458">the length of @string, in bytes, or -1 if @string is nul-terminated</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
<parameter name="start_position" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26459">starting index of the string to match, in bytes</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="match_options" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26460">match options</doc>
|
|
<type name="RegexMatchFlags" c:type="GRegexMatchFlags"/>
|
|
</parameter>
|
|
<parameter name="match_info" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26461">pointer to location where to store
|
|
the #GMatchInfo, or %NULL if you do not need it</doc>
|
|
<type name="MatchInfo" c:type="GMatchInfo**"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="match_full" c:identifier="g_regex_match_full" version="2.14" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26509">Scans for a match in @string for the pattern in @regex.
|
|
The @match_options are combined with the match options specified
|
|
when the @regex structure was created, letting you have more
|
|
flexibility in reusing #GRegex structures.
|
|
|
|
Setting @start_position differs from just passing over a shortened
|
|
string and setting #G_REGEX_MATCH_NOTBOL in the case of a pattern
|
|
that begins with any kind of lookbehind assertion, such as "\b".
|
|
|
|
Unless %G_REGEX_RAW is specified in the options, @string must be valid UTF-8.
|
|
|
|
A #GMatchInfo structure, used to get information on the match, is
|
|
stored in @match_info if not %NULL. Note that if @match_info is
|
|
not %NULL then it is created even if the function returns %FALSE,
|
|
i.e. you must free it regardless if regular expression actually
|
|
matched.
|
|
|
|
@string is not copied and is used in #GMatchInfo internally. If
|
|
you use any #GMatchInfo method (except g_match_info_free()) after
|
|
freeing or modifying @string then the behaviour is undefined.
|
|
|
|
To retrieve all the non-overlapping matches of the pattern in
|
|
string you can use g_match_info_next().
|
|
|
|
|[<!-- language="C" -->
|
|
static void
|
|
print_uppercase_words (const gchar *string)
|
|
{
|
|
// Print all uppercase-only words.
|
|
GRegex *regex;
|
|
GMatchInfo *match_info;
|
|
GError *error = NULL;
|
|
|
|
regex = g_regex_new ("[A-Z]+", 0, 0, NULL);
|
|
g_regex_match_full (regex, string, -1, 0, 0, &match_info, &error);
|
|
while (g_match_info_matches (match_info))
|
|
{
|
|
gchar *word = g_match_info_fetch (match_info, 0);
|
|
g_print ("Found: %s\n", word);
|
|
g_free (word);
|
|
g_match_info_next (match_info, &error);
|
|
}
|
|
g_match_info_free (match_info);
|
|
g_regex_unref (regex);
|
|
if (error != NULL)
|
|
{
|
|
g_printerr ("Error while matching: %s\n", error->message);
|
|
g_error_free (error);
|
|
}
|
|
}
|
|
]|</doc>
|
|
<source-position filename="gregex.h" line="492"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26572">%TRUE is the string matched, %FALSE otherwise</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="regex" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26511">a #GRegex structure from g_regex_new()</doc>
|
|
<type name="Regex" c:type="const GRegex*"/>
|
|
</instance-parameter>
|
|
<parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26512">the string to scan for matches</doc>
|
|
<array length="1" zero-terminated="0" c:type="const gchar*">
|
|
<type name="utf8" c:type="gchar"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="string_len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26513">the length of @string, in bytes, or -1 if @string is nul-terminated</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
<parameter name="start_position" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26514">starting index of the string to match, in bytes</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="match_options" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26515">match options</doc>
|
|
<type name="RegexMatchFlags" c:type="GRegexMatchFlags"/>
|
|
</parameter>
|
|
<parameter name="match_info" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26516">pointer to location where to store
|
|
the #GMatchInfo, or %NULL if you do not need it</doc>
|
|
<type name="MatchInfo" c:type="GMatchInfo**"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="ref" c:identifier="g_regex_ref" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26616">Increases reference count of @regex by 1.</doc>
|
|
<source-position filename="gregex.h" line="452"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26622">@regex</doc>
|
|
<type name="Regex" c:type="GRegex*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="regex" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26618">a #GRegex</doc>
|
|
<type name="Regex" c:type="GRegex*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="replace" c:identifier="g_regex_replace" version="2.14" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26627">Replaces all occurrences of the pattern in @regex with the
|
|
replacement text. Backreferences of the form '\number' or
|
|
'\g<number>' in the replacement text are interpolated by the
|
|
number-th captured subexpression of the match, '\g<name>' refers
|
|
to the captured subexpression with the given name. '\0' refers
|
|
to the complete match, but '\0' followed by a number is the octal
|
|
representation of a character. To include a literal '\' in the
|
|
replacement, write '\\\\'.
|
|
|
|
There are also escapes that changes the case of the following text:
|
|
|
|
- \l: Convert to lower case the next character
|
|
- \u: Convert to upper case the next character
|
|
- \L: Convert to lower case till \E
|
|
- \U: Convert to upper case till \E
|
|
- \E: End case modification
|
|
|
|
If you do not need to use backreferences use g_regex_replace_literal().
|
|
|
|
The @replacement string must be UTF-8 encoded even if #G_REGEX_RAW was
|
|
passed to g_regex_new(). If you want to use not UTF-8 encoded stings
|
|
you can use g_regex_replace_literal().
|
|
|
|
Setting @start_position differs from just passing over a shortened
|
|
string and setting #G_REGEX_MATCH_NOTBOL in the case of a pattern that
|
|
begins with any kind of lookbehind assertion, such as "\b".</doc>
|
|
<source-position filename="gregex.h" line="534"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26664">a newly allocated string containing the replacements</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="regex" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26629">a #GRegex structure</doc>
|
|
<type name="Regex" c:type="const GRegex*"/>
|
|
</instance-parameter>
|
|
<parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26630">the string to perform matches against</doc>
|
|
<array length="1" zero-terminated="0" c:type="const gchar*">
|
|
<type name="utf8" c:type="gchar"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="string_len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26631">the length of @string, in bytes, or -1 if @string is nul-terminated</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
<parameter name="start_position" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26632">starting index of the string to match, in bytes</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="replacement" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26633">text to replace each match with</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="match_options" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26634">options for the match</doc>
|
|
<type name="RegexMatchFlags" c:type="GRegexMatchFlags"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="replace_eval" c:identifier="g_regex_replace_eval" version="2.14" introspectable="0" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26669">Replaces occurrences of the pattern in regex with the output of
|
|
@eval for that occurrence.
|
|
|
|
Setting @start_position differs from just passing over a shortened
|
|
string and setting #G_REGEX_MATCH_NOTBOL in the case of a pattern
|
|
that begins with any kind of lookbehind assertion, such as "\b".
|
|
|
|
The following example uses g_regex_replace_eval() to replace multiple
|
|
strings at once:
|
|
|[<!-- language="C" -->
|
|
static gboolean
|
|
eval_cb (const GMatchInfo *info,
|
|
GString *res,
|
|
gpointer data)
|
|
{
|
|
gchar *match;
|
|
gchar *r;
|
|
|
|
match = g_match_info_fetch (info, 0);
|
|
r = g_hash_table_lookup ((GHashTable *)data, match);
|
|
g_string_append (res, r);
|
|
g_free (match);
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
...
|
|
|
|
GRegex *reg;
|
|
GHashTable *h;
|
|
gchar *res;
|
|
|
|
h = g_hash_table_new (g_str_hash, g_str_equal);
|
|
|
|
g_hash_table_insert (h, "1", "ONE");
|
|
g_hash_table_insert (h, "2", "TWO");
|
|
g_hash_table_insert (h, "3", "THREE");
|
|
g_hash_table_insert (h, "4", "FOUR");
|
|
|
|
reg = g_regex_new ("1|2|3|4", 0, 0, NULL);
|
|
res = g_regex_replace_eval (reg, text, -1, 0, 0, eval_cb, h, NULL);
|
|
g_hash_table_destroy (h);
|
|
|
|
...
|
|
]|</doc>
|
|
<source-position filename="gregex.h" line="550"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26726">a newly allocated string containing the replacements</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="regex" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26671">a #GRegex structure from g_regex_new()</doc>
|
|
<type name="Regex" c:type="const GRegex*"/>
|
|
</instance-parameter>
|
|
<parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26672">string to perform matches against</doc>
|
|
<array length="1" zero-terminated="0" c:type="const gchar*">
|
|
<type name="utf8" c:type="gchar"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="string_len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26673">the length of @string, in bytes, or -1 if @string is nul-terminated</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
<parameter name="start_position" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26674">starting index of the string to match, in bytes</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="match_options" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26675">options for the match</doc>
|
|
<type name="RegexMatchFlags" c:type="GRegexMatchFlags"/>
|
|
</parameter>
|
|
<parameter name="eval" transfer-ownership="none" closure="5">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26676">a function to call for each match</doc>
|
|
<type name="RegexEvalCallback" c:type="GRegexEvalCallback"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26677">user data to pass to the function</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="replace_literal" c:identifier="g_regex_replace_literal" version="2.14" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26731">Replaces all occurrences of the pattern in @regex with the
|
|
replacement text. @replacement is replaced literally, to
|
|
include backreferences use g_regex_replace().
|
|
|
|
Setting @start_position differs from just passing over a
|
|
shortened string and setting #G_REGEX_MATCH_NOTBOL in the
|
|
case of a pattern that begins with any kind of lookbehind
|
|
assertion, such as "\b".</doc>
|
|
<source-position filename="gregex.h" line="542"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26750">a newly allocated string containing the replacements</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="regex" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26733">a #GRegex structure</doc>
|
|
<type name="Regex" c:type="const GRegex*"/>
|
|
</instance-parameter>
|
|
<parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26734">the string to perform matches against</doc>
|
|
<array length="1" zero-terminated="0" c:type="const gchar*">
|
|
<type name="utf8" c:type="gchar"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="string_len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26735">the length of @string, in bytes, or -1 if @string is nul-terminated</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
<parameter name="start_position" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26736">starting index of the string to match, in bytes</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="replacement" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26737">text to replace each match with</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="match_options" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26738">options for the match</doc>
|
|
<type name="RegexMatchFlags" c:type="GRegexMatchFlags"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="split" c:identifier="g_regex_split" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26755">Breaks the string on the pattern, and returns an array of the tokens.
|
|
If the pattern contains capturing parentheses, then the text for each
|
|
of the substrings will also be returned. If the pattern does not match
|
|
anywhere in the string, then the whole string is returned as the first
|
|
token.
|
|
|
|
As a special case, the result of splitting the empty string "" is an
|
|
empty vector, not a vector containing a single string. The reason for
|
|
this special case is that being able to represent a empty vector is
|
|
typically more useful than consistent handling of empty elements. If
|
|
you do need to represent empty elements, you'll need to check for the
|
|
empty string before calling this function.
|
|
|
|
A pattern that can match empty strings splits @string into separate
|
|
characters wherever it matches the empty string between characters.
|
|
For example splitting "ab c" using as a separator "\s*", you will get
|
|
"a", "b" and "c".</doc>
|
|
<source-position filename="gregex.h" line="520"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26779">a %NULL-terminated gchar ** array. Free
|
|
it using g_strfreev()</doc>
|
|
<array c:type="gchar**">
|
|
<type name="utf8"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="regex" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26757">a #GRegex structure</doc>
|
|
<type name="Regex" c:type="const GRegex*"/>
|
|
</instance-parameter>
|
|
<parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26758">the string to split with the pattern</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="match_options" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26759">match time option flags</doc>
|
|
<type name="RegexMatchFlags" c:type="GRegexMatchFlags"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="split_full" c:identifier="g_regex_split_full" version="2.14" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26785">Breaks the string on the pattern, and returns an array of the tokens.
|
|
If the pattern contains capturing parentheses, then the text for each
|
|
of the substrings will also be returned. If the pattern does not match
|
|
anywhere in the string, then the whole string is returned as the first
|
|
token.
|
|
|
|
As a special case, the result of splitting the empty string "" is an
|
|
empty vector, not a vector containing a single string. The reason for
|
|
this special case is that being able to represent a empty vector is
|
|
typically more useful than consistent handling of empty elements. If
|
|
you do need to represent empty elements, you'll need to check for the
|
|
empty string before calling this function.
|
|
|
|
A pattern that can match empty strings splits @string into separate
|
|
characters wherever it matches the empty string between characters.
|
|
For example splitting "ab c" using as a separator "\s*", you will get
|
|
"a", "b" and "c".
|
|
|
|
Setting @start_position differs from just passing over a shortened
|
|
string and setting #G_REGEX_MATCH_NOTBOL in the case of a pattern
|
|
that begins with any kind of lookbehind assertion, such as "\b".</doc>
|
|
<source-position filename="gregex.h" line="524"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26818">a %NULL-terminated gchar ** array. Free
|
|
it using g_strfreev()</doc>
|
|
<array c:type="gchar**">
|
|
<type name="utf8"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="regex" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26787">a #GRegex structure</doc>
|
|
<type name="Regex" c:type="const GRegex*"/>
|
|
</instance-parameter>
|
|
<parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26788">the string to split with the pattern</doc>
|
|
<array length="1" zero-terminated="0" c:type="const gchar*">
|
|
<type name="utf8" c:type="gchar"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="string_len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26789">the length of @string, in bytes, or -1 if @string is nul-terminated</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
<parameter name="start_position" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26790">starting index of the string to match, in bytes</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="match_options" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26791">match time option flags</doc>
|
|
<type name="RegexMatchFlags" c:type="GRegexMatchFlags"/>
|
|
</parameter>
|
|
<parameter name="max_tokens" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26792">the maximum number of tokens to split @string into.
|
|
If this is less than 1, the string is split completely</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="unref" c:identifier="g_regex_unref" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26865">Decreases reference count of @regex by 1. When reference count drops
|
|
to zero, it frees all the memory associated with the regex structure.</doc>
|
|
<source-position filename="gregex.h" line="454"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="regex" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26867">a #GRegex</doc>
|
|
<type name="Regex" c:type="GRegex*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<function name="check_replacement" c:identifier="g_regex_check_replacement" version="2.14" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26217">Checks whether @replacement is a valid replacement string
|
|
(see g_regex_replace()), i.e. that all escape sequences in
|
|
it are valid.
|
|
|
|
If @has_references is not %NULL then @replacement is checked
|
|
for pattern references. For instance, replacement text 'foo\n'
|
|
does not contain references and may be evaluated without information
|
|
about actual match, but '\0\1' (whole match followed by first
|
|
subpattern) requires valid #GMatchInfo object.</doc>
|
|
<source-position filename="gregex.h" line="559"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26234">whether @replacement is a valid replacement string</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="replacement" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26219">the replacement string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="has_references" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26220">location to store information about
|
|
references in @replacement or %NULL</doc>
|
|
<type name="gboolean" c:type="gboolean*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="error_quark" c:identifier="g_regex_error_quark">
|
|
<return-value transfer-ownership="none">
|
|
<type name="Quark" c:type="GQuark"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="escape_nul" c:identifier="g_regex_escape_nul" version="2.30">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26239">Escapes the nul characters in @string to "\x00". It can be used
|
|
to compile a regex with embedded nul characters.
|
|
|
|
For completeness, @length can be -1 for a nul-terminated string.
|
|
In this case the output string will be of course equal to @string.</doc>
|
|
<source-position filename="gregex.h" line="472"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26250">a newly-allocated escaped string</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26241">the string to escape</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="length" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26242">the length of @string</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="escape_string" c:identifier="g_regex_escape_string" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26255">Escapes the special characters used for regular expressions
|
|
in @string, for instance "a.b*c" becomes "a\.b\*c". This
|
|
function is useful to dynamically generate regular expressions.
|
|
|
|
@string can contain nul characters that are replaced with "\0",
|
|
in this case remember to specify the correct length of @string
|
|
in @length.</doc>
|
|
<source-position filename="gregex.h" line="469"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26268">a newly-allocated escaped string</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26257">the string to escape</doc>
|
|
<array length="1" zero-terminated="0" c:type="const gchar*">
|
|
<type name="utf8" c:type="gchar"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="length" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26258">the length of @string, in bytes, or -1 if @string is nul-terminated</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="match_simple" c:identifier="g_regex_match_simple" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26577">Scans for a match in @string for @pattern.
|
|
|
|
This function is equivalent to g_regex_match() but it does not
|
|
require to compile the pattern with g_regex_new(), avoiding some
|
|
lines of code when you need just to do a match without extracting
|
|
substrings, capture counts, and so on.
|
|
|
|
If this function is to be called on the same @pattern more than
|
|
once, it's more efficient to compile the pattern once with
|
|
g_regex_new() and then use g_regex_match().</doc>
|
|
<source-position filename="gregex.h" line="482"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26595">%TRUE if the string matched, %FALSE otherwise</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="pattern" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26579">the regular expression</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26580">the string to scan for matches</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="compile_options" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26581">compile options for the regular expression, or 0</doc>
|
|
<type name="RegexCompileFlags" c:type="GRegexCompileFlags"/>
|
|
</parameter>
|
|
<parameter name="match_options" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26582">match options, or 0</doc>
|
|
<type name="RegexMatchFlags" c:type="GRegexMatchFlags"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="split_simple" c:identifier="g_regex_split_simple" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26824">Breaks the string on the pattern, and returns an array of
|
|
the tokens. If the pattern contains capturing parentheses,
|
|
then the text for each of the substrings will also be returned.
|
|
If the pattern does not match anywhere in the string, then the
|
|
whole string is returned as the first token.
|
|
|
|
This function is equivalent to g_regex_split() but it does
|
|
not require to compile the pattern with g_regex_new(), avoiding
|
|
some lines of code when you need just to do a split without
|
|
extracting substrings, capture counts, and so on.
|
|
|
|
If this function is to be called on the same @pattern more than
|
|
once, it's more efficient to compile the pattern once with
|
|
g_regex_new() and then use g_regex_split().
|
|
|
|
As a special case, the result of splitting the empty string ""
|
|
is an empty vector, not a vector containing a single string.
|
|
The reason for this special case is that being able to represent
|
|
a empty vector is typically more useful than consistent handling
|
|
of empty elements. If you do need to represent empty elements,
|
|
you'll need to check for the empty string before calling this
|
|
function.
|
|
|
|
A pattern that can match empty strings splits @string into
|
|
separate characters wherever it matches the empty string between
|
|
characters. For example splitting "ab c" using as a separator
|
|
"\s*", you will get "a", "b" and "c".</doc>
|
|
<source-position filename="gregex.h" line="515"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26859">a %NULL-terminated array of strings. Free
|
|
it using g_strfreev()</doc>
|
|
<array c:type="gchar**">
|
|
<type name="utf8"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="pattern" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26826">the regular expression</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26827">the string to scan for matches</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="compile_options" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26828">compile options for the regular expression, or 0</doc>
|
|
<type name="RegexCompileFlags" c:type="GRegexCompileFlags"/>
|
|
</parameter>
|
|
<parameter name="match_options" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26829">match options, or 0</doc>
|
|
<type name="RegexMatchFlags" c:type="GRegexMatchFlags"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
</record>
|
|
<bitfield name="RegexCompileFlags" version="2.14" c:type="GRegexCompileFlags">
|
|
<doc xml:space="preserve" filename="gregex.h" line="217">Flags specifying compile-time options.</doc>
|
|
<source-position filename="gregex.h" line="316"/>
|
|
<member name="caseless" value="1" c:identifier="G_REGEX_CASELESS">
|
|
<doc xml:space="preserve" filename="gregex.h" line="219">Letters in the pattern match both upper- and
|
|
lowercase letters. This option can be changed within a pattern
|
|
by a "(?i)" option setting.</doc>
|
|
</member>
|
|
<member name="multiline" value="2" c:identifier="G_REGEX_MULTILINE">
|
|
<doc xml:space="preserve" filename="gregex.h" line="222">By default, GRegex treats the strings as consisting
|
|
of a single line of characters (even if it actually contains
|
|
newlines). The "start of line" metacharacter ("^") matches only
|
|
at the start of the string, while the "end of line" metacharacter
|
|
("$") matches only at the end of the string, or before a terminating
|
|
newline (unless #G_REGEX_DOLLAR_ENDONLY is set). When
|
|
#G_REGEX_MULTILINE is set, the "start of line" and "end of line"
|
|
constructs match immediately following or immediately before any
|
|
newline in the string, respectively, as well as at the very start
|
|
and end. This can be changed within a pattern by a "(?m)" option
|
|
setting.</doc>
|
|
</member>
|
|
<member name="dotall" value="4" c:identifier="G_REGEX_DOTALL">
|
|
<doc xml:space="preserve" filename="gregex.h" line="233">A dot metacharacter (".") in the pattern matches all
|
|
characters, including newlines. Without it, newlines are excluded.
|
|
This option can be changed within a pattern by a ("?s") option setting.</doc>
|
|
</member>
|
|
<member name="extended" value="8" c:identifier="G_REGEX_EXTENDED">
|
|
<doc xml:space="preserve" filename="gregex.h" line="236">Whitespace data characters in the pattern are
|
|
totally ignored except when escaped or inside a character class.
|
|
Whitespace does not include the VT character (code 11). In addition,
|
|
characters between an unescaped "#" outside a character class and
|
|
the next newline character, inclusive, are also ignored. This can
|
|
be changed within a pattern by a "(?x)" option setting.</doc>
|
|
</member>
|
|
<member name="anchored" value="16" c:identifier="G_REGEX_ANCHORED">
|
|
<doc xml:space="preserve" filename="gregex.h" line="242">The pattern is forced to be "anchored", that is,
|
|
it is constrained to match only at the first matching point in the
|
|
string that is being searched. This effect can also be achieved by
|
|
appropriate constructs in the pattern itself such as the "^"
|
|
metacharacter.</doc>
|
|
</member>
|
|
<member name="dollar_endonly" value="32" c:identifier="G_REGEX_DOLLAR_ENDONLY">
|
|
<doc xml:space="preserve" filename="gregex.h" line="247">A dollar metacharacter ("$") in the pattern
|
|
matches only at the end of the string. Without this option, a
|
|
dollar also matches immediately before the final character if
|
|
it is a newline (but not before any other newlines). This option
|
|
is ignored if #G_REGEX_MULTILINE is set.</doc>
|
|
</member>
|
|
<member name="ungreedy" value="512" c:identifier="G_REGEX_UNGREEDY">
|
|
<doc xml:space="preserve" filename="gregex.h" line="252">Inverts the "greediness" of the quantifiers so that
|
|
they are not greedy by default, but become greedy if followed by "?".
|
|
It can also be set by a "(?U)" option setting within the pattern.</doc>
|
|
</member>
|
|
<member name="raw" value="2048" c:identifier="G_REGEX_RAW">
|
|
<doc xml:space="preserve" filename="gregex.h" line="255">Usually strings must be valid UTF-8 strings, using this
|
|
flag they are considered as a raw sequence of bytes.</doc>
|
|
</member>
|
|
<member name="no_auto_capture" value="4096" c:identifier="G_REGEX_NO_AUTO_CAPTURE">
|
|
<doc xml:space="preserve" filename="gregex.h" line="257">Disables the use of numbered capturing
|
|
parentheses in the pattern. Any opening parenthesis that is not
|
|
followed by "?" behaves as if it were followed by "?:" but named
|
|
parentheses can still be used for capturing (and they acquire numbers
|
|
in the usual way).</doc>
|
|
</member>
|
|
<member name="optimize" value="8192" c:identifier="G_REGEX_OPTIMIZE">
|
|
<doc xml:space="preserve" filename="gregex.h" line="262">Optimize the regular expression. If the pattern will
|
|
be used many times, then it may be worth the effort to optimize it
|
|
to improve the speed of matches.</doc>
|
|
</member>
|
|
<member name="firstline" value="262144" c:identifier="G_REGEX_FIRSTLINE">
|
|
<doc xml:space="preserve" filename="gregex.h" line="265">Limits an unanchored pattern to match before (or at) the
|
|
first newline. Since: 2.34</doc>
|
|
</member>
|
|
<member name="dupnames" value="524288" c:identifier="G_REGEX_DUPNAMES">
|
|
<doc xml:space="preserve" filename="gregex.h" line="267">Names used to identify capturing subpatterns need not
|
|
be unique. This can be helpful for certain types of pattern when it
|
|
is known that only one instance of the named subpattern can ever be
|
|
matched.</doc>
|
|
</member>
|
|
<member name="newline_cr" value="1048576" c:identifier="G_REGEX_NEWLINE_CR">
|
|
<doc xml:space="preserve" filename="gregex.h" line="271">Usually any newline character or character sequence is
|
|
recognized. If this option is set, the only recognized newline character
|
|
is '\r'.</doc>
|
|
</member>
|
|
<member name="newline_lf" value="2097152" c:identifier="G_REGEX_NEWLINE_LF">
|
|
<doc xml:space="preserve" filename="gregex.h" line="274">Usually any newline character or character sequence is
|
|
recognized. If this option is set, the only recognized newline character
|
|
is '\n'.</doc>
|
|
</member>
|
|
<member name="newline_crlf" value="3145728" c:identifier="G_REGEX_NEWLINE_CRLF">
|
|
<doc xml:space="preserve" filename="gregex.h" line="277">Usually any newline character or character sequence is
|
|
recognized. If this option is set, the only recognized newline character
|
|
sequence is '\r\n'.</doc>
|
|
</member>
|
|
<member name="newline_anycrlf" value="5242880" c:identifier="G_REGEX_NEWLINE_ANYCRLF">
|
|
<doc xml:space="preserve" filename="gregex.h" line="280">Usually any newline character or character sequence
|
|
is recognized. If this option is set, the only recognized newline character
|
|
sequences are '\r', '\n', and '\r\n'. Since: 2.34</doc>
|
|
</member>
|
|
<member name="bsr_anycrlf" value="8388608" c:identifier="G_REGEX_BSR_ANYCRLF">
|
|
<doc xml:space="preserve" filename="gregex.h" line="283">Usually any newline character or character sequence
|
|
is recognised. If this option is set, then "\R" only recognizes the newline
|
|
characters '\r', '\n' and '\r\n'. Since: 2.34</doc>
|
|
</member>
|
|
<member name="javascript_compat" value="33554432" c:identifier="G_REGEX_JAVASCRIPT_COMPAT">
|
|
<doc xml:space="preserve" filename="gregex.h" line="286">Changes behaviour so that it is compatible with
|
|
JavaScript rather than PCRE. Since: 2.34</doc>
|
|
</member>
|
|
</bitfield>
|
|
<enumeration name="RegexError" version="2.14" c:type="GRegexError" glib:error-domain="g-regex-error-quark">
|
|
<doc xml:space="preserve" filename="gregex.h" line="33">Error codes returned by regular expressions functions.</doc>
|
|
<source-position filename="gregex.h" line="201"/>
|
|
<member name="compile" value="0" c:identifier="G_REGEX_ERROR_COMPILE">
|
|
<doc xml:space="preserve" filename="gregex.h" line="35">Compilation of the regular expression failed.</doc>
|
|
</member>
|
|
<member name="optimize" value="1" c:identifier="G_REGEX_ERROR_OPTIMIZE">
|
|
<doc xml:space="preserve" filename="gregex.h" line="36">Optimization of the regular expression failed.</doc>
|
|
</member>
|
|
<member name="replace" value="2" c:identifier="G_REGEX_ERROR_REPLACE">
|
|
<doc xml:space="preserve" filename="gregex.h" line="37">Replacement failed due to an ill-formed replacement
|
|
string.</doc>
|
|
</member>
|
|
<member name="match" value="3" c:identifier="G_REGEX_ERROR_MATCH">
|
|
<doc xml:space="preserve" filename="gregex.h" line="39">The match process failed.</doc>
|
|
</member>
|
|
<member name="internal" value="4" c:identifier="G_REGEX_ERROR_INTERNAL">
|
|
<doc xml:space="preserve" filename="gregex.h" line="40">Internal error of the regular expression engine.
|
|
Since 2.16</doc>
|
|
</member>
|
|
<member name="stray_backslash" value="101" c:identifier="G_REGEX_ERROR_STRAY_BACKSLASH">
|
|
<doc xml:space="preserve" filename="gregex.h" line="42">"\\" at end of pattern. Since 2.16</doc>
|
|
</member>
|
|
<member name="missing_control_char" value="102" c:identifier="G_REGEX_ERROR_MISSING_CONTROL_CHAR">
|
|
<doc xml:space="preserve" filename="gregex.h" line="43">"\\c" at end of pattern. Since 2.16</doc>
|
|
</member>
|
|
<member name="unrecognized_escape" value="103" c:identifier="G_REGEX_ERROR_UNRECOGNIZED_ESCAPE">
|
|
<doc xml:space="preserve" filename="gregex.h" line="44">Unrecognized character follows "\\".
|
|
Since 2.16</doc>
|
|
</member>
|
|
<member name="quantifiers_out_of_order" value="104" c:identifier="G_REGEX_ERROR_QUANTIFIERS_OUT_OF_ORDER">
|
|
<doc xml:space="preserve" filename="gregex.h" line="46">Numbers out of order in "{}"
|
|
quantifier. Since 2.16</doc>
|
|
</member>
|
|
<member name="quantifier_too_big" value="105" c:identifier="G_REGEX_ERROR_QUANTIFIER_TOO_BIG">
|
|
<doc xml:space="preserve" filename="gregex.h" line="48">Number too big in "{}" quantifier.
|
|
Since 2.16</doc>
|
|
</member>
|
|
<member name="unterminated_character_class" value="106" c:identifier="G_REGEX_ERROR_UNTERMINATED_CHARACTER_CLASS">
|
|
<doc xml:space="preserve" filename="gregex.h" line="50">Missing terminating "]" for
|
|
character class. Since 2.16</doc>
|
|
</member>
|
|
<member name="invalid_escape_in_character_class" value="107" c:identifier="G_REGEX_ERROR_INVALID_ESCAPE_IN_CHARACTER_CLASS">
|
|
<doc xml:space="preserve" filename="gregex.h" line="52">Invalid escape sequence
|
|
in character class. Since 2.16</doc>
|
|
</member>
|
|
<member name="range_out_of_order" value="108" c:identifier="G_REGEX_ERROR_RANGE_OUT_OF_ORDER">
|
|
<doc xml:space="preserve" filename="gregex.h" line="54">Range out of order in character class.
|
|
Since 2.16</doc>
|
|
</member>
|
|
<member name="nothing_to_repeat" value="109" c:identifier="G_REGEX_ERROR_NOTHING_TO_REPEAT">
|
|
<doc xml:space="preserve" filename="gregex.h" line="56">Nothing to repeat. Since 2.16</doc>
|
|
</member>
|
|
<member name="unrecognized_character" value="112" c:identifier="G_REGEX_ERROR_UNRECOGNIZED_CHARACTER">
|
|
<doc xml:space="preserve" filename="gregex.h" line="57">Unrecognized character after "(?",
|
|
"(?<" or "(?P". Since 2.16</doc>
|
|
</member>
|
|
<member name="posix_named_class_outside_class" value="113" c:identifier="G_REGEX_ERROR_POSIX_NAMED_CLASS_OUTSIDE_CLASS">
|
|
<doc xml:space="preserve" filename="gregex.h" line="59">POSIX named classes are
|
|
supported only within a class. Since 2.16</doc>
|
|
</member>
|
|
<member name="unmatched_parenthesis" value="114" c:identifier="G_REGEX_ERROR_UNMATCHED_PARENTHESIS">
|
|
<doc xml:space="preserve" filename="gregex.h" line="61">Missing terminating ")" or ")"
|
|
without opening "(". Since 2.16</doc>
|
|
</member>
|
|
<member name="inexistent_subpattern_reference" value="115" c:identifier="G_REGEX_ERROR_INEXISTENT_SUBPATTERN_REFERENCE">
|
|
<doc xml:space="preserve" filename="gregex.h" line="63">Reference to non-existent
|
|
subpattern. Since 2.16</doc>
|
|
</member>
|
|
<member name="unterminated_comment" value="118" c:identifier="G_REGEX_ERROR_UNTERMINATED_COMMENT">
|
|
<doc xml:space="preserve" filename="gregex.h" line="65">Missing terminating ")" after comment.
|
|
Since 2.16</doc>
|
|
</member>
|
|
<member name="expression_too_large" value="120" c:identifier="G_REGEX_ERROR_EXPRESSION_TOO_LARGE">
|
|
<doc xml:space="preserve" filename="gregex.h" line="67">Regular expression too large.
|
|
Since 2.16</doc>
|
|
</member>
|
|
<member name="memory_error" value="121" c:identifier="G_REGEX_ERROR_MEMORY_ERROR">
|
|
<doc xml:space="preserve" filename="gregex.h" line="69">Failed to get memory. Since 2.16</doc>
|
|
</member>
|
|
<member name="variable_length_lookbehind" value="125" c:identifier="G_REGEX_ERROR_VARIABLE_LENGTH_LOOKBEHIND">
|
|
<doc xml:space="preserve" filename="gregex.h" line="70">Lookbehind assertion is not
|
|
fixed length. Since 2.16</doc>
|
|
</member>
|
|
<member name="malformed_condition" value="126" c:identifier="G_REGEX_ERROR_MALFORMED_CONDITION">
|
|
<doc xml:space="preserve" filename="gregex.h" line="72">Malformed number or name after "(?(".
|
|
Since 2.16</doc>
|
|
</member>
|
|
<member name="too_many_conditional_branches" value="127" c:identifier="G_REGEX_ERROR_TOO_MANY_CONDITIONAL_BRANCHES">
|
|
<doc xml:space="preserve" filename="gregex.h" line="74">Conditional group contains
|
|
more than two branches. Since 2.16</doc>
|
|
</member>
|
|
<member name="assertion_expected" value="128" c:identifier="G_REGEX_ERROR_ASSERTION_EXPECTED">
|
|
<doc xml:space="preserve" filename="gregex.h" line="76">Assertion expected after "(?(".
|
|
Since 2.16</doc>
|
|
</member>
|
|
<member name="unknown_posix_class_name" value="130" c:identifier="G_REGEX_ERROR_UNKNOWN_POSIX_CLASS_NAME">
|
|
<doc xml:space="preserve" filename="gregex.h" line="78">Unknown POSIX class name.
|
|
Since 2.16</doc>
|
|
</member>
|
|
<member name="posix_collating_elements_not_supported" value="131" c:identifier="G_REGEX_ERROR_POSIX_COLLATING_ELEMENTS_NOT_SUPPORTED">
|
|
<doc xml:space="preserve" filename="gregex.h" line="80">POSIX collating
|
|
elements are not supported. Since 2.16</doc>
|
|
</member>
|
|
<member name="hex_code_too_large" value="134" c:identifier="G_REGEX_ERROR_HEX_CODE_TOO_LARGE">
|
|
<doc xml:space="preserve" filename="gregex.h" line="82">Character value in "\\x{...}" sequence
|
|
is too large. Since 2.16</doc>
|
|
</member>
|
|
<member name="invalid_condition" value="135" c:identifier="G_REGEX_ERROR_INVALID_CONDITION">
|
|
<doc xml:space="preserve" filename="gregex.h" line="84">Invalid condition "(?(0)". Since 2.16</doc>
|
|
</member>
|
|
<member name="single_byte_match_in_lookbehind" value="136" c:identifier="G_REGEX_ERROR_SINGLE_BYTE_MATCH_IN_LOOKBEHIND">
|
|
<doc xml:space="preserve" filename="gregex.h" line="85">\\C not allowed in
|
|
lookbehind assertion. Since 2.16</doc>
|
|
</member>
|
|
<member name="infinite_loop" value="140" c:identifier="G_REGEX_ERROR_INFINITE_LOOP">
|
|
<doc xml:space="preserve" filename="gregex.h" line="87">Recursive call could loop indefinitely.
|
|
Since 2.16</doc>
|
|
</member>
|
|
<member name="missing_subpattern_name_terminator" value="142" c:identifier="G_REGEX_ERROR_MISSING_SUBPATTERN_NAME_TERMINATOR">
|
|
<doc xml:space="preserve" filename="gregex.h" line="89">Missing terminator
|
|
in subpattern name. Since 2.16</doc>
|
|
</member>
|
|
<member name="duplicate_subpattern_name" value="143" c:identifier="G_REGEX_ERROR_DUPLICATE_SUBPATTERN_NAME">
|
|
<doc xml:space="preserve" filename="gregex.h" line="91">Two named subpatterns have
|
|
the same name. Since 2.16</doc>
|
|
</member>
|
|
<member name="malformed_property" value="146" c:identifier="G_REGEX_ERROR_MALFORMED_PROPERTY">
|
|
<doc xml:space="preserve" filename="gregex.h" line="93">Malformed "\\P" or "\\p" sequence.
|
|
Since 2.16</doc>
|
|
</member>
|
|
<member name="unknown_property" value="147" c:identifier="G_REGEX_ERROR_UNKNOWN_PROPERTY">
|
|
<doc xml:space="preserve" filename="gregex.h" line="95">Unknown property name after "\\P" or
|
|
"\\p". Since 2.16</doc>
|
|
</member>
|
|
<member name="subpattern_name_too_long" value="148" c:identifier="G_REGEX_ERROR_SUBPATTERN_NAME_TOO_LONG">
|
|
<doc xml:space="preserve" filename="gregex.h" line="97">Subpattern name is too long
|
|
(maximum 32 characters). Since 2.16</doc>
|
|
</member>
|
|
<member name="too_many_subpatterns" value="149" c:identifier="G_REGEX_ERROR_TOO_MANY_SUBPATTERNS">
|
|
<doc xml:space="preserve" filename="gregex.h" line="99">Too many named subpatterns (maximum
|
|
10,000). Since 2.16</doc>
|
|
</member>
|
|
<member name="invalid_octal_value" value="151" c:identifier="G_REGEX_ERROR_INVALID_OCTAL_VALUE">
|
|
<doc xml:space="preserve" filename="gregex.h" line="101">Octal value is greater than "\\377".
|
|
Since 2.16</doc>
|
|
</member>
|
|
<member name="too_many_branches_in_define" value="154" c:identifier="G_REGEX_ERROR_TOO_MANY_BRANCHES_IN_DEFINE">
|
|
<doc xml:space="preserve" filename="gregex.h" line="103">"DEFINE" group contains more
|
|
than one branch. Since 2.16</doc>
|
|
</member>
|
|
<member name="define_repetion" value="155" c:identifier="G_REGEX_ERROR_DEFINE_REPETION">
|
|
<doc xml:space="preserve" filename="gregex.h" line="105">Repeating a "DEFINE" group is not allowed.
|
|
This error is never raised. Since: 2.16 Deprecated: 2.34</doc>
|
|
</member>
|
|
<member name="inconsistent_newline_options" value="156" c:identifier="G_REGEX_ERROR_INCONSISTENT_NEWLINE_OPTIONS">
|
|
<doc xml:space="preserve" filename="gregex.h" line="107">Inconsistent newline options.
|
|
Since 2.16</doc>
|
|
</member>
|
|
<member name="missing_back_reference" value="157" c:identifier="G_REGEX_ERROR_MISSING_BACK_REFERENCE">
|
|
<doc xml:space="preserve" filename="gregex.h" line="109">"\\g" is not followed by a braced,
|
|
angle-bracketed, or quoted name or number, or by a plain number. Since: 2.16</doc>
|
|
</member>
|
|
<member name="invalid_relative_reference" value="158" c:identifier="G_REGEX_ERROR_INVALID_RELATIVE_REFERENCE">
|
|
<doc xml:space="preserve" filename="gregex.h" line="111">relative reference must not be zero. Since: 2.34</doc>
|
|
</member>
|
|
<member name="backtracking_control_verb_argument_forbidden" value="159" c:identifier="G_REGEX_ERROR_BACKTRACKING_CONTROL_VERB_ARGUMENT_FORBIDDEN">
|
|
<doc xml:space="preserve" filename="gregex.h" line="112">the backtracing
|
|
control verb used does not allow an argument. Since: 2.34</doc>
|
|
</member>
|
|
<member name="unknown_backtracking_control_verb" value="160" c:identifier="G_REGEX_ERROR_UNKNOWN_BACKTRACKING_CONTROL_VERB">
|
|
<doc xml:space="preserve" filename="gregex.h" line="114">unknown backtracing
|
|
control verb. Since: 2.34</doc>
|
|
</member>
|
|
<member name="number_too_big" value="161" c:identifier="G_REGEX_ERROR_NUMBER_TOO_BIG">
|
|
<doc xml:space="preserve" filename="gregex.h" line="116">number is too big in escape sequence. Since: 2.34</doc>
|
|
</member>
|
|
<member name="missing_subpattern_name" value="162" c:identifier="G_REGEX_ERROR_MISSING_SUBPATTERN_NAME">
|
|
<doc xml:space="preserve" filename="gregex.h" line="117">Missing subpattern name. Since: 2.34</doc>
|
|
</member>
|
|
<member name="missing_digit" value="163" c:identifier="G_REGEX_ERROR_MISSING_DIGIT">
|
|
<doc xml:space="preserve" filename="gregex.h" line="118">Missing digit. Since 2.34</doc>
|
|
</member>
|
|
<member name="invalid_data_character" value="164" c:identifier="G_REGEX_ERROR_INVALID_DATA_CHARACTER">
|
|
<doc xml:space="preserve" filename="gregex.h" line="119">In JavaScript compatibility mode,
|
|
"[" is an invalid data character. Since: 2.34</doc>
|
|
</member>
|
|
<member name="extra_subpattern_name" value="165" c:identifier="G_REGEX_ERROR_EXTRA_SUBPATTERN_NAME">
|
|
<doc xml:space="preserve" filename="gregex.h" line="121">different names for subpatterns of the
|
|
same number are not allowed. Since: 2.34</doc>
|
|
</member>
|
|
<member name="backtracking_control_verb_argument_required" value="166" c:identifier="G_REGEX_ERROR_BACKTRACKING_CONTROL_VERB_ARGUMENT_REQUIRED">
|
|
<doc xml:space="preserve" filename="gregex.h" line="123">the backtracing control
|
|
verb requires an argument. Since: 2.34</doc>
|
|
</member>
|
|
<member name="invalid_control_char" value="168" c:identifier="G_REGEX_ERROR_INVALID_CONTROL_CHAR">
|
|
<doc xml:space="preserve" filename="gregex.h" line="125">"\\c" must be followed by an ASCII
|
|
character. Since: 2.34</doc>
|
|
</member>
|
|
<member name="missing_name" value="169" c:identifier="G_REGEX_ERROR_MISSING_NAME">
|
|
<doc xml:space="preserve" filename="gregex.h" line="127">"\\k" is not followed by a braced, angle-bracketed, or
|
|
quoted name. Since: 2.34</doc>
|
|
</member>
|
|
<member name="not_supported_in_class" value="171" c:identifier="G_REGEX_ERROR_NOT_SUPPORTED_IN_CLASS">
|
|
<doc xml:space="preserve" filename="gregex.h" line="129">"\\N" is not supported in a class. Since: 2.34</doc>
|
|
</member>
|
|
<member name="too_many_forward_references" value="172" c:identifier="G_REGEX_ERROR_TOO_MANY_FORWARD_REFERENCES">
|
|
<doc xml:space="preserve" filename="gregex.h" line="130">too many forward references. Since: 2.34</doc>
|
|
</member>
|
|
<member name="name_too_long" value="175" c:identifier="G_REGEX_ERROR_NAME_TOO_LONG">
|
|
<doc xml:space="preserve" filename="gregex.h" line="131">the name is too long in "(*MARK)", "(*PRUNE)",
|
|
"(*SKIP)", or "(*THEN)". Since: 2.34</doc>
|
|
</member>
|
|
<member name="character_value_too_large" value="176" c:identifier="G_REGEX_ERROR_CHARACTER_VALUE_TOO_LARGE">
|
|
<doc xml:space="preserve" filename="gregex.h" line="133">the character value in the \\u sequence is
|
|
too large. Since: 2.34</doc>
|
|
</member>
|
|
</enumeration>
|
|
<callback name="RegexEvalCallback" c:type="GRegexEvalCallback" version="2.14">
|
|
<doc xml:space="preserve" filename="gregex.h" line="424">Specifies the type of the function passed to g_regex_replace_eval().
|
|
It is called for each occurrence of the pattern in the string passed
|
|
to g_regex_replace_eval(), and it should append the replacement to
|
|
@result.</doc>
|
|
<source-position filename="gregex.h" line="441"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="gregex.h" line="437">%FALSE to continue the replacement process, %TRUE to stop it</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="match_info" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="gregex.h" line="426">the #GMatchInfo generated by the match.
|
|
Use g_match_info_get_regex() and g_match_info_get_string() if you
|
|
need the #GRegex or the matched string.</doc>
|
|
<type name="MatchInfo" c:type="const GMatchInfo*"/>
|
|
</parameter>
|
|
<parameter name="result" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="gregex.h" line="429">a #GString containing the new string</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1" closure="2">
|
|
<doc xml:space="preserve" filename="gregex.h" line="430">user data passed to g_regex_replace_eval()</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
<bitfield name="RegexMatchFlags" version="2.14" c:type="GRegexMatchFlags">
|
|
<doc xml:space="preserve" filename="gregex.h" line="318">Flags specifying match-time options.</doc>
|
|
<source-position filename="gregex.h" line="403"/>
|
|
<member name="anchored" value="16" c:identifier="G_REGEX_MATCH_ANCHORED">
|
|
<doc xml:space="preserve" filename="gregex.h" line="320">The pattern is forced to be "anchored", that is,
|
|
it is constrained to match only at the first matching point in the
|
|
string that is being searched. This effect can also be achieved by
|
|
appropriate constructs in the pattern itself such as the "^"
|
|
metacharacter.</doc>
|
|
</member>
|
|
<member name="notbol" value="128" c:identifier="G_REGEX_MATCH_NOTBOL">
|
|
<doc xml:space="preserve" filename="gregex.h" line="325">Specifies that first character of the string is
|
|
not the beginning of a line, so the circumflex metacharacter should
|
|
not match before it. Setting this without #G_REGEX_MULTILINE (at
|
|
compile time) causes circumflex never to match. This option affects
|
|
only the behaviour of the circumflex metacharacter, it does not
|
|
affect "\A".</doc>
|
|
</member>
|
|
<member name="noteol" value="256" c:identifier="G_REGEX_MATCH_NOTEOL">
|
|
<doc xml:space="preserve" filename="gregex.h" line="331">Specifies that the end of the subject string is
|
|
not the end of a line, so the dollar metacharacter should not match
|
|
it nor (except in multiline mode) a newline immediately before it.
|
|
Setting this without #G_REGEX_MULTILINE (at compile time) causes
|
|
dollar never to match. This option affects only the behaviour of
|
|
the dollar metacharacter, it does not affect "\Z" or "\z".</doc>
|
|
</member>
|
|
<member name="notempty" value="1024" c:identifier="G_REGEX_MATCH_NOTEMPTY">
|
|
<doc xml:space="preserve" filename="gregex.h" line="337">An empty string is not considered to be a valid
|
|
match if this option is set. If there are alternatives in the pattern,
|
|
they are tried. If all the alternatives match the empty string, the
|
|
entire match fails. For example, if the pattern "a?b?" is applied to
|
|
a string not beginning with "a" or "b", it matches the empty string
|
|
at the start of the string. With this flag set, this match is not
|
|
valid, so GRegex searches further into the string for occurrences
|
|
of "a" or "b".</doc>
|
|
</member>
|
|
<member name="partial" value="32768" c:identifier="G_REGEX_MATCH_PARTIAL">
|
|
<doc xml:space="preserve" filename="gregex.h" line="345">Turns on the partial matching feature, for more
|
|
documentation on partial matching see g_match_info_is_partial_match().</doc>
|
|
</member>
|
|
<member name="newline_cr" value="1048576" c:identifier="G_REGEX_MATCH_NEWLINE_CR">
|
|
<doc xml:space="preserve" filename="gregex.h" line="347">Overrides the newline definition set when
|
|
creating a new #GRegex, setting the '\r' character as line terminator.</doc>
|
|
</member>
|
|
<member name="newline_lf" value="2097152" c:identifier="G_REGEX_MATCH_NEWLINE_LF">
|
|
<doc xml:space="preserve" filename="gregex.h" line="349">Overrides the newline definition set when
|
|
creating a new #GRegex, setting the '\n' character as line terminator.</doc>
|
|
</member>
|
|
<member name="newline_crlf" value="3145728" c:identifier="G_REGEX_MATCH_NEWLINE_CRLF">
|
|
<doc xml:space="preserve" filename="gregex.h" line="351">Overrides the newline definition set when
|
|
creating a new #GRegex, setting the '\r\n' characters sequence as line terminator.</doc>
|
|
</member>
|
|
<member name="newline_any" value="4194304" c:identifier="G_REGEX_MATCH_NEWLINE_ANY">
|
|
<doc xml:space="preserve" filename="gregex.h" line="353">Overrides the newline definition set when
|
|
creating a new #GRegex, any Unicode newline sequence
|
|
is recognised as a newline. These are '\r', '\n' and '\rn', and the
|
|
single characters U+000B LINE TABULATION, U+000C FORM FEED (FF),
|
|
U+0085 NEXT LINE (NEL), U+2028 LINE SEPARATOR and
|
|
U+2029 PARAGRAPH SEPARATOR.</doc>
|
|
</member>
|
|
<member name="newline_anycrlf" value="5242880" c:identifier="G_REGEX_MATCH_NEWLINE_ANYCRLF">
|
|
<doc xml:space="preserve" filename="gregex.h" line="359">Overrides the newline definition set when
|
|
creating a new #GRegex; any '\r', '\n', or '\r\n' character sequence
|
|
is recognized as a newline. Since: 2.34</doc>
|
|
</member>
|
|
<member name="bsr_anycrlf" value="8388608" c:identifier="G_REGEX_MATCH_BSR_ANYCRLF">
|
|
<doc xml:space="preserve" filename="gregex.h" line="362">Overrides the newline definition for "\R" set when
|
|
creating a new #GRegex; only '\r', '\n', or '\r\n' character sequences
|
|
are recognized as a newline by "\R". Since: 2.34</doc>
|
|
</member>
|
|
<member name="bsr_any" value="16777216" c:identifier="G_REGEX_MATCH_BSR_ANY">
|
|
<doc xml:space="preserve" filename="gregex.h" line="365">Overrides the newline definition for "\R" set when
|
|
creating a new #GRegex; any Unicode newline character or character sequence
|
|
are recognized as a newline by "\R". These are '\r', '\n' and '\rn', and the
|
|
single characters U+000B LINE TABULATION, U+000C FORM FEED (FF),
|
|
U+0085 NEXT LINE (NEL), U+2028 LINE SEPARATOR and
|
|
U+2029 PARAGRAPH SEPARATOR. Since: 2.34</doc>
|
|
</member>
|
|
<member name="partial_soft" value="32768" c:identifier="G_REGEX_MATCH_PARTIAL_SOFT">
|
|
<doc xml:space="preserve" filename="gregex.h" line="371">An alias for #G_REGEX_MATCH_PARTIAL. Since: 2.34</doc>
|
|
</member>
|
|
<member name="partial_hard" value="134217728" c:identifier="G_REGEX_MATCH_PARTIAL_HARD">
|
|
<doc xml:space="preserve" filename="gregex.h" line="372">Turns on the partial matching feature. In contrast to
|
|
to #G_REGEX_MATCH_PARTIAL_SOFT, this stops matching as soon as a partial match
|
|
is found, without continuing to search for a possible complete match. See
|
|
g_match_info_is_partial_match() for more information. Since: 2.34</doc>
|
|
</member>
|
|
<member name="notempty_atstart" value="268435456" c:identifier="G_REGEX_MATCH_NOTEMPTY_ATSTART">
|
|
<doc xml:space="preserve" filename="gregex.h" line="376">Like #G_REGEX_MATCH_NOTEMPTY, but only applied to
|
|
the start of the matched string. For anchored
|
|
patterns this can only happen for pattern containing "\K". Since: 2.34</doc>
|
|
</member>
|
|
</bitfield>
|
|
<constant name="SEARCHPATH_SEPARATOR" value="58" c:type="G_SEARCHPATH_SEPARATOR">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="4318">The search path separator character.
|
|
This is ':' on UNIX machines and ';' under Windows.</doc>
|
|
<source-position filename="glibconfig.h" line="211"/>
|
|
<type name="gint" c:type="gint"/>
|
|
</constant>
|
|
<constant name="SEARCHPATH_SEPARATOR_S" value=":" c:type="G_SEARCHPATH_SEPARATOR_S">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="4326">The search path separator as a string.
|
|
This is ":" on UNIX machines and ";" under Windows.</doc>
|
|
<source-position filename="glibconfig.h" line="212"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<constant name="SIZEOF_LONG" value="8" c:type="GLIB_SIZEOF_LONG">
|
|
<source-position filename="glibconfig.h" line="73"/>
|
|
<type name="gint" c:type="gint"/>
|
|
</constant>
|
|
<constant name="SIZEOF_SIZE_T" value="8" c:type="GLIB_SIZEOF_SIZE_T">
|
|
<source-position filename="glibconfig.h" line="74"/>
|
|
<type name="gint" c:type="gint"/>
|
|
</constant>
|
|
<constant name="SIZEOF_SSIZE_T" value="8" c:type="GLIB_SIZEOF_SSIZE_T">
|
|
<source-position filename="glibconfig.h" line="75"/>
|
|
<type name="gint" c:type="gint"/>
|
|
</constant>
|
|
<constant name="SIZEOF_VOID_P" value="8" c:type="GLIB_SIZEOF_VOID_P">
|
|
<source-position filename="glibconfig.h" line="72"/>
|
|
<type name="gint" c:type="gint"/>
|
|
</constant>
|
|
<record name="SList" c:type="GSList">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1650">The #GSList struct is used for each element in the singly-linked
|
|
list.</doc>
|
|
<source-position filename="gslist.h" line="43"/>
|
|
<field name="data" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1652">holds the element's data, which can be a pointer to any kind
|
|
of data, or any integer value using the
|
|
[Type Conversion Macros][glib-Type-Conversion-Macros]</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</field>
|
|
<field name="next" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1655">contains the link to the next element in the list.</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</field>
|
|
<function name="alloc" c:identifier="g_slist_alloc" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28458">Allocates space for one #GSList element. It is called by the
|
|
g_slist_append(), g_slist_prepend(), g_slist_insert() and
|
|
g_slist_insert_sorted() functions and so is rarely used on its own.</doc>
|
|
<source-position filename="gslist.h" line="48"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28465">a pointer to the newly-allocated #GSList element.</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
</function>
|
|
<function name="append" c:identifier="g_slist_append" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28469">Adds a new element on to the end of the list.
|
|
|
|
The return value is the new start of the list, which may
|
|
have changed, so make sure you store the new value.
|
|
|
|
Note that g_slist_append() has to traverse the entire list
|
|
to find the end, which is inefficient when adding multiple
|
|
elements. A common idiom to avoid the inefficiency is to prepend
|
|
the elements and reverse the list when all elements have been added.
|
|
|
|
|[<!-- language="C" -->
|
|
// Notice that these are initialized to the empty list.
|
|
GSList *list = NULL, *number_list = NULL;
|
|
|
|
// This is a list of strings.
|
|
list = g_slist_append (list, "first");
|
|
list = g_slist_append (list, "second");
|
|
|
|
// This is a list of integers.
|
|
number_list = g_slist_append (number_list, GINT_TO_POINTER (27));
|
|
number_list = g_slist_append (number_list, GINT_TO_POINTER (14));
|
|
]|</doc>
|
|
<source-position filename="gslist.h" line="58"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28497">the new start of the #GSList</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28471">a #GSList</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28472">the data for the new element</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="concat" c:identifier="g_slist_concat" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28501">Adds the second #GSList onto the end of the first #GSList.
|
|
Note that the elements of the second #GSList are not copied.
|
|
They are used directly.</doc>
|
|
<source-position filename="gslist.h" line="81"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28510">the start of the new #GSList</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list1" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28503">a #GSList</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="list2" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28504">the #GSList to add to the end of the first #GSList</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="copy" c:identifier="g_slist_copy" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28514">Copies a #GSList.
|
|
|
|
Note that this is a "shallow" copy. If the list elements
|
|
consist of pointers to data, the pointers are copied but
|
|
the actual data isn't. See g_slist_copy_deep() if you need
|
|
to copy the data as well.</doc>
|
|
<source-position filename="gslist.h" line="98"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28525">a copy of @list</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28516">a #GSList</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="copy_deep" c:identifier="g_slist_copy_deep" version="2.34" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28529">Makes a full (deep) copy of a #GSList.
|
|
|
|
In contrast with g_slist_copy(), this function uses @func to make a copy of
|
|
each list element, in addition to copying the list container itself.
|
|
|
|
@func, as a #GCopyFunc, takes two arguments, the data to be copied
|
|
and a @user_data pointer. On common processor architectures, it's safe to
|
|
pass %NULL as @user_data if the copy function takes only one argument. You
|
|
may get compiler warnings from this though if compiling with GCC’s
|
|
`-Wcast-function-type` warning.
|
|
|
|
For instance, if @list holds a list of GObjects, you can do:
|
|
|[<!-- language="C" -->
|
|
another_list = g_slist_copy_deep (list, (GCopyFunc) g_object_ref, NULL);
|
|
]|
|
|
|
|
And, to entirely free the new list, you could do:
|
|
|[<!-- language="C" -->
|
|
g_slist_free_full (another_list, g_object_unref);
|
|
]|</doc>
|
|
<source-position filename="gslist.h" line="101"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28556">a full copy of @list, use g_slist_free_full() to free it</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28531">a #GSList</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="func" transfer-ownership="none" closure="2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28532">a copy function used to copy every element in the list</doc>
|
|
<type name="CopyFunc" c:type="GCopyFunc"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28533">user data passed to the copy function @func, or #NULL</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="delete_link" c:identifier="g_slist_delete_link" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28561">Removes the node link_ from the list and frees it.
|
|
Compare this to g_slist_remove_link() which removes the node
|
|
without freeing it.
|
|
|
|
Removing arbitrary nodes from a singly-linked list requires time
|
|
that is proportional to the length of the list (ie. O(n)). If you
|
|
find yourself using g_slist_delete_link() frequently, you should
|
|
consider a different data structure, such as the doubly-linked
|
|
#GList.</doc>
|
|
<source-position filename="gslist.h" line="93"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28576">the new head of @list</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28563">a #GSList</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="link_" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28564">node to delete</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="find" c:identifier="g_slist_find" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28580">Finds the element in a #GSList which
|
|
contains the given data.</doc>
|
|
<source-position filename="gslist.h" line="108"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28588">the found #GSList element,
|
|
or %NULL if it is not found</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28582">a #GSList</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28583">the element data to find</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="find_custom" c:identifier="g_slist_find_custom" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28593">Finds an element in a #GSList, using a supplied function to
|
|
find the desired element. It iterates over the list, calling
|
|
the given function which should return 0 when the desired
|
|
element is found. The function takes two #gconstpointer arguments,
|
|
the #GSList element's data as the first argument and the
|
|
given user data.</doc>
|
|
<source-position filename="gslist.h" line="111"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28607">the found #GSList element, or %NULL if it is not found</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28595">a #GSList</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28596">user data passed to the function</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
<parameter name="func" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28597">the function to call for each element.
|
|
It should return 0 when the desired element is found</doc>
|
|
<type name="CompareFunc" c:type="GCompareFunc"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="foreach" c:identifier="g_slist_foreach" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28611">Calls a function for each element of a #GSList.
|
|
|
|
It is safe for @func to remove the element from @list, but it must
|
|
not modify any part of the list after that element.</doc>
|
|
<source-position filename="gslist.h" line="125"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28613">a #GSList</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="func" transfer-ownership="none" closure="2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28614">the function to call with each element's data</doc>
|
|
<type name="Func" c:type="GFunc"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28615">user data to pass to the function</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="free" c:identifier="g_slist_free" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28624">Frees all of the memory used by a #GSList.
|
|
The freed elements are returned to the slice allocator.
|
|
|
|
If list elements contain dynamically-allocated memory,
|
|
you should either use g_slist_free_full() or free them manually
|
|
first.</doc>
|
|
<source-position filename="gslist.h" line="50"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28626">a #GSList</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="free_1" c:identifier="g_slist_free_1" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28646">Frees one #GSList element.
|
|
It is usually used after g_slist_remove_link().</doc>
|
|
<source-position filename="gslist.h" line="52"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28648">a #GSList element</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="free_full" c:identifier="g_slist_free_full" version="2.28" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28655">Convenience method, which frees all the memory used by a #GSList, and
|
|
calls the specified destroy function on every element's data.
|
|
|
|
@free_func must not modify the list (eg, by removing the freed
|
|
element from it).</doc>
|
|
<source-position filename="gslist.h" line="55"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28657">a pointer to a #GSList</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="free_func" transfer-ownership="none" scope="async">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28658">the function to be called to free each element's data</doc>
|
|
<type name="DestroyNotify" c:type="GDestroyNotify"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="index" c:identifier="g_slist_index" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28670">Gets the position of the element containing
|
|
the given data (starting from 0).</doc>
|
|
<source-position filename="gslist.h" line="118"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28678">the index of the element containing the data,
|
|
or -1 if the data is not found</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28672">a #GSList</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28673">the data to find</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="insert" c:identifier="g_slist_insert" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28683">Inserts a new element into the list at the given position.</doc>
|
|
<source-position filename="gslist.h" line="64"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28694">the new start of the #GSList</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28685">a #GSList</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28686">the data for the new element</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="position" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28687">the position to insert the element.
|
|
If this is negative, or is larger than the number
|
|
of elements in the list, the new element is added on
|
|
to the end of the list.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="insert_before" c:identifier="g_slist_insert_before" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28698">Inserts a node before @sibling containing @data.</doc>
|
|
<source-position filename="gslist.h" line="77"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28706">the new head of the list.</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="slist" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28700">a #GSList</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="sibling" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28701">node to insert @data before</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28702">data to put in the newly-inserted node</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="insert_sorted" c:identifier="g_slist_insert_sorted" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28710">Inserts a new element into the list, using the given
|
|
comparison function to determine its position.</doc>
|
|
<source-position filename="gslist.h" line="68"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28721">the new start of the #GSList</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28712">a #GSList</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28713">the data for the new element</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="func" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28714">the function to compare elements in the list.
|
|
It should return a number > 0 if the first parameter
|
|
comes after the second parameter in the sort order.</doc>
|
|
<type name="CompareFunc" c:type="GCompareFunc"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="insert_sorted_with_data" c:identifier="g_slist_insert_sorted_with_data" version="2.10" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28725">Inserts a new element into the list, using the given
|
|
comparison function to determine its position.</doc>
|
|
<source-position filename="gslist.h" line="72"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28737">the new start of the #GSList</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28727">a #GSList</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28728">the data for the new element</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="func" transfer-ownership="none" closure="3">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28729">the function to compare elements in the list.
|
|
It should return a number > 0 if the first parameter
|
|
comes after the second parameter in the sort order.</doc>
|
|
<type name="CompareDataFunc" c:type="GCompareDataFunc"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28732">data to pass to comparison function</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="last" c:identifier="g_slist_last" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28742">Gets the last element in a #GSList.
|
|
|
|
This function iterates over the whole list.</doc>
|
|
<source-position filename="gslist.h" line="121"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28750">the last element in the #GSList,
|
|
or %NULL if the #GSList has no elements</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28744">a #GSList</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="length" c:identifier="g_slist_length" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28755">Gets the number of elements in a #GSList.
|
|
|
|
This function iterates over the whole list to
|
|
count its elements. To check whether the list is non-empty, it is faster to
|
|
check @list against %NULL.</doc>
|
|
<source-position filename="gslist.h" line="123"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28765">the number of elements in the #GSList</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28757">a #GSList</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="nth" c:identifier="g_slist_nth" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28781">Gets the element at the given position in a #GSList.</doc>
|
|
<source-position filename="gslist.h" line="105"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28788">the element, or %NULL if the position is off
|
|
the end of the #GSList</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28783">a #GSList</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="n" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28784">the position of the element, counting from 0</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="nth_data" c:identifier="g_slist_nth_data" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28793">Gets the data of the element at the given position.</doc>
|
|
<source-position filename="gslist.h" line="136"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28800">the element's data, or %NULL if the position
|
|
is off the end of the #GSList</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28795">a #GSList</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="n" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28796">the position of the element</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="position" c:identifier="g_slist_position" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28805">Gets the position of the given element
|
|
in the #GSList (starting from 0).</doc>
|
|
<source-position filename="gslist.h" line="115"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28813">the position of the element in the #GSList,
|
|
or -1 if the element is not found</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28807">a #GSList</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="llink" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28808">an element in the #GSList</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="prepend" c:identifier="g_slist_prepend" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28818">Adds a new element on to the start of the list.
|
|
|
|
The return value is the new start of the list, which
|
|
may have changed, so make sure you store the new value.
|
|
|
|
|[<!-- language="C" -->
|
|
// Notice that it is initialized to the empty list.
|
|
GSList *list = NULL;
|
|
list = g_slist_prepend (list, "last");
|
|
list = g_slist_prepend (list, "first");
|
|
]|</doc>
|
|
<source-position filename="gslist.h" line="61"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28835">the new start of the #GSList</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28820">a #GSList</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28821">the data for the new element</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="remove" c:identifier="g_slist_remove" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28839">Removes an element from a #GSList.
|
|
If two elements contain the same data, only the first is removed.
|
|
If none of the elements contain the data, the #GSList is unchanged.</doc>
|
|
<source-position filename="gslist.h" line="84"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28848">the new start of the #GSList</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28841">a #GSList</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28842">the data of the element to remove</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="remove_all" c:identifier="g_slist_remove_all" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28852">Removes all list nodes with data equal to @data.
|
|
Returns the new head of the list. Contrast with
|
|
g_slist_remove() which removes only the first node
|
|
matching the given data.</doc>
|
|
<source-position filename="gslist.h" line="87"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28862">new head of @list</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28854">a #GSList</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28855">data to remove</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="remove_link" c:identifier="g_slist_remove_link" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28866">Removes an element from a #GSList, without
|
|
freeing the element. The removed element's next
|
|
link is set to %NULL, so that it becomes a
|
|
self-contained list with one element.
|
|
|
|
Removing arbitrary nodes from a singly-linked list
|
|
requires time that is proportional to the length of the list
|
|
(ie. O(n)). If you find yourself using g_slist_remove_link()
|
|
frequently, you should consider a different data structure,
|
|
such as the doubly-linked #GList.</doc>
|
|
<source-position filename="gslist.h" line="90"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28882">the new start of the #GSList, without the element</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28868">a #GSList</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="link_" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28869">an element in the #GSList</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="reverse" c:identifier="g_slist_reverse" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28886">Reverses a #GSList.</doc>
|
|
<source-position filename="gslist.h" line="96"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28892">the start of the reversed #GSList</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28888">a #GSList</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="sort" c:identifier="g_slist_sort" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28896">Sorts a #GSList using the given comparison function. The algorithm
|
|
used is a stable sort.</doc>
|
|
<source-position filename="gslist.h" line="129"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28908">the start of the sorted #GSList</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28898">a #GSList</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="compare_func" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28899">the comparison function used to sort the #GSList.
|
|
This function is passed the data from 2 elements of the #GSList
|
|
and should return 0 if they are equal, a negative value if the
|
|
first element comes before the second, or a positive value if
|
|
the first element comes after the second.</doc>
|
|
<type name="CompareFunc" c:type="GCompareFunc"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="sort_with_data" c:identifier="g_slist_sort_with_data" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28912">Like g_slist_sort(), but the sort function accepts a user data argument.</doc>
|
|
<source-position filename="gslist.h" line="132"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28920">new head of the list</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28914">a #GSList</doc>
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="compare_func" transfer-ownership="none" closure="2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28915">comparison function</doc>
|
|
<type name="CompareDataFunc" c:type="GCompareDataFunc"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28916">data to pass to comparison function</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
</record>
|
|
<constant name="SOURCE_CONTINUE" value="true" c:type="G_SOURCE_CONTINUE" version="2.32">
|
|
<doc xml:space="preserve" filename="gmain.h" line="329">Use this macro as the return value of a #GSourceFunc to leave
|
|
the #GSource in the main loop.</doc>
|
|
<source-position filename="gmain.h" line="337"/>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</constant>
|
|
<function-macro name="SOURCE_FUNC" c:identifier="G_SOURCE_FUNC" version="2.58" introspectable="0">
|
|
<doc xml:space="preserve" filename="gmain.h" line="175">Cast a function pointer to a #GSourceFunc, suppressing warnings from GCC 8
|
|
onwards with `-Wextra` or `-Wcast-function-type` enabled about the function
|
|
types being incompatible.
|
|
|
|
For example, the correct type of callback for a source created by
|
|
g_child_watch_source_new() is #GChildWatchFunc, which accepts more arguments
|
|
than #GSourceFunc. Casting the function with `(GSourceFunc)` to call
|
|
g_source_set_callback() will trigger a warning, even though it will be cast
|
|
back to the correct type before it is called by the source.</doc>
|
|
<source-position filename="gmain.h" line="191"/>
|
|
<parameters>
|
|
<parameter name="f">
|
|
<doc xml:space="preserve" filename="gmain.h" line="177">a function pointer.</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<constant name="SOURCE_REMOVE" value="false" c:type="G_SOURCE_REMOVE" version="2.32">
|
|
<doc xml:space="preserve" filename="gmain.h" line="319">Use this macro as the return value of a #GSourceFunc to remove
|
|
the #GSource from the main loop.</doc>
|
|
<source-position filename="gmain.h" line="327"/>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</constant>
|
|
<constant name="SQRT2" value="1.414214" c:type="G_SQRT2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="4343">The square root of two.</doc>
|
|
<source-position filename="gtypes.h" line="177"/>
|
|
<type name="gdouble" c:type="gdouble"/>
|
|
</constant>
|
|
<function-macro name="STRINGIFY" c:identifier="G_STRINGIFY" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="4416">Accepts a macro or a string and converts it into a string after
|
|
preprocessor argument expansion. For example, the following code:
|
|
|
|
|[<!-- language="C" -->
|
|
#define AGE 27
|
|
const gchar *greeting = G_STRINGIFY (AGE) " today!";
|
|
]|
|
|
|
|
is transformed by the preprocessor into (code equivalent to):
|
|
|
|
|[<!-- language="C" -->
|
|
const gchar *greeting = "27 today!";
|
|
]|</doc>
|
|
<source-position filename="gmacros.h" line="715"/>
|
|
<parameters>
|
|
<parameter name="macro_or_string">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="4418">a macro or a string</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="STRINGIFY_ARG" c:identifier="G_STRINGIFY_ARG" introspectable="0">
|
|
<source-position filename="gmacros.h" line="716"/>
|
|
<parameters>
|
|
<parameter name="contents">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="STRUCT_MEMBER" c:identifier="G_STRUCT_MEMBER" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="4443">Returns a member of a structure at a given offset, using the given type.</doc>
|
|
<source-position filename="gmacros.h" line="825"/>
|
|
<parameters>
|
|
<parameter name="member_type">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="4445">the type of the struct field</doc>
|
|
</parameter>
|
|
<parameter name="struct_p">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="4446">a pointer to a struct</doc>
|
|
</parameter>
|
|
<parameter name="struct_offset">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="4447">the offset of the field from the start of the struct,
|
|
in bytes</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="STRUCT_MEMBER_P" c:identifier="G_STRUCT_MEMBER_P" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="4456">Returns an untyped pointer to a given offset of a struct.</doc>
|
|
<source-position filename="gmacros.h" line="823"/>
|
|
<parameters>
|
|
<parameter name="struct_p">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="4458">a pointer to a struct</doc>
|
|
</parameter>
|
|
<parameter name="struct_offset">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="4459">the offset from the start of the struct, in bytes</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="STRUCT_OFFSET" c:identifier="G_STRUCT_OFFSET" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="4467">Returns the offset, in bytes, of a member of a struct.</doc>
|
|
<source-position filename="gmacros.h" line="816"/>
|
|
<parameters>
|
|
<parameter name="struct_type">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="4469">a structure type, e.g. #GtkWidget</doc>
|
|
</parameter>
|
|
<parameter name="member">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="4470">a field in the structure, e.g. @window</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<constant name="STR_DELIMITERS" value="_-|> <." c:type="G_STR_DELIMITERS">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="4478">The standard delimiters, used in g_strdelimit().</doc>
|
|
<source-position filename="gstrfuncs.h" line="102"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<constant name="SYSDEF_AF_INET" value="2" c:type="GLIB_SYSDEF_AF_INET">
|
|
<source-position filename="glibconfig.h" line="202"/>
|
|
<type name="gint" c:type="gint"/>
|
|
</constant>
|
|
<constant name="SYSDEF_AF_INET6" value="10" c:type="GLIB_SYSDEF_AF_INET6">
|
|
<source-position filename="glibconfig.h" line="203"/>
|
|
<type name="gint" c:type="gint"/>
|
|
</constant>
|
|
<constant name="SYSDEF_AF_UNIX" value="1" c:type="GLIB_SYSDEF_AF_UNIX">
|
|
<source-position filename="glibconfig.h" line="201"/>
|
|
<type name="gint" c:type="gint"/>
|
|
</constant>
|
|
<constant name="SYSDEF_MSG_DONTROUTE" value="4" c:type="GLIB_SYSDEF_MSG_DONTROUTE">
|
|
<source-position filename="glibconfig.h" line="207"/>
|
|
<type name="gint" c:type="gint"/>
|
|
</constant>
|
|
<constant name="SYSDEF_MSG_OOB" value="1" c:type="GLIB_SYSDEF_MSG_OOB">
|
|
<source-position filename="glibconfig.h" line="205"/>
|
|
<type name="gint" c:type="gint"/>
|
|
</constant>
|
|
<constant name="SYSDEF_MSG_PEEK" value="2" c:type="GLIB_SYSDEF_MSG_PEEK">
|
|
<source-position filename="glibconfig.h" line="206"/>
|
|
<type name="gint" c:type="gint"/>
|
|
</constant>
|
|
<record name="Scanner" c:type="GScanner">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1702">The data structure representing a lexical scanner.
|
|
|
|
You should set @input_name after creating the scanner, since
|
|
it is used by the default message handler when displaying
|
|
warnings and errors. If you are scanning a file, the filename
|
|
would be a good choice.
|
|
|
|
The @user_data and @max_parse_errors fields are not used.
|
|
If you need to associate extra data with the scanner you
|
|
can place them here.
|
|
|
|
If you want to use your own message handler you can set the
|
|
@msg_handler field. The type of the message handler function
|
|
is declared by #GScannerMsgFunc.</doc>
|
|
<source-position filename="gscanner.h" line="211"/>
|
|
<field name="user_data" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1704">unused</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</field>
|
|
<field name="max_parse_errors" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1705">unused</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="parse_errors" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1706">g_scanner_error() increments this field</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="input_name" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1707">name of input stream, featured by the default message handler</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</field>
|
|
<field name="qdata" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1708">quarked data</doc>
|
|
<type name="Data" c:type="GData*"/>
|
|
</field>
|
|
<field name="config" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1709">link into the scanner configuration</doc>
|
|
<type name="ScannerConfig" c:type="GScannerConfig*"/>
|
|
</field>
|
|
<field name="token" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1710">token parsed by the last g_scanner_get_next_token()</doc>
|
|
<type name="TokenType" c:type="GTokenType"/>
|
|
</field>
|
|
<field name="value" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1711">value of the last token from g_scanner_get_next_token()</doc>
|
|
<type name="TokenValue" c:type="GTokenValue"/>
|
|
</field>
|
|
<field name="line" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1712">line number of the last token from g_scanner_get_next_token()</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="position" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1713">char number of the last token from g_scanner_get_next_token()</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="next_token" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1714">token parsed by the last g_scanner_peek_next_token()</doc>
|
|
<type name="TokenType" c:type="GTokenType"/>
|
|
</field>
|
|
<field name="next_value" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1715">value of the last token from g_scanner_peek_next_token()</doc>
|
|
<type name="TokenValue" c:type="GTokenValue"/>
|
|
</field>
|
|
<field name="next_line" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1716">line number of the last token from g_scanner_peek_next_token()</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="next_position" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1717">char number of the last token from g_scanner_peek_next_token()</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="symbol_table" readable="0" private="1">
|
|
<type name="GLib.HashTable" c:type="GHashTable*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</field>
|
|
<field name="input_fd" readable="0" private="1">
|
|
<type name="gint" c:type="gint"/>
|
|
</field>
|
|
<field name="text" readable="0" private="1">
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</field>
|
|
<field name="text_end" readable="0" private="1">
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</field>
|
|
<field name="buffer" readable="0" private="1">
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</field>
|
|
<field name="scope_id" readable="0" private="1">
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="msg_handler" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1718">handler function for _warn and _error</doc>
|
|
<type name="ScannerMsgFunc" c:type="GScannerMsgFunc"/>
|
|
</field>
|
|
<method name="cur_line" c:identifier="g_scanner_cur_line">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27109">Returns the current line in the input stream (counting
|
|
from 1). This is the line of the last token parsed via
|
|
g_scanner_get_next_token().</doc>
|
|
<source-position filename="gscanner.h" line="235"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27117">the current line</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="scanner" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27111">a #GScanner</doc>
|
|
<type name="Scanner" c:type="GScanner*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="cur_position" c:identifier="g_scanner_cur_position">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27121">Returns the current position in the current line (counting
|
|
from 0). This is the position of the last token parsed via
|
|
g_scanner_get_next_token().</doc>
|
|
<source-position filename="gscanner.h" line="237"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27129">the current position on the line</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="scanner" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27123">a #GScanner</doc>
|
|
<type name="Scanner" c:type="GScanner*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="cur_token" c:identifier="g_scanner_cur_token">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27133">Gets the current token type. This is simply the @token
|
|
field in the #GScanner structure.</doc>
|
|
<source-position filename="gscanner.h" line="231"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27140">the current token type</doc>
|
|
<type name="TokenType" c:type="GTokenType"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="scanner" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27135">a #GScanner</doc>
|
|
<type name="Scanner" c:type="GScanner*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="cur_value" c:identifier="g_scanner_cur_value" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27144">Gets the current token value. This is simply the @value
|
|
field in the #GScanner structure.</doc>
|
|
<source-position filename="gscanner.h" line="233"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27151">the current token value</doc>
|
|
<type name="TokenValue" c:type="GTokenValue"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="scanner" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27146">a #GScanner</doc>
|
|
<type name="Scanner" c:type="GScanner*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="destroy" c:identifier="g_scanner_destroy">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27155">Frees all memory used by the #GScanner.</doc>
|
|
<source-position filename="gscanner.h" line="216"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="scanner" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27157">a #GScanner</doc>
|
|
<type name="Scanner" c:type="GScanner*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="eof" c:identifier="g_scanner_eof">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27163">Returns %TRUE if the scanner has reached the end of
|
|
the file or text buffer.</doc>
|
|
<source-position filename="gscanner.h" line="239"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27170">%TRUE if the scanner has reached the end of
|
|
the file or text buffer</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="scanner" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27165">a #GScanner</doc>
|
|
<type name="Scanner" c:type="GScanner*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="error" c:identifier="g_scanner_error" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27175">Outputs an error message, via the #GScanner message handler.</doc>
|
|
<source-position filename="gscanner.h" line="273"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="scanner" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27177">a #GScanner</doc>
|
|
<type name="Scanner" c:type="GScanner*"/>
|
|
</instance-parameter>
|
|
<parameter name="format" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27178">the message format. See the printf() documentation</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="..." transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27179">the parameters to insert into the format string</doc>
|
|
<varargs/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_next_token" c:identifier="g_scanner_get_next_token">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27207">Parses the next token just like g_scanner_peek_next_token()
|
|
and also removes it from the input stream. The token data is
|
|
placed in the @token, @value, @line, and @position fields of
|
|
the #GScanner structure.</doc>
|
|
<source-position filename="gscanner.h" line="227"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27216">the type of the token</doc>
|
|
<type name="TokenType" c:type="GTokenType"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="scanner" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27209">a #GScanner</doc>
|
|
<type name="Scanner" c:type="GScanner*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="input_file" c:identifier="g_scanner_input_file">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27220">Prepares to scan a file.</doc>
|
|
<source-position filename="gscanner.h" line="218"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="scanner" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27222">a #GScanner</doc>
|
|
<type name="Scanner" c:type="GScanner*"/>
|
|
</instance-parameter>
|
|
<parameter name="input_fd" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27223">a file descriptor</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="input_text" c:identifier="g_scanner_input_text">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27229">Prepares to scan a text buffer.</doc>
|
|
<source-position filename="gscanner.h" line="223"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="scanner" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27231">a #GScanner</doc>
|
|
<type name="Scanner" c:type="GScanner*"/>
|
|
</instance-parameter>
|
|
<parameter name="text" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27232">the text buffer to scan</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="text_len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27233">the length of the text buffer</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="lookup_symbol" c:identifier="g_scanner_lookup_symbol">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27239">Looks up a symbol in the current scope and return its value.
|
|
If the symbol is not bound in the current scope, %NULL is
|
|
returned.</doc>
|
|
<source-position filename="gscanner.h" line="262"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27248">the value of @symbol in the current scope, or %NULL
|
|
if @symbol is not bound in the current scope</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="scanner" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27241">a #GScanner</doc>
|
|
<type name="Scanner" c:type="GScanner*"/>
|
|
</instance-parameter>
|
|
<parameter name="symbol" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27242">the symbol to look up</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="peek_next_token" c:identifier="g_scanner_peek_next_token">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27268">Parses the next token, without removing it from the input stream.
|
|
The token data is placed in the @next_token, @next_value, @next_line,
|
|
and @next_position fields of the #GScanner structure.
|
|
|
|
Note that, while the token is not removed from the input stream
|
|
(i.e. the next call to g_scanner_get_next_token() will return the
|
|
same token), it will not be reevaluated. This can lead to surprising
|
|
results when changing scope or the scanner configuration after peeking
|
|
the next token. Getting the next token after switching the scope or
|
|
configuration will return whatever was peeked before, regardless of
|
|
any symbols that may have been added or removed in the new scope.</doc>
|
|
<source-position filename="gscanner.h" line="229"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27284">the type of the token</doc>
|
|
<type name="TokenType" c:type="GTokenType"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="scanner" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27270">a #GScanner</doc>
|
|
<type name="Scanner" c:type="GScanner*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="scope_add_symbol" c:identifier="g_scanner_scope_add_symbol">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27299">Adds a symbol to the given scope.</doc>
|
|
<source-position filename="gscanner.h" line="244"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="scanner" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27301">a #GScanner</doc>
|
|
<type name="Scanner" c:type="GScanner*"/>
|
|
</instance-parameter>
|
|
<parameter name="scope_id" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27302">the scope id</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
<parameter name="symbol" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27303">the symbol to add</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="value" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27304">the value of the symbol</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="scope_foreach_symbol" c:identifier="g_scanner_scope_foreach_symbol" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27310">Calls the given function for each of the symbol/value pairs
|
|
in the given scope of the #GScanner. The function is passed
|
|
the symbol and value of each pair, and the given @user_data
|
|
parameter.</doc>
|
|
<source-position filename="gscanner.h" line="257"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="scanner" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27312">a #GScanner</doc>
|
|
<type name="Scanner" c:type="GScanner*"/>
|
|
</instance-parameter>
|
|
<parameter name="scope_id" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27313">the scope id</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
<parameter name="func" transfer-ownership="none" closure="2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27314">the function to call for each symbol/value pair</doc>
|
|
<type name="HFunc" c:type="GHFunc"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27315">user data to pass to the function</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="scope_lookup_symbol" c:identifier="g_scanner_scope_lookup_symbol">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27324">Looks up a symbol in a scope and return its value. If the
|
|
symbol is not bound in the scope, %NULL is returned.</doc>
|
|
<source-position filename="gscanner.h" line="253"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27333">the value of @symbol in the given scope, or %NULL
|
|
if @symbol is not bound in the given scope.</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="scanner" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27326">a #GScanner</doc>
|
|
<type name="Scanner" c:type="GScanner*"/>
|
|
</instance-parameter>
|
|
<parameter name="scope_id" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27327">the scope id</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
<parameter name="symbol" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27328">the symbol to look up</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="scope_remove_symbol" c:identifier="g_scanner_scope_remove_symbol">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27338">Removes a symbol from a scope.</doc>
|
|
<source-position filename="gscanner.h" line="249"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="scanner" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27340">a #GScanner</doc>
|
|
<type name="Scanner" c:type="GScanner*"/>
|
|
</instance-parameter>
|
|
<parameter name="scope_id" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27341">the scope id</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
<parameter name="symbol" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27342">the symbol to remove</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_scope" c:identifier="g_scanner_set_scope">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27348">Sets the current scope.</doc>
|
|
<source-position filename="gscanner.h" line="241"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27355">the old scope id</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="scanner" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27350">a #GScanner</doc>
|
|
<type name="Scanner" c:type="GScanner*"/>
|
|
</instance-parameter>
|
|
<parameter name="scope_id" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27351">the new scope id</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="sync_file_offset" c:identifier="g_scanner_sync_file_offset">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27359">Rewinds the filedescriptor to the current buffer position
|
|
and blows the file read ahead buffer. This is useful for
|
|
third party uses of the scanners filedescriptor, which hooks
|
|
onto the current scanning position.</doc>
|
|
<source-position filename="gscanner.h" line="221"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="scanner" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27361">a #GScanner</doc>
|
|
<type name="Scanner" c:type="GScanner*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="unexp_token" c:identifier="g_scanner_unexp_token">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27380">Outputs a message through the scanner's msg_handler,
|
|
resulting from an unexpected token in the input stream.
|
|
Note that you should not call g_scanner_peek_next_token()
|
|
followed by g_scanner_unexp_token() without an intermediate
|
|
call to g_scanner_get_next_token(), as g_scanner_unexp_token()
|
|
evaluates the scanner's current token (not the peeked token)
|
|
to construct part of the message.</doc>
|
|
<source-position filename="gscanner.h" line="265"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="scanner" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27382">a #GScanner</doc>
|
|
<type name="Scanner" c:type="GScanner*"/>
|
|
</instance-parameter>
|
|
<parameter name="expected_token" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27383">the expected token</doc>
|
|
<type name="TokenType" c:type="GTokenType"/>
|
|
</parameter>
|
|
<parameter name="identifier_spec" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27384">a string describing how the scanner's user
|
|
refers to identifiers (%NULL defaults to "identifier").
|
|
This is used if @expected_token is %G_TOKEN_IDENTIFIER or
|
|
%G_TOKEN_IDENTIFIER_NULL.</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="symbol_spec" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27388">a string describing how the scanner's user refers
|
|
to symbols (%NULL defaults to "symbol"). This is used if
|
|
@expected_token is %G_TOKEN_SYMBOL or any token value greater
|
|
than %G_TOKEN_LAST.</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="symbol_name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27392">the name of the symbol, if the scanner's current
|
|
token is a symbol.</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="message" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27394">a message string to output at the end of the
|
|
warning/error, or %NULL.</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="is_error" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27396">if %TRUE it is output as an error. If %FALSE it is
|
|
output as a warning.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="warn" c:identifier="g_scanner_warn" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27409">Outputs a warning message, via the #GScanner message handler.</doc>
|
|
<source-position filename="gscanner.h" line="277"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="scanner" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27411">a #GScanner</doc>
|
|
<type name="Scanner" c:type="GScanner*"/>
|
|
</instance-parameter>
|
|
<parameter name="format" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27412">the message format. See the printf() documentation</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="..." transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27413">the parameters to insert into the format string</doc>
|
|
<varargs/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<function name="new" c:identifier="g_scanner_new" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27253">Creates a new #GScanner.
|
|
|
|
The @config_templ structure specifies the initial settings
|
|
of the scanner, which are copied into the #GScanner
|
|
@config field. If you pass %NULL then the default settings
|
|
are used.</doc>
|
|
<source-position filename="gscanner.h" line="214"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27264">the new #GScanner</doc>
|
|
<type name="Scanner" c:type="GScanner*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="config_templ" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27255">the initial scanner settings</doc>
|
|
<type name="ScannerConfig" c:type="const GScannerConfig*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
</record>
|
|
<record name="ScannerConfig" c:type="GScannerConfig">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1737">Specifies the #GScanner parser configuration. Most settings can
|
|
be changed during the parsing phase and will affect the lexical
|
|
parsing of the next unpeeked token.</doc>
|
|
<source-position filename="gscanner.h" line="167"/>
|
|
<field name="cset_skip_characters" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1739">specifies which characters should be skipped
|
|
by the scanner (the default is the whitespace characters: space,
|
|
tab, carriage-return and line-feed).</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</field>
|
|
<field name="cset_identifier_first" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1742">specifies the characters which can start
|
|
identifiers (the default is #G_CSET_a_2_z, "_", and #G_CSET_A_2_Z).</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</field>
|
|
<field name="cset_identifier_nth" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1744">specifies the characters which can be used
|
|
in identifiers, after the first character (the default is
|
|
#G_CSET_a_2_z, "_0123456789", #G_CSET_A_2_Z, #G_CSET_LATINS,
|
|
#G_CSET_LATINC).</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</field>
|
|
<field name="cpair_comment_single" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1748">specifies the characters at the start and
|
|
end of single-line comments. The default is "#\n" which means
|
|
that single-line comments start with a '#' and continue until
|
|
a '\n' (end of line).</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</field>
|
|
<field name="case_sensitive" writable="1" bits="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1752">specifies if symbols are case sensitive (the
|
|
default is %FALSE).</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="skip_comment_multi" writable="1" bits="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1754">specifies if multi-line comments are skipped
|
|
and not returned as tokens (the default is %TRUE).</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="skip_comment_single" writable="1" bits="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1756">specifies if single-line comments are skipped
|
|
and not returned as tokens (the default is %TRUE).</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="scan_comment_multi" writable="1" bits="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1758">specifies if multi-line comments are recognized
|
|
(the default is %TRUE).</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="scan_identifier" writable="1" bits="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1760">specifies if identifiers are recognized (the
|
|
default is %TRUE).</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="scan_identifier_1char" writable="1" bits="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1762">specifies if single-character
|
|
identifiers are recognized (the default is %FALSE).</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="scan_identifier_NULL" writable="1" bits="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1764">specifies if %NULL is reported as
|
|
%G_TOKEN_IDENTIFIER_NULL (the default is %FALSE).</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="scan_symbols" writable="1" bits="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1766">specifies if symbols are recognized (the default
|
|
is %TRUE).</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="scan_binary" writable="1" bits="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1768">specifies if binary numbers are recognized (the
|
|
default is %FALSE).</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="scan_octal" writable="1" bits="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1770">specifies if octal numbers are recognized (the
|
|
default is %TRUE).</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="scan_float" writable="1" bits="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1772">specifies if floating point numbers are recognized
|
|
(the default is %TRUE).</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="scan_hex" writable="1" bits="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1774">specifies if hexadecimal numbers are recognized (the
|
|
default is %TRUE).</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="scan_hex_dollar" writable="1" bits="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1776">specifies if '$' is recognized as a prefix for
|
|
hexadecimal numbers (the default is %FALSE).</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="scan_string_sq" writable="1" bits="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1778">specifies if strings can be enclosed in single
|
|
quotes (the default is %TRUE).</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="scan_string_dq" writable="1" bits="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1780">specifies if strings can be enclosed in double
|
|
quotes (the default is %TRUE).</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="numbers_2_int" writable="1" bits="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1782">specifies if binary, octal and hexadecimal numbers
|
|
are reported as #G_TOKEN_INT (the default is %TRUE).</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="int_2_float" writable="1" bits="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1784">specifies if all numbers are reported as %G_TOKEN_FLOAT
|
|
(the default is %FALSE).</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="identifier_2_string" writable="1" bits="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1786">specifies if identifiers are reported as strings
|
|
(the default is %FALSE).</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="char_2_token" writable="1" bits="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1788">specifies if characters are reported by setting
|
|
`token = ch` or as %G_TOKEN_CHAR (the default is %TRUE).</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="symbol_2_token" writable="1" bits="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1790">specifies if symbols are reported by setting
|
|
`token = v_symbol` or as %G_TOKEN_SYMBOL (the default is %FALSE).</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="scope_0_fallback" writable="1" bits="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1792">specifies if a symbol is searched for in the
|
|
default scope in addition to the current scope (the default is %FALSE).</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="store_int64" writable="1" bits="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1794">use value.v_int64 rather than v_int</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="padding_dummy" readable="0" private="1">
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
</record>
|
|
<callback name="ScannerMsgFunc" c:type="GScannerMsgFunc">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1802">Specifies the type of the message handler function.</doc>
|
|
<source-position filename="gscanner.h" line="41"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="scanner" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1804">a #GScanner</doc>
|
|
<type name="Scanner" c:type="GScanner*"/>
|
|
</parameter>
|
|
<parameter name="message" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1805">the message</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</parameter>
|
|
<parameter name="error" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1806">%TRUE if the message signals an error,
|
|
%FALSE if it signals a warning.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
<enumeration name="SeekType" c:type="GSeekType">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1813">An enumeration specifying the base position for a
|
|
g_io_channel_seek_position() operation.</doc>
|
|
<source-position filename="giochannel.h" line="82"/>
|
|
<member name="cur" value="0" c:identifier="G_SEEK_CUR">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1815">the current position in the file.</doc>
|
|
</member>
|
|
<member name="set" value="1" c:identifier="G_SEEK_SET">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1816">the start of the file.</doc>
|
|
</member>
|
|
<member name="end" value="2" c:identifier="G_SEEK_END">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1817">the end of the file.</doc>
|
|
</member>
|
|
</enumeration>
|
|
<record name="Sequence" c:type="GSequence" disguised="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1824">The #GSequence struct is an opaque data type representing a
|
|
[sequence][glib-Sequences] data type.</doc>
|
|
<source-position filename="gsequence.h" line="30"/>
|
|
<method name="append" c:identifier="g_sequence_append" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27419">Adds a new item to the end of @seq.</doc>
|
|
<source-position filename="gsequence.h" line="75"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27426">an iterator pointing to the new item</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="seq" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27421">a #GSequence</doc>
|
|
<type name="Sequence" c:type="GSequence*"/>
|
|
</instance-parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27422">the data for the new item</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="foreach" c:identifier="g_sequence_foreach" version="2.14" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27431">Calls @func for each item in the sequence passing @user_data
|
|
to the function. @func must not modify the sequence itself.</doc>
|
|
<source-position filename="gsequence.h" line="46"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="seq" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27433">a #GSequence</doc>
|
|
<type name="Sequence" c:type="GSequence*"/>
|
|
</instance-parameter>
|
|
<parameter name="func" transfer-ownership="none" closure="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27434">the function to call for each item in @seq</doc>
|
|
<type name="Func" c:type="GFunc"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27435">user data passed to @func</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="free" c:identifier="g_sequence_free" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27459">Frees the memory allocated for @seq. If @seq has a data destroy
|
|
function associated with it, that function is called on all items
|
|
in @seq.</doc>
|
|
<source-position filename="gsequence.h" line="42"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="seq" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27461">a #GSequence</doc>
|
|
<type name="Sequence" c:type="GSequence*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_begin_iter" c:identifier="g_sequence_get_begin_iter" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27482">Returns the begin iterator for @seq.</doc>
|
|
<source-position filename="gsequence.h" line="68"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27488">the begin iterator for @seq.</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="seq" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27484">a #GSequence</doc>
|
|
<type name="Sequence" c:type="GSequence*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_end_iter" c:identifier="g_sequence_get_end_iter" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27493">Returns the end iterator for @seg</doc>
|
|
<source-position filename="gsequence.h" line="70"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27499">the end iterator for @seq</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="seq" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27495">a #GSequence</doc>
|
|
<type name="Sequence" c:type="GSequence*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_iter_at_pos" c:identifier="g_sequence_get_iter_at_pos" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27504">Returns the iterator at position @pos. If @pos is negative or larger
|
|
than the number of items in @seq, the end iterator is returned.</doc>
|
|
<source-position filename="gsequence.h" line="72"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27512">The #GSequenceIter at position @pos</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="seq" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27506">a #GSequence</doc>
|
|
<type name="Sequence" c:type="GSequence*"/>
|
|
</instance-parameter>
|
|
<parameter name="pos" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27507">a position in @seq, or -1 for the end</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_length" c:identifier="g_sequence_get_length" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27517">Returns the length of @seq. Note that this method is O(h) where `h' is the
|
|
height of the tree. It is thus more efficient to use g_sequence_is_empty()
|
|
when comparing the length to zero.</doc>
|
|
<source-position filename="gsequence.h" line="44"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27525">the length of @seq</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="seq" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27519">a #GSequence</doc>
|
|
<type name="Sequence" c:type="GSequence*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="insert_sorted" c:identifier="g_sequence_insert_sorted" version="2.14" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27542">Inserts @data into @seq using @cmp_func to determine the new
|
|
position. The sequence must already be sorted according to @cmp_func;
|
|
otherwise the new position of @data is undefined.
|
|
|
|
@cmp_func is called with two items of the @seq, and @cmp_data.
|
|
It should return 0 if the items are equal, a negative value
|
|
if the first item comes before the second, and a positive value
|
|
if the second item comes before the first.
|
|
|
|
Note that when adding a large amount of data to a #GSequence,
|
|
it is more efficient to do unsorted insertions and then call
|
|
g_sequence_sort() or g_sequence_sort_iter().</doc>
|
|
<source-position filename="gsequence.h" line="90"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27562">a #GSequenceIter pointing to the new item.</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="seq" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27544">a #GSequence</doc>
|
|
<type name="Sequence" c:type="GSequence*"/>
|
|
</instance-parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27545">the data to insert</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="cmp_func" transfer-ownership="none" closure="2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27546">the function used to compare items in the sequence</doc>
|
|
<type name="CompareDataFunc" c:type="GCompareDataFunc"/>
|
|
</parameter>
|
|
<parameter name="cmp_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27547">user data passed to @cmp_func.</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="insert_sorted_iter" c:identifier="g_sequence_insert_sorted_iter" version="2.14" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27567">Like g_sequence_insert_sorted(), but uses
|
|
a #GSequenceIterCompareFunc instead of a #GCompareDataFunc as
|
|
the compare function.
|
|
|
|
@iter_cmp is called with two iterators pointing into @seq.
|
|
It should return 0 if the iterators are equal, a negative
|
|
value if the first iterator comes before the second, and a
|
|
positive value if the second iterator comes before the first.
|
|
|
|
Note that when adding a large amount of data to a #GSequence,
|
|
it is more efficient to do unsorted insertions and then call
|
|
g_sequence_sort() or g_sequence_sort_iter().</doc>
|
|
<source-position filename="gsequence.h" line="95"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27587">a #GSequenceIter pointing to the new item</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="seq" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27569">a #GSequence</doc>
|
|
<type name="Sequence" c:type="GSequence*"/>
|
|
</instance-parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27570">data for the new item</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="iter_cmp" transfer-ownership="none" closure="2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27571">the function used to compare iterators in the sequence</doc>
|
|
<type name="SequenceIterCompareFunc" c:type="GSequenceIterCompareFunc"/>
|
|
</parameter>
|
|
<parameter name="cmp_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27572">user data passed to @iter_cmp</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="is_empty" c:identifier="g_sequence_is_empty" version="2.48">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27592">Returns %TRUE if the sequence contains zero items.
|
|
|
|
This function is functionally identical to checking the result of
|
|
g_sequence_get_length() being equal to zero. However this function is
|
|
implemented in O(1) running time.</doc>
|
|
<source-position filename="gsequence.h" line="63"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27602">%TRUE if the sequence is empty, otherwise %FALSE.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="seq" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27594">a #GSequence</doc>
|
|
<type name="Sequence" c:type="GSequence*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="lookup" c:identifier="g_sequence_lookup" version="2.28" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27708">Returns an iterator pointing to the position of the first item found
|
|
equal to @data according to @cmp_func and @cmp_data. If more than one
|
|
item is equal, it is not guaranteed that it is the first which is
|
|
returned. In that case, you can use g_sequence_iter_next() and
|
|
g_sequence_iter_prev() to get others.
|
|
|
|
@cmp_func is called with two items of the @seq, and @cmp_data.
|
|
It should return 0 if the items are equal, a negative value if
|
|
the first item comes before the second, and a positive value if
|
|
the second item comes before the first.
|
|
|
|
This function will fail if the data contained in the sequence is
|
|
unsorted.</doc>
|
|
<source-position filename="gsequence.h" line="127"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27729">an #GSequenceIter pointing to the position of the
|
|
first item found equal to @data according to @cmp_func and
|
|
@cmp_data, or %NULL if no such item exists</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="seq" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27710">a #GSequence</doc>
|
|
<type name="Sequence" c:type="GSequence*"/>
|
|
</instance-parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27711">data to look up</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="cmp_func" transfer-ownership="none" closure="2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27712">the function used to compare items in the sequence</doc>
|
|
<type name="CompareDataFunc" c:type="GCompareDataFunc"/>
|
|
</parameter>
|
|
<parameter name="cmp_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27713">user data passed to @cmp_func</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="lookup_iter" c:identifier="g_sequence_lookup_iter" version="2.28" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27736">Like g_sequence_lookup(), but uses a #GSequenceIterCompareFunc
|
|
instead of a #GCompareDataFunc as the compare function.
|
|
|
|
@iter_cmp is called with two iterators pointing into @seq.
|
|
It should return 0 if the iterators are equal, a negative value
|
|
if the first iterator comes before the second, and a positive
|
|
value if the second iterator comes before the first.
|
|
|
|
This function will fail if the data contained in the sequence is
|
|
unsorted.</doc>
|
|
<source-position filename="gsequence.h" line="132"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27754">an #GSequenceIter pointing to the position of
|
|
the first item found equal to @data according to @iter_cmp
|
|
and @cmp_data, or %NULL if no such item exists</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="seq" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27738">a #GSequence</doc>
|
|
<type name="Sequence" c:type="GSequence*"/>
|
|
</instance-parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27739">data to look up</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="iter_cmp" transfer-ownership="none" closure="2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27740">the function used to compare iterators in the sequence</doc>
|
|
<type name="SequenceIterCompareFunc" c:type="GSequenceIterCompareFunc"/>
|
|
</parameter>
|
|
<parameter name="cmp_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27741">user data passed to @iter_cmp</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="prepend" c:identifier="g_sequence_prepend" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27808">Adds a new item to the front of @seq</doc>
|
|
<source-position filename="gsequence.h" line="78"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27815">an iterator pointing to the new item</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="seq" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27810">a #GSequence</doc>
|
|
<type name="Sequence" c:type="GSequence*"/>
|
|
</instance-parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27811">the data for the new item</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="search" c:identifier="g_sequence_search" version="2.14" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27866">Returns an iterator pointing to the position where @data would
|
|
be inserted according to @cmp_func and @cmp_data.
|
|
|
|
@cmp_func is called with two items of the @seq, and @cmp_data.
|
|
It should return 0 if the items are equal, a negative value if
|
|
the first item comes before the second, and a positive value if
|
|
the second item comes before the first.
|
|
|
|
If you are simply searching for an existing element of the sequence,
|
|
consider using g_sequence_lookup().
|
|
|
|
This function will fail if the data contained in the sequence is
|
|
unsorted.</doc>
|
|
<source-position filename="gsequence.h" line="117"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27887">an #GSequenceIter pointing to the position where @data
|
|
would have been inserted according to @cmp_func and @cmp_data</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="seq" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27868">a #GSequence</doc>
|
|
<type name="Sequence" c:type="GSequence*"/>
|
|
</instance-parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27869">data for the new item</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="cmp_func" transfer-ownership="none" closure="2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27870">the function used to compare items in the sequence</doc>
|
|
<type name="CompareDataFunc" c:type="GCompareDataFunc"/>
|
|
</parameter>
|
|
<parameter name="cmp_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27871">user data passed to @cmp_func</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="search_iter" c:identifier="g_sequence_search_iter" version="2.14" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27893">Like g_sequence_search(), but uses a #GSequenceIterCompareFunc
|
|
instead of a #GCompareDataFunc as the compare function.
|
|
|
|
@iter_cmp is called with two iterators pointing into @seq.
|
|
It should return 0 if the iterators are equal, a negative value
|
|
if the first iterator comes before the second, and a positive
|
|
value if the second iterator comes before the first.
|
|
|
|
If you are simply searching for an existing element of the sequence,
|
|
consider using g_sequence_lookup_iter().
|
|
|
|
This function will fail if the data contained in the sequence is
|
|
unsorted.</doc>
|
|
<source-position filename="gsequence.h" line="122"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27914">a #GSequenceIter pointing to the position in @seq
|
|
where @data would have been inserted according to @iter_cmp
|
|
and @cmp_data</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="seq" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27895">a #GSequence</doc>
|
|
<type name="Sequence" c:type="GSequence*"/>
|
|
</instance-parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27896">data for the new item</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="iter_cmp" transfer-ownership="none" closure="2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27897">the function used to compare iterators in the sequence</doc>
|
|
<type name="SequenceIterCompareFunc" c:type="GSequenceIterCompareFunc"/>
|
|
</parameter>
|
|
<parameter name="cmp_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27898">user data passed to @iter_cmp</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="sort" c:identifier="g_sequence_sort" version="2.14" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27934">Sorts @seq using @cmp_func.
|
|
|
|
@cmp_func is passed two items of @seq and should
|
|
return 0 if they are equal, a negative value if the
|
|
first comes before the second, and a positive value
|
|
if the second comes before the first.</doc>
|
|
<source-position filename="gsequence.h" line="55"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="seq" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27936">a #GSequence</doc>
|
|
<type name="Sequence" c:type="GSequence*"/>
|
|
</instance-parameter>
|
|
<parameter name="cmp_func" transfer-ownership="none" closure="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27937">the function used to sort the sequence</doc>
|
|
<type name="CompareDataFunc" c:type="GCompareDataFunc"/>
|
|
</parameter>
|
|
<parameter name="cmp_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27938">user data passed to @cmp_func</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="sort_iter" c:identifier="g_sequence_sort_iter" version="2.14" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27992">Like g_sequence_sort(), but uses a #GSequenceIterCompareFunc instead
|
|
of a #GCompareDataFunc as the compare function
|
|
|
|
@cmp_func is called with two iterators pointing into @seq. It should
|
|
return 0 if the iterators are equal, a negative value if the first
|
|
iterator comes before the second, and a positive value if the second
|
|
iterator comes before the first.</doc>
|
|
<source-position filename="gsequence.h" line="59"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="seq" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27994">a #GSequence</doc>
|
|
<type name="Sequence" c:type="GSequence*"/>
|
|
</instance-parameter>
|
|
<parameter name="cmp_func" transfer-ownership="none" closure="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27995">the function used to compare iterators in the sequence</doc>
|
|
<type name="SequenceIterCompareFunc" c:type="GSequenceIterCompareFunc"/>
|
|
</parameter>
|
|
<parameter name="cmp_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27996">user data passed to @cmp_func</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<function name="foreach_range" c:identifier="g_sequence_foreach_range" version="2.14" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27444">Calls @func for each item in the range (@begin, @end) passing
|
|
@user_data to the function. @func must not modify the sequence
|
|
itself.</doc>
|
|
<source-position filename="gsequence.h" line="50"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="begin" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27446">a #GSequenceIter</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</parameter>
|
|
<parameter name="end" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27447">a #GSequenceIter</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</parameter>
|
|
<parameter name="func" transfer-ownership="none" closure="3">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27448">a #GFunc</doc>
|
|
<type name="Func" c:type="GFunc"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27449">user data passed to @func</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="get" c:identifier="g_sequence_get" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27471">Returns the data that @iter points to.</doc>
|
|
<source-position filename="gsequence.h" line="140"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27477">the data that @iter points to</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="iter" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27473">a #GSequenceIter</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="insert_before" c:identifier="g_sequence_insert_before" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27530">Inserts a new item just before the item pointed to by @iter.</doc>
|
|
<source-position filename="gsequence.h" line="81"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27537">an iterator pointing to the new item</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="iter" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27532">a #GSequenceIter</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27533">the data for the new item</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="move" c:identifier="g_sequence_move" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27761">Moves the item pointed to by @src to the position indicated by @dest.
|
|
After calling this function @dest will point to the position immediately
|
|
after @src. It is allowed for @src and @dest to point into different
|
|
sequences.</doc>
|
|
<source-position filename="gsequence.h" line="84"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="src" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27763">a #GSequenceIter pointing to the item to move</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</parameter>
|
|
<parameter name="dest" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27764">a #GSequenceIter pointing to the position to which
|
|
the item is moved</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="move_range" c:identifier="g_sequence_move_range" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27776">Inserts the (@begin, @end) range at the destination pointed to by @dest.
|
|
The @begin and @end iters must point into the same sequence. It is
|
|
allowed for @dest to point to a different sequence than the one pointed
|
|
into by @begin and @end.
|
|
|
|
If @dest is %NULL, the range indicated by @begin and @end is
|
|
removed from the sequence. If @dest points to a place within
|
|
the (@begin, @end) range, the range does not move.</doc>
|
|
<source-position filename="gsequence.h" line="113"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="dest" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27778">a #GSequenceIter</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</parameter>
|
|
<parameter name="begin" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27779">a #GSequenceIter</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</parameter>
|
|
<parameter name="end" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27780">a #GSequenceIter</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="new" c:identifier="g_sequence_new" version="2.14" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27795">Creates a new GSequence. The @data_destroy function, if non-%NULL will
|
|
be called on all items when the sequence is destroyed and on items that
|
|
are removed from the sequence.</doc>
|
|
<source-position filename="gsequence.h" line="40"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27803">a new #GSequence</doc>
|
|
<type name="Sequence" c:type="GSequence*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="data_destroy" transfer-ownership="none" nullable="1" allow-none="1" scope="async">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27797">a #GDestroyNotify function, or %NULL</doc>
|
|
<type name="DestroyNotify" c:type="GDestroyNotify"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="range_get_midpoint" c:identifier="g_sequence_range_get_midpoint" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27820">Finds an iterator somewhere in the range (@begin, @end). This
|
|
iterator will be close to the middle of the range, but is not
|
|
guaranteed to be exactly in the middle.
|
|
|
|
The @begin and @end iterators must both point to the same sequence
|
|
and @begin must come before or be equal to @end in the sequence.</doc>
|
|
<source-position filename="gsequence.h" line="168"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27832">a #GSequenceIter pointing somewhere in the
|
|
(@begin, @end) range</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="begin" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27822">a #GSequenceIter</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</parameter>
|
|
<parameter name="end" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27823">a #GSequenceIter</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="remove" c:identifier="g_sequence_remove" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27838">Removes the item pointed to by @iter. It is an error to pass the
|
|
end iterator to this function.
|
|
|
|
If the sequence has a data destroy function associated with it, this
|
|
function is called on the data for the removed item.</doc>
|
|
<source-position filename="gsequence.h" line="108"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="iter" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27840">a #GSequenceIter</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="remove_range" c:identifier="g_sequence_remove_range" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27852">Removes all items in the (@begin, @end) range.
|
|
|
|
If the sequence has a data destroy function associated with it, this
|
|
function is called on the data for the removed items.</doc>
|
|
<source-position filename="gsequence.h" line="110"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="begin" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27854">a #GSequenceIter</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</parameter>
|
|
<parameter name="end" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27855">a #GSequenceIter</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="set" c:identifier="g_sequence_set" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27921">Changes the data for the item pointed to by @iter to be @data. If
|
|
the sequence has a data destroy function associated with it, that
|
|
function is called on the existing data that @iter pointed to.</doc>
|
|
<source-position filename="gsequence.h" line="142"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="iter" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27923">a #GSequenceIter</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27924">new data for the item</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="sort_changed" c:identifier="g_sequence_sort_changed" version="2.14" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27951">Moves the data pointed to by @iter to a new position as indicated by
|
|
@cmp_func. This
|
|
function should be called for items in a sequence already sorted according
|
|
to @cmp_func whenever some aspect of an item changes so that @cmp_func
|
|
may return different values for that item.
|
|
|
|
@cmp_func is called with two items of the @seq, and @cmp_data.
|
|
It should return 0 if the items are equal, a negative value if
|
|
the first item comes before the second, and a positive value if
|
|
the second item comes before the first.</doc>
|
|
<source-position filename="gsequence.h" line="100"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="iter" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27953">A #GSequenceIter</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</parameter>
|
|
<parameter name="cmp_func" transfer-ownership="none" closure="2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27954">the function used to compare items in the sequence</doc>
|
|
<type name="CompareDataFunc" c:type="GCompareDataFunc"/>
|
|
</parameter>
|
|
<parameter name="cmp_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27955">user data passed to @cmp_func.</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="sort_changed_iter" c:identifier="g_sequence_sort_changed_iter" version="2.14" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27972">Like g_sequence_sort_changed(), but uses
|
|
a #GSequenceIterCompareFunc instead of a #GCompareDataFunc as
|
|
the compare function.
|
|
|
|
@iter_cmp is called with two iterators pointing into the #GSequence that
|
|
@iter points into. It should
|
|
return 0 if the iterators are equal, a negative value if the first
|
|
iterator comes before the second, and a positive value if the second
|
|
iterator comes before the first.</doc>
|
|
<source-position filename="gsequence.h" line="104"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="iter" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27974">a #GSequenceIter</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</parameter>
|
|
<parameter name="iter_cmp" transfer-ownership="none" closure="2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27975">the function used to compare iterators in the sequence</doc>
|
|
<type name="SequenceIterCompareFunc" c:type="GSequenceIterCompareFunc"/>
|
|
</parameter>
|
|
<parameter name="cmp_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27976">user data passed to @cmp_func</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="swap" c:identifier="g_sequence_swap" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28010">Swaps the items pointed to by @a and @b. It is allowed for @a and @b
|
|
to point into difference sequences.</doc>
|
|
<source-position filename="gsequence.h" line="87"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="a" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28012">a #GSequenceIter</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</parameter>
|
|
<parameter name="b" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28013">a #GSequenceIter</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
</record>
|
|
<record name="SequenceIter" c:type="GSequenceIter" disguised="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1832">The #GSequenceIter struct is an opaque data type representing an
|
|
iterator pointing into a #GSequence.</doc>
|
|
<source-position filename="gsequence.h" line="31"/>
|
|
<method name="compare" c:identifier="g_sequence_iter_compare" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27607">Returns a negative number if @a comes before @b, 0 if they are equal,
|
|
and a positive number if @a comes after @b.
|
|
|
|
The @a and @b iterators must point into the same sequence.</doc>
|
|
<source-position filename="gsequence.h" line="165"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27617">a negative number if @a comes before @b, 0 if they are
|
|
equal, and a positive number if @a comes after @b</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="a" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27609">a #GSequenceIter</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</instance-parameter>
|
|
<parameter name="b" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27610">a #GSequenceIter</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_position" c:identifier="g_sequence_iter_get_position" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27623">Returns the position of @iter</doc>
|
|
<source-position filename="gsequence.h" line="155"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27629">the position of @iter</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="iter" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27625">a #GSequenceIter</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_sequence" c:identifier="g_sequence_iter_get_sequence" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27634">Returns the #GSequence that @iter points into.</doc>
|
|
<source-position filename="gsequence.h" line="160"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27640">the #GSequence that @iter points into</doc>
|
|
<type name="Sequence" c:type="GSequence*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="iter" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27636">a #GSequenceIter</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="is_begin" c:identifier="g_sequence_iter_is_begin" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27645">Returns whether @iter is the begin iterator</doc>
|
|
<source-position filename="gsequence.h" line="147"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27651">whether @iter is the begin iterator</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="iter" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27647">a #GSequenceIter</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="is_end" c:identifier="g_sequence_iter_is_end" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27656">Returns whether @iter is the end iterator</doc>
|
|
<source-position filename="gsequence.h" line="149"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27662">Whether @iter is the end iterator</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="iter" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27658">a #GSequenceIter</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="move" c:identifier="g_sequence_iter_move" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27667">Returns the #GSequenceIter which is @delta positions away from @iter.
|
|
If @iter is closer than -@delta positions to the beginning of the sequence,
|
|
the begin iterator is returned. If @iter is closer than @delta positions
|
|
to the end of the sequence, the end iterator is returned.</doc>
|
|
<source-position filename="gsequence.h" line="157"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27678">a #GSequenceIter which is @delta positions away from @iter</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="iter" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27669">a #GSequenceIter</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</instance-parameter>
|
|
<parameter name="delta" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27670">A positive or negative number indicating how many positions away
|
|
from @iter the returned #GSequenceIter will be</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="next" c:identifier="g_sequence_iter_next" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27683">Returns an iterator pointing to the next position after @iter.
|
|
If @iter is the end iterator, the end iterator is returned.</doc>
|
|
<source-position filename="gsequence.h" line="151"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27690">a #GSequenceIter pointing to the next position after @iter</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="iter" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27685">a #GSequenceIter</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="prev" c:identifier="g_sequence_iter_prev" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27695">Returns an iterator pointing to the previous position before @iter.
|
|
If @iter is the begin iterator, the begin iterator is returned.</doc>
|
|
<source-position filename="gsequence.h" line="153"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27702">a #GSequenceIter pointing to the previous position
|
|
before @iter</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="iter" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27697">a #GSequenceIter</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
</record>
|
|
<callback name="SequenceIterCompareFunc" c:type="GSequenceIterCompareFunc">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1840">A #GSequenceIterCompareFunc is a function used to compare iterators.
|
|
It must return zero if the iterators compare equal, a negative value
|
|
if @a comes before @b, and a positive value if @b comes before @a.</doc>
|
|
<source-position filename="gsequence.h" line="33"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1850">zero if the iterators are equal, a negative value if @a
|
|
comes before @b, and a positive value if @b comes before @a.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="a" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1842">a #GSequenceIter</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</parameter>
|
|
<parameter name="b" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1843">a #GSequenceIter</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1844">user data</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
<enumeration name="ShellError" c:type="GShellError" glib:error-domain="g-shell-error-quark">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1855">Error codes returned by shell functions.</doc>
|
|
<source-position filename="gshell.h" line="39"/>
|
|
<member name="bad_quoting" value="0" c:identifier="G_SHELL_ERROR_BAD_QUOTING">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1857">Mismatched or otherwise mangled quoting.</doc>
|
|
</member>
|
|
<member name="empty_string" value="1" c:identifier="G_SHELL_ERROR_EMPTY_STRING">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1858">String to be parsed was empty.</doc>
|
|
</member>
|
|
<member name="failed" value="2" c:identifier="G_SHELL_ERROR_FAILED">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1859">Some other error.</doc>
|
|
</member>
|
|
</enumeration>
|
|
<enumeration name="SliceConfig" c:type="GSliceConfig">
|
|
<source-position filename="gslice.h" line="83"/>
|
|
<member name="always_malloc" value="1" c:identifier="G_SLICE_CONFIG_ALWAYS_MALLOC">
|
|
</member>
|
|
<member name="bypass_magazines" value="2" c:identifier="G_SLICE_CONFIG_BYPASS_MAGAZINES">
|
|
</member>
|
|
<member name="working_set_msecs" value="3" c:identifier="G_SLICE_CONFIG_WORKING_SET_MSECS">
|
|
</member>
|
|
<member name="color_increment" value="4" c:identifier="G_SLICE_CONFIG_COLOR_INCREMENT">
|
|
</member>
|
|
<member name="chunk_sizes" value="5" c:identifier="G_SLICE_CONFIG_CHUNK_SIZES">
|
|
</member>
|
|
<member name="contention_counter" value="6" c:identifier="G_SLICE_CONFIG_CONTENTION_COUNTER">
|
|
</member>
|
|
</enumeration>
|
|
<record name="Source" c:type="GSource" glib:type-name="GSource" glib:get-type="g_source_get_type" c:symbol-prefix="source">
|
|
<doc xml:space="preserve" filename="gmain.h" line="58">The `GSource` struct is an opaque data type
|
|
representing an event source.</doc>
|
|
<source-position filename="gmain.h" line="230"/>
|
|
<field name="callback_data" readable="0" private="1">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</field>
|
|
<field name="callback_funcs" readable="0" private="1">
|
|
<type name="SourceCallbackFuncs" c:type="GSourceCallbackFuncs*"/>
|
|
</field>
|
|
<field name="source_funcs" readable="0" private="1">
|
|
<type name="SourceFuncs" c:type="const GSourceFuncs*"/>
|
|
</field>
|
|
<field name="ref_count" readable="0" private="1">
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="context" readable="0" private="1">
|
|
<type name="MainContext" c:type="GMainContext*"/>
|
|
</field>
|
|
<field name="priority" readable="0" private="1">
|
|
<type name="gint" c:type="gint"/>
|
|
</field>
|
|
<field name="flags" readable="0" private="1">
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="source_id" readable="0" private="1">
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="poll_fds" readable="0" private="1">
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</field>
|
|
<field name="prev" readable="0" private="1">
|
|
<type name="Source" c:type="GSource*"/>
|
|
</field>
|
|
<field name="next" readable="0" private="1">
|
|
<type name="Source" c:type="GSource*"/>
|
|
</field>
|
|
<field name="name" readable="0" private="1">
|
|
<type name="utf8" c:type="char*"/>
|
|
</field>
|
|
<field name="priv" readable="0" private="1">
|
|
<type name="SourcePrivate" c:type="GSourcePrivate*"/>
|
|
</field>
|
|
<constructor name="new" c:identifier="g_source_new">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29267">Creates a new #GSource structure. The size is specified to
|
|
allow creating structures derived from #GSource that contain
|
|
additional data. The size passed in must be at least
|
|
`sizeof (GSource)`.
|
|
|
|
The source will not initially be associated with any #GMainContext
|
|
and must be added to one with g_source_attach() before it will be
|
|
executed.</doc>
|
|
<source-position filename="gmain.h" line="454"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29282">the newly-created #GSource.</doc>
|
|
<type name="Source" c:type="GSource*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="source_funcs" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29269">structure containing functions that implement
|
|
the sources behavior.</doc>
|
|
<type name="SourceFuncs" c:type="GSourceFuncs*"/>
|
|
</parameter>
|
|
<parameter name="struct_size" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29271">size of the #GSource structure to create.</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<method name="add_child_source" c:identifier="g_source_add_child_source" version="2.28">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28956">Adds @child_source to @source as a "polled" source; when @source is
|
|
added to a #GMainContext, @child_source will be automatically added
|
|
with the same priority, when @child_source is triggered, it will
|
|
cause @source to dispatch (in addition to calling its own
|
|
callback), and when @source is destroyed, it will destroy
|
|
@child_source as well. (@source will also still be dispatched if
|
|
its own prepare/check functions indicate that it is ready.)
|
|
|
|
If you don't need @child_source to do anything on its own when it
|
|
triggers, you can call g_source_set_dummy_callback() on it to set a
|
|
callback that does nothing (except return %TRUE if appropriate).
|
|
|
|
@source will hold a reference on @child_source while @child_source
|
|
is attached to it.
|
|
|
|
This API is only intended to be used by implementations of #GSource.
|
|
Do not call this API on a #GSource that you did not create.</doc>
|
|
<source-position filename="gmain.h" line="541"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="source" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28958">a #GSource</doc>
|
|
<type name="Source" c:type="GSource*"/>
|
|
</instance-parameter>
|
|
<parameter name="child_source" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28959">a second #GSource that @source should "poll"</doc>
|
|
<type name="Source" c:type="GSource*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="add_poll" c:identifier="g_source_add_poll">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28983">Adds a file descriptor to the set of file descriptors polled for
|
|
this source. This is usually combined with g_source_new() to add an
|
|
event source. The event source's check function will typically test
|
|
the @revents field in the #GPollFD struct and return %TRUE if events need
|
|
to be processed.
|
|
|
|
This API is only intended to be used by implementations of #GSource.
|
|
Do not call this API on a #GSource that you did not create.
|
|
|
|
Using this API forces the linear scanning of event sources on each
|
|
main loop iteration. Newly-written event sources should try to use
|
|
g_source_add_unix_fd() instead of this API.</doc>
|
|
<source-position filename="gmain.h" line="534"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="source" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28985">a #GSource</doc>
|
|
<type name="Source" c:type="GSource*"/>
|
|
</instance-parameter>
|
|
<parameter name="fd" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28986">a #GPollFD structure holding information about a file
|
|
descriptor to watch.</doc>
|
|
<type name="PollFD" c:type="GPollFD*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="add_unix_fd" c:identifier="g_source_add_unix_fd" version="2.36">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29004">Monitors @fd for the IO events in @events.
|
|
|
|
The tag returned by this function can be used to remove or modify the
|
|
monitoring of the fd using g_source_remove_unix_fd() or
|
|
g_source_modify_unix_fd().
|
|
|
|
It is not necessary to remove the fd before destroying the source; it
|
|
will be cleaned up automatically.
|
|
|
|
This API is only intended to be used by implementations of #GSource.
|
|
Do not call this API on a #GSource that you did not create.
|
|
|
|
As the name suggests, this function is not available on Windows.</doc>
|
|
<source-position filename="gmain.h" line="512"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29024">an opaque tag</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="source" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29006">a #GSource</doc>
|
|
<type name="Source" c:type="GSource*"/>
|
|
</instance-parameter>
|
|
<parameter name="fd" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29007">the fd to monitor</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="events" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29008">an event mask</doc>
|
|
<type name="IOCondition" c:type="GIOCondition"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="attach" c:identifier="g_source_attach">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29029">Adds a #GSource to a @context so that it will be executed within
|
|
that context. Remove it by calling g_source_destroy().</doc>
|
|
<source-position filename="gmain.h" line="462"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29037">the ID (greater than 0) for the source within the
|
|
#GMainContext.</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="source" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29031">a #GSource</doc>
|
|
<type name="Source" c:type="GSource*"/>
|
|
</instance-parameter>
|
|
<parameter name="context" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29032">a #GMainContext (if %NULL, the default context will be used)</doc>
|
|
<type name="MainContext" c:type="GMainContext*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="destroy" c:identifier="g_source_destroy">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29042">Removes a source from its #GMainContext, if any, and mark it as
|
|
destroyed. The source cannot be subsequently added to another
|
|
context. It is safe to call this on sources which have already been
|
|
removed from their context.
|
|
|
|
This does not unref the #GSource: if you still hold a reference, use
|
|
g_source_unref() to drop it.</doc>
|
|
<source-position filename="gmain.h" line="465"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="source" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29044">a #GSource</doc>
|
|
<type name="Source" c:type="GSource*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_can_recurse" c:identifier="g_source_get_can_recurse">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29056">Checks whether a source is allowed to be called recursively.
|
|
see g_source_set_can_recurse().</doc>
|
|
<source-position filename="gmain.h" line="476"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29063">whether recursion is allowed.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="source" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29058">a #GSource</doc>
|
|
<type name="Source" c:type="GSource*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_context" c:identifier="g_source_get_context">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29067">Gets the #GMainContext with which the source is associated.
|
|
|
|
You can call this on a source that has been destroyed, provided
|
|
that the #GMainContext it was attached to still exists (in which
|
|
case it will return that #GMainContext). In particular, you can
|
|
always call this function on the source returned from
|
|
g_main_current_source(). But calling this function on a source
|
|
whose #GMainContext has been destroyed is an error.</doc>
|
|
<source-position filename="gmain.h" line="481"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29080">the #GMainContext with which the
|
|
source is associated, or %NULL if the context has not
|
|
yet been added to a source.</doc>
|
|
<type name="MainContext" c:type="GMainContext*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="source" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29069">a #GSource</doc>
|
|
<type name="Source" c:type="GSource*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_current_time" c:identifier="g_source_get_current_time" deprecated="1" deprecated-version="2.28">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29086">This function ignores @source and is otherwise the same as
|
|
g_get_current_time().</doc>
|
|
<doc-deprecated xml:space="preserve">use g_source_get_time() instead</doc-deprecated>
|
|
<source-position filename="gmain.h" line="549"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="source" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29088">a #GSource</doc>
|
|
<type name="Source" c:type="GSource*"/>
|
|
</instance-parameter>
|
|
<parameter name="timeval" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29089">#GTimeVal structure in which to store current time.</doc>
|
|
<type name="TimeVal" c:type="GTimeVal*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_id" c:identifier="g_source_get_id">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29098">Returns the numeric ID for a particular source. The ID of a source
|
|
is a positive integer which is unique within a particular main loop
|
|
context. The reverse
|
|
mapping from ID to source is done by g_main_context_find_source_by_id().
|
|
|
|
You can only call this function while the source is associated to a
|
|
#GMainContext instance; calling this function before g_source_attach()
|
|
or after g_source_destroy() yields undefined behavior. The ID returned
|
|
is unique within the #GMainContext instance passed to g_source_attach().</doc>
|
|
<source-position filename="gmain.h" line="478"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29112">the ID (greater than 0) for the source</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="source" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29100">a #GSource</doc>
|
|
<type name="Source" c:type="GSource*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_name" c:identifier="g_source_get_name" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29116">Gets a name for the source, used in debugging and profiling. The
|
|
name may be #NULL if it has never been set with g_source_set_name().</doc>
|
|
<source-position filename="gmain.h" line="499"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29123">the name of the source</doc>
|
|
<type name="utf8" c:type="const char*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="source" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29118">a #GSource</doc>
|
|
<type name="Source" c:type="GSource*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_priority" c:identifier="g_source_get_priority">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29128">Gets the priority of a source.</doc>
|
|
<source-position filename="gmain.h" line="471"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29134">the priority of the source</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="source" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29130">a #GSource</doc>
|
|
<type name="Source" c:type="GSource*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_ready_time" c:identifier="g_source_get_ready_time">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29138">Gets the "ready time" of @source, as set by
|
|
g_source_set_ready_time().
|
|
|
|
Any time before the current monotonic time (including 0) is an
|
|
indication that the source will fire immediately.</doc>
|
|
<source-position filename="gmain.h" line="508"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29148">the monotonic ready time, -1 for "never"</doc>
|
|
<type name="gint64" c:type="gint64"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="source" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29140">a #GSource</doc>
|
|
<type name="Source" c:type="GSource*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_time" c:identifier="g_source_get_time" version="2.28">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29152">Gets the time to be used when checking this source. The advantage of
|
|
calling this function over calling g_get_monotonic_time() directly is
|
|
that when checking multiple sources, GLib can cache a single value
|
|
instead of having to repeatedly get the system monotonic time.
|
|
|
|
The time here is the system monotonic time, if available, or some
|
|
other reasonable alternative otherwise. See g_get_monotonic_time().</doc>
|
|
<source-position filename="gmain.h" line="554"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29164">the monotonic time in microseconds</doc>
|
|
<type name="gint64" c:type="gint64"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="source" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29154">a #GSource</doc>
|
|
<type name="Source" c:type="GSource*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="is_destroyed" c:identifier="g_source_is_destroyed" version="2.12">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29169">Returns whether @source has been destroyed.
|
|
|
|
This is important when you operate upon your objects
|
|
from within idle handlers, but may have freed the object
|
|
before the dispatch of your idle handler.
|
|
|
|
|[<!-- language="C" -->
|
|
static gboolean
|
|
idle_callback (gpointer data)
|
|
{
|
|
SomeWidget *self = data;
|
|
|
|
GDK_THREADS_ENTER ();
|
|
// do stuff with self
|
|
self->idle_id = 0;
|
|
GDK_THREADS_LEAVE ();
|
|
|
|
return G_SOURCE_REMOVE;
|
|
}
|
|
|
|
static void
|
|
some_widget_do_stuff_later (SomeWidget *self)
|
|
{
|
|
self->idle_id = g_idle_add (idle_callback, self);
|
|
}
|
|
|
|
static void
|
|
some_widget_finalize (GObject *object)
|
|
{
|
|
SomeWidget *self = SOME_WIDGET (object);
|
|
|
|
if (self->idle_id)
|
|
g_source_remove (self->idle_id);
|
|
|
|
G_OBJECT_CLASS (parent_class)->finalize (object);
|
|
}
|
|
]|
|
|
|
|
This will fail in a multi-threaded application if the
|
|
widget is destroyed before the idle handler fires due
|
|
to the use after free in the callback. A solution, to
|
|
this particular problem, is to check to if the source
|
|
has already been destroy within the callback.
|
|
|
|
|[<!-- language="C" -->
|
|
static gboolean
|
|
idle_callback (gpointer data)
|
|
{
|
|
SomeWidget *self = data;
|
|
|
|
GDK_THREADS_ENTER ();
|
|
if (!g_source_is_destroyed (g_main_current_source ()))
|
|
{
|
|
// do stuff with self
|
|
}
|
|
GDK_THREADS_LEAVE ();
|
|
|
|
return FALSE;
|
|
}
|
|
]|
|
|
|
|
Calls to this function from a thread other than the one acquired by the
|
|
#GMainContext the #GSource is attached to are typically redundant, as the
|
|
source could be destroyed immediately after this function returns. However,
|
|
once a source is destroyed it cannot be un-destroyed, so this function can be
|
|
used for opportunistic checks from any thread.</doc>
|
|
<source-position filename="gmain.h" line="493"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29240">%TRUE if the source has been destroyed</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="source" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29171">a #GSource</doc>
|
|
<type name="Source" c:type="GSource*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="modify_unix_fd" c:identifier="g_source_modify_unix_fd" version="2.36">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29245">Updates the event mask to watch for the fd identified by @tag.
|
|
|
|
@tag is the tag returned from g_source_add_unix_fd().
|
|
|
|
If you want to remove a fd, don't set its event mask to zero.
|
|
Instead, call g_source_remove_unix_fd().
|
|
|
|
This API is only intended to be used by implementations of #GSource.
|
|
Do not call this API on a #GSource that you did not create.
|
|
|
|
As the name suggests, this function is not available on Windows.</doc>
|
|
<source-position filename="gmain.h" line="516"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="source" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29247">a #GSource</doc>
|
|
<type name="Source" c:type="GSource*"/>
|
|
</instance-parameter>
|
|
<parameter name="tag" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29248">the tag from g_source_add_unix_fd()</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="new_events" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29249">the new event mask to watch</doc>
|
|
<type name="IOCondition" c:type="GIOCondition"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="query_unix_fd" c:identifier="g_source_query_unix_fd" version="2.36">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29286">Queries the events reported for the fd corresponding to @tag on
|
|
@source during the last poll.
|
|
|
|
The return value of this function is only defined when the function
|
|
is called from the check or dispatch functions for @source.
|
|
|
|
This API is only intended to be used by implementations of #GSource.
|
|
Do not call this API on a #GSource that you did not create.
|
|
|
|
As the name suggests, this function is not available on Windows.</doc>
|
|
<source-position filename="gmain.h" line="523"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29302">the conditions reported on the fd</doc>
|
|
<type name="IOCondition" c:type="GIOCondition"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="source" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29288">a #GSource</doc>
|
|
<type name="Source" c:type="GSource*"/>
|
|
</instance-parameter>
|
|
<parameter name="tag" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29289">the tag from g_source_add_unix_fd()</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="ref" c:identifier="g_source_ref">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29307">Increases the reference count on a source by one.</doc>
|
|
<source-position filename="gmain.h" line="457"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29313">@source</doc>
|
|
<type name="Source" c:type="GSource*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="source" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29309">a #GSource</doc>
|
|
<type name="Source" c:type="GSource*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="remove_child_source" c:identifier="g_source_remove_child_source" version="2.28">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29370">Detaches @child_source from @source and destroys it.
|
|
|
|
This API is only intended to be used by implementations of #GSource.
|
|
Do not call this API on a #GSource that you did not create.</doc>
|
|
<source-position filename="gmain.h" line="544"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="source" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29372">a #GSource</doc>
|
|
<type name="Source" c:type="GSource*"/>
|
|
</instance-parameter>
|
|
<parameter name="child_source" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29373">a #GSource previously passed to
|
|
g_source_add_child_source().</doc>
|
|
<type name="Source" c:type="GSource*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="remove_poll" c:identifier="g_source_remove_poll">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29385">Removes a file descriptor from the set of file descriptors polled for
|
|
this source.
|
|
|
|
This API is only intended to be used by implementations of #GSource.
|
|
Do not call this API on a #GSource that you did not create.</doc>
|
|
<source-position filename="gmain.h" line="537"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="source" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29387">a #GSource</doc>
|
|
<type name="Source" c:type="GSource*"/>
|
|
</instance-parameter>
|
|
<parameter name="fd" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29388">a #GPollFD structure previously passed to g_source_add_poll().</doc>
|
|
<type name="PollFD" c:type="GPollFD*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="remove_unix_fd" c:identifier="g_source_remove_unix_fd" version="2.36">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29398">Reverses the effect of a previous call to g_source_add_unix_fd().
|
|
|
|
You only need to call this if you want to remove an fd from being
|
|
watched while keeping the same source around. In the normal case you
|
|
will just want to destroy the source.
|
|
|
|
This API is only intended to be used by implementations of #GSource.
|
|
Do not call this API on a #GSource that you did not create.
|
|
|
|
As the name suggests, this function is not available on Windows.</doc>
|
|
<source-position filename="gmain.h" line="520"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="source" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29400">a #GSource</doc>
|
|
<type name="Source" c:type="GSource*"/>
|
|
</instance-parameter>
|
|
<parameter name="tag" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29401">the tag from g_source_add_unix_fd()</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_callback" c:identifier="g_source_set_callback">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29418">Sets the callback function for a source. The callback for a source is
|
|
called from the source's dispatch function.
|
|
|
|
The exact type of @func depends on the type of source; ie. you
|
|
should not count on @func being called with @data as its first
|
|
parameter. Cast @func with G_SOURCE_FUNC() to avoid warnings about
|
|
incompatible function types.
|
|
|
|
See [memory management of sources][mainloop-memory-management] for details
|
|
on how to handle memory management of @data.
|
|
|
|
Typically, you won't use this function. Instead use functions specific
|
|
to the type of source you are using, such as g_idle_add() or g_timeout_add().
|
|
|
|
It is safe to call this function multiple times on a source which has already
|
|
been attached to a context. The changes will take effect for the next time
|
|
the source is dispatched after this call returns.</doc>
|
|
<source-position filename="gmain.h" line="484"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="source" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29420">the source</doc>
|
|
<type name="Source" c:type="GSource*"/>
|
|
</instance-parameter>
|
|
<parameter name="func" transfer-ownership="none" scope="notified" closure="1" destroy="2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29421">a callback function</doc>
|
|
<type name="SourceFunc" c:type="GSourceFunc"/>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29422">the data to pass to callback function</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="notify" transfer-ownership="none" nullable="1" allow-none="1" scope="async">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29423">a function to call when @data is no longer in use, or %NULL.</doc>
|
|
<type name="DestroyNotify" c:type="GDestroyNotify"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_callback_indirect" c:identifier="g_source_set_callback_indirect">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29445">Sets the callback function storing the data as a refcounted callback
|
|
"object". This is used internally. Note that calling
|
|
g_source_set_callback_indirect() assumes
|
|
an initial reference count on @callback_data, and thus
|
|
@callback_funcs->unref will eventually be called once more
|
|
than @callback_funcs->ref.
|
|
|
|
It is safe to call this function multiple times on a source which has already
|
|
been attached to a context. The changes will take effect for the next time
|
|
the source is dispatched after this call returns.</doc>
|
|
<source-position filename="gmain.h" line="529"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="source" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29447">the source</doc>
|
|
<type name="Source" c:type="GSource*"/>
|
|
</instance-parameter>
|
|
<parameter name="callback_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29448">pointer to callback data "object"</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="callback_funcs" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29449">functions for reference counting @callback_data
|
|
and getting the callback and data</doc>
|
|
<type name="SourceCallbackFuncs" c:type="GSourceCallbackFuncs*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_can_recurse" c:identifier="g_source_set_can_recurse">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29465">Sets whether a source can be called recursively. If @can_recurse is
|
|
%TRUE, then while the source is being dispatched then this source
|
|
will be processed normally. Otherwise, all processing of this
|
|
source is blocked until the dispatch function returns.</doc>
|
|
<source-position filename="gmain.h" line="473"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="source" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29467">a #GSource</doc>
|
|
<type name="Source" c:type="GSource*"/>
|
|
</instance-parameter>
|
|
<parameter name="can_recurse" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29468">whether recursion is allowed for this source</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_funcs" c:identifier="g_source_set_funcs" version="2.12">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29477">Sets the source functions (can be used to override
|
|
default implementations) of an unattached source.</doc>
|
|
<source-position filename="gmain.h" line="490"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="source" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29479">a #GSource</doc>
|
|
<type name="Source" c:type="GSource*"/>
|
|
</instance-parameter>
|
|
<parameter name="funcs" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29480">the new #GSourceFuncs</doc>
|
|
<type name="SourceFuncs" c:type="GSourceFuncs*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_name" c:identifier="g_source_set_name" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29489">Sets a name for the source, used in debugging and profiling.
|
|
The name defaults to #NULL.
|
|
|
|
The source name should describe in a human-readable way
|
|
what the source does. For example, "X11 event queue"
|
|
or "GTK+ repaint idle handler" or whatever it is.
|
|
|
|
It is permitted to call this function multiple times, but is not
|
|
recommended due to the potential performance impact. For example,
|
|
one could change the name in the "check" function of a #GSourceFuncs
|
|
to include details like the event type in the source name.
|
|
|
|
Use caution if changing the name while another thread may be
|
|
accessing it with g_source_get_name(); that function does not copy
|
|
the value, and changing the value will free it while the other thread
|
|
may be attempting to use it.</doc>
|
|
<source-position filename="gmain.h" line="496"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="source" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29491">a #GSource</doc>
|
|
<type name="Source" c:type="GSource*"/>
|
|
</instance-parameter>
|
|
<parameter name="name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29492">debug name for the source</doc>
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_priority" c:identifier="g_source_set_priority">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29541">Sets the priority of a source. While the main loop is being run, a
|
|
source will be dispatched if it is ready to be dispatched and no
|
|
sources at a higher (numerically smaller) priority are ready to be
|
|
dispatched.
|
|
|
|
A child source always has the same priority as its parent. It is not
|
|
permitted to change the priority of a source once it has been added
|
|
as a child of another source.</doc>
|
|
<source-position filename="gmain.h" line="468"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="source" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29543">a #GSource</doc>
|
|
<type name="Source" c:type="GSource*"/>
|
|
</instance-parameter>
|
|
<parameter name="priority" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29544">the new priority.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_ready_time" c:identifier="g_source_set_ready_time" version="2.36">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29557">Sets a #GSource to be dispatched when the given monotonic time is
|
|
reached (or passed). If the monotonic time is in the past (as it
|
|
always will be if @ready_time is 0) then the source will be
|
|
dispatched immediately.
|
|
|
|
If @ready_time is -1 then the source is never woken up on the basis
|
|
of the passage of time.
|
|
|
|
Dispatching the source does not reset the ready time. You should do
|
|
so yourself, from the source dispatch function.
|
|
|
|
Note that if you have a pair of sources where the ready time of one
|
|
suggests that it will be delivered first but the priority for the
|
|
other suggests that it would be delivered first, and the ready time
|
|
for both sources is reached during the same main context iteration,
|
|
then the order of dispatch is undefined.
|
|
|
|
It is a no-op to call this function on a #GSource which has already been
|
|
destroyed with g_source_destroy().
|
|
|
|
This API is only intended to be used by implementations of #GSource.
|
|
Do not call this API on a #GSource that you did not create.</doc>
|
|
<source-position filename="gmain.h" line="505"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="source" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29559">a #GSource</doc>
|
|
<type name="Source" c:type="GSource*"/>
|
|
</instance-parameter>
|
|
<parameter name="ready_time" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29560">the monotonic time at which the source will be ready,
|
|
0 for "immediately", -1 for "never"</doc>
|
|
<type name="gint64" c:type="gint64"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="unref" c:identifier="g_source_unref">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29590">Decreases the reference count of a source by one. If the
|
|
resulting reference count is zero the source and associated
|
|
memory will be destroyed.</doc>
|
|
<source-position filename="gmain.h" line="459"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="source" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29592">a #GSource</doc>
|
|
<type name="Source" c:type="GSource*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<function name="remove" c:identifier="g_source_remove">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29317">Removes the source with the given ID from the default main context. You must
|
|
use g_source_destroy() for sources added to a non-default main context.
|
|
|
|
The ID of a #GSource is given by g_source_get_id(), or will be
|
|
returned by the functions g_source_attach(), g_idle_add(),
|
|
g_idle_add_full(), g_timeout_add(), g_timeout_add_full(),
|
|
g_child_watch_add(), g_child_watch_add_full(), g_io_add_watch(), and
|
|
g_io_add_watch_full().
|
|
|
|
It is a programmer error to attempt to remove a non-existent source.
|
|
|
|
More specifically: source IDs can be reissued after a source has been
|
|
destroyed and therefore it is never valid to use this function with a
|
|
source ID which may have already been removed. An example is when
|
|
scheduling an idle to run in another thread with g_idle_add(): the
|
|
idle may already have run and been removed by the time this function
|
|
is called on its (now invalid) source ID. This source ID may have
|
|
been reissued, leading to the operation being performed against the
|
|
wrong source.</doc>
|
|
<source-position filename="gmain.h" line="586"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29341">For historical reasons, this function always returns %TRUE</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="tag" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29319">the ID of the source to remove.</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="remove_by_funcs_user_data" c:identifier="g_source_remove_by_funcs_user_data">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29345">Removes a source from the default main loop context given the
|
|
source functions and user data. If multiple sources exist with the
|
|
same source functions and user data, only one will be destroyed.</doc>
|
|
<source-position filename="gmain.h" line="590"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29354">%TRUE if a source was found and removed.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="funcs" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29347">The @source_funcs passed to g_source_new()</doc>
|
|
<type name="SourceFuncs" c:type="GSourceFuncs*"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29348">the user data for the callback</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="remove_by_user_data" c:identifier="g_source_remove_by_user_data">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29358">Removes a source from the default main loop context given the user
|
|
data for the callback. If multiple sources exist with the same user
|
|
data, only one will be destroyed.</doc>
|
|
<source-position filename="gmain.h" line="588"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29366">%TRUE if a source was found and removed.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29360">the user_data for the callback.</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="set_name_by_id" c:identifier="g_source_set_name_by_id" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29515">Sets the name of a source using its ID.
|
|
|
|
This is a convenience utility to set source names from the return
|
|
value of g_idle_add(), g_timeout_add(), etc.
|
|
|
|
It is a programmer error to attempt to set the name of a non-existent
|
|
source.
|
|
|
|
More specifically: source IDs can be reissued after a source has been
|
|
destroyed and therefore it is never valid to use this function with a
|
|
source ID which may have already been removed. An example is when
|
|
scheduling an idle to run in another thread with g_idle_add(): the
|
|
idle may already have run and been removed by the time this function
|
|
is called on its (now invalid) source ID. This source ID may have
|
|
been reissued, leading to the operation being performed against the
|
|
wrong source.</doc>
|
|
<source-position filename="gmain.h" line="501"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="tag" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29517">a #GSource ID</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
<parameter name="name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29518">debug name for the source</doc>
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
</record>
|
|
<record name="SourceCallbackFuncs" c:type="GSourceCallbackFuncs">
|
|
<doc xml:space="preserve" filename="gmain.h" line="67">The `GSourceCallbackFuncs` struct contains
|
|
functions for managing callback objects.</doc>
|
|
<source-position filename="gmain.h" line="240"/>
|
|
<field name="ref">
|
|
<callback name="ref">
|
|
<source-position filename="gmain.h" line="234"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="cb_data" transfer-ownership="none">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
</field>
|
|
<field name="unref">
|
|
<callback name="unref">
|
|
<source-position filename="gmain.h" line="235"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="cb_data" transfer-ownership="none">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
</field>
|
|
<field name="get" introspectable="0">
|
|
<callback name="get" introspectable="0">
|
|
<source-position filename="gmain.h" line="236"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="cb_data" transfer-ownership="none">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="source" transfer-ownership="none">
|
|
<type name="Source" c:type="GSource*"/>
|
|
</parameter>
|
|
<parameter name="func" transfer-ownership="none" closure="3">
|
|
<type name="SourceFunc" c:type="GSourceFunc*"/>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<type name="gpointer" c:type="gpointer*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
</field>
|
|
</record>
|
|
<callback name="SourceDummyMarshal" c:type="GSourceDummyMarshal">
|
|
<doc xml:space="preserve" filename="gmain.h" line="242">This is just a placeholder for #GClosureMarshal,
|
|
which cannot be used here for dependency reasons.</doc>
|
|
<source-position filename="gmain.h" line="248"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
</callback>
|
|
<callback name="SourceFunc" c:type="GSourceFunc">
|
|
<doc xml:space="preserve" filename="gmain.h" line="158">Specifies the type of function passed to g_timeout_add(),
|
|
g_timeout_add_full(), g_idle_add(), and g_idle_add_full().
|
|
|
|
When calling g_source_set_callback(), you may need to cast a function of a
|
|
different type to this type. Use G_SOURCE_FUNC() to avoid warnings about
|
|
incompatible function types.</doc>
|
|
<source-position filename="gmain.h" line="173"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="gmain.h" line="170">%FALSE if the source should be removed. #G_SOURCE_CONTINUE and
|
|
#G_SOURCE_REMOVE are more memorable names for the return value.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1" closure="0">
|
|
<doc xml:space="preserve" filename="gmain.h" line="160">data passed to the function, set when the source was
|
|
created with one of the above functions</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
<record name="SourceFuncs" c:type="GSourceFuncs">
|
|
<doc xml:space="preserve" filename="gmain.h" line="79">The `GSourceFuncs` struct contains a table of
|
|
functions used to handle event sources in a generic manner.
|
|
|
|
For idle sources, the prepare and check functions always return %TRUE
|
|
to indicate that the source is always ready to be processed. The prepare
|
|
function also returns a timeout value of 0 to ensure that the poll() call
|
|
doesn't block (since that would be time wasted which could have been spent
|
|
running the idle function).
|
|
|
|
For timeout sources, the prepare and check functions both return %TRUE
|
|
if the timeout interval has expired. The prepare function also returns
|
|
a timeout value to ensure that the poll() call doesn't block too long
|
|
and miss the next timeout.
|
|
|
|
For file descriptor sources, the prepare function typically returns %FALSE,
|
|
since it must wait until poll() has been called before it knows whether
|
|
any events need to be processed. It sets the returned timeout to -1 to
|
|
indicate that it doesn't mind how long the poll() call blocks. In the
|
|
check function, it tests the results of the poll() call to see if the
|
|
required condition has been met, and returns %TRUE if so.</doc>
|
|
<source-position filename="gmain.h" line="264"/>
|
|
<field name="prepare">
|
|
<callback name="prepare">
|
|
<source-position filename="gmain.h" line="252"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="source" transfer-ownership="none">
|
|
<type name="Source" c:type="GSource*"/>
|
|
</parameter>
|
|
<parameter name="timeout_" transfer-ownership="none">
|
|
<type name="gint" c:type="gint*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
</field>
|
|
<field name="check">
|
|
<callback name="check">
|
|
<source-position filename="gmain.h" line="254"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="source" transfer-ownership="none">
|
|
<type name="Source" c:type="GSource*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
</field>
|
|
<field name="dispatch" introspectable="0">
|
|
<callback name="dispatch" introspectable="0">
|
|
<source-position filename="gmain.h" line="255"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="source" transfer-ownership="none">
|
|
<type name="Source" c:type="GSource*"/>
|
|
</parameter>
|
|
<parameter name="callback" transfer-ownership="none" closure="2">
|
|
<type name="SourceFunc" c:type="GSourceFunc"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1" closure="2">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
</field>
|
|
<field name="finalize">
|
|
<callback name="finalize">
|
|
<source-position filename="gmain.h" line="258"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="source" transfer-ownership="none">
|
|
<type name="Source" c:type="GSource*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
</field>
|
|
<field name="closure_callback" readable="0" private="1">
|
|
<type name="SourceFunc" c:type="GSourceFunc"/>
|
|
</field>
|
|
<field name="closure_marshal" readable="0" private="1">
|
|
<type name="SourceDummyMarshal" c:type="GSourceDummyMarshal"/>
|
|
</field>
|
|
</record>
|
|
<record name="SourcePrivate" c:type="GSourcePrivate" disguised="1">
|
|
<source-position filename="gmain.h" line="65"/>
|
|
</record>
|
|
<callback name="SpawnChildSetupFunc" c:type="GSpawnChildSetupFunc">
|
|
<doc xml:space="preserve" filename="gspawn.h" line="103">Specifies the type of the setup function passed to g_spawn_async(),
|
|
g_spawn_sync() and g_spawn_async_with_pipes(), which can, in very
|
|
limited ways, be used to affect the child's execution.
|
|
|
|
On POSIX platforms, the function is called in the child after GLib
|
|
has performed all the setup it plans to perform, but before calling
|
|
exec(). Actions taken in this function will only affect the child,
|
|
not the parent.
|
|
|
|
On Windows, the function is called in the parent. Its usefulness on
|
|
Windows is thus questionable. In many cases executing the child setup
|
|
function in the parent can have ill effects, and you should be very
|
|
careful when porting software to Windows that uses child setup
|
|
functions.
|
|
|
|
However, even on POSIX, you are extremely limited in what you can
|
|
safely do from a #GSpawnChildSetupFunc, because any mutexes that were
|
|
held by other threads in the parent process at the time of the fork()
|
|
will still be locked in the child process, and they will never be
|
|
unlocked (since the threads that held them don't exist in the child).
|
|
POSIX allows only async-signal-safe functions (see signal(7)) to be
|
|
called in the child between fork() and exec(), which drastically limits
|
|
the usefulness of child setup functions.
|
|
|
|
In particular, it is not safe to call any function which may
|
|
call malloc(), which includes POSIX functions such as setenv().
|
|
If you need to set up the child environment differently from
|
|
the parent, you should use g_get_environ(), g_environ_setenv(),
|
|
and g_environ_unsetenv(), and then pass the complete environment
|
|
list to the `g_spawn...` function.</doc>
|
|
<source-position filename="gspawn.h" line="138"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1" closure="0">
|
|
<doc xml:space="preserve" filename="gspawn.h" line="105">user data to pass to the function.</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
<enumeration name="SpawnError" c:type="GSpawnError" glib:error-domain="g-exec-error-quark">
|
|
<doc xml:space="preserve" filename="gspawn.h" line="41">Error codes returned by spawning processes.</doc>
|
|
<source-position filename="gspawn.h" line="93"/>
|
|
<member name="fork" value="0" c:identifier="G_SPAWN_ERROR_FORK">
|
|
<doc xml:space="preserve" filename="gspawn.h" line="43">Fork failed due to lack of memory.</doc>
|
|
</member>
|
|
<member name="read" value="1" c:identifier="G_SPAWN_ERROR_READ">
|
|
<doc xml:space="preserve" filename="gspawn.h" line="44">Read or select on pipes failed.</doc>
|
|
</member>
|
|
<member name="chdir" value="2" c:identifier="G_SPAWN_ERROR_CHDIR">
|
|
<doc xml:space="preserve" filename="gspawn.h" line="45">Changing to working directory failed.</doc>
|
|
</member>
|
|
<member name="acces" value="3" c:identifier="G_SPAWN_ERROR_ACCES">
|
|
<doc xml:space="preserve" filename="gspawn.h" line="46">execv() returned `EACCES`</doc>
|
|
</member>
|
|
<member name="perm" value="4" c:identifier="G_SPAWN_ERROR_PERM">
|
|
<doc xml:space="preserve" filename="gspawn.h" line="47">execv() returned `EPERM`</doc>
|
|
</member>
|
|
<member name="too_big" value="5" c:identifier="G_SPAWN_ERROR_TOO_BIG">
|
|
<doc xml:space="preserve" filename="gspawn.h" line="48">execv() returned `E2BIG`</doc>
|
|
</member>
|
|
<member name="2big" value="5" c:identifier="G_SPAWN_ERROR_2BIG">
|
|
<doc xml:space="preserve" filename="gspawn.h" line="49">deprecated alias for %G_SPAWN_ERROR_TOO_BIG (deprecated since GLib 2.32)</doc>
|
|
</member>
|
|
<member name="noexec" value="6" c:identifier="G_SPAWN_ERROR_NOEXEC">
|
|
<doc xml:space="preserve" filename="gspawn.h" line="50">execv() returned `ENOEXEC`</doc>
|
|
</member>
|
|
<member name="nametoolong" value="7" c:identifier="G_SPAWN_ERROR_NAMETOOLONG">
|
|
<doc xml:space="preserve" filename="gspawn.h" line="51">execv() returned `ENAMETOOLONG`</doc>
|
|
</member>
|
|
<member name="noent" value="8" c:identifier="G_SPAWN_ERROR_NOENT">
|
|
<doc xml:space="preserve" filename="gspawn.h" line="52">execv() returned `ENOENT`</doc>
|
|
</member>
|
|
<member name="nomem" value="9" c:identifier="G_SPAWN_ERROR_NOMEM">
|
|
<doc xml:space="preserve" filename="gspawn.h" line="53">execv() returned `ENOMEM`</doc>
|
|
</member>
|
|
<member name="notdir" value="10" c:identifier="G_SPAWN_ERROR_NOTDIR">
|
|
<doc xml:space="preserve" filename="gspawn.h" line="54">execv() returned `ENOTDIR`</doc>
|
|
</member>
|
|
<member name="loop" value="11" c:identifier="G_SPAWN_ERROR_LOOP">
|
|
<doc xml:space="preserve" filename="gspawn.h" line="55">execv() returned `ELOOP`</doc>
|
|
</member>
|
|
<member name="txtbusy" value="12" c:identifier="G_SPAWN_ERROR_TXTBUSY">
|
|
<doc xml:space="preserve" filename="gspawn.h" line="56">execv() returned `ETXTBUSY`</doc>
|
|
</member>
|
|
<member name="io" value="13" c:identifier="G_SPAWN_ERROR_IO">
|
|
<doc xml:space="preserve" filename="gspawn.h" line="57">execv() returned `EIO`</doc>
|
|
</member>
|
|
<member name="nfile" value="14" c:identifier="G_SPAWN_ERROR_NFILE">
|
|
<doc xml:space="preserve" filename="gspawn.h" line="58">execv() returned `ENFILE`</doc>
|
|
</member>
|
|
<member name="mfile" value="15" c:identifier="G_SPAWN_ERROR_MFILE">
|
|
<doc xml:space="preserve" filename="gspawn.h" line="59">execv() returned `EMFILE`</doc>
|
|
</member>
|
|
<member name="inval" value="16" c:identifier="G_SPAWN_ERROR_INVAL">
|
|
<doc xml:space="preserve" filename="gspawn.h" line="60">execv() returned `EINVAL`</doc>
|
|
</member>
|
|
<member name="isdir" value="17" c:identifier="G_SPAWN_ERROR_ISDIR">
|
|
<doc xml:space="preserve" filename="gspawn.h" line="61">execv() returned `EISDIR`</doc>
|
|
</member>
|
|
<member name="libbad" value="18" c:identifier="G_SPAWN_ERROR_LIBBAD">
|
|
<doc xml:space="preserve" filename="gspawn.h" line="62">execv() returned `ELIBBAD`</doc>
|
|
</member>
|
|
<member name="failed" value="19" c:identifier="G_SPAWN_ERROR_FAILED">
|
|
<doc xml:space="preserve" filename="gspawn.h" line="63">Some other fatal failure,
|
|
`error->message` should explain.</doc>
|
|
</member>
|
|
</enumeration>
|
|
<bitfield name="SpawnFlags" c:type="GSpawnFlags">
|
|
<doc xml:space="preserve" filename="gspawn.h" line="140">Flags passed to g_spawn_sync(), g_spawn_async() and g_spawn_async_with_pipes().</doc>
|
|
<source-position filename="gspawn.h" line="182"/>
|
|
<member name="default" value="0" c:identifier="G_SPAWN_DEFAULT">
|
|
<doc xml:space="preserve" filename="gspawn.h" line="142">no flags, default behaviour</doc>
|
|
</member>
|
|
<member name="leave_descriptors_open" value="1" c:identifier="G_SPAWN_LEAVE_DESCRIPTORS_OPEN">
|
|
<doc xml:space="preserve" filename="gspawn.h" line="143">the parent's open file descriptors will
|
|
be inherited by the child; otherwise all descriptors except stdin,
|
|
stdout and stderr will be closed before calling exec() in the child.</doc>
|
|
</member>
|
|
<member name="do_not_reap_child" value="2" c:identifier="G_SPAWN_DO_NOT_REAP_CHILD">
|
|
<doc xml:space="preserve" filename="gspawn.h" line="146">the child will not be automatically reaped;
|
|
you must use g_child_watch_add() yourself (or call waitpid() or handle
|
|
`SIGCHLD` yourself), or the child will become a zombie.</doc>
|
|
</member>
|
|
<member name="search_path" value="4" c:identifier="G_SPAWN_SEARCH_PATH">
|
|
<doc xml:space="preserve" filename="gspawn.h" line="149">`argv[0]` need not be an absolute path, it will be
|
|
looked for in the user's `PATH`.</doc>
|
|
</member>
|
|
<member name="stdout_to_dev_null" value="8" c:identifier="G_SPAWN_STDOUT_TO_DEV_NULL">
|
|
<doc xml:space="preserve" filename="gspawn.h" line="151">the child's standard output will be discarded,
|
|
instead of going to the same location as the parent's standard output.</doc>
|
|
</member>
|
|
<member name="stderr_to_dev_null" value="16" c:identifier="G_SPAWN_STDERR_TO_DEV_NULL">
|
|
<doc xml:space="preserve" filename="gspawn.h" line="153">the child's standard error will be discarded.</doc>
|
|
</member>
|
|
<member name="child_inherits_stdin" value="32" c:identifier="G_SPAWN_CHILD_INHERITS_STDIN">
|
|
<doc xml:space="preserve" filename="gspawn.h" line="154">the child will inherit the parent's standard
|
|
input (by default, the child's standard input is attached to `/dev/null`).</doc>
|
|
</member>
|
|
<member name="file_and_argv_zero" value="64" c:identifier="G_SPAWN_FILE_AND_ARGV_ZERO">
|
|
<doc xml:space="preserve" filename="gspawn.h" line="156">the first element of `argv` is the file to
|
|
execute, while the remaining elements are the actual argument vector
|
|
to pass to the file. Normally g_spawn_async_with_pipes() uses `argv[0]`
|
|
as the file to execute, and passes all of `argv` to the child.</doc>
|
|
</member>
|
|
<member name="search_path_from_envp" value="128" c:identifier="G_SPAWN_SEARCH_PATH_FROM_ENVP">
|
|
<doc xml:space="preserve" filename="gspawn.h" line="160">if `argv[0]` is not an abolute path,
|
|
it will be looked for in the `PATH` from the passed child environment.
|
|
Since: 2.34</doc>
|
|
</member>
|
|
<member name="cloexec_pipes" value="256" c:identifier="G_SPAWN_CLOEXEC_PIPES">
|
|
<doc xml:space="preserve" filename="gspawn.h" line="163">create all pipes with the `O_CLOEXEC` flag set.
|
|
Since: 2.40</doc>
|
|
</member>
|
|
</bitfield>
|
|
<record name="StatBuf" c:type="GStatBuf" disguised="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1865">A type corresponding to the appropriate struct type for the stat()
|
|
system call, depending on the platform and/or compiler being used.
|
|
|
|
See g_stat() for more information.</doc>
|
|
<source-position filename="gstdio.h" line="53"/>
|
|
</record>
|
|
<record name="String" c:type="GString" glib:type-name="GString" glib:get-type="g_gstring_get_type" c:symbol-prefix="gstring">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1875">The GString struct contains the public fields of a GString.</doc>
|
|
<source-position filename="gstring.h" line="46"/>
|
|
<field name="str" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1877">points to the character data. It may move as text is added.
|
|
The @str field is null-terminated and so
|
|
can be used as an ordinary C string.</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</field>
|
|
<field name="len" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1880">contains the length of the string, not including the
|
|
terminating nul byte.</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</field>
|
|
<field name="allocated_len" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1882">the number of bytes that can be stored in the
|
|
string before it needs to be reallocated. May be larger than @len.</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</field>
|
|
<method name="append" c:identifier="g_string_append">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30550">Adds a string onto the end of a #GString, expanding
|
|
it if necessary.</doc>
|
|
<source-position filename="gstring.h" line="80"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30558">@string</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30552">a #GString</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</instance-parameter>
|
|
<parameter name="val" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30553">the string to append onto the end of @string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="append_c" c:identifier="g_string_append_c">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30562">Adds a byte onto the end of a #GString, expanding
|
|
it if necessary.</doc>
|
|
<source-position filename="gstring.h" line="87"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30570">@string</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30564">a #GString</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</instance-parameter>
|
|
<parameter name="c" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30565">the byte to append onto the end of @string</doc>
|
|
<type name="gchar" c:type="gchar"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="append_len" c:identifier="g_string_append_len">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30574">Appends @len bytes of @val to @string.
|
|
|
|
If @len is positive, @val may contain embedded nuls and need
|
|
not be nul-terminated. It is the caller's responsibility to
|
|
ensure that @val has at least @len addressable bytes.
|
|
|
|
If @len is negative, @val must be nul-terminated and @len
|
|
is considered to request the entire string length. This
|
|
makes g_string_append_len() equivalent to g_string_append().</doc>
|
|
<source-position filename="gstring.h" line="83"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30590">@string</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30576">a #GString</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</instance-parameter>
|
|
<parameter name="val" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30577">bytes to append</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30578">number of bytes of @val to use, or -1 for all of @val</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="append_printf" c:identifier="g_string_append_printf" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30594">Appends a formatted string onto the end of a #GString.
|
|
This function is similar to g_string_printf() except
|
|
that the text is appended to the #GString.</doc>
|
|
<source-position filename="gstring.h" line="149"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30596">a #GString</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</instance-parameter>
|
|
<parameter name="format" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30597">the string format. See the printf() documentation</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="..." transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30598">the parameters to insert into the format string</doc>
|
|
<varargs/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="append_unichar" c:identifier="g_string_append_unichar">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30606">Converts a Unicode character into UTF-8, and appends it
|
|
to the string.</doc>
|
|
<source-position filename="gstring.h" line="90"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30614">@string</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30608">a #GString</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</instance-parameter>
|
|
<parameter name="wc" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30609">a Unicode character</doc>
|
|
<type name="gunichar" c:type="gunichar"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="append_uri_escaped" c:identifier="g_string_append_uri_escaped" version="2.16">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30618">Appends @unescaped to @string, escaped any characters that
|
|
are reserved in URIs using URI-style escape sequences.</doc>
|
|
<source-position filename="gstring.h" line="153"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30629">@string</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30620">a #GString</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</instance-parameter>
|
|
<parameter name="unescaped" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30621">a string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="reserved_chars_allowed" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30622">a string of reserved characters allowed
|
|
to be used, or %NULL</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="allow_utf8" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30624">set %TRUE if the escaped string may include UTF8 characters</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="append_vprintf" c:identifier="g_string_append_vprintf" version="2.14" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30634">Appends a formatted string onto the end of a #GString.
|
|
This function is similar to g_string_append_printf()
|
|
except that the arguments to the format string are passed
|
|
as a va_list.</doc>
|
|
<source-position filename="gstring.h" line="144"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30636">a #GString</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</instance-parameter>
|
|
<parameter name="format" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30637">the string format. See the printf() documentation</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="args" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30638">the list of arguments to insert in the output</doc>
|
|
<type name="va_list" c:type="va_list"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="ascii_down" c:identifier="g_string_ascii_down">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30649">Converts all uppercase ASCII letters to lowercase ASCII letters.</doc>
|
|
<source-position filename="gstring.h" line="131"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30655">passed-in @string pointer, with all the
|
|
uppercase characters converted to lowercase in place,
|
|
with semantics that exactly match g_ascii_tolower().</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30651">a GString</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="ascii_up" c:identifier="g_string_ascii_up">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30661">Converts all lowercase ASCII letters to uppercase ASCII letters.</doc>
|
|
<source-position filename="gstring.h" line="133"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30667">passed-in @string pointer, with all the
|
|
lowercase characters converted to uppercase in place,
|
|
with semantics that exactly match g_ascii_toupper().</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30663">a GString</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="assign" c:identifier="g_string_assign">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30673">Copies the bytes from a string into a #GString,
|
|
destroying any previous contents. It is rather like
|
|
the standard strcpy() function, except that you do not
|
|
have to worry about having enough space to copy the string.</doc>
|
|
<source-position filename="gstring.h" line="66"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30684">@string</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30675">the destination #GString. Its current contents
|
|
are destroyed.</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</instance-parameter>
|
|
<parameter name="rval" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30677">the string to copy into @string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="down" c:identifier="g_string_down" deprecated="1" deprecated-version="2.2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30791">Converts a #GString to lowercase.</doc>
|
|
<doc-deprecated xml:space="preserve">This function uses the locale-specific
|
|
tolower() function, which is almost never the right thing.
|
|
Use g_string_ascii_down() or g_utf8_strdown() instead.</doc-deprecated>
|
|
<source-position filename="gstring.h" line="178"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30797">the #GString</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30793">a #GString</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="equal" c:identifier="g_string_equal">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30804">Compares two strings for equality, returning %TRUE if they are equal.
|
|
For use with #GHashTable.</doc>
|
|
<source-position filename="gstring.h" line="61"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30812">%TRUE if the strings are the same length and contain the
|
|
same bytes</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="v" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30806">a #GString</doc>
|
|
<type name="String" c:type="const GString*"/>
|
|
</instance-parameter>
|
|
<parameter name="v2" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30807">another #GString</doc>
|
|
<type name="String" c:type="const GString*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="erase" c:identifier="g_string_erase">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30817">Removes @len bytes from a #GString, starting at position @pos.
|
|
The rest of the #GString is shifted down to fill the gap.</doc>
|
|
<source-position filename="gstring.h" line="127"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30827">@string</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30819">a #GString</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</instance-parameter>
|
|
<parameter name="pos" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30820">the position of the content to remove</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
<parameter name="len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30821">the number of bytes to remove, or -1 to remove all
|
|
following bytes</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="free" c:identifier="g_string_free">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30831">Frees the memory allocated for the #GString.
|
|
If @free_segment is %TRUE it also frees the character data. If
|
|
it's %FALSE, the caller gains ownership of the buffer and must
|
|
free it after use with g_free().</doc>
|
|
<source-position filename="gstring.h" line="56"/>
|
|
<return-value transfer-ownership="full" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30841">the character data of @string
|
|
(i.e. %NULL if @free_segment is %TRUE)</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="string" transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30833">a #GString</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</instance-parameter>
|
|
<parameter name="free_segment" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30834">if %TRUE, the actual character data is freed as well</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="free_to_bytes" c:identifier="g_string_free_to_bytes" version="2.34">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30846">Transfers ownership of the contents of @string to a newly allocated
|
|
#GBytes. The #GString structure itself is deallocated, and it is
|
|
therefore invalid to use @string after invoking this function.
|
|
|
|
Note that while #GString ensures that its buffer always has a
|
|
trailing nul character (not reflected in its "len"), the returned
|
|
#GBytes does not include this extra nul; i.e. it has length exactly
|
|
equal to the "len" member.</doc>
|
|
<source-position filename="gstring.h" line="59"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30859">A newly allocated #GBytes containing contents of @string; @string itself is freed</doc>
|
|
<type name="Bytes" c:type="GBytes*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="string" transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30848">a #GString</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="hash" c:identifier="g_string_hash">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30864">Creates a hash code for @str; for use with #GHashTable.</doc>
|
|
<source-position filename="gstring.h" line="64"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30870">hash code for @str</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="str" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30866">a string to hash</doc>
|
|
<type name="String" c:type="const GString*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="insert" c:identifier="g_string_insert">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30874">Inserts a copy of a string into a #GString,
|
|
expanding it if necessary.</doc>
|
|
<source-position filename="gstring.h" line="106"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30883">@string</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30876">a #GString</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</instance-parameter>
|
|
<parameter name="pos" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30877">the position to insert the copy of the string</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
<parameter name="val" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30878">the string to insert</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="insert_c" c:identifier="g_string_insert_c">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30887">Inserts a byte into a #GString, expanding it if necessary.</doc>
|
|
<source-position filename="gstring.h" line="110"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30895">@string</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30889">a #GString</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</instance-parameter>
|
|
<parameter name="pos" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30890">the position to insert the byte</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
<parameter name="c" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30891">the byte to insert</doc>
|
|
<type name="gchar" c:type="gchar"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="insert_len" c:identifier="g_string_insert_len">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30899">Inserts @len bytes of @val into @string at @pos.
|
|
|
|
If @len is positive, @val may contain embedded nuls and need
|
|
not be nul-terminated. It is the caller's responsibility to
|
|
ensure that @val has at least @len addressable bytes.
|
|
|
|
If @len is negative, @val must be nul-terminated and @len
|
|
is considered to request the entire string length.
|
|
|
|
If @pos is -1, bytes are inserted at the end of the string.</doc>
|
|
<source-position filename="gstring.h" line="75"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30918">@string</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30901">a #GString</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</instance-parameter>
|
|
<parameter name="pos" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30902">position in @string where insertion should
|
|
happen, or -1 for at the end</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
<parameter name="val" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30904">bytes to insert</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30905">number of bytes of @val to insert, or -1 for all of @val</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="insert_unichar" c:identifier="g_string_insert_unichar">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30922">Converts a Unicode character into UTF-8, and insert it
|
|
into the string at the given position.</doc>
|
|
<source-position filename="gstring.h" line="114"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30932">@string</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30924">a #GString</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</instance-parameter>
|
|
<parameter name="pos" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30925">the position at which to insert character, or -1
|
|
to append at the end of the string</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
<parameter name="wc" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30927">a Unicode character</doc>
|
|
<type name="gunichar" c:type="gunichar"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="overwrite" c:identifier="g_string_overwrite" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30964">Overwrites part of a string, lengthening it if necessary.</doc>
|
|
<source-position filename="gstring.h" line="118"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30972">@string</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30966">a #GString</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</instance-parameter>
|
|
<parameter name="pos" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30967">the position at which to start overwriting</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
<parameter name="val" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30968">the string that will overwrite the @string starting at @pos</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="overwrite_len" c:identifier="g_string_overwrite_len" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30977">Overwrites part of a string, lengthening it if necessary.
|
|
This function will work with embedded nuls.</doc>
|
|
<source-position filename="gstring.h" line="122"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30987">@string</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30979">a #GString</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</instance-parameter>
|
|
<parameter name="pos" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30980">the position at which to start overwriting</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
<parameter name="val" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30981">the string that will overwrite the @string starting at @pos</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30982">the number of bytes to write from @val</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="prepend" c:identifier="g_string_prepend">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30992">Adds a string on to the start of a #GString,
|
|
expanding it if necessary.</doc>
|
|
<source-position filename="gstring.h" line="93"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31000">@string</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30994">a #GString</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</instance-parameter>
|
|
<parameter name="val" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30995">the string to prepend on the start of @string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="prepend_c" c:identifier="g_string_prepend_c">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31004">Adds a byte onto the start of a #GString,
|
|
expanding it if necessary.</doc>
|
|
<source-position filename="gstring.h" line="96"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31012">@string</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31006">a #GString</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</instance-parameter>
|
|
<parameter name="c" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31007">the byte to prepend on the start of the #GString</doc>
|
|
<type name="gchar" c:type="gchar"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="prepend_len" c:identifier="g_string_prepend_len">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31016">Prepends @len bytes of @val to @string.
|
|
|
|
If @len is positive, @val may contain embedded nuls and need
|
|
not be nul-terminated. It is the caller's responsibility to
|
|
ensure that @val has at least @len addressable bytes.
|
|
|
|
If @len is negative, @val must be nul-terminated and @len
|
|
is considered to request the entire string length. This
|
|
makes g_string_prepend_len() equivalent to g_string_prepend().</doc>
|
|
<source-position filename="gstring.h" line="102"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31032">@string</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31018">a #GString</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</instance-parameter>
|
|
<parameter name="val" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31019">bytes to prepend</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31020">number of bytes in @val to prepend, or -1 for all of @val</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="prepend_unichar" c:identifier="g_string_prepend_unichar">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31036">Converts a Unicode character into UTF-8, and prepends it
|
|
to the string.</doc>
|
|
<source-position filename="gstring.h" line="99"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31044">@string</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31038">a #GString</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</instance-parameter>
|
|
<parameter name="wc" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31039">a Unicode character</doc>
|
|
<type name="gunichar" c:type="gunichar"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="printf" c:identifier="g_string_printf" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31048">Writes a formatted string into a #GString.
|
|
This is similar to the standard sprintf() function,
|
|
except that the #GString buffer automatically expands
|
|
to contain the results. The previous contents of the
|
|
#GString are destroyed.</doc>
|
|
<source-position filename="gstring.h" line="140"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31050">a #GString</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</instance-parameter>
|
|
<parameter name="format" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31051">the string format. See the printf() documentation</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="..." transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31052">the parameters to insert into the format string</doc>
|
|
<varargs/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_size" c:identifier="g_string_set_size">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31062">Sets the length of a #GString. If the length is less than
|
|
the current length, the string will be truncated. If the
|
|
length is greater than the current length, the contents
|
|
of the newly added area are undefined. (However, as
|
|
always, string->str[string->len] will be a nul byte.)</doc>
|
|
<source-position filename="gstring.h" line="72"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31073">@string</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31064">a #GString</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</instance-parameter>
|
|
<parameter name="len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31065">the new length</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="truncate" c:identifier="g_string_truncate">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31121">Cuts off the end of the GString, leaving the first @len bytes.</doc>
|
|
<source-position filename="gstring.h" line="69"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31128">@string</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31123">a #GString</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</instance-parameter>
|
|
<parameter name="len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31124">the new size of @string</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="up" c:identifier="g_string_up" deprecated="1" deprecated-version="2.2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31132">Converts a #GString to uppercase.</doc>
|
|
<doc-deprecated xml:space="preserve">This function uses the locale-specific
|
|
toupper() function, which is almost never the right thing.
|
|
Use g_string_ascii_up() or g_utf8_strup() instead.</doc-deprecated>
|
|
<source-position filename="gstring.h" line="180"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31138">@string</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31134">a #GString</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="vprintf" c:identifier="g_string_vprintf" version="2.14" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31145">Writes a formatted string into a #GString.
|
|
This function is similar to g_string_printf() except that
|
|
the arguments to the format string are passed as a va_list.</doc>
|
|
<source-position filename="gstring.h" line="135"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31147">a #GString</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</instance-parameter>
|
|
<parameter name="format" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31148">the string format. See the printf() documentation</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="args" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31149">the parameters to insert into the format string</doc>
|
|
<type name="va_list" c:type="va_list"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
</record>
|
|
<record name="StringChunk" c:type="GStringChunk" disguised="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1889">An opaque data structure representing String Chunks.
|
|
It should only be accessed by using the following functions.</doc>
|
|
<source-position filename="gstringchunk.h" line="36"/>
|
|
<method name="clear" c:identifier="g_string_chunk_clear" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30688">Frees all strings contained within the #GStringChunk.
|
|
After calling g_string_chunk_clear() it is not safe to
|
|
access any of the strings which were contained within it.</doc>
|
|
<source-position filename="gstringchunk.h" line="43"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="chunk" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30690">a #GStringChunk</doc>
|
|
<type name="StringChunk" c:type="GStringChunk*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="free" c:identifier="g_string_chunk_free">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30700">Frees all memory allocated by the #GStringChunk.
|
|
After calling g_string_chunk_free() it is not safe to
|
|
access any of the strings which were contained within it.</doc>
|
|
<source-position filename="gstringchunk.h" line="41"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="chunk" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30702">a #GStringChunk</doc>
|
|
<type name="StringChunk" c:type="GStringChunk*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="insert" c:identifier="g_string_chunk_insert">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30710">Adds a copy of @string to the #GStringChunk.
|
|
It returns a pointer to the new copy of the string
|
|
in the #GStringChunk. The characters in the string
|
|
can be changed, if necessary, though you should not
|
|
change anything after the end of the string.
|
|
|
|
Unlike g_string_chunk_insert_const(), this function
|
|
does not check for duplicates. Also strings added
|
|
with g_string_chunk_insert() will not be searched
|
|
by g_string_chunk_insert_const() when looking for
|
|
duplicates.</doc>
|
|
<source-position filename="gstringchunk.h" line="45"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30727">a pointer to the copy of @string within
|
|
the #GStringChunk</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="chunk" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30712">a #GStringChunk</doc>
|
|
<type name="StringChunk" c:type="GStringChunk*"/>
|
|
</instance-parameter>
|
|
<parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30713">the string to add</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="insert_const" c:identifier="g_string_chunk_insert_const">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30732">Adds a copy of @string to the #GStringChunk, unless the same
|
|
string has already been added to the #GStringChunk with
|
|
g_string_chunk_insert_const().
|
|
|
|
This function is useful if you need to copy a large number
|
|
of strings but do not want to waste space storing duplicates.
|
|
But you must remember that there may be several pointers to
|
|
the same string, and so any changes made to the strings
|
|
should be done very carefully.
|
|
|
|
Note that g_string_chunk_insert_const() will not return a
|
|
pointer to a string added with g_string_chunk_insert(), even
|
|
if they do match.</doc>
|
|
<source-position filename="gstringchunk.h" line="52"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30751">a pointer to the new or existing copy of @string
|
|
within the #GStringChunk</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="chunk" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30734">a #GStringChunk</doc>
|
|
<type name="StringChunk" c:type="GStringChunk*"/>
|
|
</instance-parameter>
|
|
<parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30735">the string to add</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="insert_len" c:identifier="g_string_chunk_insert_len" version="2.4">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30756">Adds a copy of the first @len bytes of @string to the #GStringChunk.
|
|
The copy is nul-terminated.
|
|
|
|
Since this function does not stop at nul bytes, it is the caller's
|
|
responsibility to ensure that @string has at least @len addressable
|
|
bytes.
|
|
|
|
The characters in the returned string can be changed, if necessary,
|
|
though you should not change anything after the end of the string.</doc>
|
|
<source-position filename="gstringchunk.h" line="48"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30773">a pointer to the copy of @string within the #GStringChunk</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="chunk" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30758">a #GStringChunk</doc>
|
|
<type name="StringChunk" c:type="GStringChunk*"/>
|
|
</instance-parameter>
|
|
<parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30759">bytes to insert</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30760">number of bytes of @string to insert, or -1 to insert a
|
|
nul-terminated string</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<function name="new" c:identifier="g_string_chunk_new" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30778">Creates a new #GStringChunk.</doc>
|
|
<source-position filename="gstringchunk.h" line="39"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30787">a new #GStringChunk</doc>
|
|
<type name="StringChunk" c:type="GStringChunk*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="size" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30780">the default size of the blocks of memory which are
|
|
allocated to store the strings. If a particular string
|
|
is larger than this default size, a larger block of
|
|
memory will be allocated for it.</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
</record>
|
|
<constant name="TEST_OPTION_ISOLATE_DIRS" value="isolate_dirs" c:type="G_TEST_OPTION_ISOLATE_DIRS" version="2.60">
|
|
<doc xml:space="preserve" filename="gtestutils.h" line="190">Creates a unique temporary directory for each unit test and uses
|
|
g_set_user_dirs() to set XDG directories to point into subdirectories of it
|
|
for the duration of the unit test. The directory tree is cleaned up after the
|
|
test finishes successfully. Note that this doesn’t take effect until
|
|
g_test_run() is called, so calls to (for example) g_get_user_home_dir() will
|
|
return the system-wide value when made in a test program’s main() function.
|
|
|
|
The following functions will return subdirectories of the temporary directory
|
|
when this option is used. The specific subdirectory paths in use are not
|
|
guaranteed to be stable API — always use a getter function to retrieve them.
|
|
|
|
- g_get_home_dir()
|
|
- g_get_user_cache_dir()
|
|
- g_get_system_config_dirs()
|
|
- g_get_user_config_dir()
|
|
- g_get_system_data_dirs()
|
|
- g_get_user_data_dir()
|
|
- g_get_user_runtime_dir()
|
|
|
|
The subdirectories may not be created by the test harness; as with normal
|
|
calls to functions like g_get_user_cache_dir(), the caller must be prepared
|
|
to create the directory if it doesn’t exist.</doc>
|
|
<source-position filename="gtestutils.h" line="218"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<constant name="TIME_SPAN_DAY" value="86400000000" c:type="G_TIME_SPAN_DAY" version="2.26">
|
|
<doc xml:space="preserve" filename="gdatetime.h" line="35">Evaluates to a time span of one day.</doc>
|
|
<source-position filename="gdatetime.h" line="42"/>
|
|
<type name="gint64" c:type="gint64"/>
|
|
</constant>
|
|
<constant name="TIME_SPAN_HOUR" value="3600000000" c:type="G_TIME_SPAN_HOUR" version="2.26">
|
|
<doc xml:space="preserve" filename="gdatetime.h" line="44">Evaluates to a time span of one hour.</doc>
|
|
<source-position filename="gdatetime.h" line="51"/>
|
|
<type name="gint64" c:type="gint64"/>
|
|
</constant>
|
|
<constant name="TIME_SPAN_MILLISECOND" value="1000" c:type="G_TIME_SPAN_MILLISECOND" version="2.26">
|
|
<doc xml:space="preserve" filename="gdatetime.h" line="71">Evaluates to a time span of one millisecond.</doc>
|
|
<source-position filename="gdatetime.h" line="78"/>
|
|
<type name="gint64" c:type="gint64"/>
|
|
</constant>
|
|
<constant name="TIME_SPAN_MINUTE" value="60000000" c:type="G_TIME_SPAN_MINUTE" version="2.26">
|
|
<doc xml:space="preserve" filename="gdatetime.h" line="53">Evaluates to a time span of one minute.</doc>
|
|
<source-position filename="gdatetime.h" line="60"/>
|
|
<type name="gint64" c:type="gint64"/>
|
|
</constant>
|
|
<constant name="TIME_SPAN_SECOND" value="1000000" c:type="G_TIME_SPAN_SECOND" version="2.26">
|
|
<doc xml:space="preserve" filename="gdatetime.h" line="62">Evaluates to a time span of one second.</doc>
|
|
<source-position filename="gdatetime.h" line="69"/>
|
|
<type name="gint64" c:type="gint64"/>
|
|
</constant>
|
|
<function-macro name="TRYLOCK" c:identifier="G_TRYLOCK" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="4492">Works like g_mutex_trylock(), but for a lock defined with
|
|
#G_LOCK_DEFINE.</doc>
|
|
<source-position filename="gthread.h" line="129"/>
|
|
<parameters>
|
|
<parameter name="name">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="4494">the name of the lock</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<record name="TestCase" c:type="GTestCase" disguised="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1905">An opaque structure representing a test case.</doc>
|
|
<source-position filename="gtestutils.h" line="34"/>
|
|
</record>
|
|
<record name="TestConfig" c:type="GTestConfig">
|
|
<source-position filename="gtestutils.h" line="498"/>
|
|
<field name="test_initialized" writable="1">
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</field>
|
|
<field name="test_quick" writable="1">
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</field>
|
|
<field name="test_perf" writable="1">
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</field>
|
|
<field name="test_verbose" writable="1">
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</field>
|
|
<field name="test_quiet" writable="1">
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</field>
|
|
<field name="test_undefined" writable="1">
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</field>
|
|
</record>
|
|
<callback name="TestDataFunc" c:type="GTestDataFunc" version="2.28">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1912">The type used for test case functions that take an extra pointer
|
|
argument.</doc>
|
|
<source-position filename="gtestutils.h" line="37"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1" closure="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1914">the data provided when registering the test</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
<enumeration name="TestFileType" version="2.38" c:type="GTestFileType">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1923">The type of file to return the filename for, when used with
|
|
g_test_build_filename().
|
|
|
|
These two options correspond rather directly to the 'dist' and
|
|
'built' terminology that automake uses and are explicitly used to
|
|
distinguish between the 'srcdir' and 'builddir' being separate. All
|
|
files in your project should either be dist (in the
|
|
`EXTRA_DIST` or `dist_schema_DATA`
|
|
sense, in which case they will always be in the srcdir) or built (in
|
|
the `BUILT_SOURCES` sense, in which case they will
|
|
always be in the builddir).
|
|
|
|
Note: as a general rule of automake, files that are generated only as
|
|
part of the build-from-git process (but then are distributed with the
|
|
tarball) always go in srcdir (even if doing a srcdir != builddir
|
|
build from git) and are considered as distributed files.</doc>
|
|
<source-position filename="gtestutils.h" line="588"/>
|
|
<member name="dist" value="0" c:identifier="G_TEST_DIST">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1925">a file that was included in the distribution tarball</doc>
|
|
</member>
|
|
<member name="built" value="1" c:identifier="G_TEST_BUILT">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1926">a file that was built on the compiling machine</doc>
|
|
</member>
|
|
</enumeration>
|
|
<callback name="TestFixtureFunc" c:type="GTestFixtureFunc" version="2.28">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1949">The type used for functions that operate on test fixtures. This is
|
|
used for the fixture setup and teardown functions as well as for the
|
|
testcases themselves.
|
|
|
|
@user_data is a pointer to the data that was given when registering
|
|
the test case.
|
|
|
|
@fixture will be a pointer to the area of memory allocated by the
|
|
test framework, of the size requested. If the requested size was
|
|
zero then @fixture will be equal to @user_data.</doc>
|
|
<source-position filename="gtestutils.h" line="38"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="fixture" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1951">the test fixture</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1" closure="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1952">the data provided when registering the test</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
<callback name="TestFunc" c:type="GTestFunc" version="2.28">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1969">The type used for test case functions.</doc>
|
|
<source-position filename="gtestutils.h" line="36"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
</callback>
|
|
<record name="TestLogBuffer" c:type="GTestLogBuffer">
|
|
<source-position filename="gtestutils.h" line="535"/>
|
|
<field name="data" readable="0" private="1">
|
|
<type name="String" c:type="GString*"/>
|
|
</field>
|
|
<field name="msgs" readable="0" private="1">
|
|
<type name="GLib.SList" c:type="GSList*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</field>
|
|
<method name="free" c:identifier="g_test_log_buffer_free">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31952">Internal function for gtester to free test log messages, no ABI guarantees provided.</doc>
|
|
<source-position filename="gtestutils.h" line="542"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="tbuffer" transfer-ownership="none">
|
|
<type name="TestLogBuffer" c:type="GTestLogBuffer*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="pop" c:identifier="g_test_log_buffer_pop" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31966">Internal function for gtester to retrieve test log messages, no ABI guarantees provided.</doc>
|
|
<source-position filename="gtestutils.h" line="548"/>
|
|
<return-value>
|
|
<type name="TestLogMsg" c:type="GTestLogMsg*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="tbuffer" transfer-ownership="none">
|
|
<type name="TestLogBuffer" c:type="GTestLogBuffer*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="push" c:identifier="g_test_log_buffer_push">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31973">Internal function for gtester to decode test log messages, no ABI guarantees provided.</doc>
|
|
<source-position filename="gtestutils.h" line="544"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="tbuffer" transfer-ownership="none">
|
|
<type name="TestLogBuffer" c:type="GTestLogBuffer*"/>
|
|
</instance-parameter>
|
|
<parameter name="n_bytes" transfer-ownership="none">
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
<parameter name="bytes" transfer-ownership="none">
|
|
<type name="guint8" c:type="const guint8*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<function name="new" c:identifier="g_test_log_buffer_new" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31959">Internal function for gtester to decode test log messages, no ABI guarantees provided.</doc>
|
|
<source-position filename="gtestutils.h" line="540"/>
|
|
<return-value>
|
|
<type name="TestLogBuffer" c:type="GTestLogBuffer*"/>
|
|
</return-value>
|
|
</function>
|
|
</record>
|
|
<callback name="TestLogFatalFunc" c:type="GTestLogFatalFunc" version="2.22">
|
|
<doc xml:space="preserve" filename="gtestutils.h" line="552">Specifies the prototype of fatal log handler functions.</doc>
|
|
<source-position filename="gtestutils.h" line="565"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="gtestutils.h" line="561">%TRUE if the program should abort, %FALSE otherwise</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="log_domain" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="gtestutils.h" line="554">the log domain of the message</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="log_level" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="gtestutils.h" line="555">the log level of the message (including the fatal and recursion flags)</doc>
|
|
<type name="LogLevelFlags" c:type="GLogLevelFlags"/>
|
|
</parameter>
|
|
<parameter name="message" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="gtestutils.h" line="556">the message to process</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1" closure="3">
|
|
<doc xml:space="preserve" filename="gtestutils.h" line="557">user data, set in g_test_log_set_fatal_handler()</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
<record name="TestLogMsg" c:type="GTestLogMsg">
|
|
<source-position filename="gtestutils.h" line="530"/>
|
|
<field name="log_type" writable="1">
|
|
<type name="TestLogType" c:type="GTestLogType"/>
|
|
</field>
|
|
<field name="n_strings" writable="1">
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="strings" writable="1">
|
|
<type name="utf8" c:type="gchar**"/>
|
|
</field>
|
|
<field name="n_nums" writable="1">
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
<field name="nums" introspectable="0" writable="1">
|
|
<type name="long double" c:type="long double*"/>
|
|
</field>
|
|
<method name="free" c:identifier="g_test_log_msg_free">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31980">Internal function for gtester to free test log messages, no ABI guarantees provided.</doc>
|
|
<source-position filename="gtestutils.h" line="550"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="tmsg" transfer-ownership="none">
|
|
<type name="TestLogMsg" c:type="GTestLogMsg*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
</record>
|
|
<enumeration name="TestLogType" c:type="GTestLogType">
|
|
<source-position filename="gtestutils.h" line="522"/>
|
|
<member name="none" value="0" c:identifier="G_TEST_LOG_NONE">
|
|
</member>
|
|
<member name="error" value="1" c:identifier="G_TEST_LOG_ERROR">
|
|
</member>
|
|
<member name="start_binary" value="2" c:identifier="G_TEST_LOG_START_BINARY">
|
|
</member>
|
|
<member name="list_case" value="3" c:identifier="G_TEST_LOG_LIST_CASE">
|
|
</member>
|
|
<member name="skip_case" value="4" c:identifier="G_TEST_LOG_SKIP_CASE">
|
|
</member>
|
|
<member name="start_case" value="5" c:identifier="G_TEST_LOG_START_CASE">
|
|
</member>
|
|
<member name="stop_case" value="6" c:identifier="G_TEST_LOG_STOP_CASE">
|
|
</member>
|
|
<member name="min_result" value="7" c:identifier="G_TEST_LOG_MIN_RESULT">
|
|
</member>
|
|
<member name="max_result" value="8" c:identifier="G_TEST_LOG_MAX_RESULT">
|
|
</member>
|
|
<member name="message" value="9" c:identifier="G_TEST_LOG_MESSAGE">
|
|
</member>
|
|
<member name="start_suite" value="10" c:identifier="G_TEST_LOG_START_SUITE">
|
|
</member>
|
|
<member name="stop_suite" value="11" c:identifier="G_TEST_LOG_STOP_SUITE">
|
|
</member>
|
|
</enumeration>
|
|
<enumeration name="TestResult" c:type="GTestResult">
|
|
<source-position filename="gtestutils.h" line="507"/>
|
|
<member name="success" value="0" c:identifier="G_TEST_RUN_SUCCESS">
|
|
</member>
|
|
<member name="skipped" value="1" c:identifier="G_TEST_RUN_SKIPPED">
|
|
</member>
|
|
<member name="failure" value="2" c:identifier="G_TEST_RUN_FAILURE">
|
|
</member>
|
|
<member name="incomplete" value="3" c:identifier="G_TEST_RUN_INCOMPLETE">
|
|
</member>
|
|
</enumeration>
|
|
<bitfield name="TestSubprocessFlags" c:type="GTestSubprocessFlags">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1978">Flags to pass to g_test_trap_subprocess() to control input and output.
|
|
|
|
Note that in contrast with g_test_trap_fork(), the default is to
|
|
not show stdout and stderr.</doc>
|
|
<source-position filename="gtestutils.h" line="381"/>
|
|
<member name="stdin" value="1" c:identifier="G_TEST_SUBPROCESS_INHERIT_STDIN">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1980">If this flag is given, the child
|
|
process will inherit the parent's stdin. Otherwise, the child's
|
|
stdin is redirected to `/dev/null`.</doc>
|
|
</member>
|
|
<member name="stdout" value="2" c:identifier="G_TEST_SUBPROCESS_INHERIT_STDOUT">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1983">If this flag is given, the child
|
|
process will inherit the parent's stdout. Otherwise, the child's
|
|
stdout will not be visible, but it will be captured to allow
|
|
later tests with g_test_trap_assert_stdout().</doc>
|
|
</member>
|
|
<member name="stderr" value="4" c:identifier="G_TEST_SUBPROCESS_INHERIT_STDERR">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1987">If this flag is given, the child
|
|
process will inherit the parent's stderr. Otherwise, the child's
|
|
stderr will not be visible, but it will be captured to allow
|
|
later tests with g_test_trap_assert_stderr().</doc>
|
|
</member>
|
|
</bitfield>
|
|
<record name="TestSuite" c:type="GTestSuite" disguised="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="1999">An opaque structure representing a test suite.</doc>
|
|
<source-position filename="gtestutils.h" line="35"/>
|
|
<method name="add" c:identifier="g_test_suite_add" version="2.16">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32332">Adds @test_case to @suite.</doc>
|
|
<source-position filename="gtestutils.h" line="429"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="suite" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32334">a #GTestSuite</doc>
|
|
<type name="TestSuite" c:type="GTestSuite*"/>
|
|
</instance-parameter>
|
|
<parameter name="test_case" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32335">a #GTestCase</doc>
|
|
<type name="TestCase" c:type="GTestCase*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="add_suite" c:identifier="g_test_suite_add_suite" version="2.16">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32343">Adds @nestedsuite to @suite.</doc>
|
|
<source-position filename="gtestutils.h" line="432"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="suite" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32345">a #GTestSuite</doc>
|
|
<type name="TestSuite" c:type="GTestSuite*"/>
|
|
</instance-parameter>
|
|
<parameter name="nestedsuite" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32346">another #GTestSuite</doc>
|
|
<type name="TestSuite" c:type="GTestSuite*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
</record>
|
|
<bitfield name="TestTrapFlags" deprecated="1" deprecated-version="2.38" c:type="GTestTrapFlags">
|
|
<doc xml:space="preserve" filename="gtestutils.h" line="342">Test traps are guards around forked tests.
|
|
These flags determine what traps to set.</doc>
|
|
<doc-deprecated xml:space="preserve">#GTestTrapFlags is used only with g_test_trap_fork(),
|
|
which is deprecated. g_test_trap_subprocess() uses
|
|
#GTestSubprocessFlags.</doc-deprecated>
|
|
<source-position filename="gtestutils.h" line="367"/>
|
|
<member name="silence_stdout" value="128" c:identifier="G_TEST_TRAP_SILENCE_STDOUT">
|
|
<doc xml:space="preserve" filename="gtestutils.h" line="344">Redirect stdout of the test child to
|
|
`/dev/null` so it cannot be observed on the console during test
|
|
runs. The actual output is still captured though to allow later
|
|
tests with g_test_trap_assert_stdout().</doc>
|
|
</member>
|
|
<member name="silence_stderr" value="256" c:identifier="G_TEST_TRAP_SILENCE_STDERR">
|
|
<doc xml:space="preserve" filename="gtestutils.h" line="348">Redirect stderr of the test child to
|
|
`/dev/null` so it cannot be observed on the console during test
|
|
runs. The actual output is still captured though to allow later
|
|
tests with g_test_trap_assert_stderr().</doc>
|
|
</member>
|
|
<member name="inherit_stdin" value="512" c:identifier="G_TEST_TRAP_INHERIT_STDIN">
|
|
<doc xml:space="preserve" filename="gtestutils.h" line="352">If this flag is given, stdin of the
|
|
child process is shared with stdin of its parent process.
|
|
It is redirected to `/dev/null` otherwise.</doc>
|
|
</member>
|
|
</bitfield>
|
|
<record name="Thread" c:type="GThread" glib:type-name="GThread" glib:get-type="g_thread_get_type" c:symbol-prefix="thread">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2006">The #GThread struct represents a running thread. This struct
|
|
is returned by g_thread_new() or g_thread_try_new(). You can
|
|
obtain the #GThread struct representing the current thread by
|
|
calling g_thread_self().
|
|
|
|
GThread is refcounted, see g_thread_ref() and g_thread_unref().
|
|
The thread represented by it holds a reference while it is running,
|
|
and g_thread_join() consumes the reference that it is given, so
|
|
it is normally not necessary to manage GThread references
|
|
explicitly.
|
|
|
|
The structure is opaque -- none of its fields may be directly
|
|
accessed.</doc>
|
|
<source-position filename="gthread.h" line="49"/>
|
|
<constructor name="new" c:identifier="g_thread_new" version="2.32" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32709">This function creates a new thread. The new thread starts by invoking
|
|
@func with the argument data. The thread will run until @func returns
|
|
or until g_thread_exit() is called from the new thread. The return value
|
|
of @func becomes the return value of the thread, which can be obtained
|
|
with g_thread_join().
|
|
|
|
The @name can be useful for discriminating threads in a debugger.
|
|
It is not used for other purposes and does not have to be unique.
|
|
Some systems restrict the length of @name to 16 bytes.
|
|
|
|
If the thread can not be created the program aborts. See
|
|
g_thread_try_new() if you want to attempt to deal with failures.
|
|
|
|
If you are using threads to offload (potentially many) short-lived tasks,
|
|
#GThreadPool may be more appropriate than manually spawning and tracking
|
|
multiple #GThreads.
|
|
|
|
To free the struct returned by this function, use g_thread_unref().
|
|
Note that g_thread_join() implicitly unrefs the #GThread as well.</doc>
|
|
<source-position filename="gthread.h" line="145"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32735">the new #GThread</doc>
|
|
<type name="Thread" c:type="GThread*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="name" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32711">an (optional) name for the new thread</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="func" transfer-ownership="none" closure="2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32712">a function to execute in the new thread</doc>
|
|
<type name="ThreadFunc" c:type="GThreadFunc"/>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32713">an argument to supply to the new thread</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="try_new" c:identifier="g_thread_try_new" version="2.32" introspectable="0" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33046">This function is the same as g_thread_new() except that
|
|
it allows for the possibility of failure.
|
|
|
|
If a thread can not be created (due to resource limits),
|
|
@error is set and %NULL is returned.</doc>
|
|
<source-position filename="gthread.h" line="149"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33059">the new #GThread, or %NULL if an error occurred</doc>
|
|
<type name="Thread" c:type="GThread*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="name" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33048">an (optional) name for the new thread</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="func" transfer-ownership="none" closure="2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33049">a function to execute in the new thread</doc>
|
|
<type name="ThreadFunc" c:type="GThreadFunc"/>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33050">an argument to supply to the new thread</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<method name="join" c:identifier="g_thread_join">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32684">Waits until @thread finishes, i.e. the function @func, as
|
|
given to g_thread_new(), returns or g_thread_exit() is called.
|
|
If @thread has already terminated, then g_thread_join()
|
|
returns immediately.
|
|
|
|
Any thread can wait for any other thread by calling g_thread_join(),
|
|
not just its 'creator'. Calling g_thread_join() from multiple threads
|
|
for the same @thread leads to undefined behaviour.
|
|
|
|
The value returned by @func or given to g_thread_exit() is
|
|
returned by this function.
|
|
|
|
g_thread_join() consumes the reference to the passed-in @thread.
|
|
This will usually cause the #GThread struct and associated resources
|
|
to be freed. Use g_thread_ref() to obtain an extra reference if you
|
|
want to keep the GThread alive beyond the g_thread_join() call.</doc>
|
|
<source-position filename="gthread.h" line="158"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32705">the return value of the thread</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="thread" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32686">a #GThread</doc>
|
|
<type name="Thread" c:type="GThread*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="ref" c:identifier="g_thread_ref" version="2.32">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33005">Increase the reference count on @thread.</doc>
|
|
<source-position filename="gthread.h" line="141"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33011">a new reference to @thread</doc>
|
|
<type name="Thread" c:type="GThread*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="thread" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33007">a #GThread</doc>
|
|
<type name="Thread" c:type="GThread*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="unref" c:identifier="g_thread_unref" version="2.32">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33064">Decrease the reference count on @thread, possibly freeing all
|
|
resources associated with it.
|
|
|
|
Note that each thread holds a reference to its #GThread while
|
|
it is running, so it is safe to drop your own reference to it
|
|
if you don't need it anymore.</doc>
|
|
<source-position filename="gthread.h" line="143"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="thread" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33066">a #GThread</doc>
|
|
<type name="Thread" c:type="GThread*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<function name="error_quark" c:identifier="g_thread_error_quark">
|
|
<return-value transfer-ownership="none">
|
|
<type name="Quark" c:type="GQuark"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="exit" c:identifier="g_thread_exit">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32664">Terminates the current thread.
|
|
|
|
If another thread is waiting for us using g_thread_join() then the
|
|
waiting thread will be woken up and get @retval as the return value
|
|
of g_thread_join().
|
|
|
|
Calling g_thread_exit() with a parameter @retval is equivalent to
|
|
returning @retval from the function @func, as given to g_thread_new().
|
|
|
|
You must only call g_thread_exit() from a thread that you created
|
|
yourself with g_thread_new() or related APIs. You must not call
|
|
this function from a thread created with another threading library
|
|
or or from within a #GThreadPool.</doc>
|
|
<source-position filename="gthread.h" line="156"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="retval" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32666">the return value of this thread</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="self" c:identifier="g_thread_self">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33016">This function returns the #GThread corresponding to the
|
|
current thread. Note that this function does not increase
|
|
the reference count of the returned struct.
|
|
|
|
This function will return a #GThread even for threads that
|
|
were not created by GLib (i.e. those created by other threading
|
|
APIs). This may be useful for thread identification purposes
|
|
(i.e. comparisons) but you must not use GLib functions (such
|
|
as g_thread_join()) on these threads.</doc>
|
|
<source-position filename="gthread.h" line="154"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33029">the #GThread representing the current thread</doc>
|
|
<type name="Thread" c:type="GThread*"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="yield" c:identifier="g_thread_yield">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33079">Causes the calling thread to voluntarily relinquish the CPU, so
|
|
that other threads can run.
|
|
|
|
This function is often used as a method to make busy wait less evil.</doc>
|
|
<source-position filename="gthread.h" line="160"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
</function>
|
|
</record>
|
|
<enumeration name="ThreadError" c:type="GThreadError" glib:error-domain="g_thread_error">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2025">Possible errors of thread related functions.</doc>
|
|
<source-position filename="gthread.h" line="45"/>
|
|
<member name="thread_error_again" value="0" c:identifier="G_THREAD_ERROR_AGAIN">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2027">a thread couldn't be created due to resource
|
|
shortage. Try again later.</doc>
|
|
</member>
|
|
</enumeration>
|
|
<callback name="ThreadFunc" c:type="GThreadFunc">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2034">Specifies the type of the @func functions passed to g_thread_new()
|
|
or g_thread_try_new().</doc>
|
|
<source-position filename="gthread.h" line="47"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2041">the return value of the thread</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2036">data passed to the thread</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
<record name="ThreadPool" c:type="GThreadPool">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2045">The #GThreadPool struct represents a thread pool. It has three
|
|
public read-only members, but the underlying struct is bigger,
|
|
so you must not copy this struct.</doc>
|
|
<source-position filename="gthreadpool.h" line="46"/>
|
|
<field name="func" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2047">the function to execute in the threads of this pool</doc>
|
|
<type name="Func" c:type="GFunc"/>
|
|
</field>
|
|
<field name="user_data" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2048">the user data for the threads of this pool</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</field>
|
|
<field name="exclusive" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2049">are all threads exclusive to this pool</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</field>
|
|
<method name="free" c:identifier="g_thread_pool_free">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32740">Frees all resources allocated for @pool.
|
|
|
|
If @immediate is %TRUE, no new task is processed for @pool.
|
|
Otherwise @pool is not freed before the last task is processed.
|
|
Note however, that no thread of this pool is interrupted while
|
|
processing a task. Instead at least all still running threads
|
|
can finish their tasks before the @pool is freed.
|
|
|
|
If @wait_ is %TRUE, the functions does not return before all
|
|
tasks to be processed (dependent on @immediate, whether all
|
|
or only the currently running) are ready.
|
|
Otherwise the function returns immediately.
|
|
|
|
After calling this function @pool must not be used anymore.</doc>
|
|
<source-position filename="gthreadpool.h" line="55"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="pool" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32742">a #GThreadPool</doc>
|
|
<type name="ThreadPool" c:type="GThreadPool*"/>
|
|
</instance-parameter>
|
|
<parameter name="immediate" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32743">should @pool shut down immediately?</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
<parameter name="wait_" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32744">should the function wait for all tasks to be finished?</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_max_threads" c:identifier="g_thread_pool_get_max_threads">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32780">Returns the maximal number of threads for @pool.</doc>
|
|
<source-position filename="gthreadpool.h" line="77"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32786">the maximal number of threads</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="pool" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32782">a #GThreadPool</doc>
|
|
<type name="ThreadPool" c:type="GThreadPool*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_num_threads" c:identifier="g_thread_pool_get_num_threads">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32799">Returns the number of threads currently running in @pool.</doc>
|
|
<source-position filename="gthreadpool.h" line="79"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32805">the number of threads currently running</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="pool" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32801">a #GThreadPool</doc>
|
|
<type name="ThreadPool" c:type="GThreadPool*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="move_to_front" c:identifier="g_thread_pool_move_to_front" version="2.46">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32818">Moves the item to the front of the queue of unprocessed
|
|
items, so that it will be processed next.</doc>
|
|
<source-position filename="gthreadpool.h" line="69"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32826">%TRUE if the item was found and moved</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="pool" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32820">a #GThreadPool</doc>
|
|
<type name="ThreadPool" c:type="GThreadPool*"/>
|
|
</instance-parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32821">an unprocessed item in the pool</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="push" c:identifier="g_thread_pool_push" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32873">Inserts @data into the list of tasks to be executed by @pool.
|
|
|
|
When the number of currently running threads is lower than the
|
|
maximal allowed number of threads, a new thread is started (or
|
|
reused) with the properties given to g_thread_pool_new().
|
|
Otherwise, @data stays in the queue until a thread in this pool
|
|
finishes its previous task and processes @data.
|
|
|
|
@error can be %NULL to ignore errors, or non-%NULL to report
|
|
errors. An error can only occur when a new thread couldn't be
|
|
created. In that case @data is simply appended to the queue of
|
|
work to do.
|
|
|
|
Before version 2.32, this function did not return a success status.</doc>
|
|
<source-position filename="gthreadpool.h" line="59"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32894">%TRUE on success, %FALSE if an error occurred</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="pool" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32875">a #GThreadPool</doc>
|
|
<type name="ThreadPool" c:type="GThreadPool*"/>
|
|
</instance-parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32876">a new task for @pool</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_max_threads" c:identifier="g_thread_pool_set_max_threads" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32917">Sets the maximal allowed number of threads for @pool.
|
|
A value of -1 means that the maximal number of threads
|
|
is unlimited. If @pool is an exclusive thread pool, setting
|
|
the maximal number of threads to -1 is not allowed.
|
|
|
|
Setting @max_threads to 0 means stopping all work for @pool.
|
|
It is effectively frozen until @max_threads is set to a non-zero
|
|
value again.
|
|
|
|
A thread is never terminated while calling @func, as supplied by
|
|
g_thread_pool_new(). Instead the maximal number of threads only
|
|
has effect for the allocation of new threads in g_thread_pool_push().
|
|
A new thread is allocated, whenever the number of currently
|
|
running threads in @pool is smaller than the maximal number.
|
|
|
|
@error can be %NULL to ignore errors, or non-%NULL to report
|
|
errors. An error can only occur when a new thread couldn't be
|
|
created.
|
|
|
|
Before version 2.32, this function did not return a success status.</doc>
|
|
<source-position filename="gthreadpool.h" line="73"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32945">%TRUE on success, %FALSE if an error occurred</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="pool" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32919">a #GThreadPool</doc>
|
|
<type name="ThreadPool" c:type="GThreadPool*"/>
|
|
</instance-parameter>
|
|
<parameter name="max_threads" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32920">a new maximal number of threads for @pool,
|
|
or -1 for unlimited</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="set_sort_function" c:identifier="g_thread_pool_set_sort_function" version="2.10" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32961">Sets the function used to sort the list of tasks. This allows the
|
|
tasks to be processed by a priority determined by @func, and not
|
|
just in the order in which they were added to the pool.
|
|
|
|
Note, if the maximum number of threads is more than 1, the order
|
|
that threads are executed cannot be guaranteed 100%. Threads are
|
|
scheduled by the operating system and are executed at random. It
|
|
cannot be assumed that threads are executed in the order they are
|
|
created.</doc>
|
|
<source-position filename="gthreadpool.h" line="65"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="pool" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32963">a #GThreadPool</doc>
|
|
<type name="ThreadPool" c:type="GThreadPool*"/>
|
|
</instance-parameter>
|
|
<parameter name="func" transfer-ownership="none" closure="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32964">the #GCompareDataFunc used to sort the list of tasks.
|
|
This function is passed two tasks. It should return
|
|
0 if the order in which they are handled does not matter,
|
|
a negative value if the first task should be processed before
|
|
the second or a positive value if the second task should be
|
|
processed first.</doc>
|
|
<type name="CompareDataFunc" c:type="GCompareDataFunc"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32970">user data passed to @func</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="unprocessed" c:identifier="g_thread_pool_unprocessed">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32995">Returns the number of tasks still unprocessed in @pool.</doc>
|
|
<source-position filename="gthreadpool.h" line="63"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33001">the number of unprocessed tasks</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="pool" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32997">a #GThreadPool</doc>
|
|
<type name="ThreadPool" c:type="GThreadPool*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<function name="get_max_idle_time" c:identifier="g_thread_pool_get_max_idle_time" version="2.10">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32763">This function will return the maximum @interval that a
|
|
thread will wait in the thread pool for new tasks before
|
|
being stopped.
|
|
|
|
If this function returns 0, threads waiting in the thread
|
|
pool for new work are not stopped.</doc>
|
|
<source-position filename="gthreadpool.h" line="92"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32773">the maximum @interval (milliseconds) to wait
|
|
for new tasks in the thread pool before stopping the
|
|
thread</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="get_max_unused_threads" c:identifier="g_thread_pool_get_max_unused_threads">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32790">Returns the maximal allowed number of unused threads.</doc>
|
|
<source-position filename="gthreadpool.h" line="84"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32795">the maximal number of unused threads</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="get_num_unused_threads" c:identifier="g_thread_pool_get_num_unused_threads">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32809">Returns the number of currently unused threads.</doc>
|
|
<source-position filename="gthreadpool.h" line="86"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32814">the number of currently unused threads</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="new" c:identifier="g_thread_pool_new" introspectable="0" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32831">This function creates a new thread pool.
|
|
|
|
Whenever you call g_thread_pool_push(), either a new thread is
|
|
created or an unused one is reused. At most @max_threads threads
|
|
are running concurrently for this thread pool. @max_threads = -1
|
|
allows unlimited threads to be created for this thread pool. The
|
|
newly created or reused thread now executes the function @func
|
|
with the two arguments. The first one is the parameter to
|
|
g_thread_pool_push() and the second one is @user_data.
|
|
|
|
The parameter @exclusive determines whether the thread pool owns
|
|
all threads exclusive or shares them with other thread pools.
|
|
If @exclusive is %TRUE, @max_threads threads are started
|
|
immediately and they will run exclusively for this thread pool
|
|
until it is destroyed by g_thread_pool_free(). If @exclusive is
|
|
%FALSE, threads are created when needed and shared between all
|
|
non-exclusive thread pools. This implies that @max_threads may
|
|
not be -1 for exclusive thread pools. Besides, exclusive thread
|
|
pools are not affected by g_thread_pool_set_max_idle_time()
|
|
since their threads are never considered idle and returned to the
|
|
global pool.
|
|
|
|
@error can be %NULL to ignore errors, or non-%NULL to report
|
|
errors. An error can only occur when @exclusive is set to %TRUE
|
|
and not all @max_threads threads could be created.
|
|
See #GThreadError for possible errors that may occur.
|
|
Note, even in case of error a valid #GThreadPool is returned.</doc>
|
|
<source-position filename="gthreadpool.h" line="49"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32869">the new #GThreadPool</doc>
|
|
<type name="ThreadPool" c:type="GThreadPool*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="func" transfer-ownership="none" closure="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32833">a function to execute in the threads of the new thread pool</doc>
|
|
<type name="Func" c:type="GFunc"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32834">user data that is handed over to @func every time it
|
|
is called</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="max_threads" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32836">the maximal number of threads to execute concurrently
|
|
in the new thread pool, -1 means no limit</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="exclusive" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32838">should this thread pool be exclusive?</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="set_max_idle_time" c:identifier="g_thread_pool_set_max_idle_time" version="2.10">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32898">This function will set the maximum @interval that a thread
|
|
waiting in the pool for new tasks can be idle for before
|
|
being stopped. This function is similar to calling
|
|
g_thread_pool_stop_unused_threads() on a regular timeout,
|
|
except this is done on a per thread basis.
|
|
|
|
By setting @interval to 0, idle threads will not be stopped.
|
|
|
|
The default value is 15000 (15 seconds).</doc>
|
|
<source-position filename="gthreadpool.h" line="90"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="interval" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32900">the maximum @interval (in milliseconds)
|
|
a thread can be idle</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="set_max_unused_threads" c:identifier="g_thread_pool_set_max_unused_threads">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32949">Sets the maximal number of unused threads to @max_threads.
|
|
If @max_threads is -1, no limit is imposed on the number
|
|
of unused threads.
|
|
|
|
The default value is 2.</doc>
|
|
<source-position filename="gthreadpool.h" line="82"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="max_threads" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32951">maximal number of unused threads</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="stop_unused_threads" c:identifier="g_thread_pool_stop_unused_threads">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32986">Stops all currently unused threads. This does not change the
|
|
maximal number of unused threads. This function can be used to
|
|
regularly stop all unused threads e.g. from g_timeout_add().</doc>
|
|
<source-position filename="gthreadpool.h" line="88"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
</function>
|
|
</record>
|
|
<enumeration name="TimeType" c:type="GTimeType">
|
|
<doc xml:space="preserve" filename="gtimezone.h" line="33">Disambiguates a given time in two ways.
|
|
|
|
First, specifies if the given time is in universal or local time.
|
|
|
|
Second, if the time is in local time, specifies if it is local
|
|
standard time or local daylight time. This is important for the case
|
|
where the same local time occurs twice (during daylight savings time
|
|
transitions, for example).</doc>
|
|
<source-position filename="gtimezone.h" line="53"/>
|
|
<member name="standard" value="0" c:identifier="G_TIME_TYPE_STANDARD">
|
|
<doc xml:space="preserve" filename="gtimezone.h" line="35">the time is in local standard time</doc>
|
|
</member>
|
|
<member name="daylight" value="1" c:identifier="G_TIME_TYPE_DAYLIGHT">
|
|
<doc xml:space="preserve" filename="gtimezone.h" line="36">the time is in local daylight time</doc>
|
|
</member>
|
|
<member name="universal" value="2" c:identifier="G_TIME_TYPE_UNIVERSAL">
|
|
<doc xml:space="preserve" filename="gtimezone.h" line="37">the time is in UTC</doc>
|
|
</member>
|
|
</enumeration>
|
|
<record name="TimeVal" c:type="GTimeVal" deprecated="1" deprecated-version="2.62">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2084">Represents a precise time, with seconds and microseconds.
|
|
Similar to the struct timeval returned by the gettimeofday()
|
|
UNIX system call.
|
|
|
|
GLib is attempting to unify around the use of 64-bit integers to
|
|
represent microsecond-precision time. As such, this type will be
|
|
removed from a future version of GLib. A consequence of using `glong` for
|
|
`tv_sec` is that on 32-bit systems `GTimeVal` is subject to the year 2038
|
|
problem.</doc>
|
|
<doc-deprecated xml:space="preserve">Use #GDateTime or #guint64 instead.</doc-deprecated>
|
|
<source-position filename="gtypes.h" line="555"/>
|
|
<field name="tv_sec" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2086">seconds</doc>
|
|
<type name="glong" c:type="glong"/>
|
|
</field>
|
|
<field name="tv_usec" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2087">microseconds</doc>
|
|
<type name="glong" c:type="glong"/>
|
|
</field>
|
|
<method name="add" c:identifier="g_time_val_add" deprecated="1" deprecated-version="2.62">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33089">Adds the given number of microseconds to @time_. @microseconds can
|
|
also be negative to decrease the value of @time_.</doc>
|
|
<doc-deprecated xml:space="preserve">#GTimeVal is not year-2038-safe. Use `guint64` for
|
|
representing microseconds since the epoch, or use #GDateTime.</doc-deprecated>
|
|
<source-position filename="gtimer.h" line="67"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="time_" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33091">a #GTimeVal</doc>
|
|
<type name="TimeVal" c:type="GTimeVal*"/>
|
|
</instance-parameter>
|
|
<parameter name="microseconds" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33092">number of microseconds to add to @time</doc>
|
|
<type name="glong" c:type="glong"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="to_iso8601" c:identifier="g_time_val_to_iso8601" version="2.12" deprecated="1" deprecated-version="2.62">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33132">Converts @time_ into an RFC 3339 encoded string, relative to the
|
|
Coordinated Universal Time (UTC). This is one of the many formats
|
|
allowed by ISO 8601.
|
|
|
|
ISO 8601 allows a large number of date/time formats, with or without
|
|
punctuation and optional elements. The format returned by this function
|
|
is a complete date and time, with optional punctuation included, the
|
|
UTC time zone represented as "Z", and the @tv_usec part included if
|
|
and only if it is nonzero, i.e. either
|
|
"YYYY-MM-DDTHH:MM:SSZ" or "YYYY-MM-DDTHH:MM:SS.fffffZ".
|
|
|
|
This corresponds to the Internet date/time format defined by
|
|
[RFC 3339](https://www.ietf.org/rfc/rfc3339.txt),
|
|
and to either of the two most-precise formats defined by
|
|
the W3C Note
|
|
[Date and Time Formats](http://www.w3.org/TR/NOTE-datetime-19980827).
|
|
Both of these documents are profiles of ISO 8601.
|
|
|
|
Use g_date_time_format() or g_strdup_printf() if a different
|
|
variation of ISO 8601 format is required.
|
|
|
|
If @time_ represents a date which is too large to fit into a `struct tm`,
|
|
%NULL will be returned. This is platform dependent. Note also that since
|
|
`GTimeVal` stores the number of seconds as a `glong`, on 32-bit systems it
|
|
is subject to the year 2038 problem. Accordingly, since GLib 2.62, this
|
|
function has been deprecated. Equivalent functionality is available using:
|
|
|[
|
|
GDateTime *dt = g_date_time_new_from_unix_utc (time_val);
|
|
iso8601_string = g_date_time_format_iso8601 (dt);
|
|
g_date_time_unref (dt);
|
|
]|
|
|
|
|
The return value of g_time_val_to_iso8601() has been nullable since GLib
|
|
2.54; before then, GLib would crash under the same conditions.</doc>
|
|
<doc-deprecated xml:space="preserve">#GTimeVal is not year-2038-safe. Use
|
|
g_date_time_format_iso8601(dt) instead.</doc-deprecated>
|
|
<source-position filename="gtimer.h" line="73"/>
|
|
<return-value transfer-ownership="full" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33171">a newly allocated string containing an ISO 8601 date,
|
|
or %NULL if @time_ was too large</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="time_" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33134">a #GTimeVal</doc>
|
|
<type name="TimeVal" c:type="GTimeVal*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<function name="from_iso8601" c:identifier="g_time_val_from_iso8601" version="2.12" deprecated="1" deprecated-version="2.62">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33102">Converts a string containing an ISO 8601 encoded date and time
|
|
to a #GTimeVal and puts it into @time_.
|
|
|
|
@iso_date must include year, month, day, hours, minutes, and
|
|
seconds. It can optionally include fractions of a second and a time
|
|
zone indicator. (In the absence of any time zone indication, the
|
|
timestamp is assumed to be in local time.)
|
|
|
|
Any leading or trailing space in @iso_date is ignored.
|
|
|
|
This function was deprecated, along with #GTimeVal itself, in GLib 2.62.
|
|
Equivalent functionality is available using code like:
|
|
|[
|
|
GDateTime *dt = g_date_time_new_from_iso8601 (iso8601_string, NULL);
|
|
gint64 time_val = g_date_time_to_unix (dt);
|
|
g_date_time_unref (dt);
|
|
]|</doc>
|
|
<doc-deprecated xml:space="preserve">#GTimeVal is not year-2038-safe. Use
|
|
g_date_time_new_from_iso8601() instead.</doc-deprecated>
|
|
<source-position filename="gtimer.h" line="70"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33125">%TRUE if the conversion was successful.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="iso_date" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33104">an ISO 8601 encoded date string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="time_" direction="out" caller-allocates="1" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33105">a #GTimeVal</doc>
|
|
<type name="TimeVal" c:type="GTimeVal*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
</record>
|
|
<record name="TimeZone" c:type="GTimeZone" version="2.26" glib:type-name="GTimeZone" glib:get-type="g_time_zone_get_type" c:symbol-prefix="time_zone">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2103">#GTimeZone is an opaque structure whose members cannot be accessed
|
|
directly.</doc>
|
|
<source-position filename="gtimezone.h" line="31"/>
|
|
<constructor name="new" c:identifier="g_time_zone_new" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33303">Creates a #GTimeZone corresponding to @identifier.
|
|
|
|
@identifier can either be an RFC3339/ISO 8601 time offset or
|
|
something that would pass as a valid value for the `TZ` environment
|
|
variable (including %NULL).
|
|
|
|
In Windows, @identifier can also be the unlocalized name of a time
|
|
zone for standard time, for example "Pacific Standard Time".
|
|
|
|
Valid RFC3339 time offsets are `"Z"` (for UTC) or
|
|
`"±hh:mm"`. ISO 8601 additionally specifies
|
|
`"±hhmm"` and `"±hh"`. Offsets are
|
|
time values to be added to Coordinated Universal Time (UTC) to get
|
|
the local time.
|
|
|
|
In UNIX, the `TZ` environment variable typically corresponds
|
|
to the name of a file in the zoneinfo database, or string in
|
|
"std offset [dst [offset],start[/time],end[/time]]" (POSIX) format.
|
|
There are no spaces in the specification. The name of standard
|
|
and daylight savings time zone must be three or more alphabetic
|
|
characters. Offsets are time values to be added to local time to
|
|
get Coordinated Universal Time (UTC) and should be
|
|
`"[±]hh[[:]mm[:ss]]"`. Dates are either
|
|
`"Jn"` (Julian day with n between 1 and 365, leap
|
|
years not counted), `"n"` (zero-based Julian day
|
|
with n between 0 and 365) or `"Mm.w.d"` (day d
|
|
(0 <= d <= 6) of week w (1 <= w <= 5) of month m (1 <= m <= 12), day
|
|
0 is a Sunday). Times are in local wall clock time, the default is
|
|
02:00:00.
|
|
|
|
In Windows, the "tzn[+|–]hh[:mm[:ss]][dzn]" format is used, but also
|
|
accepts POSIX format. The Windows format uses US rules for all time
|
|
zones; daylight savings time is 60 minutes behind the standard time
|
|
with date and time of change taken from Pacific Standard Time.
|
|
Offsets are time values to be added to the local time to get
|
|
Coordinated Universal Time (UTC).
|
|
|
|
g_time_zone_new_local() calls this function with the value of the
|
|
`TZ` environment variable. This function itself is independent of
|
|
the value of `TZ`, but if @identifier is %NULL then `/etc/localtime`
|
|
will be consulted to discover the correct time zone on UNIX and the
|
|
registry will be consulted or GetTimeZoneInformation() will be used
|
|
to get the local time zone on Windows.
|
|
|
|
If intervals are not available, only time zone rules from `TZ`
|
|
environment variable or other means, then they will be computed
|
|
from year 1900 to 2037. If the maximum year for the rules is
|
|
available and it is greater than 2037, then it will followed
|
|
instead.
|
|
|
|
See
|
|
[RFC3339 §5.6](http://tools.ietf.org/html/rfc3339#section-5.6)
|
|
for a precise definition of valid RFC3339 time offsets
|
|
(the `time-offset` expansion) and ISO 8601 for the
|
|
full list of valid time offsets. See
|
|
[The GNU C Library manual](http://www.gnu.org/s/libc/manual/html_node/TZ-Variable.html)
|
|
for an explanation of the possible
|
|
values of the `TZ` environment variable. See
|
|
[Microsoft Time Zone Index Values](http://msdn.microsoft.com/en-us/library/ms912391%28v=winembedded.11%29.aspx)
|
|
for the list of time zones on Windows.
|
|
|
|
You should release the return value by calling g_time_zone_unref()
|
|
when you are done with it.</doc>
|
|
<source-position filename="gtimezone.h" line="56"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33371">the requested timezone</doc>
|
|
<type name="TimeZone" c:type="GTimeZone*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="identifier" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33305">a timezone identifier</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="new_local" c:identifier="g_time_zone_new_local" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33376">Creates a #GTimeZone corresponding to local time. The local time
|
|
zone may change between invocations to this function; for example,
|
|
if the system administrator changes it.
|
|
|
|
This is equivalent to calling g_time_zone_new() with the value of
|
|
the `TZ` environment variable (including the possibility of %NULL).
|
|
|
|
You should release the return value by calling g_time_zone_unref()
|
|
when you are done with it.</doc>
|
|
<source-position filename="gtimezone.h" line="60"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33389">the local timezone</doc>
|
|
<type name="TimeZone" c:type="GTimeZone*"/>
|
|
</return-value>
|
|
</constructor>
|
|
<constructor name="new_offset" c:identifier="g_time_zone_new_offset" version="2.58">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33394">Creates a #GTimeZone corresponding to the given constant offset from UTC,
|
|
in seconds.
|
|
|
|
This is equivalent to calling g_time_zone_new() with a string in the form
|
|
`[+|-]hh[:mm[:ss]]`.</doc>
|
|
<source-position filename="gtimezone.h" line="62"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33404">a timezone at the given offset from UTC</doc>
|
|
<type name="TimeZone" c:type="GTimeZone*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="seconds" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33396">offset to UTC, in seconds</doc>
|
|
<type name="gint32" c:type="gint32"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="new_utc" c:identifier="g_time_zone_new_utc" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33409">Creates a #GTimeZone corresponding to UTC.
|
|
|
|
This is equivalent to calling g_time_zone_new() with a value like
|
|
"Z", "UTC", "+00", etc.
|
|
|
|
You should release the return value by calling g_time_zone_unref()
|
|
when you are done with it.</doc>
|
|
<source-position filename="gtimezone.h" line="58"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33420">the universal timezone</doc>
|
|
<type name="TimeZone" c:type="GTimeZone*"/>
|
|
</return-value>
|
|
</constructor>
|
|
<method name="adjust_time" c:identifier="g_time_zone_adjust_time" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33179">Finds an interval within @tz that corresponds to the given @time_,
|
|
possibly adjusting @time_ if required to fit into an interval.
|
|
The meaning of @time_ depends on @type.
|
|
|
|
This function is similar to g_time_zone_find_interval(), with the
|
|
difference that it always succeeds (by making the adjustments
|
|
described below).
|
|
|
|
In any of the cases where g_time_zone_find_interval() succeeds then
|
|
this function returns the same value, without modifying @time_.
|
|
|
|
This function may, however, modify @time_ in order to deal with
|
|
non-existent times. If the non-existent local @time_ of 02:30 were
|
|
requested on March 14th 2010 in Toronto then this function would
|
|
adjust @time_ to be 03:00 and return the interval containing the
|
|
adjusted time.</doc>
|
|
<source-position filename="gtimezone.h" line="75"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33202">the interval containing @time_, never -1</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="tz" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33181">a #GTimeZone</doc>
|
|
<type name="TimeZone" c:type="GTimeZone*"/>
|
|
</instance-parameter>
|
|
<parameter name="type" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33182">the #GTimeType of @time_</doc>
|
|
<type name="TimeType" c:type="GTimeType"/>
|
|
</parameter>
|
|
<parameter name="time_" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33183">a pointer to a number of seconds since January 1, 1970</doc>
|
|
<type name="gint64" c:type="gint64*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="find_interval" c:identifier="g_time_zone_find_interval" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33207">Finds an the interval within @tz that corresponds to the given @time_.
|
|
The meaning of @time_ depends on @type.
|
|
|
|
If @type is %G_TIME_TYPE_UNIVERSAL then this function will always
|
|
succeed (since universal time is monotonic and continuous).
|
|
|
|
Otherwise @time_ is treated as local time. The distinction between
|
|
%G_TIME_TYPE_STANDARD and %G_TIME_TYPE_DAYLIGHT is ignored except in
|
|
the case that the given @time_ is ambiguous. In Toronto, for example,
|
|
01:30 on November 7th 2010 occurred twice (once inside of daylight
|
|
savings time and the next, an hour later, outside of daylight savings
|
|
time). In this case, the different value of @type would result in a
|
|
different interval being returned.
|
|
|
|
It is still possible for this function to fail. In Toronto, for
|
|
example, 02:00 on March 14th 2010 does not exist (due to the leap
|
|
forward to begin daylight savings time). -1 is returned in that
|
|
case.</doc>
|
|
<source-position filename="gtimezone.h" line="70"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33232">the interval containing @time_, or -1 in case of failure</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="tz" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33209">a #GTimeZone</doc>
|
|
<type name="TimeZone" c:type="GTimeZone*"/>
|
|
</instance-parameter>
|
|
<parameter name="type" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33210">the #GTimeType of @time_</doc>
|
|
<type name="TimeType" c:type="GTimeType"/>
|
|
</parameter>
|
|
<parameter name="time_" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33211">a number of seconds since January 1, 1970</doc>
|
|
<type name="gint64" c:type="gint64"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_abbreviation" c:identifier="g_time_zone_get_abbreviation" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33237">Determines the time zone abbreviation to be used during a particular
|
|
@interval of time in the time zone @tz.
|
|
|
|
For example, in Toronto this is currently "EST" during the winter
|
|
months and "EDT" during the summer months when daylight savings time
|
|
is in effect.</doc>
|
|
<source-position filename="gtimezone.h" line="80"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33249">the time zone abbreviation, which belongs to @tz</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="tz" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33239">a #GTimeZone</doc>
|
|
<type name="TimeZone" c:type="GTimeZone*"/>
|
|
</instance-parameter>
|
|
<parameter name="interval" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33240">an interval within the timezone</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_identifier" c:identifier="g_time_zone_get_identifier" version="2.58">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33254">Get the identifier of this #GTimeZone, as passed to g_time_zone_new().
|
|
If the identifier passed at construction time was not recognised, `UTC` will
|
|
be returned. If it was %NULL, the identifier of the local timezone at
|
|
construction time will be returned.
|
|
|
|
The identifier will be returned in the same format as provided at
|
|
construction time: if provided as a time offset, that will be returned by
|
|
this function.</doc>
|
|
<source-position filename="gtimezone.h" line="89"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33267">identifier for this timezone</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="tz" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33256">a #GTimeZone</doc>
|
|
<type name="TimeZone" c:type="GTimeZone*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_offset" c:identifier="g_time_zone_get_offset" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33272">Determines the offset to UTC in effect during a particular @interval
|
|
of time in the time zone @tz.
|
|
|
|
The offset is the number of seconds that you add to UTC time to
|
|
arrive at local time for @tz (ie: negative numbers for time zones
|
|
west of GMT, positive numbers for east).</doc>
|
|
<source-position filename="gtimezone.h" line="83"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33284">the number of seconds that should be added to UTC to get the
|
|
local time in @tz</doc>
|
|
<type name="gint32" c:type="gint32"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="tz" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33274">a #GTimeZone</doc>
|
|
<type name="TimeZone" c:type="GTimeZone*"/>
|
|
</instance-parameter>
|
|
<parameter name="interval" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33275">an interval within the timezone</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="is_dst" c:identifier="g_time_zone_is_dst" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33290">Determines if daylight savings time is in effect during a particular
|
|
@interval of time in the time zone @tz.</doc>
|
|
<source-position filename="gtimezone.h" line="86"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33298">%TRUE if daylight savings time is in effect</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="tz" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33292">a #GTimeZone</doc>
|
|
<type name="TimeZone" c:type="GTimeZone*"/>
|
|
</instance-parameter>
|
|
<parameter name="interval" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33293">an interval within the timezone</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="ref" c:identifier="g_time_zone_ref" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33425">Increases the reference count on @tz.</doc>
|
|
<source-position filename="gtimezone.h" line="65"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33431">a new reference to @tz.</doc>
|
|
<type name="TimeZone" c:type="GTimeZone*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="tz" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33427">a #GTimeZone</doc>
|
|
<type name="TimeZone" c:type="GTimeZone*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="unref" c:identifier="g_time_zone_unref" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33436">Decreases the reference count on @tz.</doc>
|
|
<source-position filename="gtimezone.h" line="67"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="tz" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33438">a #GTimeZone</doc>
|
|
<type name="TimeZone" c:type="GTimeZone*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
</record>
|
|
<record name="Timer" c:type="GTimer" disguised="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2113">Opaque datatype that records a start time.</doc>
|
|
<source-position filename="gtimer.h" line="40"/>
|
|
<method name="continue" c:identifier="g_timer_continue" version="2.4">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33645">Resumes a timer that has previously been stopped with
|
|
g_timer_stop(). g_timer_stop() must be called before using this
|
|
function.</doc>
|
|
<source-position filename="gtimer.h" line="55"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="timer" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33647">a #GTimer.</doc>
|
|
<type name="Timer" c:type="GTimer*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="destroy" c:identifier="g_timer_destroy">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33657">Destroys a timer, freeing associated resources.</doc>
|
|
<source-position filename="gtimer.h" line="47"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="timer" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33659">a #GTimer to destroy.</doc>
|
|
<type name="Timer" c:type="GTimer*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="elapsed" c:identifier="g_timer_elapsed">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33665">If @timer has been started but not stopped, obtains the time since
|
|
the timer was started. If @timer has been stopped, obtains the
|
|
elapsed time between the time it was started and the time it was
|
|
stopped. The return value is the number of seconds elapsed,
|
|
including any fractional part. The @microseconds out parameter is
|
|
essentially useless.</doc>
|
|
<source-position filename="gtimer.h" line="57"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33679">seconds elapsed as a floating point value, including any
|
|
fractional part.</doc>
|
|
<type name="gdouble" c:type="gdouble"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="timer" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33667">a #GTimer.</doc>
|
|
<type name="Timer" c:type="GTimer*"/>
|
|
</instance-parameter>
|
|
<parameter name="microseconds" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33668">return location for the fractional part of seconds
|
|
elapsed, in microseconds (that is, the total number
|
|
of microseconds elapsed, modulo 1000000), or %NULL</doc>
|
|
<type name="gulong" c:type="gulong*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="is_active" c:identifier="g_timer_is_active" version="2.62">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33684">Exposes whether the timer is currently active.</doc>
|
|
<source-position filename="gtimer.h" line="60"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33690">%TRUE if the timer is running, %FALSE otherwise</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="timer" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33686">a #GTimer.</doc>
|
|
<type name="Timer" c:type="GTimer*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="reset" c:identifier="g_timer_reset">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33705">This function is useless; it's fine to call g_timer_start() on an
|
|
already-started timer to reset the start time, so g_timer_reset()
|
|
serves no purpose.</doc>
|
|
<source-position filename="gtimer.h" line="53"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="timer" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33707">a #GTimer.</doc>
|
|
<type name="Timer" c:type="GTimer*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="start" c:identifier="g_timer_start">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33715">Marks a start time, so that future calls to g_timer_elapsed() will
|
|
report the time since g_timer_start() was called. g_timer_new()
|
|
automatically marks the start time, so no need to call
|
|
g_timer_start() immediately after creating the timer.</doc>
|
|
<source-position filename="gtimer.h" line="49"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="timer" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33717">a #GTimer.</doc>
|
|
<type name="Timer" c:type="GTimer*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="stop" c:identifier="g_timer_stop">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33726">Marks an end time, so calls to g_timer_elapsed() will return the
|
|
difference between this end time and the start time.</doc>
|
|
<source-position filename="gtimer.h" line="51"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="timer" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33728">a #GTimer.</doc>
|
|
<type name="Timer" c:type="GTimer*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<function name="new" c:identifier="g_timer_new" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33695">Creates a new timer, and starts timing (i.e. g_timer_start() is
|
|
implicitly called for you).</doc>
|
|
<source-position filename="gtimer.h" line="45"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33701">a new #GTimer.</doc>
|
|
<type name="Timer" c:type="GTimer*"/>
|
|
</return-value>
|
|
</function>
|
|
</record>
|
|
<enumeration name="TokenType" c:type="GTokenType">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2120">The possible types of token returned from each
|
|
g_scanner_get_next_token() call.</doc>
|
|
<source-position filename="gscanner.h" line="109"/>
|
|
<member name="eof" value="0" c:identifier="G_TOKEN_EOF">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2122">the end of the file</doc>
|
|
</member>
|
|
<member name="left_paren" value="40" c:identifier="G_TOKEN_LEFT_PAREN">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2123">a '(' character</doc>
|
|
</member>
|
|
<member name="right_paren" value="41" c:identifier="G_TOKEN_RIGHT_PAREN">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2127">a ')' character</doc>
|
|
</member>
|
|
<member name="left_curly" value="123" c:identifier="G_TOKEN_LEFT_CURLY">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2124">a '{' character</doc>
|
|
</member>
|
|
<member name="right_curly" value="125" c:identifier="G_TOKEN_RIGHT_CURLY">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2126">a '}' character</doc>
|
|
</member>
|
|
<member name="left_brace" value="91" c:identifier="G_TOKEN_LEFT_BRACE">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2125">a '[' character</doc>
|
|
</member>
|
|
<member name="right_brace" value="93" c:identifier="G_TOKEN_RIGHT_BRACE">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2128">a ']' character</doc>
|
|
</member>
|
|
<member name="equal_sign" value="61" c:identifier="G_TOKEN_EQUAL_SIGN">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2129">a '=' character</doc>
|
|
</member>
|
|
<member name="comma" value="44" c:identifier="G_TOKEN_COMMA">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2130">a ',' character</doc>
|
|
</member>
|
|
<member name="none" value="256" c:identifier="G_TOKEN_NONE">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2131">not a token</doc>
|
|
</member>
|
|
<member name="error" value="257" c:identifier="G_TOKEN_ERROR">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2132">an error occurred</doc>
|
|
</member>
|
|
<member name="char" value="258" c:identifier="G_TOKEN_CHAR">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2133">a character</doc>
|
|
</member>
|
|
<member name="binary" value="259" c:identifier="G_TOKEN_BINARY">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2134">a binary integer</doc>
|
|
</member>
|
|
<member name="octal" value="260" c:identifier="G_TOKEN_OCTAL">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2135">an octal integer</doc>
|
|
</member>
|
|
<member name="int" value="261" c:identifier="G_TOKEN_INT">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2136">an integer</doc>
|
|
</member>
|
|
<member name="hex" value="262" c:identifier="G_TOKEN_HEX">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2137">a hex integer</doc>
|
|
</member>
|
|
<member name="float" value="263" c:identifier="G_TOKEN_FLOAT">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2138">a floating point number</doc>
|
|
</member>
|
|
<member name="string" value="264" c:identifier="G_TOKEN_STRING">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2139">a string</doc>
|
|
</member>
|
|
<member name="symbol" value="265" c:identifier="G_TOKEN_SYMBOL">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2140">a symbol</doc>
|
|
</member>
|
|
<member name="identifier" value="266" c:identifier="G_TOKEN_IDENTIFIER">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2141">an identifier</doc>
|
|
</member>
|
|
<member name="identifier_null" value="267" c:identifier="G_TOKEN_IDENTIFIER_NULL">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2142">a null identifier</doc>
|
|
</member>
|
|
<member name="comment_single" value="268" c:identifier="G_TOKEN_COMMENT_SINGLE">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2143">one line comment</doc>
|
|
</member>
|
|
<member name="comment_multi" value="269" c:identifier="G_TOKEN_COMMENT_MULTI">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2144">multi line comment</doc>
|
|
</member>
|
|
</enumeration>
|
|
<union name="TokenValue" c:type="GTokenValue">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2151">A union holding the value of the token.</doc>
|
|
<source-position filename="gscanner.h" line="125"/>
|
|
<field name="v_symbol" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2153">token symbol value</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</field>
|
|
<field name="v_identifier" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2154">token identifier value</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</field>
|
|
<field name="v_binary" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2155">token binary integer value</doc>
|
|
<type name="gulong" c:type="gulong"/>
|
|
</field>
|
|
<field name="v_octal" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2156">octal integer value</doc>
|
|
<type name="gulong" c:type="gulong"/>
|
|
</field>
|
|
<field name="v_int" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2157">integer value</doc>
|
|
<type name="gulong" c:type="gulong"/>
|
|
</field>
|
|
<field name="v_int64" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2158">64-bit integer value</doc>
|
|
<type name="guint64" c:type="guint64"/>
|
|
</field>
|
|
<field name="v_float" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2159">floating point value</doc>
|
|
<type name="gdouble" c:type="gdouble"/>
|
|
</field>
|
|
<field name="v_hex" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2160">hex integer value</doc>
|
|
<type name="gulong" c:type="gulong"/>
|
|
</field>
|
|
<field name="v_string" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2161">string value</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</field>
|
|
<field name="v_comment" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2162">comment value</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</field>
|
|
<field name="v_char" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2163">character value</doc>
|
|
<type name="guint8" c:type="guchar"/>
|
|
</field>
|
|
<field name="v_error" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2164">error value</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</field>
|
|
</union>
|
|
<callback name="TranslateFunc" c:type="GTranslateFunc">
|
|
<doc xml:space="preserve" filename="gtypes.h" line="145">The type of functions which are used to translate user-visible
|
|
strings, for <option>--help</option> output.</doc>
|
|
<source-position filename="gtypes.h" line="157"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="gtypes.h" line="154">a translation of the string for the current locale.
|
|
The returned string is owned by GLib and must not be freed.</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="str" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="gtypes.h" line="147">the untranslated string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="gtypes.h" line="148">user data specified when installing the function, e.g.
|
|
in g_option_group_set_translate_func()</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
<record name="TrashStack" c:type="GTrashStack" deprecated="1" deprecated-version="2.48">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2170">Each piece of memory that is pushed onto the stack
|
|
is cast to a GTrashStack*.</doc>
|
|
<doc-deprecated xml:space="preserve">#GTrashStack is deprecated without replacement</doc-deprecated>
|
|
<source-position filename="gtrashstack.h" line="42"/>
|
|
<field name="next" writable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2172">pointer to the previous element of the stack,
|
|
gets stored in the first `sizeof (gpointer)`
|
|
bytes of the element</doc>
|
|
<type name="TrashStack" c:type="GTrashStack*"/>
|
|
</field>
|
|
<function name="height" c:identifier="g_trash_stack_height" deprecated="1" deprecated-version="2.48">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33735">Returns the height of a #GTrashStack.
|
|
|
|
Note that execution of this function is of O(N) complexity
|
|
where N denotes the number of items on the stack.</doc>
|
|
<doc-deprecated xml:space="preserve">#GTrashStack is deprecated without replacement</doc-deprecated>
|
|
<source-position filename="gtrashstack.h" line="52"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33744">the height of the stack</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="stack_p" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33737">a #GTrashStack</doc>
|
|
<type name="TrashStack" c:type="GTrashStack**"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="peek" c:identifier="g_trash_stack_peek" deprecated="1" deprecated-version="2.48">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33749">Returns the element at the top of a #GTrashStack
|
|
which may be %NULL.</doc>
|
|
<doc-deprecated xml:space="preserve">#GTrashStack is deprecated without replacement</doc-deprecated>
|
|
<source-position filename="gtrashstack.h" line="50"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33756">the element at the top of the stack</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="stack_p" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33751">a #GTrashStack</doc>
|
|
<type name="TrashStack" c:type="GTrashStack**"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="pop" c:identifier="g_trash_stack_pop" deprecated="1" deprecated-version="2.48">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33761">Pops a piece of memory off a #GTrashStack.</doc>
|
|
<doc-deprecated xml:space="preserve">#GTrashStack is deprecated without replacement</doc-deprecated>
|
|
<source-position filename="gtrashstack.h" line="48"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33767">the element at the top of the stack</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="stack_p" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33763">a #GTrashStack</doc>
|
|
<type name="TrashStack" c:type="GTrashStack**"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="push" c:identifier="g_trash_stack_push" deprecated="1" deprecated-version="2.48">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33772">Pushes a piece of memory onto a #GTrashStack.</doc>
|
|
<doc-deprecated xml:space="preserve">#GTrashStack is deprecated without replacement</doc-deprecated>
|
|
<source-position filename="gtrashstack.h" line="45"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="stack_p" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33774">a #GTrashStack</doc>
|
|
<type name="TrashStack" c:type="GTrashStack**"/>
|
|
</parameter>
|
|
<parameter name="data_p" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33775">the piece of memory to push on the stack</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
</record>
|
|
<bitfield name="TraverseFlags" c:type="GTraverseFlags">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2183">Specifies which nodes are visited during several of the tree
|
|
functions, including g_node_traverse() and g_node_find().</doc>
|
|
<source-position filename="gnode.h" line="47"/>
|
|
<member name="leaves" value="1" c:identifier="G_TRAVERSE_LEAVES">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2185">only leaf nodes should be visited. This name has
|
|
been introduced in 2.6, for older version use
|
|
%G_TRAVERSE_LEAFS.</doc>
|
|
</member>
|
|
<member name="non_leaves" value="2" c:identifier="G_TRAVERSE_NON_LEAVES">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2188">only non-leaf nodes should be visited. This
|
|
name has been introduced in 2.6, for older
|
|
version use %G_TRAVERSE_NON_LEAFS.</doc>
|
|
</member>
|
|
<member name="all" value="3" c:identifier="G_TRAVERSE_ALL">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2191">all nodes should be visited.</doc>
|
|
</member>
|
|
<member name="mask" value="3" c:identifier="G_TRAVERSE_MASK">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2192">a mask of all traverse flags.</doc>
|
|
</member>
|
|
<member name="leafs" value="1" c:identifier="G_TRAVERSE_LEAFS">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2193">identical to %G_TRAVERSE_LEAVES.</doc>
|
|
</member>
|
|
<member name="non_leafs" value="2" c:identifier="G_TRAVERSE_NON_LEAFS">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2194">identical to %G_TRAVERSE_NON_LEAVES.</doc>
|
|
</member>
|
|
</bitfield>
|
|
<callback name="TraverseFunc" c:type="GTraverseFunc">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2201">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
|
|
parameter passed to g_tree_traverse(). If the function returns
|
|
%TRUE, the traversal is stopped.</doc>
|
|
<source-position filename="gtree.h" line="38"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2212">%TRUE to stop the traversal</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="key" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2203">a key of a #GTree node</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="value" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2204">the value corresponding to the key</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2205">user data passed to g_tree_traverse()</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
<enumeration name="TraverseType" c:type="GTraverseType">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2216">Specifies the type of traveral performed by g_tree_traverse(),
|
|
g_node_traverse() and g_node_find(). The different orders are
|
|
illustrated here:
|
|
- In order: A, B, C, D, E, F, G, H, I
|
|
![](Sorted_binary_tree_inorder.svg)
|
|
- Pre order: F, B, A, D, C, E, G, I, H
|
|
![](Sorted_binary_tree_preorder.svg)
|
|
- Post order: A, C, E, D, B, H, I, G, F
|
|
![](Sorted_binary_tree_postorder.svg)
|
|
- Level order: F, B, G, A, D, I, C, E, H
|
|
![](Sorted_binary_tree_breadth-first_traversal.svg)</doc>
|
|
<source-position filename="gnode.h" line="56"/>
|
|
<member name="in_order" value="0" c:identifier="G_IN_ORDER">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2218">vists a node's left child first, then the node itself,
|
|
then its right child. This is the one to use if you
|
|
want the output sorted according to the compare
|
|
function.</doc>
|
|
</member>
|
|
<member name="pre_order" value="1" c:identifier="G_PRE_ORDER">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2222">visits a node, then its children.</doc>
|
|
</member>
|
|
<member name="post_order" value="2" c:identifier="G_POST_ORDER">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2223">visits the node's children, then the node itself.</doc>
|
|
</member>
|
|
<member name="level_order" value="3" c:identifier="G_LEVEL_ORDER">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2224">is not implemented for
|
|
[balanced binary trees][glib-Balanced-Binary-Trees].
|
|
For [n-ary trees][glib-N-ary-Trees], it
|
|
vists the root node first, then its children, then
|
|
its grandchildren, and so on. Note that this is less
|
|
efficient than the other orders.</doc>
|
|
</member>
|
|
</enumeration>
|
|
<record name="Tree" c:type="GTree" disguised="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2245">The GTree struct is an opaque data structure representing a
|
|
[balanced binary tree][glib-Balanced-Binary-Trees]. It should be
|
|
accessed only by using the following functions.</doc>
|
|
<source-position filename="gtree.h" line="36"/>
|
|
<method name="destroy" c:identifier="g_tree_destroy">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33783">Removes all keys and values from the #GTree and decreases its
|
|
reference count by one. If keys and/or values are dynamically
|
|
allocated, you should either free them first or create the #GTree
|
|
using g_tree_new_full(). In the latter case the destroy functions
|
|
you supplied will be called on all keys and values before destroying
|
|
the #GTree.</doc>
|
|
<source-position filename="gtree.h" line="59"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="tree" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33785">a #GTree</doc>
|
|
<type name="Tree" c:type="GTree*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="foreach" c:identifier="g_tree_foreach" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33796">Calls the given function for each of the key/value pairs in the #GTree.
|
|
The function is passed the key and value of each pair, and the given
|
|
@data parameter. The tree is traversed in sorted order.
|
|
|
|
The tree may not be modified while iterating over it (you can't
|
|
add/remove items). To remove all items matching a predicate, you need
|
|
to add each item to a list in your #GTraverseFunc as you walk over
|
|
the tree, then walk the list and remove each item.</doc>
|
|
<source-position filename="gtree.h" line="83"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="tree" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33798">a #GTree</doc>
|
|
<type name="Tree" c:type="GTree*"/>
|
|
</instance-parameter>
|
|
<parameter name="func" transfer-ownership="none" closure="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33799">the function to call for each node visited.
|
|
If this function returns %TRUE, the traversal is stopped.</doc>
|
|
<type name="TraverseFunc" c:type="GTraverseFunc"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33801">user data to pass to the function</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="height" c:identifier="g_tree_height">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33814">Gets the height of a #GTree.
|
|
|
|
If the #GTree contains no nodes, the height is 0.
|
|
If the #GTree contains only one root node the height is 1.
|
|
If the root node has children the height is 2, etc.</doc>
|
|
<source-position filename="gtree.h" line="98"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33824">the height of @tree</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="tree" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33816">a #GTree</doc>
|
|
<type name="Tree" c:type="GTree*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="insert" c:identifier="g_tree_insert">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33828">Inserts a key/value pair into a #GTree.
|
|
|
|
If the given key already exists in the #GTree its corresponding value
|
|
is set to the new value. If you supplied a @value_destroy_func when
|
|
creating the #GTree, the old value is freed using that function. If
|
|
you supplied a @key_destroy_func when creating the #GTree, the passed
|
|
key is freed using that function.
|
|
|
|
The tree is automatically 'balanced' as new key/value pairs are added,
|
|
so that the distance from the root to every leaf is as small as possible.</doc>
|
|
<source-position filename="gtree.h" line="61"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="tree" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33830">a #GTree</doc>
|
|
<type name="Tree" c:type="GTree*"/>
|
|
</instance-parameter>
|
|
<parameter name="key" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33831">the key to insert</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="value" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33832">the value corresponding to the key</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="lookup" c:identifier="g_tree_lookup">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33847">Gets the value corresponding to the given key. Since a #GTree is
|
|
automatically balanced as key/value pairs are added, key lookup
|
|
is O(log n) (where n is the number of key/value pairs in the tree).</doc>
|
|
<source-position filename="gtree.h" line="75"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33856">the value corresponding to the key, or %NULL
|
|
if the key was not found</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="tree" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33849">a #GTree</doc>
|
|
<type name="Tree" c:type="GTree*"/>
|
|
</instance-parameter>
|
|
<parameter name="key" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33850">the key to look up</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="lookup_extended" c:identifier="g_tree_lookup_extended">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33861">Looks up a key in the #GTree, returning the original key and the
|
|
associated value. This is useful if you need to free the memory
|
|
allocated for the original key, for example before calling
|
|
g_tree_remove().</doc>
|
|
<source-position filename="gtree.h" line="78"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33873">%TRUE if the key was found in the #GTree</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="tree" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33863">a #GTree</doc>
|
|
<type name="Tree" c:type="GTree*"/>
|
|
</instance-parameter>
|
|
<parameter name="lookup_key" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33864">the key to look up</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
<parameter name="orig_key" direction="out" caller-allocates="0" transfer-ownership="full" nullable="1" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33865">returns the original key</doc>
|
|
<type name="gpointer" c:type="gpointer*"/>
|
|
</parameter>
|
|
<parameter name="value" direction="out" caller-allocates="0" transfer-ownership="full" nullable="1" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33866">returns the value associated with the key</doc>
|
|
<type name="gpointer" c:type="gpointer*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="nnodes" c:identifier="g_tree_nnodes">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33922">Gets the number of nodes in a #GTree.</doc>
|
|
<source-position filename="gtree.h" line="100"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33928">the number of nodes in @tree</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="tree" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33924">a #GTree</doc>
|
|
<type name="Tree" c:type="GTree*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="ref" c:identifier="g_tree_ref" version="2.22" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33932">Increments the reference count of @tree by one.
|
|
|
|
It is safe to call this function from any thread.</doc>
|
|
<source-position filename="gtree.h" line="55"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33940">the passed in #GTree</doc>
|
|
<type name="Tree" c:type="GTree*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="tree" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33934">a #GTree</doc>
|
|
<type name="Tree" c:type="GTree*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="remove" c:identifier="g_tree_remove">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33945">Removes a key/value pair from a #GTree.
|
|
|
|
If the #GTree was created using g_tree_new_full(), the key and value
|
|
are freed using the supplied destroy functions, otherwise you have to
|
|
make sure that any dynamically allocated values are freed yourself.
|
|
If the key does not exist in the #GTree, the function does nothing.</doc>
|
|
<source-position filename="gtree.h" line="69"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33957">%TRUE if the key was found (prior to 2.8, this function
|
|
returned nothing)</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="tree" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33947">a #GTree</doc>
|
|
<type name="Tree" c:type="GTree*"/>
|
|
</instance-parameter>
|
|
<parameter name="key" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33948">the key to remove</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="replace" c:identifier="g_tree_replace">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33962">Inserts a new key and value into a #GTree similar to g_tree_insert().
|
|
The difference is that if the key already exists in the #GTree, it gets
|
|
replaced by the new key. If you supplied a @value_destroy_func when
|
|
creating the #GTree, the old value is freed using that function. If you
|
|
supplied a @key_destroy_func when creating the #GTree, the old key is
|
|
freed using that function.
|
|
|
|
The tree is automatically 'balanced' as new key/value pairs are added,
|
|
so that the distance from the root to every leaf is as small as possible.</doc>
|
|
<source-position filename="gtree.h" line="65"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="tree" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33964">a #GTree</doc>
|
|
<type name="Tree" c:type="GTree*"/>
|
|
</instance-parameter>
|
|
<parameter name="key" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33965">the key to insert</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="value" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33966">the value corresponding to the key</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="search" c:identifier="g_tree_search" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33980">Searches a #GTree using @search_func.
|
|
|
|
The @search_func is called with a pointer to the key of a key/value
|
|
pair in the tree, and the passed in @user_data. If @search_func returns
|
|
0 for a key/value pair, then the corresponding value is returned as
|
|
the result of g_tree_search(). If @search_func returns -1, searching
|
|
will proceed among the key/value pairs that have a smaller key; if
|
|
@search_func returns 1, searching will proceed among the key/value
|
|
pairs that have a larger key.</doc>
|
|
<source-position filename="gtree.h" line="94"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33996">the value corresponding to the found key, or %NULL
|
|
if the key was not found</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="tree" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33982">a #GTree</doc>
|
|
<type name="Tree" c:type="GTree*"/>
|
|
</instance-parameter>
|
|
<parameter name="search_func" transfer-ownership="none" closure="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33983">a function used to search the #GTree</doc>
|
|
<type name="CompareFunc" c:type="GCompareFunc"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33984">the data passed as the second argument to @search_func</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="steal" c:identifier="g_tree_steal">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34001">Removes a key and its associated value from a #GTree without calling
|
|
the key and value destroy functions.
|
|
|
|
If the key does not exist in the #GTree, the function does nothing.</doc>
|
|
<source-position filename="gtree.h" line="72"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34011">%TRUE if the key was found (prior to 2.8, this function
|
|
returned nothing)</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="tree" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34003">a #GTree</doc>
|
|
<type name="Tree" c:type="GTree*"/>
|
|
</instance-parameter>
|
|
<parameter name="key" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34004">the key to remove</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="traverse" c:identifier="g_tree_traverse" introspectable="0" deprecated="1" deprecated-version="2.2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34016">Calls the given function for each node in the #GTree.</doc>
|
|
<doc-deprecated xml:space="preserve">The order of a balanced tree is somewhat arbitrary.
|
|
If you just want to visit all nodes in sorted order, use
|
|
g_tree_foreach() instead. If you really need to visit nodes in
|
|
a different order, consider using an [n-ary tree][glib-N-ary-Trees].</doc-deprecated>
|
|
<source-position filename="gtree.h" line="88"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="tree" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34018">a #GTree</doc>
|
|
<type name="Tree" c:type="GTree*"/>
|
|
</instance-parameter>
|
|
<parameter name="traverse_func" transfer-ownership="none" closure="2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34019">the function to call for each node visited. If this
|
|
function returns %TRUE, the traversal is stopped.</doc>
|
|
<type name="TraverseFunc" c:type="GTraverseFunc"/>
|
|
</parameter>
|
|
<parameter name="traverse_type" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34021">the order in which nodes are visited, one of %G_IN_ORDER,
|
|
%G_PRE_ORDER and %G_POST_ORDER</doc>
|
|
<type name="TraverseType" c:type="GTraverseType"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34023">user data to pass to the function</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="unref" c:identifier="g_tree_unref" version="2.22">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34034">Decrements the reference count of @tree by one.
|
|
If the reference count drops to 0, all keys and values will
|
|
be destroyed (if destroy functions were specified) and all
|
|
memory allocated by @tree will be released.
|
|
|
|
It is safe to call this function from any thread.</doc>
|
|
<source-position filename="gtree.h" line="57"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="tree" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34036">a #GTree</doc>
|
|
<type name="Tree" c:type="GTree*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<function name="new" c:identifier="g_tree_new" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33877">Creates a new #GTree.</doc>
|
|
<source-position filename="gtree.h" line="45"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33887">a newly allocated #GTree</doc>
|
|
<type name="Tree" c:type="GTree*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="key_compare_func" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33879">the function used to order the nodes in the #GTree.
|
|
It should return values similar to the standard strcmp() function -
|
|
0 if the two arguments are equal, a negative value if the first argument
|
|
comes before the second, or a positive value if the first argument comes
|
|
after the second.</doc>
|
|
<type name="CompareFunc" c:type="GCompareFunc"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="new_full" c:identifier="g_tree_new_full" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33891">Creates a new #GTree like g_tree_new() and allows to specify functions
|
|
to free the memory allocated for the key and value that get called when
|
|
removing the entry from the #GTree.</doc>
|
|
<source-position filename="gtree.h" line="50"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33906">a newly allocated #GTree</doc>
|
|
<type name="Tree" c:type="GTree*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="key_compare_func" transfer-ownership="none" scope="notified" closure="1" destroy="3">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33893">qsort()-style comparison function</doc>
|
|
<type name="CompareDataFunc" c:type="GCompareDataFunc"/>
|
|
</parameter>
|
|
<parameter name="key_compare_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33894">data to pass to comparison function</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="key_destroy_func" transfer-ownership="none" scope="async">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33895">a function to free the memory allocated for the key
|
|
used when removing the entry from the #GTree or %NULL if you don't
|
|
want to supply such a function</doc>
|
|
<type name="DestroyNotify" c:type="GDestroyNotify"/>
|
|
</parameter>
|
|
<parameter name="value_destroy_func" transfer-ownership="none" scope="async">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33898">a function to free the memory allocated for the
|
|
value used when removing the entry from the #GTree or %NULL if you
|
|
don't want to supply such a function</doc>
|
|
<type name="DestroyNotify" c:type="GDestroyNotify"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="new_with_data" c:identifier="g_tree_new_with_data" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33910">Creates a new #GTree with a comparison function that accepts user data.
|
|
See g_tree_new() for more details.</doc>
|
|
<source-position filename="gtree.h" line="47"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33918">a newly allocated #GTree</doc>
|
|
<type name="Tree" c:type="GTree*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="key_compare_func" transfer-ownership="none" closure="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33912">qsort()-style comparison function</doc>
|
|
<type name="CompareDataFunc" c:type="GCompareDataFunc"/>
|
|
</parameter>
|
|
<parameter name="key_compare_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33913">data to pass to comparison function</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
</record>
|
|
<function-macro name="UNAVAILABLE" c:identifier="G_UNAVAILABLE" version="2.32" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="4503">This macro can be used to mark a function declaration as unavailable.
|
|
It must be placed before the function declaration. Use of a function
|
|
that has been annotated with this macros will produce a compiler warning.</doc>
|
|
<source-position filename="gmacros.h" line="938"/>
|
|
<parameters>
|
|
<parameter name="maj">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="4505">the major version that introduced the symbol</doc>
|
|
</parameter>
|
|
<parameter name="min">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="4506">the minor version that introduced the symbol</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="UNAVAILABLE_ENUMERATOR" c:identifier="GLIB_UNAVAILABLE_ENUMERATOR" introspectable="0">
|
|
<source-position filename="gmacros.h" line="983"/>
|
|
<parameters>
|
|
<parameter name="maj">
|
|
</parameter>
|
|
<parameter name="min">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="UNAVAILABLE_MACRO" c:identifier="GLIB_UNAVAILABLE_MACRO" introspectable="0">
|
|
<source-position filename="gmacros.h" line="971"/>
|
|
<parameters>
|
|
<parameter name="maj">
|
|
</parameter>
|
|
<parameter name="min">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="UNAVAILABLE_TYPE" c:identifier="GLIB_UNAVAILABLE_TYPE" introspectable="0">
|
|
<source-position filename="gmacros.h" line="995"/>
|
|
<parameters>
|
|
<parameter name="maj">
|
|
</parameter>
|
|
<parameter name="min">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<constant name="UNICHAR_MAX_DECOMPOSITION_LENGTH" value="18" c:type="G_UNICHAR_MAX_DECOMPOSITION_LENGTH" version="2.32">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="719">The maximum length (in codepoints) of a compatibility or canonical
|
|
decomposition of a single Unicode character.
|
|
|
|
This is as defined by Unicode 6.1.</doc>
|
|
<source-position filename="gunicode.h" line="729"/>
|
|
<type name="gint" c:type="gint"/>
|
|
</constant>
|
|
<function-macro name="UNLIKELY" c:identifier="G_UNLIKELY" version="2.2" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="4516">Hints the compiler that the expression is unlikely to evaluate to
|
|
a true value. The compiler may use this information for optimizations.
|
|
|
|
|[<!-- language="C" -->
|
|
if (G_UNLIKELY (random () == 1))
|
|
g_print ("a random one");
|
|
]|</doc>
|
|
<source-position filename="gmacros.h" line="915"/>
|
|
<parameters>
|
|
<parameter name="expr">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="4518">the expression</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="UNLOCK" c:identifier="G_UNLOCK" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="4533">Works like g_mutex_unlock(), but for a lock defined with
|
|
#G_LOCK_DEFINE.</doc>
|
|
<source-position filename="gthread.h" line="122"/>
|
|
<parameters>
|
|
<parameter name="name">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="4535">the name of the lock</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<constant name="URI_RESERVED_CHARS_GENERIC_DELIMITERS" value=":/?#[]@" c:type="G_URI_RESERVED_CHARS_GENERIC_DELIMITERS">
|
|
<doc xml:space="preserve" filename="gurifuncs.h" line="32">Generic delimiters characters as defined in RFC 3986. Includes ":/?#[]@".</doc>
|
|
<source-position filename="gurifuncs.h" line="37"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<constant name="URI_RESERVED_CHARS_SUBCOMPONENT_DELIMITERS" value="!$&'()*+,;=" c:type="G_URI_RESERVED_CHARS_SUBCOMPONENT_DELIMITERS">
|
|
<doc xml:space="preserve" filename="gurifuncs.h" line="39">Subcomponent delimiter characters as defined in RFC 3986. Includes "!$&'()*+,;=".</doc>
|
|
<source-position filename="gurifuncs.h" line="44"/>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</constant>
|
|
<constant name="USEC_PER_SEC" value="1000000" c:type="G_USEC_PER_SEC">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="4542">Number of microseconds in one second (1 million).
|
|
This macro is provided for code readability.</doc>
|
|
<source-position filename="gtimer.h" line="42"/>
|
|
<type name="gint" c:type="gint"/>
|
|
</constant>
|
|
<enumeration name="UnicodeBreakType" c:type="GUnicodeBreakType">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="159">These are the possible line break classifications.
|
|
|
|
Since new unicode versions may add new types here, applications should be ready
|
|
to handle unknown values. They may be regarded as %G_UNICODE_BREAK_UNKNOWN.
|
|
|
|
See [Unicode Line Breaking Algorithm](http://www.unicode.org/unicode/reports/tr14/).</doc>
|
|
<source-position filename="gunicode.h" line="257"/>
|
|
<member name="mandatory" value="0" c:identifier="G_UNICODE_BREAK_MANDATORY">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="161">Mandatory Break (BK)</doc>
|
|
</member>
|
|
<member name="carriage_return" value="1" c:identifier="G_UNICODE_BREAK_CARRIAGE_RETURN">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="162">Carriage Return (CR)</doc>
|
|
</member>
|
|
<member name="line_feed" value="2" c:identifier="G_UNICODE_BREAK_LINE_FEED">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="163">Line Feed (LF)</doc>
|
|
</member>
|
|
<member name="combining_mark" value="3" c:identifier="G_UNICODE_BREAK_COMBINING_MARK">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="164">Attached Characters and Combining Marks (CM)</doc>
|
|
</member>
|
|
<member name="surrogate" value="4" c:identifier="G_UNICODE_BREAK_SURROGATE">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="165">Surrogates (SG)</doc>
|
|
</member>
|
|
<member name="zero_width_space" value="5" c:identifier="G_UNICODE_BREAK_ZERO_WIDTH_SPACE">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="166">Zero Width Space (ZW)</doc>
|
|
</member>
|
|
<member name="inseparable" value="6" c:identifier="G_UNICODE_BREAK_INSEPARABLE">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="167">Inseparable (IN)</doc>
|
|
</member>
|
|
<member name="non_breaking_glue" value="7" c:identifier="G_UNICODE_BREAK_NON_BREAKING_GLUE">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="168">Non-breaking ("Glue") (GL)</doc>
|
|
</member>
|
|
<member name="contingent" value="8" c:identifier="G_UNICODE_BREAK_CONTINGENT">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="169">Contingent Break Opportunity (CB)</doc>
|
|
</member>
|
|
<member name="space" value="9" c:identifier="G_UNICODE_BREAK_SPACE">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="170">Space (SP)</doc>
|
|
</member>
|
|
<member name="after" value="10" c:identifier="G_UNICODE_BREAK_AFTER">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="171">Break Opportunity After (BA)</doc>
|
|
</member>
|
|
<member name="before" value="11" c:identifier="G_UNICODE_BREAK_BEFORE">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="172">Break Opportunity Before (BB)</doc>
|
|
</member>
|
|
<member name="before_and_after" value="12" c:identifier="G_UNICODE_BREAK_BEFORE_AND_AFTER">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="173">Break Opportunity Before and After (B2)</doc>
|
|
</member>
|
|
<member name="hyphen" value="13" c:identifier="G_UNICODE_BREAK_HYPHEN">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="174">Hyphen (HY)</doc>
|
|
</member>
|
|
<member name="non_starter" value="14" c:identifier="G_UNICODE_BREAK_NON_STARTER">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="175">Nonstarter (NS)</doc>
|
|
</member>
|
|
<member name="open_punctuation" value="15" c:identifier="G_UNICODE_BREAK_OPEN_PUNCTUATION">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="176">Opening Punctuation (OP)</doc>
|
|
</member>
|
|
<member name="close_punctuation" value="16" c:identifier="G_UNICODE_BREAK_CLOSE_PUNCTUATION">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="177">Closing Punctuation (CL)</doc>
|
|
</member>
|
|
<member name="quotation" value="17" c:identifier="G_UNICODE_BREAK_QUOTATION">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="178">Ambiguous Quotation (QU)</doc>
|
|
</member>
|
|
<member name="exclamation" value="18" c:identifier="G_UNICODE_BREAK_EXCLAMATION">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="179">Exclamation/Interrogation (EX)</doc>
|
|
</member>
|
|
<member name="ideographic" value="19" c:identifier="G_UNICODE_BREAK_IDEOGRAPHIC">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="180">Ideographic (ID)</doc>
|
|
</member>
|
|
<member name="numeric" value="20" c:identifier="G_UNICODE_BREAK_NUMERIC">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="181">Numeric (NU)</doc>
|
|
</member>
|
|
<member name="infix_separator" value="21" c:identifier="G_UNICODE_BREAK_INFIX_SEPARATOR">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="182">Infix Separator (Numeric) (IS)</doc>
|
|
</member>
|
|
<member name="symbol" value="22" c:identifier="G_UNICODE_BREAK_SYMBOL">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="183">Symbols Allowing Break After (SY)</doc>
|
|
</member>
|
|
<member name="alphabetic" value="23" c:identifier="G_UNICODE_BREAK_ALPHABETIC">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="184">Ordinary Alphabetic and Symbol Characters (AL)</doc>
|
|
</member>
|
|
<member name="prefix" value="24" c:identifier="G_UNICODE_BREAK_PREFIX">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="185">Prefix (Numeric) (PR)</doc>
|
|
</member>
|
|
<member name="postfix" value="25" c:identifier="G_UNICODE_BREAK_POSTFIX">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="186">Postfix (Numeric) (PO)</doc>
|
|
</member>
|
|
<member name="complex_context" value="26" c:identifier="G_UNICODE_BREAK_COMPLEX_CONTEXT">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="187">Complex Content Dependent (South East Asian) (SA)</doc>
|
|
</member>
|
|
<member name="ambiguous" value="27" c:identifier="G_UNICODE_BREAK_AMBIGUOUS">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="188">Ambiguous (Alphabetic or Ideographic) (AI)</doc>
|
|
</member>
|
|
<member name="unknown" value="28" c:identifier="G_UNICODE_BREAK_UNKNOWN">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="189">Unknown (XX)</doc>
|
|
</member>
|
|
<member name="next_line" value="29" c:identifier="G_UNICODE_BREAK_NEXT_LINE">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="190">Next Line (NL)</doc>
|
|
</member>
|
|
<member name="word_joiner" value="30" c:identifier="G_UNICODE_BREAK_WORD_JOINER">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="191">Word Joiner (WJ)</doc>
|
|
</member>
|
|
<member name="hangul_l_jamo" value="31" c:identifier="G_UNICODE_BREAK_HANGUL_L_JAMO">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="192">Hangul L Jamo (JL)</doc>
|
|
</member>
|
|
<member name="hangul_v_jamo" value="32" c:identifier="G_UNICODE_BREAK_HANGUL_V_JAMO">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="193">Hangul V Jamo (JV)</doc>
|
|
</member>
|
|
<member name="hangul_t_jamo" value="33" c:identifier="G_UNICODE_BREAK_HANGUL_T_JAMO">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="194">Hangul T Jamo (JT)</doc>
|
|
</member>
|
|
<member name="hangul_lv_syllable" value="34" c:identifier="G_UNICODE_BREAK_HANGUL_LV_SYLLABLE">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="195">Hangul LV Syllable (H2)</doc>
|
|
</member>
|
|
<member name="hangul_lvt_syllable" value="35" c:identifier="G_UNICODE_BREAK_HANGUL_LVT_SYLLABLE">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="196">Hangul LVT Syllable (H3)</doc>
|
|
</member>
|
|
<member name="close_paranthesis" value="36" c:identifier="G_UNICODE_BREAK_CLOSE_PARANTHESIS">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="197">Closing Parenthesis (CP). Since 2.28</doc>
|
|
</member>
|
|
<member name="conditional_japanese_starter" value="37" c:identifier="G_UNICODE_BREAK_CONDITIONAL_JAPANESE_STARTER">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="198">Conditional Japanese Starter (CJ). Since: 2.32</doc>
|
|
</member>
|
|
<member name="hebrew_letter" value="38" c:identifier="G_UNICODE_BREAK_HEBREW_LETTER">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="199">Hebrew Letter (HL). Since: 2.32</doc>
|
|
</member>
|
|
<member name="regional_indicator" value="39" c:identifier="G_UNICODE_BREAK_REGIONAL_INDICATOR">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="200">Regional Indicator (RI). Since: 2.36</doc>
|
|
</member>
|
|
<member name="emoji_base" value="40" c:identifier="G_UNICODE_BREAK_EMOJI_BASE">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="201">Emoji Base (EB). Since: 2.50</doc>
|
|
</member>
|
|
<member name="emoji_modifier" value="41" c:identifier="G_UNICODE_BREAK_EMOJI_MODIFIER">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="202">Emoji Modifier (EM). Since: 2.50</doc>
|
|
</member>
|
|
<member name="zero_width_joiner" value="42" c:identifier="G_UNICODE_BREAK_ZERO_WIDTH_JOINER">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="203">Zero Width Joiner (ZWJ). Since: 2.50</doc>
|
|
</member>
|
|
</enumeration>
|
|
<enumeration name="UnicodeScript" c:type="GUnicodeScript">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="259">The #GUnicodeScript enumeration identifies different writing
|
|
systems. The values correspond to the names as defined in the
|
|
Unicode standard. The enumeration has been added in GLib 2.14,
|
|
and is interchangeable with #PangoScript.
|
|
|
|
Note that new types may be added in the future. Applications
|
|
should be ready to handle unknown values.
|
|
See [Unicode Standard Annex #24: Script names](http://www.unicode.org/reports/tr24/).</doc>
|
|
<source-position filename="gunicode.h" line="619"/>
|
|
<member name="invalid_code" value="-1" c:identifier="G_UNICODE_SCRIPT_INVALID_CODE">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="261">a value never returned from g_unichar_get_script()</doc>
|
|
</member>
|
|
<member name="common" value="0" c:identifier="G_UNICODE_SCRIPT_COMMON">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="263">a character used by multiple different scripts</doc>
|
|
</member>
|
|
<member name="inherited" value="1" c:identifier="G_UNICODE_SCRIPT_INHERITED">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="264">a mark glyph that takes its script from the
|
|
base glyph to which it is attached</doc>
|
|
</member>
|
|
<member name="arabic" value="2" c:identifier="G_UNICODE_SCRIPT_ARABIC">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="266">Arabic</doc>
|
|
</member>
|
|
<member name="armenian" value="3" c:identifier="G_UNICODE_SCRIPT_ARMENIAN">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="267">Armenian</doc>
|
|
</member>
|
|
<member name="bengali" value="4" c:identifier="G_UNICODE_SCRIPT_BENGALI">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="268">Bengali</doc>
|
|
</member>
|
|
<member name="bopomofo" value="5" c:identifier="G_UNICODE_SCRIPT_BOPOMOFO">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="269">Bopomofo</doc>
|
|
</member>
|
|
<member name="cherokee" value="6" c:identifier="G_UNICODE_SCRIPT_CHEROKEE">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="270">Cherokee</doc>
|
|
</member>
|
|
<member name="coptic" value="7" c:identifier="G_UNICODE_SCRIPT_COPTIC">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="271">Coptic</doc>
|
|
</member>
|
|
<member name="cyrillic" value="8" c:identifier="G_UNICODE_SCRIPT_CYRILLIC">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="272">Cyrillic</doc>
|
|
</member>
|
|
<member name="deseret" value="9" c:identifier="G_UNICODE_SCRIPT_DESERET">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="273">Deseret</doc>
|
|
</member>
|
|
<member name="devanagari" value="10" c:identifier="G_UNICODE_SCRIPT_DEVANAGARI">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="274">Devanagari</doc>
|
|
</member>
|
|
<member name="ethiopic" value="11" c:identifier="G_UNICODE_SCRIPT_ETHIOPIC">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="275">Ethiopic</doc>
|
|
</member>
|
|
<member name="georgian" value="12" c:identifier="G_UNICODE_SCRIPT_GEORGIAN">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="276">Georgian</doc>
|
|
</member>
|
|
<member name="gothic" value="13" c:identifier="G_UNICODE_SCRIPT_GOTHIC">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="277">Gothic</doc>
|
|
</member>
|
|
<member name="greek" value="14" c:identifier="G_UNICODE_SCRIPT_GREEK">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="278">Greek</doc>
|
|
</member>
|
|
<member name="gujarati" value="15" c:identifier="G_UNICODE_SCRIPT_GUJARATI">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="279">Gujarati</doc>
|
|
</member>
|
|
<member name="gurmukhi" value="16" c:identifier="G_UNICODE_SCRIPT_GURMUKHI">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="280">Gurmukhi</doc>
|
|
</member>
|
|
<member name="han" value="17" c:identifier="G_UNICODE_SCRIPT_HAN">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="281">Han</doc>
|
|
</member>
|
|
<member name="hangul" value="18" c:identifier="G_UNICODE_SCRIPT_HANGUL">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="282">Hangul</doc>
|
|
</member>
|
|
<member name="hebrew" value="19" c:identifier="G_UNICODE_SCRIPT_HEBREW">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="283">Hebrew</doc>
|
|
</member>
|
|
<member name="hiragana" value="20" c:identifier="G_UNICODE_SCRIPT_HIRAGANA">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="284">Hiragana</doc>
|
|
</member>
|
|
<member name="kannada" value="21" c:identifier="G_UNICODE_SCRIPT_KANNADA">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="285">Kannada</doc>
|
|
</member>
|
|
<member name="katakana" value="22" c:identifier="G_UNICODE_SCRIPT_KATAKANA">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="286">Katakana</doc>
|
|
</member>
|
|
<member name="khmer" value="23" c:identifier="G_UNICODE_SCRIPT_KHMER">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="287">Khmer</doc>
|
|
</member>
|
|
<member name="lao" value="24" c:identifier="G_UNICODE_SCRIPT_LAO">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="288">Lao</doc>
|
|
</member>
|
|
<member name="latin" value="25" c:identifier="G_UNICODE_SCRIPT_LATIN">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="289">Latin</doc>
|
|
</member>
|
|
<member name="malayalam" value="26" c:identifier="G_UNICODE_SCRIPT_MALAYALAM">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="290">Malayalam</doc>
|
|
</member>
|
|
<member name="mongolian" value="27" c:identifier="G_UNICODE_SCRIPT_MONGOLIAN">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="291">Mongolian</doc>
|
|
</member>
|
|
<member name="myanmar" value="28" c:identifier="G_UNICODE_SCRIPT_MYANMAR">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="292">Myanmar</doc>
|
|
</member>
|
|
<member name="ogham" value="29" c:identifier="G_UNICODE_SCRIPT_OGHAM">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="293">Ogham</doc>
|
|
</member>
|
|
<member name="old_italic" value="30" c:identifier="G_UNICODE_SCRIPT_OLD_ITALIC">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="294">Old Italic</doc>
|
|
</member>
|
|
<member name="oriya" value="31" c:identifier="G_UNICODE_SCRIPT_ORIYA">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="295">Oriya</doc>
|
|
</member>
|
|
<member name="runic" value="32" c:identifier="G_UNICODE_SCRIPT_RUNIC">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="296">Runic</doc>
|
|
</member>
|
|
<member name="sinhala" value="33" c:identifier="G_UNICODE_SCRIPT_SINHALA">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="297">Sinhala</doc>
|
|
</member>
|
|
<member name="syriac" value="34" c:identifier="G_UNICODE_SCRIPT_SYRIAC">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="298">Syriac</doc>
|
|
</member>
|
|
<member name="tamil" value="35" c:identifier="G_UNICODE_SCRIPT_TAMIL">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="299">Tamil</doc>
|
|
</member>
|
|
<member name="telugu" value="36" c:identifier="G_UNICODE_SCRIPT_TELUGU">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="300">Telugu</doc>
|
|
</member>
|
|
<member name="thaana" value="37" c:identifier="G_UNICODE_SCRIPT_THAANA">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="301">Thaana</doc>
|
|
</member>
|
|
<member name="thai" value="38" c:identifier="G_UNICODE_SCRIPT_THAI">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="302">Thai</doc>
|
|
</member>
|
|
<member name="tibetan" value="39" c:identifier="G_UNICODE_SCRIPT_TIBETAN">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="303">Tibetan</doc>
|
|
</member>
|
|
<member name="canadian_aboriginal" value="40" c:identifier="G_UNICODE_SCRIPT_CANADIAN_ABORIGINAL">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="304">Canadian Aboriginal</doc>
|
|
</member>
|
|
<member name="yi" value="41" c:identifier="G_UNICODE_SCRIPT_YI">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="306">Yi</doc>
|
|
</member>
|
|
<member name="tagalog" value="42" c:identifier="G_UNICODE_SCRIPT_TAGALOG">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="307">Tagalog</doc>
|
|
</member>
|
|
<member name="hanunoo" value="43" c:identifier="G_UNICODE_SCRIPT_HANUNOO">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="308">Hanunoo</doc>
|
|
</member>
|
|
<member name="buhid" value="44" c:identifier="G_UNICODE_SCRIPT_BUHID">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="309">Buhid</doc>
|
|
</member>
|
|
<member name="tagbanwa" value="45" c:identifier="G_UNICODE_SCRIPT_TAGBANWA">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="310">Tagbanwa</doc>
|
|
</member>
|
|
<member name="braille" value="46" c:identifier="G_UNICODE_SCRIPT_BRAILLE">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="311">Braille</doc>
|
|
</member>
|
|
<member name="cypriot" value="47" c:identifier="G_UNICODE_SCRIPT_CYPRIOT">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="312">Cypriot</doc>
|
|
</member>
|
|
<member name="limbu" value="48" c:identifier="G_UNICODE_SCRIPT_LIMBU">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="313">Limbu</doc>
|
|
</member>
|
|
<member name="osmanya" value="49" c:identifier="G_UNICODE_SCRIPT_OSMANYA">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="314">Osmanya</doc>
|
|
</member>
|
|
<member name="shavian" value="50" c:identifier="G_UNICODE_SCRIPT_SHAVIAN">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="315">Shavian</doc>
|
|
</member>
|
|
<member name="linear_b" value="51" c:identifier="G_UNICODE_SCRIPT_LINEAR_B">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="316">Linear B</doc>
|
|
</member>
|
|
<member name="tai_le" value="52" c:identifier="G_UNICODE_SCRIPT_TAI_LE">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="317">Tai Le</doc>
|
|
</member>
|
|
<member name="ugaritic" value="53" c:identifier="G_UNICODE_SCRIPT_UGARITIC">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="318">Ugaritic</doc>
|
|
</member>
|
|
<member name="new_tai_lue" value="54" c:identifier="G_UNICODE_SCRIPT_NEW_TAI_LUE">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="319">New Tai Lue</doc>
|
|
</member>
|
|
<member name="buginese" value="55" c:identifier="G_UNICODE_SCRIPT_BUGINESE">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="321">Buginese</doc>
|
|
</member>
|
|
<member name="glagolitic" value="56" c:identifier="G_UNICODE_SCRIPT_GLAGOLITIC">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="322">Glagolitic</doc>
|
|
</member>
|
|
<member name="tifinagh" value="57" c:identifier="G_UNICODE_SCRIPT_TIFINAGH">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="323">Tifinagh</doc>
|
|
</member>
|
|
<member name="syloti_nagri" value="58" c:identifier="G_UNICODE_SCRIPT_SYLOTI_NAGRI">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="324">Syloti Nagri</doc>
|
|
</member>
|
|
<member name="old_persian" value="59" c:identifier="G_UNICODE_SCRIPT_OLD_PERSIAN">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="326">Old Persian</doc>
|
|
</member>
|
|
<member name="kharoshthi" value="60" c:identifier="G_UNICODE_SCRIPT_KHAROSHTHI">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="328">Kharoshthi</doc>
|
|
</member>
|
|
<member name="unknown" value="61" c:identifier="G_UNICODE_SCRIPT_UNKNOWN">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="329">an unassigned code point</doc>
|
|
</member>
|
|
<member name="balinese" value="62" c:identifier="G_UNICODE_SCRIPT_BALINESE">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="330">Balinese</doc>
|
|
</member>
|
|
<member name="cuneiform" value="63" c:identifier="G_UNICODE_SCRIPT_CUNEIFORM">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="331">Cuneiform</doc>
|
|
</member>
|
|
<member name="phoenician" value="64" c:identifier="G_UNICODE_SCRIPT_PHOENICIAN">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="332">Phoenician</doc>
|
|
</member>
|
|
<member name="phags_pa" value="65" c:identifier="G_UNICODE_SCRIPT_PHAGS_PA">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="333">Phags-pa</doc>
|
|
</member>
|
|
<member name="nko" value="66" c:identifier="G_UNICODE_SCRIPT_NKO">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="334">N'Ko</doc>
|
|
</member>
|
|
<member name="kayah_li" value="67" c:identifier="G_UNICODE_SCRIPT_KAYAH_LI">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="335">Kayah Li. Since 2.16.3</doc>
|
|
</member>
|
|
<member name="lepcha" value="68" c:identifier="G_UNICODE_SCRIPT_LEPCHA">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="336">Lepcha. Since 2.16.3</doc>
|
|
</member>
|
|
<member name="rejang" value="69" c:identifier="G_UNICODE_SCRIPT_REJANG">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="337">Rejang. Since 2.16.3</doc>
|
|
</member>
|
|
<member name="sundanese" value="70" c:identifier="G_UNICODE_SCRIPT_SUNDANESE">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="338">Sundanese. Since 2.16.3</doc>
|
|
</member>
|
|
<member name="saurashtra" value="71" c:identifier="G_UNICODE_SCRIPT_SAURASHTRA">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="339">Saurashtra. Since 2.16.3</doc>
|
|
</member>
|
|
<member name="cham" value="72" c:identifier="G_UNICODE_SCRIPT_CHAM">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="340">Cham. Since 2.16.3</doc>
|
|
</member>
|
|
<member name="ol_chiki" value="73" c:identifier="G_UNICODE_SCRIPT_OL_CHIKI">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="341">Ol Chiki. Since 2.16.3</doc>
|
|
</member>
|
|
<member name="vai" value="74" c:identifier="G_UNICODE_SCRIPT_VAI">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="342">Vai. Since 2.16.3</doc>
|
|
</member>
|
|
<member name="carian" value="75" c:identifier="G_UNICODE_SCRIPT_CARIAN">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="343">Carian. Since 2.16.3</doc>
|
|
</member>
|
|
<member name="lycian" value="76" c:identifier="G_UNICODE_SCRIPT_LYCIAN">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="344">Lycian. Since 2.16.3</doc>
|
|
</member>
|
|
<member name="lydian" value="77" c:identifier="G_UNICODE_SCRIPT_LYDIAN">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="345">Lydian. Since 2.16.3</doc>
|
|
</member>
|
|
<member name="avestan" value="78" c:identifier="G_UNICODE_SCRIPT_AVESTAN">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="346">Avestan. Since 2.26</doc>
|
|
</member>
|
|
<member name="bamum" value="79" c:identifier="G_UNICODE_SCRIPT_BAMUM">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="347">Bamum. Since 2.26</doc>
|
|
</member>
|
|
<member name="egyptian_hieroglyphs" value="80" c:identifier="G_UNICODE_SCRIPT_EGYPTIAN_HIEROGLYPHS">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="348">Egyptian Hieroglpyhs. Since 2.26</doc>
|
|
</member>
|
|
<member name="imperial_aramaic" value="81" c:identifier="G_UNICODE_SCRIPT_IMPERIAL_ARAMAIC">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="350">Imperial Aramaic. Since 2.26</doc>
|
|
</member>
|
|
<member name="inscriptional_pahlavi" value="82" c:identifier="G_UNICODE_SCRIPT_INSCRIPTIONAL_PAHLAVI">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="352">Inscriptional Pahlavi. Since 2.26</doc>
|
|
</member>
|
|
<member name="inscriptional_parthian" value="83" c:identifier="G_UNICODE_SCRIPT_INSCRIPTIONAL_PARTHIAN">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="354">Inscriptional Parthian. Since 2.26</doc>
|
|
</member>
|
|
<member name="javanese" value="84" c:identifier="G_UNICODE_SCRIPT_JAVANESE">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="356">Javanese. Since 2.26</doc>
|
|
</member>
|
|
<member name="kaithi" value="85" c:identifier="G_UNICODE_SCRIPT_KAITHI">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="357">Kaithi. Since 2.26</doc>
|
|
</member>
|
|
<member name="lisu" value="86" c:identifier="G_UNICODE_SCRIPT_LISU">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="358">Lisu. Since 2.26</doc>
|
|
</member>
|
|
<member name="meetei_mayek" value="87" c:identifier="G_UNICODE_SCRIPT_MEETEI_MAYEK">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="359">Meetei Mayek. Since 2.26</doc>
|
|
</member>
|
|
<member name="old_south_arabian" value="88" c:identifier="G_UNICODE_SCRIPT_OLD_SOUTH_ARABIAN">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="361">Old South Arabian. Since 2.26</doc>
|
|
</member>
|
|
<member name="old_turkic" value="89" c:identifier="G_UNICODE_SCRIPT_OLD_TURKIC">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="363">Old Turkic. Since 2.28</doc>
|
|
</member>
|
|
<member name="samaritan" value="90" c:identifier="G_UNICODE_SCRIPT_SAMARITAN">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="364">Samaritan. Since 2.26</doc>
|
|
</member>
|
|
<member name="tai_tham" value="91" c:identifier="G_UNICODE_SCRIPT_TAI_THAM">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="365">Tai Tham. Since 2.26</doc>
|
|
</member>
|
|
<member name="tai_viet" value="92" c:identifier="G_UNICODE_SCRIPT_TAI_VIET">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="366">Tai Viet. Since 2.26</doc>
|
|
</member>
|
|
<member name="batak" value="93" c:identifier="G_UNICODE_SCRIPT_BATAK">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="367">Batak. Since 2.28</doc>
|
|
</member>
|
|
<member name="brahmi" value="94" c:identifier="G_UNICODE_SCRIPT_BRAHMI">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="368">Brahmi. Since 2.28</doc>
|
|
</member>
|
|
<member name="mandaic" value="95" c:identifier="G_UNICODE_SCRIPT_MANDAIC">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="369">Mandaic. Since 2.28</doc>
|
|
</member>
|
|
<member name="chakma" value="96" c:identifier="G_UNICODE_SCRIPT_CHAKMA">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="370">Chakma. Since: 2.32</doc>
|
|
</member>
|
|
<member name="meroitic_cursive" value="97" c:identifier="G_UNICODE_SCRIPT_MEROITIC_CURSIVE">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="371">Meroitic Cursive. Since: 2.32</doc>
|
|
</member>
|
|
<member name="meroitic_hieroglyphs" value="98" c:identifier="G_UNICODE_SCRIPT_MEROITIC_HIEROGLYPHS">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="372">Meroitic Hieroglyphs. Since: 2.32</doc>
|
|
</member>
|
|
<member name="miao" value="99" c:identifier="G_UNICODE_SCRIPT_MIAO">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="373">Miao. Since: 2.32</doc>
|
|
</member>
|
|
<member name="sharada" value="100" c:identifier="G_UNICODE_SCRIPT_SHARADA">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="374">Sharada. Since: 2.32</doc>
|
|
</member>
|
|
<member name="sora_sompeng" value="101" c:identifier="G_UNICODE_SCRIPT_SORA_SOMPENG">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="375">Sora Sompeng. Since: 2.32</doc>
|
|
</member>
|
|
<member name="takri" value="102" c:identifier="G_UNICODE_SCRIPT_TAKRI">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="376">Takri. Since: 2.32</doc>
|
|
</member>
|
|
<member name="bassa_vah" value="103" c:identifier="G_UNICODE_SCRIPT_BASSA_VAH">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="377">Bassa. Since: 2.42</doc>
|
|
</member>
|
|
<member name="caucasian_albanian" value="104" c:identifier="G_UNICODE_SCRIPT_CAUCASIAN_ALBANIAN">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="378">Caucasian Albanian. Since: 2.42</doc>
|
|
</member>
|
|
<member name="duployan" value="105" c:identifier="G_UNICODE_SCRIPT_DUPLOYAN">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="379">Duployan. Since: 2.42</doc>
|
|
</member>
|
|
<member name="elbasan" value="106" c:identifier="G_UNICODE_SCRIPT_ELBASAN">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="380">Elbasan. Since: 2.42</doc>
|
|
</member>
|
|
<member name="grantha" value="107" c:identifier="G_UNICODE_SCRIPT_GRANTHA">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="381">Grantha. Since: 2.42</doc>
|
|
</member>
|
|
<member name="khojki" value="108" c:identifier="G_UNICODE_SCRIPT_KHOJKI">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="382">Kjohki. Since: 2.42</doc>
|
|
</member>
|
|
<member name="khudawadi" value="109" c:identifier="G_UNICODE_SCRIPT_KHUDAWADI">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="383">Khudawadi, Sindhi. Since: 2.42</doc>
|
|
</member>
|
|
<member name="linear_a" value="110" c:identifier="G_UNICODE_SCRIPT_LINEAR_A">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="384">Linear A. Since: 2.42</doc>
|
|
</member>
|
|
<member name="mahajani" value="111" c:identifier="G_UNICODE_SCRIPT_MAHAJANI">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="385">Mahajani. Since: 2.42</doc>
|
|
</member>
|
|
<member name="manichaean" value="112" c:identifier="G_UNICODE_SCRIPT_MANICHAEAN">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="386">Manichaean. Since: 2.42</doc>
|
|
</member>
|
|
<member name="mende_kikakui" value="113" c:identifier="G_UNICODE_SCRIPT_MENDE_KIKAKUI">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="387">Mende Kikakui. Since: 2.42</doc>
|
|
</member>
|
|
<member name="modi" value="114" c:identifier="G_UNICODE_SCRIPT_MODI">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="388">Modi. Since: 2.42</doc>
|
|
</member>
|
|
<member name="mro" value="115" c:identifier="G_UNICODE_SCRIPT_MRO">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="389">Mro. Since: 2.42</doc>
|
|
</member>
|
|
<member name="nabataean" value="116" c:identifier="G_UNICODE_SCRIPT_NABATAEAN">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="390">Nabataean. Since: 2.42</doc>
|
|
</member>
|
|
<member name="old_north_arabian" value="117" c:identifier="G_UNICODE_SCRIPT_OLD_NORTH_ARABIAN">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="391">Old North Arabian. Since: 2.42</doc>
|
|
</member>
|
|
<member name="old_permic" value="118" c:identifier="G_UNICODE_SCRIPT_OLD_PERMIC">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="392">Old Permic. Since: 2.42</doc>
|
|
</member>
|
|
<member name="pahawh_hmong" value="119" c:identifier="G_UNICODE_SCRIPT_PAHAWH_HMONG">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="393">Pahawh Hmong. Since: 2.42</doc>
|
|
</member>
|
|
<member name="palmyrene" value="120" c:identifier="G_UNICODE_SCRIPT_PALMYRENE">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="394">Palmyrene. Since: 2.42</doc>
|
|
</member>
|
|
<member name="pau_cin_hau" value="121" c:identifier="G_UNICODE_SCRIPT_PAU_CIN_HAU">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="395">Pau Cin Hau. Since: 2.42</doc>
|
|
</member>
|
|
<member name="psalter_pahlavi" value="122" c:identifier="G_UNICODE_SCRIPT_PSALTER_PAHLAVI">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="396">Psalter Pahlavi. Since: 2.42</doc>
|
|
</member>
|
|
<member name="siddham" value="123" c:identifier="G_UNICODE_SCRIPT_SIDDHAM">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="397">Siddham. Since: 2.42</doc>
|
|
</member>
|
|
<member name="tirhuta" value="124" c:identifier="G_UNICODE_SCRIPT_TIRHUTA">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="398">Tirhuta. Since: 2.42</doc>
|
|
</member>
|
|
<member name="warang_citi" value="125" c:identifier="G_UNICODE_SCRIPT_WARANG_CITI">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="399">Warang Citi. Since: 2.42</doc>
|
|
</member>
|
|
<member name="ahom" value="126" c:identifier="G_UNICODE_SCRIPT_AHOM">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="400">Ahom. Since: 2.48</doc>
|
|
</member>
|
|
<member name="anatolian_hieroglyphs" value="127" c:identifier="G_UNICODE_SCRIPT_ANATOLIAN_HIEROGLYPHS">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="401">Anatolian Hieroglyphs. Since: 2.48</doc>
|
|
</member>
|
|
<member name="hatran" value="128" c:identifier="G_UNICODE_SCRIPT_HATRAN">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="402">Hatran. Since: 2.48</doc>
|
|
</member>
|
|
<member name="multani" value="129" c:identifier="G_UNICODE_SCRIPT_MULTANI">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="403">Multani. Since: 2.48</doc>
|
|
</member>
|
|
<member name="old_hungarian" value="130" c:identifier="G_UNICODE_SCRIPT_OLD_HUNGARIAN">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="404">Old Hungarian. Since: 2.48</doc>
|
|
</member>
|
|
<member name="signwriting" value="131" c:identifier="G_UNICODE_SCRIPT_SIGNWRITING">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="405">Signwriting. Since: 2.48</doc>
|
|
</member>
|
|
<member name="adlam" value="132" c:identifier="G_UNICODE_SCRIPT_ADLAM">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="406">Adlam. Since: 2.50</doc>
|
|
</member>
|
|
<member name="bhaiksuki" value="133" c:identifier="G_UNICODE_SCRIPT_BHAIKSUKI">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="407">Bhaiksuki. Since: 2.50</doc>
|
|
</member>
|
|
<member name="marchen" value="134" c:identifier="G_UNICODE_SCRIPT_MARCHEN">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="408">Marchen. Since: 2.50</doc>
|
|
</member>
|
|
<member name="newa" value="135" c:identifier="G_UNICODE_SCRIPT_NEWA">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="409">Newa. Since: 2.50</doc>
|
|
</member>
|
|
<member name="osage" value="136" c:identifier="G_UNICODE_SCRIPT_OSAGE">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="410">Osage. Since: 2.50</doc>
|
|
</member>
|
|
<member name="tangut" value="137" c:identifier="G_UNICODE_SCRIPT_TANGUT">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="411">Tangut. Since: 2.50</doc>
|
|
</member>
|
|
<member name="masaram_gondi" value="138" c:identifier="G_UNICODE_SCRIPT_MASARAM_GONDI">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="412">Masaram Gondi. Since: 2.54</doc>
|
|
</member>
|
|
<member name="nushu" value="139" c:identifier="G_UNICODE_SCRIPT_NUSHU">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="413">Nushu. Since: 2.54</doc>
|
|
</member>
|
|
<member name="soyombo" value="140" c:identifier="G_UNICODE_SCRIPT_SOYOMBO">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="414">Soyombo. Since: 2.54</doc>
|
|
</member>
|
|
<member name="zanabazar_square" value="141" c:identifier="G_UNICODE_SCRIPT_ZANABAZAR_SQUARE">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="415">Zanabazar Square. Since: 2.54</doc>
|
|
</member>
|
|
<member name="dogra" value="142" c:identifier="G_UNICODE_SCRIPT_DOGRA">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="416">Dogra. Since: 2.58</doc>
|
|
</member>
|
|
<member name="gunjala_gondi" value="143" c:identifier="G_UNICODE_SCRIPT_GUNJALA_GONDI">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="417">Gunjala Gondi. Since: 2.58</doc>
|
|
</member>
|
|
<member name="hanifi_rohingya" value="144" c:identifier="G_UNICODE_SCRIPT_HANIFI_ROHINGYA">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="418">Hanifi Rohingya. Since: 2.58</doc>
|
|
</member>
|
|
<member name="makasar" value="145" c:identifier="G_UNICODE_SCRIPT_MAKASAR">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="419">Makasar. Since: 2.58</doc>
|
|
</member>
|
|
<member name="medefaidrin" value="146" c:identifier="G_UNICODE_SCRIPT_MEDEFAIDRIN">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="420">Medefaidrin. Since: 2.58</doc>
|
|
</member>
|
|
<member name="old_sogdian" value="147" c:identifier="G_UNICODE_SCRIPT_OLD_SOGDIAN">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="421">Old Sogdian. Since: 2.58</doc>
|
|
</member>
|
|
<member name="sogdian" value="148" c:identifier="G_UNICODE_SCRIPT_SOGDIAN">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="422">Sogdian. Since: 2.58</doc>
|
|
</member>
|
|
<member name="elymaic" value="149" c:identifier="G_UNICODE_SCRIPT_ELYMAIC">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="423">Elym. Since: 2.62</doc>
|
|
</member>
|
|
<member name="nandinagari" value="150" c:identifier="G_UNICODE_SCRIPT_NANDINAGARI">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="424">Nand. Since: 2.62</doc>
|
|
</member>
|
|
<member name="nyiakeng_puachue_hmong" value="151" c:identifier="G_UNICODE_SCRIPT_NYIAKENG_PUACHUE_HMONG">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="425">Rohg. Since: 2.62</doc>
|
|
</member>
|
|
<member name="wancho" value="152" c:identifier="G_UNICODE_SCRIPT_WANCHO">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="426">Wcho. Since: 2.62</doc>
|
|
</member>
|
|
</enumeration>
|
|
<enumeration name="UnicodeType" c:type="GUnicodeType">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="79">These are the possible character classifications from the
|
|
Unicode specification.
|
|
See [Unicode Character Database](http://www.unicode.org/reports/tr44/#General_Category_Values).</doc>
|
|
<source-position filename="gunicode.h" line="148"/>
|
|
<member name="control" value="0" c:identifier="G_UNICODE_CONTROL">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="81">General category "Other, Control" (Cc)</doc>
|
|
</member>
|
|
<member name="format" value="1" c:identifier="G_UNICODE_FORMAT">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="82">General category "Other, Format" (Cf)</doc>
|
|
</member>
|
|
<member name="unassigned" value="2" c:identifier="G_UNICODE_UNASSIGNED">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="83">General category "Other, Not Assigned" (Cn)</doc>
|
|
</member>
|
|
<member name="private_use" value="3" c:identifier="G_UNICODE_PRIVATE_USE">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="84">General category "Other, Private Use" (Co)</doc>
|
|
</member>
|
|
<member name="surrogate" value="4" c:identifier="G_UNICODE_SURROGATE">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="85">General category "Other, Surrogate" (Cs)</doc>
|
|
</member>
|
|
<member name="lowercase_letter" value="5" c:identifier="G_UNICODE_LOWERCASE_LETTER">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="86">General category "Letter, Lowercase" (Ll)</doc>
|
|
</member>
|
|
<member name="modifier_letter" value="6" c:identifier="G_UNICODE_MODIFIER_LETTER">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="87">General category "Letter, Modifier" (Lm)</doc>
|
|
</member>
|
|
<member name="other_letter" value="7" c:identifier="G_UNICODE_OTHER_LETTER">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="88">General category "Letter, Other" (Lo)</doc>
|
|
</member>
|
|
<member name="titlecase_letter" value="8" c:identifier="G_UNICODE_TITLECASE_LETTER">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="89">General category "Letter, Titlecase" (Lt)</doc>
|
|
</member>
|
|
<member name="uppercase_letter" value="9" c:identifier="G_UNICODE_UPPERCASE_LETTER">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="90">General category "Letter, Uppercase" (Lu)</doc>
|
|
</member>
|
|
<member name="spacing_mark" value="10" c:identifier="G_UNICODE_SPACING_MARK">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="91">General category "Mark, Spacing" (Mc)</doc>
|
|
</member>
|
|
<member name="enclosing_mark" value="11" c:identifier="G_UNICODE_ENCLOSING_MARK">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="92">General category "Mark, Enclosing" (Me)</doc>
|
|
</member>
|
|
<member name="non_spacing_mark" value="12" c:identifier="G_UNICODE_NON_SPACING_MARK">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="93">General category "Mark, Nonspacing" (Mn)</doc>
|
|
</member>
|
|
<member name="decimal_number" value="13" c:identifier="G_UNICODE_DECIMAL_NUMBER">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="94">General category "Number, Decimal Digit" (Nd)</doc>
|
|
</member>
|
|
<member name="letter_number" value="14" c:identifier="G_UNICODE_LETTER_NUMBER">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="95">General category "Number, Letter" (Nl)</doc>
|
|
</member>
|
|
<member name="other_number" value="15" c:identifier="G_UNICODE_OTHER_NUMBER">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="96">General category "Number, Other" (No)</doc>
|
|
</member>
|
|
<member name="connect_punctuation" value="16" c:identifier="G_UNICODE_CONNECT_PUNCTUATION">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="97">General category "Punctuation, Connector" (Pc)</doc>
|
|
</member>
|
|
<member name="dash_punctuation" value="17" c:identifier="G_UNICODE_DASH_PUNCTUATION">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="98">General category "Punctuation, Dash" (Pd)</doc>
|
|
</member>
|
|
<member name="close_punctuation" value="18" c:identifier="G_UNICODE_CLOSE_PUNCTUATION">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="99">General category "Punctuation, Close" (Pe)</doc>
|
|
</member>
|
|
<member name="final_punctuation" value="19" c:identifier="G_UNICODE_FINAL_PUNCTUATION">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="100">General category "Punctuation, Final quote" (Pf)</doc>
|
|
</member>
|
|
<member name="initial_punctuation" value="20" c:identifier="G_UNICODE_INITIAL_PUNCTUATION">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="101">General category "Punctuation, Initial quote" (Pi)</doc>
|
|
</member>
|
|
<member name="other_punctuation" value="21" c:identifier="G_UNICODE_OTHER_PUNCTUATION">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="102">General category "Punctuation, Other" (Po)</doc>
|
|
</member>
|
|
<member name="open_punctuation" value="22" c:identifier="G_UNICODE_OPEN_PUNCTUATION">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="103">General category "Punctuation, Open" (Ps)</doc>
|
|
</member>
|
|
<member name="currency_symbol" value="23" c:identifier="G_UNICODE_CURRENCY_SYMBOL">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="104">General category "Symbol, Currency" (Sc)</doc>
|
|
</member>
|
|
<member name="modifier_symbol" value="24" c:identifier="G_UNICODE_MODIFIER_SYMBOL">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="105">General category "Symbol, Modifier" (Sk)</doc>
|
|
</member>
|
|
<member name="math_symbol" value="25" c:identifier="G_UNICODE_MATH_SYMBOL">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="106">General category "Symbol, Math" (Sm)</doc>
|
|
</member>
|
|
<member name="other_symbol" value="26" c:identifier="G_UNICODE_OTHER_SYMBOL">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="107">General category "Symbol, Other" (So)</doc>
|
|
</member>
|
|
<member name="line_separator" value="27" c:identifier="G_UNICODE_LINE_SEPARATOR">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="108">General category "Separator, Line" (Zl)</doc>
|
|
</member>
|
|
<member name="paragraph_separator" value="28" c:identifier="G_UNICODE_PARAGRAPH_SEPARATOR">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="109">General category "Separator, Paragraph" (Zp)</doc>
|
|
</member>
|
|
<member name="space_separator" value="29" c:identifier="G_UNICODE_SPACE_SEPARATOR">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="110">General category "Separator, Space" (Zs)</doc>
|
|
</member>
|
|
</enumeration>
|
|
<callback name="UnixFDSourceFunc" c:type="GUnixFDSourceFunc">
|
|
<doc xml:space="preserve" filename="glib-unix.h" line="84">The type of functions to be called when a UNIX fd watch source
|
|
triggers.</doc>
|
|
<source-position filename="glib-unix.h" line="95"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-unix.h" line="93">%FALSE if the source should be removed</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="fd" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-unix.h" line="86">the fd that triggered the event</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="condition" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-unix.h" line="87">the IO conditions reported on @fd</doc>
|
|
<type name="IOCondition" c:type="GIOCondition"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1" closure="2">
|
|
<doc xml:space="preserve" filename="glib-unix.h" line="88">user data passed to g_unix_fd_add()</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</callback>
|
|
<enumeration name="UserDirectory" version="2.14" c:type="GUserDirectory">
|
|
<doc xml:space="preserve" filename="gutils.h" line="105">These are logical ids for special directories which are defined
|
|
depending on the platform used. You should use g_get_user_special_dir()
|
|
to retrieve the full path associated to the logical id.
|
|
|
|
The #GUserDirectory enumeration can be extended at later date. Not
|
|
every platform has a directory for every logical id in this
|
|
enumeration.</doc>
|
|
<source-position filename="gutils.h" line="138"/>
|
|
<member name="directory_desktop" value="0" c:identifier="G_USER_DIRECTORY_DESKTOP">
|
|
<doc xml:space="preserve" filename="gutils.h" line="107">the user's Desktop directory</doc>
|
|
</member>
|
|
<member name="directory_documents" value="1" c:identifier="G_USER_DIRECTORY_DOCUMENTS">
|
|
<doc xml:space="preserve" filename="gutils.h" line="108">the user's Documents directory</doc>
|
|
</member>
|
|
<member name="directory_download" value="2" c:identifier="G_USER_DIRECTORY_DOWNLOAD">
|
|
<doc xml:space="preserve" filename="gutils.h" line="109">the user's Downloads directory</doc>
|
|
</member>
|
|
<member name="directory_music" value="3" c:identifier="G_USER_DIRECTORY_MUSIC">
|
|
<doc xml:space="preserve" filename="gutils.h" line="110">the user's Music directory</doc>
|
|
</member>
|
|
<member name="directory_pictures" value="4" c:identifier="G_USER_DIRECTORY_PICTURES">
|
|
<doc xml:space="preserve" filename="gutils.h" line="111">the user's Pictures directory</doc>
|
|
</member>
|
|
<member name="directory_public_share" value="5" c:identifier="G_USER_DIRECTORY_PUBLIC_SHARE">
|
|
<doc xml:space="preserve" filename="gutils.h" line="112">the user's shared directory</doc>
|
|
</member>
|
|
<member name="directory_templates" value="6" c:identifier="G_USER_DIRECTORY_TEMPLATES">
|
|
<doc xml:space="preserve" filename="gutils.h" line="113">the user's Templates directory</doc>
|
|
</member>
|
|
<member name="directory_videos" value="7" c:identifier="G_USER_DIRECTORY_VIDEOS">
|
|
<doc xml:space="preserve" filename="gutils.h" line="114">the user's Movies directory</doc>
|
|
</member>
|
|
<member name="n_directories" value="8" c:identifier="G_USER_N_DIRECTORIES">
|
|
<doc xml:space="preserve" filename="gutils.h" line="115">the number of enum values</doc>
|
|
</member>
|
|
</enumeration>
|
|
<function-macro name="VARIANT_BUILDER_INIT" c:identifier="G_VARIANT_BUILDER_INIT" version="2.50" introspectable="0">
|
|
<doc xml:space="preserve" filename="gvariant.h" line="340">A stack-allocated #GVariantBuilder must be initialized if it is
|
|
used together with g_auto() to avoid warnings or crashes if
|
|
function returns before g_variant_builder_init() is called on the
|
|
builder. This macro can be used as initializer instead of an
|
|
explicit zeroing a variable when declaring it and a following
|
|
g_variant_builder_init(), but it cannot be assigned to a variable.
|
|
|
|
The passed @variant_type should be a static GVariantType to avoid
|
|
lifetime issues, as copying the @variant_type does not happen in
|
|
the G_VARIANT_BUILDER_INIT() call, but rather in functions that
|
|
make sure that #GVariantBuilder is valid.
|
|
|
|
|[
|
|
g_auto(GVariantBuilder) builder = G_VARIANT_BUILDER_INIT (G_VARIANT_TYPE_BYTESTRING);
|
|
]|</doc>
|
|
<source-position filename="gvariant.h" line="362"/>
|
|
<parameters>
|
|
<parameter name="variant_type">
|
|
<doc xml:space="preserve" filename="gvariant.h" line="342">a const GVariantType*</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="VARIANT_DICT_INIT" c:identifier="G_VARIANT_DICT_INIT" version="2.50" introspectable="0">
|
|
<doc xml:space="preserve" filename="gvariant.h" line="450">A stack-allocated #GVariantDict must be initialized if it is used
|
|
together with g_auto() to avoid warnings or crashes if function
|
|
returns before g_variant_dict_init() is called on the builder.
|
|
This macro can be used as initializer instead of an explicit
|
|
zeroing a variable when declaring it and a following
|
|
g_variant_dict_init(), but it cannot be assigned to a variable.
|
|
|
|
The passed @asv has to live long enough for #GVariantDict to gather
|
|
the entries from, as the gathering does not happen in the
|
|
G_VARIANT_DICT_INIT() call, but rather in functions that make sure
|
|
that #GVariantDict is valid. In context where the initialization
|
|
value has to be a constant expression, the only possible value of
|
|
@asv is %NULL. It is still possible to call g_variant_dict_init()
|
|
safely with a different @asv right after the variable was
|
|
initialized with G_VARIANT_DICT_INIT().
|
|
|
|
|[
|
|
g_autoptr(GVariant) variant = get_asv_variant ();
|
|
g_auto(GVariantDict) dict = G_VARIANT_DICT_INIT (variant);
|
|
]|</doc>
|
|
<source-position filename="gvariant.h" line="477"/>
|
|
<parameters>
|
|
<parameter name="asv">
|
|
<doc xml:space="preserve" filename="gvariant.h" line="452">a GVariant*</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="VARIANT_TYPE" c:identifier="G_VARIANT_TYPE" introspectable="0">
|
|
<doc xml:space="preserve" filename="gvarianttype.h" line="274">Converts a string to a const #GVariantType. Depending on the
|
|
current debugging level, this function may perform a runtime check
|
|
to ensure that @string is a valid GVariant type string.
|
|
|
|
It is always a programmer error to use this macro with an invalid
|
|
type string. If in doubt, use g_variant_type_string_is_valid() to
|
|
check if the string is valid.
|
|
|
|
Since 2.24</doc>
|
|
<source-position filename="gvarianttype.h" line="289"/>
|
|
<parameters>
|
|
<parameter name="type_string">
|
|
<doc xml:space="preserve" filename="gvarianttype.h" line="276">a well-formed #GVariantType type string</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="VA_COPY" c:identifier="G_VA_COPY" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="4559">Portable way to copy va_list variables.
|
|
|
|
In order to use this function, you must include string.h yourself,
|
|
because this macro may use memmove() and GLib does not include
|
|
string.h for you.</doc>
|
|
<source-position filename="gutils.h" line="42"/>
|
|
<parameters>
|
|
<parameter name="ap1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="4561">the va_list variable to place a copy of @ap2 in</doc>
|
|
</parameter>
|
|
<parameter name="ap2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="4562">a va_list</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<constant name="VA_COPY_AS_ARRAY" value="1" c:type="G_VA_COPY_AS_ARRAY">
|
|
<source-position filename="glibconfig.h" line="118"/>
|
|
<type name="gint" c:type="gint"/>
|
|
</constant>
|
|
<constant name="VERSION_MIN_REQUIRED" value="2" c:type="GLIB_VERSION_MIN_REQUIRED" version="2.32">
|
|
<doc xml:space="preserve" filename="gversionmacros.h" line="244">A macro that should be defined by the user prior to including
|
|
the glib.h header.
|
|
The definition should be one of the predefined GLib version
|
|
macros: %GLIB_VERSION_2_26, %GLIB_VERSION_2_28,...
|
|
|
|
This macro defines the earliest version of GLib that the package is
|
|
required to be able to compile against.
|
|
|
|
If the compiler is configured to warn about the use of deprecated
|
|
functions, then using functions that were deprecated in version
|
|
%GLIB_VERSION_MIN_REQUIRED or earlier will cause warnings (but
|
|
using functions deprecated in later releases will not).</doc>
|
|
<source-position filename="gversionmacros.h" line="270"/>
|
|
<type name="gint" c:type="gint"/>
|
|
</constant>
|
|
<record name="Variant" c:type="GVariant" version="2.24" glib:type-name="GVariant" glib:get-type="intern" c:symbol-prefix="variant">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="6016">#GVariant is a variant datatype; it can contain one or more values
|
|
along with information about the type of the values.
|
|
|
|
A #GVariant may contain simple types, like an integer, or a boolean value;
|
|
or complex types, like an array of two strings, or a dictionary of key
|
|
value pairs. A #GVariant is also immutable: once it's been created neither
|
|
its type nor its content can be modified further.
|
|
|
|
GVariant is useful whenever data needs to be serialized, for example when
|
|
sending method parameters in DBus, or when saving settings using GSettings.
|
|
|
|
When creating a new #GVariant, you pass the data you want to store in it
|
|
along with a string representing the type of data you wish to pass to it.
|
|
|
|
For instance, if you want to create a #GVariant holding an integer value you
|
|
can use:
|
|
|
|
|[<!-- language="C" -->
|
|
GVariant *v = g_variant_new ("u", 40);
|
|
]|
|
|
|
|
The string "u" in the first argument tells #GVariant that the data passed to
|
|
the constructor (40) is going to be an unsigned integer.
|
|
|
|
More advanced examples of #GVariant in use can be found in documentation for
|
|
[GVariant format strings][gvariant-format-strings-pointers].
|
|
|
|
The range of possible values is determined by the type.
|
|
|
|
The type system used by #GVariant is #GVariantType.
|
|
|
|
#GVariant instances always have a type and a value (which are given
|
|
at construction time). The type and value of a #GVariant instance
|
|
can never change other than by the #GVariant itself being
|
|
destroyed. A #GVariant cannot contain a pointer.
|
|
|
|
#GVariant is reference counted using g_variant_ref() and
|
|
g_variant_unref(). #GVariant also has floating reference counts --
|
|
see g_variant_ref_sink().
|
|
|
|
#GVariant is completely threadsafe. A #GVariant instance can be
|
|
concurrently accessed in any way from any number of threads without
|
|
problems.
|
|
|
|
#GVariant is heavily optimised for dealing with data in serialised
|
|
form. It works particularly well with data located in memory-mapped
|
|
files. It can perform nearly all deserialisation operations in a
|
|
small constant time, usually touching only a single memory page.
|
|
Serialised #GVariant data can also be sent over the network.
|
|
|
|
#GVariant is largely compatible with D-Bus. Almost all types of
|
|
#GVariant instances can be sent over D-Bus. See #GVariantType for
|
|
exceptions. (However, #GVariant's serialisation format is not the same
|
|
as the serialisation format of a D-Bus message body: use #GDBusMessage,
|
|
in the gio library, for those.)
|
|
|
|
For space-efficiency, the #GVariant serialisation format does not
|
|
automatically include the variant's length, type or endianness,
|
|
which must either be implied from context (such as knowledge that a
|
|
particular file format always contains a little-endian
|
|
%G_VARIANT_TYPE_VARIANT which occupies the whole length of the file)
|
|
or supplied out-of-band (for instance, a length, type and/or endianness
|
|
indicator could be placed at the beginning of a file, network message
|
|
or network stream).
|
|
|
|
A #GVariant's size is limited mainly by any lower level operating
|
|
system constraints, such as the number of bits in #gsize. For
|
|
example, it is reasonable to have a 2GB file mapped into memory
|
|
with #GMappedFile, and call g_variant_new_from_data() on it.
|
|
|
|
For convenience to C programmers, #GVariant features powerful
|
|
varargs-based value construction and destruction. This feature is
|
|
designed to be embedded in other libraries.
|
|
|
|
There is a Python-inspired text language for describing #GVariant
|
|
values. #GVariant includes a printer for this language and a parser
|
|
with type inferencing.
|
|
|
|
## Memory Use
|
|
|
|
#GVariant tries to be quite efficient with respect to memory use.
|
|
This section gives a rough idea of how much memory is used by the
|
|
current implementation. The information here is subject to change
|
|
in the future.
|
|
|
|
The memory allocated by #GVariant can be grouped into 4 broad
|
|
purposes: memory for serialised data, memory for the type
|
|
information cache, buffer management memory and memory for the
|
|
#GVariant structure itself.
|
|
|
|
## Serialised Data Memory
|
|
|
|
This is the memory that is used for storing GVariant data in
|
|
serialised form. This is what would be sent over the network or
|
|
what would end up on disk, not counting any indicator of the
|
|
endianness, or of the length or type of the top-level variant.
|
|
|
|
The amount of memory required to store a boolean is 1 byte. 16,
|
|
32 and 64 bit integers and double precision floating point numbers
|
|
use their "natural" size. Strings (including object path and
|
|
signature strings) are stored with a nul terminator, and as such
|
|
use the length of the string plus 1 byte.
|
|
|
|
Maybe types use no space at all to represent the null value and
|
|
use the same amount of space (sometimes plus one byte) as the
|
|
equivalent non-maybe-typed value to represent the non-null case.
|
|
|
|
Arrays use the amount of space required to store each of their
|
|
members, concatenated. Additionally, if the items stored in an
|
|
array are not of a fixed-size (ie: strings, other arrays, etc)
|
|
then an additional framing offset is stored for each item. The
|
|
size of this offset is either 1, 2 or 4 bytes depending on the
|
|
overall size of the container. Additionally, extra padding bytes
|
|
are added as required for alignment of child values.
|
|
|
|
Tuples (including dictionary entries) use the amount of space
|
|
required to store each of their members, concatenated, plus one
|
|
framing offset (as per arrays) for each non-fixed-sized item in
|
|
the tuple, except for the last one. Additionally, extra padding
|
|
bytes are added as required for alignment of child values.
|
|
|
|
Variants use the same amount of space as the item inside of the
|
|
variant, plus 1 byte, plus the length of the type string for the
|
|
item inside the variant.
|
|
|
|
As an example, consider a dictionary mapping strings to variants.
|
|
In the case that the dictionary is empty, 0 bytes are required for
|
|
the serialisation.
|
|
|
|
If we add an item "width" that maps to the int32 value of 500 then
|
|
we will use 4 byte to store the int32 (so 6 for the variant
|
|
containing it) and 6 bytes for the string. The variant must be
|
|
aligned to 8 after the 6 bytes of the string, so that's 2 extra
|
|
bytes. 6 (string) + 2 (padding) + 6 (variant) is 14 bytes used
|
|
for the dictionary entry. An additional 1 byte is added to the
|
|
array as a framing offset making a total of 15 bytes.
|
|
|
|
If we add another entry, "title" that maps to a nullable string
|
|
that happens to have a value of null, then we use 0 bytes for the
|
|
null value (and 3 bytes for the variant to contain it along with
|
|
its type string) plus 6 bytes for the string. Again, we need 2
|
|
padding bytes. That makes a total of 6 + 2 + 3 = 11 bytes.
|
|
|
|
We now require extra padding between the two items in the array.
|
|
After the 14 bytes of the first item, that's 2 bytes required.
|
|
We now require 2 framing offsets for an extra two
|
|
bytes. 14 + 2 + 11 + 2 = 29 bytes to encode the entire two-item
|
|
dictionary.
|
|
|
|
## Type Information Cache
|
|
|
|
For each GVariant type that currently exists in the program a type
|
|
information structure is kept in the type information cache. The
|
|
type information structure is required for rapid deserialisation.
|
|
|
|
Continuing with the above example, if a #GVariant exists with the
|
|
type "a{sv}" then a type information struct will exist for
|
|
"a{sv}", "{sv}", "s", and "v". Multiple uses of the same type
|
|
will share the same type information. Additionally, all
|
|
single-digit types are stored in read-only static memory and do
|
|
not contribute to the writable memory footprint of a program using
|
|
#GVariant.
|
|
|
|
Aside from the type information structures stored in read-only
|
|
memory, there are two forms of type information. One is used for
|
|
container types where there is a single element type: arrays and
|
|
maybe types. The other is used for container types where there
|
|
are multiple element types: tuples and dictionary entries.
|
|
|
|
Array type info structures are 6 * sizeof (void *), plus the
|
|
memory required to store the type string itself. This means that
|
|
on 32-bit systems, the cache entry for "a{sv}" would require 30
|
|
bytes of memory (plus malloc overhead).
|
|
|
|
Tuple type info structures are 6 * sizeof (void *), plus 4 *
|
|
sizeof (void *) for each item in the tuple, plus the memory
|
|
required to store the type string itself. A 2-item tuple, for
|
|
example, would have a type information structure that consumed
|
|
writable memory in the size of 14 * sizeof (void *) (plus type
|
|
string) This means that on 32-bit systems, the cache entry for
|
|
"{sv}" would require 61 bytes of memory (plus malloc overhead).
|
|
|
|
This means that in total, for our "a{sv}" example, 91 bytes of
|
|
type information would be allocated.
|
|
|
|
The type information cache, additionally, uses a #GHashTable to
|
|
store and look up the cached items and stores a pointer to this
|
|
hash table in static storage. The hash table is freed when there
|
|
are zero items in the type cache.
|
|
|
|
Although these sizes may seem large it is important to remember
|
|
that a program will probably only have a very small number of
|
|
different types of values in it and that only one type information
|
|
structure is required for many different values of the same type.
|
|
|
|
## Buffer Management Memory
|
|
|
|
#GVariant uses an internal buffer management structure to deal
|
|
with the various different possible sources of serialised data
|
|
that it uses. The buffer is responsible for ensuring that the
|
|
correct call is made when the data is no longer in use by
|
|
#GVariant. This may involve a g_free() or a g_slice_free() or
|
|
even g_mapped_file_unref().
|
|
|
|
One buffer management structure is used for each chunk of
|
|
serialised data. The size of the buffer management structure
|
|
is 4 * (void *). On 32-bit systems, that's 16 bytes.
|
|
|
|
## GVariant structure
|
|
|
|
The size of a #GVariant structure is 6 * (void *). On 32-bit
|
|
systems, that's 24 bytes.
|
|
|
|
#GVariant structures only exist if they are explicitly created
|
|
with API calls. For example, if a #GVariant is constructed out of
|
|
serialised data for the example given above (with the dictionary)
|
|
then although there are 9 individual values that comprise the
|
|
entire dictionary (two keys, two values, two variants containing
|
|
the values, two dictionary entries, plus the dictionary itself),
|
|
only 1 #GVariant instance exists -- the one referring to the
|
|
dictionary.
|
|
|
|
If calls are made to start accessing the other values then
|
|
#GVariant instances will exist for those values only for as long
|
|
as they are in use (ie: until you call g_variant_unref()). The
|
|
type information is shared. The serialised data and the buffer
|
|
management structure for that serialised data is shared by the
|
|
child.
|
|
|
|
## Summary
|
|
|
|
To put the entire example together, for our dictionary mapping
|
|
strings to variants (with two entries, as given above), we are
|
|
using 91 bytes of memory for type information, 29 bytes of memory
|
|
for the serialised data, 16 bytes for buffer management and 24
|
|
bytes for the #GVariant instance, or a total of 160 bytes, plus
|
|
malloc overhead. If we were to use g_variant_get_child_value() to
|
|
access the two dictionary entries, we would use an additional 48
|
|
bytes. If we were to have other dictionaries of the same type, we
|
|
would use more memory for the serialised data and buffer
|
|
management for those dictionaries, but the type information would
|
|
be shared.</doc>
|
|
<source-position filename="gvariant.h" line="34"/>
|
|
<constructor name="new" c:identifier="g_variant_new" version="2.24" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37474">Creates a new #GVariant instance.
|
|
|
|
Think of this function as an analogue to g_strdup_printf().
|
|
|
|
The type of the created instance and the arguments that are expected
|
|
by this function are determined by @format_string. See the section on
|
|
[GVariant format strings][gvariant-format-strings]. Please note that
|
|
the syntax of the format string is very likely to be extended in the
|
|
future.
|
|
|
|
The first character of the format string must not be '*' '?' '@' or
|
|
'r'; in essence, a new #GVariant must always be constructed by this
|
|
function (and not merely passed through it unmodified).
|
|
|
|
Note that the arguments must be of the correct width for their types
|
|
specified in @format_string. This can be achieved by casting them. See
|
|
the [GVariant varargs documentation][gvariant-varargs].
|
|
|
|
|[<!-- language="C" -->
|
|
MyFlags some_flags = FLAG_ONE | FLAG_TWO;
|
|
const gchar *some_strings[] = { "a", "b", "c", NULL };
|
|
GVariant *new_variant;
|
|
|
|
new_variant = g_variant_new ("(t^as)",
|
|
// This cast is required.
|
|
(guint64) some_flags,
|
|
some_strings);
|
|
]|</doc>
|
|
<source-position filename="gvariant.h" line="395"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37508">a new floating #GVariant instance</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="format_string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37476">a #GVariant format string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="..." transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37477">arguments, as per @format_string</doc>
|
|
<varargs/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="new_array" c:identifier="g_variant_new_array" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37513">Creates a new #GVariant array from @children.
|
|
|
|
@child_type must be non-%NULL if @n_children is zero. Otherwise, the
|
|
child type is determined by inspecting the first element of the
|
|
@children array. If @child_type is non-%NULL then it must be a
|
|
definite type.
|
|
|
|
The items of the array are taken from the @children array. No entry
|
|
in the @children array may be %NULL.
|
|
|
|
All items in the array must have the same type, which must be the
|
|
same as @child_type, if given.
|
|
|
|
If the @children are floating references (see g_variant_ref_sink()), the
|
|
new instance takes ownership of them as if via g_variant_ref_sink().</doc>
|
|
<source-position filename="gvariant.h" line="189"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37536">a floating reference to a new #GVariant array</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="child_type" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37515">the element type of the new array</doc>
|
|
<type name="VariantType" c:type="const GVariantType*"/>
|
|
</parameter>
|
|
<parameter name="children" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37516">an array of
|
|
#GVariant pointers, the children</doc>
|
|
<array length="2" zero-terminated="0" c:type="GVariant* const*">
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="n_children" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37518">the length of @children</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="new_boolean" c:identifier="g_variant_new_boolean" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37541">Creates a new boolean #GVariant instance -- either %TRUE or %FALSE.</doc>
|
|
<source-position filename="gvariant.h" line="81"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37547">a floating reference to a new boolean #GVariant instance</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37543">a #gboolean value</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="new_byte" c:identifier="g_variant_new_byte" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37552">Creates a new byte #GVariant instance.</doc>
|
|
<source-position filename="gvariant.h" line="83"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37558">a floating reference to a new byte #GVariant instance</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37554">a #guint8 value</doc>
|
|
<type name="guint8" c:type="guint8"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="new_bytestring" c:identifier="g_variant_new_bytestring" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37563">Creates an array-of-bytes #GVariant with the contents of @string.
|
|
This function is just like g_variant_new_string() except that the
|
|
string need not be valid UTF-8.
|
|
|
|
The nul terminator character at the end of the string is stored in
|
|
the array.</doc>
|
|
<source-position filename="gvariant.h" line="124"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37575">a floating reference to a new bytestring #GVariant instance</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37565">a normal
|
|
nul-terminated string in no particular encoding</doc>
|
|
<array c:type="const gchar*">
|
|
<type name="guint8"/>
|
|
</array>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="new_bytestring_array" c:identifier="g_variant_new_bytestring_array" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37580">Constructs an array of bytestring #GVariant from the given array of
|
|
strings.
|
|
|
|
If @length is -1 then @strv is %NULL-terminated.</doc>
|
|
<source-position filename="gvariant.h" line="126"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37590">a new floating #GVariant instance</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="strv" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37582">an array of strings</doc>
|
|
<array length="1" zero-terminated="0" c:type="const gchar* const*">
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="length" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37583">the length of @strv, or -1</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="new_dict_entry" c:identifier="g_variant_new_dict_entry" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37595">Creates a new dictionary entry #GVariant. @key and @value must be
|
|
non-%NULL. @key must be a value of a basic type (ie: not a container).
|
|
|
|
If the @key or @value are floating references (see g_variant_ref_sink()),
|
|
the new instance takes ownership of them as if via g_variant_ref_sink().</doc>
|
|
<source-position filename="gvariant.h" line="196"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37606">a floating reference to a new dictionary entry #GVariant</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="key" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37597">a basic #GVariant, the key</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</parameter>
|
|
<parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37598">a #GVariant, the value</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="new_double" c:identifier="g_variant_new_double" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37611">Creates a new double #GVariant instance.</doc>
|
|
<source-position filename="gvariant.h" line="99"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37617">a floating reference to a new double #GVariant instance</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37613">a #gdouble floating point value</doc>
|
|
<type name="gdouble" c:type="gdouble"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="new_fixed_array" c:identifier="g_variant_new_fixed_array" version="2.32">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37622">Constructs a new array #GVariant instance, where the elements are
|
|
of @element_type type.
|
|
|
|
@elements must be an array with fixed-sized elements. Numeric types are
|
|
fixed-size as are tuples containing only other fixed-sized types.
|
|
|
|
@element_size must be the size of a single element in the array.
|
|
For example, if calling this function for an array of 32-bit integers,
|
|
you might say sizeof(gint32). This value isn't used except for the purpose
|
|
of a double-check that the form of the serialised data matches the caller's
|
|
expectation.
|
|
|
|
@n_elements must be the length of the @elements array.</doc>
|
|
<source-position filename="gvariant.h" line="129"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37643">a floating reference to a new array #GVariant instance</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="element_type" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37624">the #GVariantType of each element</doc>
|
|
<type name="VariantType" c:type="const GVariantType*"/>
|
|
</parameter>
|
|
<parameter name="elements" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37625">a pointer to the fixed array of contiguous elements</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
<parameter name="n_elements" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37626">the number of elements</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
<parameter name="element_size" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37627">the size of each element</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="new_from_bytes" c:identifier="g_variant_new_from_bytes" version="2.36">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37648">Constructs a new serialised-mode #GVariant instance. This is the
|
|
inner interface for creation of new serialised values that gets
|
|
called from various functions in gvariant.c.
|
|
|
|
A reference is taken on @bytes.
|
|
|
|
The data in @bytes must be aligned appropriately for the @type being loaded.
|
|
Otherwise this function will internally create a copy of the memory (since
|
|
GLib 2.60) or (in older versions) fail and exit the process.</doc>
|
|
<source-position filename="gvariant.h" line="257"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37664">a new #GVariant with a floating reference</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="type" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37650">a #GVariantType</doc>
|
|
<type name="VariantType" c:type="const GVariantType*"/>
|
|
</parameter>
|
|
<parameter name="bytes" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37651">a #GBytes</doc>
|
|
<type name="Bytes" c:type="GBytes*"/>
|
|
</parameter>
|
|
<parameter name="trusted" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37652">if the contents of @bytes are trusted</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="new_from_data" c:identifier="g_variant_new_from_data" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37669">Creates a new #GVariant instance from serialised data.
|
|
|
|
@type is the type of #GVariant instance that will be constructed.
|
|
The interpretation of @data depends on knowing the type.
|
|
|
|
@data is not modified by this function and must remain valid with an
|
|
unchanging value until such a time as @notify is called with
|
|
@user_data. If the contents of @data change before that time then
|
|
the result is undefined.
|
|
|
|
If @data is trusted to be serialised data in normal form then
|
|
@trusted should be %TRUE. This applies to serialised data created
|
|
within this process or read from a trusted location on the disk (such
|
|
as a file installed in /usr/lib alongside your application). You
|
|
should set trusted to %FALSE if @data is read from the network, a
|
|
file in the user's home directory, etc.
|
|
|
|
If @data was not stored in this machine's native endianness, any multi-byte
|
|
numeric values in the returned variant will also be in non-native
|
|
endianness. g_variant_byteswap() can be used to recover the original values.
|
|
|
|
@notify will be called with @user_data when @data is no longer
|
|
needed. The exact time of this call is unspecified and might even be
|
|
before this function returns.
|
|
|
|
Note: @data must be backed by memory that is aligned appropriately for the
|
|
@type being loaded. Otherwise this function will internally create a copy of
|
|
the memory (since GLib 2.60) or (in older versions) fail and exit the
|
|
process.</doc>
|
|
<source-position filename="gvariant.h" line="261"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37708">a new floating #GVariant of type @type</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="type" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37671">a definite #GVariantType</doc>
|
|
<type name="VariantType" c:type="const GVariantType*"/>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37672">the serialised data</doc>
|
|
<array length="2" zero-terminated="0" c:type="gconstpointer">
|
|
<type name="guint8"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="size" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37673">the size of @data</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
<parameter name="trusted" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37674">%TRUE if @data is definitely in normal form</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
<parameter name="notify" transfer-ownership="none" scope="async">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37675">function to call when @data is no longer needed</doc>
|
|
<type name="DestroyNotify" c:type="GDestroyNotify"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37676">data for @notify</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="new_handle" c:identifier="g_variant_new_handle" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37713">Creates a new handle #GVariant instance.
|
|
|
|
By convention, handles are indexes into an array of file descriptors
|
|
that are sent alongside a D-Bus message. If you're not interacting
|
|
with D-Bus, you probably don't need them.</doc>
|
|
<source-position filename="gvariant.h" line="97"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37723">a floating reference to a new handle #GVariant instance</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37715">a #gint32 value</doc>
|
|
<type name="gint32" c:type="gint32"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="new_int16" c:identifier="g_variant_new_int16" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37728">Creates a new int16 #GVariant instance.</doc>
|
|
<source-position filename="gvariant.h" line="85"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37734">a floating reference to a new int16 #GVariant instance</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37730">a #gint16 value</doc>
|
|
<type name="gint16" c:type="gint16"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="new_int32" c:identifier="g_variant_new_int32" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37739">Creates a new int32 #GVariant instance.</doc>
|
|
<source-position filename="gvariant.h" line="89"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37745">a floating reference to a new int32 #GVariant instance</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37741">a #gint32 value</doc>
|
|
<type name="gint32" c:type="gint32"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="new_int64" c:identifier="g_variant_new_int64" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37750">Creates a new int64 #GVariant instance.</doc>
|
|
<source-position filename="gvariant.h" line="93"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37756">a floating reference to a new int64 #GVariant instance</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37752">a #gint64 value</doc>
|
|
<type name="gint64" c:type="gint64"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="new_maybe" c:identifier="g_variant_new_maybe" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37761">Depending on if @child is %NULL, either wraps @child inside of a
|
|
maybe container or creates a Nothing instance for the given @type.
|
|
|
|
At least one of @child_type and @child must be non-%NULL.
|
|
If @child_type is non-%NULL then it must be a definite type.
|
|
If they are both non-%NULL then @child_type must be the type
|
|
of @child.
|
|
|
|
If @child is a floating reference (see g_variant_ref_sink()), the new
|
|
instance takes ownership of @child.</doc>
|
|
<source-position filename="gvariant.h" line="186"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37777">a floating reference to a new #GVariant maybe instance</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="child_type" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37763">the #GVariantType of the child, or %NULL</doc>
|
|
<type name="VariantType" c:type="const GVariantType*"/>
|
|
</parameter>
|
|
<parameter name="child" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37764">the child value, or %NULL</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="new_object_path" c:identifier="g_variant_new_object_path" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37782">Creates a D-Bus object path #GVariant with the contents of @string.
|
|
@string must be a valid D-Bus object path. Use
|
|
g_variant_is_object_path() if you're not sure.</doc>
|
|
<source-position filename="gvariant.h" line="108"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37790">a floating reference to a new object path #GVariant instance</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="object_path" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37784">a normal C nul-terminated string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="new_objv" c:identifier="g_variant_new_objv" version="2.30">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37795">Constructs an array of object paths #GVariant from the given array of
|
|
strings.
|
|
|
|
Each string must be a valid #GVariant object path; see
|
|
g_variant_is_object_path().
|
|
|
|
If @length is -1 then @strv is %NULL-terminated.</doc>
|
|
<source-position filename="gvariant.h" line="121"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37808">a new floating #GVariant instance</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="strv" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37797">an array of strings</doc>
|
|
<array length="1" zero-terminated="0" c:type="const gchar* const*">
|
|
<type name="utf8"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="length" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37798">the length of @strv, or -1</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="new_parsed" c:identifier="g_variant_new_parsed" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37813">Parses @format and returns the result.
|
|
|
|
@format must be a text format #GVariant with one extension: at any
|
|
point that a value may appear in the text, a '%' character followed
|
|
by a GVariant format string (as per g_variant_new()) may appear. In
|
|
that case, the same arguments are collected from the argument list as
|
|
g_variant_new() would have collected.
|
|
|
|
Note that the arguments must be of the correct width for their types
|
|
specified in @format. This can be achieved by casting them. See
|
|
the [GVariant varargs documentation][gvariant-varargs].
|
|
|
|
Consider this simple example:
|
|
|[<!-- language="C" -->
|
|
g_variant_new_parsed ("[('one', 1), ('two', %i), (%s, 3)]", 2, "three");
|
|
]|
|
|
|
|
In the example, the variable argument parameters are collected and
|
|
filled in as if they were part of the original string to produce the
|
|
result of
|
|
|[<!-- language="C" -->
|
|
[('one', 1), ('two', 2), ('three', 3)]
|
|
]|
|
|
|
|
This function is intended only to be used with @format as a string
|
|
literal. Any parse error is fatal to the calling process. If you
|
|
want to parse data from untrusted sources, use g_variant_parse().
|
|
|
|
You may not use this function to return, unmodified, a single
|
|
#GVariant pointer from the argument list. ie: @format may not solely
|
|
be anything along the lines of "%*", "%?", "\%r", or anything starting
|
|
with "%@".</doc>
|
|
<source-position filename="gvariant.h" line="422"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37851">a new floating #GVariant instance</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="format" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37815">a text format #GVariant</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="..." transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37816">arguments as per @format</doc>
|
|
<varargs/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="new_parsed_va" c:identifier="g_variant_new_parsed_va" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37855">Parses @format and returns the result.
|
|
|
|
This is the version of g_variant_new_parsed() intended to be used
|
|
from libraries.
|
|
|
|
The return value will be floating if it was a newly created GVariant
|
|
instance. In the case that @format simply specified the collection
|
|
of a #GVariant pointer (eg: @format was "%*") then the collected
|
|
#GVariant pointer will be returned unmodified, without adding any
|
|
additional references.
|
|
|
|
Note that the arguments in @app must be of the correct width for their types
|
|
specified in @format when collected into the #va_list. See
|
|
the [GVariant varargs documentation][gvariant-varargs].
|
|
|
|
In order to behave correctly in all cases it is necessary for the
|
|
calling function to g_variant_ref_sink() the return result before
|
|
returning control to the user that originally provided the pointer.
|
|
At this point, the caller will have their own full reference to the
|
|
result. This can also be done by adding the result to a container,
|
|
or by passing it to another g_variant_new() call.</doc>
|
|
<source-position filename="gvariant.h" line="425"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37882">a new, usually floating, #GVariant</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="format" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37857">a text format #GVariant</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="app" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37858">a pointer to a #va_list</doc>
|
|
<type name="va_list" c:type="va_list*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="new_printf" c:identifier="g_variant_new_printf" version="2.38" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37886">Creates a string-type GVariant using printf formatting.
|
|
|
|
This is similar to calling g_strdup_printf() and then
|
|
g_variant_new_string() but it saves a temporary variable and an
|
|
unnecessary copy.</doc>
|
|
<source-position filename="gvariant.h" line="105"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37897">a floating reference to a new string
|
|
#GVariant instance</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="format_string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37888">a printf-style format string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="..." transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37889">arguments for @format_string</doc>
|
|
<varargs/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="new_signature" c:identifier="g_variant_new_signature" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37903">Creates a D-Bus type signature #GVariant with the contents of
|
|
@string. @string must be a valid D-Bus type signature. Use
|
|
g_variant_is_signature() if you're not sure.</doc>
|
|
<source-position filename="gvariant.h" line="112"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37911">a floating reference to a new signature #GVariant instance</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="signature" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37905">a normal C nul-terminated string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="new_string" c:identifier="g_variant_new_string" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37916">Creates a string #GVariant with the contents of @string.
|
|
|
|
@string must be valid UTF-8, and must not be %NULL. To encode
|
|
potentially-%NULL strings, use g_variant_new() with `ms` as the
|
|
[format string][gvariant-format-strings-maybe-types].</doc>
|
|
<source-position filename="gvariant.h" line="101"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37926">a floating reference to a new string #GVariant instance</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37918">a normal UTF-8 nul-terminated string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="new_strv" c:identifier="g_variant_new_strv" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37931">Constructs an array of strings #GVariant from the given array of
|
|
strings.
|
|
|
|
If @length is -1 then @strv is %NULL-terminated.</doc>
|
|
<source-position filename="gvariant.h" line="118"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37941">a new floating #GVariant instance</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="strv" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37933">an array of strings</doc>
|
|
<array length="1" zero-terminated="0" c:type="const gchar* const*">
|
|
<type name="utf8"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="length" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37934">the length of @strv, or -1</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="new_take_string" c:identifier="g_variant_new_take_string" version="2.38" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37946">Creates a string #GVariant with the contents of @string.
|
|
|
|
@string must be valid UTF-8, and must not be %NULL. To encode
|
|
potentially-%NULL strings, use this with g_variant_new_maybe().
|
|
|
|
This function consumes @string. g_free() will be called on @string
|
|
when it is no longer required.
|
|
|
|
You must not modify or access @string in any other way after passing
|
|
it to this function. It is even possible that @string is immediately
|
|
freed.</doc>
|
|
<source-position filename="gvariant.h" line="103"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37962">a floating reference to a new string
|
|
#GVariant instance</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37948">a normal UTF-8 nul-terminated string</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="new_tuple" c:identifier="g_variant_new_tuple" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37968">Creates a new tuple #GVariant out of the items in @children. The
|
|
type is determined from the types of @children. No entry in the
|
|
@children array may be %NULL.
|
|
|
|
If @n_children is 0 then the unit tuple is constructed.
|
|
|
|
If the @children are floating references (see g_variant_ref_sink()), the
|
|
new instance takes ownership of them as if via g_variant_ref_sink().</doc>
|
|
<source-position filename="gvariant.h" line="193"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37982">a floating reference to a new #GVariant tuple</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="children" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37970">the items to make the tuple out of</doc>
|
|
<array length="1" zero-terminated="0" c:type="GVariant* const*">
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="n_children" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37971">the length of @children</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="new_uint16" c:identifier="g_variant_new_uint16" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37987">Creates a new uint16 #GVariant instance.</doc>
|
|
<source-position filename="gvariant.h" line="87"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37993">a floating reference to a new uint16 #GVariant instance</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37989">a #guint16 value</doc>
|
|
<type name="guint16" c:type="guint16"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="new_uint32" c:identifier="g_variant_new_uint32" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37998">Creates a new uint32 #GVariant instance.</doc>
|
|
<source-position filename="gvariant.h" line="91"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38004">a floating reference to a new uint32 #GVariant instance</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38000">a #guint32 value</doc>
|
|
<type name="guint32" c:type="guint32"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="new_uint64" c:identifier="g_variant_new_uint64" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38009">Creates a new uint64 #GVariant instance.</doc>
|
|
<source-position filename="gvariant.h" line="95"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38015">a floating reference to a new uint64 #GVariant instance</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38011">a #guint64 value</doc>
|
|
<type name="guint64" c:type="guint64"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="new_va" c:identifier="g_variant_new_va" version="2.24" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38020">This function is intended to be used by libraries based on
|
|
#GVariant that want to provide g_variant_new()-like functionality
|
|
to their users.
|
|
|
|
The API is more general than g_variant_new() to allow a wider range
|
|
of possible uses.
|
|
|
|
@format_string must still point to a valid format string, but it only
|
|
needs to be nul-terminated if @endptr is %NULL. If @endptr is
|
|
non-%NULL then it is updated to point to the first character past the
|
|
end of the format string.
|
|
|
|
@app is a pointer to a #va_list. The arguments, according to
|
|
@format_string, are collected from this #va_list and the list is left
|
|
pointing to the argument following the last.
|
|
|
|
Note that the arguments in @app must be of the correct width for their
|
|
types specified in @format_string when collected into the #va_list.
|
|
See the [GVariant varargs documentation][gvariant-varargs].
|
|
|
|
These two generalisations allow mixing of multiple calls to
|
|
g_variant_new_va() and g_variant_get_va() within a single actual
|
|
varargs call by the user.
|
|
|
|
The return value will be floating if it was a newly created GVariant
|
|
instance (for example, if the format string was "(ii)"). In the case
|
|
that the format_string was '*', '?', 'r', or a format starting with
|
|
'@' then the collected #GVariant pointer will be returned unmodified,
|
|
without adding any additional references.
|
|
|
|
In order to behave correctly in all cases it is necessary for the
|
|
calling function to g_variant_ref_sink() the return result before
|
|
returning control to the user that originally provided the pointer.
|
|
At this point, the caller will have their own full reference to the
|
|
result. This can also be done by adding the result to a container,
|
|
or by passing it to another g_variant_new() call.</doc>
|
|
<source-position filename="gvariant.h" line="402"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38064">a new, usually floating, #GVariant</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="format_string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38022">a string that is prefixed with a format string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="endptr" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38023">location to store the end pointer,
|
|
or %NULL</doc>
|
|
<type name="utf8" c:type="const gchar**"/>
|
|
</parameter>
|
|
<parameter name="app" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38025">a pointer to a #va_list</doc>
|
|
<type name="va_list" c:type="va_list*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="new_variant" c:identifier="g_variant_new_variant" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38069">Boxes @value. The result is a #GVariant instance representing a
|
|
variant containing the original value.
|
|
|
|
If @child is a floating reference (see g_variant_ref_sink()), the new
|
|
instance takes ownership of @child.</doc>
|
|
<source-position filename="gvariant.h" line="116"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38079">a floating reference to a new variant #GVariant instance</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38071">a #GVariant instance</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<method name="byteswap" c:identifier="g_variant_byteswap" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36041">Performs a byteswapping operation on the contents of @value. The
|
|
result is that all multi-byte numeric data contained in @value is
|
|
byteswapped. That includes 16, 32, and 64bit signed and unsigned
|
|
integers as well as file handles and double precision floating point
|
|
values.
|
|
|
|
This function is an identity mapping on any value that does not
|
|
contain multi-byte numeric data. That include strings, booleans,
|
|
bytes and containers containing only these things (recursively).
|
|
|
|
The returned value is always in normal form and is marked as trusted.</doc>
|
|
<source-position filename="gvariant.h" line="254"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36057">the byteswapped form of @value</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36043">a #GVariant</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="check_format_string" c:identifier="g_variant_check_format_string" version="2.34">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36062">Checks if calling g_variant_get() with @format_string on @value would
|
|
be valid from a type-compatibility standpoint. @format_string is
|
|
assumed to be a valid format string (from a syntactic standpoint).
|
|
|
|
If @copy_only is %TRUE then this function additionally checks that it
|
|
would be safe to call g_variant_unref() on @value immediately after
|
|
the call to g_variant_get() without invalidating the result. This is
|
|
only possible if deep copies are made (ie: there are no pointers to
|
|
the data inside of the soon-to-be-freed #GVariant instance). If this
|
|
check fails then a g_critical() is printed and %FALSE is returned.
|
|
|
|
This function is meant to be used by functions that wish to provide
|
|
varargs accessors to #GVariant values of uncertain values (eg:
|
|
g_variant_lookup() or g_menu_model_get_item_attribute()).</doc>
|
|
<source-position filename="gvariant.h" line="411"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36083">%TRUE if @format_string is safe to use</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36064">a #GVariant</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</instance-parameter>
|
|
<parameter name="format_string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36065">a valid #GVariant format string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="copy_only" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36066">%TRUE to ensure the format string makes deep copies</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="classify" c:identifier="g_variant_classify" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36088">Classifies @value according to its top-level type.</doc>
|
|
<source-position filename="gvariant.h" line="79"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36094">the #GVariantClass of @value</doc>
|
|
<type name="VariantClass" c:type="GVariantClass"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36090">a #GVariant</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="compare" c:identifier="g_variant_compare" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36099">Compares @one and @two.
|
|
|
|
The types of @one and @two are #gconstpointer only to allow use of
|
|
this function with #GTree, #GPtrArray, etc. They must each be a
|
|
#GVariant.
|
|
|
|
Comparison is only defined for basic types (ie: booleans, numbers,
|
|
strings). For booleans, %FALSE is less than %TRUE. Numbers are
|
|
ordered in the usual way. Strings are in ASCII lexographical order.
|
|
|
|
It is a programmer error to attempt to compare container values or
|
|
two values that have types that are not exactly equal. For example,
|
|
you cannot compare a 32-bit signed integer with a 32-bit unsigned
|
|
integer. Also note that this function is not particularly
|
|
well-behaved when it comes to comparison of doubles; in particular,
|
|
the handling of incomparable values (ie: NaN) is undefined.
|
|
|
|
If you only require an equality comparison, g_variant_equal() is more
|
|
general.</doc>
|
|
<source-position filename="gvariant.h" line="433"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36124">negative value if a < b;
|
|
zero if a = b;
|
|
positive value if a > b.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="one" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36101">a basic-typed #GVariant instance</doc>
|
|
<type name="Variant" c:type="gconstpointer"/>
|
|
</instance-parameter>
|
|
<parameter name="two" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36102">a #GVariant instance of the same type</doc>
|
|
<type name="Variant" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="dup_bytestring" c:identifier="g_variant_dup_bytestring" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36348">Similar to g_variant_get_bytestring() except that instead of
|
|
returning a constant string, the string is duplicated.
|
|
|
|
The return value must be freed using g_free().</doc>
|
|
<source-position filename="gvariant.h" line="176"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36359">
|
|
a newly allocated string</doc>
|
|
<array length="0" zero-terminated="1" c:type="gchar*">
|
|
<type name="guint8"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36350">an array-of-bytes #GVariant instance</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</instance-parameter>
|
|
<parameter name="length" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36351">a pointer to a #gsize, to store
|
|
the length (not including the nul terminator)</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="dup_bytestring_array" c:identifier="g_variant_dup_bytestring_array" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36365">Gets the contents of an array of array of bytes #GVariant. This call
|
|
makes a deep copy; the return result should be released with
|
|
g_strfreev().
|
|
|
|
If @length is non-%NULL then the number of elements in the result is
|
|
stored there. In any case, the resulting array will be
|
|
%NULL-terminated.
|
|
|
|
For an empty array, @length will be set to 0 and a pointer to a
|
|
%NULL pointer will be returned.</doc>
|
|
<source-position filename="gvariant.h" line="182"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36381">an array of strings</doc>
|
|
<array length="0" zero-terminated="0" c:type="gchar**">
|
|
<type name="utf8"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36367">an array of array of bytes #GVariant ('aay')</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</instance-parameter>
|
|
<parameter name="length" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36368">the length of the result, or %NULL</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="dup_objv" c:identifier="g_variant_dup_objv" version="2.30">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36386">Gets the contents of an array of object paths #GVariant. This call
|
|
makes a deep copy; the return result should be released with
|
|
g_strfreev().
|
|
|
|
If @length is non-%NULL then the number of elements in the result
|
|
is stored there. In any case, the resulting array will be
|
|
%NULL-terminated.
|
|
|
|
For an empty array, @length will be set to 0 and a pointer to a
|
|
%NULL pointer will be returned.</doc>
|
|
<source-position filename="gvariant.h" line="171"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36402">an array of strings</doc>
|
|
<array length="0" zero-terminated="1" c:type="gchar**">
|
|
<type name="utf8"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36388">an array of object paths #GVariant</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</instance-parameter>
|
|
<parameter name="length" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36389">the length of the result, or %NULL</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="dup_string" c:identifier="g_variant_dup_string" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36407">Similar to g_variant_get_string() except that instead of returning
|
|
a constant string, the string is duplicated.
|
|
|
|
The string will always be UTF-8 encoded.
|
|
|
|
The return value must be freed using g_free().</doc>
|
|
<source-position filename="gvariant.h" line="159"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36419">a newly allocated string, UTF-8 encoded</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36409">a string #GVariant instance</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</instance-parameter>
|
|
<parameter name="length" direction="out" caller-allocates="0" transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36410">a pointer to a #gsize, to store the length</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="dup_strv" c:identifier="g_variant_dup_strv" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36424">Gets the contents of an array of strings #GVariant. This call
|
|
makes a deep copy; the return result should be released with
|
|
g_strfreev().
|
|
|
|
If @length is non-%NULL then the number of elements in the result
|
|
is stored there. In any case, the resulting array will be
|
|
%NULL-terminated.
|
|
|
|
For an empty array, @length will be set to 0 and a pointer to a
|
|
%NULL pointer will be returned.</doc>
|
|
<source-position filename="gvariant.h" line="165"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36440">an array of strings</doc>
|
|
<array length="0" zero-terminated="1" c:type="gchar**">
|
|
<type name="utf8"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36426">an array of strings #GVariant</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</instance-parameter>
|
|
<parameter name="length" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36427">the length of the result, or %NULL</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="equal" c:identifier="g_variant_equal" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36445">Checks if @one and @two have the same type and value.
|
|
|
|
The types of @one and @two are #gconstpointer only to allow use of
|
|
this function with #GHashTable. They must each be a #GVariant.</doc>
|
|
<source-position filename="gvariant.h" line="246"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36455">%TRUE if @one and @two are equal</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="one" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36447">a #GVariant instance</doc>
|
|
<type name="Variant" c:type="gconstpointer"/>
|
|
</instance-parameter>
|
|
<parameter name="two" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36448">a #GVariant instance</doc>
|
|
<type name="Variant" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get" c:identifier="g_variant_get" version="2.24" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36460">Deconstructs a #GVariant instance.
|
|
|
|
Think of this function as an analogue to scanf().
|
|
|
|
The arguments that are expected by this function are entirely
|
|
determined by @format_string. @format_string also restricts the
|
|
permissible types of @value. It is an error to give a value with
|
|
an incompatible type. See the section on
|
|
[GVariant format strings][gvariant-format-strings].
|
|
Please note that the syntax of the format string is very likely to be
|
|
extended in the future.
|
|
|
|
@format_string determines the C types that are used for unpacking
|
|
the values and also determines if the values are copied or borrowed,
|
|
see the section on
|
|
[GVariant format strings][gvariant-format-strings-pointers].</doc>
|
|
<source-position filename="gvariant.h" line="398"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36462">a #GVariant instance</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</instance-parameter>
|
|
<parameter name="format_string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36463">a #GVariant format string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="..." transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36464">arguments, as per @format_string</doc>
|
|
<varargs/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_boolean" c:identifier="g_variant_get_boolean" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36487">Returns the boolean value of @value.
|
|
|
|
It is an error to call this function with a @value of any type
|
|
other than %G_VARIANT_TYPE_BOOLEAN.</doc>
|
|
<source-position filename="gvariant.h" line="134"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36496">%TRUE or %FALSE</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36489">a boolean #GVariant instance</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_byte" c:identifier="g_variant_get_byte" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36501">Returns the byte value of @value.
|
|
|
|
It is an error to call this function with a @value of any type
|
|
other than %G_VARIANT_TYPE_BYTE.</doc>
|
|
<source-position filename="gvariant.h" line="136"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36510">a #guint8</doc>
|
|
<type name="guint8" c:type="guint8"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36503">a byte #GVariant instance</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_bytestring" c:identifier="g_variant_get_bytestring" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36515">Returns the string value of a #GVariant instance with an
|
|
array-of-bytes type. The string has no particular encoding.
|
|
|
|
If the array does not end with a nul terminator character, the empty
|
|
string is returned. For this reason, you can always trust that a
|
|
non-%NULL nul-terminated string will be returned by this function.
|
|
|
|
If the array contains a nul terminator character somewhere other than
|
|
the last byte then the returned string is the string, up to the first
|
|
such nul character.
|
|
|
|
g_variant_get_fixed_array() should be used instead if the array contains
|
|
arbitrary data that could not be nul-terminated or could contain nul bytes.
|
|
|
|
It is an error to call this function with a @value that is not an
|
|
array of bytes.
|
|
|
|
The return value remains valid as long as @value exists.</doc>
|
|
<source-position filename="gvariant.h" line="174"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36538">
|
|
the constant string</doc>
|
|
<array c:type="const gchar*">
|
|
<type name="guint8"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36517">an array-of-bytes #GVariant instance</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_bytestring_array" c:identifier="g_variant_get_bytestring_array" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36544">Gets the contents of an array of array of bytes #GVariant. This call
|
|
makes a shallow copy; the return result should be released with
|
|
g_free(), but the individual strings must not be modified.
|
|
|
|
If @length is non-%NULL then the number of elements in the result is
|
|
stored there. In any case, the resulting array will be
|
|
%NULL-terminated.
|
|
|
|
For an empty array, @length will be set to 0 and a pointer to a
|
|
%NULL pointer will be returned.</doc>
|
|
<source-position filename="gvariant.h" line="179"/>
|
|
<return-value transfer-ownership="container">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36560">an array of constant strings</doc>
|
|
<array length="0" zero-terminated="0" c:type="const gchar**">
|
|
<type name="utf8"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36546">an array of array of bytes #GVariant ('aay')</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</instance-parameter>
|
|
<parameter name="length" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36547">the length of the result, or %NULL</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_child" c:identifier="g_variant_get_child" version="2.24" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36565">Reads a child item out of a container #GVariant instance and
|
|
deconstructs it according to @format_string. This call is
|
|
essentially a combination of g_variant_get_child_value() and
|
|
g_variant_get().
|
|
|
|
@format_string determines the C types that are used for unpacking
|
|
the values and also determines if the values are copied or borrowed,
|
|
see the section on
|
|
[GVariant format strings][gvariant-format-strings-pointers].</doc>
|
|
<source-position filename="gvariant.h" line="204"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36567">a container #GVariant</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</instance-parameter>
|
|
<parameter name="index_" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36568">the index of the child to deconstruct</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
<parameter name="format_string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36569">a #GVariant format string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="..." transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36570">arguments, as per @format_string</doc>
|
|
<varargs/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_child_value" c:identifier="g_variant_get_child_value" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36586">Reads a child item out of a container #GVariant instance. This
|
|
includes variants, maybes, arrays, tuples and dictionary
|
|
entries. It is an error to call this function on any other type of
|
|
#GVariant.
|
|
|
|
It is an error if @index_ is greater than the number of child items
|
|
in the container. See g_variant_n_children().
|
|
|
|
The returned value is never floating. You should free it with
|
|
g_variant_unref() when you're done with it.
|
|
|
|
There may be implementation specific restrictions on deeply nested values,
|
|
which would result in the unit tuple being returned as the child value,
|
|
instead of further nested children. #GVariant is guaranteed to handle
|
|
nesting up to at least 64 levels.
|
|
|
|
This function is O(1).</doc>
|
|
<source-position filename="gvariant.h" line="209"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36609">the child at the specified index</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36588">a container #GVariant</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</instance-parameter>
|
|
<parameter name="index_" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36589">the index of the child to fetch</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_data" c:identifier="g_variant_get_data" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36614">Returns a pointer to the serialised form of a #GVariant instance.
|
|
The returned data may not be in fully-normalised form if read from an
|
|
untrusted source. The returned data must not be freed; it remains
|
|
valid for as long as @value exists.
|
|
|
|
If @value is a fixed-sized value that was deserialised from a
|
|
corrupted serialised container then %NULL may be returned. In this
|
|
case, the proper thing to do is typically to use the appropriate
|
|
number of nul bytes in place of @value. If @value is not fixed-sized
|
|
then %NULL is never returned.
|
|
|
|
In the case that @value is already in serialised form, this function
|
|
is O(1). If the value is not already in serialised form,
|
|
serialisation occurs implicitly and is approximately O(n) in the size
|
|
of the result.
|
|
|
|
To deserialise the data returned by this function, in addition to the
|
|
serialised data, you must know the type of the #GVariant, and (if the
|
|
machine might be different) the endianness of the machine that stored
|
|
it. As a result, file formats or network messages that incorporate
|
|
serialised #GVariants must include this information either
|
|
implicitly (for instance "the file always contains a
|
|
%G_VARIANT_TYPE_VARIANT and it is always in little-endian order") or
|
|
explicitly (by storing the type and/or endianness in addition to the
|
|
serialised data).</doc>
|
|
<source-position filename="gvariant.h" line="228"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36644">the serialised form of @value, or %NULL</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36616">a #GVariant instance</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_data_as_bytes" c:identifier="g_variant_get_data_as_bytes" version="2.36">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36649">Returns a pointer to the serialised form of a #GVariant instance.
|
|
The semantics of this function are exactly the same as
|
|
g_variant_get_data(), except that the returned #GBytes holds
|
|
a reference to the variant data.</doc>
|
|
<source-position filename="gvariant.h" line="230"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36658">A new #GBytes representing the variant data</doc>
|
|
<type name="Bytes" c:type="GBytes*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36651">a #GVariant</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_double" c:identifier="g_variant_get_double" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36663">Returns the double precision floating point value of @value.
|
|
|
|
It is an error to call this function with a @value of any type
|
|
other than %G_VARIANT_TYPE_DOUBLE.</doc>
|
|
<source-position filename="gvariant.h" line="152"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36672">a #gdouble</doc>
|
|
<type name="gdouble" c:type="gdouble"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36665">a double #GVariant instance</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_fixed_array" c:identifier="g_variant_get_fixed_array" version="2.24" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36677">Provides access to the serialised data for an array of fixed-sized
|
|
items.
|
|
|
|
@value must be an array with fixed-sized elements. Numeric types are
|
|
fixed-size, as are tuples containing only other fixed-sized types.
|
|
|
|
@element_size must be the size of a single element in the array,
|
|
as given by the section on
|
|
[serialized data memory][gvariant-serialised-data-memory].
|
|
|
|
In particular, arrays of these fixed-sized types can be interpreted
|
|
as an array of the given C type, with @element_size set to the size
|
|
the appropriate type:
|
|
- %G_VARIANT_TYPE_INT16 (etc.): #gint16 (etc.)
|
|
- %G_VARIANT_TYPE_BOOLEAN: #guchar (not #gboolean!)
|
|
- %G_VARIANT_TYPE_BYTE: #guint8
|
|
- %G_VARIANT_TYPE_HANDLE: #guint32
|
|
- %G_VARIANT_TYPE_DOUBLE: #gdouble
|
|
|
|
For example, if calling this function for an array of 32-bit integers,
|
|
you might say `sizeof(gint32)`. This value isn't used except for the purpose
|
|
of a double-check that the form of the serialised data matches the caller's
|
|
expectation.
|
|
|
|
@n_elements, which must be non-%NULL, is set equal to the number of
|
|
items in the array.</doc>
|
|
<source-position filename="gvariant.h" line="221"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36710">a pointer to
|
|
the fixed array</doc>
|
|
<array length="0" zero-terminated="0" c:type="gconstpointer">
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36679">a #GVariant array with fixed-sized elements</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</instance-parameter>
|
|
<parameter name="n_elements" direction="out" caller-allocates="0" transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36680">a pointer to the location to store the number of items</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
<parameter name="element_size" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36681">the size of each element</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_handle" c:identifier="g_variant_get_handle" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36716">Returns the 32-bit signed integer value of @value.
|
|
|
|
It is an error to call this function with a @value of any type other
|
|
than %G_VARIANT_TYPE_HANDLE.
|
|
|
|
By convention, handles are indexes into an array of file descriptors
|
|
that are sent alongside a D-Bus message. If you're not interacting
|
|
with D-Bus, you probably don't need them.</doc>
|
|
<source-position filename="gvariant.h" line="150"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36729">a #gint32</doc>
|
|
<type name="gint32" c:type="gint32"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36718">a handle #GVariant instance</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_int16" c:identifier="g_variant_get_int16" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36734">Returns the 16-bit signed integer value of @value.
|
|
|
|
It is an error to call this function with a @value of any type
|
|
other than %G_VARIANT_TYPE_INT16.</doc>
|
|
<source-position filename="gvariant.h" line="138"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36743">a #gint16</doc>
|
|
<type name="gint16" c:type="gint16"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36736">a int16 #GVariant instance</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_int32" c:identifier="g_variant_get_int32" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36748">Returns the 32-bit signed integer value of @value.
|
|
|
|
It is an error to call this function with a @value of any type
|
|
other than %G_VARIANT_TYPE_INT32.</doc>
|
|
<source-position filename="gvariant.h" line="142"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36757">a #gint32</doc>
|
|
<type name="gint32" c:type="gint32"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36750">a int32 #GVariant instance</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_int64" c:identifier="g_variant_get_int64" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36762">Returns the 64-bit signed integer value of @value.
|
|
|
|
It is an error to call this function with a @value of any type
|
|
other than %G_VARIANT_TYPE_INT64.</doc>
|
|
<source-position filename="gvariant.h" line="146"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36771">a #gint64</doc>
|
|
<type name="gint64" c:type="gint64"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36764">a int64 #GVariant instance</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_maybe" c:identifier="g_variant_get_maybe" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36776">Given a maybe-typed #GVariant instance, extract its value. If the
|
|
value is Nothing, then this function returns %NULL.</doc>
|
|
<source-position filename="gvariant.h" line="200"/>
|
|
<return-value transfer-ownership="full" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36783">the contents of @value, or %NULL</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36778">a maybe-typed value</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_normal_form" c:identifier="g_variant_get_normal_form" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36788">Gets a #GVariant instance that has the same value as @value and is
|
|
trusted to be in normal form.
|
|
|
|
If @value is already trusted to be in normal form then a new
|
|
reference to @value is returned.
|
|
|
|
If @value is not already trusted, then it is scanned to check if it
|
|
is in normal form. If it is found to be in normal form then it is
|
|
marked as trusted and a new reference to it is returned.
|
|
|
|
If @value is found not to be in normal form then a new trusted
|
|
#GVariant is created with the same value as @value.
|
|
|
|
It makes sense to call this function if you've received #GVariant
|
|
data from untrusted sources and you want to ensure your serialised
|
|
output is definitely in normal form.
|
|
|
|
If @value is already in normal form, a new reference will be returned
|
|
(which will be floating if @value is floating). If it is not in normal form,
|
|
the newly created #GVariant will be returned with a single non-floating
|
|
reference. Typically, g_variant_take_ref() should be called on the return
|
|
value from this function to guarantee ownership of a single non-floating
|
|
reference to it.</doc>
|
|
<source-position filename="gvariant.h" line="250"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36816">a trusted #GVariant</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36790">a #GVariant</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_objv" c:identifier="g_variant_get_objv" version="2.30">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36821">Gets the contents of an array of object paths #GVariant. This call
|
|
makes a shallow copy; the return result should be released with
|
|
g_free(), but the individual strings must not be modified.
|
|
|
|
If @length is non-%NULL then the number of elements in the result
|
|
is stored there. In any case, the resulting array will be
|
|
%NULL-terminated.
|
|
|
|
For an empty array, @length will be set to 0 and a pointer to a
|
|
%NULL pointer will be returned.</doc>
|
|
<source-position filename="gvariant.h" line="168"/>
|
|
<return-value transfer-ownership="container">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36837">an array of constant strings</doc>
|
|
<array length="0" zero-terminated="1" c:type="const gchar**">
|
|
<type name="utf8"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36823">an array of object paths #GVariant</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</instance-parameter>
|
|
<parameter name="length" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36824">the length of the result, or %NULL</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_size" c:identifier="g_variant_get_size" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36842">Determines the number of bytes that would be required to store @value
|
|
with g_variant_store().
|
|
|
|
If @value has a fixed-sized type then this function always returned
|
|
that fixed size.
|
|
|
|
In the case that @value is already in serialised form or the size has
|
|
already been calculated (ie: this function has been called before)
|
|
then this function is O(1). Otherwise, the size is calculated, an
|
|
operation which is approximately O(n) in the number of values
|
|
involved.</doc>
|
|
<source-position filename="gvariant.h" line="226"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36858">the serialised size of @value</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36844">a #GVariant instance</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_string" c:identifier="g_variant_get_string" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36863">Returns the string value of a #GVariant instance with a string
|
|
type. This includes the types %G_VARIANT_TYPE_STRING,
|
|
%G_VARIANT_TYPE_OBJECT_PATH and %G_VARIANT_TYPE_SIGNATURE.
|
|
|
|
The string will always be UTF-8 encoded, and will never be %NULL.
|
|
|
|
If @length is non-%NULL then the length of the string (in bytes) is
|
|
returned there. For trusted values, this information is already
|
|
known. For untrusted values, a strlen() will be performed.
|
|
|
|
It is an error to call this function with a @value of any type
|
|
other than those three.
|
|
|
|
The return value remains valid as long as @value exists.</doc>
|
|
<source-position filename="gvariant.h" line="156"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36884">the constant string, UTF-8 encoded</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36865">a string #GVariant instance</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</instance-parameter>
|
|
<parameter name="length" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36866">a pointer to a #gsize,
|
|
to store the length</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_strv" c:identifier="g_variant_get_strv" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36889">Gets the contents of an array of strings #GVariant. This call
|
|
makes a shallow copy; the return result should be released with
|
|
g_free(), but the individual strings must not be modified.
|
|
|
|
If @length is non-%NULL then the number of elements in the result
|
|
is stored there. In any case, the resulting array will be
|
|
%NULL-terminated.
|
|
|
|
For an empty array, @length will be set to 0 and a pointer to a
|
|
%NULL pointer will be returned.</doc>
|
|
<source-position filename="gvariant.h" line="162"/>
|
|
<return-value transfer-ownership="container">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36905">an array of constant strings</doc>
|
|
<array length="0" zero-terminated="1" c:type="const gchar**">
|
|
<type name="utf8"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36891">an array of strings #GVariant</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</instance-parameter>
|
|
<parameter name="length" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36892">the length of the result, or %NULL</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_type" c:identifier="g_variant_get_type" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36910">Determines the type of @value.
|
|
|
|
The return value is valid for the lifetime of @value and must not
|
|
be freed.</doc>
|
|
<source-position filename="gvariant.h" line="70"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36919">a #GVariantType</doc>
|
|
<type name="VariantType" c:type="const GVariantType*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36912">a #GVariant</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_type_string" c:identifier="g_variant_get_type_string" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36924">Returns the type string of @value. Unlike the result of calling
|
|
g_variant_type_peek_string(), this string is nul-terminated. This
|
|
string belongs to #GVariant and must not be freed.</doc>
|
|
<source-position filename="gvariant.h" line="72"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36932">the type string for the type of @value</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36926">a #GVariant</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_uint16" c:identifier="g_variant_get_uint16" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36937">Returns the 16-bit unsigned integer value of @value.
|
|
|
|
It is an error to call this function with a @value of any type
|
|
other than %G_VARIANT_TYPE_UINT16.</doc>
|
|
<source-position filename="gvariant.h" line="140"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36946">a #guint16</doc>
|
|
<type name="guint16" c:type="guint16"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36939">a uint16 #GVariant instance</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_uint32" c:identifier="g_variant_get_uint32" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36951">Returns the 32-bit unsigned integer value of @value.
|
|
|
|
It is an error to call this function with a @value of any type
|
|
other than %G_VARIANT_TYPE_UINT32.</doc>
|
|
<source-position filename="gvariant.h" line="144"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36960">a #guint32</doc>
|
|
<type name="guint32" c:type="guint32"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36953">a uint32 #GVariant instance</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_uint64" c:identifier="g_variant_get_uint64" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36965">Returns the 64-bit unsigned integer value of @value.
|
|
|
|
It is an error to call this function with a @value of any type
|
|
other than %G_VARIANT_TYPE_UINT64.</doc>
|
|
<source-position filename="gvariant.h" line="148"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36974">a #guint64</doc>
|
|
<type name="guint64" c:type="guint64"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36967">a uint64 #GVariant instance</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_va" c:identifier="g_variant_get_va" version="2.24" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36979">This function is intended to be used by libraries based on #GVariant
|
|
that want to provide g_variant_get()-like functionality to their
|
|
users.
|
|
|
|
The API is more general than g_variant_get() to allow a wider range
|
|
of possible uses.
|
|
|
|
@format_string must still point to a valid format string, but it only
|
|
need to be nul-terminated if @endptr is %NULL. If @endptr is
|
|
non-%NULL then it is updated to point to the first character past the
|
|
end of the format string.
|
|
|
|
@app is a pointer to a #va_list. The arguments, according to
|
|
@format_string, are collected from this #va_list and the list is left
|
|
pointing to the argument following the last.
|
|
|
|
These two generalisations allow mixing of multiple calls to
|
|
g_variant_new_va() and g_variant_get_va() within a single actual
|
|
varargs call by the user.
|
|
|
|
@format_string determines the C types that are used for unpacking
|
|
the values and also determines if the values are copied or borrowed,
|
|
see the section on
|
|
[GVariant format strings][gvariant-format-strings-pointers].</doc>
|
|
<source-position filename="gvariant.h" line="406"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36981">a #GVariant</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</instance-parameter>
|
|
<parameter name="format_string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36982">a string that is prefixed with a format string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="endptr" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36983">location to store the end pointer,
|
|
or %NULL</doc>
|
|
<type name="utf8" c:type="const gchar**"/>
|
|
</parameter>
|
|
<parameter name="app" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36985">a pointer to a #va_list</doc>
|
|
<type name="va_list" c:type="va_list*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_variant" c:identifier="g_variant_get_variant" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37016">Unboxes @value. The result is the #GVariant instance that was
|
|
contained in @value.</doc>
|
|
<source-position filename="gvariant.h" line="154"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37023">the item contained in the variant</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37018">a variant #GVariant instance</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="hash" c:identifier="g_variant_hash" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37028">Generates a hash value for a #GVariant instance.
|
|
|
|
The output of this function is guaranteed to be the same for a given
|
|
value only per-process. It may change between different processor
|
|
architectures or even different versions of GLib. Do not use this
|
|
function as a basis for building protocols or file formats.
|
|
|
|
The type of @value is #gconstpointer only to allow use of this
|
|
function with #GHashTable. @value must be a #GVariant.</doc>
|
|
<source-position filename="gvariant.h" line="244"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37042">a hash value corresponding to @value</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37030">a basic #GVariant value as a #gconstpointer</doc>
|
|
<type name="Variant" c:type="gconstpointer"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="is_container" c:identifier="g_variant_is_container" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37047">Checks if @value is a container.</doc>
|
|
<source-position filename="gvariant.h" line="77"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37053">%TRUE if @value is a container</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37049">a #GVariant instance</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="is_floating" c:identifier="g_variant_is_floating" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37058">Checks whether @value has a floating reference count.
|
|
|
|
This function should only ever be used to assert that a given variant
|
|
is or is not floating, or for debug purposes. To acquire a reference
|
|
to a variant that might be floating, always use g_variant_ref_sink()
|
|
or g_variant_take_ref().
|
|
|
|
See g_variant_ref_sink() for more information about floating reference
|
|
counts.</doc>
|
|
<source-position filename="gvariant.h" line="65"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37072">whether @value is floating</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37060">a #GVariant</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="is_normal_form" c:identifier="g_variant_is_normal_form" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37077">Checks if @value is in normal form.
|
|
|
|
The main reason to do this is to detect if a given chunk of
|
|
serialised data is in normal form: load the data into a #GVariant
|
|
using g_variant_new_from_data() and then use this function to
|
|
check.
|
|
|
|
If @value is found to be in normal form then it will be marked as
|
|
being trusted. If the value was already marked as being trusted then
|
|
this function will immediately return %TRUE.
|
|
|
|
There may be implementation specific restrictions on deeply nested values.
|
|
GVariant is guaranteed to handle nesting up to at least 64 levels.</doc>
|
|
<source-position filename="gvariant.h" line="252"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37095">%TRUE if @value is in normal form</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37079">a #GVariant instance</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="is_of_type" c:identifier="g_variant_is_of_type" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37118">Checks if a value has a type matching the provided type.</doc>
|
|
<source-position filename="gvariant.h" line="74"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37125">%TRUE if the type of @value matches @type</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37120">a #GVariant instance</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</instance-parameter>
|
|
<parameter name="type" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37121">a #GVariantType</doc>
|
|
<type name="VariantType" c:type="const GVariantType*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="iter_new" c:identifier="g_variant_iter_new" version="2.24" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37285">Creates a heap-allocated #GVariantIter for iterating over the items
|
|
in @value.
|
|
|
|
Use g_variant_iter_free() to free the return value when you no longer
|
|
need it.
|
|
|
|
A reference is taken to @value and will be released only when
|
|
g_variant_iter_free() is called.</doc>
|
|
<source-position filename="gvariant.h" line="275"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37298">a new heap-allocated #GVariantIter</doc>
|
|
<type name="VariantIter" c:type="GVariantIter*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37287">a container #GVariant</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="lookup" c:identifier="g_variant_lookup" version="2.28" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37393">Looks up a value in a dictionary #GVariant.
|
|
|
|
This function is a wrapper around g_variant_lookup_value() and
|
|
g_variant_get(). In the case that %NULL would have been returned,
|
|
this function returns %FALSE. Otherwise, it unpacks the returned
|
|
value and returns %TRUE.
|
|
|
|
@format_string determines the C types that are used for unpacking
|
|
the values and also determines if the values are copied or borrowed,
|
|
see the section on
|
|
[GVariant format strings][gvariant-format-strings-pointers].
|
|
|
|
This function is currently implemented with a linear scan. If you
|
|
plan to do many lookups then #GVariantDict may be more efficient.</doc>
|
|
<source-position filename="gvariant.h" line="212"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37415">%TRUE if a value was unpacked</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="dictionary" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37395">a dictionary #GVariant</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</instance-parameter>
|
|
<parameter name="key" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37396">the key to look up in the dictionary</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="format_string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37397">a GVariant format string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="..." transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37398">the arguments to unpack the value into</doc>
|
|
<varargs/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="lookup_value" c:identifier="g_variant_lookup_value" version="2.28">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37420">Looks up a value in a dictionary #GVariant.
|
|
|
|
This function works with dictionaries of the type a{s*} (and equally
|
|
well with type a{o*}, but we only further discuss the string case
|
|
for sake of clarity).
|
|
|
|
In the event that @dictionary has the type a{sv}, the @expected_type
|
|
string specifies what type of value is expected to be inside of the
|
|
variant. If the value inside the variant has a different type then
|
|
%NULL is returned. In the event that @dictionary has a value type other
|
|
than v then @expected_type must directly match the value type and it is
|
|
used to unpack the value directly or an error occurs.
|
|
|
|
In either case, if @key is not found in @dictionary, %NULL is returned.
|
|
|
|
If the key is found and the value has the correct type, it is
|
|
returned. If @expected_type was specified then any non-%NULL return
|
|
value will have this type.
|
|
|
|
This function is currently implemented with a linear scan. If you
|
|
plan to do many lookups then #GVariantDict may be more efficient.</doc>
|
|
<source-position filename="gvariant.h" line="217"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37448">the value of the dictionary key, or %NULL</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="dictionary" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37422">a dictionary #GVariant</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</instance-parameter>
|
|
<parameter name="key" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37423">the key to look up in the dictionary</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="expected_type" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37424">a #GVariantType, or %NULL</doc>
|
|
<type name="VariantType" c:type="const GVariantType*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="n_children" c:identifier="g_variant_n_children" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37453">Determines the number of children in a container #GVariant instance.
|
|
This includes variants, maybes, arrays, tuples and dictionary
|
|
entries. It is an error to call this function on any other type of
|
|
#GVariant.
|
|
|
|
For variants, the return value is always 1. For values with maybe
|
|
types, it is always zero or one. For arrays, it is the length of the
|
|
array. For tuples it is the number of tuple items (which depends
|
|
only on the type). For dictionary entries, it is always 2
|
|
|
|
This function is O(1).</doc>
|
|
<source-position filename="gvariant.h" line="202"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37469">the number of children in the container</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37455">a container #GVariant</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="print" c:identifier="g_variant_print" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38177">Pretty-prints @value in the format understood by g_variant_parse().
|
|
|
|
The format is described [here][gvariant-text].
|
|
|
|
If @type_annotate is %TRUE, then type information is included in
|
|
the output.</doc>
|
|
<source-position filename="gvariant.h" line="236"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38190">a newly-allocated string holding the result.</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38179">a #GVariant</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</instance-parameter>
|
|
<parameter name="type_annotate" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38180">%TRUE if type information should be included in
|
|
the output</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="print_string" c:identifier="g_variant_print_string" version="2.24" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38195">Behaves as g_variant_print(), but operates on a #GString.
|
|
|
|
If @string is non-%NULL then it is appended to and returned. Else,
|
|
a new empty #GString is allocated and it is returned.</doc>
|
|
<source-position filename="gvariant.h" line="239"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38207">a #GString containing the string</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38197">a #GVariant</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</instance-parameter>
|
|
<parameter name="string" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38198">a #GString, or %NULL</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</parameter>
|
|
<parameter name="type_annotate" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38199">%TRUE if type information should be included in
|
|
the output</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="ref" c:identifier="g_variant_ref" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38212">Increases the reference count of @value.</doc>
|
|
<source-position filename="gvariant.h" line="61"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38218">the same @value</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38214">a #GVariant</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="ref_sink" c:identifier="g_variant_ref_sink" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38223">#GVariant uses a floating reference count system. All functions with
|
|
names starting with `g_variant_new_` return floating
|
|
references.
|
|
|
|
Calling g_variant_ref_sink() on a #GVariant with a floating reference
|
|
will convert the floating reference into a full reference. Calling
|
|
g_variant_ref_sink() on a non-floating #GVariant results in an
|
|
additional normal reference being added.
|
|
|
|
In other words, if the @value is floating, then this call "assumes
|
|
ownership" of the floating reference, converting it to a normal
|
|
reference. If the @value is not floating, then this call adds a
|
|
new normal reference increasing the reference count by one.
|
|
|
|
All calls that result in a #GVariant instance being inserted into a
|
|
container will call g_variant_ref_sink() on the instance. This means
|
|
that if the value was just created (and has only its floating
|
|
reference) then the container will assume sole ownership of the value
|
|
at that point and the caller will not need to unreference it. This
|
|
makes certain common styles of programming much easier while still
|
|
maintaining normal refcounting semantics in situations where values
|
|
are not floating.</doc>
|
|
<source-position filename="gvariant.h" line="63"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38250">the same @value</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38225">a #GVariant</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="store" c:identifier="g_variant_store" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38255">Stores the serialised form of @value at @data. @data should be
|
|
large enough. See g_variant_get_size().
|
|
|
|
The stored data is in machine native byte order but may not be in
|
|
fully-normalised form if read from an untrusted source. See
|
|
g_variant_get_normal_form() for a solution.
|
|
|
|
As with g_variant_get_data(), to be able to deserialise the
|
|
serialised variant successfully, its type and (if the destination
|
|
machine might be different) its endianness must also be available.
|
|
|
|
This function is approximately O(n) in the size of @data.</doc>
|
|
<source-position filename="gvariant.h" line="232"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38257">the #GVariant to store</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</instance-parameter>
|
|
<parameter name="data" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38258">the location to store the serialised data at</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="take_ref" c:identifier="g_variant_take_ref">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38277">If @value is floating, sink it. Otherwise, do nothing.
|
|
|
|
Typically you want to use g_variant_ref_sink() in order to
|
|
automatically do the correct thing with respect to floating or
|
|
non-floating references, but there is one specific scenario where
|
|
this function is helpful.
|
|
|
|
The situation where this function is helpful is when creating an API
|
|
that allows the user to provide a callback function that returns a
|
|
#GVariant. We certainly want to allow the user the flexibility to
|
|
return a non-floating reference from this callback (for the case
|
|
where the value that is being returned already exists).
|
|
|
|
At the same time, the style of the #GVariant API makes it likely that
|
|
for newly-created #GVariant instances, the user can be saved some
|
|
typing if they are allowed to return a #GVariant with a floating
|
|
reference.
|
|
|
|
Using this function on the return value of the user's callback allows
|
|
the user to do whichever is more convenient for them. The caller
|
|
will alway receives exactly one full reference to the value: either
|
|
the one that was returned in the first place, or a floating reference
|
|
that has been converted to a full reference.
|
|
|
|
This function has an odd interaction when combined with
|
|
g_variant_ref_sink() running at the same time in another thread on
|
|
the same #GVariant instance. If g_variant_ref_sink() runs first then
|
|
the result will be that the floating reference is converted to a hard
|
|
reference. If g_variant_take_ref() runs first then the result will
|
|
be that the floating reference is converted to a hard reference and
|
|
an additional reference on top of that one is added. It is best to
|
|
avoid this situation.</doc>
|
|
<source-position filename="gvariant.h" line="67"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38314">the same @value</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38279">a #GVariant</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="unref" c:identifier="g_variant_unref" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38815">Decreases the reference count of @value. When its reference count
|
|
drops to 0, the memory used by the variant is freed.</doc>
|
|
<source-position filename="gvariant.h" line="59"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38817">a #GVariant</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<function name="is_object_path" c:identifier="g_variant_is_object_path" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37100">Determines if a given string is a valid D-Bus object path. You
|
|
should ensure that a string is a valid D-Bus object path before
|
|
passing it to g_variant_new_object_path().
|
|
|
|
A valid object path starts with `/` followed by zero or more
|
|
sequences of characters separated by `/` characters. Each sequence
|
|
must contain only the characters `[A-Z][a-z][0-9]_`. No sequence
|
|
(including the one following the final `/` character) may be empty.</doc>
|
|
<source-position filename="gvariant.h" line="110"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37113">%TRUE if @string is a D-Bus object path</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37102">a normal C nul-terminated string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="is_signature" c:identifier="g_variant_is_signature" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37130">Determines if a given string is a valid D-Bus type signature. You
|
|
should ensure that a string is a valid D-Bus type signature before
|
|
passing it to g_variant_new_signature().
|
|
|
|
D-Bus type signatures consist of zero or more definite #GVariantType
|
|
strings in sequence.</doc>
|
|
<source-position filename="gvariant.h" line="114"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37141">%TRUE if @string is a D-Bus type signature</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37132">a normal C nul-terminated string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="parse" c:identifier="g_variant_parse" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38084">Parses a #GVariant from a text representation.
|
|
|
|
A single #GVariant is parsed from the content of @text.
|
|
|
|
The format is described [here][gvariant-text].
|
|
|
|
The memory at @limit will never be accessed and the parser behaves as
|
|
if the character at @limit is the nul terminator. This has the
|
|
effect of bounding @text.
|
|
|
|
If @endptr is non-%NULL then @text is permitted to contain data
|
|
following the value that this function parses and @endptr will be
|
|
updated to point to the first character past the end of the text
|
|
parsed by this function. If @endptr is %NULL and there is extra data
|
|
then an error is returned.
|
|
|
|
If @type is non-%NULL then the value will be parsed to have that
|
|
type. This may result in additional parse errors (in the case that
|
|
the parsed value doesn't fit the type) but may also result in fewer
|
|
errors (in the case that the type would have been ambiguous, such as
|
|
with empty arrays).
|
|
|
|
In the event that the parsing is successful, the resulting #GVariant
|
|
is returned. It is never floating, and must be freed with
|
|
g_variant_unref().
|
|
|
|
In case of any error, %NULL will be returned. If @error is non-%NULL
|
|
then it will be set to reflect the error that occurred.
|
|
|
|
Officially, the language understood by the parser is "any string
|
|
produced by g_variant_print()".</doc>
|
|
<source-position filename="gvariant.h" line="416"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38124">a non-floating reference to a #GVariant, or %NULL</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="type" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38086">a #GVariantType, or %NULL</doc>
|
|
<type name="VariantType" c:type="const GVariantType*"/>
|
|
</parameter>
|
|
<parameter name="text" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38087">a string containing a GVariant in text form</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="limit" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38088">a pointer to the end of @text, or %NULL</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="endptr" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38089">a location to store the end pointer, or %NULL</doc>
|
|
<type name="utf8" c:type="const gchar**"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="parse_error_print_context" c:identifier="g_variant_parse_error_print_context" version="2.40">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38128">Pretty-prints a message showing the context of a #GVariant parse
|
|
error within the string for which parsing was attempted.
|
|
|
|
The resulting string is suitable for output to the console or other
|
|
monospace media where newlines are treated in the usual way.
|
|
|
|
The message will typically look something like one of the following:
|
|
|
|
|[
|
|
unterminated string constant:
|
|
(1, 2, 3, 'abc
|
|
^^^^
|
|
]|
|
|
|
|
or
|
|
|
|
|[
|
|
unable to find a common type:
|
|
[1, 2, 3, 'str']
|
|
^ ^^^^^
|
|
]|
|
|
|
|
The format of the message may change in a future version.
|
|
|
|
@error must have come from a failed attempt to g_variant_parse() and
|
|
@source_str must be exactly the same string that caused the error.
|
|
If @source_str was not nul-terminated when you passed it to
|
|
g_variant_parse() then you must add nul termination before using this
|
|
function.</doc>
|
|
<source-position filename="gvariant.h" line="429"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38163">the printed message</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="error" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38130">a #GError from the #GVariantParseError domain</doc>
|
|
<type name="Error" c:type="GError*"/>
|
|
</parameter>
|
|
<parameter name="source_str" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38131">the string that was given to the parser</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="parse_error_quark" c:identifier="g_variant_parse_error_quark">
|
|
<return-value transfer-ownership="none">
|
|
<type name="Quark" c:type="GQuark"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="parser_get_error_quark" c:identifier="g_variant_parser_get_error_quark" deprecated="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38168">Same as g_variant_error_quark().</doc>
|
|
<doc-deprecated xml:space="preserve">Use g_variant_parse_error_quark() instead.</doc-deprecated>
|
|
<return-value transfer-ownership="none">
|
|
<type name="Quark" c:type="GQuark"/>
|
|
</return-value>
|
|
</function>
|
|
</record>
|
|
<record name="VariantBuilder" c:type="GVariantBuilder" glib:type-name="GVariantBuilder" glib:get-type="g_variant_builder_get_type" c:symbol-prefix="variant_builder">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2549">A utility type for constructing container-type #GVariant instances.
|
|
|
|
This is an opaque structure and may only be accessed using the
|
|
following functions.
|
|
|
|
#GVariantBuilder is not threadsafe in any way. Do not attempt to
|
|
access it from more than one thread.</doc>
|
|
<source-position filename="gvariant.h" line="309"/>
|
|
<union name="u" c:type="u">
|
|
<source-position filename="gvariant.h" line="308"/>
|
|
<record name="s" c:type="s">
|
|
<source-position filename="gvariant.h" line="306"/>
|
|
<field name="partial_magic" writable="1">
|
|
<type name="gsize" c:type="gsize"/>
|
|
</field>
|
|
<field name="type" writable="1">
|
|
<type name="VariantType" c:type="const GVariantType*"/>
|
|
</field>
|
|
<field name="y" writable="1">
|
|
<array zero-terminated="0" fixed-size="14">
|
|
<type name="gsize" c:type="gsize"/>
|
|
</array>
|
|
</field>
|
|
</record>
|
|
<field name="x" writable="1">
|
|
<array zero-terminated="0" fixed-size="16">
|
|
<type name="gsize" c:type="gsize"/>
|
|
</array>
|
|
</field>
|
|
</union>
|
|
<constructor name="new" c:identifier="g_variant_builder_new" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35946">Allocates and initialises a new #GVariantBuilder.
|
|
|
|
You should call g_variant_builder_unref() on the return value when it
|
|
is no longer needed. The memory will not be automatically freed by
|
|
any other call.
|
|
|
|
In most cases it is easier to place a #GVariantBuilder directly on
|
|
the stack of the calling function and initialise it with
|
|
g_variant_builder_init().</doc>
|
|
<source-position filename="gvariant.h" line="365"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35960">a #GVariantBuilder</doc>
|
|
<type name="VariantBuilder" c:type="GVariantBuilder*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="type" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35948">a container type</doc>
|
|
<type name="VariantType" c:type="const GVariantType*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<method name="add" c:identifier="g_variant_builder_add" version="2.24" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35744">Adds to a #GVariantBuilder.
|
|
|
|
This call is a convenience wrapper that is exactly equivalent to
|
|
calling g_variant_new() followed by g_variant_builder_add_value().
|
|
|
|
Note that the arguments must be of the correct width for their types
|
|
specified in @format_string. This can be achieved by casting them. See
|
|
the [GVariant varargs documentation][gvariant-varargs].
|
|
|
|
This function might be used as follows:
|
|
|
|
|[<!-- language="C" -->
|
|
GVariant *
|
|
make_pointless_dictionary (void)
|
|
{
|
|
GVariantBuilder builder;
|
|
int i;
|
|
|
|
g_variant_builder_init (&builder, G_VARIANT_TYPE_ARRAY);
|
|
for (i = 0; i < 16; i++)
|
|
{
|
|
gchar buf[3];
|
|
|
|
sprintf (buf, "%d", i);
|
|
g_variant_builder_add (&builder, "{is}", i, buf);
|
|
}
|
|
|
|
return g_variant_builder_end (&builder);
|
|
}
|
|
]|</doc>
|
|
<source-position filename="gvariant.h" line="386"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="builder" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35746">a #GVariantBuilder</doc>
|
|
<type name="VariantBuilder" c:type="GVariantBuilder*"/>
|
|
</instance-parameter>
|
|
<parameter name="format_string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35747">a #GVariant varargs format string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="..." transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35748">arguments, as per @format_string</doc>
|
|
<varargs/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="add_parsed" c:identifier="g_variant_builder_add_parsed" version="2.26" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35785">Adds to a #GVariantBuilder.
|
|
|
|
This call is a convenience wrapper that is exactly equivalent to
|
|
calling g_variant_new_parsed() followed by
|
|
g_variant_builder_add_value().
|
|
|
|
Note that the arguments must be of the correct width for their types
|
|
specified in @format_string. This can be achieved by casting them. See
|
|
the [GVariant varargs documentation][gvariant-varargs].
|
|
|
|
This function might be used as follows:
|
|
|
|
|[<!-- language="C" -->
|
|
GVariant *
|
|
make_pointless_dictionary (void)
|
|
{
|
|
GVariantBuilder builder;
|
|
int i;
|
|
|
|
g_variant_builder_init (&builder, G_VARIANT_TYPE_ARRAY);
|
|
g_variant_builder_add_parsed (&builder, "{'width', <%i>}", 600);
|
|
g_variant_builder_add_parsed (&builder, "{'title', <%s>}", "foo");
|
|
g_variant_builder_add_parsed (&builder, "{'transparency', <0.5>}");
|
|
return g_variant_builder_end (&builder);
|
|
}
|
|
]|</doc>
|
|
<source-position filename="gvariant.h" line="390"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="builder" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35787">a #GVariantBuilder</doc>
|
|
<type name="VariantBuilder" c:type="GVariantBuilder*"/>
|
|
</instance-parameter>
|
|
<parameter name="format" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35788">a text format #GVariant</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="..." transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35789">arguments as per @format</doc>
|
|
<varargs/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="add_value" c:identifier="g_variant_builder_add_value" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35822">Adds @value to @builder.
|
|
|
|
It is an error to call this function in any way that would create an
|
|
inconsistent value to be constructed. Some examples of this are
|
|
putting different types of items into an array, putting the wrong
|
|
types or number of items in a tuple, putting more than one value into
|
|
a variant, etc.
|
|
|
|
If @value is a floating reference (see g_variant_ref_sink()),
|
|
the @builder instance takes ownership of @value.</doc>
|
|
<source-position filename="gvariant.h" line="383"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="builder" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35824">a #GVariantBuilder</doc>
|
|
<type name="VariantBuilder" c:type="GVariantBuilder*"/>
|
|
</instance-parameter>
|
|
<parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35825">a #GVariant</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="clear" c:identifier="g_variant_builder_clear" version="2.24" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35842">Releases all memory associated with a #GVariantBuilder without
|
|
freeing the #GVariantBuilder structure itself.
|
|
|
|
It typically only makes sense to do this on a stack-allocated
|
|
#GVariantBuilder if you want to abort building the value part-way
|
|
through. This function need not be called if you call
|
|
g_variant_builder_end() and it also doesn't need to be called on
|
|
builders allocated with g_variant_builder_new() (see
|
|
g_variant_builder_unref() for that).
|
|
|
|
This function leaves the #GVariantBuilder structure set to all-zeros.
|
|
It is valid to call this function on either an initialised
|
|
#GVariantBuilder or one that is set to all-zeros but it is not valid
|
|
to call this function on uninitialised memory.</doc>
|
|
<source-position filename="gvariant.h" line="376"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="builder" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35844">a #GVariantBuilder</doc>
|
|
<type name="VariantBuilder" c:type="GVariantBuilder*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="close" c:identifier="g_variant_builder_close" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35865">Closes the subcontainer inside the given @builder that was opened by
|
|
the most recent call to g_variant_builder_open().
|
|
|
|
It is an error to call this function in any way that would create an
|
|
inconsistent value to be constructed (ie: too few values added to the
|
|
subcontainer).</doc>
|
|
<source-position filename="gvariant.h" line="381"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="builder" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35867">a #GVariantBuilder</doc>
|
|
<type name="VariantBuilder" c:type="GVariantBuilder*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="end" c:identifier="g_variant_builder_end" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35880">Ends the builder process and returns the constructed value.
|
|
|
|
It is not permissible to use @builder in any way after this call
|
|
except for reference counting operations (in the case of a
|
|
heap-allocated #GVariantBuilder) or by reinitialising it with
|
|
g_variant_builder_init() (in the case of stack-allocated). This
|
|
means that for the stack-allocated builders there is no need to
|
|
call g_variant_builder_clear() after the call to
|
|
g_variant_builder_end().
|
|
|
|
It is an error to call this function in any way that would create an
|
|
inconsistent value to be constructed (ie: insufficient number of
|
|
items added to a container with a specific number of children
|
|
required). It is also an error to call this function if the builder
|
|
was created with an indefinite array or maybe type and no children
|
|
have been added; in this case it is impossible to infer the type of
|
|
the empty array.</doc>
|
|
<source-position filename="gvariant.h" line="374"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35902">a new, floating, #GVariant</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="builder" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35882">a #GVariantBuilder</doc>
|
|
<type name="VariantBuilder" c:type="GVariantBuilder*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="init" c:identifier="g_variant_builder_init" version="2.24" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35907">Initialises a #GVariantBuilder structure.
|
|
|
|
@type must be non-%NULL. It specifies the type of container to
|
|
construct. It can be an indefinite type such as
|
|
%G_VARIANT_TYPE_ARRAY or a definite type such as "as" or "(ii)".
|
|
Maybe, array, tuple, dictionary entry and variant-typed values may be
|
|
constructed.
|
|
|
|
After the builder is initialised, values are added using
|
|
g_variant_builder_add_value() or g_variant_builder_add().
|
|
|
|
After all the child values are added, g_variant_builder_end() frees
|
|
the memory associated with the builder and returns the #GVariant that
|
|
was created.
|
|
|
|
This function completely ignores the previous contents of @builder.
|
|
On one hand this means that it is valid to pass in completely
|
|
uninitialised memory. On the other hand, this means that if you are
|
|
initialising over top of an existing #GVariantBuilder you need to
|
|
first call g_variant_builder_clear() in order to avoid leaking
|
|
memory.
|
|
|
|
You must not call g_variant_builder_ref() or
|
|
g_variant_builder_unref() on a #GVariantBuilder that was initialised
|
|
with this function. If you ever pass a reference to a
|
|
#GVariantBuilder outside of the control of your own code then you
|
|
should assume that the person receiving that reference may try to use
|
|
reference counting; you should use g_variant_builder_new() instead of
|
|
this function.</doc>
|
|
<source-position filename="gvariant.h" line="371"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="builder" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35909">a #GVariantBuilder</doc>
|
|
<type name="VariantBuilder" c:type="GVariantBuilder*"/>
|
|
</instance-parameter>
|
|
<parameter name="type" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35910">a container type</doc>
|
|
<type name="VariantType" c:type="const GVariantType*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="open" c:identifier="g_variant_builder_open" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35965">Opens a subcontainer inside the given @builder. When done adding
|
|
items to the subcontainer, g_variant_builder_close() must be called. @type
|
|
is the type of the container: so to build a tuple of several values, @type
|
|
must include the tuple itself.
|
|
|
|
It is an error to call this function in any way that would cause an
|
|
inconsistent value to be constructed (ie: adding too many values or
|
|
a value of an incorrect type).
|
|
|
|
Example of building a nested variant:
|
|
|[<!-- language="C" -->
|
|
GVariantBuilder builder;
|
|
guint32 some_number = get_number ();
|
|
g_autoptr (GHashTable) some_dict = get_dict ();
|
|
GHashTableIter iter;
|
|
const gchar *key;
|
|
const GVariant *value;
|
|
g_autoptr (GVariant) output = NULL;
|
|
|
|
g_variant_builder_init (&builder, G_VARIANT_TYPE ("(ua{sv})"));
|
|
g_variant_builder_add (&builder, "u", some_number);
|
|
g_variant_builder_open (&builder, G_VARIANT_TYPE ("a{sv}"));
|
|
|
|
g_hash_table_iter_init (&iter, some_dict);
|
|
while (g_hash_table_iter_next (&iter, (gpointer *) &key, (gpointer *) &value))
|
|
{
|
|
g_variant_builder_open (&builder, G_VARIANT_TYPE ("{sv}"));
|
|
g_variant_builder_add (&builder, "s", key);
|
|
g_variant_builder_add (&builder, "v", value);
|
|
g_variant_builder_close (&builder);
|
|
}
|
|
|
|
g_variant_builder_close (&builder);
|
|
|
|
output = g_variant_builder_end (&builder);
|
|
]|</doc>
|
|
<source-position filename="gvariant.h" line="378"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="builder" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35967">a #GVariantBuilder</doc>
|
|
<type name="VariantBuilder" c:type="GVariantBuilder*"/>
|
|
</instance-parameter>
|
|
<parameter name="type" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35968">the #GVariantType of the container</doc>
|
|
<type name="VariantType" c:type="const GVariantType*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="ref" c:identifier="g_variant_builder_ref" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36011">Increases the reference count on @builder.
|
|
|
|
Don't call this on stack-allocated #GVariantBuilder instances or bad
|
|
things will happen.</doc>
|
|
<source-position filename="gvariant.h" line="369"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36020">a new reference to @builder</doc>
|
|
<type name="VariantBuilder" c:type="GVariantBuilder*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="builder" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36013">a #GVariantBuilder allocated by g_variant_builder_new()</doc>
|
|
<type name="VariantBuilder" c:type="GVariantBuilder*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="unref" c:identifier="g_variant_builder_unref" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36025">Decreases the reference count on @builder.
|
|
|
|
In the event that there are no more references, releases all memory
|
|
associated with the #GVariantBuilder.
|
|
|
|
Don't call this on stack-allocated #GVariantBuilder instances or bad
|
|
things will happen.</doc>
|
|
<source-position filename="gvariant.h" line="367"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="builder" transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36027">a #GVariantBuilder allocated by g_variant_builder_new()</doc>
|
|
<type name="VariantBuilder" c:type="GVariantBuilder*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
</record>
|
|
<enumeration name="VariantClass" version="2.24" c:type="GVariantClass">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2562">The range of possible top-level types of #GVariant instances.</doc>
|
|
<source-position filename="gvariant.h" line="56"/>
|
|
<member name="boolean" value="98" c:identifier="G_VARIANT_CLASS_BOOLEAN">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2564">The #GVariant is a boolean.</doc>
|
|
</member>
|
|
<member name="byte" value="121" c:identifier="G_VARIANT_CLASS_BYTE">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2565">The #GVariant is a byte.</doc>
|
|
</member>
|
|
<member name="int16" value="110" c:identifier="G_VARIANT_CLASS_INT16">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2566">The #GVariant is a signed 16 bit integer.</doc>
|
|
</member>
|
|
<member name="uint16" value="113" c:identifier="G_VARIANT_CLASS_UINT16">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2567">The #GVariant is an unsigned 16 bit integer.</doc>
|
|
</member>
|
|
<member name="int32" value="105" c:identifier="G_VARIANT_CLASS_INT32">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2568">The #GVariant is a signed 32 bit integer.</doc>
|
|
</member>
|
|
<member name="uint32" value="117" c:identifier="G_VARIANT_CLASS_UINT32">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2569">The #GVariant is an unsigned 32 bit integer.</doc>
|
|
</member>
|
|
<member name="int64" value="120" c:identifier="G_VARIANT_CLASS_INT64">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2570">The #GVariant is a signed 64 bit integer.</doc>
|
|
</member>
|
|
<member name="uint64" value="116" c:identifier="G_VARIANT_CLASS_UINT64">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2571">The #GVariant is an unsigned 64 bit integer.</doc>
|
|
</member>
|
|
<member name="handle" value="104" c:identifier="G_VARIANT_CLASS_HANDLE">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2572">The #GVariant is a file handle index.</doc>
|
|
</member>
|
|
<member name="double" value="100" c:identifier="G_VARIANT_CLASS_DOUBLE">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2573">The #GVariant is a double precision floating
|
|
point value.</doc>
|
|
</member>
|
|
<member name="string" value="115" c:identifier="G_VARIANT_CLASS_STRING">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2575">The #GVariant is a normal string.</doc>
|
|
</member>
|
|
<member name="object_path" value="111" c:identifier="G_VARIANT_CLASS_OBJECT_PATH">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2576">The #GVariant is a D-Bus object path
|
|
string.</doc>
|
|
</member>
|
|
<member name="signature" value="103" c:identifier="G_VARIANT_CLASS_SIGNATURE">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2578">The #GVariant is a D-Bus signature string.</doc>
|
|
</member>
|
|
<member name="variant" value="118" c:identifier="G_VARIANT_CLASS_VARIANT">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2579">The #GVariant is a variant.</doc>
|
|
</member>
|
|
<member name="maybe" value="109" c:identifier="G_VARIANT_CLASS_MAYBE">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2580">The #GVariant is a maybe-typed value.</doc>
|
|
</member>
|
|
<member name="array" value="97" c:identifier="G_VARIANT_CLASS_ARRAY">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2581">The #GVariant is an array.</doc>
|
|
</member>
|
|
<member name="tuple" value="40" c:identifier="G_VARIANT_CLASS_TUPLE">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2582">The #GVariant is a tuple.</doc>
|
|
</member>
|
|
<member name="dict_entry" value="123" c:identifier="G_VARIANT_CLASS_DICT_ENTRY">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2583">The #GVariant is a dictionary entry.</doc>
|
|
</member>
|
|
</enumeration>
|
|
<record name="VariantDict" c:type="GVariantDict" version="2.40" glib:type-name="GVariantDict" glib:get-type="g_variant_dict_get_type" c:symbol-prefix="variant_dict">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2591">#GVariantDict is a mutable interface to #GVariant dictionaries.
|
|
|
|
It can be used for doing a sequence of dictionary lookups in an
|
|
efficient way on an existing #GVariant dictionary or it can be used
|
|
to construct new dictionaries with a hashtable-like interface. It
|
|
can also be used for taking existing dictionaries and modifying them
|
|
in order to create new ones.
|
|
|
|
#GVariantDict can only be used with %G_VARIANT_TYPE_VARDICT
|
|
dictionaries.
|
|
|
|
It is possible to use #GVariantDict allocated on the stack or on the
|
|
heap. When using a stack-allocated #GVariantDict, you begin with a
|
|
call to g_variant_dict_init() and free the resources with a call to
|
|
g_variant_dict_clear().
|
|
|
|
Heap-allocated #GVariantDict follows normal refcounting rules: you
|
|
allocate it with g_variant_dict_new() and use g_variant_dict_ref()
|
|
and g_variant_dict_unref().
|
|
|
|
g_variant_dict_end() is used to convert the #GVariantDict back into a
|
|
dictionary-type #GVariant. When used with stack-allocated instances,
|
|
this also implicitly frees all associated memory, but for
|
|
heap-allocated instances, you must still call g_variant_dict_unref()
|
|
afterwards.
|
|
|
|
You will typically want to use a heap-allocated #GVariantDict when
|
|
you expose it as part of an API. For most other uses, the
|
|
stack-allocated form will be more convenient.
|
|
|
|
Consider the following two examples that do the same thing in each
|
|
style: take an existing dictionary and look up the "count" uint32
|
|
key, adding 1 to it if it is found, or returning an error if the
|
|
key is not found. Each returns the new dictionary as a floating
|
|
#GVariant.
|
|
|
|
## Using a stack-allocated GVariantDict
|
|
|
|
|[<!-- language="C" -->
|
|
GVariant *
|
|
add_to_count (GVariant *orig,
|
|
GError **error)
|
|
{
|
|
GVariantDict dict;
|
|
guint32 count;
|
|
|
|
g_variant_dict_init (&dict, orig);
|
|
if (!g_variant_dict_lookup (&dict, "count", "u", &count))
|
|
{
|
|
g_set_error (...);
|
|
g_variant_dict_clear (&dict);
|
|
return NULL;
|
|
}
|
|
|
|
g_variant_dict_insert (&dict, "count", "u", count + 1);
|
|
|
|
return g_variant_dict_end (&dict);
|
|
}
|
|
]|
|
|
|
|
## Using heap-allocated GVariantDict
|
|
|
|
|[<!-- language="C" -->
|
|
GVariant *
|
|
add_to_count (GVariant *orig,
|
|
GError **error)
|
|
{
|
|
GVariantDict *dict;
|
|
GVariant *result;
|
|
guint32 count;
|
|
|
|
dict = g_variant_dict_new (orig);
|
|
|
|
if (g_variant_dict_lookup (dict, "count", "u", &count))
|
|
{
|
|
g_variant_dict_insert (dict, "count", "u", count + 1);
|
|
result = g_variant_dict_end (dict);
|
|
}
|
|
else
|
|
{
|
|
g_set_error (...);
|
|
result = NULL;
|
|
}
|
|
|
|
g_variant_dict_unref (dict);
|
|
|
|
return result;
|
|
}
|
|
]|</doc>
|
|
<source-position filename="gvariant.h" line="448"/>
|
|
<union name="u" c:type="u">
|
|
<source-position filename="gvariant.h" line="447"/>
|
|
<record name="s" c:type="s">
|
|
<source-position filename="gvariant.h" line="445"/>
|
|
<field name="asv" writable="1">
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</field>
|
|
<field name="partial_magic" writable="1">
|
|
<type name="gsize" c:type="gsize"/>
|
|
</field>
|
|
<field name="y" writable="1">
|
|
<array zero-terminated="0" fixed-size="14">
|
|
<type name="gsize" c:type="gsize"/>
|
|
</array>
|
|
</field>
|
|
</record>
|
|
<field name="x" writable="1">
|
|
<array zero-terminated="0" fixed-size="16">
|
|
<type name="gsize" c:type="gsize"/>
|
|
</array>
|
|
</field>
|
|
</union>
|
|
<constructor name="new" c:identifier="g_variant_dict_new" version="2.40">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36285">Allocates and initialises a new #GVariantDict.
|
|
|
|
You should call g_variant_dict_unref() on the return value when it
|
|
is no longer needed. The memory will not be automatically freed by
|
|
any other call.
|
|
|
|
In some cases it may be easier to place a #GVariantDict directly on
|
|
the stack of the calling function and initialise it with
|
|
g_variant_dict_init(). This is particularly useful when you are
|
|
using #GVariantDict to construct a #GVariant.</doc>
|
|
<source-position filename="gvariant.h" line="480"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36301">a #GVariantDict</doc>
|
|
<type name="VariantDict" c:type="GVariantDict*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="from_asv" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36287">the #GVariant with which to initialise the
|
|
dictionary</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<method name="clear" c:identifier="g_variant_dict_clear" version="2.40">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36131">Releases all memory associated with a #GVariantDict without freeing
|
|
the #GVariantDict structure itself.
|
|
|
|
It typically only makes sense to do this on a stack-allocated
|
|
#GVariantDict if you want to abort building the value part-way
|
|
through. This function need not be called if you call
|
|
g_variant_dict_end() and it also doesn't need to be called on dicts
|
|
allocated with g_variant_dict_new (see g_variant_dict_unref() for
|
|
that).
|
|
|
|
It is valid to call this function on either an initialised
|
|
#GVariantDict or one that was previously cleared by an earlier call
|
|
to g_variant_dict_clear() but it is not valid to call this function
|
|
on uninitialised memory.</doc>
|
|
<source-position filename="gvariant.h" line="511"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="dict" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36133">a #GVariantDict</doc>
|
|
<type name="VariantDict" c:type="GVariantDict*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="contains" c:identifier="g_variant_dict_contains" version="2.40">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36154">Checks if @key exists in @dict.</doc>
|
|
<source-position filename="gvariant.h" line="496"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36161">%TRUE if @key is in @dict</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="dict" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36156">a #GVariantDict</doc>
|
|
<type name="VariantDict" c:type="GVariantDict*"/>
|
|
</instance-parameter>
|
|
<parameter name="key" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36157">the key to look up in the dictionary</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="end" c:identifier="g_variant_dict_end" version="2.40">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36166">Returns the current value of @dict as a #GVariant of type
|
|
%G_VARIANT_TYPE_VARDICT, clearing it in the process.
|
|
|
|
It is not permissible to use @dict in any way after this call except
|
|
for reference counting operations (in the case of a heap-allocated
|
|
#GVariantDict) or by reinitialising it with g_variant_dict_init() (in
|
|
the case of stack-allocated).</doc>
|
|
<source-position filename="gvariant.h" line="513"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36178">a new, floating, #GVariant</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="dict" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36168">a #GVariantDict</doc>
|
|
<type name="VariantDict" c:type="GVariantDict*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="init" c:identifier="g_variant_dict_init" version="2.40" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36183">Initialises a #GVariantDict structure.
|
|
|
|
If @from_asv is given, it is used to initialise the dictionary.
|
|
|
|
This function completely ignores the previous contents of @dict. On
|
|
one hand this means that it is valid to pass in completely
|
|
uninitialised memory. On the other hand, this means that if you are
|
|
initialising over top of an existing #GVariantDict you need to first
|
|
call g_variant_dict_clear() in order to avoid leaking memory.
|
|
|
|
You must not call g_variant_dict_ref() or g_variant_dict_unref() on a
|
|
#GVariantDict that was initialised with this function. If you ever
|
|
pass a reference to a #GVariantDict outside of the control of your
|
|
own code then you should assume that the person receiving that
|
|
reference may try to use reference counting; you should use
|
|
g_variant_dict_new() instead of this function.</doc>
|
|
<source-position filename="gvariant.h" line="483"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="dict" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36185">a #GVariantDict</doc>
|
|
<type name="VariantDict" c:type="GVariantDict*"/>
|
|
</instance-parameter>
|
|
<parameter name="from_asv" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36186">the initial value for @dict</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="insert" c:identifier="g_variant_dict_insert" version="2.40" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36209">Inserts a value into a #GVariantDict.
|
|
|
|
This call is a convenience wrapper that is exactly equivalent to
|
|
calling g_variant_new() followed by g_variant_dict_insert_value().</doc>
|
|
<source-position filename="gvariant.h" line="499"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="dict" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36211">a #GVariantDict</doc>
|
|
<type name="VariantDict" c:type="GVariantDict*"/>
|
|
</instance-parameter>
|
|
<parameter name="key" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36212">the key to insert a value for</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="format_string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36213">a #GVariant varargs format string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="..." transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36214">arguments, as per @format_string</doc>
|
|
<varargs/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="insert_value" c:identifier="g_variant_dict_insert_value" version="2.40">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36225">Inserts (or replaces) a key in a #GVariantDict.
|
|
|
|
@value is consumed if it is floating.</doc>
|
|
<source-position filename="gvariant.h" line="504"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="dict" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36227">a #GVariantDict</doc>
|
|
<type name="VariantDict" c:type="GVariantDict*"/>
|
|
</instance-parameter>
|
|
<parameter name="key" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36228">the key to insert a value for</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36229">the value to insert</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="lookup" c:identifier="g_variant_dict_lookup" version="2.40" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36239">Looks up a value in a #GVariantDict.
|
|
|
|
This function is a wrapper around g_variant_dict_lookup_value() and
|
|
g_variant_get(). In the case that %NULL would have been returned,
|
|
this function returns %FALSE. Otherwise, it unpacks the returned
|
|
value and returns %TRUE.
|
|
|
|
@format_string determines the C types that are used for unpacking the
|
|
values and also determines if the values are copied or borrowed, see the
|
|
section on [GVariant format strings][gvariant-format-strings-pointers].</doc>
|
|
<source-position filename="gvariant.h" line="487"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36257">%TRUE if a value was unpacked</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="dict" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36241">a #GVariantDict</doc>
|
|
<type name="VariantDict" c:type="GVariantDict*"/>
|
|
</instance-parameter>
|
|
<parameter name="key" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36242">the key to look up in the dictionary</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="format_string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36243">a GVariant format string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="..." transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36244">the arguments to unpack the value into</doc>
|
|
<varargs/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="lookup_value" c:identifier="g_variant_dict_lookup_value" version="2.40">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36262">Looks up a value in a #GVariantDict.
|
|
|
|
If @key is not found in @dictionary, %NULL is returned.
|
|
|
|
The @expected_type string specifies what type of value is expected.
|
|
If the value associated with @key has a different type then %NULL is
|
|
returned.
|
|
|
|
If the key is found and the value has the correct type, it is
|
|
returned. If @expected_type was specified then any non-%NULL return
|
|
value will have this type.</doc>
|
|
<source-position filename="gvariant.h" line="492"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36280">the value of the dictionary key, or %NULL</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="dict" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36264">a #GVariantDict</doc>
|
|
<type name="VariantDict" c:type="GVariantDict*"/>
|
|
</instance-parameter>
|
|
<parameter name="key" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36265">the key to look up in the dictionary</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="expected_type" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36266">a #GVariantType, or %NULL</doc>
|
|
<type name="VariantType" c:type="const GVariantType*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="ref" c:identifier="g_variant_dict_ref" version="2.40">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36306">Increases the reference count on @dict.
|
|
|
|
Don't call this on stack-allocated #GVariantDict instances or bad
|
|
things will happen.</doc>
|
|
<source-position filename="gvariant.h" line="515"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36315">a new reference to @dict</doc>
|
|
<type name="VariantDict" c:type="GVariantDict*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="dict" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36308">a heap-allocated #GVariantDict</doc>
|
|
<type name="VariantDict" c:type="GVariantDict*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="remove" c:identifier="g_variant_dict_remove" version="2.40">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36320">Removes a key and its associated value from a #GVariantDict.</doc>
|
|
<source-position filename="gvariant.h" line="508"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36327">%TRUE if the key was found and removed</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="dict" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36322">a #GVariantDict</doc>
|
|
<type name="VariantDict" c:type="GVariantDict*"/>
|
|
</instance-parameter>
|
|
<parameter name="key" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36323">the key to remove</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="unref" c:identifier="g_variant_dict_unref" version="2.40">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36332">Decreases the reference count on @dict.
|
|
|
|
In the event that there are no more references, releases all memory
|
|
associated with the #GVariantDict.
|
|
|
|
Don't call this on stack-allocated #GVariantDict instances or bad
|
|
things will happen.</doc>
|
|
<source-position filename="gvariant.h" line="517"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="dict" transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="36334">a heap-allocated #GVariantDict</doc>
|
|
<type name="VariantDict" c:type="GVariantDict*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
</record>
|
|
<record name="VariantIter" c:type="GVariantIter" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2688">#GVariantIter is an opaque data structure and can only be accessed
|
|
using the following functions.</doc>
|
|
<source-position filename="gvariant.h" line="272"/>
|
|
<field name="x" readable="0" private="1">
|
|
<array zero-terminated="0" fixed-size="16">
|
|
<type name="gsize" c:type="gsize"/>
|
|
</array>
|
|
</field>
|
|
<method name="copy" c:identifier="g_variant_iter_copy" version="2.24" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37146">Creates a new heap-allocated #GVariantIter to iterate over the
|
|
container that was being iterated over by @iter. Iteration begins on
|
|
the new iterator from the current position of the old iterator but
|
|
the two copies are independent past that point.
|
|
|
|
Use g_variant_iter_free() to free the return value when you no longer
|
|
need it.
|
|
|
|
A reference is taken to the container that @iter is iterating over
|
|
and will be releated only when g_variant_iter_free() is called.</doc>
|
|
<source-position filename="gvariant.h" line="280"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37161">a new heap-allocated #GVariantIter</doc>
|
|
<type name="VariantIter" c:type="GVariantIter*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="iter" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37148">a #GVariantIter</doc>
|
|
<type name="VariantIter" c:type="GVariantIter*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="free" c:identifier="g_variant_iter_free" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37166">Frees a heap-allocated #GVariantIter. Only call this function on
|
|
iterators that were returned by g_variant_iter_new() or
|
|
g_variant_iter_copy().</doc>
|
|
<source-position filename="gvariant.h" line="284"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="iter" transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37168">a heap-allocated #GVariantIter</doc>
|
|
<type name="VariantIter" c:type="GVariantIter*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="init" c:identifier="g_variant_iter_init" version="2.24" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37178">Initialises (without allocating) a #GVariantIter. @iter may be
|
|
completely uninitialised prior to this call; its old value is
|
|
ignored.
|
|
|
|
The iterator remains valid for as long as @value exists, and need not
|
|
be freed in any way.</doc>
|
|
<source-position filename="gvariant.h" line="277"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37190">the number of items in @value</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="iter" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37180">a pointer to a #GVariantIter</doc>
|
|
<type name="VariantIter" c:type="GVariantIter*"/>
|
|
</instance-parameter>
|
|
<parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37181">a container #GVariant</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="loop" c:identifier="g_variant_iter_loop" version="2.24" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37195">Gets the next item in the container and unpacks it into the variable
|
|
argument list according to @format_string, returning %TRUE.
|
|
|
|
If no more items remain then %FALSE is returned.
|
|
|
|
On the first call to this function, the pointers appearing on the
|
|
variable argument list are assumed to point at uninitialised memory.
|
|
On the second and later calls, it is assumed that the same pointers
|
|
will be given and that they will point to the memory as set by the
|
|
previous call to this function. This allows the previous values to
|
|
be freed, as appropriate.
|
|
|
|
This function is intended to be used with a while loop as
|
|
demonstrated in the following example. This function can only be
|
|
used when iterating over an array. It is only valid to call this
|
|
function with a string constant for the format string and the same
|
|
string constant must be used each time. Mixing calls to this
|
|
function and g_variant_iter_next() or g_variant_iter_next_value() on
|
|
the same iterator causes undefined behavior.
|
|
|
|
If you break out of a such a while loop using g_variant_iter_loop() then
|
|
you must free or unreference all the unpacked values as you would with
|
|
g_variant_get(). Failure to do so will cause a memory leak.
|
|
|
|
Here is an example for memory management with g_variant_iter_loop():
|
|
|[<!-- language="C" -->
|
|
// Iterates a dictionary of type 'a{sv}'
|
|
void
|
|
iterate_dictionary (GVariant *dictionary)
|
|
{
|
|
GVariantIter iter;
|
|
GVariant *value;
|
|
gchar *key;
|
|
|
|
g_variant_iter_init (&iter, dictionary);
|
|
while (g_variant_iter_loop (&iter, "{sv}", &key, &value))
|
|
{
|
|
g_print ("Item '%s' has type '%s'\n", key,
|
|
g_variant_get_type_string (value));
|
|
|
|
// no need to free 'key' and 'value' here
|
|
// unless breaking out of this loop
|
|
}
|
|
}
|
|
]|
|
|
|
|
For most cases you should use g_variant_iter_next().
|
|
|
|
This function is really only useful when unpacking into #GVariant or
|
|
#GVariantIter in order to allow you to skip the call to
|
|
g_variant_unref() or g_variant_iter_free().
|
|
|
|
For example, if you are only looping over simple integer and string
|
|
types, g_variant_iter_next() is definitely preferred. For string
|
|
types, use the '&' prefix to avoid allocating any memory at all (and
|
|
thereby avoiding the need to free anything as well).
|
|
|
|
@format_string determines the C types that are used for unpacking
|
|
the values and also determines if the values are copied or borrowed.
|
|
|
|
See the section on
|
|
[GVariant format strings][gvariant-format-strings-pointers].</doc>
|
|
<source-position filename="gvariant.h" line="292"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37264">%TRUE if a value was unpacked, or %FALSE if there was no
|
|
value</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="iter" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37197">a #GVariantIter</doc>
|
|
<type name="VariantIter" c:type="GVariantIter*"/>
|
|
</instance-parameter>
|
|
<parameter name="format_string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37198">a GVariant format string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="..." transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37199">the arguments to unpack the value into</doc>
|
|
<varargs/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="n_children" c:identifier="g_variant_iter_n_children" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37270">Queries the number of child items in the container that we are
|
|
iterating over. This is the total number of items -- not the number
|
|
of items remaining.
|
|
|
|
This function might be useful for preallocation of arrays.</doc>
|
|
<source-position filename="gvariant.h" line="282"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37280">the number of children in the container</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="iter" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37272">a #GVariantIter</doc>
|
|
<type name="VariantIter" c:type="GVariantIter*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="next" c:identifier="g_variant_iter_next" version="2.24" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37303">Gets the next item in the container and unpacks it into the variable
|
|
argument list according to @format_string, returning %TRUE.
|
|
|
|
If no more items remain then %FALSE is returned.
|
|
|
|
All of the pointers given on the variable arguments list of this
|
|
function are assumed to point at uninitialised memory. It is the
|
|
responsibility of the caller to free all of the values returned by
|
|
the unpacking process.
|
|
|
|
Here is an example for memory management with g_variant_iter_next():
|
|
|[<!-- language="C" -->
|
|
// Iterates a dictionary of type 'a{sv}'
|
|
void
|
|
iterate_dictionary (GVariant *dictionary)
|
|
{
|
|
GVariantIter iter;
|
|
GVariant *value;
|
|
gchar *key;
|
|
|
|
g_variant_iter_init (&iter, dictionary);
|
|
while (g_variant_iter_next (&iter, "{sv}", &key, &value))
|
|
{
|
|
g_print ("Item '%s' has type '%s'\n", key,
|
|
g_variant_get_type_string (value));
|
|
|
|
// must free data for ourselves
|
|
g_variant_unref (value);
|
|
g_free (key);
|
|
}
|
|
}
|
|
]|
|
|
|
|
For a solution that is likely to be more convenient to C programmers
|
|
when dealing with loops, see g_variant_iter_loop().
|
|
|
|
@format_string determines the C types that are used for unpacking
|
|
the values and also determines if the values are copied or borrowed.
|
|
|
|
See the section on
|
|
[GVariant format strings][gvariant-format-strings-pointers].</doc>
|
|
<source-position filename="gvariant.h" line="288"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37351">%TRUE if a value was unpacked, or %FALSE if there as no value</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="iter" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37305">a #GVariantIter</doc>
|
|
<type name="VariantIter" c:type="GVariantIter*"/>
|
|
</instance-parameter>
|
|
<parameter name="format_string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37306">a GVariant format string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="..." transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37307">the arguments to unpack the value into</doc>
|
|
<varargs/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="next_value" c:identifier="g_variant_iter_next_value" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37356">Gets the next item in the container. If no more items remain then
|
|
%NULL is returned.
|
|
|
|
Use g_variant_unref() to drop your reference on the return value when
|
|
you no longer need it.
|
|
|
|
Here is an example for iterating with g_variant_iter_next_value():
|
|
|[<!-- language="C" -->
|
|
// recursively iterate a container
|
|
void
|
|
iterate_container_recursive (GVariant *container)
|
|
{
|
|
GVariantIter iter;
|
|
GVariant *child;
|
|
|
|
g_variant_iter_init (&iter, container);
|
|
while ((child = g_variant_iter_next_value (&iter)))
|
|
{
|
|
g_print ("type '%s'\n", g_variant_get_type_string (child));
|
|
|
|
if (g_variant_is_container (child))
|
|
iterate_container_recursive (child);
|
|
|
|
g_variant_unref (child);
|
|
}
|
|
}
|
|
]|</doc>
|
|
<source-position filename="gvariant.h" line="286"/>
|
|
<return-value transfer-ownership="full" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37388">a #GVariant, or %NULL</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="iter" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37358">a #GVariantIter</doc>
|
|
<type name="VariantIter" c:type="GVariantIter*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
</record>
|
|
<enumeration name="VariantParseError" c:type="GVariantParseError" glib:error-domain="g-variant-parse-error-quark">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2696">Error codes returned by parsing text-format GVariants.</doc>
|
|
<source-position filename="gvariant.h" line="331"/>
|
|
<member name="failed" value="0" c:identifier="G_VARIANT_PARSE_ERROR_FAILED">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2698">generic error (unused)</doc>
|
|
</member>
|
|
<member name="basic_type_expected" value="1" c:identifier="G_VARIANT_PARSE_ERROR_BASIC_TYPE_EXPECTED">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2699">a non-basic #GVariantType was given where a basic type was expected</doc>
|
|
</member>
|
|
<member name="cannot_infer_type" value="2" c:identifier="G_VARIANT_PARSE_ERROR_CANNOT_INFER_TYPE">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2700">cannot infer the #GVariantType</doc>
|
|
</member>
|
|
<member name="definite_type_expected" value="3" c:identifier="G_VARIANT_PARSE_ERROR_DEFINITE_TYPE_EXPECTED">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2701">an indefinite #GVariantType was given where a definite type was expected</doc>
|
|
</member>
|
|
<member name="input_not_at_end" value="4" c:identifier="G_VARIANT_PARSE_ERROR_INPUT_NOT_AT_END">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2702">extra data after parsing finished</doc>
|
|
</member>
|
|
<member name="invalid_character" value="5" c:identifier="G_VARIANT_PARSE_ERROR_INVALID_CHARACTER">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2703">invalid character in number or unicode escape</doc>
|
|
</member>
|
|
<member name="invalid_format_string" value="6" c:identifier="G_VARIANT_PARSE_ERROR_INVALID_FORMAT_STRING">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2704">not a valid #GVariant format string</doc>
|
|
</member>
|
|
<member name="invalid_object_path" value="7" c:identifier="G_VARIANT_PARSE_ERROR_INVALID_OBJECT_PATH">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2705">not a valid object path</doc>
|
|
</member>
|
|
<member name="invalid_signature" value="8" c:identifier="G_VARIANT_PARSE_ERROR_INVALID_SIGNATURE">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2706">not a valid type signature</doc>
|
|
</member>
|
|
<member name="invalid_type_string" value="9" c:identifier="G_VARIANT_PARSE_ERROR_INVALID_TYPE_STRING">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2707">not a valid #GVariant type string</doc>
|
|
</member>
|
|
<member name="no_common_type" value="10" c:identifier="G_VARIANT_PARSE_ERROR_NO_COMMON_TYPE">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2708">could not find a common type for array entries</doc>
|
|
</member>
|
|
<member name="number_out_of_range" value="11" c:identifier="G_VARIANT_PARSE_ERROR_NUMBER_OUT_OF_RANGE">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2709">the numerical value is out of range of the given type</doc>
|
|
</member>
|
|
<member name="number_too_big" value="12" c:identifier="G_VARIANT_PARSE_ERROR_NUMBER_TOO_BIG">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2710">the numerical value is out of range for any type</doc>
|
|
</member>
|
|
<member name="type_error" value="13" c:identifier="G_VARIANT_PARSE_ERROR_TYPE_ERROR">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2711">cannot parse as variant of the specified type</doc>
|
|
</member>
|
|
<member name="unexpected_token" value="14" c:identifier="G_VARIANT_PARSE_ERROR_UNEXPECTED_TOKEN">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2712">an unexpected token was encountered</doc>
|
|
</member>
|
|
<member name="unknown_keyword" value="15" c:identifier="G_VARIANT_PARSE_ERROR_UNKNOWN_KEYWORD">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2713">an unknown keyword was encountered</doc>
|
|
</member>
|
|
<member name="unterminated_string_constant" value="16" c:identifier="G_VARIANT_PARSE_ERROR_UNTERMINATED_STRING_CONSTANT">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2714">unterminated string constant</doc>
|
|
</member>
|
|
<member name="value_expected" value="17" c:identifier="G_VARIANT_PARSE_ERROR_VALUE_EXPECTED">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="2715">no value given</doc>
|
|
</member>
|
|
</enumeration>
|
|
<record name="VariantType" c:type="GVariantType" glib:type-name="GVariantType" glib:get-type="g_variant_type_get_gtype" c:symbol-prefix="variant_type">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="6267">This section introduces the GVariant type system. It is based, in
|
|
large part, on the D-Bus type system, with two major changes and
|
|
some minor lifting of restrictions. The
|
|
[D-Bus specification](http://dbus.freedesktop.org/doc/dbus-specification.html),
|
|
therefore, provides a significant amount of
|
|
information that is useful when working with GVariant.
|
|
|
|
The first major change with respect to the D-Bus type system is the
|
|
introduction of maybe (or "nullable") types. Any type in GVariant can be
|
|
converted to a maybe type, in which case, "nothing" (or "null") becomes a
|
|
valid value. Maybe types have been added by introducing the
|
|
character "m" to type strings.
|
|
|
|
The second major change is that the GVariant type system supports the
|
|
concept of "indefinite types" -- types that are less specific than
|
|
the normal types found in D-Bus. For example, it is possible to speak
|
|
of "an array of any type" in GVariant, where the D-Bus type system
|
|
would require you to speak of "an array of integers" or "an array of
|
|
strings". Indefinite types have been added by introducing the
|
|
characters "*", "?" and "r" to type strings.
|
|
|
|
Finally, all arbitrary restrictions relating to the complexity of
|
|
types are lifted along with the restriction that dictionary entries
|
|
may only appear nested inside of arrays.
|
|
|
|
Just as in D-Bus, GVariant types are described with strings ("type
|
|
strings"). Subject to the differences mentioned above, these strings
|
|
are of the same form as those found in DBus. Note, however: D-Bus
|
|
always works in terms of messages and therefore individual type
|
|
strings appear nowhere in its interface. Instead, "signatures"
|
|
are a concatenation of the strings of the type of each argument in a
|
|
message. GVariant deals with single values directly so GVariant type
|
|
strings always describe the type of exactly one value. This means
|
|
that a D-Bus signature string is generally not a valid GVariant type
|
|
string -- except in the case that it is the signature of a message
|
|
containing exactly one argument.
|
|
|
|
An indefinite type is similar in spirit to what may be called an
|
|
abstract type in other type systems. No value can exist that has an
|
|
indefinite type as its type, but values can exist that have types
|
|
that are subtypes of indefinite types. That is to say,
|
|
g_variant_get_type() will never return an indefinite type, but
|
|
calling g_variant_is_of_type() with an indefinite type may return
|
|
%TRUE. For example, you cannot have a value that represents "an
|
|
array of no particular type", but you can have an "array of integers"
|
|
which certainly matches the type of "an array of no particular type",
|
|
since "array of integers" is a subtype of "array of no particular
|
|
type".
|
|
|
|
This is similar to how instances of abstract classes may not
|
|
directly exist in other type systems, but instances of their
|
|
non-abstract subtypes may. For example, in GTK, no object that has
|
|
the type of #GtkBin can exist (since #GtkBin is an abstract class),
|
|
but a #GtkWindow can certainly be instantiated, and you would say
|
|
that the #GtkWindow is a #GtkBin (since #GtkWindow is a subclass of
|
|
#GtkBin).
|
|
|
|
## GVariant Type Strings
|
|
|
|
A GVariant type string can be any of the following:
|
|
|
|
- any basic type string (listed below)
|
|
|
|
- "v", "r" or "*"
|
|
|
|
- one of the characters 'a' or 'm', followed by another type string
|
|
|
|
- the character '(', followed by a concatenation of zero or more other
|
|
type strings, followed by the character ')'
|
|
|
|
- the character '{', followed by a basic type string (see below),
|
|
followed by another type string, followed by the character '}'
|
|
|
|
A basic type string describes a basic type (as per
|
|
g_variant_type_is_basic()) and is always a single character in length.
|
|
The valid basic type strings are "b", "y", "n", "q", "i", "u", "x", "t",
|
|
"h", "d", "s", "o", "g" and "?".
|
|
|
|
The above definition is recursive to arbitrary depth. "aaaaai" and
|
|
"(ui(nq((y)))s)" are both valid type strings, as is
|
|
"a(aa(ui)(qna{ya(yd)}))". In order to not hit memory limits, #GVariant
|
|
imposes a limit on recursion depth of 65 nested containers. This is the
|
|
limit in the D-Bus specification (64) plus one to allow a #GDBusMessage to
|
|
be nested in a top-level tuple.
|
|
|
|
The meaning of each of the characters is as follows:
|
|
- `b`: the type string of %G_VARIANT_TYPE_BOOLEAN; a boolean value.
|
|
- `y`: the type string of %G_VARIANT_TYPE_BYTE; a byte.
|
|
- `n`: the type string of %G_VARIANT_TYPE_INT16; a signed 16 bit integer.
|
|
- `q`: the type string of %G_VARIANT_TYPE_UINT16; an unsigned 16 bit integer.
|
|
- `i`: the type string of %G_VARIANT_TYPE_INT32; a signed 32 bit integer.
|
|
- `u`: the type string of %G_VARIANT_TYPE_UINT32; an unsigned 32 bit integer.
|
|
- `x`: the type string of %G_VARIANT_TYPE_INT64; a signed 64 bit integer.
|
|
- `t`: the type string of %G_VARIANT_TYPE_UINT64; an unsigned 64 bit integer.
|
|
- `h`: the type string of %G_VARIANT_TYPE_HANDLE; a signed 32 bit value
|
|
that, by convention, is used as an index into an array of file
|
|
descriptors that are sent alongside a D-Bus message.
|
|
- `d`: the type string of %G_VARIANT_TYPE_DOUBLE; a double precision
|
|
floating point value.
|
|
- `s`: the type string of %G_VARIANT_TYPE_STRING; a string.
|
|
- `o`: the type string of %G_VARIANT_TYPE_OBJECT_PATH; a string in the form
|
|
of a D-Bus object path.
|
|
- `g`: the type string of %G_VARIANT_TYPE_SIGNATURE; a string in the form of
|
|
a D-Bus type signature.
|
|
- `?`: the type string of %G_VARIANT_TYPE_BASIC; an indefinite type that
|
|
is a supertype of any of the basic types.
|
|
- `v`: the type string of %G_VARIANT_TYPE_VARIANT; a container type that
|
|
contain any other type of value.
|
|
- `a`: used as a prefix on another type string to mean an array of that
|
|
type; the type string "ai", for example, is the type of an array of
|
|
signed 32-bit integers.
|
|
- `m`: used as a prefix on another type string to mean a "maybe", or
|
|
"nullable", version of that type; the type string "ms", for example,
|
|
is the type of a value that maybe contains a string, or maybe contains
|
|
nothing.
|
|
- `()`: used to enclose zero or more other concatenated type strings to
|
|
create a tuple type; the type string "(is)", for example, is the type of
|
|
a pair of an integer and a string.
|
|
- `r`: the type string of %G_VARIANT_TYPE_TUPLE; an indefinite type that is
|
|
a supertype of any tuple type, regardless of the number of items.
|
|
- `{}`: used to enclose a basic type string concatenated with another type
|
|
string to create a dictionary entry type, which usually appears inside of
|
|
an array to form a dictionary; the type string "a{sd}", for example, is
|
|
the type of a dictionary that maps strings to double precision floating
|
|
point values.
|
|
|
|
The first type (the basic type) is the key type and the second type is
|
|
the value type. The reason that the first type is restricted to being a
|
|
basic type is so that it can easily be hashed.
|
|
- `*`: the type string of %G_VARIANT_TYPE_ANY; the indefinite type that is
|
|
a supertype of all types. Note that, as with all type strings, this
|
|
character represents exactly one type. It cannot be used inside of tuples
|
|
to mean "any number of items".
|
|
|
|
Any type string of a container that contains an indefinite type is,
|
|
itself, an indefinite type. For example, the type string "a*"
|
|
(corresponding to %G_VARIANT_TYPE_ARRAY) is an indefinite type
|
|
that is a supertype of every array type. "(*s)" is a supertype
|
|
of all tuples that contain exactly two items where the second
|
|
item is a string.
|
|
|
|
"a{?*}" is an indefinite type that is a supertype of all arrays
|
|
containing dictionary entries where the key is any basic type and
|
|
the value is any type at all. This is, by definition, a dictionary,
|
|
so this type string corresponds to %G_VARIANT_TYPE_DICTIONARY. Note
|
|
that, due to the restriction that the key of a dictionary entry must
|
|
be a basic type, "{**}" is not a valid type string.</doc>
|
|
<source-position filename="gvarianttype.h" line="41"/>
|
|
<constructor name="new" c:identifier="g_variant_type_new" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38644">Creates a new #GVariantType corresponding to the type string given
|
|
by @type_string. It is appropriate to call g_variant_type_free() on
|
|
the return value.
|
|
|
|
It is a programmer error to call this function with an invalid type
|
|
string. Use g_variant_type_string_is_valid() if you are unsure.</doc>
|
|
<source-position filename="gvarianttype.h" line="308"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38655">a new #GVariantType</doc>
|
|
<type name="VariantType" c:type="GVariantType*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="type_string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38646">a valid GVariant type string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="new_array" c:identifier="g_variant_type_new_array">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38660">Constructs the type corresponding to an array of elements of the
|
|
type @type.
|
|
|
|
It is appropriate to call g_variant_type_free() on the return value.</doc>
|
|
<source-position filename="gvarianttype.h" line="364"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38669">a new array #GVariantType
|
|
|
|
Since 2.24</doc>
|
|
<type name="VariantType" c:type="GVariantType*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="element" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38662">a #GVariantType</doc>
|
|
<type name="VariantType" c:type="const GVariantType*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="new_dict_entry" c:identifier="g_variant_type_new_dict_entry">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38675">Constructs the type corresponding to a dictionary entry with a key
|
|
of type @key and a value of type @value.
|
|
|
|
It is appropriate to call g_variant_type_free() on the return value.</doc>
|
|
<source-position filename="gvarianttype.h" line="371"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38685">a new dictionary entry #GVariantType
|
|
|
|
Since 2.24</doc>
|
|
<type name="VariantType" c:type="GVariantType*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="key" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38677">a basic #GVariantType</doc>
|
|
<type name="VariantType" c:type="const GVariantType*"/>
|
|
</parameter>
|
|
<parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38678">a #GVariantType</doc>
|
|
<type name="VariantType" c:type="const GVariantType*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="new_maybe" c:identifier="g_variant_type_new_maybe">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38691">Constructs the type corresponding to a maybe instance containing
|
|
type @type or Nothing.
|
|
|
|
It is appropriate to call g_variant_type_free() on the return value.</doc>
|
|
<source-position filename="gvarianttype.h" line="366"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38700">a new maybe #GVariantType
|
|
|
|
Since 2.24</doc>
|
|
<type name="VariantType" c:type="GVariantType*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="element" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38693">a #GVariantType</doc>
|
|
<type name="VariantType" c:type="const GVariantType*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<constructor name="new_tuple" c:identifier="g_variant_type_new_tuple">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38706">Constructs a new tuple type, from @items.
|
|
|
|
@length is the number of items in @items, or -1 to indicate that
|
|
@items is %NULL-terminated.
|
|
|
|
It is appropriate to call g_variant_type_free() on the return value.</doc>
|
|
<source-position filename="gvarianttype.h" line="368"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38718">a new tuple #GVariantType
|
|
|
|
Since 2.24</doc>
|
|
<type name="VariantType" c:type="GVariantType*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="items" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38708">an array of #GVariantTypes, one for each item</doc>
|
|
<array length="1" zero-terminated="0" c:type="const GVariantType* const*">
|
|
<type name="VariantType" c:type="GVariantType*"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="length" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38709">the length of @items, or -1</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</constructor>
|
|
<method name="copy" c:identifier="g_variant_type_copy">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38318">Makes a copy of a #GVariantType. It is appropriate to call
|
|
g_variant_type_free() on the return value. @type may not be %NULL.</doc>
|
|
<source-position filename="gvarianttype.h" line="306"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38325">a new #GVariantType
|
|
|
|
Since 2.24</doc>
|
|
<type name="VariantType" c:type="GVariantType*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="type" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38320">a #GVariantType</doc>
|
|
<type name="VariantType" c:type="const GVariantType*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="dup_string" c:identifier="g_variant_type_dup_string">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38331">Returns a newly-allocated copy of the type string corresponding to
|
|
@type. The returned string is nul-terminated. It is appropriate to
|
|
call g_free() on the return value.</doc>
|
|
<source-position filename="gvarianttype.h" line="316"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38339">the corresponding type string
|
|
|
|
Since 2.24</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="type" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38333">a #GVariantType</doc>
|
|
<type name="VariantType" c:type="const GVariantType*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="element" c:identifier="g_variant_type_element">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38345">Determines the element type of an array or maybe type.
|
|
|
|
This function may only be used with array or maybe types.</doc>
|
|
<source-position filename="gvarianttype.h" line="350"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38353">the element type of @type
|
|
|
|
Since 2.24</doc>
|
|
<type name="VariantType" c:type="const GVariantType*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="type" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38347">an array or maybe #GVariantType</doc>
|
|
<type name="VariantType" c:type="const GVariantType*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="equal" c:identifier="g_variant_type_equal">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38359">Compares @type1 and @type2 for equality.
|
|
|
|
Only returns %TRUE if the types are exactly equal. Even if one type
|
|
is an indefinite type and the other is a subtype of it, %FALSE will
|
|
be returned if they are not exactly equal. If you want to check for
|
|
subtypes, use g_variant_type_is_subtype_of().
|
|
|
|
The argument types of @type1 and @type2 are only #gconstpointer to
|
|
allow use with #GHashTable without function pointer casting. For
|
|
both arguments, a valid #GVariantType must be provided.</doc>
|
|
<source-position filename="gvarianttype.h" line="340"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38375">%TRUE if @type1 and @type2 are exactly equal
|
|
|
|
Since 2.24</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="type1" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38361">a #GVariantType</doc>
|
|
<type name="VariantType" c:type="gconstpointer"/>
|
|
</instance-parameter>
|
|
<parameter name="type2" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38362">a #GVariantType</doc>
|
|
<type name="VariantType" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="first" c:identifier="g_variant_type_first">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38381">Determines the first item type of a tuple or dictionary entry
|
|
type.
|
|
|
|
This function may only be used with tuple or dictionary entry types,
|
|
but must not be used with the generic tuple type
|
|
%G_VARIANT_TYPE_TUPLE.
|
|
|
|
In the case of a dictionary entry type, this returns the type of
|
|
the key.
|
|
|
|
%NULL is returned in case of @type being %G_VARIANT_TYPE_UNIT.
|
|
|
|
This call, together with g_variant_type_next() provides an iterator
|
|
interface over tuple and dictionary entry types.</doc>
|
|
<source-position filename="gvarianttype.h" line="352"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38400">the first item type of @type, or %NULL
|
|
|
|
Since 2.24</doc>
|
|
<type name="VariantType" c:type="const GVariantType*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="type" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38383">a tuple or dictionary entry #GVariantType</doc>
|
|
<type name="VariantType" c:type="const GVariantType*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="free" c:identifier="g_variant_type_free">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38406">Frees a #GVariantType that was allocated with
|
|
g_variant_type_copy(), g_variant_type_new() or one of the container
|
|
type constructor functions.
|
|
|
|
In the case that @type is %NULL, this function does nothing.
|
|
|
|
Since 2.24</doc>
|
|
<source-position filename="gvarianttype.h" line="304"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="type" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38408">a #GVariantType, or %NULL</doc>
|
|
<type name="VariantType" c:type="GVariantType*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="get_string_length" c:identifier="g_variant_type_get_string_length">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38420">Returns the length of the type string corresponding to the given
|
|
@type. This function must be used to determine the valid extent of
|
|
the memory region returned by g_variant_type_peek_string().</doc>
|
|
<source-position filename="gvarianttype.h" line="312"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38428">the length of the corresponding type string
|
|
|
|
Since 2.24</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="type" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38422">a #GVariantType</doc>
|
|
<type name="VariantType" c:type="const GVariantType*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="hash" c:identifier="g_variant_type_hash">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38434">Hashes @type.
|
|
|
|
The argument type of @type is only #gconstpointer to allow use with
|
|
#GHashTable without function pointer casting. A valid
|
|
#GVariantType must be provided.</doc>
|
|
<source-position filename="gvarianttype.h" line="338"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38444">the hash value
|
|
|
|
Since 2.24</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="type" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38436">a #GVariantType</doc>
|
|
<type name="VariantType" c:type="gconstpointer"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="is_array" c:identifier="g_variant_type_is_array">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38450">Determines if the given @type is an array type. This is true if the
|
|
type string for @type starts with an 'a'.
|
|
|
|
This function returns %TRUE for any indefinite type for which every
|
|
definite subtype is an array type -- %G_VARIANT_TYPE_ARRAY, for
|
|
example.</doc>
|
|
<source-position filename="gvarianttype.h" line="328"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38461">%TRUE if @type is an array type
|
|
|
|
Since 2.24</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="type" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38452">a #GVariantType</doc>
|
|
<type name="VariantType" c:type="const GVariantType*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="is_basic" c:identifier="g_variant_type_is_basic">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38467">Determines if the given @type is a basic type.
|
|
|
|
Basic types are booleans, bytes, integers, doubles, strings, object
|
|
paths and signatures.
|
|
|
|
Only a basic type may be used as the key of a dictionary entry.
|
|
|
|
This function returns %FALSE for all indefinite types except
|
|
%G_VARIANT_TYPE_BASIC.</doc>
|
|
<source-position filename="gvarianttype.h" line="324"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38481">%TRUE if @type is a basic type
|
|
|
|
Since 2.24</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="type" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38469">a #GVariantType</doc>
|
|
<type name="VariantType" c:type="const GVariantType*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="is_container" c:identifier="g_variant_type_is_container">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38487">Determines if the given @type is a container type.
|
|
|
|
Container types are any array, maybe, tuple, or dictionary
|
|
entry types plus the variant type.
|
|
|
|
This function returns %TRUE for any indefinite type for which every
|
|
definite subtype is a container -- %G_VARIANT_TYPE_ARRAY, for
|
|
example.</doc>
|
|
<source-position filename="gvarianttype.h" line="322"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38500">%TRUE if @type is a container type
|
|
|
|
Since 2.24</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="type" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38489">a #GVariantType</doc>
|
|
<type name="VariantType" c:type="const GVariantType*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="is_definite" c:identifier="g_variant_type_is_definite">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38506">Determines if the given @type is definite (ie: not indefinite).
|
|
|
|
A type is definite if its type string does not contain any indefinite
|
|
type characters ('*', '?', or 'r').
|
|
|
|
A #GVariant instance may not have an indefinite type, so calling
|
|
this function on the result of g_variant_get_type() will always
|
|
result in %TRUE being returned. Calling this function on an
|
|
indefinite type like %G_VARIANT_TYPE_ARRAY, however, will result in
|
|
%FALSE being returned.</doc>
|
|
<source-position filename="gvarianttype.h" line="320"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38521">%TRUE if @type is definite
|
|
|
|
Since 2.24</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="type" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38508">a #GVariantType</doc>
|
|
<type name="VariantType" c:type="const GVariantType*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="is_dict_entry" c:identifier="g_variant_type_is_dict_entry">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38527">Determines if the given @type is a dictionary entry type. This is
|
|
true if the type string for @type starts with a '{'.
|
|
|
|
This function returns %TRUE for any indefinite type for which every
|
|
definite subtype is a dictionary entry type --
|
|
%G_VARIANT_TYPE_DICT_ENTRY, for example.</doc>
|
|
<source-position filename="gvarianttype.h" line="332"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38538">%TRUE if @type is a dictionary entry type
|
|
|
|
Since 2.24</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="type" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38529">a #GVariantType</doc>
|
|
<type name="VariantType" c:type="const GVariantType*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="is_maybe" c:identifier="g_variant_type_is_maybe">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38544">Determines if the given @type is a maybe type. This is true if the
|
|
type string for @type starts with an 'm'.
|
|
|
|
This function returns %TRUE for any indefinite type for which every
|
|
definite subtype is a maybe type -- %G_VARIANT_TYPE_MAYBE, for
|
|
example.</doc>
|
|
<source-position filename="gvarianttype.h" line="326"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38555">%TRUE if @type is a maybe type
|
|
|
|
Since 2.24</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="type" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38546">a #GVariantType</doc>
|
|
<type name="VariantType" c:type="const GVariantType*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="is_subtype_of" c:identifier="g_variant_type_is_subtype_of">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38561">Checks if @type is a subtype of @supertype.
|
|
|
|
This function returns %TRUE if @type is a subtype of @supertype. All
|
|
types are considered to be subtypes of themselves. Aside from that,
|
|
only indefinite types can have subtypes.</doc>
|
|
<source-position filename="gvarianttype.h" line="345"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38572">%TRUE if @type is a subtype of @supertype
|
|
|
|
Since 2.24</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="type" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38563">a #GVariantType</doc>
|
|
<type name="VariantType" c:type="const GVariantType*"/>
|
|
</instance-parameter>
|
|
<parameter name="supertype" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38564">a #GVariantType</doc>
|
|
<type name="VariantType" c:type="const GVariantType*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="is_tuple" c:identifier="g_variant_type_is_tuple">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38578">Determines if the given @type is a tuple type. This is true if the
|
|
type string for @type starts with a '(' or if @type is
|
|
%G_VARIANT_TYPE_TUPLE.
|
|
|
|
This function returns %TRUE for any indefinite type for which every
|
|
definite subtype is a tuple type -- %G_VARIANT_TYPE_TUPLE, for
|
|
example.</doc>
|
|
<source-position filename="gvarianttype.h" line="330"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38590">%TRUE if @type is a tuple type
|
|
|
|
Since 2.24</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="type" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38580">a #GVariantType</doc>
|
|
<type name="VariantType" c:type="const GVariantType*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="is_variant" c:identifier="g_variant_type_is_variant">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38596">Determines if the given @type is the variant type.</doc>
|
|
<source-position filename="gvarianttype.h" line="334"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38602">%TRUE if @type is the variant type
|
|
|
|
Since 2.24</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="type" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38598">a #GVariantType</doc>
|
|
<type name="VariantType" c:type="const GVariantType*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="key" c:identifier="g_variant_type_key">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38608">Determines the key type of a dictionary entry type.
|
|
|
|
This function may only be used with a dictionary entry type. Other
|
|
than the additional restriction, this call is equivalent to
|
|
g_variant_type_first().</doc>
|
|
<source-position filename="gvarianttype.h" line="358"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38618">the key type of the dictionary entry
|
|
|
|
Since 2.24</doc>
|
|
<type name="VariantType" c:type="const GVariantType*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="type" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38610">a dictionary entry #GVariantType</doc>
|
|
<type name="VariantType" c:type="const GVariantType*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="n_items" c:identifier="g_variant_type_n_items">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38624">Determines the number of items contained in a tuple or
|
|
dictionary entry type.
|
|
|
|
This function may only be used with tuple or dictionary entry types,
|
|
but must not be used with the generic tuple type
|
|
%G_VARIANT_TYPE_TUPLE.
|
|
|
|
In the case of a dictionary entry type, this function will always
|
|
return 2.</doc>
|
|
<source-position filename="gvarianttype.h" line="356"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38638">the number of items in @type
|
|
|
|
Since 2.24</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="type" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38626">a tuple or dictionary entry #GVariantType</doc>
|
|
<type name="VariantType" c:type="const GVariantType*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="next" c:identifier="g_variant_type_next">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38724">Determines the next item type of a tuple or dictionary entry
|
|
type.
|
|
|
|
@type must be the result of a previous call to
|
|
g_variant_type_first() or g_variant_type_next().
|
|
|
|
If called on the key type of a dictionary entry then this call
|
|
returns the value type. If called on the value type of a dictionary
|
|
entry then this call returns %NULL.
|
|
|
|
For tuples, %NULL is returned when @type is the last item in a tuple.</doc>
|
|
<source-position filename="gvarianttype.h" line="354"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38740">the next #GVariantType after @type, or %NULL
|
|
|
|
Since 2.24</doc>
|
|
<type name="VariantType" c:type="const GVariantType*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="type" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38726">a #GVariantType from a previous call</doc>
|
|
<type name="VariantType" c:type="const GVariantType*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="peek_string" c:identifier="g_variant_type_peek_string" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38746">Returns the type string corresponding to the given @type. The
|
|
result is not nul-terminated; in order to determine its length you
|
|
must call g_variant_type_get_string_length().
|
|
|
|
To get a nul-terminated string, see g_variant_type_dup_string().</doc>
|
|
<source-position filename="gvarianttype.h" line="314"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38756">the corresponding type string (not nul-terminated)
|
|
|
|
Since 2.24</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="type" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38748">a #GVariantType</doc>
|
|
<type name="VariantType" c:type="const GVariantType*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<method name="value" c:identifier="g_variant_type_value">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38801">Determines the value type of a dictionary entry type.
|
|
|
|
This function may only be used with a dictionary entry type.</doc>
|
|
<source-position filename="gvarianttype.h" line="360"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38809">the value type of the dictionary entry
|
|
|
|
Since 2.24</doc>
|
|
<type name="VariantType" c:type="const GVariantType*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<instance-parameter name="type" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38803">a dictionary entry #GVariantType</doc>
|
|
<type name="VariantType" c:type="const GVariantType*"/>
|
|
</instance-parameter>
|
|
</parameters>
|
|
</method>
|
|
<function name="checked_" c:identifier="g_variant_type_checked_">
|
|
<source-position filename="gvarianttype.h" line="376"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="VariantType" c:type="const GVariantType*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="arg0" transfer-ownership="none">
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="string_get_depth_" c:identifier="g_variant_type_string_get_depth_">
|
|
<source-position filename="gvarianttype.h" line="378"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="gsize" c:type="gsize"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="type_string" transfer-ownership="none">
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="string_is_valid" c:identifier="g_variant_type_string_is_valid">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38762">Checks if @type_string is a valid GVariant type string. This call is
|
|
equivalent to calling g_variant_type_string_scan() and confirming
|
|
that the following character is a nul terminator.</doc>
|
|
<source-position filename="gvarianttype.h" line="296"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38770">%TRUE if @type_string is exactly one valid type string
|
|
|
|
Since 2.24</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="type_string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38764">a pointer to any string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="string_scan" c:identifier="g_variant_type_string_scan" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38776">Scan for a single complete and valid GVariant type string in @string.
|
|
The memory pointed to by @limit (or bytes beyond it) is never
|
|
accessed.
|
|
|
|
If a valid type string is found, @endptr is updated to point to the
|
|
first character past the end of the string that was found and %TRUE
|
|
is returned.
|
|
|
|
If there is no valid type string starting at @string, or if the type
|
|
string does not end before @limit then %FALSE is returned.
|
|
|
|
For the simple case of checking if a string is a valid type string,
|
|
see g_variant_type_string_is_valid().</doc>
|
|
<source-position filename="gvarianttype.h" line="298"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38796">%TRUE if a valid type string was found</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38778">a pointer to any string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="limit" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38779">the end of @string, or %NULL</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="endptr" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38780">location to store the end pointer, or %NULL</doc>
|
|
<type name="utf8" c:type="const gchar**"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
</record>
|
|
<callback name="VoidFunc" c:type="GVoidFunc">
|
|
<doc xml:space="preserve" filename="gutils.h" line="201">Declares a type of function which takes no arguments
|
|
and has no return value. It is used to specify the type
|
|
function passed to g_atexit().</doc>
|
|
<source-position filename="gutils.h" line="208"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
</callback>
|
|
<function-macro name="WIN32_DLLMAIN_FOR_DLL_NAME" c:identifier="G_WIN32_DLLMAIN_FOR_DLL_NAME" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="4572">On Windows, this macro defines a DllMain() function that stores
|
|
the actual DLL name that the code being compiled will be included in.
|
|
|
|
On non-Windows platforms, expands to nothing.</doc>
|
|
<source-position filename="gutils.h" line="336"/>
|
|
<parameters>
|
|
<parameter name="static">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="4574">empty or "static"</doc>
|
|
</parameter>
|
|
<parameter name="dll_name">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="4575">the name of the (pointer to the) char array where
|
|
the DLL name will be stored. If this is used, you must also
|
|
include `windows.h`. If you need a more complex DLL entry
|
|
point function, you cannot use this</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<constant name="WIN32_MSG_HANDLE" value="19981206" c:type="G_WIN32_MSG_HANDLE">
|
|
<source-position filename="giochannel.h" line="335"/>
|
|
<type name="gint" c:type="gint"/>
|
|
</constant>
|
|
<function name="access" c:identifier="g_access" version="2.8">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="8776">A wrapper for the POSIX access() function. This function is used to
|
|
test a pathname for one or several of read, write or execute
|
|
permissions, or just existence.
|
|
|
|
On Windows, the file protection mechanism is not at all POSIX-like,
|
|
and the underlying function in the C library only checks the
|
|
FAT-style READONLY attribute, and does not look at the ACL of a
|
|
file at all. This function is this in practise almost useless on
|
|
Windows. Software that needs to handle file permissions on Windows
|
|
more exactly should use the Win32 API.
|
|
|
|
See your C library manual for more details about access().</doc>
|
|
<source-position filename="gstdio.h" line="83"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="8795">zero if the pathname refers to an existing file system
|
|
object that has all the tested permissions, or -1 otherwise
|
|
or on error.</doc>
|
|
<type name="gint" c:type="int"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="filename" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="8778">a pathname in the GLib file name encoding
|
|
(UTF-8 on Windows)</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="mode" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="8780">as in access()</doc>
|
|
<type name="gint" c:type="int"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function-macro name="alloca" c:identifier="g_alloca" introspectable="0">
|
|
<doc xml:space="preserve" filename="galloca.h" line="60">Allocates @size bytes on the stack; these bytes will be freed when the current
|
|
stack frame is cleaned up. This macro essentially just wraps the alloca()
|
|
function present on most UNIX variants.
|
|
Thus it provides the same advantages and pitfalls as alloca():
|
|
|
|
- alloca() is very fast, as on most systems it's implemented by just adjusting
|
|
the stack pointer register.
|
|
|
|
- It doesn't cause any memory fragmentation, within its scope, separate alloca()
|
|
blocks just build up and are released together at function end.
|
|
|
|
- Allocation sizes have to fit into the current stack frame. For instance in a
|
|
threaded environment on Linux, the per-thread stack size is limited to 2 Megabytes,
|
|
so be sparse with alloca() uses.
|
|
|
|
- Allocation failure due to insufficient stack space is not indicated with a %NULL
|
|
return like e.g. with malloc(). Instead, most systems probably handle it the same
|
|
way as out of stack space situations from infinite function recursion, i.e.
|
|
with a segmentation fault.
|
|
|
|
- Special care has to be taken when mixing alloca() with GNU C variable sized arrays.
|
|
Stack space allocated with alloca() in the same scope as a variable sized array
|
|
will be freed together with the variable sized array upon exit of that scope, and
|
|
not upon exit of the enclosing function scope.</doc>
|
|
<source-position filename="galloca.h" line="91"/>
|
|
<parameters>
|
|
<parameter name="size">
|
|
<doc xml:space="preserve" filename="galloca.h" line="62">number of bytes to allocate.</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="array_append_val" c:identifier="g_array_append_val" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="8802">Adds the value on to the end of the array. The array will grow in
|
|
size automatically if necessary.
|
|
|
|
g_array_append_val() is a macro which uses a reference to the value
|
|
parameter @v. This means that you cannot use it with literal values
|
|
such as "27". You must use variables.</doc>
|
|
<source-position filename="garray.h" line="64"/>
|
|
<parameters>
|
|
<parameter name="a">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="8804">a #GArray</doc>
|
|
</parameter>
|
|
<parameter name="v">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="8805">the value to append to the #GArray</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="array_index" c:identifier="g_array_index" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="8918">Returns the element of a #GArray at the given index. The return
|
|
value is cast to the given type.
|
|
|
|
This example gets a pointer to an element in a #GArray:
|
|
|[<!-- language="C" -->
|
|
EDayViewEvent *event;
|
|
// This gets a pointer to the 4th element in the array of
|
|
// EDayViewEvent structs.
|
|
event = &g_array_index (events, EDayViewEvent, 3);
|
|
]|</doc>
|
|
<source-position filename="garray.h" line="67"/>
|
|
<parameters>
|
|
<parameter name="a">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="8920">a #GArray</doc>
|
|
</parameter>
|
|
<parameter name="t">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="8921">the type of the elements</doc>
|
|
</parameter>
|
|
<parameter name="i">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="8922">the index of the element to return</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="array_insert_val" c:identifier="g_array_insert_val" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="8939">Inserts an element into an array at the given index.
|
|
|
|
g_array_insert_val() is a macro which uses a reference to the value
|
|
parameter @v. This means that you cannot use it with literal values
|
|
such as "27". You must use variables.</doc>
|
|
<source-position filename="garray.h" line="66"/>
|
|
<parameters>
|
|
<parameter name="a">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="8941">a #GArray</doc>
|
|
</parameter>
|
|
<parameter name="i">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="8942">the index to place the element at</doc>
|
|
</parameter>
|
|
<parameter name="v">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="8943">the value to insert into the array</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="array_prepend_val" c:identifier="g_array_prepend_val" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="8990">Adds the value on to the start of the array. The array will grow in
|
|
size automatically if necessary.
|
|
|
|
This operation is slower than g_array_append_val() since the
|
|
existing elements in the array have to be moved to make space for
|
|
the new element.
|
|
|
|
g_array_prepend_val() is a macro which uses a reference to the value
|
|
parameter @v. This means that you cannot use it with literal values
|
|
such as "27". You must use variables.</doc>
|
|
<source-position filename="garray.h" line="65"/>
|
|
<parameters>
|
|
<parameter name="a">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="8992">a #GArray</doc>
|
|
</parameter>
|
|
<parameter name="v">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="8993">the value to prepend to the #GArray</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function name="ascii_digit_value" c:identifier="g_ascii_digit_value">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9175">Determines the numeric value of a character as a decimal digit.
|
|
Differs from g_unichar_digit_value() because it takes a char, so
|
|
there's no worry about sign extension if characters are signed.</doc>
|
|
<source-position filename="gstrfuncs.h" line="95"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9183">If @c is a decimal digit (according to g_ascii_isdigit()),
|
|
its numeric value. Otherwise, -1.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="c" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9177">an ASCII character</doc>
|
|
<type name="gchar" c:type="gchar"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="ascii_dtostr" c:identifier="g_ascii_dtostr">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9188">Converts a #gdouble to a string, using the '.' as
|
|
decimal point.
|
|
|
|
This function generates enough precision that converting
|
|
the string back using g_ascii_strtod() gives the same machine-number
|
|
(on machines with IEEE compatible 64bit doubles). It is
|
|
guaranteed that the size of the resulting string will never
|
|
be larger than @G_ASCII_DTOSTR_BUF_SIZE bytes, including the terminating
|
|
nul character, which is always added.</doc>
|
|
<source-position filename="gstrfuncs.h" line="165"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9204">The pointer to the buffer with the converted string.</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="buffer" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9190">A buffer to place the resulting string in</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</parameter>
|
|
<parameter name="buf_len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9191">The length of the buffer.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="d" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9192">The #gdouble to convert</doc>
|
|
<type name="gdouble" c:type="gdouble"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="ascii_formatd" c:identifier="g_ascii_formatd">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9208">Converts a #gdouble to a string, using the '.' as
|
|
decimal point. To format the number you pass in
|
|
a printf()-style format string. Allowed conversion
|
|
specifiers are 'e', 'E', 'f', 'F', 'g' and 'G'.
|
|
|
|
The returned buffer is guaranteed to be nul-terminated.
|
|
|
|
If you just want to want to serialize the value into a
|
|
string, use g_ascii_dtostr().</doc>
|
|
<source-position filename="gstrfuncs.h" line="169"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9226">The pointer to the buffer with the converted string.</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="buffer" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9210">A buffer to place the resulting string in</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</parameter>
|
|
<parameter name="buf_len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9211">The length of the buffer.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="format" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9212">The printf()-style format to use for the
|
|
code to use for converting.</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="d" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9214">The #gdouble to convert</doc>
|
|
<type name="gdouble" c:type="gdouble"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function-macro name="ascii_isalnum" c:identifier="g_ascii_isalnum" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9230">Determines whether a character is alphanumeric.
|
|
|
|
Unlike the standard C library isalnum() function, this only
|
|
recognizes standard ASCII letters and ignores the locale,
|
|
returning %FALSE for all non-ASCII characters. Also, unlike
|
|
the standard library function, this takes a char, not an int,
|
|
so don't call it on %EOF, but no need to cast to #guchar before
|
|
passing a possibly non-ASCII character in.</doc>
|
|
<source-position filename="gstrfuncs.h" line="56"/>
|
|
<parameters>
|
|
<parameter name="c">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9232">any character</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="ascii_isalpha" c:identifier="g_ascii_isalpha" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9247">Determines whether a character is alphabetic (i.e. a letter).
|
|
|
|
Unlike the standard C library isalpha() function, this only
|
|
recognizes standard ASCII letters and ignores the locale,
|
|
returning %FALSE for all non-ASCII characters. Also, unlike
|
|
the standard library function, this takes a char, not an int,
|
|
so don't call it on %EOF, but no need to cast to #guchar before
|
|
passing a possibly non-ASCII character in.</doc>
|
|
<source-position filename="gstrfuncs.h" line="59"/>
|
|
<parameters>
|
|
<parameter name="c">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9249">any character</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="ascii_iscntrl" c:identifier="g_ascii_iscntrl" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9264">Determines whether a character is a control character.
|
|
|
|
Unlike the standard C library iscntrl() function, this only
|
|
recognizes standard ASCII control characters and ignores the
|
|
locale, returning %FALSE for all non-ASCII characters. Also,
|
|
unlike the standard library function, this takes a char, not
|
|
an int, so don't call it on %EOF, but no need to cast to #guchar
|
|
before passing a possibly non-ASCII character in.</doc>
|
|
<source-position filename="gstrfuncs.h" line="62"/>
|
|
<parameters>
|
|
<parameter name="c">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9266">any character</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="ascii_isdigit" c:identifier="g_ascii_isdigit" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9281">Determines whether a character is digit (0-9).
|
|
|
|
Unlike the standard C library isdigit() function, this takes
|
|
a char, not an int, so don't call it on %EOF, but no need to
|
|
cast to #guchar before passing a possibly non-ASCII character in.</doc>
|
|
<source-position filename="gstrfuncs.h" line="65"/>
|
|
<parameters>
|
|
<parameter name="c">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9283">any character</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="ascii_isgraph" c:identifier="g_ascii_isgraph" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9295">Determines whether a character is a printing character and not a space.
|
|
|
|
Unlike the standard C library isgraph() function, this only
|
|
recognizes standard ASCII characters and ignores the locale,
|
|
returning %FALSE for all non-ASCII characters. Also, unlike
|
|
the standard library function, this takes a char, not an int,
|
|
so don't call it on %EOF, but no need to cast to #guchar before
|
|
passing a possibly non-ASCII character in.</doc>
|
|
<source-position filename="gstrfuncs.h" line="68"/>
|
|
<parameters>
|
|
<parameter name="c">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9297">any character</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="ascii_islower" c:identifier="g_ascii_islower" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9312">Determines whether a character is an ASCII lower case letter.
|
|
|
|
Unlike the standard C library islower() function, this only
|
|
recognizes standard ASCII letters and ignores the locale,
|
|
returning %FALSE for all non-ASCII characters. Also, unlike
|
|
the standard library function, this takes a char, not an int,
|
|
so don't call it on %EOF, but no need to worry about casting
|
|
to #guchar before passing a possibly non-ASCII character in.</doc>
|
|
<source-position filename="gstrfuncs.h" line="71"/>
|
|
<parameters>
|
|
<parameter name="c">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9314">any character</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="ascii_isprint" c:identifier="g_ascii_isprint" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9329">Determines whether a character is a printing character.
|
|
|
|
Unlike the standard C library isprint() function, this only
|
|
recognizes standard ASCII characters and ignores the locale,
|
|
returning %FALSE for all non-ASCII characters. Also, unlike
|
|
the standard library function, this takes a char, not an int,
|
|
so don't call it on %EOF, but no need to cast to #guchar before
|
|
passing a possibly non-ASCII character in.</doc>
|
|
<source-position filename="gstrfuncs.h" line="74"/>
|
|
<parameters>
|
|
<parameter name="c">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9331">any character</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="ascii_ispunct" c:identifier="g_ascii_ispunct" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9346">Determines whether a character is a punctuation character.
|
|
|
|
Unlike the standard C library ispunct() function, this only
|
|
recognizes standard ASCII letters and ignores the locale,
|
|
returning %FALSE for all non-ASCII characters. Also, unlike
|
|
the standard library function, this takes a char, not an int,
|
|
so don't call it on %EOF, but no need to cast to #guchar before
|
|
passing a possibly non-ASCII character in.</doc>
|
|
<source-position filename="gstrfuncs.h" line="77"/>
|
|
<parameters>
|
|
<parameter name="c">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9348">any character</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="ascii_isspace" c:identifier="g_ascii_isspace" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9363">Determines whether a character is a white-space character.
|
|
|
|
Unlike the standard C library isspace() function, this only
|
|
recognizes standard ASCII white-space and ignores the locale,
|
|
returning %FALSE for all non-ASCII characters. Also, unlike
|
|
the standard library function, this takes a char, not an int,
|
|
so don't call it on %EOF, but no need to cast to #guchar before
|
|
passing a possibly non-ASCII character in.</doc>
|
|
<source-position filename="gstrfuncs.h" line="80"/>
|
|
<parameters>
|
|
<parameter name="c">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9365">any character</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="ascii_isupper" c:identifier="g_ascii_isupper" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9380">Determines whether a character is an ASCII upper case letter.
|
|
|
|
Unlike the standard C library isupper() function, this only
|
|
recognizes standard ASCII letters and ignores the locale,
|
|
returning %FALSE for all non-ASCII characters. Also, unlike
|
|
the standard library function, this takes a char, not an int,
|
|
so don't call it on %EOF, but no need to worry about casting
|
|
to #guchar before passing a possibly non-ASCII character in.</doc>
|
|
<source-position filename="gstrfuncs.h" line="83"/>
|
|
<parameters>
|
|
<parameter name="c">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9382">any character</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="ascii_isxdigit" c:identifier="g_ascii_isxdigit" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9397">Determines whether a character is a hexadecimal-digit character.
|
|
|
|
Unlike the standard C library isxdigit() function, this takes
|
|
a char, not an int, so don't call it on %EOF, but no need to
|
|
cast to #guchar before passing a possibly non-ASCII character in.</doc>
|
|
<source-position filename="gstrfuncs.h" line="86"/>
|
|
<parameters>
|
|
<parameter name="c">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9399">any character</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function name="ascii_strcasecmp" c:identifier="g_ascii_strcasecmp">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9411">Compare two strings, ignoring the case of ASCII characters.
|
|
|
|
Unlike the BSD strcasecmp() function, this only recognizes standard
|
|
ASCII letters and ignores the locale, treating all non-ASCII
|
|
bytes as if they are not letters.
|
|
|
|
This function should be used only on strings that are known to be
|
|
in encodings where the bytes corresponding to ASCII letters always
|
|
represent themselves. This includes UTF-8 and the ISO-8859-*
|
|
charsets, but not for instance double-byte encodings like the
|
|
Windows Codepage 932, where the trailing bytes of double-byte
|
|
characters include all ASCII letters. If you compare two CP932
|
|
strings using this function, you will get false matches.
|
|
|
|
Both @s1 and @s2 must be non-%NULL.</doc>
|
|
<source-position filename="gstrfuncs.h" line="184"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9432">0 if the strings match, a negative value if @s1 < @s2,
|
|
or a positive value if @s1 > @s2.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="s1" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9413">string to compare with @s2</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="s2" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9414">string to compare with @s1</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="ascii_strdown" c:identifier="g_ascii_strdown">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9437">Converts all upper case ASCII letters to lower case ASCII letters.</doc>
|
|
<source-position filename="gstrfuncs.h" line="191"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9444">a newly-allocated string, with all the upper case
|
|
characters in @str converted to lower case, with semantics that
|
|
exactly match g_ascii_tolower(). (Note that this is unlike the
|
|
old g_strdown(), which modified the string in place.)</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="str" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9439">a string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9440">length of @str in bytes, or -1 if @str is nul-terminated</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="ascii_string_to_signed" c:identifier="g_ascii_string_to_signed" version="2.54" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9451">A convenience function for converting a string to a signed number.
|
|
|
|
This function assumes that @str contains only a number of the given
|
|
@base that is within inclusive bounds limited by @min and @max. If
|
|
this is true, then the converted number is stored in @out_num. An
|
|
empty string is not a valid input. A string with leading or
|
|
trailing whitespace is also an invalid input.
|
|
|
|
@base can be between 2 and 36 inclusive. Hexadecimal numbers must
|
|
not be prefixed with "0x" or "0X". Such a problem does not exist
|
|
for octal numbers, since they were usually prefixed with a zero
|
|
which does not change the value of the parsed number.
|
|
|
|
Parsing failures result in an error with the %G_NUMBER_PARSER_ERROR
|
|
domain. If the input is invalid, the error code will be
|
|
%G_NUMBER_PARSER_ERROR_INVALID. If the parsed number is out of
|
|
bounds - %G_NUMBER_PARSER_ERROR_OUT_OF_BOUNDS.
|
|
|
|
See g_ascii_strtoll() if you have more complex needs such as
|
|
parsing a string which starts with a number, but then has other
|
|
characters.</doc>
|
|
<source-position filename="gstrfuncs.h" line="345"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9482">%TRUE if @str was a number, otherwise %FALSE.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="str" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9453">a string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="base" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9454">base of a parsed number</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
<parameter name="min" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9455">a lower bound (inclusive)</doc>
|
|
<type name="gint64" c:type="gint64"/>
|
|
</parameter>
|
|
<parameter name="max" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9456">an upper bound (inclusive)</doc>
|
|
<type name="gint64" c:type="gint64"/>
|
|
</parameter>
|
|
<parameter name="out_num" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9457">a return location for a number</doc>
|
|
<type name="gint64" c:type="gint64*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="ascii_string_to_unsigned" c:identifier="g_ascii_string_to_unsigned" version="2.54" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9487">A convenience function for converting a string to an unsigned number.
|
|
|
|
This function assumes that @str contains only a number of the given
|
|
@base that is within inclusive bounds limited by @min and @max. If
|
|
this is true, then the converted number is stored in @out_num. An
|
|
empty string is not a valid input. A string with leading or
|
|
trailing whitespace is also an invalid input. A string with a leading sign
|
|
(`-` or `+`) is not a valid input for the unsigned parser.
|
|
|
|
@base can be between 2 and 36 inclusive. Hexadecimal numbers must
|
|
not be prefixed with "0x" or "0X". Such a problem does not exist
|
|
for octal numbers, since they were usually prefixed with a zero
|
|
which does not change the value of the parsed number.
|
|
|
|
Parsing failures result in an error with the %G_NUMBER_PARSER_ERROR
|
|
domain. If the input is invalid, the error code will be
|
|
%G_NUMBER_PARSER_ERROR_INVALID. If the parsed number is out of
|
|
bounds - %G_NUMBER_PARSER_ERROR_OUT_OF_BOUNDS.
|
|
|
|
See g_ascii_strtoull() if you have more complex needs such as
|
|
parsing a string which starts with a number, but then has other
|
|
characters.</doc>
|
|
<source-position filename="gstrfuncs.h" line="353"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9519">%TRUE if @str was a number, otherwise %FALSE.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="str" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9489">a string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="base" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9490">base of a parsed number</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
<parameter name="min" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9491">a lower bound (inclusive)</doc>
|
|
<type name="guint64" c:type="guint64"/>
|
|
</parameter>
|
|
<parameter name="max" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9492">an upper bound (inclusive)</doc>
|
|
<type name="guint64" c:type="guint64"/>
|
|
</parameter>
|
|
<parameter name="out_num" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9493">a return location for a number</doc>
|
|
<type name="guint64" c:type="guint64*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="ascii_strncasecmp" c:identifier="g_ascii_strncasecmp">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9524">Compare @s1 and @s2, ignoring the case of ASCII characters and any
|
|
characters after the first @n in each string.
|
|
|
|
Unlike the BSD strcasecmp() function, this only recognizes standard
|
|
ASCII letters and ignores the locale, treating all non-ASCII
|
|
characters as if they are not letters.
|
|
|
|
The same warning as in g_ascii_strcasecmp() applies: Use this
|
|
function only on strings known to be in encodings where bytes
|
|
corresponding to ASCII letters always represent themselves.</doc>
|
|
<source-position filename="gstrfuncs.h" line="187"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9541">0 if the strings match, a negative value if @s1 < @s2,
|
|
or a positive value if @s1 > @s2.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="s1" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9526">string to compare with @s2</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="s2" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9527">string to compare with @s1</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="n" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9528">number of characters to compare</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="ascii_strtod" c:identifier="g_ascii_strtod">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9546">Converts a string to a #gdouble value.
|
|
|
|
This function behaves like the standard strtod() function
|
|
does in the C locale. It does this without actually changing
|
|
the current locale, since that would not be thread-safe.
|
|
A limitation of the implementation is that this function
|
|
will still accept localized versions of infinities and NANs.
|
|
|
|
This function is typically used when reading configuration
|
|
files or other non-user input that should be locale independent.
|
|
To handle input from the user you should normally use the
|
|
locale-sensitive system strtod() function.
|
|
|
|
To convert from a #gdouble to a string in a locale-insensitive
|
|
way, use g_ascii_dtostr().
|
|
|
|
If the correct value would cause overflow, plus or minus %HUGE_VAL
|
|
is returned (according to the sign of the value), and %ERANGE is
|
|
stored in %errno. If the correct value would cause underflow,
|
|
zero is returned and %ERANGE is stored in %errno.
|
|
|
|
This function resets %errno before calling strtod() so that
|
|
you can reliably detect overflow and underflow.</doc>
|
|
<source-position filename="gstrfuncs.h" line="150"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9576">the #gdouble value.</doc>
|
|
<type name="gdouble" c:type="gdouble"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="nptr" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9548">the string to convert to a numeric value.</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="endptr" direction="out" caller-allocates="0" transfer-ownership="none" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9549">if non-%NULL, it returns the
|
|
character after the last character used in the conversion.</doc>
|
|
<type name="utf8" c:type="gchar**"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="ascii_strtoll" c:identifier="g_ascii_strtoll" version="2.12">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9580">Converts a string to a #gint64 value.
|
|
This function behaves like the standard strtoll() function
|
|
does in the C locale. It does this without actually
|
|
changing the current locale, since that would not be
|
|
thread-safe.
|
|
|
|
This function is typically used when reading configuration
|
|
files or other non-user input that should be locale independent.
|
|
To handle input from the user you should normally use the
|
|
locale-sensitive system strtoll() function.
|
|
|
|
If the correct value would cause overflow, %G_MAXINT64 or %G_MININT64
|
|
is returned, and `ERANGE` is stored in `errno`.
|
|
If the base is outside the valid range, zero is returned, and
|
|
`EINVAL` is stored in `errno`. If the
|
|
string conversion fails, zero is returned, and @endptr returns @nptr
|
|
(if @endptr is non-%NULL).</doc>
|
|
<source-position filename="gstrfuncs.h" line="157"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9605">the #gint64 value or zero on error.</doc>
|
|
<type name="gint64" c:type="gint64"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="nptr" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9582">the string to convert to a numeric value.</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="endptr" direction="out" caller-allocates="0" transfer-ownership="none" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9583">if non-%NULL, it returns the
|
|
character after the last character used in the conversion.</doc>
|
|
<type name="utf8" c:type="gchar**"/>
|
|
</parameter>
|
|
<parameter name="base" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9585">to be used for the conversion, 2..36 or 0</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="ascii_strtoull" c:identifier="g_ascii_strtoull" version="2.2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9610">Converts a string to a #guint64 value.
|
|
This function behaves like the standard strtoull() function
|
|
does in the C locale. It does this without actually
|
|
changing the current locale, since that would not be
|
|
thread-safe.
|
|
|
|
Note that input with a leading minus sign (`-`) is accepted, and will return
|
|
the negation of the parsed number, unless that would overflow a #guint64.
|
|
Critically, this means you cannot assume that a short fixed length input will
|
|
never result in a low return value, as the input could have a leading `-`.
|
|
|
|
This function is typically used when reading configuration
|
|
files or other non-user input that should be locale independent.
|
|
To handle input from the user you should normally use the
|
|
locale-sensitive system strtoull() function.
|
|
|
|
If the correct value would cause overflow, %G_MAXUINT64
|
|
is returned, and `ERANGE` is stored in `errno`.
|
|
If the base is outside the valid range, zero is returned, and
|
|
`EINVAL` is stored in `errno`.
|
|
If the string conversion fails, zero is returned, and @endptr returns
|
|
@nptr (if @endptr is non-%NULL).</doc>
|
|
<source-position filename="gstrfuncs.h" line="153"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9640">the #guint64 value or zero on error.</doc>
|
|
<type name="guint64" c:type="guint64"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="nptr" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9612">the string to convert to a numeric value.</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="endptr" direction="out" caller-allocates="0" transfer-ownership="none" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9613">if non-%NULL, it returns the
|
|
character after the last character used in the conversion.</doc>
|
|
<type name="utf8" c:type="gchar**"/>
|
|
</parameter>
|
|
<parameter name="base" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9615">to be used for the conversion, 2..36 or 0</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="ascii_strup" c:identifier="g_ascii_strup">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9645">Converts all lower case ASCII letters to upper case ASCII letters.</doc>
|
|
<source-position filename="gstrfuncs.h" line="194"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9652">a newly allocated string, with all the lower case
|
|
characters in @str converted to upper case, with semantics that
|
|
exactly match g_ascii_toupper(). (Note that this is unlike the
|
|
old g_strup(), which modified the string in place.)</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="str" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9647">a string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9648">length of @str in bytes, or -1 if @str is nul-terminated</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="ascii_tolower" c:identifier="g_ascii_tolower">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9659">Convert a character to ASCII lower case.
|
|
|
|
Unlike the standard C library tolower() function, this only
|
|
recognizes standard ASCII letters and ignores the locale, returning
|
|
all non-ASCII characters unchanged, even if they are lower case
|
|
letters in a particular character set. Also unlike the standard
|
|
library function, this takes and returns a char, not an int, so
|
|
don't call it on %EOF but no need to worry about casting to #guchar
|
|
before passing a possibly non-ASCII character in.</doc>
|
|
<source-position filename="gstrfuncs.h" line="90"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9673">the result of converting @c to lower case. If @c is
|
|
not an ASCII upper case letter, @c is returned unchanged.</doc>
|
|
<type name="gchar" c:type="gchar"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="c" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9661">any character</doc>
|
|
<type name="gchar" c:type="gchar"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="ascii_toupper" c:identifier="g_ascii_toupper">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9678">Convert a character to ASCII upper case.
|
|
|
|
Unlike the standard C library toupper() function, this only
|
|
recognizes standard ASCII letters and ignores the locale, returning
|
|
all non-ASCII characters unchanged, even if they are upper case
|
|
letters in a particular character set. Also unlike the standard
|
|
library function, this takes and returns a char, not an int, so
|
|
don't call it on %EOF but no need to worry about casting to #guchar
|
|
before passing a possibly non-ASCII character in.</doc>
|
|
<source-position filename="gstrfuncs.h" line="92"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9692">the result of converting @c to upper case. If @c is not
|
|
an ASCII lower case letter, @c is returned unchanged.</doc>
|
|
<type name="gchar" c:type="gchar"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="c" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9680">any character</doc>
|
|
<type name="gchar" c:type="gchar"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="ascii_xdigit_value" c:identifier="g_ascii_xdigit_value">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9697">Determines the numeric value of a character as a hexidecimal
|
|
digit. Differs from g_unichar_xdigit_value() because it takes
|
|
a char, so there's no worry about sign extension if characters
|
|
are signed.</doc>
|
|
<source-position filename="gstrfuncs.h" line="97"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9706">If @c is a hex digit (according to g_ascii_isxdigit()),
|
|
its numeric value. Otherwise, -1.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="c" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9699">an ASCII character.</doc>
|
|
<type name="gchar" c:type="gchar"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function-macro name="assert" c:identifier="g_assert" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9711">Debugging macro to terminate the application if the assertion
|
|
fails. If the assertion fails (i.e. the expression is not true),
|
|
an error message is logged and the application is terminated.
|
|
|
|
The macro can be turned off in final releases of code by defining
|
|
`G_DISABLE_ASSERT` when compiling the application, so code must
|
|
not depend on any side effects from @expr. Similarly, it must not be used
|
|
in unit tests, otherwise the unit tests will be ineffective if compiled with
|
|
`G_DISABLE_ASSERT`. Use g_assert_true() and related macros in unit tests
|
|
instead.</doc>
|
|
<source-position filename="gtestutils.h" line="160"/>
|
|
<parameters>
|
|
<parameter name="expr">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9713">the expression to check</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="assert_cmpfloat" c:identifier="g_assert_cmpfloat" version="2.16" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9728">Debugging macro to compare two floating point numbers.
|
|
|
|
The effect of `g_assert_cmpfloat (n1, op, n2)` is
|
|
the same as `g_assert_true (n1 op n2)`. The advantage
|
|
of this macro is that it can produce a message that includes the
|
|
actual values of @n1 and @n2.</doc>
|
|
<source-position filename="gtestutils.h" line="66"/>
|
|
<parameters>
|
|
<parameter name="n1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9730">an floating point number</doc>
|
|
</parameter>
|
|
<parameter name="cmp">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9731">The comparison operator to use.
|
|
One of `==`, `!=`, `<`, `>`, `<=`, `>=`.</doc>
|
|
</parameter>
|
|
<parameter name="n2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9733">another floating point number</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="assert_cmpfloat_with_epsilon" c:identifier="g_assert_cmpfloat_with_epsilon" version="2.58" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9746">Debugging macro to compare two floating point numbers within an epsilon.
|
|
|
|
The effect of `g_assert_cmpfloat_with_epsilon (n1, n2, epsilon)` is
|
|
the same as `g_assert_true (abs (n1 - n2) < epsilon)`. The advantage
|
|
of this macro is that it can produce a message that includes the
|
|
actual values of @n1 and @n2.</doc>
|
|
<source-position filename="gtestutils.h" line="72"/>
|
|
<parameters>
|
|
<parameter name="n1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9748">an floating point number</doc>
|
|
</parameter>
|
|
<parameter name="n2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9749">another floating point number</doc>
|
|
</parameter>
|
|
<parameter name="epsilon">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9750">a numeric value that expresses the expected tolerance
|
|
between @n1 and @n2</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="assert_cmphex" c:identifier="g_assert_cmphex" version="2.16" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9764">Debugging macro to compare to unsigned integers.
|
|
|
|
This is a variant of g_assert_cmpuint() that displays the numbers
|
|
in hexadecimal notation in the message.</doc>
|
|
<source-position filename="gtestutils.h" line="60"/>
|
|
<parameters>
|
|
<parameter name="n1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9766">an unsigned integer</doc>
|
|
</parameter>
|
|
<parameter name="cmp">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9767">The comparison operator to use.
|
|
One of `==`, `!=`, `<`, `>`, `<=`, `>=`.</doc>
|
|
</parameter>
|
|
<parameter name="n2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9769">another unsigned integer</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="assert_cmpint" c:identifier="g_assert_cmpint" version="2.16" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9780">Debugging macro to compare two integers.
|
|
|
|
The effect of `g_assert_cmpint (n1, op, n2)` is
|
|
the same as `g_assert_true (n1 op n2)`. The advantage
|
|
of this macro is that it can produce a message that includes the
|
|
actual values of @n1 and @n2.</doc>
|
|
<source-position filename="gtestutils.h" line="48"/>
|
|
<parameters>
|
|
<parameter name="n1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9782">an integer</doc>
|
|
</parameter>
|
|
<parameter name="cmp">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9783">The comparison operator to use.
|
|
One of `==`, `!=`, `<`, `>`, `<=`, `>=`.</doc>
|
|
</parameter>
|
|
<parameter name="n2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9785">another integer</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="assert_cmpmem" c:identifier="g_assert_cmpmem" version="2.46" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9798">Debugging macro to compare memory regions. If the comparison fails,
|
|
an error message is logged and the application is either terminated
|
|
or the testcase marked as failed.
|
|
|
|
The effect of `g_assert_cmpmem (m1, l1, m2, l2)` is
|
|
the same as `g_assert_true (l1 == l2 && memcmp (m1, m2, l1) == 0)`.
|
|
The advantage of this macro is that it can produce a message that
|
|
includes the actual values of @l1 and @l2.
|
|
|
|
|[<!-- language="C" -->
|
|
g_assert_cmpmem (buf->data, buf->len, expected, sizeof (expected));
|
|
]|</doc>
|
|
<source-position filename="gtestutils.h" line="79"/>
|
|
<parameters>
|
|
<parameter name="m1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9800">pointer to a buffer</doc>
|
|
</parameter>
|
|
<parameter name="l1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9801">length of @m1</doc>
|
|
</parameter>
|
|
<parameter name="m2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9802">pointer to another buffer</doc>
|
|
</parameter>
|
|
<parameter name="l2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9803">length of @m2</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="assert_cmpstr" c:identifier="g_assert_cmpstr" version="2.16" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9822">Debugging macro to compare two strings. If the comparison fails,
|
|
an error message is logged and the application is either terminated
|
|
or the testcase marked as failed.
|
|
The strings are compared using g_strcmp0().
|
|
|
|
The effect of `g_assert_cmpstr (s1, op, s2)` is
|
|
the same as `g_assert_true (g_strcmp0 (s1, s2) op 0)`.
|
|
The advantage of this macro is that it can produce a message that
|
|
includes the actual values of @s1 and @s2.
|
|
|
|
|[<!-- language="C" -->
|
|
g_assert_cmpstr (mystring, ==, "fubar");
|
|
]|</doc>
|
|
<source-position filename="gtestutils.h" line="42"/>
|
|
<parameters>
|
|
<parameter name="s1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9824">a string (may be %NULL)</doc>
|
|
</parameter>
|
|
<parameter name="cmp">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9825">The comparison operator to use.
|
|
One of `==`, `!=`, `<`, `>`, `<=`, `>=`.</doc>
|
|
</parameter>
|
|
<parameter name="s2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9827">another string (may be %NULL)</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="assert_cmpuint" c:identifier="g_assert_cmpuint" version="2.16" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9847">Debugging macro to compare two unsigned integers.
|
|
|
|
The effect of `g_assert_cmpuint (n1, op, n2)` is
|
|
the same as `g_assert_true (n1 op n2)`. The advantage
|
|
of this macro is that it can produce a message that includes the
|
|
actual values of @n1 and @n2.</doc>
|
|
<source-position filename="gtestutils.h" line="54"/>
|
|
<parameters>
|
|
<parameter name="n1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9849">an unsigned integer</doc>
|
|
</parameter>
|
|
<parameter name="cmp">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9850">The comparison operator to use.
|
|
One of `==`, `!=`, `<`, `>`, `<=`, `>=`.</doc>
|
|
</parameter>
|
|
<parameter name="n2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9852">another unsigned integer</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="assert_cmpvariant" c:identifier="g_assert_cmpvariant" version="2.60" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9865">Debugging macro to compare two #GVariants. If the comparison fails,
|
|
an error message is logged and the application is either terminated
|
|
or the testcase marked as failed. The variants are compared using
|
|
g_variant_equal().
|
|
|
|
The effect of `g_assert_cmpvariant (v1, v2)` is the same as
|
|
`g_assert_true (g_variant_equal (v1, v2))`. The advantage of this macro is
|
|
that it can produce a message that includes the actual values of @v1 and @v2.</doc>
|
|
<source-position filename="gtestutils.h" line="90"/>
|
|
<parameters>
|
|
<parameter name="v1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9867">pointer to a #GVariant</doc>
|
|
</parameter>
|
|
<parameter name="v2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9868">pointer to another #GVariant</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="assert_error" c:identifier="g_assert_error" version="2.20" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9883">Debugging macro to check that a method has returned
|
|
the correct #GError.
|
|
|
|
The effect of `g_assert_error (err, dom, c)` is
|
|
the same as `g_assert_true (err != NULL && err->domain
|
|
== dom && err->code == c)`. The advantage of this
|
|
macro is that it can produce a message that includes the incorrect
|
|
error message and code.
|
|
|
|
This can only be used to test for a specific error. If you want to
|
|
test that @err is set, but don't care what it's set to, just use
|
|
`g_assert_nonnull (err)`.</doc>
|
|
<source-position filename="gtestutils.h" line="112"/>
|
|
<parameters>
|
|
<parameter name="err">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9885">a #GError, possibly %NULL</doc>
|
|
</parameter>
|
|
<parameter name="dom">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9886">the expected error domain (a #GQuark)</doc>
|
|
</parameter>
|
|
<parameter name="c">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9887">the expected error code</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="assert_false" c:identifier="g_assert_false" version="2.38" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9906">Debugging macro to check an expression is false.
|
|
|
|
If the assertion fails (i.e. the expression is not false),
|
|
an error message is logged and the application is either
|
|
terminated or the testcase marked as failed.
|
|
|
|
Note that unlike g_assert(), this macro is unaffected by whether
|
|
`G_DISABLE_ASSERT` is defined. Hence it should only be used in tests and,
|
|
conversely, g_assert() should not be used in tests.
|
|
|
|
See g_test_set_nonfatal_assertions().</doc>
|
|
<source-position filename="gtestutils.h" line="122"/>
|
|
<parameters>
|
|
<parameter name="expr">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9908">the expression to check</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="assert_no_error" c:identifier="g_assert_no_error" version="2.20" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9926">Debugging macro to check that a #GError is not set.
|
|
|
|
The effect of `g_assert_no_error (err)` is
|
|
the same as `g_assert_true (err == NULL)`. The advantage
|
|
of this macro is that it can produce a message that includes
|
|
the error message and code.</doc>
|
|
<source-position filename="gtestutils.h" line="107"/>
|
|
<parameters>
|
|
<parameter name="err">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9928">a #GError, possibly %NULL</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="assert_nonnull" c:identifier="g_assert_nonnull" version="2.40" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9941">Debugging macro to check an expression is not %NULL.
|
|
|
|
If the assertion fails (i.e. the expression is %NULL),
|
|
an error message is logged and the application is either
|
|
terminated or the testcase marked as failed.
|
|
|
|
Note that unlike g_assert(), this macro is unaffected by whether
|
|
`G_DISABLE_ASSERT` is defined. Hence it should only be used in tests and,
|
|
conversely, g_assert() should not be used in tests.
|
|
|
|
See g_test_set_nonfatal_assertions().</doc>
|
|
<source-position filename="gtestutils.h" line="134"/>
|
|
<parameters>
|
|
<parameter name="expr">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9943">the expression to check</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="assert_null" c:identifier="g_assert_null" version="2.38" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9974">Debugging macro to check an expression is %NULL.
|
|
|
|
If the assertion fails (i.e. the expression is not %NULL),
|
|
an error message is logged and the application is either
|
|
terminated or the testcase marked as failed.
|
|
|
|
Note that unlike g_assert(), this macro is unaffected by whether
|
|
`G_DISABLE_ASSERT` is defined. Hence it should only be used in tests and,
|
|
conversely, g_assert() should not be used in tests.
|
|
|
|
See g_test_set_nonfatal_assertions().</doc>
|
|
<source-position filename="gtestutils.h" line="130"/>
|
|
<parameters>
|
|
<parameter name="expr">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9976">the expression to check</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="assert_true" c:identifier="g_assert_true" version="2.38" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9994">Debugging macro to check that an expression is true.
|
|
|
|
If the assertion fails (i.e. the expression is not true),
|
|
an error message is logged and the application is either
|
|
terminated or the testcase marked as failed.
|
|
|
|
Note that unlike g_assert(), this macro is unaffected by whether
|
|
`G_DISABLE_ASSERT` is defined. Hence it should only be used in tests and,
|
|
conversely, g_assert() should not be used in tests.
|
|
|
|
See g_test_set_nonfatal_assertions().</doc>
|
|
<source-position filename="gtestutils.h" line="117"/>
|
|
<parameters>
|
|
<parameter name="expr">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="9996">the expression to check</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function name="assert_warning" c:identifier="g_assert_warning">
|
|
<source-position filename="gmessages.h" line="279"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="log_domain" transfer-ownership="none">
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
<parameter name="file" transfer-ownership="none">
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
<parameter name="line" transfer-ownership="none">
|
|
<type name="gint" c:type="const int"/>
|
|
</parameter>
|
|
<parameter name="pretty_function" transfer-ownership="none">
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
<parameter name="expression" transfer-ownership="none">
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="assertion_message" c:identifier="g_assertion_message">
|
|
<source-position filename="gtestutils.h" line="445"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="domain" transfer-ownership="none">
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
<parameter name="file" transfer-ownership="none">
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
<parameter name="line" transfer-ownership="none">
|
|
<type name="gint" c:type="int"/>
|
|
</parameter>
|
|
<parameter name="func" transfer-ownership="none">
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
<parameter name="message" transfer-ownership="none">
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="assertion_message_cmpnum" c:identifier="g_assertion_message_cmpnum" introspectable="0">
|
|
<source-position filename="gtestutils.h" line="466"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="domain" transfer-ownership="none">
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
<parameter name="file" transfer-ownership="none">
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
<parameter name="line" transfer-ownership="none">
|
|
<type name="gint" c:type="int"/>
|
|
</parameter>
|
|
<parameter name="func" transfer-ownership="none">
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
<parameter name="expr" transfer-ownership="none">
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
<parameter name="arg1" transfer-ownership="none">
|
|
<type name="long double" c:type="long double"/>
|
|
</parameter>
|
|
<parameter name="cmp" transfer-ownership="none">
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
<parameter name="arg2" transfer-ownership="none">
|
|
<type name="long double" c:type="long double"/>
|
|
</parameter>
|
|
<parameter name="numtype" transfer-ownership="none">
|
|
<type name="gchar" c:type="char"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="assertion_message_cmpstr" c:identifier="g_assertion_message_cmpstr">
|
|
<source-position filename="gtestutils.h" line="457"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="domain" transfer-ownership="none">
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
<parameter name="file" transfer-ownership="none">
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
<parameter name="line" transfer-ownership="none">
|
|
<type name="gint" c:type="int"/>
|
|
</parameter>
|
|
<parameter name="func" transfer-ownership="none">
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
<parameter name="expr" transfer-ownership="none">
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
<parameter name="arg1" transfer-ownership="none">
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
<parameter name="cmp" transfer-ownership="none">
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
<parameter name="arg2" transfer-ownership="none">
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="assertion_message_error" c:identifier="g_assertion_message_error">
|
|
<source-position filename="gtestutils.h" line="476"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="domain" transfer-ownership="none">
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
<parameter name="file" transfer-ownership="none">
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
<parameter name="line" transfer-ownership="none">
|
|
<type name="gint" c:type="int"/>
|
|
</parameter>
|
|
<parameter name="func" transfer-ownership="none">
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
<parameter name="expr" transfer-ownership="none">
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
<parameter name="error" transfer-ownership="none">
|
|
<type name="Error" c:type="const GError*"/>
|
|
</parameter>
|
|
<parameter name="error_domain" transfer-ownership="none">
|
|
<type name="Quark" c:type="GQuark"/>
|
|
</parameter>
|
|
<parameter name="error_code" transfer-ownership="none">
|
|
<type name="gint" c:type="int"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="assertion_message_expr" c:identifier="g_assertion_message_expr" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10014">Internal function used to print messages from the public g_assert() and
|
|
g_assert_not_reached() macros.</doc>
|
|
<source-position filename="gtestutils.h" line="451"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="domain" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10016">log domain</doc>
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
<parameter name="file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10017">file containing the assertion</doc>
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
<parameter name="line" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10018">line number of the assertion</doc>
|
|
<type name="gint" c:type="int"/>
|
|
</parameter>
|
|
<parameter name="func" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10019">function containing the assertion</doc>
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
<parameter name="expr" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10020">expression which failed</doc>
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="atexit" c:identifier="g_atexit" deprecated="1" deprecated-version="2.32">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10464">Specifies a function to be called at normal program termination.
|
|
|
|
Since GLib 2.8.2, on Windows g_atexit() actually is a preprocessor
|
|
macro that maps to a call to the atexit() function in the C
|
|
library. This means that in case the code that calls g_atexit(),
|
|
i.e. atexit(), is in a DLL, the function will be called when the
|
|
DLL is detached from the program. This typically makes more sense
|
|
than that the function is called when the GLib DLL is detached,
|
|
which happened earlier when g_atexit() was a function in the GLib
|
|
DLL.
|
|
|
|
The behaviour of atexit() in the context of dynamically loaded
|
|
modules is not formally specified and varies wildly.
|
|
|
|
On POSIX systems, calling g_atexit() (or atexit()) in a dynamically
|
|
loaded module which is unloaded before the program terminates might
|
|
well cause a crash at program exit.
|
|
|
|
Some POSIX systems implement atexit() like Windows, and have each
|
|
dynamically loaded module maintain an own atexit chain that is
|
|
called when the module is unloaded.
|
|
|
|
On other POSIX systems, before a dynamically loaded module is
|
|
unloaded, the registered atexit functions (if any) residing in that
|
|
module are called, regardless where the code that registered them
|
|
resided. This is presumably the most robust approach.
|
|
|
|
As can be seen from the above, for portability it's best to avoid
|
|
calling g_atexit() (or atexit()) except in the main executable of a
|
|
program.</doc>
|
|
<doc-deprecated xml:space="preserve">It is best to avoid g_atexit().</doc-deprecated>
|
|
<source-position filename="gutils.h" line="213"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="func" transfer-ownership="none" scope="async">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10466">the function to call on normal program termination.</doc>
|
|
<type name="VoidFunc" c:type="GVoidFunc"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="atomic_int_add" c:identifier="g_atomic_int_add" version="2.4">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10503">Atomically adds @val to the value of @atomic.
|
|
|
|
Think of this operation as an atomic version of
|
|
`{ tmp = *atomic; *atomic += val; return tmp; }`.
|
|
|
|
This call acts as a full compiler and hardware memory barrier.
|
|
|
|
Before version 2.30, this function did not return a value
|
|
(but g_atomic_int_exchange_and_add() did, and had the same meaning).</doc>
|
|
<source-position filename="gatomic.h" line="45"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10518">the value of @atomic before the add, signed</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="atomic" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10505">a pointer to a #gint or #guint</doc>
|
|
<type name="gint" c:type="volatile gint*"/>
|
|
</parameter>
|
|
<parameter name="val" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10506">the value to add</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="atomic_int_and" c:identifier="g_atomic_int_and" version="2.30">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10523">Performs an atomic bitwise 'and' of the value of @atomic and @val,
|
|
storing the result back in @atomic.
|
|
|
|
This call acts as a full compiler and hardware memory barrier.
|
|
|
|
Think of this operation as an atomic version of
|
|
`{ tmp = *atomic; *atomic &= val; return tmp; }`.</doc>
|
|
<source-position filename="gatomic.h" line="48"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10536">the value of @atomic before the operation, unsigned</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="atomic" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10525">a pointer to a #gint or #guint</doc>
|
|
<type name="guint" c:type="volatile guint*"/>
|
|
</parameter>
|
|
<parameter name="val" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10526">the value to 'and'</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="atomic_int_compare_and_exchange" c:identifier="g_atomic_int_compare_and_exchange" version="2.4">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10541">Compares @atomic to @oldval and, if equal, sets it to @newval.
|
|
If @atomic was not equal to @oldval then no change occurs.
|
|
|
|
This compare and exchange is done atomically.
|
|
|
|
Think of this operation as an atomic version of
|
|
`{ if (*atomic == oldval) { *atomic = newval; return TRUE; } else return FALSE; }`.
|
|
|
|
This call acts as a full compiler and hardware memory barrier.</doc>
|
|
<source-position filename="gatomic.h" line="41"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10557">%TRUE if the exchange took place</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="atomic" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10543">a pointer to a #gint or #guint</doc>
|
|
<type name="gint" c:type="volatile gint*"/>
|
|
</parameter>
|
|
<parameter name="oldval" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10544">the value to compare with</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="newval" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10545">the value to conditionally replace with</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="atomic_int_dec_and_test" c:identifier="g_atomic_int_dec_and_test" version="2.4">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10562">Decrements the value of @atomic by 1.
|
|
|
|
Think of this operation as an atomic version of
|
|
`{ *atomic -= 1; return (*atomic == 0); }`.
|
|
|
|
This call acts as a full compiler and hardware memory barrier.</doc>
|
|
<source-position filename="gatomic.h" line="39"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10573">%TRUE if the resultant value is zero</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="atomic" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10564">a pointer to a #gint or #guint</doc>
|
|
<type name="gint" c:type="volatile gint*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="atomic_int_exchange_and_add" c:identifier="g_atomic_int_exchange_and_add" version="2.4" deprecated="1" deprecated-version="2.30">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10578">This function existed before g_atomic_int_add() returned the prior
|
|
value of the integer (which it now does). It is retained only for
|
|
compatibility reasons. Don't use this function in new code.</doc>
|
|
<doc-deprecated xml:space="preserve">Use g_atomic_int_add() instead.</doc-deprecated>
|
|
<source-position filename="gatomic.h" line="80"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10587">the value of @atomic before the add, signed</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="atomic" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10580">a pointer to a #gint</doc>
|
|
<type name="gint" c:type="volatile gint*"/>
|
|
</parameter>
|
|
<parameter name="val" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10581">the value to add</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="atomic_int_get" c:identifier="g_atomic_int_get" version="2.4">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10593">Gets the current value of @atomic.
|
|
|
|
This call acts as a full compiler and hardware
|
|
memory barrier (before the get).</doc>
|
|
<source-position filename="gatomic.h" line="32"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10602">the value of the integer</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="atomic" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10595">a pointer to a #gint or #guint</doc>
|
|
<type name="gint" c:type="volatile const gint*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="atomic_int_inc" c:identifier="g_atomic_int_inc" version="2.4">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10607">Increments the value of @atomic by 1.
|
|
|
|
Think of this operation as an atomic version of `{ *atomic += 1; }`.
|
|
|
|
This call acts as a full compiler and hardware memory barrier.</doc>
|
|
<source-position filename="gatomic.h" line="37"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="atomic" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10609">a pointer to a #gint or #guint</doc>
|
|
<type name="gint" c:type="volatile gint*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="atomic_int_or" c:identifier="g_atomic_int_or" version="2.30">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10621">Performs an atomic bitwise 'or' of the value of @atomic and @val,
|
|
storing the result back in @atomic.
|
|
|
|
Think of this operation as an atomic version of
|
|
`{ tmp = *atomic; *atomic |= val; return tmp; }`.
|
|
|
|
This call acts as a full compiler and hardware memory barrier.</doc>
|
|
<source-position filename="gatomic.h" line="51"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10634">the value of @atomic before the operation, unsigned</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="atomic" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10623">a pointer to a #gint or #guint</doc>
|
|
<type name="guint" c:type="volatile guint*"/>
|
|
</parameter>
|
|
<parameter name="val" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10624">the value to 'or'</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="atomic_int_set" c:identifier="g_atomic_int_set" version="2.4">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10639">Sets the value of @atomic to @newval.
|
|
|
|
This call acts as a full compiler and hardware
|
|
memory barrier (after the set).</doc>
|
|
<source-position filename="gatomic.h" line="34"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="atomic" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10641">a pointer to a #gint or #guint</doc>
|
|
<type name="gint" c:type="volatile gint*"/>
|
|
</parameter>
|
|
<parameter name="newval" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10642">a new value to store</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="atomic_int_xor" c:identifier="g_atomic_int_xor" version="2.30">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10653">Performs an atomic bitwise 'xor' of the value of @atomic and @val,
|
|
storing the result back in @atomic.
|
|
|
|
Think of this operation as an atomic version of
|
|
`{ tmp = *atomic; *atomic ^= val; return tmp; }`.
|
|
|
|
This call acts as a full compiler and hardware memory barrier.</doc>
|
|
<source-position filename="gatomic.h" line="54"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10666">the value of @atomic before the operation, unsigned</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="atomic" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10655">a pointer to a #gint or #guint</doc>
|
|
<type name="guint" c:type="volatile guint*"/>
|
|
</parameter>
|
|
<parameter name="val" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10656">the value to 'xor'</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="atomic_pointer_add" c:identifier="g_atomic_pointer_add" version="2.30">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10671">Atomically adds @val to the value of @atomic.
|
|
|
|
Think of this operation as an atomic version of
|
|
`{ tmp = *atomic; *atomic += val; return tmp; }`.
|
|
|
|
This call acts as a full compiler and hardware memory barrier.</doc>
|
|
<source-position filename="gatomic.h" line="67"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10683">the value of @atomic before the add, signed</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="atomic" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10673">a pointer to a #gpointer-sized value</doc>
|
|
<type name="gpointer" c:type="void*"/>
|
|
</parameter>
|
|
<parameter name="val" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10674">the value to add</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="atomic_pointer_and" c:identifier="g_atomic_pointer_and" version="2.30">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10688">Performs an atomic bitwise 'and' of the value of @atomic and @val,
|
|
storing the result back in @atomic.
|
|
|
|
Think of this operation as an atomic version of
|
|
`{ tmp = *atomic; *atomic &= val; return tmp; }`.
|
|
|
|
This call acts as a full compiler and hardware memory barrier.</doc>
|
|
<source-position filename="gatomic.h" line="70"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10701">the value of @atomic before the operation, unsigned</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="atomic" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10690">a pointer to a #gpointer-sized value</doc>
|
|
<type name="gpointer" c:type="void*"/>
|
|
</parameter>
|
|
<parameter name="val" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10691">the value to 'and'</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="atomic_pointer_compare_and_exchange" c:identifier="g_atomic_pointer_compare_and_exchange" version="2.4">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10706">Compares @atomic to @oldval and, if equal, sets it to @newval.
|
|
If @atomic was not equal to @oldval then no change occurs.
|
|
|
|
This compare and exchange is done atomically.
|
|
|
|
Think of this operation as an atomic version of
|
|
`{ if (*atomic == oldval) { *atomic = newval; return TRUE; } else return FALSE; }`.
|
|
|
|
This call acts as a full compiler and hardware memory barrier.</doc>
|
|
<source-position filename="gatomic.h" line="63"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10722">%TRUE if the exchange took place</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="atomic" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10708">a pointer to a #gpointer-sized value</doc>
|
|
<type name="gpointer" c:type="void*"/>
|
|
</parameter>
|
|
<parameter name="oldval" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10709">the value to compare with</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="newval" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10710">the value to conditionally replace with</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="atomic_pointer_get" c:identifier="g_atomic_pointer_get" version="2.4">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10727">Gets the current value of @atomic.
|
|
|
|
This call acts as a full compiler and hardware
|
|
memory barrier (before the get).</doc>
|
|
<source-position filename="gatomic.h" line="58"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10736">the value of the pointer</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="atomic" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10729">a pointer to a #gpointer-sized value</doc>
|
|
<type name="gpointer" c:type="void*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="atomic_pointer_or" c:identifier="g_atomic_pointer_or" version="2.30">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10741">Performs an atomic bitwise 'or' of the value of @atomic and @val,
|
|
storing the result back in @atomic.
|
|
|
|
Think of this operation as an atomic version of
|
|
`{ tmp = *atomic; *atomic |= val; return tmp; }`.
|
|
|
|
This call acts as a full compiler and hardware memory barrier.</doc>
|
|
<source-position filename="gatomic.h" line="73"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10754">the value of @atomic before the operation, unsigned</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="atomic" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10743">a pointer to a #gpointer-sized value</doc>
|
|
<type name="gpointer" c:type="void*"/>
|
|
</parameter>
|
|
<parameter name="val" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10744">the value to 'or'</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="atomic_pointer_set" c:identifier="g_atomic_pointer_set" version="2.4">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10759">Sets the value of @atomic to @newval.
|
|
|
|
This call acts as a full compiler and hardware
|
|
memory barrier (after the set).</doc>
|
|
<source-position filename="gatomic.h" line="60"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="atomic" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10761">a pointer to a #gpointer-sized value</doc>
|
|
<type name="gpointer" c:type="void*"/>
|
|
</parameter>
|
|
<parameter name="newval" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10762">a new value to store</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="atomic_pointer_xor" c:identifier="g_atomic_pointer_xor" version="2.30">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10773">Performs an atomic bitwise 'xor' of the value of @atomic and @val,
|
|
storing the result back in @atomic.
|
|
|
|
Think of this operation as an atomic version of
|
|
`{ tmp = *atomic; *atomic ^= val; return tmp; }`.
|
|
|
|
This call acts as a full compiler and hardware memory barrier.</doc>
|
|
<source-position filename="gatomic.h" line="76"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10786">the value of @atomic before the operation, unsigned</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="atomic" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10775">a pointer to a #gpointer-sized value</doc>
|
|
<type name="gpointer" c:type="void*"/>
|
|
</parameter>
|
|
<parameter name="val" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10776">the value to 'xor'</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="atomic_rc_box_acquire" c:identifier="g_atomic_rc_box_acquire" version="2.58">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10791">Atomically acquires a reference on the data pointed by @mem_block.</doc>
|
|
<source-position filename="grcbox.h" line="55"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10797">a pointer to the data,
|
|
with its reference count increased</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="mem_block" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10793">a pointer to reference counted data</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="atomic_rc_box_alloc" c:identifier="g_atomic_rc_box_alloc" version="2.58">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10803">Allocates @block_size bytes of memory, and adds atomic
|
|
reference counting semantics to it.
|
|
|
|
The data will be freed when its reference count drops to
|
|
zero.
|
|
|
|
The allocated data is guaranteed to be suitably aligned for any
|
|
built-in type.</doc>
|
|
<source-position filename="grcbox.h" line="48"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10816">a pointer to the allocated memory</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="block_size" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10805">the size of the allocation, must be greater than 0</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="atomic_rc_box_alloc0" c:identifier="g_atomic_rc_box_alloc0" version="2.58">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10821">Allocates @block_size bytes of memory, and adds atomic
|
|
referenc counting semantics to it.
|
|
|
|
The contents of the returned data is set to zero.
|
|
|
|
The data will be freed when its reference count drops to
|
|
zero.
|
|
|
|
The allocated data is guaranteed to be suitably aligned for any
|
|
built-in type.</doc>
|
|
<source-position filename="grcbox.h" line="50"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10836">a pointer to the allocated memory</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="block_size" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10823">the size of the allocation, must be greater than 0</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="atomic_rc_box_dup" c:identifier="g_atomic_rc_box_dup" version="2.58">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10841">Allocates a new block of data with atomic reference counting
|
|
semantics, and copies @block_size bytes of @mem_block
|
|
into it.</doc>
|
|
<source-position filename="grcbox.h" line="52"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10850">a pointer to the allocated
|
|
memory</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="block_size" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10843">the number of bytes to copy, must be greater than 0</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
<parameter name="mem_block" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10844">the memory to copy</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="atomic_rc_box_get_size" c:identifier="g_atomic_rc_box_get_size" version="2.58">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10856">Retrieves the size of the reference counted data pointed by @mem_block.</doc>
|
|
<source-position filename="grcbox.h" line="63"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10862">the size of the data, in bytes</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="mem_block" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10858">a pointer to reference counted data</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function-macro name="atomic_rc_box_new" c:identifier="g_atomic_rc_box_new" version="2.58" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10867">A convenience macro to allocate atomically reference counted
|
|
data with the size of the given @type.
|
|
|
|
This macro calls g_atomic_rc_box_alloc() with `sizeof (@type)` and
|
|
casts the returned pointer to a pointer of the given @type,
|
|
avoiding a type cast in the source code.</doc>
|
|
<source-position filename="grcbox.h" line="69"/>
|
|
<parameters>
|
|
<parameter name="type">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10869">the type to allocate, typically a structure name</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="atomic_rc_box_new0" c:identifier="g_atomic_rc_box_new0" version="2.58" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10884">A convenience macro to allocate atomically reference counted
|
|
data with the size of the given @type, and set its contents
|
|
to zero.
|
|
|
|
This macro calls g_atomic_rc_box_alloc0() with `sizeof (@type)` and
|
|
casts the returned pointer to a pointer of the given @type,
|
|
avoiding a type cast in the source code.</doc>
|
|
<source-position filename="grcbox.h" line="71"/>
|
|
<parameters>
|
|
<parameter name="type">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10886">the type to allocate, typically a structure name</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function name="atomic_rc_box_release" c:identifier="g_atomic_rc_box_release" version="2.58">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10902">Atomically releases a reference on the data pointed by @mem_block.
|
|
|
|
If the reference was the last one, it will free the
|
|
resources allocated for @mem_block.</doc>
|
|
<source-position filename="grcbox.h" line="57"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="mem_block" transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10904">a pointer to reference counted data</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="atomic_rc_box_release_full" c:identifier="g_atomic_rc_box_release_full" version="2.58">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10915">Atomically releases a reference on the data pointed by @mem_block.
|
|
|
|
If the reference was the last one, it will call @clear_func
|
|
to clear the contents of @mem_block, and then will free the
|
|
resources allocated for @mem_block.</doc>
|
|
<source-position filename="grcbox.h" line="59"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="mem_block" transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10917">a pointer to reference counted data</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="clear_func" transfer-ownership="none" scope="async">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10918">a function to call when clearing the data</doc>
|
|
<type name="DestroyNotify" c:type="GDestroyNotify"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="atomic_ref_count_compare" c:identifier="g_atomic_ref_count_compare" version="2.58">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10930">Atomically compares the current value of @arc with @val.</doc>
|
|
<source-position filename="grefcount.h" line="48"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10937">%TRUE if the reference count is the same
|
|
as the given value</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="arc" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10932">the address of an atomic reference count variable</doc>
|
|
<type name="gint" c:type="gatomicrefcount*"/>
|
|
</parameter>
|
|
<parameter name="val" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10933">the value to compare</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="atomic_ref_count_dec" c:identifier="g_atomic_ref_count_dec" version="2.58">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10943">Atomically decreases the reference count.</doc>
|
|
<source-position filename="grefcount.h" line="46"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10949">%TRUE if the reference count reached 0, and %FALSE otherwise</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="arc" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10945">the address of an atomic reference count variable</doc>
|
|
<type name="gint" c:type="gatomicrefcount*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="atomic_ref_count_inc" c:identifier="g_atomic_ref_count_inc" version="2.58">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10954">Atomically increases the reference count.</doc>
|
|
<source-position filename="grefcount.h" line="44"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="arc" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10956">the address of an atomic reference count variable</doc>
|
|
<type name="gint" c:type="gatomicrefcount*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="atomic_ref_count_init" c:identifier="g_atomic_ref_count_init" version="2.58">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10964">Initializes a reference count variable.</doc>
|
|
<source-position filename="grefcount.h" line="42"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="arc" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="10966">the address of an atomic reference count variable</doc>
|
|
<type name="gint" c:type="gatomicrefcount*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="base64_decode" c:identifier="g_base64_decode" version="2.12">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11215">Decode a sequence of Base-64 encoded text into binary data. Note
|
|
that the returned binary data is not necessarily zero-terminated,
|
|
so it should not be used as a character string.</doc>
|
|
<source-position filename="gbase64.h" line="52"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11224">
|
|
newly allocated buffer containing the binary data
|
|
that @text represents. The returned buffer must
|
|
be freed with g_free().</doc>
|
|
<array length="1" zero-terminated="0" c:type="guchar*">
|
|
<type name="guint8"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="text" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11217">zero-terminated string with base64 text to decode</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="out_len" direction="out" caller-allocates="0" transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11218">The length of the decoded data is written here</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="base64_decode_inplace" c:identifier="g_base64_decode_inplace" version="2.20">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11232">Decode a sequence of Base-64 encoded text into binary data
|
|
by overwriting the input data.</doc>
|
|
<source-position filename="gbase64.h" line="55"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11241">The binary data that @text responds. This pointer
|
|
is the same as the input @text.</doc>
|
|
<type name="guint8" c:type="guchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="text" direction="inout" caller-allocates="0" transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11234">zero-terminated
|
|
string with base64 text to decode</doc>
|
|
<array length="1" zero-terminated="0" c:type="gchar*">
|
|
<type name="guint8"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="out_len" direction="inout" caller-allocates="0" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11236">The length of the decoded data is written here</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="base64_decode_step" c:identifier="g_base64_decode_step" version="2.12" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11247">Incrementally decode a sequence of binary data from its Base-64 stringified
|
|
representation. By calling this function multiple times you can convert
|
|
data in chunks to avoid having to have the full encoded data in memory.
|
|
|
|
The output buffer must be large enough to fit all the data that will
|
|
be written to it. Since base64 encodes 3 bytes in 4 chars you need
|
|
at least: (@len / 4) * 3 + 3 bytes (+ 3 may be needed in case of non-zero
|
|
state).</doc>
|
|
<source-position filename="gbase64.h" line="46"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11264">The number of bytes of output that was written</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="in" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11249">binary input data</doc>
|
|
<array length="1" zero-terminated="0" c:type="const gchar*">
|
|
<type name="guint8"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11250">max length of @in data to decode</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
<parameter name="out" direction="out" caller-allocates="1" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11251">output buffer</doc>
|
|
<array zero-terminated="0" c:type="guchar*">
|
|
<type name="guint8"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="state" direction="inout" caller-allocates="0" transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11252">Saved state between steps, initialize to 0</doc>
|
|
<type name="gint" c:type="gint*"/>
|
|
</parameter>
|
|
<parameter name="save" direction="inout" caller-allocates="0" transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11253">Saved state between steps, initialize to 0</doc>
|
|
<type name="guint" c:type="guint*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="base64_encode" c:identifier="g_base64_encode" version="2.12">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11269">Encode a sequence of binary data into its Base-64 stringified
|
|
representation.</doc>
|
|
<source-position filename="gbase64.h" line="43"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11277">a newly allocated, zero-terminated Base-64
|
|
encoded string representing @data. The returned string must
|
|
be freed with g_free().</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11271">the binary data to encode</doc>
|
|
<array length="1" zero-terminated="0" c:type="const guchar*">
|
|
<type name="guint8"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11272">the length of @data</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="base64_encode_close" c:identifier="g_base64_encode_close" version="2.12">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11284">Flush the status from a sequence of calls to g_base64_encode_step().
|
|
|
|
The output buffer must be large enough to fit all the data that will
|
|
be written to it. It will need up to 4 bytes, or up to 5 bytes if
|
|
line-breaking is enabled.
|
|
|
|
The @out array will not be automatically nul-terminated.</doc>
|
|
<source-position filename="gbase64.h" line="38"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11299">The number of bytes of output that was written</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="break_lines" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11286">whether to break long lines</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
<parameter name="out" direction="out" caller-allocates="0" transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11287">pointer to destination buffer</doc>
|
|
<array zero-terminated="0" c:type="gchar*">
|
|
<type name="guint8"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="state" direction="inout" caller-allocates="0" transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11288">Saved state from g_base64_encode_step()</doc>
|
|
<type name="gint" c:type="gint*"/>
|
|
</parameter>
|
|
<parameter name="save" direction="inout" caller-allocates="0" transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11289">Saved state from g_base64_encode_step()</doc>
|
|
<type name="gint" c:type="gint*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="base64_encode_step" c:identifier="g_base64_encode_step" version="2.12">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11304">Incrementally encode a sequence of binary data into its Base-64 stringified
|
|
representation. By calling this function multiple times you can convert
|
|
data in chunks to avoid having to have the full encoded data in memory.
|
|
|
|
When all of the data has been converted you must call
|
|
g_base64_encode_close() to flush the saved state.
|
|
|
|
The output buffer must be large enough to fit all the data that will
|
|
be written to it. Due to the way base64 encodes you will need
|
|
at least: (@len / 3 + 1) * 4 + 4 bytes (+ 4 may be needed in case of
|
|
non-zero state). If you enable line-breaking you will need at least:
|
|
((@len / 3 + 1) * 4 + 4) / 72 + 1 bytes of extra space.
|
|
|
|
@break_lines is typically used when putting base64-encoded data in emails.
|
|
It breaks the lines at 72 columns instead of putting all of the text on
|
|
the same line. This avoids problems with long lines in the email system.
|
|
Note however that it breaks the lines with `LF` characters, not
|
|
`CR LF` sequences, so the result cannot be passed directly to SMTP
|
|
or certain other protocols.</doc>
|
|
<source-position filename="gbase64.h" line="31"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11333">The number of bytes of output that was written</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="in" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11306">the binary data to encode</doc>
|
|
<array length="1" zero-terminated="0" c:type="const guchar*">
|
|
<type name="guint8"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11307">the length of @in</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
<parameter name="break_lines" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11308">whether to break long lines</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
<parameter name="out" direction="out" caller-allocates="0" transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11309">pointer to destination buffer</doc>
|
|
<array zero-terminated="0" c:type="gchar*">
|
|
<type name="guint8"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="state" direction="inout" caller-allocates="0" transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11310">Saved state between steps, initialize to 0</doc>
|
|
<type name="gint" c:type="gint*"/>
|
|
</parameter>
|
|
<parameter name="save" direction="inout" caller-allocates="0" transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11311">Saved state between steps, initialize to 0</doc>
|
|
<type name="gint" c:type="gint*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="basename" c:identifier="g_basename" deprecated="1" deprecated-version="2.2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11338">Gets the name of the file without any leading directory
|
|
components. It returns a pointer into the given file name
|
|
string.</doc>
|
|
<doc-deprecated xml:space="preserve">Use g_path_get_basename() instead, but notice
|
|
that g_path_get_basename() allocates new memory for the
|
|
returned string, unlike this function which returns a pointer
|
|
into the argument.</doc-deprecated>
|
|
<source-position filename="gfileutils.h" line="163"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11346">the name of the file without any leading
|
|
directory components</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="file_name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11340">the name of the file</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="bit_lock" c:identifier="g_bit_lock" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11355">Sets the indicated @lock_bit in @address. If the bit is already
|
|
set, this call will block until g_bit_unlock() unsets the
|
|
corresponding bit.
|
|
|
|
Attempting to lock on two different bits within the same integer is
|
|
not supported and will very probably cause deadlocks.
|
|
|
|
The value of the bit that is set is (1u << @bit). If @bit is not
|
|
between 0 and 31 then the result is undefined.
|
|
|
|
This function accesses @address atomically. All other accesses to
|
|
@address must be atomic in order for this function to work
|
|
reliably.</doc>
|
|
<source-position filename="gbitlock.h" line="33"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="address" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11357">a pointer to an integer</doc>
|
|
<type name="gint" c:type="volatile gint*"/>
|
|
</parameter>
|
|
<parameter name="lock_bit" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11358">a bit value between 0 and 31</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="bit_nth_lsf" c:identifier="g_bit_nth_lsf">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11378">Find the position of the first bit set in @mask, searching
|
|
from (but not including) @nth_bit upwards. Bits are numbered
|
|
from 0 (least significant) to sizeof(#gulong) * 8 - 1 (31 or 63,
|
|
usually). To start searching from the 0th bit, set @nth_bit to -1.</doc>
|
|
<source-position filename="gutils.h" line="250"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11388">the index of the first bit set which is higher than @nth_bit, or -1
|
|
if no higher bits are set</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="mask" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11380">a #gulong containing flags</doc>
|
|
<type name="gulong" c:type="gulong"/>
|
|
</parameter>
|
|
<parameter name="nth_bit" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11381">the index of the bit to start the search from</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="bit_nth_msf" c:identifier="g_bit_nth_msf">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11393">Find the position of the first bit set in @mask, searching
|
|
from (but not including) @nth_bit downwards. Bits are numbered
|
|
from 0 (least significant) to sizeof(#gulong) * 8 - 1 (31 or 63,
|
|
usually). To start searching from the last bit, set @nth_bit to
|
|
-1 or GLIB_SIZEOF_LONG * 8.</doc>
|
|
<source-position filename="gutils.h" line="253"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11404">the index of the first bit set which is lower than @nth_bit, or -1
|
|
if no lower bits are set</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="mask" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11395">a #gulong containing flags</doc>
|
|
<type name="gulong" c:type="gulong"/>
|
|
</parameter>
|
|
<parameter name="nth_bit" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11396">the index of the bit to start the search from</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="bit_storage" c:identifier="g_bit_storage">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11409">Gets the number of bits used to hold @number,
|
|
e.g. if @number is 4, 3 bits are needed.</doc>
|
|
<source-position filename="gutils.h" line="256"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11416">the number of bits used to hold @number</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="number" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11411">a #guint</doc>
|
|
<type name="gulong" c:type="gulong"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="bit_trylock" c:identifier="g_bit_trylock" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11420">Sets the indicated @lock_bit in @address, returning %TRUE if
|
|
successful. If the bit is already set, returns %FALSE immediately.
|
|
|
|
Attempting to lock on two different bits within the same integer is
|
|
not supported.
|
|
|
|
The value of the bit that is set is (1u << @bit). If @bit is not
|
|
between 0 and 31 then the result is undefined.
|
|
|
|
This function accesses @address atomically. All other accesses to
|
|
@address must be atomic in order for this function to work
|
|
reliably.</doc>
|
|
<source-position filename="gbitlock.h" line="36"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11438">%TRUE if the lock was acquired</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="address" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11422">a pointer to an integer</doc>
|
|
<type name="gint" c:type="volatile gint*"/>
|
|
</parameter>
|
|
<parameter name="lock_bit" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11423">a bit value between 0 and 31</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="bit_unlock" c:identifier="g_bit_unlock" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11443">Clears the indicated @lock_bit in @address. If another thread is
|
|
currently blocked in g_bit_lock() on this same bit then it will be
|
|
woken up.
|
|
|
|
This function accesses @address atomically. All other accesses to
|
|
@address must be atomic in order for this function to work
|
|
reliably.</doc>
|
|
<source-position filename="gbitlock.h" line="39"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="address" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11445">a pointer to an integer</doc>
|
|
<type name="gint" c:type="volatile gint*"/>
|
|
</parameter>
|
|
<parameter name="lock_bit" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="11446">a bit value between 0 and 31</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="bookmark_file_error_quark" c:identifier="g_bookmark_file_error_quark" moved-to="BookmarkFile.error_quark">
|
|
<return-value transfer-ownership="none">
|
|
<type name="Quark" c:type="GQuark"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="build_filename" c:identifier="g_build_filename" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12163">Creates a filename from a series of elements using the correct
|
|
separator for filenames.
|
|
|
|
On Unix, this function behaves identically to `g_build_path
|
|
(G_DIR_SEPARATOR_S, first_element, ....)`.
|
|
|
|
On Windows, it takes into account that either the backslash
|
|
(`\` or slash (`/`) can be used as separator in filenames, but
|
|
otherwise behaves as on UNIX. When file pathname separators need
|
|
to be inserted, the one that last previously occurred in the
|
|
parameters (reading from left to right) is used.
|
|
|
|
No attempt is made to force the resulting filename to be an absolute
|
|
path. If the first element is a relative path, the result will
|
|
be a relative path.</doc>
|
|
<source-position filename="gfileutils.h" line="131"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12184">a newly-allocated string that must be freed with
|
|
g_free().</doc>
|
|
<type name="filename" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="first_element" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12165">the first element in the path</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="..." transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12166">remaining elements in path, terminated by %NULL</doc>
|
|
<varargs/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="build_filename_valist" c:identifier="g_build_filename_valist" version="2.56" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12189">Behaves exactly like g_build_filename(), but takes the path elements
|
|
as a va_list. This function is mainly meant for language bindings.</doc>
|
|
<source-position filename="gfileutils.h" line="136"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12197">a newly-allocated string that must be freed
|
|
with g_free().</doc>
|
|
<type name="filename" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="first_element" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12191">the first element in the path</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="args" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12192">va_list of remaining elements in path</doc>
|
|
<type name="va_list" c:type="va_list*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="build_filenamev" c:identifier="g_build_filenamev" version="2.8">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12203">Behaves exactly like g_build_filename(), but takes the path elements
|
|
as a string array, instead of varargs. This function is mainly
|
|
meant for language bindings.</doc>
|
|
<source-position filename="gfileutils.h" line="134"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12212">a newly-allocated string that must be freed
|
|
with g_free().</doc>
|
|
<type name="filename" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="args" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12205">%NULL-terminated
|
|
array of strings containing the path elements.</doc>
|
|
<array c:type="gchar**">
|
|
<type name="filename"/>
|
|
</array>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="build_path" c:identifier="g_build_path" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12218">Creates a path from a series of elements using @separator as the
|
|
separator between elements. At the boundary between two elements,
|
|
any trailing occurrences of separator in the first element, or
|
|
leading occurrences of separator in the second element are removed
|
|
and exactly one copy of the separator is inserted.
|
|
|
|
Empty elements are ignored.
|
|
|
|
The number of leading copies of the separator on the result is
|
|
the same as the number of leading copies of the separator on
|
|
the first non-empty element.
|
|
|
|
The number of trailing copies of the separator on the result is
|
|
the same as the number of trailing copies of the separator on
|
|
the last non-empty element. (Determination of the number of
|
|
trailing copies is done without stripping leading copies, so
|
|
if the separator is `ABA`, then `ABABA` has 1 trailing copy.)
|
|
|
|
However, if there is only a single non-empty element, and there
|
|
are no characters in that element not part of the leading or
|
|
trailing separators, then the result is exactly the original value
|
|
of that element.
|
|
|
|
Other than for determination of the number of leading and trailing
|
|
copies of the separator, elements consisting only of copies
|
|
of the separator are ignored.</doc>
|
|
<source-position filename="gfileutils.h" line="123"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12251">a newly-allocated string that must be freed with
|
|
g_free().</doc>
|
|
<type name="filename" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="separator" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12220">a string used to separator the elements of the path.</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="first_element" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12221">the first element in the path</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="..." transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12222">remaining elements in path, terminated by %NULL</doc>
|
|
<varargs/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="build_pathv" c:identifier="g_build_pathv" version="2.8">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12256">Behaves exactly like g_build_path(), but takes the path elements
|
|
as a string array, instead of varargs. This function is mainly
|
|
meant for language bindings.</doc>
|
|
<source-position filename="gfileutils.h" line="127"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12266">a newly-allocated string that must be freed
|
|
with g_free().</doc>
|
|
<type name="filename" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="separator" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12258">a string used to separator the elements of the path.</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="args" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12259">%NULL-terminated
|
|
array of strings containing the path elements.</doc>
|
|
<array c:type="gchar**">
|
|
<type name="filename"/>
|
|
</array>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="byte_array_free" c:identifier="g_byte_array_free" moved-to="ByteArray.free">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12285">Frees the memory allocated by the #GByteArray. If @free_segment is
|
|
%TRUE it frees the actual byte data. If the reference count of
|
|
@array is greater than one, the #GByteArray wrapper is preserved but
|
|
the size of @array will be set to zero.</doc>
|
|
<source-position filename="garray.h" line="233"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12295">the element data if @free_segment is %FALSE, otherwise
|
|
%NULL. The element data should be freed using g_free().</doc>
|
|
<type name="guint8" c:type="guint8*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="array" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12287">a #GByteArray</doc>
|
|
<array name="GLib.ByteArray" c:type="GByteArray*">
|
|
<type name="guint8" c:type="guint8"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="free_segment" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12288">if %TRUE the actual byte data is freed as well</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="byte_array_free_to_bytes" c:identifier="g_byte_array_free_to_bytes" moved-to="ByteArray.free_to_bytes" version="2.32">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12300">Transfers the data from the #GByteArray into a new immutable #GBytes.
|
|
|
|
The #GByteArray is freed unless the reference count of @array is greater
|
|
than one, the #GByteArray wrapper is preserved but the size of @array
|
|
will be set to zero.
|
|
|
|
This is identical to using g_bytes_new_take() and g_byte_array_free()
|
|
together.</doc>
|
|
<source-position filename="garray.h" line="236"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12314">a new immutable #GBytes representing same
|
|
byte data that was in the array</doc>
|
|
<type name="Bytes" c:type="GBytes*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="array" transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12302">a #GByteArray</doc>
|
|
<array name="GLib.ByteArray" c:type="GByteArray*">
|
|
<type name="guint8" c:type="guint8"/>
|
|
</array>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="byte_array_new" c:identifier="g_byte_array_new" moved-to="ByteArray.new">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12319">Creates a new #GByteArray with a reference count of 1.</doc>
|
|
<source-position filename="garray.h" line="226"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12324">the new #GByteArray</doc>
|
|
<array name="GLib.ByteArray" c:type="GByteArray*">
|
|
<type name="guint8" c:type="guint8"/>
|
|
</array>
|
|
</return-value>
|
|
</function>
|
|
<function name="byte_array_new_take" c:identifier="g_byte_array_new_take" moved-to="ByteArray.new_take" version="2.32">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12328">Create byte array containing the data. The data will be owned by the array
|
|
and will be freed with g_free(), i.e. it could be allocated using g_strdup().</doc>
|
|
<source-position filename="garray.h" line="228"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12337">a new #GByteArray</doc>
|
|
<array name="GLib.ByteArray" c:type="GByteArray*">
|
|
<type name="guint8" c:type="guint8"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="data" transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12330">byte data for the array</doc>
|
|
<array length="1" zero-terminated="0" c:type="guint8*">
|
|
<type name="guint8" c:type="guint8"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12331">length of @data</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="byte_array_unref" c:identifier="g_byte_array_unref" moved-to="ByteArray.unref" version="2.22">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12459">Atomically decrements the reference count of @array by one. If the
|
|
reference count drops to 0, all memory allocated by the array is
|
|
released. This function is thread-safe and may be called from any
|
|
thread.</doc>
|
|
<source-position filename="garray.h" line="240"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="array" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12461">A #GByteArray</doc>
|
|
<array name="GLib.ByteArray" c:type="GByteArray*">
|
|
<type name="guint8" c:type="guint8"/>
|
|
</array>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="canonicalize_filename" c:identifier="g_canonicalize_filename" version="2.58">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12715">Gets the canonical file name from @filename. All triple slashes are turned into
|
|
single slashes, and all `..` and `.`s resolved against @relative_to.
|
|
|
|
Symlinks are not followed, and the returned path is guaranteed to be absolute.
|
|
|
|
If @filename is an absolute path, @relative_to is ignored. Otherwise,
|
|
@relative_to will be prepended to @filename to make it absolute. @relative_to
|
|
must be an absolute path, or %NULL. If @relative_to is %NULL, it'll fallback
|
|
to g_get_current_dir().
|
|
|
|
This function never fails, and will canonicalize file paths even if they don't
|
|
exist.
|
|
|
|
No file system I/O is done.</doc>
|
|
<source-position filename="gfileutils.h" line="174"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12736">a newly allocated string with the
|
|
canonical file path</doc>
|
|
<type name="filename" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="filename" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12717">the name of the file</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="relative_to" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12718">the relative directory, or %NULL
|
|
to use the current working directory</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="chdir" c:identifier="g_chdir" version="2.8">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12742">A wrapper for the POSIX chdir() function. The function changes the
|
|
current directory of the process to @path.
|
|
|
|
See your C library manual for more details about chdir().</doc>
|
|
<source-position filename="gstdio.h" line="87"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12752">0 on success, -1 if an error occurred.</doc>
|
|
<type name="gint" c:type="int"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="path" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12744">a pathname in the GLib file name encoding
|
|
(UTF-8 on Windows)</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="check_version" c:identifier="glib_check_version" version="2.6">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="39514">Checks that the GLib library in use is compatible with the
|
|
given version. Generally you would pass in the constants
|
|
#GLIB_MAJOR_VERSION, #GLIB_MINOR_VERSION, #GLIB_MICRO_VERSION
|
|
as the three arguments to this function; that produces
|
|
a check that the library in use is compatible with
|
|
the version of GLib the application or module was compiled
|
|
against.
|
|
|
|
Compatibility is defined by two things: first the version
|
|
of the running library is newer than the version
|
|
@required_major.required_minor.@required_micro. Second
|
|
the running library must be binary compatible with the
|
|
version @required_major.required_minor.@required_micro
|
|
(same major version.)</doc>
|
|
<source-position filename="gversion.h" line="43"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="39535">%NULL if the GLib library is compatible with the
|
|
given version, or a string describing the version mismatch.
|
|
The returned string is owned by GLib and must not be modified
|
|
or freed.</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="required_major" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="39516">the required major version</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
<parameter name="required_minor" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="39517">the required minor version</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
<parameter name="required_micro" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="39518">the required micro version</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="checksum_type_get_length" c:identifier="g_checksum_type_get_length" moved-to="Checksum.type_get_length" version="2.16">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12850">Gets the length in bytes of digests of type @checksum_type</doc>
|
|
<source-position filename="gchecksum.h" line="67"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12856">the checksum length, or -1 if @checksum_type is
|
|
not supported.</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="checksum_type" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12852">a #GChecksumType</doc>
|
|
<type name="ChecksumType" c:type="GChecksumType"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="child_watch_add" c:identifier="g_child_watch_add" shadowed-by="child_watch_add_full" version="2.4" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12876">Sets a function to be called when the child indicated by @pid
|
|
exits, at a default priority, #G_PRIORITY_DEFAULT.
|
|
|
|
If you obtain @pid from g_spawn_async() or g_spawn_async_with_pipes()
|
|
you will need to pass #G_SPAWN_DO_NOT_REAP_CHILD as flag to
|
|
the spawn function for the child watching to work.
|
|
|
|
Note that on platforms where #GPid must be explicitly closed
|
|
(see g_spawn_close_pid()) @pid must not be closed while the
|
|
source is still active. Typically, you will want to call
|
|
g_spawn_close_pid() in the callback function for the source.
|
|
|
|
GLib supports only a single callback per process id.
|
|
On POSIX platforms, the same restrictions mentioned for
|
|
g_child_watch_source_new() apply to this function.
|
|
|
|
This internally creates a main loop source using
|
|
g_child_watch_source_new() and attaches it to the main loop context
|
|
using g_source_attach(). You can do these steps manually if you
|
|
need greater control.</doc>
|
|
<source-position filename="gmain.h" line="653"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12905">the ID (greater than 0) of the event source.</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="pid" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12878">process id to watch. On POSIX the positive pid of a child
|
|
process. On Windows a handle for a process (which doesn't have to be
|
|
a child).</doc>
|
|
<type name="Pid" c:type="GPid"/>
|
|
</parameter>
|
|
<parameter name="function" transfer-ownership="none" closure="2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12881">function to call</doc>
|
|
<type name="ChildWatchFunc" c:type="GChildWatchFunc"/>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12882">data to pass to @function</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="child_watch_add_full" c:identifier="g_child_watch_add_full" shadows="child_watch_add" version="2.4">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12910">Sets a function to be called when the child indicated by @pid
|
|
exits, at the priority @priority.
|
|
|
|
If you obtain @pid from g_spawn_async() or g_spawn_async_with_pipes()
|
|
you will need to pass #G_SPAWN_DO_NOT_REAP_CHILD as flag to
|
|
the spawn function for the child watching to work.
|
|
|
|
In many programs, you will want to call g_spawn_check_exit_status()
|
|
in the callback to determine whether or not the child exited
|
|
successfully.
|
|
|
|
Also, note that on platforms where #GPid must be explicitly closed
|
|
(see g_spawn_close_pid()) @pid must not be closed while the source
|
|
is still active. Typically, you should invoke g_spawn_close_pid()
|
|
in the callback function for the source.
|
|
|
|
GLib supports only a single callback per process id.
|
|
On POSIX platforms, the same restrictions mentioned for
|
|
g_child_watch_source_new() apply to this function.
|
|
|
|
This internally creates a main loop source using
|
|
g_child_watch_source_new() and attaches it to the main loop context
|
|
using g_source_attach(). You can do these steps manually if you
|
|
need greater control.</doc>
|
|
<source-position filename="gmain.h" line="647"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12945">the ID (greater than 0) of the event source.</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="priority" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12912">the priority of the idle source. Typically this will be in the
|
|
range between #G_PRIORITY_DEFAULT_IDLE and #G_PRIORITY_HIGH_IDLE.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="pid" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12914">process to watch. On POSIX the positive pid of a child process. On
|
|
Windows a handle for a process (which doesn't have to be a child).</doc>
|
|
<type name="Pid" c:type="GPid"/>
|
|
</parameter>
|
|
<parameter name="function" transfer-ownership="none" scope="notified" closure="3" destroy="4">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12916">function to call</doc>
|
|
<type name="ChildWatchFunc" c:type="GChildWatchFunc"/>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12917">data to pass to @function</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="notify" transfer-ownership="none" nullable="1" allow-none="1" scope="async">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12918">function to call when the idle is removed, or %NULL</doc>
|
|
<type name="DestroyNotify" c:type="GDestroyNotify"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="child_watch_source_new" c:identifier="g_child_watch_source_new" version="2.4">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12950">Creates a new child_watch source.
|
|
|
|
The source will not initially be associated with any #GMainContext
|
|
and must be added to one with g_source_attach() before it will be
|
|
executed.
|
|
|
|
Note that child watch sources can only be used in conjunction with
|
|
`g_spawn...` when the %G_SPAWN_DO_NOT_REAP_CHILD flag is used.
|
|
|
|
Note that on platforms where #GPid must be explicitly closed
|
|
(see g_spawn_close_pid()) @pid must not be closed while the
|
|
source is still active. Typically, you will want to call
|
|
g_spawn_close_pid() in the callback function for the source.
|
|
|
|
On POSIX platforms, the following restrictions apply to this API
|
|
due to limitations in POSIX process interfaces:
|
|
|
|
* @pid must be a child of this process
|
|
* @pid must be positive
|
|
* the application must not call `waitpid` with a non-positive
|
|
first argument, for instance in another thread
|
|
* the application must not wait for @pid to exit by any other
|
|
mechanism, including `waitpid(pid, ...)` or a second child-watch
|
|
source for the same @pid
|
|
* the application must not ignore SIGCHILD
|
|
|
|
If any of those conditions are not met, this and related APIs will
|
|
not work correctly. This can often be diagnosed via a GLib warning
|
|
stating that `ECHILD` was received by `waitpid`.
|
|
|
|
Calling `waitpid` for specific processes other than @pid remains a
|
|
valid thing to do.</doc>
|
|
<source-position filename="gmain.h" line="565"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12988">the newly-created child watch source</doc>
|
|
<type name="Source" c:type="GSource*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="pid" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="12952">process to watch. On POSIX the positive pid of a child process. On
|
|
Windows a handle for a process (which doesn't have to be a child).</doc>
|
|
<type name="Pid" c:type="GPid"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="clear_error" c:identifier="g_clear_error" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13015">If @err or *@err is %NULL, does nothing. Otherwise,
|
|
calls g_error_free() on *@err and sets *@err to %NULL.</doc>
|
|
<source-position filename="gerror.h" line="100"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="clear_handle_id" c:identifier="g_clear_handle_id" version="2.56" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13024">Clears a numeric handler, such as a #GSource ID.
|
|
|
|
@tag_ptr must be a valid pointer to the variable holding the handler.
|
|
|
|
If the ID is zero then this function does nothing.
|
|
Otherwise, clear_func() is called with the ID as a parameter, and the tag is
|
|
set to zero.
|
|
|
|
A macro is also included that allows this function to be used without
|
|
pointer casts.</doc>
|
|
<source-position filename="gmain.h" line="607"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="tag_ptr" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13026">a pointer to the handler ID</doc>
|
|
<type name="guint" c:type="guint*"/>
|
|
</parameter>
|
|
<parameter name="clear_func" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13027">the function to call to clear the handler</doc>
|
|
<type name="ClearHandleFunc" c:type="GClearHandleFunc"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="clear_pointer" c:identifier="g_clear_pointer" version="2.34" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13044">Clears a reference to a variable.
|
|
|
|
@pp must not be %NULL.
|
|
|
|
If the reference is %NULL then this function does nothing.
|
|
Otherwise, the variable is destroyed using @destroy and the
|
|
pointer is set to %NULL.
|
|
|
|
A macro is also included that allows this function to be used without
|
|
pointer casts. This will mask any warnings about incompatible function types
|
|
or calling conventions, so you must ensure that your @destroy function is
|
|
compatible with being called as `GDestroyNotify` using the standard calling
|
|
convention for the platform that GLib was compiled for; otherwise the program
|
|
will experience undefined behaviour.</doc>
|
|
<source-position filename="gmem.h" line="74"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="pp" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13046">a pointer to a variable, struct member etc. holding a
|
|
pointer</doc>
|
|
<type name="gpointer" c:type="gpointer*"/>
|
|
</parameter>
|
|
<parameter name="destroy" transfer-ownership="none" scope="async">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13048">a function to which a gpointer can be passed, to destroy *@pp</doc>
|
|
<type name="DestroyNotify" c:type="GDestroyNotify"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="close" c:identifier="g_close" version="2.36" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13069">This wraps the close() call; in case of error, %errno will be
|
|
preserved, but the error will also be stored as a #GError in @error.
|
|
|
|
Besides using #GError, there is another major reason to prefer this
|
|
function over the call provided by the system; on Unix, it will
|
|
attempt to correctly handle %EINTR, which has platform-specific
|
|
semantics.</doc>
|
|
<source-position filename="gstdio.h" line="172"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13082">%TRUE on success, %FALSE if there was an error.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="fd" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13071">A file descriptor</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="compute_checksum_for_bytes" c:identifier="g_compute_checksum_for_bytes" version="2.34">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13087">Computes the checksum for a binary @data. This is a
|
|
convenience wrapper for g_checksum_new(), g_checksum_get_string()
|
|
and g_checksum_free().
|
|
|
|
The hexadecimal string returned will be in lower case.</doc>
|
|
<source-position filename="gchecksum.h" line="98"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13098">the digest of the binary data as a string in hexadecimal.
|
|
The returned string should be freed with g_free() when done using it.</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="checksum_type" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13089">a #GChecksumType</doc>
|
|
<type name="ChecksumType" c:type="GChecksumType"/>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13090">binary blob to compute the digest of</doc>
|
|
<type name="Bytes" c:type="GBytes*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="compute_checksum_for_data" c:identifier="g_compute_checksum_for_data" version="2.16">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13104">Computes the checksum for a binary @data of @length. This is a
|
|
convenience wrapper for g_checksum_new(), g_checksum_get_string()
|
|
and g_checksum_free().
|
|
|
|
The hexadecimal string returned will be in lower case.</doc>
|
|
<source-position filename="gchecksum.h" line="89"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13116">the digest of the binary data as a string in hexadecimal.
|
|
The returned string should be freed with g_free() when done using it.</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="checksum_type" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13106">a #GChecksumType</doc>
|
|
<type name="ChecksumType" c:type="GChecksumType"/>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13107">binary blob to compute the digest of</doc>
|
|
<array length="2" zero-terminated="0" c:type="const guchar*">
|
|
<type name="guint8"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="length" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13108">length of @data</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="compute_checksum_for_string" c:identifier="g_compute_checksum_for_string" version="2.16">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13122">Computes the checksum of a string.
|
|
|
|
The hexadecimal string returned will be in lower case.</doc>
|
|
<source-position filename="gchecksum.h" line="93"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13132">the checksum as a hexadecimal string. The returned string
|
|
should be freed with g_free() when done using it.</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="checksum_type" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13124">a #GChecksumType</doc>
|
|
<type name="ChecksumType" c:type="GChecksumType"/>
|
|
</parameter>
|
|
<parameter name="str" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13125">the string to compute the checksum of</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="length" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13126">the length of the string, or -1 if the string is null-terminated.</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="compute_hmac_for_bytes" c:identifier="g_compute_hmac_for_bytes" version="2.50">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13138">Computes the HMAC for a binary @data. This is a
|
|
convenience wrapper for g_hmac_new(), g_hmac_get_string()
|
|
and g_hmac_unref().
|
|
|
|
The hexadecimal string returned will be in lower case.</doc>
|
|
<source-position filename="ghmac.h" line="76"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13150">the HMAC of the binary data as a string in hexadecimal.
|
|
The returned string should be freed with g_free() when done using it.</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="digest_type" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13140">a #GChecksumType to use for the HMAC</doc>
|
|
<type name="ChecksumType" c:type="GChecksumType"/>
|
|
</parameter>
|
|
<parameter name="key" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13141">the key to use in the HMAC</doc>
|
|
<type name="Bytes" c:type="GBytes*"/>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13142">binary blob to compute the HMAC of</doc>
|
|
<type name="Bytes" c:type="GBytes*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="compute_hmac_for_data" c:identifier="g_compute_hmac_for_data" version="2.30">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13156">Computes the HMAC for a binary @data of @length. This is a
|
|
convenience wrapper for g_hmac_new(), g_hmac_get_string()
|
|
and g_hmac_unref().
|
|
|
|
The hexadecimal string returned will be in lower case.</doc>
|
|
<source-position filename="ghmac.h" line="64"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13170">the HMAC of the binary data as a string in hexadecimal.
|
|
The returned string should be freed with g_free() when done using it.</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="digest_type" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13158">a #GChecksumType to use for the HMAC</doc>
|
|
<type name="ChecksumType" c:type="GChecksumType"/>
|
|
</parameter>
|
|
<parameter name="key" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13159">the key to use in the HMAC</doc>
|
|
<array length="2" zero-terminated="0" c:type="const guchar*">
|
|
<type name="guint8" c:type="guchar"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="key_len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13160">the length of the key</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13161">binary blob to compute the HMAC of</doc>
|
|
<array length="4" zero-terminated="0" c:type="const guchar*">
|
|
<type name="guint8" c:type="guchar"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="length" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13162">length of @data</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="compute_hmac_for_string" c:identifier="g_compute_hmac_for_string" version="2.30">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13176">Computes the HMAC for a string.
|
|
|
|
The hexadecimal string returned will be in lower case.</doc>
|
|
<source-position filename="ghmac.h" line="70"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13188">the HMAC as a hexadecimal string.
|
|
The returned string should be freed with g_free()
|
|
when done using it.</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="digest_type" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13178">a #GChecksumType to use for the HMAC</doc>
|
|
<type name="ChecksumType" c:type="GChecksumType"/>
|
|
</parameter>
|
|
<parameter name="key" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13179">the key to use in the HMAC</doc>
|
|
<array length="2" zero-terminated="0" c:type="const guchar*">
|
|
<type name="guint8" c:type="guchar"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="key_len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13180">the length of the key</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
<parameter name="str" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13181">the string to compute the HMAC for</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="length" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13182">the length of the string, or -1 if the string is nul-terminated</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="convert" c:identifier="g_convert" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13335">Converts a string from one character set to another.
|
|
|
|
Note that you should use g_iconv() for streaming conversions.
|
|
Despite the fact that @bytes_read can return information about partial
|
|
characters, the g_convert_... functions are not generally suitable
|
|
for streaming. If the underlying converter maintains internal state,
|
|
then this won't be preserved across successive calls to g_convert(),
|
|
g_convert_with_iconv() or g_convert_with_fallback(). (An example of
|
|
this is the GNU C converter for CP1255 which does not emit a base
|
|
character until it knows that the next character is not a mark that
|
|
could combine with the base character.)
|
|
|
|
Using extensions such as "//TRANSLIT" may not work (or may not work
|
|
well) on many platforms. Consider using g_str_to_ascii() instead.</doc>
|
|
<source-position filename="gconvert.h" line="99"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13373">
|
|
If the conversion was successful, a newly allocated buffer
|
|
containing the converted string, which must be freed with g_free().
|
|
Otherwise %NULL and @error will be set.</doc>
|
|
<array length="5" zero-terminated="0" c:type="gchar*">
|
|
<type name="guint8"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="str" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13337">
|
|
the string to convert.</doc>
|
|
<array length="1" zero-terminated="0" c:type="const gchar*">
|
|
<type name="guint8"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13339">the length of the string in bytes, or -1 if the string is
|
|
nul-terminated (Note that some encodings may allow nul
|
|
bytes to occur inside strings. In that case, using -1
|
|
for the @len parameter is unsafe)</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
<parameter name="to_codeset" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13343">name of character set into which to convert @str</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="from_codeset" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13344">character set of @str.</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="bytes_read" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13345">location to store the number of bytes in
|
|
the input string that were successfully converted, or %NULL.
|
|
Even if the conversion was successful, this may be
|
|
less than @len if there were partial characters
|
|
at the end of the input. If the error
|
|
#G_CONVERT_ERROR_ILLEGAL_SEQUENCE occurs, the value
|
|
stored will be the byte offset after the last valid
|
|
input sequence.</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
<parameter name="bytes_written" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13353">the number of bytes stored in
|
|
the output buffer (not including the terminating nul).</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="convert_error_quark" c:identifier="g_convert_error_quark">
|
|
<return-value transfer-ownership="none">
|
|
<type name="Quark" c:type="GQuark"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="convert_with_fallback" c:identifier="g_convert_with_fallback" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13380">Converts a string from one character set to another, possibly
|
|
including fallback sequences for characters not representable
|
|
in the output. Note that it is not guaranteed that the specification
|
|
for the fallback sequences in @fallback will be honored. Some
|
|
systems may do an approximate conversion from @from_codeset
|
|
to @to_codeset in their iconv() functions,
|
|
in which case GLib will simply return that approximate conversion.
|
|
|
|
Note that you should use g_iconv() for streaming conversions.
|
|
Despite the fact that @bytes_read can return information about partial
|
|
characters, the g_convert_... functions are not generally suitable
|
|
for streaming. If the underlying converter maintains internal state,
|
|
then this won't be preserved across successive calls to g_convert(),
|
|
g_convert_with_iconv() or g_convert_with_fallback(). (An example of
|
|
this is the GNU C converter for CP1255 which does not emit a base
|
|
character until it knows that the next character is not a mark that
|
|
could combine with the base character.)</doc>
|
|
<source-position filename="gconvert.h" line="114"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13423">
|
|
If the conversion was successful, a newly allocated buffer
|
|
containing the converted string, which must be freed with g_free().
|
|
Otherwise %NULL and @error will be set.</doc>
|
|
<array length="6" zero-terminated="0" c:type="gchar*">
|
|
<type name="guint8"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="str" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13382">
|
|
the string to convert.</doc>
|
|
<array length="1" zero-terminated="0" c:type="const gchar*">
|
|
<type name="guint8"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13384">the length of the string in bytes, or -1 if the string is
|
|
nul-terminated (Note that some encodings may allow nul
|
|
bytes to occur inside strings. In that case, using -1
|
|
for the @len parameter is unsafe)</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
<parameter name="to_codeset" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13388">name of character set into which to convert @str</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="from_codeset" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13389">character set of @str.</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="fallback" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13390">UTF-8 string to use in place of characters not
|
|
present in the target encoding. (The string must be
|
|
representable in the target encoding).
|
|
If %NULL, characters not in the target encoding will
|
|
be represented as Unicode escapes \uxxxx or \Uxxxxyyyy.</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="bytes_read" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13395">location to store the number of bytes in
|
|
the input string that were successfully converted, or %NULL.
|
|
Even if the conversion was successful, this may be
|
|
less than @len if there were partial characters
|
|
at the end of the input.</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
<parameter name="bytes_written" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13400">the number of bytes stored in
|
|
the output buffer (not including the terminating nul).</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="convert_with_iconv" c:identifier="g_convert_with_iconv" introspectable="0" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13430">Converts a string from one character set to another.
|
|
|
|
Note that you should use g_iconv() for streaming conversions.
|
|
Despite the fact that @bytes_read can return information about partial
|
|
characters, the g_convert_... functions are not generally suitable
|
|
for streaming. If the underlying converter maintains internal state,
|
|
then this won't be preserved across successive calls to g_convert(),
|
|
g_convert_with_iconv() or g_convert_with_fallback(). (An example of
|
|
this is the GNU C converter for CP1255 which does not emit a base
|
|
character until it knows that the next character is not a mark that
|
|
could combine with the base character.)
|
|
|
|
Characters which are valid in the input character set, but which have no
|
|
representation in the output character set will result in a
|
|
%G_CONVERT_ERROR_ILLEGAL_SEQUENCE error. This is in contrast to the iconv()
|
|
specification, which leaves this behaviour implementation defined. Note that
|
|
this is the same error code as is returned for an invalid byte sequence in
|
|
the input character set. To get defined behaviour for conversion of
|
|
unrepresentable characters, use g_convert_with_fallback().</doc>
|
|
<source-position filename="gconvert.h" line="107"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13472">
|
|
If the conversion was successful, a newly allocated buffer
|
|
containing the converted string, which must be freed with
|
|
g_free(). Otherwise %NULL and @error will be set.</doc>
|
|
<array length="4" zero-terminated="0" c:type="gchar*">
|
|
<type name="guint8"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="str" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13432">
|
|
the string to convert.</doc>
|
|
<array length="1" zero-terminated="0" c:type="const gchar*">
|
|
<type name="guint8"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13434">the length of the string in bytes, or -1 if the string is
|
|
nul-terminated (Note that some encodings may allow nul
|
|
bytes to occur inside strings. In that case, using -1
|
|
for the @len parameter is unsafe)</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
<parameter name="converter" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13438">conversion descriptor from g_iconv_open()</doc>
|
|
<type name="IConv" c:type="GIConv"/>
|
|
</parameter>
|
|
<parameter name="bytes_read" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13439">location to store the number of bytes in
|
|
the input string that were successfully converted, or %NULL.
|
|
Even if the conversion was successful, this may be
|
|
less than @len if there were partial characters
|
|
at the end of the input. If the error
|
|
#G_CONVERT_ERROR_ILLEGAL_SEQUENCE occurs, the value
|
|
stored will be the byte offset after the last valid
|
|
input sequence.</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
<parameter name="bytes_written" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13447">the number of bytes stored in
|
|
the output buffer (not including the terminating nul).</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="datalist_clear" c:identifier="g_datalist_clear" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13553">Frees all the data elements of the datalist.
|
|
The data elements' destroy functions are called
|
|
if they have been set.</doc>
|
|
<source-position filename="gdataset.h" line="47"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="datalist" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13555">a datalist.</doc>
|
|
<type name="Data" c:type="GData**"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="datalist_foreach" c:identifier="g_datalist_foreach">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13563">Calls the given function for each data element of the datalist. The
|
|
function is called with each data element's #GQuark id and data,
|
|
together with the given @user_data parameter. Note that this
|
|
function is NOT thread-safe. So unless @datalist can be protected
|
|
from any modifications during invocation of this function, it should
|
|
not be called.
|
|
|
|
@func can make changes to @datalist, but the iteration will not
|
|
reflect changes made during the g_datalist_foreach() call, other
|
|
than skipping over elements that are removed.</doc>
|
|
<source-position filename="gdataset.h" line="76"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="datalist" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13565">a datalist.</doc>
|
|
<type name="Data" c:type="GData**"/>
|
|
</parameter>
|
|
<parameter name="func" transfer-ownership="none" scope="call" closure="2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13566">the function to call for each data element.</doc>
|
|
<type name="DataForeachFunc" c:type="GDataForeachFunc"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13567">user data to pass to the function.</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="datalist_get_data" c:identifier="g_datalist_get_data">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13582">Gets a data element, using its string identifier. This is slower than
|
|
g_datalist_id_get_data() because it compares strings.</doc>
|
|
<source-position filename="gdataset.h" line="119"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13590">the data element, or %NULL if it
|
|
is not found.</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="datalist" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13584">a datalist.</doc>
|
|
<type name="Data" c:type="GData**"/>
|
|
</parameter>
|
|
<parameter name="key" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13585">the string identifying a data element.</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="datalist_get_flags" c:identifier="g_datalist_get_flags" version="2.8">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13595">Gets flags values packed in together with the datalist.
|
|
See g_datalist_set_flags().</doc>
|
|
<source-position filename="gdataset.h" line="96"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13602">the flags of the datalist</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="datalist" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13597">pointer to the location that holds a list</doc>
|
|
<type name="Data" c:type="GData**"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="datalist_id_dup_data" c:identifier="g_datalist_id_dup_data" version="2.34" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13607">This is a variant of g_datalist_id_get_data() which
|
|
returns a 'duplicate' of the value. @dup_func defines the
|
|
meaning of 'duplicate' in this context, it could e.g.
|
|
take a reference on a ref-counted object.
|
|
|
|
If the @key_id is not set in the datalist then @dup_func
|
|
will be called with a %NULL argument.
|
|
|
|
Note that @dup_func is called while the datalist is locked, so it
|
|
is not allowed to read or modify the datalist.
|
|
|
|
This function can be useful to avoid races when multiple
|
|
threads are using the same datalist and the same key.</doc>
|
|
<source-position filename="gdataset.h" line="60"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13628">the result of calling @dup_func on the value
|
|
associated with @key_id in @datalist, or %NULL if not set.
|
|
If @dup_func is %NULL, the value is returned unmodified.</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="datalist" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13609">location of a datalist</doc>
|
|
<type name="Data" c:type="GData**"/>
|
|
</parameter>
|
|
<parameter name="key_id" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13610">the #GQuark identifying a data element</doc>
|
|
<type name="Quark" c:type="GQuark"/>
|
|
</parameter>
|
|
<parameter name="dup_func" transfer-ownership="none" nullable="1" allow-none="1" scope="call" closure="3">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13611">function to duplicate the old value</doc>
|
|
<type name="DuplicateFunc" c:type="GDuplicateFunc"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13612">passed as user_data to @dup_func</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="datalist_id_get_data" c:identifier="g_datalist_id_get_data">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13635">Retrieves the data element corresponding to @key_id.</doc>
|
|
<source-position filename="gdataset.h" line="49"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13642">the data element, or %NULL if
|
|
it is not found.</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="datalist" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13637">a datalist.</doc>
|
|
<type name="Data" c:type="GData**"/>
|
|
</parameter>
|
|
<parameter name="key_id" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13638">the #GQuark identifying a data element.</doc>
|
|
<type name="Quark" c:type="GQuark"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function-macro name="datalist_id_remove_data" c:identifier="g_datalist_id_remove_data" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13647">Removes an element, using its #GQuark identifier.</doc>
|
|
<source-position filename="gdataset.h" line="100"/>
|
|
<parameters>
|
|
<parameter name="dl">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13649">a datalist.</doc>
|
|
</parameter>
|
|
<parameter name="q">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13650">the #GQuark identifying the data element.</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function name="datalist_id_remove_no_notify" c:identifier="g_datalist_id_remove_no_notify" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13656">Removes an element, without calling its destroy notification
|
|
function.</doc>
|
|
<source-position filename="gdataset.h" line="73"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13664">the data previously stored at @key_id,
|
|
or %NULL if none.</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="datalist" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13658">a datalist.</doc>
|
|
<type name="Data" c:type="GData**"/>
|
|
</parameter>
|
|
<parameter name="key_id" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13659">the #GQuark identifying a data element.</doc>
|
|
<type name="Quark" c:type="GQuark"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="datalist_id_replace_data" c:identifier="g_datalist_id_replace_data" version="2.34" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13669">Compares the member that is associated with @key_id in
|
|
@datalist to @oldval, and if they are the same, replace
|
|
@oldval with @newval.
|
|
|
|
This is like a typical atomic compare-and-exchange
|
|
operation, for a member of @datalist.
|
|
|
|
If the previous value was replaced then ownership of the
|
|
old value (@oldval) is passed to the caller, including
|
|
the registered destroy notify for it (passed out in @old_destroy).
|
|
Its up to the caller to free this as he wishes, which may
|
|
or may not include using @old_destroy as sometimes replacement
|
|
should not destroy the object in the normal way.</doc>
|
|
<source-position filename="gdataset.h" line="65"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13692">%TRUE if the existing value for @key_id was replaced
|
|
by @newval, %FALSE otherwise.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="datalist" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13671">location of a datalist</doc>
|
|
<type name="Data" c:type="GData**"/>
|
|
</parameter>
|
|
<parameter name="key_id" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13672">the #GQuark identifying a data element</doc>
|
|
<type name="Quark" c:type="GQuark"/>
|
|
</parameter>
|
|
<parameter name="oldval" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13673">the old value to compare against</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="newval" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13674">the new value to replace it with</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="destroy" transfer-ownership="none" nullable="1" allow-none="1" scope="async">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13675">destroy notify for the new value</doc>
|
|
<type name="DestroyNotify" c:type="GDestroyNotify"/>
|
|
</parameter>
|
|
<parameter name="old_destroy" direction="out" caller-allocates="0" transfer-ownership="none" optional="1" allow-none="1" scope="async">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13676">destroy notify for the existing value</doc>
|
|
<type name="DestroyNotify" c:type="GDestroyNotify*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function-macro name="datalist_id_set_data" c:identifier="g_datalist_id_set_data" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13698">Sets the data corresponding to the given #GQuark id. Any previous
|
|
data with the same key is removed, and its destroy function is
|
|
called.</doc>
|
|
<source-position filename="gdataset.h" line="98"/>
|
|
<parameters>
|
|
<parameter name="dl">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13700">a datalist.</doc>
|
|
</parameter>
|
|
<parameter name="q">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13701">the #GQuark to identify the data element.</doc>
|
|
</parameter>
|
|
<parameter name="d">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13702">the data element, or %NULL to remove any previous element
|
|
corresponding to @q.</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function name="datalist_id_set_data_full" c:identifier="g_datalist_id_set_data_full" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13711">Sets the data corresponding to the given #GQuark id, and the
|
|
function to be called when the element is removed from the datalist.
|
|
Any previous data with the same key is removed, and its destroy
|
|
function is called.</doc>
|
|
<source-position filename="gdataset.h" line="52"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="datalist" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13713">a datalist.</doc>
|
|
<type name="Data" c:type="GData**"/>
|
|
</parameter>
|
|
<parameter name="key_id" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13714">the #GQuark to identify the data element.</doc>
|
|
<type name="Quark" c:type="GQuark"/>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13715">the data element or %NULL to remove any previous element
|
|
corresponding to @key_id.</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="destroy_func" transfer-ownership="none" nullable="1" allow-none="1" scope="async">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13717">the function to call when the data element is
|
|
removed. This function will be called with the data
|
|
element and can be used to free any memory allocated
|
|
for it. If @data is %NULL, then @destroy_func must
|
|
also be %NULL.</doc>
|
|
<type name="DestroyNotify" c:type="GDestroyNotify"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="datalist_init" c:identifier="g_datalist_init" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13730">Resets the datalist to %NULL. It does not free any memory or call
|
|
any destroy functions.</doc>
|
|
<source-position filename="gdataset.h" line="45"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="datalist" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13732">a pointer to a pointer to a datalist.</doc>
|
|
<type name="Data" c:type="GData**"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function-macro name="datalist_remove_data" c:identifier="g_datalist_remove_data" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13739">Removes an element using its string identifier. The data element's
|
|
destroy function is called if it has been set.</doc>
|
|
<source-position filename="gdataset.h" line="108"/>
|
|
<parameters>
|
|
<parameter name="dl">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13741">a datalist.</doc>
|
|
</parameter>
|
|
<parameter name="k">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13742">the string identifying the data element.</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="datalist_remove_no_notify" c:identifier="g_datalist_remove_no_notify" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13749">Removes an element, without calling its destroy notifier.</doc>
|
|
<source-position filename="gdataset.h" line="104"/>
|
|
<parameters>
|
|
<parameter name="dl">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13751">a datalist.</doc>
|
|
</parameter>
|
|
<parameter name="k">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13752">the string identifying the data element.</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="datalist_set_data" c:identifier="g_datalist_set_data" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13758">Sets the data element corresponding to the given string identifier.</doc>
|
|
<source-position filename="gdataset.h" line="106"/>
|
|
<parameters>
|
|
<parameter name="dl">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13760">a datalist.</doc>
|
|
</parameter>
|
|
<parameter name="k">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13761">the string to identify the data element.</doc>
|
|
</parameter>
|
|
<parameter name="d">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13762">the data element, or %NULL to remove any previous element
|
|
corresponding to @k.</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="datalist_set_data_full" c:identifier="g_datalist_set_data_full" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13769">Sets the data element corresponding to the given string identifier,
|
|
and the function to be called when the data element is removed.</doc>
|
|
<source-position filename="gdataset.h" line="102"/>
|
|
<parameters>
|
|
<parameter name="dl">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13771">a datalist.</doc>
|
|
</parameter>
|
|
<parameter name="k">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13772">the string to identify the data element.</doc>
|
|
</parameter>
|
|
<parameter name="d">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13773">the data element, or %NULL to remove any previous element
|
|
corresponding to @k.</doc>
|
|
</parameter>
|
|
<parameter name="f">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13775">the function to call when the data element is removed.
|
|
This function will be called with the data element and can be used to
|
|
free any memory allocated for it. If @d is %NULL, then @f must
|
|
also be %NULL.</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function name="datalist_set_flags" c:identifier="g_datalist_set_flags" version="2.8">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13785">Turns on flag values for a data list. This function is used
|
|
to keep a small number of boolean flags in an object with
|
|
a data list without using any additional space. It is
|
|
not generally useful except in circumstances where space
|
|
is very tight. (It is used in the base #GObject type, for
|
|
example.)</doc>
|
|
<source-position filename="gdataset.h" line="90"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="datalist" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13787">pointer to the location that holds a list</doc>
|
|
<type name="Data" c:type="GData**"/>
|
|
</parameter>
|
|
<parameter name="flags" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13788">the flags to turn on. The values of the flags are
|
|
restricted by %G_DATALIST_FLAGS_MASK (currently
|
|
3; giving two possible boolean flags).
|
|
A value for @flags that doesn't fit within the mask is
|
|
an error.</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="datalist_unset_flags" c:identifier="g_datalist_unset_flags" version="2.8">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13805">Turns off flag values for a data list. See g_datalist_unset_flags()</doc>
|
|
<source-position filename="gdataset.h" line="93"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="datalist" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13807">pointer to the location that holds a list</doc>
|
|
<type name="Data" c:type="GData**"/>
|
|
</parameter>
|
|
<parameter name="flags" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13808">the flags to turn off. The values of the flags are
|
|
restricted by %G_DATALIST_FLAGS_MASK (currently
|
|
3: giving two possible boolean flags).
|
|
A value for @flags that doesn't fit within the mask is
|
|
an error.</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="dataset_destroy" c:identifier="g_dataset_destroy">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13820">Destroys the dataset, freeing all memory allocated, and calling any
|
|
destroy functions set for data elements.</doc>
|
|
<source-position filename="gdataset.h" line="114"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="dataset_location" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13822">the location identifying the dataset.</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="dataset_foreach" c:identifier="g_dataset_foreach">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13829">Calls the given function for each data element which is associated
|
|
with the given location. Note that this function is NOT thread-safe.
|
|
So unless @dataset_location can be protected from any modifications
|
|
during invocation of this function, it should not be called.
|
|
|
|
@func can make changes to the dataset, but the iteration will not
|
|
reflect changes made during the g_dataset_foreach() call, other
|
|
than skipping over elements that are removed.</doc>
|
|
<source-position filename="gdataset.h" line="130"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="dataset_location" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13831">the location identifying the dataset.</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
<parameter name="func" transfer-ownership="none" scope="call" closure="2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13832">the function to call for each data element.</doc>
|
|
<type name="DataForeachFunc" c:type="GDataForeachFunc"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13833">user data to pass to the function.</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function-macro name="dataset_get_data" c:identifier="g_dataset_get_data" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13846">Gets the data element corresponding to a string.</doc>
|
|
<source-position filename="gdataset.h" line="137"/>
|
|
<parameters>
|
|
<parameter name="l">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13848">the location identifying the dataset.</doc>
|
|
</parameter>
|
|
<parameter name="k">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13849">the string identifying the data element.</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function name="dataset_id_get_data" c:identifier="g_dataset_id_get_data">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13858">Gets the data element corresponding to a #GQuark.</doc>
|
|
<source-position filename="gdataset.h" line="116"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13865">the data element corresponding to
|
|
the #GQuark, or %NULL if it is not found.</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="dataset_location" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13860">the location identifying the dataset.</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
<parameter name="key_id" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13861">the #GQuark id to identify the data element.</doc>
|
|
<type name="Quark" c:type="GQuark"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function-macro name="dataset_id_remove_data" c:identifier="g_dataset_id_remove_data" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13870">Removes a data element from a dataset. The data element's destroy
|
|
function is called if it has been set.</doc>
|
|
<source-position filename="gdataset.h" line="135"/>
|
|
<parameters>
|
|
<parameter name="l">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13872">the location identifying the dataset.</doc>
|
|
</parameter>
|
|
<parameter name="k">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13873">the #GQuark id identifying the data element.</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function name="dataset_id_remove_no_notify" c:identifier="g_dataset_id_remove_no_notify" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13880">Removes an element, without calling its destroy notification
|
|
function.</doc>
|
|
<source-position filename="gdataset.h" line="127"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13888">the data previously stored at @key_id,
|
|
or %NULL if none.</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="dataset_location" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13882">the location identifying the dataset.</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
<parameter name="key_id" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13883">the #GQuark ID identifying the data element.</doc>
|
|
<type name="Quark" c:type="GQuark"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function-macro name="dataset_id_set_data" c:identifier="g_dataset_id_set_data" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13893">Sets the data element associated with the given #GQuark id. Any
|
|
previous data with the same key is removed, and its destroy function
|
|
is called.</doc>
|
|
<source-position filename="gdataset.h" line="133"/>
|
|
<parameters>
|
|
<parameter name="l">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13895">the location identifying the dataset.</doc>
|
|
</parameter>
|
|
<parameter name="k">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13896">the #GQuark id to identify the data element.</doc>
|
|
</parameter>
|
|
<parameter name="d">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13897">the data element.</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function name="dataset_id_set_data_full" c:identifier="g_dataset_id_set_data_full" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13905">Sets the data element associated with the given #GQuark id, and also
|
|
the function to call when the data element is destroyed. Any
|
|
previous data with the same key is removed, and its destroy function
|
|
is called.</doc>
|
|
<source-position filename="gdataset.h" line="122"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="dataset_location" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13907">the location identifying the dataset.</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
<parameter name="key_id" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13908">the #GQuark id to identify the data element.</doc>
|
|
<type name="Quark" c:type="GQuark"/>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13909">the data element.</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="destroy_func" transfer-ownership="none" scope="async">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13910">the function to call when the data element is
|
|
removed. This function will be called with the data
|
|
element and can be used to free any memory allocated
|
|
for it.</doc>
|
|
<type name="DestroyNotify" c:type="GDestroyNotify"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function-macro name="dataset_remove_data" c:identifier="g_dataset_remove_data" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13922">Removes a data element corresponding to a string. Its destroy
|
|
function is called if it has been set.</doc>
|
|
<source-position filename="gdataset.h" line="145"/>
|
|
<parameters>
|
|
<parameter name="l">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13924">the location identifying the dataset.</doc>
|
|
</parameter>
|
|
<parameter name="k">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13925">the string identifying the data element.</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="dataset_remove_no_notify" c:identifier="g_dataset_remove_no_notify" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13932">Removes an element, without calling its destroy notifier.</doc>
|
|
<source-position filename="gdataset.h" line="141"/>
|
|
<parameters>
|
|
<parameter name="l">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13934">the location identifying the dataset.</doc>
|
|
</parameter>
|
|
<parameter name="k">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13935">the string identifying the data element.</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="dataset_set_data" c:identifier="g_dataset_set_data" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13941">Sets the data corresponding to the given string identifier.</doc>
|
|
<source-position filename="gdataset.h" line="143"/>
|
|
<parameters>
|
|
<parameter name="l">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13943">the location identifying the dataset.</doc>
|
|
</parameter>
|
|
<parameter name="k">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13944">the string to identify the data element.</doc>
|
|
</parameter>
|
|
<parameter name="d">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13945">the data element.</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="dataset_set_data_full" c:identifier="g_dataset_set_data_full" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13951">Sets the data corresponding to the given string identifier, and the
|
|
function to call when the data element is destroyed.</doc>
|
|
<source-position filename="gdataset.h" line="139"/>
|
|
<parameters>
|
|
<parameter name="l">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13953">the location identifying the dataset.</doc>
|
|
</parameter>
|
|
<parameter name="k">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13954">the string to identify the data element.</doc>
|
|
</parameter>
|
|
<parameter name="d">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13955">the data element.</doc>
|
|
</parameter>
|
|
<parameter name="f">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="13956">the function to call when the data element is removed. This
|
|
function will be called with the data element and can be used to
|
|
free any memory allocated for it.</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function name="date_get_days_in_month" c:identifier="g_date_get_days_in_month" moved-to="Date.get_days_in_month">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14095">Returns the number of days in a month, taking leap
|
|
years into account.</doc>
|
|
<source-position filename="gdate.h" line="254"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14103">number of days in @month during the @year</doc>
|
|
<type name="guint8" c:type="guint8"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="month" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14097">month</doc>
|
|
<type name="DateMonth" c:type="GDateMonth"/>
|
|
</parameter>
|
|
<parameter name="year" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14098">year</doc>
|
|
<type name="DateYear" c:type="GDateYear"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="date_get_monday_weeks_in_year" c:identifier="g_date_get_monday_weeks_in_year" moved-to="Date.get_monday_weeks_in_year">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14144">Returns the number of weeks in the year, where weeks
|
|
are taken to start on Monday. Will be 52 or 53. The
|
|
date must be valid. (Years always have 52 7-day periods,
|
|
plus 1 or 2 extra days depending on whether it's a leap
|
|
year. This function is basically telling you how many
|
|
Mondays are in the year, i.e. there are 53 Mondays if
|
|
one of the extra days happens to be a Monday.)</doc>
|
|
<source-position filename="gdate.h" line="257"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14156">number of Mondays in the year</doc>
|
|
<type name="guint8" c:type="guint8"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="year" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14146">a year</doc>
|
|
<type name="DateYear" c:type="GDateYear"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="date_get_sunday_weeks_in_year" c:identifier="g_date_get_sunday_weeks_in_year" moved-to="Date.get_sunday_weeks_in_year">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14182">Returns the number of weeks in the year, where weeks
|
|
are taken to start on Sunday. Will be 52 or 53. The
|
|
date must be valid. (Years always have 52 7-day periods,
|
|
plus 1 or 2 extra days depending on whether it's a leap
|
|
year. This function is basically telling you how many
|
|
Sundays are in the year, i.e. there are 53 Sundays if
|
|
one of the extra days happens to be a Sunday.)</doc>
|
|
<source-position filename="gdate.h" line="259"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14194">the number of weeks in @year</doc>
|
|
<type name="guint8" c:type="guint8"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="year" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14184">year to count weeks in</doc>
|
|
<type name="DateYear" c:type="GDateYear"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="date_is_leap_year" c:identifier="g_date_is_leap_year" moved-to="Date.is_leap_year">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14240">Returns %TRUE if the year is a leap year.
|
|
|
|
For the purposes of this function, leap year is every year
|
|
divisible by 4 unless that year is divisible by 100. If it
|
|
is divisible by 100 it would be a leap year only if that year
|
|
is also divisible by 400.</doc>
|
|
<source-position filename="gdate.h" line="252"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14251">%TRUE if the year is a leap year</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="year" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14242">year to check</doc>
|
|
<type name="DateYear" c:type="GDateYear"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="date_strftime" c:identifier="g_date_strftime" moved-to="Date.strftime">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14425">Generates a printed representation of the date, in a
|
|
[locale][setlocale]-specific way.
|
|
Works just like the platform's C library strftime() function,
|
|
but only accepts date-related formats; time-related formats
|
|
give undefined results. Date must be valid. Unlike strftime()
|
|
(which uses the locale encoding), works on a UTF-8 format
|
|
string and stores a UTF-8 result.
|
|
|
|
This function does not provide any conversion specifiers in
|
|
addition to those implemented by the platform's C library.
|
|
For example, don't expect that using g_date_strftime() would
|
|
make the \%F provided by the C99 strftime() work on Windows
|
|
where the C library only complies to C89.</doc>
|
|
<source-position filename="gdate.h" line="288"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14446">number of characters written to the buffer, or 0 the buffer was too small</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="s" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14427">destination buffer</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</parameter>
|
|
<parameter name="slen" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14428">buffer size</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
<parameter name="format" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14429">format string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="date" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14430">valid #GDate</doc>
|
|
<type name="Date" c:type="const GDate*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="date_time_compare" c:identifier="g_date_time_compare" moved-to="DateTime.compare" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14624">A comparison function for #GDateTimes that is suitable
|
|
as a #GCompareFunc. Both #GDateTimes must be non-%NULL.</doc>
|
|
<source-position filename="gdatetime.h" line="196"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14632">-1, 0 or 1 if @dt1 is less than, equal to or greater
|
|
than @dt2.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="dt1" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14626">first #GDateTime to compare</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
<parameter name="dt2" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14627">second #GDateTime to compare</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="date_time_equal" c:identifier="g_date_time_equal" moved-to="DateTime.equal" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14653">Checks to see if @dt1 and @dt2 are equal.
|
|
|
|
Equal here means that they represent the same moment after converting
|
|
them to the same time zone.</doc>
|
|
<source-position filename="gdatetime.h" line="204"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14663">%TRUE if @dt1 and @dt2 are equal</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="dt1" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14655">a #GDateTime</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
<parameter name="dt2" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="14656">a #GDateTime</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="date_time_hash" c:identifier="g_date_time_hash" moved-to="DateTime.hash" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15034">Hashes @datetime into a #guint, suitable for use within #GHashTable.</doc>
|
|
<source-position filename="gdatetime.h" line="202"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15040">a #guint containing the hash</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="datetime" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15036">a #GDateTime</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="date_valid_day" c:identifier="g_date_valid_day" moved-to="Date.valid_day">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15459">Returns %TRUE if the day of the month is valid (a day is valid if it's
|
|
between 1 and 31 inclusive).</doc>
|
|
<source-position filename="gdate.h" line="141"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15466">%TRUE if the day is valid</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="day" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15461">day to check</doc>
|
|
<type name="DateDay" c:type="GDateDay"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="date_valid_dmy" c:identifier="g_date_valid_dmy" moved-to="Date.valid_dmy">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15470">Returns %TRUE if the day-month-year triplet forms a valid, existing day
|
|
in the range of days #GDate understands (Year 1 or later, no more than
|
|
a few thousand years in the future).</doc>
|
|
<source-position filename="gdate.h" line="151"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15480">%TRUE if the date is a valid one</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="day" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15472">day</doc>
|
|
<type name="DateDay" c:type="GDateDay"/>
|
|
</parameter>
|
|
<parameter name="month" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15473">month</doc>
|
|
<type name="DateMonth" c:type="GDateMonth"/>
|
|
</parameter>
|
|
<parameter name="year" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15474">year</doc>
|
|
<type name="DateYear" c:type="GDateYear"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="date_valid_julian" c:identifier="g_date_valid_julian" moved-to="Date.valid_julian">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15484">Returns %TRUE if the Julian day is valid. Anything greater than zero
|
|
is basically a valid Julian, though there is a 32-bit limit.</doc>
|
|
<source-position filename="gdate.h" line="149"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15491">%TRUE if the Julian day is valid</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="julian_date" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15486">Julian day to check</doc>
|
|
<type name="guint32" c:type="guint32"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="date_valid_month" c:identifier="g_date_valid_month" moved-to="Date.valid_month">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15495">Returns %TRUE if the month value is valid. The 12 #GDateMonth
|
|
enumeration values are the only valid months.</doc>
|
|
<source-position filename="gdate.h" line="143"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15502">%TRUE if the month is valid</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="month" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15497">month</doc>
|
|
<type name="DateMonth" c:type="GDateMonth"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="date_valid_weekday" c:identifier="g_date_valid_weekday" moved-to="Date.valid_weekday">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15506">Returns %TRUE if the weekday is valid. The seven #GDateWeekday enumeration
|
|
values are the only valid weekdays.</doc>
|
|
<source-position filename="gdate.h" line="147"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15513">%TRUE if the weekday is valid</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="weekday" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15508">weekday</doc>
|
|
<type name="DateWeekday" c:type="GDateWeekday"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="date_valid_year" c:identifier="g_date_valid_year" moved-to="Date.valid_year">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15517">Returns %TRUE if the year is valid. Any year greater than 0 is valid,
|
|
though there is a 16-bit limit to what #GDate will understand.</doc>
|
|
<source-position filename="gdate.h" line="145"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15524">%TRUE if the year is valid</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="year" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15519">year</doc>
|
|
<type name="DateYear" c:type="GDateYear"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="dcgettext" c:identifier="g_dcgettext" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15528">This is a variant of g_dgettext() that allows specifying a locale
|
|
category instead of always using `LC_MESSAGES`. See g_dgettext() for
|
|
more information about how this functions differs from calling
|
|
dcgettext() directly.</doc>
|
|
<source-position filename="ggettext.h" line="44"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15540">the translated string for the given locale category</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="domain" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15530">the translation domain to use, or %NULL to use
|
|
the domain set with textdomain()</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="msgid" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15532">message to translate</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="category" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15533">a locale category</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="dgettext" c:identifier="g_dgettext" version="2.18">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15569">This function is a wrapper of dgettext() which does not translate
|
|
the message if the default domain as set with textdomain() has no
|
|
translations for the current locale.
|
|
|
|
The advantage of using this function over dgettext() proper is that
|
|
libraries using this function (like GTK+) will not use translations
|
|
if the application using the library does not have translations for
|
|
the current locale. This results in a consistent English-only
|
|
interface instead of one having partial translations. For this
|
|
feature to work, the call to textdomain() and setlocale() should
|
|
precede any g_dgettext() invocations. For GTK+, it means calling
|
|
textdomain() before gtk_init or its variants.
|
|
|
|
This function disables translations if and only if upon its first
|
|
call all the following conditions hold:
|
|
|
|
- @domain is not %NULL
|
|
|
|
- textdomain() has been called to set a default text domain
|
|
|
|
- there is no translations available for the default text domain
|
|
and the current locale
|
|
|
|
- current locale is not "C" or any English locales (those
|
|
starting with "en_")
|
|
|
|
Note that this behavior may not be desired for example if an application
|
|
has its untranslated messages in a language other than English. In those
|
|
cases the application should call textdomain() after initializing GTK+.
|
|
|
|
Applications should normally not use this function directly,
|
|
but use the _() macro for translations.</doc>
|
|
<source-position filename="ggettext.h" line="41"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15608">The translated string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="domain" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15571">the translation domain to use, or %NULL to use
|
|
the domain set with textdomain()</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="msgid" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15573">message to translate</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="dir_make_tmp" c:identifier="g_dir_make_tmp" moved-to="Dir.make_tmp" version="2.30" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15621">Creates a subdirectory in the preferred directory for temporary
|
|
files (as returned by g_get_tmp_dir()).
|
|
|
|
@tmpl should be a string in the GLib file name encoding containing
|
|
a sequence of six 'X' characters, as the parameter to g_mkstemp().
|
|
However, unlike these functions, the template should only be a
|
|
basename, no directory components are allowed. If template is
|
|
%NULL, a default template is used.
|
|
|
|
Note that in contrast to g_mkdtemp() (and mkdtemp()) @tmpl is not
|
|
modified, and might thus be a read-only literal string.</doc>
|
|
<source-position filename="gfileutils.h" line="119"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15639">The actual name used. This string
|
|
should be freed with g_free() when not needed any longer and is
|
|
is in the GLib file name encoding. In case of errors, %NULL is
|
|
returned and @error will be set.</doc>
|
|
<type name="filename" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="tmpl" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15623">Template for directory name,
|
|
as in g_mkdtemp(), basename only, or %NULL for a default template</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="direct_equal" c:identifier="g_direct_equal">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15699">Compares two #gpointer arguments and returns %TRUE if they are equal.
|
|
It can be passed to g_hash_table_new() as the @key_equal_func
|
|
parameter, when using opaque pointers compared by pointer value as
|
|
keys in a #GHashTable.
|
|
|
|
This equality function is also appropriate for keys that are integers
|
|
stored in pointers, such as `GINT_TO_POINTER (n)`.</doc>
|
|
<source-position filename="ghash.h" line="183"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15712">%TRUE if the two keys match.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="v1" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15701">a key</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
<parameter name="v2" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15702">a key to compare with @v1</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="direct_hash" c:identifier="g_direct_hash">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15716">Converts a gpointer to a hash value.
|
|
It can be passed to g_hash_table_new() as the @hash_func parameter,
|
|
when using opaque pointers compared by pointer value as keys in a
|
|
#GHashTable.
|
|
|
|
This hash function is also appropriate for keys that are integers
|
|
stored in pointers, such as `GINT_TO_POINTER (n)`.</doc>
|
|
<source-position filename="ghash.h" line="181"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15728">a hash value corresponding to the key.</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="v" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15718">a #gpointer key</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="dngettext" c:identifier="g_dngettext" version="2.18">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15746">This function is a wrapper of dngettext() which does not translate
|
|
the message if the default domain as set with textdomain() has no
|
|
translations for the current locale.
|
|
|
|
See g_dgettext() for details of how this differs from dngettext()
|
|
proper.</doc>
|
|
<source-position filename="ggettext.h" line="48"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15761">The translated string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="domain" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15748">the translation domain to use, or %NULL to use
|
|
the domain set with textdomain()</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="msgid" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15750">message to translate</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="msgid_plural" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15751">plural form of the message</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="n" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15752">the quantity for which translation is needed</doc>
|
|
<type name="gulong" c:type="gulong"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="double_equal" c:identifier="g_double_equal" version="2.22">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15766">Compares the two #gdouble values being pointed to and returns
|
|
%TRUE if they are equal.
|
|
It can be passed to g_hash_table_new() as the @key_equal_func
|
|
parameter, when using non-%NULL pointers to doubles as keys in a
|
|
#GHashTable.</doc>
|
|
<source-position filename="ghash.h" line="175"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15777">%TRUE if the two keys match.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="v1" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15768">a pointer to a #gdouble key</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
<parameter name="v2" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15769">a pointer to a #gdouble key to compare with @v1</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="double_hash" c:identifier="g_double_hash" version="2.22">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15782">Converts a pointer to a #gdouble to a hash value.
|
|
It can be passed to g_hash_table_new() as the @hash_func parameter,
|
|
It can be passed to g_hash_table_new() as the @hash_func parameter,
|
|
when using non-%NULL pointers to doubles as keys in a #GHashTable.</doc>
|
|
<source-position filename="ghash.h" line="178"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15791">a hash value corresponding to the key.</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="v" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15784">a pointer to a #gdouble key</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="dpgettext" c:identifier="g_dpgettext" version="2.16">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15796">This function is a variant of g_dgettext() which supports
|
|
a disambiguating message context. GNU gettext uses the
|
|
'\004' character to separate the message context and
|
|
message id in @msgctxtid.
|
|
If 0 is passed as @msgidoffset, this function will fall back to
|
|
trying to use the deprecated convention of using "|" as a separation
|
|
character.
|
|
|
|
This uses g_dgettext() internally. See that functions for differences
|
|
with dgettext() proper.
|
|
|
|
Applications should normally not use this function directly,
|
|
but use the C_() macro for translations with context.</doc>
|
|
<source-position filename="ggettext.h" line="53"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15818">The translated string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="domain" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15798">the translation domain to use, or %NULL to use
|
|
the domain set with textdomain()</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="msgctxtid" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15800">a combined message context and message id, separated
|
|
by a \004 character</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="msgidoffset" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15802">the offset of the message id in @msgctxid</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="dpgettext2" c:identifier="g_dpgettext2" version="2.18">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15823">This function is a variant of g_dgettext() which supports
|
|
a disambiguating message context. GNU gettext uses the
|
|
'\004' character to separate the message context and
|
|
message id in @msgctxtid.
|
|
|
|
This uses g_dgettext() internally. See that functions for differences
|
|
with dgettext() proper.
|
|
|
|
This function differs from C_() in that it is not a macro and
|
|
thus you may use non-string-literals as context and msgid arguments.</doc>
|
|
<source-position filename="ggettext.h" line="57"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15841">The translated string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="domain" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15825">the translation domain to use, or %NULL to use
|
|
the domain set with textdomain()</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="context" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15827">the message context</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="msgid" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15828">the message</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="environ_getenv" c:identifier="g_environ_getenv" version="2.32">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15846">Returns the value of the environment variable @variable in the
|
|
provided list @envp.</doc>
|
|
<source-position filename="genviron.h" line="50"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15856">the value of the environment variable, or %NULL if
|
|
the environment variable is not set in @envp. The returned
|
|
string is owned by @envp, and will be freed if @variable is
|
|
set or unset again.</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="envp" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15848">
|
|
an environment list (eg, as returned from g_get_environ()), or %NULL
|
|
for an empty environment list</doc>
|
|
<array c:type="gchar**">
|
|
<type name="filename"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="variable" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15851">the environment variable to get</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="environ_setenv" c:identifier="g_environ_setenv" version="2.32">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15864">Sets the environment variable @variable in the provided list
|
|
@envp to @value.</doc>
|
|
<source-position filename="genviron.h" line="53"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15878">
|
|
the updated environment list. Free it using g_strfreev().</doc>
|
|
<array c:type="gchar**">
|
|
<type name="filename"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="envp" transfer-ownership="full" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15866">
|
|
an environment list that can be freed using g_strfreev() (e.g., as
|
|
returned from g_get_environ()), or %NULL for an empty
|
|
environment list</doc>
|
|
<array c:type="gchar**">
|
|
<type name="filename"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="variable" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15870">the environment variable to set, must not
|
|
contain '='</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15872">the value for to set the variable to</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="overwrite" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15873">whether to change the variable if it already exists</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="environ_unsetenv" c:identifier="g_environ_unsetenv" version="2.32">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15884">Removes the environment variable @variable from the provided
|
|
environment @envp.</doc>
|
|
<source-position filename="genviron.h" line="58"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15895">
|
|
the updated environment list. Free it using g_strfreev().</doc>
|
|
<array c:type="gchar**">
|
|
<type name="filename"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="envp" transfer-ownership="full" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15886">
|
|
an environment list that can be freed using g_strfreev() (e.g., as
|
|
returned from g_get_environ()), or %NULL for an empty environment list</doc>
|
|
<array c:type="gchar**">
|
|
<type name="filename"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="variable" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="15889">the environment variable to remove, must not
|
|
contain '='</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="file_error_from_errno" c:identifier="g_file_error_from_errno">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16012">Gets a #GFileError constant based on the passed-in @err_no.
|
|
For example, if you pass in `EEXIST` this function returns
|
|
#G_FILE_ERROR_EXIST. Unlike `errno` values, you can portably
|
|
assume that all #GFileError values will exist.
|
|
|
|
Normally a #GFileError value goes into a #GError returned
|
|
from a function that manipulates files. So you would use
|
|
g_file_error_from_errno() when constructing a #GError.</doc>
|
|
<source-position filename="gfileutils.h" line="79"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16025">#GFileError corresponding to the given @errno</doc>
|
|
<type name="FileError" c:type="GFileError"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="err_no" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16014">an "errno" value</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="file_error_quark" c:identifier="g_file_error_quark">
|
|
<return-value transfer-ownership="none">
|
|
<type name="Quark" c:type="GQuark"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="file_get_contents" c:identifier="g_file_get_contents" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16029">Reads an entire file into allocated memory, with good error
|
|
checking.
|
|
|
|
If the call was successful, it returns %TRUE and sets @contents to the file
|
|
contents and @length to the length of the file contents in bytes. The string
|
|
stored in @contents will be nul-terminated, so for text files you can pass
|
|
%NULL for the @length argument. If the call was not successful, it returns
|
|
%FALSE and sets @error. The error domain is #G_FILE_ERROR. Possible error
|
|
codes are those in the #GFileError enumeration. In the error case,
|
|
@contents is set to %NULL and @length is set to zero.</doc>
|
|
<source-position filename="gfileutils.h" line="85"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16048">%TRUE on success, %FALSE if an error occurred</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="filename" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16031">name of a file to read contents from, in the GLib file name encoding</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="contents" direction="out" caller-allocates="0" transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16032">location to store an allocated string, use g_free() to free
|
|
the returned string</doc>
|
|
<array length="2" zero-terminated="0" c:type="gchar**">
|
|
<type name="guint8"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="length" direction="out" caller-allocates="0" transfer-ownership="full" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16034">location to store length in bytes of the contents, or %NULL</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="file_open_tmp" c:identifier="g_file_open_tmp" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16052">Opens a file for writing in the preferred directory for temporary
|
|
files (as returned by g_get_tmp_dir()).
|
|
|
|
@tmpl should be a string in the GLib file name encoding containing
|
|
a sequence of six 'X' characters, as the parameter to g_mkstemp().
|
|
However, unlike these functions, the template should only be a
|
|
basename, no directory components are allowed. If template is
|
|
%NULL, a default template is used.
|
|
|
|
Note that in contrast to g_mkstemp() (and mkstemp()) @tmpl is not
|
|
modified, and might thus be a read-only literal string.
|
|
|
|
Upon success, and if @name_used is non-%NULL, the actual name used
|
|
is returned in @name_used. This string should be freed with g_free()
|
|
when not needed any longer. The returned name is in the GLib file
|
|
name encoding.</doc>
|
|
<source-position filename="gfileutils.h" line="115"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16077">A file handle (as from open()) to the file opened for
|
|
reading and writing. The file is opened in binary mode on platforms
|
|
where there is a difference. The file handle should be closed with
|
|
close(). In case of errors, -1 is returned and @error will be set.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="tmpl" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16054">Template for file name, as in
|
|
g_mkstemp(), basename only, or %NULL for a default template</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="name_used" direction="out" caller-allocates="0" transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16056">location to store actual name used,
|
|
or %NULL</doc>
|
|
<type name="filename" c:type="gchar**"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="file_read_link" c:identifier="g_file_read_link" version="2.4" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16084">Reads the contents of the symbolic link @filename like the POSIX
|
|
readlink() function. The returned string is in the encoding used
|
|
for filenames. Use g_filename_to_utf8() to convert it to UTF-8.</doc>
|
|
<source-position filename="gfileutils.h" line="95"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16093">A newly-allocated string with the contents of
|
|
the symbolic link, or %NULL if an error occurred.</doc>
|
|
<type name="filename" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="filename" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16086">the symbolic link</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="file_set_contents" c:identifier="g_file_set_contents" version="2.8" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16099">Writes all of @contents to a file named @filename, with good error checking.
|
|
If a file called @filename already exists it will be overwritten.
|
|
|
|
This write is atomic in the sense that it is first written to a temporary
|
|
file which is then renamed to the final name. Notes:
|
|
|
|
- On UNIX, if @filename already exists hard links to @filename will break.
|
|
Also since the file is recreated, existing permissions, access control
|
|
lists, metadata etc. may be lost. If @filename is a symbolic link,
|
|
the link itself will be replaced, not the linked file.
|
|
|
|
- On UNIX, if @filename already exists and is non-empty, and if the system
|
|
supports it (via a journalling filesystem or equivalent), the fsync()
|
|
call (or equivalent) will be used to ensure atomic replacement: @filename
|
|
will contain either its old contents or @contents, even in the face of
|
|
system power loss, the disk being unsafely removed, etc.
|
|
|
|
- On UNIX, if @filename does not already exist or is empty, there is a
|
|
possibility that system power loss etc. after calling this function will
|
|
leave @filename empty or full of NUL bytes, depending on the underlying
|
|
filesystem.
|
|
|
|
- On Windows renaming a file will not remove an existing file with the
|
|
new name, so on Windows there is a race condition between the existing
|
|
file being removed and the temporary file being renamed.
|
|
|
|
- On Windows there is no way to remove a file that is open to some
|
|
process, or mapped into memory. Thus, this function will fail if
|
|
@filename already exists and is open.
|
|
|
|
If the call was successful, it returns %TRUE. If the call was not successful,
|
|
it returns %FALSE and sets @error. The error domain is #G_FILE_ERROR.
|
|
Possible error codes are those in the #GFileError enumeration.
|
|
|
|
Note that the name for the temporary file is constructed by appending up
|
|
to 7 characters to @filename.</doc>
|
|
<source-position filename="gfileutils.h" line="90"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16144">%TRUE on success, %FALSE if an error occurred</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="filename" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16101">name of a file to write @contents to, in the GLib file name
|
|
encoding</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="contents" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16103">string to write to the file</doc>
|
|
<array length="2" zero-terminated="0" c:type="const gchar*">
|
|
<type name="guint8"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="length" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16104">length of @contents, or -1 if @contents is a nul-terminated string</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="file_test" c:identifier="g_file_test">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16149">Returns %TRUE if any of the tests in the bitfield @test are
|
|
%TRUE. For example, `(G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR)`
|
|
will return %TRUE if the file exists; the check whether it's a
|
|
directory doesn't matter since the existence test is %TRUE. With
|
|
the current set of available tests, there's no point passing in
|
|
more than one test at a time.
|
|
|
|
Apart from %G_FILE_TEST_IS_SYMLINK all tests follow symbolic links,
|
|
so for a symbolic link to a regular file g_file_test() will return
|
|
%TRUE for both %G_FILE_TEST_IS_SYMLINK and %G_FILE_TEST_IS_REGULAR.
|
|
|
|
Note, that for a dangling symbolic link g_file_test() will return
|
|
%TRUE for %G_FILE_TEST_IS_SYMLINK and %FALSE for all other flags.
|
|
|
|
You should never use g_file_test() to test whether it is safe
|
|
to perform an operation, because there is always the possibility
|
|
of the condition changing before you actually perform the operation.
|
|
For example, you might think you could use %G_FILE_TEST_IS_SYMLINK
|
|
to know whether it is safe to write to a file without being
|
|
tricked into writing into a different location. It doesn't work!
|
|
|[<!-- language="C" -->
|
|
// DON'T DO THIS
|
|
if (!g_file_test (filename, G_FILE_TEST_IS_SYMLINK))
|
|
{
|
|
fd = g_open (filename, O_WRONLY);
|
|
// write to fd
|
|
}
|
|
]|
|
|
|
|
Another thing to note is that %G_FILE_TEST_EXISTS and
|
|
%G_FILE_TEST_IS_EXECUTABLE are implemented using the access()
|
|
system call. This usually doesn't matter, but if your program
|
|
is setuid or setgid it means that these tests will give you
|
|
the answer for the real user ID and group ID, rather than the
|
|
effective user ID and group ID.
|
|
|
|
On Windows, there are no symlinks, so testing for
|
|
%G_FILE_TEST_IS_SYMLINK will always return %FALSE. Testing for
|
|
%G_FILE_TEST_IS_EXECUTABLE will just check that the file exists and
|
|
its name indicates that it is executable, checking for well-known
|
|
extensions and those listed in the `PATHEXT` environment variable.</doc>
|
|
<source-position filename="gfileutils.h" line="82"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16197">whether a test was %TRUE</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="filename" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16151">a filename to test in the
|
|
GLib file name encoding</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="test" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16153">bitfield of #GFileTest flags</doc>
|
|
<type name="FileTest" c:type="GFileTest"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="filename_display_basename" c:identifier="g_filename_display_basename" version="2.6">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16201">Returns the display basename for the particular filename, guaranteed
|
|
to be valid UTF-8. The display name might not be identical to the filename,
|
|
for instance there might be problems converting it to UTF-8, and some files
|
|
can be translated in the display.
|
|
|
|
If GLib cannot make sense of the encoding of @filename, as a last resort it
|
|
replaces unknown characters with U+FFFD, the Unicode replacement character.
|
|
You can search the result for the UTF-8 encoding of this character (which is
|
|
"\357\277\275" in octal notation) to find out if @filename was in an invalid
|
|
encoding.
|
|
|
|
You must pass the whole absolute pathname to this functions so that
|
|
translation of well known locations can be done.
|
|
|
|
This function is preferred over g_filename_display_name() if you know the
|
|
whole path, as it allows translation.</doc>
|
|
<source-position filename="gconvert.h" line="170"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16223">a newly allocated string containing
|
|
a rendition of the basename of the filename in valid UTF-8</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="filename" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16203">an absolute pathname in the
|
|
GLib file name encoding</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="filename_display_name" c:identifier="g_filename_display_name" version="2.6">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16229">Converts a filename into a valid UTF-8 string. The conversion is
|
|
not necessarily reversible, so you should keep the original around
|
|
and use the return value of this function only for display purposes.
|
|
Unlike g_filename_to_utf8(), the result is guaranteed to be non-%NULL
|
|
even if the filename actually isn't in the GLib file name encoding.
|
|
|
|
If GLib cannot make sense of the encoding of @filename, as a last resort it
|
|
replaces unknown characters with U+FFFD, the Unicode replacement character.
|
|
You can search the result for the UTF-8 encoding of this character (which is
|
|
"\357\277\275" in octal notation) to find out if @filename was in an invalid
|
|
encoding.
|
|
|
|
If you know the whole pathname of the file you should use
|
|
g_filename_display_basename(), since that allows location-based
|
|
translation of filenames.</doc>
|
|
<source-position filename="gconvert.h" line="165"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16250">a newly allocated string containing
|
|
a rendition of the filename in valid UTF-8</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="filename" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16231">a pathname hopefully in the
|
|
GLib file name encoding</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="filename_from_uri" c:identifier="g_filename_from_uri" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16256">Converts an escaped ASCII-encoded URI to a local filename in the
|
|
encoding used for filenames.</doc>
|
|
<source-position filename="gconvert.h" line="156"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16268">a newly-allocated string holding
|
|
the resulting filename, or %NULL on an error.</doc>
|
|
<type name="filename" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="uri" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16258">a uri describing a filename (escaped, encoded in ASCII).</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="hostname" direction="out" caller-allocates="0" transfer-ownership="full" nullable="1" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16259">Location to store hostname for the URI.
|
|
If there is no hostname in the URI, %NULL will be
|
|
stored in this location.</doc>
|
|
<type name="utf8" c:type="gchar**"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="filename_from_utf8" c:identifier="g_filename_from_utf8" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16273">Converts a string from UTF-8 to the encoding GLib uses for
|
|
filenames. Note that on Windows GLib uses UTF-8 for filenames;
|
|
on other platforms, this function indirectly depends on the
|
|
[current locale][setlocale].
|
|
|
|
The input string shall not contain nul characters even if the @len
|
|
argument is positive. A nul character found inside the string will result
|
|
in error %G_CONVERT_ERROR_ILLEGAL_SEQUENCE. If the filename encoding is
|
|
not UTF-8 and the conversion output contains a nul character, the error
|
|
%G_CONVERT_ERROR_EMBEDDED_NUL is set and the function returns %NULL.</doc>
|
|
<source-position filename="gconvert.h" line="149"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16302">
|
|
The converted string, or %NULL on an error.</doc>
|
|
<type name="filename" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="utf8string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16275">a UTF-8 encoded string.</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16276">the length of the string, or -1 if the string is
|
|
nul-terminated.</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
<parameter name="bytes_read" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16278">location to store the number of bytes in
|
|
the input string that were successfully converted, or %NULL.
|
|
Even if the conversion was successful, this may be
|
|
less than @len if there were partial characters
|
|
at the end of the input. If the error
|
|
%G_CONVERT_ERROR_ILLEGAL_SEQUENCE occurs, the value
|
|
stored will be the byte offset after the last valid
|
|
input sequence.</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
<parameter name="bytes_written" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16286">the number of bytes stored in
|
|
the output buffer (not including the terminating nul).</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="filename_to_uri" c:identifier="g_filename_to_uri" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16307">Converts an absolute filename to an escaped ASCII-encoded URI, with the path
|
|
component following Section 3.3. of RFC 2396.</doc>
|
|
<source-position filename="gconvert.h" line="161"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16319">a newly-allocated string holding the resulting
|
|
URI, or %NULL on an error.</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="filename" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16309">an absolute filename specified in the GLib file
|
|
name encoding, which is the on-disk file name bytes on Unix, and UTF-8
|
|
on Windows</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="hostname" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16312">A UTF-8 encoded hostname, or %NULL for none.</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="filename_to_utf8" c:identifier="g_filename_to_utf8" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16324">Converts a string which is in the encoding used by GLib for
|
|
filenames into a UTF-8 string. Note that on Windows GLib uses UTF-8
|
|
for filenames; on other platforms, this function indirectly depends on
|
|
the [current locale][setlocale].
|
|
|
|
The input string shall not contain nul characters even if the @len
|
|
argument is positive. A nul character found inside the string will result
|
|
in error %G_CONVERT_ERROR_ILLEGAL_SEQUENCE.
|
|
If the source encoding is not UTF-8 and the conversion output contains a
|
|
nul character, the error %G_CONVERT_ERROR_EMBEDDED_NUL is set and the
|
|
function returns %NULL. Use g_convert() to produce output that
|
|
may contain embedded nul characters.</doc>
|
|
<source-position filename="gconvert.h" line="143"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16357">The converted string, or %NULL on an error.</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="opsysstring" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16326">a string in the encoding for filenames</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16327">the length of the string, or -1 if the string is
|
|
nul-terminated (Note that some encodings may allow nul
|
|
bytes to occur inside strings. In that case, using -1
|
|
for the @len parameter is unsafe)</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
<parameter name="bytes_read" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16331">location to store the number of bytes in the
|
|
input string that were successfully converted, or %NULL.
|
|
Even if the conversion was successful, this may be
|
|
less than @len if there were partial characters
|
|
at the end of the input. If the error
|
|
%G_CONVERT_ERROR_ILLEGAL_SEQUENCE occurs, the value
|
|
stored will be the byte offset after the last valid
|
|
input sequence.</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
<parameter name="bytes_written" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16339">the number of bytes stored in the output
|
|
buffer (not including the terminating nul).</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="find_program_in_path" c:identifier="g_find_program_in_path">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16361">Locates the first executable named @program in the user's path, in the
|
|
same way that execvp() would locate it. Returns an allocated string
|
|
with the absolute path name, or %NULL if the program is not found in
|
|
the path. If @program is already an absolute path, returns a copy of
|
|
@program if @program exists and is executable, and %NULL otherwise.
|
|
|
|
On Windows, if @program does not have a file type suffix, tries
|
|
with the suffixes .exe, .cmd, .bat and .com, and the suffixes in
|
|
the `PATHEXT` environment variable.
|
|
|
|
On Windows, it looks for the file in the same way as CreateProcess()
|
|
would. This means first in the directory where the executing
|
|
program was loaded from, then in the current directory, then in the
|
|
Windows 32-bit system directory, then in the Windows directory, and
|
|
finally in the directories in the `PATH` environment variable. If
|
|
the program is found, the return value contains the full name
|
|
including the type suffix.</doc>
|
|
<source-position filename="gutils.h" line="232"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16383">a newly-allocated string with the absolute path,
|
|
or %NULL</doc>
|
|
<type name="filename" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="program" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16363">a program name in the GLib file name encoding</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="format_size" c:identifier="g_format_size" version="2.30">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16412">Formats a size (for example the size of a file) into a human readable
|
|
string. Sizes are rounded to the nearest size prefix (kB, MB, GB)
|
|
and are displayed rounded to the nearest tenth. E.g. the file size
|
|
3292528 bytes will be converted into the string "3.2 MB". The returned string
|
|
is UTF-8, and may use a non-breaking space to separate the number and units,
|
|
to ensure they aren’t separated when line wrapped.
|
|
|
|
The prefix units base is 1000 (i.e. 1 kB is 1000 bytes).
|
|
|
|
This string should be freed with g_free() when not needed any longer.
|
|
|
|
See g_format_size_full() for more options about how the size might be
|
|
formatted.</doc>
|
|
<source-position filename="gutils.h" line="192"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16430">a newly-allocated formatted string containing a human readable
|
|
file size</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="size" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16414">a size in bytes</doc>
|
|
<type name="guint64" c:type="guint64"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="format_size_for_display" c:identifier="g_format_size_for_display" version="2.16" deprecated="1" deprecated-version="2.30">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16436">Formats a size (for example the size of a file) into a human
|
|
readable string. Sizes are rounded to the nearest size prefix
|
|
(KB, MB, GB) and are displayed rounded to the nearest tenth.
|
|
E.g. the file size 3292528 bytes will be converted into the
|
|
string "3.1 MB".
|
|
|
|
The prefix units base is 1024 (i.e. 1 KB is 1024 bytes).
|
|
|
|
This string should be freed with g_free() when not needed any longer.</doc>
|
|
<doc-deprecated xml:space="preserve">This function is broken due to its use of SI
|
|
suffixes to denote IEC units. Use g_format_size() instead.</doc-deprecated>
|
|
<source-position filename="gutils.h" line="195"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16450">a newly-allocated formatted string containing a human
|
|
readable file size</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="size" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16438">a size in bytes</doc>
|
|
<type name="gint64" c:type="goffset"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="format_size_full" c:identifier="g_format_size_full" version="2.30">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16458">Formats a size.
|
|
|
|
This function is similar to g_format_size() but allows for flags
|
|
that modify the output. See #GFormatSizeFlags.</doc>
|
|
<source-position filename="gutils.h" line="189"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16468">a newly-allocated formatted string containing a human
|
|
readable file size</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="size" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16460">a size in bytes</doc>
|
|
<type name="guint64" c:type="guint64"/>
|
|
</parameter>
|
|
<parameter name="flags" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16461">#GFormatSizeFlags to modify the output</doc>
|
|
<type name="FormatSizeFlags" c:type="GFormatSizeFlags"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="fprintf" c:identifier="g_fprintf" version="2.2" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16474">An implementation of the standard fprintf() function which supports
|
|
positional parameters, as specified in the Single Unix Specification.
|
|
|
|
`glib/gprintf.h` must be explicitly included in order to use this function.</doc>
|
|
<source-position filename="gprintf.h" line="31"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16486">the number of bytes printed.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16476">the stream to write to.</doc>
|
|
<type name="gpointer" c:type="FILE*"/>
|
|
</parameter>
|
|
<parameter name="format" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16477">a standard printf() format string, but notice
|
|
[string precision pitfalls][string-precision]</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="..." transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16479">the arguments to insert in the output.</doc>
|
|
<varargs/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="free" c:identifier="g_free">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16491">Frees the memory pointed to by @mem.
|
|
|
|
If @mem is %NULL it simply returns, so there is no need to check @mem
|
|
against %NULL before calling this function.</doc>
|
|
<source-position filename="gmem.h" line="71"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="mem" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16493">the memory to free</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="get_application_name" c:identifier="g_get_application_name" version="2.2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16520">Gets a human-readable name for the application, as set by
|
|
g_set_application_name(). This name should be localized if
|
|
possible, and is intended for display to the user. Contrast with
|
|
g_get_prgname(), which gets a non-localized name. If
|
|
g_set_application_name() has not been called, returns the result of
|
|
g_get_prgname() (which may be %NULL if g_set_prgname() has also not
|
|
been called).</doc>
|
|
<source-position filename="gutils.h" line="65"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16531">human-readable application name. may return %NULL</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="get_charset" c:identifier="g_get_charset">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16536">Obtains the character set for the [current locale][setlocale]; you
|
|
might use this character set as an argument to g_convert(), to convert
|
|
from the current locale's encoding to some other encoding. (Frequently
|
|
g_locale_to_utf8() and g_locale_from_utf8() are nice shortcuts, though.)
|
|
|
|
On Windows the character set returned by this function is the
|
|
so-called system default ANSI code-page. That is the character set
|
|
used by the "narrow" versions of C library and Win32 functions that
|
|
handle file names. It might be different from the character set
|
|
used by the C library's current locale.
|
|
|
|
On Linux, the character set is found by consulting nl_langinfo() if
|
|
available. If not, the environment variables `LC_ALL`, `LC_CTYPE`, `LANG`
|
|
and `CHARSET` are queried in order.
|
|
|
|
The return value is %TRUE if the locale's encoding is UTF-8, in that
|
|
case you can perhaps avoid calling g_convert().
|
|
|
|
The string returned in @charset is not allocated, and should not be
|
|
freed.</doc>
|
|
<source-position filename="gcharset.h" line="31"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16562">%TRUE if the returned charset is UTF-8</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="charset" direction="out" caller-allocates="0" transfer-ownership="none" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16538">return location for character set
|
|
name, or %NULL.</doc>
|
|
<type name="utf8" c:type="const char**"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="get_codeset" c:identifier="g_get_codeset">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16566">Gets the character set for the current locale.</doc>
|
|
<source-position filename="gcharset.h" line="33"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16571">a newly allocated string containing the name
|
|
of the character set. This string must be freed with g_free().</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="get_console_charset" c:identifier="g_get_console_charset" version="2.62">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16576">Obtains the character set used by the console attached to the process,
|
|
which is suitable for printing output to the terminal.
|
|
|
|
Usually this matches the result returned by g_get_charset(), but in
|
|
environments where the locale's character set does not match the encoding
|
|
of the console this function tries to guess a more suitable value instead.
|
|
|
|
On Windows the character set returned by this function is the
|
|
output code page used by the console associated with the calling process.
|
|
If the codepage can't be determined (for example because there is no
|
|
console attached) UTF-8 is assumed.
|
|
|
|
The return value is %TRUE if the locale's encoding is UTF-8, in that
|
|
case you can perhaps avoid calling g_convert().
|
|
|
|
The string returned in @charset is not allocated, and should not be
|
|
freed.</doc>
|
|
<source-position filename="gcharset.h" line="35"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16599">%TRUE if the returned charset is UTF-8</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="charset" direction="out" caller-allocates="0" transfer-ownership="none" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16578">return location for character set
|
|
name, or %NULL.</doc>
|
|
<type name="utf8" c:type="const char**"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="get_current_dir" c:identifier="g_get_current_dir">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16604">Gets the current directory.
|
|
|
|
The returned string should be freed when no longer needed.
|
|
The encoding of the returned string is system defined.
|
|
On Windows, it is always UTF-8.
|
|
|
|
Since GLib 2.40, this function will return the value of the "PWD"
|
|
environment variable if it is set and it happens to be the same as
|
|
the current directory. This can make a difference in the case that
|
|
the current directory is the target of a symbolic link.</doc>
|
|
<source-position filename="gfileutils.h" line="167"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16618">the current directory</doc>
|
|
<type name="filename" c:type="gchar*"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="get_current_time" c:identifier="g_get_current_time" deprecated="1" deprecated-version="2.62">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16622">Equivalent to the UNIX gettimeofday() function, but portable.
|
|
|
|
You may find g_get_real_time() to be more convenient.</doc>
|
|
<doc-deprecated xml:space="preserve">#GTimeVal is not year-2038-safe. Use g_get_real_time()
|
|
instead.</doc-deprecated>
|
|
<source-position filename="gmain.h" line="575"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="result" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16624">#GTimeVal structure in which to store current time.</doc>
|
|
<type name="TimeVal" c:type="GTimeVal*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="get_environ" c:identifier="g_get_environ" version="2.28">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16635">Gets the list of environment variables for the current process.
|
|
|
|
The list is %NULL terminated and each item in the list is of the
|
|
form 'NAME=VALUE'.
|
|
|
|
This is equivalent to direct access to the 'environ' global variable,
|
|
except portable.
|
|
|
|
The return value is freshly allocated and it should be freed with
|
|
g_strfreev() when it is no longer needed.</doc>
|
|
<source-position filename="genviron.h" line="48"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16649">
|
|
the list of environment variables</doc>
|
|
<array c:type="gchar**">
|
|
<type name="filename"/>
|
|
</array>
|
|
</return-value>
|
|
</function>
|
|
<function name="get_filename_charsets" c:identifier="g_get_filename_charsets" version="2.6">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16655">Determines the preferred character sets used for filenames.
|
|
The first character set from the @charsets is the filename encoding, the
|
|
subsequent character sets are used when trying to generate a displayable
|
|
representation of a filename, see g_filename_display_name().
|
|
|
|
On Unix, the character sets are determined by consulting the
|
|
environment variables `G_FILENAME_ENCODING` and `G_BROKEN_FILENAMES`.
|
|
On Windows, the character set used in the GLib API is always UTF-8
|
|
and said environment variables have no effect.
|
|
|
|
`G_FILENAME_ENCODING` may be set to a comma-separated list of
|
|
character set names. The special token "\@locale" is taken
|
|
to mean the character set for the [current locale][setlocale].
|
|
If `G_FILENAME_ENCODING` is not set, but `G_BROKEN_FILENAMES` is,
|
|
the character set of the current locale is taken as the filename
|
|
encoding. If neither environment variable is set, UTF-8 is taken
|
|
as the filename encoding, but the character set of the current locale
|
|
is also put in the list of encodings.
|
|
|
|
The returned @charsets belong to GLib and must not be freed.
|
|
|
|
Note that on Unix, regardless of the locale character set or
|
|
`G_FILENAME_ENCODING` value, the actual file names present
|
|
on a system might be in any random encoding or just gibberish.</doc>
|
|
<source-position filename="gconvert.h" line="167"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16685">%TRUE if the filename encoding is UTF-8.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="filename_charsets" direction="out" caller-allocates="0" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16657">
|
|
return location for the %NULL-terminated list of encoding names</doc>
|
|
<array c:type="const gchar***">
|
|
<type name="utf8" c:type="gchar**"/>
|
|
</array>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="get_home_dir" c:identifier="g_get_home_dir">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16690">Gets the current user's home directory.
|
|
|
|
As with most UNIX tools, this function will return the value of the
|
|
`HOME` environment variable if it is set to an existing absolute path
|
|
name, falling back to the `passwd` file in the case that it is unset.
|
|
|
|
If the path given in `HOME` is non-absolute, does not exist, or is
|
|
not a directory, the result is undefined.
|
|
|
|
Before version 2.36 this function would ignore the `HOME` environment
|
|
variable, taking the value from the `passwd` database instead. This was
|
|
changed to increase the compatibility of GLib with other programs (and
|
|
the XDG basedir specification) and to increase testability of programs
|
|
based on GLib (by making it easier to run them from test frameworks).
|
|
|
|
If your program has a strong requirement for either the new or the
|
|
old behaviour (and if you don't wish to increase your GLib
|
|
dependency to ensure that the new behaviour is in effect) then you
|
|
should either directly check the `HOME` environment variable yourself
|
|
or unset it before calling any functions in GLib.</doc>
|
|
<source-position filename="gutils.h" line="55"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16714">the current user's home directory</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="get_host_name" c:identifier="g_get_host_name" version="2.8">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16718">Return a name for the machine.
|
|
|
|
The returned name is not necessarily a fully-qualified domain name,
|
|
or even present in DNS or some other name service at all. It need
|
|
not even be unique on your local network or site, but usually it
|
|
is. Callers should not rely on the return value having any specific
|
|
properties like uniqueness for security purposes. Even if the name
|
|
of the machine is changed while an application is running, the
|
|
return value from this function does not change. The returned
|
|
string is owned by GLib and should not be modified or freed. If no
|
|
name can be determined, a default fixed string "localhost" is
|
|
returned.
|
|
|
|
The encoding of the returned string is UTF-8.</doc>
|
|
<source-position filename="gutils.h" line="59"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16736">the host name of the machine.</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="get_language_names" c:identifier="g_get_language_names" version="2.6">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16741">Computes a list of applicable locale names, which can be used to
|
|
e.g. construct locale-dependent filenames or search paths. The returned
|
|
list is sorted from most desirable to least desirable and always contains
|
|
the default locale "C".
|
|
|
|
For example, if LANGUAGE=de:en_US, then the returned list is
|
|
"de", "en_US", "en", "C".
|
|
|
|
This function consults the environment variables `LANGUAGE`, `LC_ALL`,
|
|
`LC_MESSAGES` and `LANG` to find the list of locales specified by the
|
|
user.</doc>
|
|
<source-position filename="gcharset.h" line="38"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16756">a %NULL-terminated array of strings owned by GLib
|
|
that must not be modified or freed.</doc>
|
|
<array c:type="const gchar* const*">
|
|
<type name="utf8"/>
|
|
</array>
|
|
</return-value>
|
|
</function>
|
|
<function name="get_language_names_with_category" c:identifier="g_get_language_names_with_category" version="2.58">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16762">Computes a list of applicable locale names with a locale category name,
|
|
which can be used to construct the fallback locale-dependent filenames
|
|
or search paths. The returned list is sorted from most desirable to
|
|
least desirable and always contains the default locale "C".
|
|
|
|
This function consults the environment variables `LANGUAGE`, `LC_ALL`,
|
|
@category_name, and `LANG` to find the list of locales specified by the
|
|
user.
|
|
|
|
g_get_language_names() returns g_get_language_names_with_category("LC_MESSAGES").</doc>
|
|
<source-position filename="gcharset.h" line="40"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16777">a %NULL-terminated array of strings owned by
|
|
the thread g_get_language_names_with_category was called from.
|
|
It must not be modified or freed. It must be copied if planned to be used in another thread.</doc>
|
|
<array c:type="const gchar* const*">
|
|
<type name="utf8"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="category_name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16764">a locale category name</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="get_locale_variants" c:identifier="g_get_locale_variants" version="2.28">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16784">Returns a list of derived variants of @locale, which can be used to
|
|
e.g. construct locale-dependent filenames or search paths. The returned
|
|
list is sorted from most desirable to least desirable.
|
|
This function handles territory, charset and extra locale modifiers.
|
|
|
|
For example, if @locale is "fr_BE", then the returned list
|
|
is "fr_BE", "fr".
|
|
|
|
If you need the list of variants for the current locale,
|
|
use g_get_language_names().</doc>
|
|
<source-position filename="gcharset.h" line="43"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16799">a newly
|
|
allocated array of newly allocated strings with the locale variants. Free with
|
|
g_strfreev().</doc>
|
|
<array c:type="gchar**">
|
|
<type name="utf8"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="locale" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16786">a locale identifier</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="get_monotonic_time" c:identifier="g_get_monotonic_time" version="2.28">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16806">Queries the system monotonic time.
|
|
|
|
The monotonic clock will always increase and doesn't suffer
|
|
discontinuities when the user (or NTP) changes the system time. It
|
|
may or may not continue to tick during times where the machine is
|
|
suspended.
|
|
|
|
We try to use the clock that corresponds as closely as possible to
|
|
the passage of time as measured by system calls such as poll() but it
|
|
may not always be possible to do this.</doc>
|
|
<source-position filename="gmain.h" line="579"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16820">the monotonic time, in microseconds</doc>
|
|
<type name="gint64" c:type="gint64"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="get_num_processors" c:identifier="g_get_num_processors" version="2.36">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16825">Determine the approximate number of threads that the system will
|
|
schedule simultaneously for this process. This is intended to be
|
|
used as a parameter to g_thread_pool_new() for CPU bound tasks and
|
|
similar cases.</doc>
|
|
<source-position filename="gthread.h" line="268"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16833">Number of schedulable threads, always greater than 0</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="get_prgname" c:identifier="g_get_prgname">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16838">Gets the name of the program. This name should not be localized,
|
|
in contrast to g_get_application_name().
|
|
|
|
If you are using #GApplication the program name is set in
|
|
g_application_run(). In case of GDK or GTK+ it is set in
|
|
gdk_init(), which is called by gtk_init() and the
|
|
#GtkApplication::startup handler. The program name is found by
|
|
taking the last component of @argv[0].</doc>
|
|
<source-position filename="gutils.h" line="61"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16850">the name of the program, or %NULL if it has not been
|
|
set yet. The returned string belongs
|
|
to GLib and must not be modified or freed.</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="get_real_name" c:identifier="g_get_real_name">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16856">Gets the real name of the user. This usually comes from the user's
|
|
entry in the `passwd` file. The encoding of the returned string is
|
|
system-defined. (On Windows, it is, however, always UTF-8.) If the
|
|
real user name cannot be determined, the string "Unknown" is
|
|
returned.</doc>
|
|
<source-position filename="gutils.h" line="53"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16865">the user's real name.</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="get_real_time" c:identifier="g_get_real_time" version="2.28">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16869">Queries the system wall-clock time.
|
|
|
|
This call is functionally equivalent to g_get_current_time() except
|
|
that the return value is often more convenient than dealing with a
|
|
#GTimeVal.
|
|
|
|
You should only use this call if you are actually interested in the real
|
|
wall-clock time. g_get_monotonic_time() is probably more useful for
|
|
measuring intervals.</doc>
|
|
<source-position filename="gmain.h" line="581"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16882">the number of microseconds since January 1, 1970 UTC.</doc>
|
|
<type name="gint64" c:type="gint64"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="get_system_config_dirs" c:identifier="g_get_system_config_dirs" version="2.6">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16887">Returns an ordered list of base directories in which to access
|
|
system-wide configuration information.
|
|
|
|
On UNIX platforms this is determined using the mechanisms described
|
|
in the
|
|
[XDG Base Directory Specification](http://www.freedesktop.org/Standards/basedir-spec).
|
|
In this case the list of directories retrieved will be `XDG_CONFIG_DIRS`.
|
|
|
|
On Windows it follows XDG Base Directory Specification if `XDG_CONFIG_DIRS` is defined.
|
|
If `XDG_CONFIG_DIRS` is undefined, the directory that contains application
|
|
data for all users is used instead. A typical path is
|
|
`C:\Documents and Settings\All Users\Application Data`.
|
|
This folder is used for application data
|
|
that is not user specific. For example, an application can store
|
|
a spell-check dictionary, a database of clip art, or a log file in the
|
|
CSIDL_COMMON_APPDATA folder. This information will not roam and is available
|
|
to anyone using the computer.</doc>
|
|
<source-position filename="gutils.h" line="100"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16908">
|
|
a %NULL-terminated array of strings owned by GLib that must not be
|
|
modified or freed.</doc>
|
|
<array c:type="const gchar* const*">
|
|
<type name="filename"/>
|
|
</array>
|
|
</return-value>
|
|
</function>
|
|
<function name="get_system_data_dirs" c:identifier="g_get_system_data_dirs" version="2.6">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16915">Returns an ordered list of base directories in which to access
|
|
system-wide application data.
|
|
|
|
On UNIX platforms this is determined using the mechanisms described
|
|
in the
|
|
[XDG Base Directory Specification](http://www.freedesktop.org/Standards/basedir-spec)
|
|
In this case the list of directories retrieved will be `XDG_DATA_DIRS`.
|
|
|
|
On Windows it follows XDG Base Directory Specification if `XDG_DATA_DIRS` is defined.
|
|
If `XDG_DATA_DIRS` is undefined,
|
|
the first elements in the list are the Application Data
|
|
and Documents folders for All Users. (These can be determined only
|
|
on Windows 2000 or later and are not present in the list on other
|
|
Windows versions.) See documentation for CSIDL_COMMON_APPDATA and
|
|
CSIDL_COMMON_DOCUMENTS.
|
|
|
|
Then follows the "share" subfolder in the installation folder for
|
|
the package containing the DLL that calls this function, if it can
|
|
be determined.
|
|
|
|
Finally the list contains the "share" subfolder in the installation
|
|
folder for GLib, and in the installation folder for the package the
|
|
application's .exe file belongs to.
|
|
|
|
The installation folders above are determined by looking up the
|
|
folder where the module (DLL or EXE) in question is located. If the
|
|
folder's name is "bin", its parent is used, otherwise the folder
|
|
itself.
|
|
|
|
Note that on Windows the returned list can vary depending on where
|
|
this function is called.</doc>
|
|
<source-position filename="gutils.h" line="78"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16950">
|
|
a %NULL-terminated array of strings owned by GLib that must not be
|
|
modified or freed.</doc>
|
|
<array c:type="const gchar* const*">
|
|
<type name="filename"/>
|
|
</array>
|
|
</return-value>
|
|
</function>
|
|
<function name="get_tmp_dir" c:identifier="g_get_tmp_dir">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16957">Gets the directory to use for temporary files.
|
|
|
|
On UNIX, this is taken from the `TMPDIR` environment variable.
|
|
If the variable is not set, `P_tmpdir` is
|
|
used, as defined by the system C library. Failing that, a
|
|
hard-coded default of "/tmp" is returned.
|
|
|
|
On Windows, the `TEMP` environment variable is used, with the
|
|
root directory of the Windows installation (eg: "C:\") used
|
|
as a default.
|
|
|
|
The encoding of the returned string is system-defined. On Windows,
|
|
it is always UTF-8. The return value is never %NULL or the empty
|
|
string.</doc>
|
|
<source-position filename="gutils.h" line="57"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16975">the directory to use for temporary files.</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="get_user_cache_dir" c:identifier="g_get_user_cache_dir" version="2.6">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16979">Returns a base directory in which to store non-essential, cached
|
|
data specific to particular user.
|
|
|
|
On UNIX platforms this is determined using the mechanisms described
|
|
in the
|
|
[XDG Base Directory Specification](http://www.freedesktop.org/Standards/basedir-spec).
|
|
In this case the directory retrieved will be `XDG_CACHE_HOME`.
|
|
|
|
On Windows it follows XDG Base Directory Specification if `XDG_CACHE_HOME` is defined.
|
|
If `XDG_CACHE_HOME` is undefined, the directory that serves as a common
|
|
repository for temporary Internet files is used instead. A typical path is
|
|
`C:\Documents and Settings\username\Local Settings\Temporary Internet Files`.
|
|
See the [documentation for `CSIDL_INTERNET_CACHE`](https://msdn.microsoft.com/en-us/library/windows/desktop/bb762494%28v=vs.85%29.aspx#csidl_internet_cache).</doc>
|
|
<source-position filename="gutils.h" line="76"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="16996">a string owned by GLib that must not be modified
|
|
or freed.</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="get_user_config_dir" c:identifier="g_get_user_config_dir" version="2.6">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17002">Returns a base directory in which to store user-specific application
|
|
configuration information such as user preferences and settings.
|
|
|
|
On UNIX platforms this is determined using the mechanisms described
|
|
in the
|
|
[XDG Base Directory Specification](http://www.freedesktop.org/Standards/basedir-spec).
|
|
In this case the directory retrieved will be `XDG_CONFIG_HOME`.
|
|
|
|
On Windows it follows XDG Base Directory Specification if `XDG_CONFIG_HOME` is defined.
|
|
If `XDG_CONFIG_HOME` is undefined, the folder to use for local (as opposed
|
|
to roaming) application data is used instead. See the
|
|
[documentation for `CSIDL_LOCAL_APPDATA`](https://msdn.microsoft.com/en-us/library/windows/desktop/bb762494%28v=vs.85%29.aspx#csidl_local_appdata).
|
|
Note that in this case on Windows it will be the same
|
|
as what g_get_user_data_dir() returns.</doc>
|
|
<source-position filename="gutils.h" line="74"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17020">a string owned by GLib that must not be modified
|
|
or freed.</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="get_user_data_dir" c:identifier="g_get_user_data_dir" version="2.6">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17026">Returns a base directory in which to access application data such
|
|
as icons that is customized for a particular user.
|
|
|
|
On UNIX platforms this is determined using the mechanisms described
|
|
in the
|
|
[XDG Base Directory Specification](http://www.freedesktop.org/Standards/basedir-spec).
|
|
In this case the directory retrieved will be `XDG_DATA_HOME`.
|
|
|
|
On Windows it follows XDG Base Directory Specification if `XDG_DATA_HOME`
|
|
is defined. If `XDG_DATA_HOME` is undefined, the folder to use for local (as
|
|
opposed to roaming) application data is used instead. See the
|
|
[documentation for `CSIDL_LOCAL_APPDATA`](https://msdn.microsoft.com/en-us/library/windows/desktop/bb762494%28v=vs.85%29.aspx#csidl_local_appdata).
|
|
Note that in this case on Windows it will be the same
|
|
as what g_get_user_config_dir() returns.</doc>
|
|
<source-position filename="gutils.h" line="72"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17044">a string owned by GLib that must not be modified
|
|
or freed.</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="get_user_name" c:identifier="g_get_user_name">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17050">Gets the user name of the current user. The encoding of the returned
|
|
string is system-defined. On UNIX, it might be the preferred file name
|
|
encoding, or something else, and there is no guarantee that it is even
|
|
consistent on a machine. On Windows, it is always UTF-8.</doc>
|
|
<source-position filename="gutils.h" line="51"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17058">the user name of the current user.</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="get_user_runtime_dir" c:identifier="g_get_user_runtime_dir" version="2.28">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17062">Returns a directory that is unique to the current user on the local
|
|
system.
|
|
|
|
This is determined using the mechanisms described
|
|
in the
|
|
[XDG Base Directory Specification](http://www.freedesktop.org/Standards/basedir-spec).
|
|
This is the directory
|
|
specified in the `XDG_RUNTIME_DIR` environment variable.
|
|
In the case that this variable is not set, we return the value of
|
|
g_get_user_cache_dir(), after verifying that it exists.</doc>
|
|
<source-position filename="gutils.h" line="103"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17076">a string owned by GLib that must not be
|
|
modified or freed.</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="get_user_special_dir" c:identifier="g_get_user_special_dir" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17082">Returns the full path of a special directory using its logical id.
|
|
|
|
On UNIX this is done using the XDG special user directories.
|
|
For compatibility with existing practise, %G_USER_DIRECTORY_DESKTOP
|
|
falls back to `$HOME/Desktop` when XDG special user directories have
|
|
not been set up.
|
|
|
|
Depending on the platform, the user might be able to change the path
|
|
of the special directory without requiring the session to restart; GLib
|
|
will not reflect any change once the special directories are loaded.</doc>
|
|
<source-position filename="gutils.h" line="141"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17097">the path to the specified special directory, or
|
|
%NULL if the logical id was not found. The returned string is owned by
|
|
GLib and should not be modified or freed.</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="directory" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17084">the logical id of special directory</doc>
|
|
<type name="UserDirectory" c:type="GUserDirectory"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="getenv" c:identifier="g_getenv">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17104">Returns the value of an environment variable.
|
|
|
|
On UNIX, the name and value are byte strings which might or might not
|
|
be in some consistent character set and encoding. On Windows, they are
|
|
in UTF-8.
|
|
On Windows, in case the environment variable's value contains
|
|
references to other environment variables, they are expanded.</doc>
|
|
<source-position filename="genviron.h" line="37"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17116">the value of the environment variable, or %NULL if
|
|
the environment variable is not found. The returned string
|
|
may be overwritten by the next call to g_getenv(), g_setenv()
|
|
or g_unsetenv().</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="variable" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17106">the environment variable to get</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="hash_table_add" c:identifier="g_hash_table_add" moved-to="HashTable.add" version="2.32">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17123">This is a convenience function for using a #GHashTable as a set. It
|
|
is equivalent to calling g_hash_table_replace() with @key as both the
|
|
key and the value.
|
|
|
|
When a hash table only ever contains keys that have themselves as the
|
|
corresponding value it is able to be stored more efficiently. See
|
|
the discussion in the section description.
|
|
|
|
Starting from GLib 2.40, this function returns a boolean value to
|
|
indicate whether the newly added value was already in the hash table
|
|
or not.</doc>
|
|
<source-position filename="ghash.h" line="75"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17140">%TRUE if the key did not exist yet</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hash_table" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17125">a #GHashTable</doc>
|
|
<type name="GLib.HashTable" c:type="GHashTable*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="key" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17126">a key to insert</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="hash_table_contains" c:identifier="g_hash_table_contains" moved-to="HashTable.contains" version="2.32">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17145">Checks if @key is in @hash_table.</doc>
|
|
<source-position filename="ghash.h" line="96"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17152">%TRUE if @key is in @hash_table, %FALSE otherwise.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hash_table" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17147">a #GHashTable</doc>
|
|
<type name="GLib.HashTable" c:type="GHashTable*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="key" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17148">a key to check</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="hash_table_destroy" c:identifier="g_hash_table_destroy" moved-to="HashTable.destroy">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17157">Destroys all keys and values in the #GHashTable and decrements its
|
|
reference count by 1. If keys and/or values are dynamically allocated,
|
|
you should either free them first or create the #GHashTable with destroy
|
|
notifiers using g_hash_table_new_full(). In the latter case the destroy
|
|
functions you supplied will be called on all keys and values during the
|
|
destruction phase.</doc>
|
|
<source-position filename="ghash.h" line="65"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hash_table" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17159">a #GHashTable</doc>
|
|
<type name="GLib.HashTable" c:type="GHashTable*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function-macro name="hash_table_freeze" c:identifier="g_hash_table_freeze" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17252">This function is deprecated and will be removed in the next major
|
|
release of GLib. It does nothing.</doc>
|
|
<source-position filename="ghash.h" line="151"/>
|
|
<parameters>
|
|
<parameter name="hash_table">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17254">a #GHashTable</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function name="hash_table_insert" c:identifier="g_hash_table_insert" moved-to="HashTable.insert">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17328">Inserts a new key and value into a #GHashTable.
|
|
|
|
If the key already exists in the #GHashTable its current
|
|
value is replaced with the new value. If you supplied a
|
|
@value_destroy_func when creating the #GHashTable, the old
|
|
value is freed using that function. If you supplied a
|
|
@key_destroy_func when creating the #GHashTable, the passed
|
|
key is freed using that function.
|
|
|
|
Starting from GLib 2.40, this function returns a boolean value to
|
|
indicate whether the newly added value was already in the hash table
|
|
or not.</doc>
|
|
<source-position filename="ghash.h" line="67"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17347">%TRUE if the key did not exist yet</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hash_table" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17330">a #GHashTable</doc>
|
|
<type name="GLib.HashTable" c:type="GHashTable*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="key" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17331">a key to insert</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="value" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17332">the value to associate with the key</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="hash_table_lookup" c:identifier="g_hash_table_lookup" moved-to="HashTable.lookup">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17457">Looks up a key in a #GHashTable. Note that this function cannot
|
|
distinguish between a key that is not present and one which is present
|
|
and has the value %NULL. If you need this distinction, use
|
|
g_hash_table_lookup_extended().</doc>
|
|
<source-position filename="ghash.h" line="93"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17467">the associated value, or %NULL if the key is not found</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hash_table" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17459">a #GHashTable</doc>
|
|
<type name="GLib.HashTable" c:type="GHashTable*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="key" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17460">the key to look up</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="hash_table_lookup_extended" c:identifier="g_hash_table_lookup_extended" moved-to="HashTable.lookup_extended">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17471">Looks up a key in the #GHashTable, returning the original key and the
|
|
associated value and a #gboolean which is %TRUE if the key was found. This
|
|
is useful if you need to free the memory allocated for the original key,
|
|
for example before calling g_hash_table_remove().
|
|
|
|
You can actually pass %NULL for @lookup_key to test
|
|
whether the %NULL key exists, provided the hash and equal functions
|
|
of @hash_table are %NULL-safe.</doc>
|
|
<source-position filename="ghash.h" line="99"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17488">%TRUE if the key was found in the #GHashTable</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hash_table" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17473">a #GHashTable</doc>
|
|
<type name="GLib.HashTable" c:type="GHashTable*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="lookup_key" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17474">the key to look up</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
<parameter name="orig_key" direction="out" caller-allocates="0" transfer-ownership="full" nullable="1" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17475">return location for the original key</doc>
|
|
<type name="gpointer" c:type="gpointer*"/>
|
|
</parameter>
|
|
<parameter name="value" direction="out" caller-allocates="0" transfer-ownership="full" nullable="1" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17476">return location for the value associated
|
|
with the key</doc>
|
|
<type name="gpointer" c:type="gpointer*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="hash_table_remove" c:identifier="g_hash_table_remove" moved-to="HashTable.remove">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17557">Removes a key and its associated value from a #GHashTable.
|
|
|
|
If the #GHashTable was created using g_hash_table_new_full(), the
|
|
key and value are freed using the supplied destroy functions, otherwise
|
|
you have to make sure that any dynamically allocated values are freed
|
|
yourself.</doc>
|
|
<source-position filename="ghash.h" line="78"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17569">%TRUE if the key was found and removed from the #GHashTable</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hash_table" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17559">a #GHashTable</doc>
|
|
<type name="GLib.HashTable" c:type="GHashTable*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="key" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17560">the key to remove</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="hash_table_remove_all" c:identifier="g_hash_table_remove_all" moved-to="HashTable.remove_all" version="2.12">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17573">Removes all keys and their associated values from a #GHashTable.
|
|
|
|
If the #GHashTable was created using g_hash_table_new_full(),
|
|
the keys and values are freed using the supplied destroy functions,
|
|
otherwise you have to make sure that any dynamically allocated
|
|
values are freed yourself.</doc>
|
|
<source-position filename="ghash.h" line="81"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hash_table" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17575">a #GHashTable</doc>
|
|
<type name="GLib.HashTable" c:type="GHashTable*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="hash_table_replace" c:identifier="g_hash_table_replace" moved-to="HashTable.replace">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17588">Inserts a new key and value into a #GHashTable similar to
|
|
g_hash_table_insert(). The difference is that if the key
|
|
already exists in the #GHashTable, it gets replaced by the
|
|
new key. If you supplied a @value_destroy_func when creating
|
|
the #GHashTable, the old value is freed using that function.
|
|
If you supplied a @key_destroy_func when creating the
|
|
#GHashTable, the old key is freed using that function.
|
|
|
|
Starting from GLib 2.40, this function returns a boolean value to
|
|
indicate whether the newly added value was already in the hash table
|
|
or not.</doc>
|
|
<source-position filename="ghash.h" line="71"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17606">%TRUE if the key did not exist yet</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hash_table" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17590">a #GHashTable</doc>
|
|
<type name="GLib.HashTable" c:type="GHashTable*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="key" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17591">a key to insert</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="value" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17592">the value to associate with the key</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="hash_table_size" c:identifier="g_hash_table_size" moved-to="HashTable.size">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17610">Returns the number of elements contained in the #GHashTable.</doc>
|
|
<source-position filename="ghash.h" line="120"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17616">the number of key/value pairs in the #GHashTable.</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hash_table" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17612">a #GHashTable</doc>
|
|
<type name="GLib.HashTable" c:type="GHashTable*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="hash_table_steal" c:identifier="g_hash_table_steal" moved-to="HashTable.steal">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17620">Removes a key and its associated value from a #GHashTable without
|
|
calling the key and value destroy functions.</doc>
|
|
<source-position filename="ghash.h" line="83"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17628">%TRUE if the key was found and removed from the #GHashTable</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hash_table" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17622">a #GHashTable</doc>
|
|
<type name="GLib.HashTable" c:type="GHashTable*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="key" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17623">the key to remove</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="hash_table_steal_all" c:identifier="g_hash_table_steal_all" moved-to="HashTable.steal_all" version="2.12">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17632">Removes all keys and their associated values from a #GHashTable
|
|
without calling the key and value destroy functions.</doc>
|
|
<source-position filename="ghash.h" line="91"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hash_table" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17634">a #GHashTable</doc>
|
|
<type name="GLib.HashTable" c:type="GHashTable*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="hash_table_steal_extended" c:identifier="g_hash_table_steal_extended" moved-to="HashTable.steal_extended" version="2.58">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17643">Looks up a key in the #GHashTable, stealing the original key and the
|
|
associated value and returning %TRUE if the key was found. If the key was
|
|
not found, %FALSE is returned.
|
|
|
|
If found, the stolen key and value are removed from the hash table without
|
|
calling the key and value destroy functions, and ownership is transferred to
|
|
the caller of this method; as with g_hash_table_steal().
|
|
|
|
You can pass %NULL for @lookup_key, provided the hash and equal functions
|
|
of @hash_table are %NULL-safe.</doc>
|
|
<source-position filename="ghash.h" line="86"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17663">%TRUE if the key was found in the #GHashTable</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hash_table" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17645">a #GHashTable</doc>
|
|
<type name="GLib.HashTable" c:type="GHashTable*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
<parameter name="lookup_key" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17646">the key to look up</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
<parameter name="stolen_key" direction="out" caller-allocates="0" transfer-ownership="full" nullable="1" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17647">return location for the
|
|
original key</doc>
|
|
<type name="gpointer" c:type="gpointer*"/>
|
|
</parameter>
|
|
<parameter name="stolen_value" direction="out" caller-allocates="0" transfer-ownership="full" nullable="1" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17649">return location
|
|
for the value associated with the key</doc>
|
|
<type name="gpointer" c:type="gpointer*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function-macro name="hash_table_thaw" c:identifier="g_hash_table_thaw" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17668">This function is deprecated and will be removed in the next major
|
|
release of GLib. It does nothing.</doc>
|
|
<source-position filename="ghash.h" line="152"/>
|
|
<parameters>
|
|
<parameter name="hash_table">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17670">a #GHashTable</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function name="hash_table_unref" c:identifier="g_hash_table_unref" moved-to="HashTable.unref" version="2.10">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17677">Atomically decrements the reference count of @hash_table by one.
|
|
If the reference count drops to 0, all keys and values will be
|
|
destroyed, and all memory allocated by the hash table is released.
|
|
This function is MT-safe and may be called from any thread.</doc>
|
|
<source-position filename="ghash.h" line="149"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hash_table" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17679">a valid #GHashTable</doc>
|
|
<type name="GLib.HashTable" c:type="GHashTable*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</type>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function-macro name="hook_append" c:identifier="g_hook_append" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17821">Appends a #GHook onto the end of a #GHookList.</doc>
|
|
<source-position filename="ghook.h" line="174"/>
|
|
<parameters>
|
|
<parameter name="hook_list">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17823">a #GHookList</doc>
|
|
</parameter>
|
|
<parameter name="hook">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17824">the #GHook to add to the end of @hook_list</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function name="hook_destroy" c:identifier="g_hook_destroy" moved-to="Hook.destroy">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17842">Destroys a #GHook, given its ID.</doc>
|
|
<source-position filename="ghook.h" line="121"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17849">%TRUE if the #GHook was found in the #GHookList and destroyed</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hook_list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17844">a #GHookList</doc>
|
|
<type name="HookList" c:type="GHookList*"/>
|
|
</parameter>
|
|
<parameter name="hook_id" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17845">a hook ID</doc>
|
|
<type name="gulong" c:type="gulong"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="hook_destroy_link" c:identifier="g_hook_destroy_link" moved-to="Hook.destroy_link">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17853">Removes one #GHook from a #GHookList, marking it
|
|
inactive and calling g_hook_unref() on it.</doc>
|
|
<source-position filename="ghook.h" line="124"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hook_list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17855">a #GHookList</doc>
|
|
<type name="HookList" c:type="GHookList*"/>
|
|
</parameter>
|
|
<parameter name="hook" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17856">the #GHook to remove</doc>
|
|
<type name="Hook" c:type="GHook*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="hook_free" c:identifier="g_hook_free" moved-to="Hook.free">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17938">Calls the #GHookList @finalize_hook function if it exists,
|
|
and frees the memory allocated for the #GHook.</doc>
|
|
<source-position filename="ghook.h" line="112"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hook_list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17940">a #GHookList</doc>
|
|
<type name="HookList" c:type="GHookList*"/>
|
|
</parameter>
|
|
<parameter name="hook" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17941">the #GHook to free</doc>
|
|
<type name="Hook" c:type="GHook*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="hook_insert_before" c:identifier="g_hook_insert_before" moved-to="Hook.insert_before">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17959">Inserts a #GHook into a #GHookList, before a given #GHook.</doc>
|
|
<source-position filename="ghook.h" line="130"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hook_list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17961">a #GHookList</doc>
|
|
<type name="HookList" c:type="GHookList*"/>
|
|
</parameter>
|
|
<parameter name="sibling" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17962">the #GHook to insert the new #GHook before</doc>
|
|
<type name="Hook" c:type="GHook*"/>
|
|
</parameter>
|
|
<parameter name="hook" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="17963">the #GHook to insert</doc>
|
|
<type name="Hook" c:type="GHook*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="hook_prepend" c:identifier="g_hook_prepend" moved-to="Hook.prepend">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18065">Prepends a #GHook on the start of a #GHookList.</doc>
|
|
<source-position filename="ghook.h" line="127"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hook_list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18067">a #GHookList</doc>
|
|
<type name="HookList" c:type="GHookList*"/>
|
|
</parameter>
|
|
<parameter name="hook" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18068">the #GHook to add to the start of @hook_list</doc>
|
|
<type name="Hook" c:type="GHook*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="hook_unref" c:identifier="g_hook_unref" moved-to="Hook.unref">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18085">Decrements the reference count of a #GHook.
|
|
If the reference count falls to 0, the #GHook is removed
|
|
from the #GHookList and g_hook_free() is called to free it.</doc>
|
|
<source-position filename="ghook.h" line="118"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hook_list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18087">a #GHookList</doc>
|
|
<type name="HookList" c:type="GHookList*"/>
|
|
</parameter>
|
|
<parameter name="hook" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18088">the #GHook to unref</doc>
|
|
<type name="Hook" c:type="GHook*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="hostname_is_ascii_encoded" c:identifier="g_hostname_is_ascii_encoded" version="2.22">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18096">Tests if @hostname contains segments with an ASCII-compatible
|
|
encoding of an Internationalized Domain Name. If this returns
|
|
%TRUE, you should decode the hostname with g_hostname_to_unicode()
|
|
before displaying it to the user.
|
|
|
|
Note that a hostname might contain a mix of encoded and unencoded
|
|
segments, and so it is possible for g_hostname_is_non_ascii() and
|
|
g_hostname_is_ascii_encoded() to both return %TRUE for a name.</doc>
|
|
<source-position filename="ghostutils.h" line="32"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18109">%TRUE if @hostname contains any ASCII-encoded
|
|
segments.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hostname" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18098">a hostname</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="hostname_is_ip_address" c:identifier="g_hostname_is_ip_address" version="2.22">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18115">Tests if @hostname is the string form of an IPv4 or IPv6 address.
|
|
(Eg, "192.168.0.1".)</doc>
|
|
<source-position filename="ghostutils.h" line="34"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18122">%TRUE if @hostname is an IP address</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hostname" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18117">a hostname (or IP address in string form)</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="hostname_is_non_ascii" c:identifier="g_hostname_is_non_ascii" version="2.22">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18127">Tests if @hostname contains Unicode characters. If this returns
|
|
%TRUE, you need to encode the hostname with g_hostname_to_ascii()
|
|
before using it in non-IDN-aware contexts.
|
|
|
|
Note that a hostname might contain a mix of encoded and unencoded
|
|
segments, and so it is possible for g_hostname_is_non_ascii() and
|
|
g_hostname_is_ascii_encoded() to both return %TRUE for a name.</doc>
|
|
<source-position filename="ghostutils.h" line="30"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18139">%TRUE if @hostname contains any non-ASCII characters</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hostname" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18129">a hostname</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="hostname_to_ascii" c:identifier="g_hostname_to_ascii" version="2.22">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18144">Converts @hostname to its canonical ASCII form; an ASCII-only
|
|
string containing no uppercase letters and not ending with a
|
|
trailing dot.</doc>
|
|
<source-position filename="ghostutils.h" line="37"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18152">an ASCII hostname, which must be freed, or %NULL if
|
|
@hostname is in some way invalid.</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hostname" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18146">a valid UTF-8 or ASCII hostname</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="hostname_to_unicode" c:identifier="g_hostname_to_unicode" version="2.22">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18158">Converts @hostname to its canonical presentation form; a UTF-8
|
|
string in Unicode normalization form C, containing no uppercase
|
|
letters, no forbidden characters, and no ASCII-encoded segments,
|
|
and not ending with a trailing dot.
|
|
|
|
Of course if @hostname is not an internationalized hostname, then
|
|
the canonical presentation form will be entirely ASCII.</doc>
|
|
<source-position filename="ghostutils.h" line="39"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18170">a UTF-8 hostname, which must be freed, or %NULL if
|
|
@hostname is in some way invalid.</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="hostname" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18160">a valid UTF-8 or ASCII hostname</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function-macro name="htonl" c:identifier="g_htonl" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18176">Converts a 32-bit integer value from host to network byte order.</doc>
|
|
<source-position filename="gtypes.h" line="418"/>
|
|
<parameters>
|
|
<parameter name="val">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18178">a 32-bit integer value in host byte order</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="htons" c:identifier="g_htons" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18186">Converts a 16-bit integer value from host to network byte order.</doc>
|
|
<source-position filename="gtypes.h" line="419"/>
|
|
<parameters>
|
|
<parameter name="val">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18188">a 16-bit integer value in host byte order</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function name="iconv" c:identifier="g_iconv" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18196">Same as the standard UNIX routine iconv(), but
|
|
may be implemented via libiconv on UNIX flavors that lack
|
|
a native implementation.
|
|
|
|
GLib provides g_convert() and g_locale_to_utf8() which are likely
|
|
more convenient than the raw iconv wrappers.
|
|
|
|
Note that the behaviour of iconv() for characters which are valid in the
|
|
input character set, but which have no representation in the output character
|
|
set, is implementation defined. This function may return success (with a
|
|
positive number of non-reversible conversions as replacement characters were
|
|
used), or it may return -1 and set an error such as %EILSEQ, in such a
|
|
situation.</doc>
|
|
<source-position filename="gconvert.h" line="89"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18218">count of non-reversible conversions, or -1 on error</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="converter" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18198">conversion descriptor from g_iconv_open()</doc>
|
|
<type name="IConv" c:type="GIConv"/>
|
|
</parameter>
|
|
<parameter name="inbuf" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18199">bytes to convert</doc>
|
|
<type name="utf8" c:type="gchar**"/>
|
|
</parameter>
|
|
<parameter name="inbytes_left" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18200">inout parameter, bytes remaining to convert in @inbuf</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
<parameter name="outbuf" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18201">converted output bytes</doc>
|
|
<type name="utf8" c:type="gchar**"/>
|
|
</parameter>
|
|
<parameter name="outbytes_left" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18202">inout parameter, bytes available to fill in @outbuf</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="iconv_open" c:identifier="g_iconv_open" moved-to="IConv.open" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18239">Same as the standard UNIX routine iconv_open(), but
|
|
may be implemented via libiconv on UNIX flavors that lack
|
|
a native implementation.
|
|
|
|
GLib provides g_convert() and g_locale_to_utf8() which are likely
|
|
more convenient than the raw iconv wrappers.</doc>
|
|
<source-position filename="gconvert.h" line="86"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18251">a "conversion descriptor", or (GIConv)-1 if
|
|
opening the converter failed.</doc>
|
|
<type name="IConv" c:type="GIConv"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="to_codeset" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18241">destination codeset</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="from_codeset" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18242">source codeset</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="idle_add" c:identifier="g_idle_add" shadowed-by="idle_add_full" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18256">Adds a function to be called whenever there are no higher priority
|
|
events pending to the default main loop. The function is given the
|
|
default idle priority, #G_PRIORITY_DEFAULT_IDLE. If the function
|
|
returns %FALSE it is automatically removed from the list of event
|
|
sources and will not be called again.
|
|
|
|
See [memory management of sources][mainloop-memory-management] for details
|
|
on how to handle the return value and memory management of @data.
|
|
|
|
This internally creates a main loop source using g_idle_source_new()
|
|
and attaches it to the global #GMainContext using g_source_attach(), so
|
|
the callback will be invoked in whichever thread is running that main
|
|
context. You can do these steps manually if you need greater control or to
|
|
use a custom main context.</doc>
|
|
<source-position filename="gmain.h" line="657"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18276">the ID (greater than 0) of the event source.</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="function" transfer-ownership="none" closure="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18258">function to call</doc>
|
|
<type name="SourceFunc" c:type="GSourceFunc"/>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18259">data to pass to @function.</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="idle_add_full" c:identifier="g_idle_add_full" shadows="idle_add">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18280">Adds a function to be called whenever there are no higher priority
|
|
events pending. If the function returns %FALSE it is automatically
|
|
removed from the list of event sources and will not be called again.
|
|
|
|
See [memory management of sources][mainloop-memory-management] for details
|
|
on how to handle the return value and memory management of @data.
|
|
|
|
This internally creates a main loop source using g_idle_source_new()
|
|
and attaches it to the global #GMainContext using g_source_attach(), so
|
|
the callback will be invoked in whichever thread is running that main
|
|
context. You can do these steps manually if you need greater control or to
|
|
use a custom main context.</doc>
|
|
<source-position filename="gmain.h" line="660"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18301">the ID (greater than 0) of the event source.</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="priority" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18282">the priority of the idle source. Typically this will be in the
|
|
range between #G_PRIORITY_DEFAULT_IDLE and #G_PRIORITY_HIGH_IDLE.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="function" transfer-ownership="none" scope="notified" closure="2" destroy="3">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18284">function to call</doc>
|
|
<type name="SourceFunc" c:type="GSourceFunc"/>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18285">data to pass to @function</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="notify" transfer-ownership="none" nullable="1" allow-none="1" scope="async">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18286">function to call when the idle is removed, or %NULL</doc>
|
|
<type name="DestroyNotify" c:type="GDestroyNotify"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="idle_remove_by_data" c:identifier="g_idle_remove_by_data">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18305">Removes the idle function with the given data.</doc>
|
|
<source-position filename="gmain.h" line="665"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18311">%TRUE if an idle source was found and removed.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18307">the data for the idle source's callback.</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="idle_source_new" c:identifier="g_idle_source_new">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18315">Creates a new idle source.
|
|
|
|
The source will not initially be associated with any #GMainContext
|
|
and must be added to one with g_source_attach() before it will be
|
|
executed. Note that the default priority for idle sources is
|
|
%G_PRIORITY_DEFAULT_IDLE, as compared to other sources which
|
|
have a default priority of %G_PRIORITY_DEFAULT.</doc>
|
|
<source-position filename="gmain.h" line="563"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18326">the newly-created idle source</doc>
|
|
<type name="Source" c:type="GSource*"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="int64_equal" c:identifier="g_int64_equal" version="2.22">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18353">Compares the two #gint64 values being pointed to and returns
|
|
%TRUE if they are equal.
|
|
It can be passed to g_hash_table_new() as the @key_equal_func
|
|
parameter, when using non-%NULL pointers to 64-bit integers as keys in a
|
|
#GHashTable.</doc>
|
|
<source-position filename="ghash.h" line="169"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18364">%TRUE if the two keys match.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="v1" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18355">a pointer to a #gint64 key</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
<parameter name="v2" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18356">a pointer to a #gint64 key to compare with @v1</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="int64_hash" c:identifier="g_int64_hash" version="2.22">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18369">Converts a pointer to a #gint64 to a hash value.
|
|
|
|
It can be passed to g_hash_table_new() as the @hash_func parameter,
|
|
when using non-%NULL pointers to 64-bit integer values as keys in a
|
|
#GHashTable.</doc>
|
|
<source-position filename="ghash.h" line="172"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18379">a hash value corresponding to the key.</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="v" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18371">a pointer to a #gint64 key</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="int_equal" c:identifier="g_int_equal">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18384">Compares the two #gint values being pointed to and returns
|
|
%TRUE if they are equal.
|
|
It can be passed to g_hash_table_new() as the @key_equal_func
|
|
parameter, when using non-%NULL pointers to integers as keys in a
|
|
#GHashTable.
|
|
|
|
Note that this function acts on pointers to #gint, not on #gint
|
|
directly: if your hash table's keys are of the form
|
|
`GINT_TO_POINTER (n)`, use g_direct_equal() instead.</doc>
|
|
<source-position filename="ghash.h" line="163"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18399">%TRUE if the two keys match.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="v1" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18386">a pointer to a #gint key</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
<parameter name="v2" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18387">a pointer to a #gint key to compare with @v1</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="int_hash" c:identifier="g_int_hash">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18403">Converts a pointer to a #gint to a hash value.
|
|
It can be passed to g_hash_table_new() as the @hash_func parameter,
|
|
when using non-%NULL pointers to integer values as keys in a #GHashTable.
|
|
|
|
Note that this function acts on pointers to #gint, not on #gint
|
|
directly: if your hash table's keys are of the form
|
|
`GINT_TO_POINTER (n)`, use g_direct_hash() instead.</doc>
|
|
<source-position filename="ghash.h" line="166"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18415">a hash value corresponding to the key.</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="v" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18405">a pointer to a #gint key</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="intern_static_string" c:identifier="g_intern_static_string" version="2.10">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18419">Returns a canonical representation for @string. Interned strings
|
|
can be compared for equality by comparing the pointers, instead of
|
|
using strcmp(). g_intern_static_string() does not copy the string,
|
|
therefore @string must not be freed or modified.
|
|
|
|
This function must not be used before library constructors have finished
|
|
running. In particular, this means it cannot be used to initialize global
|
|
variables in C++.</doc>
|
|
<source-position filename="gquark.h" line="64"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18432">a canonical representation for the string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="string" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18421">a static string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="intern_string" c:identifier="g_intern_string" version="2.10">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18437">Returns a canonical representation for @string. Interned strings
|
|
can be compared for equality by comparing the pointers, instead of
|
|
using strcmp().
|
|
|
|
This function must not be used before library constructors have finished
|
|
running. In particular, this means it cannot be used to initialize global
|
|
variables in C++.</doc>
|
|
<source-position filename="gquark.h" line="62"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18449">a canonical representation for the string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="string" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18439">a string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="io_add_watch" c:identifier="g_io_add_watch" shadowed-by="io_add_watch_full" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18454">Adds the #GIOChannel into the default main loop context
|
|
with the default priority.</doc>
|
|
<source-position filename="giochannel.h" line="200"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18464">the event source id</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="channel" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18456">a #GIOChannel</doc>
|
|
<type name="IOChannel" c:type="GIOChannel*"/>
|
|
</parameter>
|
|
<parameter name="condition" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18457">the condition to watch for</doc>
|
|
<type name="IOCondition" c:type="GIOCondition"/>
|
|
</parameter>
|
|
<parameter name="func" transfer-ownership="none" closure="3">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18458">the function to call when the condition is satisfied</doc>
|
|
<type name="IOFunc" c:type="GIOFunc"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18459">user data to pass to @func</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="io_add_watch_full" c:identifier="g_io_add_watch_full" shadows="io_add_watch">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18468">Adds the #GIOChannel into the default main loop context
|
|
with the given priority.
|
|
|
|
This internally creates a main loop source using g_io_create_watch()
|
|
and attaches it to the main loop context with g_source_attach().
|
|
You can do these steps manually if you need greater control.</doc>
|
|
<source-position filename="giochannel.h" line="190"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18484">the event source id</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="channel" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18470">a #GIOChannel</doc>
|
|
<type name="IOChannel" c:type="GIOChannel*"/>
|
|
</parameter>
|
|
<parameter name="priority" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18471">the priority of the #GIOChannel source</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="condition" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18472">the condition to watch for</doc>
|
|
<type name="IOCondition" c:type="GIOCondition"/>
|
|
</parameter>
|
|
<parameter name="func" transfer-ownership="none" scope="notified" closure="4" destroy="5">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18473">the function to call when the condition is satisfied</doc>
|
|
<type name="IOFunc" c:type="GIOFunc"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18474">user data to pass to @func</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="notify" transfer-ownership="none" scope="async">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18475">the function to call when the source is removed</doc>
|
|
<type name="DestroyNotify" c:type="GDestroyNotify"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="io_channel_error_from_errno" c:identifier="g_io_channel_error_from_errno" moved-to="IOChannel.error_from_errno">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18500">Converts an `errno` error number to a #GIOChannelError.</doc>
|
|
<source-position filename="giochannel.h" line="300"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18506">a #GIOChannelError error number, e.g.
|
|
%G_IO_CHANNEL_ERROR_INVAL.</doc>
|
|
<type name="IOChannelError" c:type="GIOChannelError"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="en" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="18502">an `errno` error number, e.g. `EINVAL`</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="io_channel_error_quark" c:identifier="g_io_channel_error_quark" moved-to="IOChannel.error_quark">
|
|
<return-value transfer-ownership="none">
|
|
<type name="Quark" c:type="GQuark"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="io_create_watch" c:identifier="g_io_create_watch">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19096">Creates a #GSource that's dispatched when @condition is met for the
|
|
given @channel. For example, if condition is #G_IO_IN, the source will
|
|
be dispatched when there's data available for reading.
|
|
|
|
g_io_add_watch() is a simpler interface to this same functionality, for
|
|
the case where you want to add the source to the default main loop context
|
|
at the default priority.
|
|
|
|
On Windows, polling a #GSource created to watch a channel for a socket
|
|
puts the socket in non-blocking mode. This is a side-effect of the
|
|
implementation and unavoidable.</doc>
|
|
<source-position filename="giochannel.h" line="197"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19113">a new #GSource</doc>
|
|
<type name="Source" c:type="GSource*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="channel" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19098">a #GIOChannel to watch</doc>
|
|
<type name="IOChannel" c:type="GIOChannel*"/>
|
|
</parameter>
|
|
<parameter name="condition" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="19099">conditions to watch for</doc>
|
|
<type name="IOCondition" c:type="GIOCondition"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="key_file_error_quark" c:identifier="g_key_file_error_quark" moved-to="KeyFile.error_quark">
|
|
<return-value transfer-ownership="none">
|
|
<type name="Quark" c:type="GQuark"/>
|
|
</return-value>
|
|
</function>
|
|
<function-macro name="list_next" c:identifier="g_list_next" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20344">A convenience macro to get the next element in a #GList.
|
|
Note that it is considered perfectly acceptable to access
|
|
@list->next directly.</doc>
|
|
<source-position filename="glist.h" line="152"/>
|
|
<parameters>
|
|
<parameter name="list">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20346">an element in a #GList</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="list_previous" c:identifier="g_list_previous" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20439">A convenience macro to get the previous element in a #GList.
|
|
Note that it is considered perfectly acceptable to access
|
|
@list->prev directly.</doc>
|
|
<source-position filename="glist.h" line="151"/>
|
|
<parameters>
|
|
<parameter name="list">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20441">an element in a #GList</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function name="listenv" c:identifier="g_listenv" version="2.8">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20541">Gets the names of all variables set in the environment.
|
|
|
|
Programs that want to be portable to Windows should typically use
|
|
this function and g_getenv() instead of using the environ array
|
|
from the C library directly. On Windows, the strings in the environ
|
|
array are in system codepage encoding, while in most of the typical
|
|
use cases for environment variables in GLib-using programs you want
|
|
the UTF-8 encoding that this function and g_getenv() provide.</doc>
|
|
<source-position filename="genviron.h" line="45"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20553">
|
|
a %NULL-terminated list of strings which must be freed with
|
|
g_strfreev().</doc>
|
|
<array c:type="gchar**">
|
|
<type name="filename"/>
|
|
</array>
|
|
</return-value>
|
|
</function>
|
|
<function name="locale_from_utf8" c:identifier="g_locale_from_utf8" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20560">Converts a string from UTF-8 to the encoding used for strings by
|
|
the C runtime (usually the same as that used by the operating
|
|
system) in the [current locale][setlocale]. On Windows this means
|
|
the system codepage.
|
|
|
|
The input string shall not contain nul characters even if the @len
|
|
argument is positive. A nul character found inside the string will result
|
|
in error %G_CONVERT_ERROR_ILLEGAL_SEQUENCE. Use g_convert() to convert
|
|
input that may contain embedded nul characters.</doc>
|
|
<source-position filename="gconvert.h" line="133"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20588">
|
|
A newly-allocated buffer containing the converted string,
|
|
or %NULL on an error, and error will be set.</doc>
|
|
<array length="3" zero-terminated="0" c:type="gchar*">
|
|
<type name="guint8"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="utf8string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20562">a UTF-8 encoded string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20563">the length of the string, or -1 if the string is
|
|
nul-terminated.</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
<parameter name="bytes_read" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20565">location to store the number of bytes in the
|
|
input string that were successfully converted, or %NULL.
|
|
Even if the conversion was successful, this may be
|
|
less than @len if there were partial characters
|
|
at the end of the input. If the error
|
|
%G_CONVERT_ERROR_ILLEGAL_SEQUENCE occurs, the value
|
|
stored will be the byte offset after the last valid
|
|
input sequence.</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
<parameter name="bytes_written" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20573">the number of bytes stored in the output
|
|
buffer (not including the terminating nul).</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="locale_to_utf8" c:identifier="g_locale_to_utf8" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20594">Converts a string which is in the encoding used for strings by
|
|
the C runtime (usually the same as that used by the operating
|
|
system) in the [current locale][setlocale] into a UTF-8 string.
|
|
|
|
If the source encoding is not UTF-8 and the conversion output contains a
|
|
nul character, the error %G_CONVERT_ERROR_EMBEDDED_NUL is set and the
|
|
function returns %NULL.
|
|
If the source encoding is UTF-8, an embedded nul character is treated with
|
|
the %G_CONVERT_ERROR_ILLEGAL_SEQUENCE error for backward compatibility with
|
|
earlier versions of this library. Use g_convert() to produce output that
|
|
may contain embedded nul characters.</doc>
|
|
<source-position filename="gconvert.h" line="127"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20628">The converted string, or %NULL on an error.</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="opsysstring" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20596">a string in the
|
|
encoding of the current locale. On Windows
|
|
this means the system codepage.</doc>
|
|
<array length="1" zero-terminated="0" c:type="const gchar*">
|
|
<type name="guint8"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20599">the length of the string, or -1 if the string is
|
|
nul-terminated (Note that some encodings may allow nul
|
|
bytes to occur inside strings. In that case, using -1
|
|
for the @len parameter is unsafe)</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
<parameter name="bytes_read" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20603">location to store the number of bytes in the
|
|
input string that were successfully converted, or %NULL.
|
|
Even if the conversion was successful, this may be
|
|
less than @len if there were partial characters
|
|
at the end of the input. If the error
|
|
%G_CONVERT_ERROR_ILLEGAL_SEQUENCE occurs, the value
|
|
stored will be the byte offset after the last valid
|
|
input sequence.</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
<parameter name="bytes_written" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20611">the number of bytes stored in the output
|
|
buffer (not including the terminating nul).</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="log" c:identifier="g_log" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20632">Logs an error or debugging message.
|
|
|
|
If the log level has been set as fatal, G_BREAKPOINT() is called
|
|
to terminate the program. See the documentation for G_BREAKPOINT() for
|
|
details of the debugging options this provides.
|
|
|
|
If g_log_default_handler() is used as the log handler function, a new-line
|
|
character will automatically be appended to @..., and need not be entered
|
|
manually.
|
|
|
|
If [structured logging is enabled][using-structured-logging] this will
|
|
output via the structured log writer function (see g_log_set_writer_func()).</doc>
|
|
<source-position filename="gmessages.h" line="102"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="log_domain" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20634">the log domain, usually #G_LOG_DOMAIN, or %NULL
|
|
for the default</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="log_level" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20636">the log level, either from #GLogLevelFlags
|
|
or a user-defined level</doc>
|
|
<type name="LogLevelFlags" c:type="GLogLevelFlags"/>
|
|
</parameter>
|
|
<parameter name="format" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20638">the message format. See the printf() documentation</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="..." transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20639">the parameters to insert into the format string</doc>
|
|
<varargs/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="log_default_handler" c:identifier="g_log_default_handler">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20656">The default log handler set up by GLib; g_log_set_default_handler()
|
|
allows to install an alternate default log handler.
|
|
This is used if no log handler has been set for the particular log
|
|
domain and log level combination. It outputs the message to stderr
|
|
or stdout and if the log level is fatal it calls G_BREAKPOINT(). It automatically
|
|
prints a new-line character after the message, so one does not need to be
|
|
manually included in @message.
|
|
|
|
The behavior of this log handler can be influenced by a number of
|
|
environment variables:
|
|
|
|
- `G_MESSAGES_PREFIXED`: A :-separated list of log levels for which
|
|
messages should be prefixed by the program name and PID of the
|
|
aplication.
|
|
|
|
- `G_MESSAGES_DEBUG`: A space-separated list of log domains for
|
|
which debug and informational messages are printed. By default
|
|
these messages are not printed.
|
|
|
|
stderr is used for levels %G_LOG_LEVEL_ERROR, %G_LOG_LEVEL_CRITICAL,
|
|
%G_LOG_LEVEL_WARNING and %G_LOG_LEVEL_MESSAGE. stdout is used for
|
|
the rest.
|
|
|
|
This has no effect if structured logging is enabled; see
|
|
[Using Structured Logging][using-structured-logging].</doc>
|
|
<source-position filename="gmessages.h" line="94"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="log_domain" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20658">the log domain of the message, or %NULL for the
|
|
default "" application domain</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="log_level" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20660">the level of the message</doc>
|
|
<type name="LogLevelFlags" c:type="GLogLevelFlags"/>
|
|
</parameter>
|
|
<parameter name="message" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20661">the message</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="unused_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20662">data passed from g_log() which is unused</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="log_remove_handler" c:identifier="g_log_remove_handler">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20692">Removes the log handler.
|
|
|
|
This has no effect if structured logging is enabled; see
|
|
[Using Structured Logging][using-structured-logging].</doc>
|
|
<source-position filename="gmessages.h" line="91"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="log_domain" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20694">the log domain</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="handler_id" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20695">the id of the handler, which was returned
|
|
in g_log_set_handler()</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="log_set_always_fatal" c:identifier="g_log_set_always_fatal">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20705">Sets the message levels which are always fatal, in any log domain.
|
|
When a message with any of these levels is logged the program terminates.
|
|
You can only set the levels defined by GLib to be fatal.
|
|
%G_LOG_LEVEL_ERROR is always fatal.
|
|
|
|
You can also make some message levels fatal at runtime by setting
|
|
the `G_DEBUG` environment variable (see
|
|
[Running GLib Applications](glib-running.html)).
|
|
|
|
Libraries should not call this function, as it affects all messages logged
|
|
by a process, including those from other libraries.
|
|
|
|
Structured log messages (using g_log_structured() and
|
|
g_log_structured_array()) are fatal only if the default log writer is used;
|
|
otherwise it is up to the writer function to determine which log messages
|
|
are fatal. See [Using Structured Logging][using-structured-logging].</doc>
|
|
<source-position filename="gmessages.h" line="115"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20727">the old fatal mask</doc>
|
|
<type name="LogLevelFlags" c:type="GLogLevelFlags"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="fatal_mask" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20707">the mask containing bits set for each level
|
|
of error which is to be fatal</doc>
|
|
<type name="LogLevelFlags" c:type="GLogLevelFlags"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="log_set_default_handler" c:identifier="g_log_set_default_handler" version="2.6" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20731">Installs a default log handler which is used if no
|
|
log handler has been set for the particular log domain
|
|
and log level combination. By default, GLib uses
|
|
g_log_default_handler() as default log handler.
|
|
|
|
This has no effect if structured logging is enabled; see
|
|
[Using Structured Logging][using-structured-logging].</doc>
|
|
<source-position filename="gmessages.h" line="99"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20744">the previous default log handler</doc>
|
|
<type name="LogFunc" c:type="GLogFunc"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="log_func" transfer-ownership="none" closure="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20733">the log handler function</doc>
|
|
<type name="LogFunc" c:type="GLogFunc"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20734">data passed to the log handler</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="log_set_fatal_mask" c:identifier="g_log_set_fatal_mask">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20749">Sets the log levels which are fatal in the given domain.
|
|
%G_LOG_LEVEL_ERROR is always fatal.
|
|
|
|
This has no effect on structured log messages (using g_log_structured() or
|
|
g_log_structured_array()). To change the fatal behaviour for specific log
|
|
messages, programs must install a custom log writer function using
|
|
g_log_set_writer_func(). See
|
|
[Using Structured Logging][using-structured-logging].
|
|
|
|
This function is mostly intended to be used with
|
|
%G_LOG_LEVEL_CRITICAL. You should typically not set
|
|
%G_LOG_LEVEL_WARNING, %G_LOG_LEVEL_MESSAGE, %G_LOG_LEVEL_INFO or
|
|
%G_LOG_LEVEL_DEBUG as fatal except inside of test programs.</doc>
|
|
<source-position filename="gmessages.h" line="112"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20768">the old fatal mask for the log domain</doc>
|
|
<type name="LogLevelFlags" c:type="GLogLevelFlags"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="log_domain" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20751">the log domain</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="fatal_mask" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20752">the new fatal mask</doc>
|
|
<type name="LogLevelFlags" c:type="GLogLevelFlags"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="log_set_handler" c:identifier="g_log_set_handler" shadowed-by="log_set_handler_full" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20772">Sets the log handler for a domain and a set of log levels.
|
|
To handle fatal and recursive messages the @log_levels parameter
|
|
must be combined with the #G_LOG_FLAG_FATAL and #G_LOG_FLAG_RECURSION
|
|
bit flags.
|
|
|
|
Note that since the #G_LOG_LEVEL_ERROR log level is always fatal, if
|
|
you want to set a handler for this log level you must combine it with
|
|
#G_LOG_FLAG_FATAL.
|
|
|
|
This has no effect if structured logging is enabled; see
|
|
[Using Structured Logging][using-structured-logging].
|
|
|
|
Here is an example for adding a log handler for all warning messages
|
|
in the default domain:
|
|
|[<!-- language="C" -->
|
|
g_log_set_handler (NULL, G_LOG_LEVEL_WARNING | G_LOG_FLAG_FATAL
|
|
| G_LOG_FLAG_RECURSION, my_log_handler, NULL);
|
|
]|
|
|
|
|
This example adds a log handler for all critical messages from GTK+:
|
|
|[<!-- language="C" -->
|
|
g_log_set_handler ("Gtk", G_LOG_LEVEL_CRITICAL | G_LOG_FLAG_FATAL
|
|
| G_LOG_FLAG_RECURSION, my_log_handler, NULL);
|
|
]|
|
|
|
|
This example adds a log handler for all messages from GLib:
|
|
|[<!-- language="C" -->
|
|
g_log_set_handler ("GLib", G_LOG_LEVEL_MASK | G_LOG_FLAG_FATAL
|
|
| G_LOG_FLAG_RECURSION, my_log_handler, NULL);
|
|
]|</doc>
|
|
<source-position filename="gmessages.h" line="80"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20814">the id of the new handler</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="log_domain" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20774">the log domain, or %NULL for the default ""
|
|
application domain</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="log_levels" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20776">the log levels to apply the log handler for.
|
|
To handle fatal and recursive messages as well, combine
|
|
the log levels with the #G_LOG_FLAG_FATAL and
|
|
#G_LOG_FLAG_RECURSION bit flags.</doc>
|
|
<type name="LogLevelFlags" c:type="GLogLevelFlags"/>
|
|
</parameter>
|
|
<parameter name="log_func" transfer-ownership="none" closure="3">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20780">the log handler function</doc>
|
|
<type name="LogFunc" c:type="GLogFunc"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20781">data passed to the log handler</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="log_set_handler_full" c:identifier="g_log_set_handler_full" shadows="log_set_handler" version="2.46">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20818">Like g_log_set_handler(), but takes a destroy notify for the @user_data.
|
|
|
|
This has no effect if structured logging is enabled; see
|
|
[Using Structured Logging][using-structured-logging].</doc>
|
|
<source-position filename="gmessages.h" line="85"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20835">the id of the new handler</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="log_domain" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20820">the log domain, or %NULL for the default ""
|
|
application domain</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="log_levels" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20822">the log levels to apply the log handler for.
|
|
To handle fatal and recursive messages as well, combine
|
|
the log levels with the #G_LOG_FLAG_FATAL and
|
|
#G_LOG_FLAG_RECURSION bit flags.</doc>
|
|
<type name="LogLevelFlags" c:type="GLogLevelFlags"/>
|
|
</parameter>
|
|
<parameter name="log_func" transfer-ownership="none" scope="notified" closure="3" destroy="4">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20826">the log handler function</doc>
|
|
<type name="LogFunc" c:type="GLogFunc"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20827">data passed to the log handler</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="destroy" transfer-ownership="none" scope="async">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20828">destroy notify for @user_data, or %NULL</doc>
|
|
<type name="DestroyNotify" c:type="GDestroyNotify"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="log_set_writer_func" c:identifier="g_log_set_writer_func" version="2.50">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20840">Set a writer function which will be called to format and write out each log
|
|
message. Each program should set a writer function, or the default writer
|
|
(g_log_writer_default()) will be used.
|
|
|
|
Libraries **must not** call this function — only programs are allowed to
|
|
install a writer function, as there must be a single, central point where
|
|
log messages are formatted and outputted.
|
|
|
|
There can only be one writer function. It is an error to set more than one.</doc>
|
|
<source-position filename="gmessages.h" line="213"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="func" transfer-ownership="none" nullable="1" allow-none="1" scope="notified" closure="1" destroy="2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20842">log writer function, which must not be %NULL</doc>
|
|
<type name="LogWriterFunc" c:type="GLogWriterFunc"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1" closure="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20843">user data to pass to @func</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="user_data_free" transfer-ownership="none" scope="async" destroy="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20844">function to free @user_data once it’s
|
|
finished with, if non-%NULL</doc>
|
|
<type name="DestroyNotify" c:type="GDestroyNotify"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="log_structured" c:identifier="g_log_structured" version="2.50" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20861">Log a message with structured data. The message will be passed through to
|
|
the log writer set by the application using g_log_set_writer_func(). If the
|
|
message is fatal (i.e. its log level is %G_LOG_LEVEL_ERROR), the program will
|
|
be aborted by calling G_BREAKPOINT() at the end of this function. If the log writer returns
|
|
%G_LOG_WRITER_UNHANDLED (failure), no other fallback writers will be tried.
|
|
See the documentation for #GLogWriterFunc for information on chaining
|
|
writers.
|
|
|
|
The structured data is provided as key–value pairs, where keys are UTF-8
|
|
strings, and values are arbitrary pointers — typically pointing to UTF-8
|
|
strings, but that is not a requirement. To pass binary (non-nul-terminated)
|
|
structured data, use g_log_structured_array(). The keys for structured data
|
|
should follow the [systemd journal
|
|
fields](https://www.freedesktop.org/software/systemd/man/systemd.journal-fields.html)
|
|
specification. It is suggested that custom keys are namespaced according to
|
|
the code which sets them. For example, custom keys from GLib all have a
|
|
`GLIB_` prefix.
|
|
|
|
The @log_domain will be converted into a `GLIB_DOMAIN` field. @log_level will
|
|
be converted into a
|
|
[`PRIORITY`](https://www.freedesktop.org/software/systemd/man/systemd.journal-fields.html#PRIORITY=)
|
|
field. The format string will have its placeholders substituted for the provided
|
|
values and be converted into a
|
|
[`MESSAGE`](https://www.freedesktop.org/software/systemd/man/systemd.journal-fields.html#MESSAGE=)
|
|
field.
|
|
|
|
Other fields you may commonly want to pass into this function:
|
|
|
|
* [`MESSAGE_ID`](https://www.freedesktop.org/software/systemd/man/systemd.journal-fields.html#MESSAGE_ID=)
|
|
* [`CODE_FILE`](https://www.freedesktop.org/software/systemd/man/systemd.journal-fields.html#CODE_FILE=)
|
|
* [`CODE_LINE`](https://www.freedesktop.org/software/systemd/man/systemd.journal-fields.html#CODE_LINE=)
|
|
* [`CODE_FUNC`](https://www.freedesktop.org/software/systemd/man/systemd.journal-fields.html#CODE_FUNC=)
|
|
* [`ERRNO`](https://www.freedesktop.org/software/systemd/man/systemd.journal-fields.html#ERRNO=)
|
|
|
|
Note that `CODE_FILE`, `CODE_LINE` and `CODE_FUNC` are automatically set by
|
|
the logging macros, G_DEBUG_HERE(), g_message(), g_warning(), g_critical(),
|
|
g_error(), etc, if the symbols `G_LOG_USE_STRUCTURED` is defined before including
|
|
glib.h.
|
|
|
|
For example:
|
|
|[<!-- language="C" -->
|
|
g_log_structured (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG,
|
|
"MESSAGE_ID", "06d4df59e6c24647bfe69d2c27ef0b4e",
|
|
"MY_APPLICATION_CUSTOM_FIELD", "some debug string",
|
|
"MESSAGE", "This is a debug message about pointer %p and integer %u.",
|
|
some_pointer, some_integer);
|
|
]|
|
|
|
|
Note that each `MESSAGE_ID` must be [uniquely and randomly
|
|
generated](https://www.freedesktop.org/software/systemd/man/systemd.journal-fields.html#MESSAGE_ID=).
|
|
If adding a `MESSAGE_ID`, consider shipping a [message
|
|
catalog](https://www.freedesktop.org/wiki/Software/systemd/catalog/) with
|
|
your software.
|
|
|
|
To pass a user data pointer to the log writer function which is specific to
|
|
this logging call, you must use g_log_structured_array() and pass the pointer
|
|
as a field with #GLogField.length set to zero, otherwise it will be
|
|
interpreted as a string.
|
|
|
|
For example:
|
|
|[<!-- language="C" -->
|
|
const GLogField fields[] = {
|
|
{ "MESSAGE", "This is a debug message.", -1 },
|
|
{ "MESSAGE_ID", "fcfb2e1e65c3494386b74878f1abf893", -1 },
|
|
{ "MY_APPLICATION_CUSTOM_FIELD", "some debug string", -1 },
|
|
{ "MY_APPLICATION_STATE", state_object, 0 },
|
|
};
|
|
g_log_structured_array (G_LOG_LEVEL_DEBUG, fields, G_N_ELEMENTS (fields));
|
|
]|
|
|
|
|
Note also that, even if no other structured fields are specified, there
|
|
must always be a `MESSAGE` key before the format string. The `MESSAGE`-format
|
|
pair has to be the last of the key-value pairs, and `MESSAGE` is the only
|
|
field for which printf()-style formatting is supported.
|
|
|
|
The default writer function for `stdout` and `stderr` will automatically
|
|
append a new-line character after the message, so you should not add one
|
|
manually to the format string.</doc>
|
|
<source-position filename="gmessages.h" line="199"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="log_domain" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20863">log domain, usually %G_LOG_DOMAIN</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="log_level" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20864">log level, either from #GLogLevelFlags, or a user-defined
|
|
level</doc>
|
|
<type name="LogLevelFlags" c:type="GLogLevelFlags"/>
|
|
</parameter>
|
|
<parameter name="..." transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20866">key-value pairs of structured data to add to the log entry, followed
|
|
by the key "MESSAGE", followed by a printf()-style message format,
|
|
followed by parameters to insert in the format string</doc>
|
|
<varargs/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="log_structured_array" c:identifier="g_log_structured_array" version="2.50">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20953">Log a message with structured data. The message will be passed through to the
|
|
log writer set by the application using g_log_set_writer_func(). If the
|
|
message is fatal (i.e. its log level is %G_LOG_LEVEL_ERROR), the program will
|
|
be aborted at the end of this function.
|
|
|
|
See g_log_structured() for more documentation.
|
|
|
|
This assumes that @log_level is already present in @fields (typically as the
|
|
`PRIORITY` field).</doc>
|
|
<source-position filename="gmessages.h" line="203"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="log_level" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20955">log level, either from #GLogLevelFlags, or a user-defined
|
|
level</doc>
|
|
<type name="LogLevelFlags" c:type="GLogLevelFlags"/>
|
|
</parameter>
|
|
<parameter name="fields" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20957">key–value pairs of structured data to add
|
|
to the log message</doc>
|
|
<array length="2" zero-terminated="0" c:type="const GLogField*">
|
|
<type name="LogField" c:type="GLogField"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="n_fields" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20959">number of elements in the @fields array</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="log_structured_standard" c:identifier="g_log_structured_standard" introspectable="0">
|
|
<source-position filename="gmessages.h" line="286"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="log_domain" transfer-ownership="none">
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="log_level" transfer-ownership="none">
|
|
<type name="LogLevelFlags" c:type="GLogLevelFlags"/>
|
|
</parameter>
|
|
<parameter name="file" transfer-ownership="none">
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="line" transfer-ownership="none">
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="func" transfer-ownership="none">
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="message_format" transfer-ownership="none">
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="..." transfer-ownership="none">
|
|
<varargs/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="log_variant" c:identifier="g_log_variant" version="2.50">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20975">Log a message with structured data, accepting the data within a #GVariant. This
|
|
version is especially useful for use in other languages, via introspection.
|
|
|
|
The only mandatory item in the @fields dictionary is the "MESSAGE" which must
|
|
contain the text shown to the user.
|
|
|
|
The values in the @fields dictionary are likely to be of type String
|
|
(#G_VARIANT_TYPE_STRING). Array of bytes (#G_VARIANT_TYPE_BYTESTRING) is also
|
|
supported. In this case the message is handled as binary and will be forwarded
|
|
to the log writer as such. The size of the array should not be higher than
|
|
%G_MAXSSIZE. Otherwise it will be truncated to this size. For other types
|
|
g_variant_print() will be used to convert the value into a string.
|
|
|
|
For more details on its usage and about the parameters, see g_log_structured().</doc>
|
|
<source-position filename="gmessages.h" line="208"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="log_domain" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20977">log domain, usually %G_LOG_DOMAIN</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="log_level" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20978">log level, either from #GLogLevelFlags, or a user-defined
|
|
level</doc>
|
|
<type name="LogLevelFlags" c:type="GLogLevelFlags"/>
|
|
</parameter>
|
|
<parameter name="fields" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="20980">a dictionary (#GVariant of the type %G_VARIANT_TYPE_VARDICT)
|
|
containing the key-value pairs of message data.</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="log_writer_default" c:identifier="g_log_writer_default" version="2.50">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21002">Format a structured log message and output it to the default log destination
|
|
for the platform. On Linux, this is typically the systemd journal, falling
|
|
back to `stdout` or `stderr` if running from the terminal or if output is
|
|
being redirected to a file.
|
|
|
|
Support for other platform-specific logging mechanisms may be added in
|
|
future. Distributors of GLib may modify this function to impose their own
|
|
(documented) platform-specific log writing policies.
|
|
|
|
This is suitable for use as a #GLogWriterFunc, and is the default writer used
|
|
if no other is set using g_log_set_writer_func().
|
|
|
|
As with g_log_default_handler(), this function drops debug and informational
|
|
messages unless their log domain (or `all`) is listed in the space-separated
|
|
`G_MESSAGES_DEBUG` environment variable.</doc>
|
|
<source-position filename="gmessages.h" line="239"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21027">%G_LOG_WRITER_HANDLED on success, %G_LOG_WRITER_UNHANDLED otherwise</doc>
|
|
<type name="LogWriterOutput" c:type="GLogWriterOutput"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="log_level" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21004">log level, either from #GLogLevelFlags, or a user-defined
|
|
level</doc>
|
|
<type name="LogLevelFlags" c:type="GLogLevelFlags"/>
|
|
</parameter>
|
|
<parameter name="fields" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21006">key–value pairs of structured data forming
|
|
the log message</doc>
|
|
<array length="2" zero-terminated="0" c:type="const GLogField*">
|
|
<type name="LogField" c:type="GLogField"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="n_fields" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21008">number of elements in the @fields array</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21009">user data passed to g_log_set_writer_func()</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="log_writer_format_fields" c:identifier="g_log_writer_format_fields" version="2.50">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21032">Format a structured log message as a string suitable for outputting to the
|
|
terminal (or elsewhere). This will include the values of all fields it knows
|
|
how to interpret, which includes `MESSAGE` and `GLIB_DOMAIN` (see the
|
|
documentation for g_log_structured()). It does not include values from
|
|
unknown fields.
|
|
|
|
The returned string does **not** have a trailing new-line character. It is
|
|
encoded in the character set of the current locale, which is not necessarily
|
|
UTF-8.</doc>
|
|
<source-position filename="gmessages.h" line="223"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21052">string containing the formatted log message, in
|
|
the character set of the current locale</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="log_level" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21034">log level, either from #GLogLevelFlags, or a user-defined
|
|
level</doc>
|
|
<type name="LogLevelFlags" c:type="GLogLevelFlags"/>
|
|
</parameter>
|
|
<parameter name="fields" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21036">key–value pairs of structured data forming
|
|
the log message</doc>
|
|
<array length="2" zero-terminated="0" c:type="const GLogField*">
|
|
<type name="LogField" c:type="GLogField"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="n_fields" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21038">number of elements in the @fields array</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
<parameter name="use_color" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21039">%TRUE to use ANSI color escape sequences when formatting the
|
|
message, %FALSE to not</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="log_writer_is_journald" c:identifier="g_log_writer_is_journald" version="2.50">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21058">Check whether the given @output_fd file descriptor is a connection to the
|
|
systemd journal, or something else (like a log file or `stdout` or
|
|
`stderr`).
|
|
|
|
Invalid file descriptors are accepted and return %FALSE, which allows for
|
|
the following construct without needing any additional error handling:
|
|
|[<!-- language="C" -->
|
|
is_journald = g_log_writer_is_journald (fileno (stderr));
|
|
]|</doc>
|
|
<source-position filename="gmessages.h" line="220"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21072">%TRUE if @output_fd points to the journal, %FALSE otherwise</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="output_fd" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21060">output file descriptor to check</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="log_writer_journald" c:identifier="g_log_writer_journald" version="2.50">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21077">Format a structured log message and send it to the systemd journal as a set
|
|
of key–value pairs. All fields are sent to the journal, but if a field has
|
|
length zero (indicating program-specific data) then only its key will be
|
|
sent.
|
|
|
|
This is suitable for use as a #GLogWriterFunc.
|
|
|
|
If GLib has been compiled without systemd support, this function is still
|
|
defined, but will always return %G_LOG_WRITER_UNHANDLED.</doc>
|
|
<source-position filename="gmessages.h" line="229"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21096">%G_LOG_WRITER_HANDLED on success, %G_LOG_WRITER_UNHANDLED otherwise</doc>
|
|
<type name="LogWriterOutput" c:type="GLogWriterOutput"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="log_level" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21079">log level, either from #GLogLevelFlags, or a user-defined
|
|
level</doc>
|
|
<type name="LogLevelFlags" c:type="GLogLevelFlags"/>
|
|
</parameter>
|
|
<parameter name="fields" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21081">key–value pairs of structured data forming
|
|
the log message</doc>
|
|
<array length="2" zero-terminated="0" c:type="const GLogField*">
|
|
<type name="LogField" c:type="GLogField"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="n_fields" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21083">number of elements in the @fields array</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21084">user data passed to g_log_set_writer_func()</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="log_writer_standard_streams" c:identifier="g_log_writer_standard_streams" version="2.50">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21101">Format a structured log message and print it to either `stdout` or `stderr`,
|
|
depending on its log level. %G_LOG_LEVEL_INFO and %G_LOG_LEVEL_DEBUG messages
|
|
are sent to `stdout`; all other log levels are sent to `stderr`. Only fields
|
|
which are understood by this function are included in the formatted string
|
|
which is printed.
|
|
|
|
If the output stream supports ANSI color escape sequences, they will be used
|
|
in the output.
|
|
|
|
A trailing new-line character is added to the log message when it is printed.
|
|
|
|
This is suitable for use as a #GLogWriterFunc.</doc>
|
|
<source-position filename="gmessages.h" line="234"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21123">%G_LOG_WRITER_HANDLED on success, %G_LOG_WRITER_UNHANDLED otherwise</doc>
|
|
<type name="LogWriterOutput" c:type="GLogWriterOutput"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="log_level" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21103">log level, either from #GLogLevelFlags, or a user-defined
|
|
level</doc>
|
|
<type name="LogLevelFlags" c:type="GLogLevelFlags"/>
|
|
</parameter>
|
|
<parameter name="fields" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21105">key–value pairs of structured data forming
|
|
the log message</doc>
|
|
<array length="2" zero-terminated="0" c:type="const GLogField*">
|
|
<type name="LogField" c:type="GLogField"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="n_fields" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21107">number of elements in the @fields array</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21108">user data passed to g_log_set_writer_func()</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="log_writer_supports_color" c:identifier="g_log_writer_supports_color" version="2.50">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21128">Check whether the given @output_fd file descriptor supports ANSI color
|
|
escape sequences. If so, they can safely be used when formatting log
|
|
messages.</doc>
|
|
<source-position filename="gmessages.h" line="218"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21136">%TRUE if ANSI color escapes are supported, %FALSE otherwise</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="output_fd" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21130">output file descriptor to check</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="logv" c:identifier="g_logv" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21141">Logs an error or debugging message.
|
|
|
|
If the log level has been set as fatal, G_BREAKPOINT() is called
|
|
to terminate the program. See the documentation for G_BREAKPOINT() for
|
|
details of the debugging options this provides.
|
|
|
|
If g_log_default_handler() is used as the log handler function, a new-line
|
|
character will automatically be appended to @..., and need not be entered
|
|
manually.
|
|
|
|
If [structured logging is enabled][using-structured-logging] this will
|
|
output via the structured log writer function (see g_log_set_writer_func()).</doc>
|
|
<source-position filename="gmessages.h" line="107"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="log_domain" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21143">the log domain, or %NULL for the default ""
|
|
application domain</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="log_level" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21145">the log level</doc>
|
|
<type name="LogLevelFlags" c:type="GLogLevelFlags"/>
|
|
</parameter>
|
|
<parameter name="format" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21146">the message format. See the printf() documentation</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="args" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21147">the parameters to insert into the format string</doc>
|
|
<type name="va_list" c:type="va_list"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function-macro name="macro__has_attribute" c:identifier="g_macro__has_attribute" introspectable="0">
|
|
<source-position filename="gmacros.h" line="252"/>
|
|
<parameters>
|
|
<parameter name="x">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="macro__has_builtin" c:identifier="g_macro__has_builtin" introspectable="0">
|
|
<source-position filename="gmacros.h" line="264"/>
|
|
<parameters>
|
|
<parameter name="x">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="macro__has_feature" c:identifier="g_macro__has_feature" introspectable="0">
|
|
<source-position filename="gmacros.h" line="258"/>
|
|
<parameters>
|
|
<parameter name="x">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function name="main_context_default" c:identifier="g_main_context_default" moved-to="MainContext.default">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21237">Returns the global default main context. This is the main context
|
|
used for main loop functions when a main loop is not explicitly
|
|
specified, and corresponds to the "main" main loop. See also
|
|
g_main_context_get_thread_default().</doc>
|
|
<source-position filename="gmain.h" line="348"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21245">the global default main context.</doc>
|
|
<type name="MainContext" c:type="GMainContext*"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="main_context_get_thread_default" c:identifier="g_main_context_get_thread_default" moved-to="MainContext.get_thread_default" version="2.22">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21319">Gets the thread-default #GMainContext for this thread. Asynchronous
|
|
operations that want to be able to be run in contexts other than
|
|
the default one should call this method or
|
|
g_main_context_ref_thread_default() to get a #GMainContext to add
|
|
their #GSources to. (Note that even in single-threaded
|
|
programs applications may sometimes want to temporarily push a
|
|
non-default context, so it is not safe to assume that this will
|
|
always return %NULL if you are running in the default thread.)
|
|
|
|
If you need to hold a reference on the context, use
|
|
g_main_context_ref_thread_default() instead.</doc>
|
|
<source-position filename="gmain.h" line="429"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21334">the thread-default #GMainContext, or
|
|
%NULL if the thread-default context is the global default context.</doc>
|
|
<type name="MainContext" c:type="GMainContext*"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="main_context_ref_thread_default" c:identifier="g_main_context_ref_thread_default" moved-to="MainContext.ref_thread_default" version="2.32">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21554">Gets the thread-default #GMainContext for this thread, as with
|
|
g_main_context_get_thread_default(), but also adds a reference to
|
|
it with g_main_context_ref(). In addition, unlike
|
|
g_main_context_get_thread_default(), if the thread-default context
|
|
is the global default context, this will return that #GMainContext
|
|
(with a ref added to it) rather than returning %NULL.</doc>
|
|
<source-position filename="gmain.h" line="431"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21564">the thread-default #GMainContext. Unref
|
|
with g_main_context_unref() when you are done with it.</doc>
|
|
<type name="MainContext" c:type="GMainContext*"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="main_current_source" c:identifier="g_main_current_source" version="2.12">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21668">Returns the currently firing source for this thread.</doc>
|
|
<source-position filename="gmain.h" line="420"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21673">The currently firing source or %NULL.</doc>
|
|
<type name="Source" c:type="GSource*"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="main_depth" c:identifier="g_main_depth">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21678">Returns the depth of the stack of calls to
|
|
g_main_context_dispatch() on any #GMainContext in the current thread.
|
|
That is, when called from the toplevel, it gives 0. When
|
|
called from within a callback from g_main_context_iteration()
|
|
(or g_main_loop_run(), etc.) it returns 1. When called from within
|
|
a callback to a recursive call to g_main_context_iteration(),
|
|
it returns 2. And so forth.
|
|
|
|
This function is useful in a situation like the following:
|
|
Imagine an extremely simple "garbage collected" system.
|
|
|
|
|[<!-- language="C" -->
|
|
static GList *free_list;
|
|
|
|
gpointer
|
|
allocate_memory (gsize size)
|
|
{
|
|
gpointer result = g_malloc (size);
|
|
free_list = g_list_prepend (free_list, result);
|
|
return result;
|
|
}
|
|
|
|
void
|
|
free_allocated_memory (void)
|
|
{
|
|
GList *l;
|
|
for (l = free_list; l; l = l->next);
|
|
g_free (l->data);
|
|
g_list_free (free_list);
|
|
free_list = NULL;
|
|
}
|
|
|
|
[...]
|
|
|
|
while (TRUE);
|
|
{
|
|
g_main_context_iteration (NULL, TRUE);
|
|
free_allocated_memory();
|
|
}
|
|
]|
|
|
|
|
This works from an application, however, if you want to do the same
|
|
thing from a library, it gets more difficult, since you no longer
|
|
control the main loop. You might think you can simply use an idle
|
|
function to make the call to free_allocated_memory(), but that
|
|
doesn't work, since the idle function could be called from a
|
|
recursive callback. This can be fixed by using g_main_depth()
|
|
|
|
|[<!-- language="C" -->
|
|
gpointer
|
|
allocate_memory (gsize size)
|
|
{
|
|
FreeListBlock *block = g_new (FreeListBlock, 1);
|
|
block->mem = g_malloc (size);
|
|
block->depth = g_main_depth ();
|
|
free_list = g_list_prepend (free_list, block);
|
|
return block->mem;
|
|
}
|
|
|
|
void
|
|
free_allocated_memory (void)
|
|
{
|
|
GList *l;
|
|
|
|
int depth = g_main_depth ();
|
|
for (l = free_list; l; );
|
|
{
|
|
GList *next = l->next;
|
|
FreeListBlock *block = l->data;
|
|
if (block->depth > depth)
|
|
{
|
|
g_free (block->mem);
|
|
g_free (block);
|
|
free_list = g_list_delete_link (free_list, l);
|
|
}
|
|
|
|
l = next;
|
|
}
|
|
}
|
|
]|
|
|
|
|
There is a temptation to use g_main_depth() to solve
|
|
problems with reentrancy. For instance, while waiting for data
|
|
to be received from the network in response to a menu item,
|
|
the menu item might be selected again. It might seem that
|
|
one could make the menu item's callback return immediately
|
|
and do nothing if g_main_depth() returns a value greater than 1.
|
|
However, this should be avoided since the user then sees selecting
|
|
the menu item do nothing. Furthermore, you'll find yourself adding
|
|
these checks all over your code, since there are doubtless many,
|
|
many things that the user could do. Instead, you can use the
|
|
following techniques:
|
|
|
|
1. Use gtk_widget_set_sensitive() or modal dialogs to prevent
|
|
the user from interacting with elements while the main
|
|
loop is recursing.
|
|
|
|
2. Avoid main loop recursion in situations where you can't handle
|
|
arbitrary callbacks. Instead, structure your code so that you
|
|
simply return to the main loop and then get called again when
|
|
there is more work to do.</doc>
|
|
<source-position filename="gmain.h" line="418"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21783">The main loop recursion level in the current thread</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="malloc" c:identifier="g_malloc">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21862">Allocates @n_bytes bytes of memory.
|
|
If @n_bytes is 0 it returns %NULL.</doc>
|
|
<source-position filename="gmem.h" line="78"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21869">a pointer to the allocated memory</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="n_bytes" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21864">the number of bytes to allocate</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="malloc0" c:identifier="g_malloc0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21873">Allocates @n_bytes bytes of memory, initialized to 0's.
|
|
If @n_bytes is 0 it returns %NULL.</doc>
|
|
<source-position filename="gmem.h" line="80"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21880">a pointer to the allocated memory</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="n_bytes" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21875">the number of bytes to allocate</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="malloc0_n" c:identifier="g_malloc0_n" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21884">This function is similar to g_malloc0(), allocating (@n_blocks * @n_block_bytes) bytes,
|
|
but care is taken to detect possible overflow during multiplication.</doc>
|
|
<source-position filename="gmem.h" line="96"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21893">a pointer to the allocated memory</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="n_blocks" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21886">the number of blocks to allocate</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
<parameter name="n_block_bytes" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21887">the size of each block in bytes</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="malloc_n" c:identifier="g_malloc_n" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21897">This function is similar to g_malloc(), allocating (@n_blocks * @n_block_bytes) bytes,
|
|
but care is taken to detect possible overflow during multiplication.</doc>
|
|
<source-position filename="gmem.h" line="93"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21906">a pointer to the allocated memory</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="n_blocks" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21899">the number of blocks to allocate</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
<parameter name="n_block_bytes" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="21900">the size of each block in bytes</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="markup_collect_attributes" c:identifier="g_markup_collect_attributes" version="2.16" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22042">Collects the attributes of the element from the data passed to the
|
|
#GMarkupParser start_element function, dealing with common error
|
|
conditions and supporting boolean values.
|
|
|
|
This utility function is not required to write a parser but can save
|
|
a lot of typing.
|
|
|
|
The @element_name, @attribute_names, @attribute_values and @error
|
|
parameters passed to the start_element callback should be passed
|
|
unmodified to this function.
|
|
|
|
Following these arguments is a list of "supported" attributes to collect.
|
|
It is an error to specify multiple attributes with the same name. If any
|
|
attribute not in the list appears in the @attribute_names array then an
|
|
unknown attribute error will result.
|
|
|
|
The #GMarkupCollectType field allows specifying the type of collection
|
|
to perform and if a given attribute must appear or is optional.
|
|
|
|
The attribute name is simply the name of the attribute to collect.
|
|
|
|
The pointer should be of the appropriate type (see the descriptions
|
|
under #GMarkupCollectType) and may be %NULL in case a particular
|
|
attribute is to be allowed but ignored.
|
|
|
|
This function deals with issuing errors for missing attributes
|
|
(of type %G_MARKUP_ERROR_MISSING_ATTRIBUTE), unknown attributes
|
|
(of type %G_MARKUP_ERROR_UNKNOWN_ATTRIBUTE) and duplicate
|
|
attributes (of type %G_MARKUP_ERROR_INVALID_CONTENT) as well
|
|
as parse errors for boolean-valued attributes (again of type
|
|
%G_MARKUP_ERROR_INVALID_CONTENT). In all of these cases %FALSE
|
|
will be returned and @error will be set as appropriate.</doc>
|
|
<source-position filename="gmarkup.h" line="251"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22087">%TRUE if successful</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="element_name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22044">the current tag name</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="attribute_names" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22045">the attribute names</doc>
|
|
<type name="utf8" c:type="const gchar**"/>
|
|
</parameter>
|
|
<parameter name="attribute_values" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22046">the attribute values</doc>
|
|
<type name="utf8" c:type="const gchar**"/>
|
|
</parameter>
|
|
<parameter name="error" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22047">a pointer to a #GError or %NULL</doc>
|
|
<type name="Error" c:type="GError**"/>
|
|
</parameter>
|
|
<parameter name="first_type" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22048">the #GMarkupCollectType of the first attribute</doc>
|
|
<type name="MarkupCollectType" c:type="GMarkupCollectType"/>
|
|
</parameter>
|
|
<parameter name="first_attr" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22049">the name of the first attribute</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="..." transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22050">a pointer to the storage location of the first attribute
|
|
(or %NULL), followed by more types names and pointers, ending
|
|
with %G_MARKUP_COLLECT_INVALID</doc>
|
|
<varargs/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="markup_error_quark" c:identifier="g_markup_error_quark">
|
|
<return-value transfer-ownership="none">
|
|
<type name="Quark" c:type="GQuark"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="markup_escape_text" c:identifier="g_markup_escape_text">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22092">Escapes text so that the markup parser will parse it verbatim.
|
|
Less than, greater than, ampersand, etc. are replaced with the
|
|
corresponding entities. This function would typically be used
|
|
when writing out a file to be parsed with the markup parser.
|
|
|
|
Note that this function doesn't protect whitespace and line endings
|
|
from being processed according to the XML rules for normalization
|
|
of line endings and attribute values.
|
|
|
|
Note also that this function will produce character references in
|
|
the range of &#x1; ... &#x1f; for all control sequences
|
|
except for tabstop, newline and carriage return. The character
|
|
references in this range are not valid XML 1.0, but they are
|
|
valid XML 1.1 and will be accepted by the GMarkup parser.</doc>
|
|
<source-position filename="gmarkup.h" line="227"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22112">a newly allocated string with the escaped text</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="text" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22094">some valid UTF-8 text</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="length" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22095">length of @text in bytes, or -1 if the text is nul-terminated</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="markup_printf_escaped" c:identifier="g_markup_printf_escaped" version="2.4" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22418">Formats arguments according to @format, escaping
|
|
all string and character arguments in the fashion
|
|
of g_markup_escape_text(). This is useful when you
|
|
want to insert literal strings into XML-style markup
|
|
output, without having to worry that the strings
|
|
might themselves contain markup.
|
|
|
|
|[<!-- language="C" -->
|
|
const char *store = "Fortnum & Mason";
|
|
const char *item = "Tea";
|
|
char *output;
|
|
|
|
output = g_markup_printf_escaped ("<purchase>"
|
|
"<store>%s</store>"
|
|
"<item>%s</item>"
|
|
"</purchase>",
|
|
store, item);
|
|
]|</doc>
|
|
<source-position filename="gmarkup.h" line="231"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22442">newly allocated result from formatting
|
|
operation. Free with g_free().</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="format" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22420">printf() style format string</doc>
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
<parameter name="..." transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22421">the arguments to insert in the format string</doc>
|
|
<varargs/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="markup_vprintf_escaped" c:identifier="g_markup_vprintf_escaped" version="2.4" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22448">Formats the data in @args according to @format, escaping
|
|
all string and character arguments in the fashion
|
|
of g_markup_escape_text(). See g_markup_printf_escaped().</doc>
|
|
<source-position filename="gmarkup.h" line="234"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22457">newly allocated result from formatting
|
|
operation. Free with g_free().</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="format" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22450">printf() style format string</doc>
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
<parameter name="args" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22451">variable argument list, similar to vprintf()</doc>
|
|
<type name="va_list" c:type="va_list"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="mem_is_system_malloc" c:identifier="g_mem_is_system_malloc" deprecated="1" deprecated-version="2.46">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22777">Checks whether the allocator used by g_malloc() is the system's
|
|
malloc implementation. If it returns %TRUE memory allocated with
|
|
malloc() can be used interchangeable with memory allocated using g_malloc().
|
|
This function is useful for avoiding an extra copy of allocated memory returned
|
|
by a non-GLib-based API.</doc>
|
|
<doc-deprecated xml:space="preserve">GLib always uses the system malloc, so this function always
|
|
returns %TRUE.</doc-deprecated>
|
|
<source-position filename="gmem.h" line="380"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22786">if %TRUE, malloc() and g_malloc() can be mixed.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="mem_profile" c:identifier="g_mem_profile" deprecated="1" deprecated-version="2.46">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22792">GLib used to support some tools for memory profiling, but this
|
|
no longer works. There are many other useful tools for memory
|
|
profiling these days which can be used instead.</doc>
|
|
<doc-deprecated xml:space="preserve">Use other memory profiling tools instead</doc-deprecated>
|
|
<source-position filename="gmem.h" line="388"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="mem_set_vtable" c:identifier="g_mem_set_vtable" deprecated="1" deprecated-version="2.46">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22803">This function used to let you override the memory allocation function.
|
|
However, its use was incompatible with the use of global constructors
|
|
in GLib and GIO, because those use the GLib allocators before main is
|
|
reached. Therefore this function is now deprecated and is just a stub.</doc>
|
|
<doc-deprecated xml:space="preserve">This function now does nothing. Use other memory
|
|
profiling tools instead</doc-deprecated>
|
|
<source-position filename="gmem.h" line="378"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="vtable" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22805">table of memory allocation routines.</doc>
|
|
<type name="MemVTable" c:type="GMemVTable*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="memdup" c:identifier="g_memdup">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22817">Allocates @byte_size bytes of memory, and copies @byte_size bytes into it
|
|
from @mem. If @mem is %NULL it returns %NULL.</doc>
|
|
<source-position filename="gstrfuncs.h" line="257"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22825">a pointer to the newly-allocated copy of the memory, or %NULL if @mem
|
|
is %NULL.</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="mem" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22819">the memory to copy.</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
<parameter name="byte_size" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22820">the number of bytes to copy.</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function-macro name="memmove" c:identifier="g_memmove" introspectable="0" deprecated="1" deprecated-version="2.40">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22830">Copies a block of memory @len bytes long, from @src to @dest.
|
|
The source and destination areas may overlap.</doc>
|
|
<doc-deprecated xml:space="preserve">Just use memmove().</doc-deprecated>
|
|
<source-position filename="gutils.h" line="198"/>
|
|
<parameters>
|
|
<parameter name="dest">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22832">the destination address to copy the bytes to.</doc>
|
|
</parameter>
|
|
<parameter name="src">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22833">the source address to copy the bytes from.</doc>
|
|
</parameter>
|
|
<parameter name="len">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22834">the number of bytes to copy.</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function name="mkdir_with_parents" c:identifier="g_mkdir_with_parents" version="2.8">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22878">Create a directory if it doesn't already exist. Create intermediate
|
|
parent directories as needed, too.</doc>
|
|
<source-position filename="gfileutils.h" line="140"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22886">0 if the directory already exists, or was successfully
|
|
created. Returns -1 if an error occurred, with errno set.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="pathname" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22880">a pathname in the GLib file name encoding</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="mode" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22881">permissions to use for newly created directories</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="mkdtemp" c:identifier="g_mkdtemp" version="2.30" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22892">Creates a temporary directory. See the mkdtemp() documentation
|
|
on most UNIX-like systems.
|
|
|
|
The parameter is a string that should follow the rules for
|
|
mkdtemp() templates, i.e. contain the string "XXXXXX".
|
|
g_mkdtemp() is slightly more flexible than mkdtemp() in that the
|
|
sequence does not have to occur at the very end of the template.
|
|
The X string will be modified to form the name of a directory that
|
|
didn't exist.
|
|
The string should be in the GLib file name encoding. Most importantly,
|
|
on Windows it should be in UTF-8.
|
|
|
|
If you are going to be creating a temporary directory inside the
|
|
directory returned by g_get_tmp_dir(), you might want to use
|
|
g_dir_make_tmp() instead.</doc>
|
|
<source-position filename="gfileutils.h" line="100"/>
|
|
<return-value transfer-ownership="full" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22912">A pointer to @tmpl, which has been
|
|
modified to hold the directory name. In case of errors, %NULL is
|
|
returned and %errno will be set.</doc>
|
|
<type name="filename" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="tmpl" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22894">template directory name</doc>
|
|
<type name="filename" c:type="gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="mkdtemp_full" c:identifier="g_mkdtemp_full" version="2.30" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22919">Creates a temporary directory. See the mkdtemp() documentation
|
|
on most UNIX-like systems.
|
|
|
|
The parameter is a string that should follow the rules for
|
|
mkdtemp() templates, i.e. contain the string "XXXXXX".
|
|
g_mkdtemp_full() is slightly more flexible than mkdtemp() in that the
|
|
sequence does not have to occur at the very end of the template
|
|
and you can pass a @mode. The X string will be modified to form
|
|
the name of a directory that didn't exist. The string should be
|
|
in the GLib file name encoding. Most importantly, on Windows it
|
|
should be in UTF-8.
|
|
|
|
If you are going to be creating a temporary directory inside the
|
|
directory returned by g_get_tmp_dir(), you might want to use
|
|
g_dir_make_tmp() instead.</doc>
|
|
<source-position filename="gfileutils.h" line="102"/>
|
|
<return-value transfer-ownership="full" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22940">A pointer to @tmpl, which has been
|
|
modified to hold the directory name. In case of errors, %NULL is
|
|
returned, and %errno will be set.</doc>
|
|
<type name="filename" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="tmpl" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22921">template directory name</doc>
|
|
<type name="filename" c:type="gchar*"/>
|
|
</parameter>
|
|
<parameter name="mode" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22922">permissions to create the temporary directory with</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="mkstemp" c:identifier="g_mkstemp" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22947">Opens a temporary file. See the mkstemp() documentation
|
|
on most UNIX-like systems.
|
|
|
|
The parameter is a string that should follow the rules for
|
|
mkstemp() templates, i.e. contain the string "XXXXXX".
|
|
g_mkstemp() is slightly more flexible than mkstemp() in that the
|
|
sequence does not have to occur at the very end of the template.
|
|
The X string will be modified to form the name of a file that
|
|
didn't exist. The string should be in the GLib file name encoding.
|
|
Most importantly, on Windows it should be in UTF-8.</doc>
|
|
<source-position filename="gfileutils.h" line="107"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22962">A file handle (as from open()) to the file
|
|
opened for reading and writing. The file is opened in binary
|
|
mode on platforms where there is a difference. The file handle
|
|
should be closed with close(). In case of errors, -1 is
|
|
returned and %errno will be set.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="tmpl" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22949">template filename</doc>
|
|
<type name="filename" c:type="gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="mkstemp_full" c:identifier="g_mkstemp_full" version="2.22" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22970">Opens a temporary file. See the mkstemp() documentation
|
|
on most UNIX-like systems.
|
|
|
|
The parameter is a string that should follow the rules for
|
|
mkstemp() templates, i.e. contain the string "XXXXXX".
|
|
g_mkstemp_full() is slightly more flexible than mkstemp()
|
|
in that the sequence does not have to occur at the very end of the
|
|
template and you can pass a @mode and additional @flags. The X
|
|
string will be modified to form the name of a file that didn't exist.
|
|
The string should be in the GLib file name encoding. Most importantly,
|
|
on Windows it should be in UTF-8.</doc>
|
|
<source-position filename="gfileutils.h" line="109"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22989">A file handle (as from open()) to the file
|
|
opened for reading and writing. The file handle should be
|
|
closed with close(). In case of errors, -1 is returned
|
|
and %errno will be set.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="tmpl" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22972">template filename</doc>
|
|
<type name="filename" c:type="gchar*"/>
|
|
</parameter>
|
|
<parameter name="flags" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22973">flags to pass to an open() call in addition to O_EXCL
|
|
and O_CREAT, which are passed automatically</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="mode" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="22975">permissions to create the temporary file with</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function-macro name="new" c:identifier="g_new" introspectable="0">
|
|
<doc xml:space="preserve" filename="gmem.h" line="266">Allocates @n_structs elements of type @struct_type.
|
|
The returned pointer is cast to a pointer to the given type.
|
|
If @n_structs is 0 it returns %NULL.
|
|
Care is taken to avoid overflow when calculating the size of the allocated block.
|
|
|
|
Since the returned pointer is already casted to the right type,
|
|
it is normally unnecessary to cast it explicitly, and doing
|
|
so might hide memory allocation errors.</doc>
|
|
<source-position filename="gmem.h" line="282"/>
|
|
<parameters>
|
|
<parameter name="struct_type">
|
|
<doc xml:space="preserve" filename="gmem.h" line="268">the type of the elements to allocate</doc>
|
|
</parameter>
|
|
<parameter name="n_structs">
|
|
<doc xml:space="preserve" filename="gmem.h" line="269">the number of elements to allocate</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="new0" c:identifier="g_new0" introspectable="0">
|
|
<doc xml:space="preserve" filename="gmem.h" line="283">Allocates @n_structs elements of type @struct_type, initialized to 0's.
|
|
The returned pointer is cast to a pointer to the given type.
|
|
If @n_structs is 0 it returns %NULL.
|
|
Care is taken to avoid overflow when calculating the size of the allocated block.
|
|
|
|
Since the returned pointer is already casted to the right type,
|
|
it is normally unnecessary to cast it explicitly, and doing
|
|
so might hide memory allocation errors.</doc>
|
|
<source-position filename="gmem.h" line="299"/>
|
|
<parameters>
|
|
<parameter name="struct_type">
|
|
<doc xml:space="preserve" filename="gmem.h" line="285">the type of the elements to allocate.</doc>
|
|
</parameter>
|
|
<parameter name="n_structs">
|
|
<doc xml:space="preserve" filename="gmem.h" line="286">the number of elements to allocate.</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="newa" c:identifier="g_newa" introspectable="0">
|
|
<doc xml:space="preserve" filename="galloca.h" line="92">Wraps g_alloca() in a more typesafe manner.</doc>
|
|
<source-position filename="galloca.h" line="101"/>
|
|
<parameters>
|
|
<parameter name="struct_type">
|
|
<doc xml:space="preserve" filename="galloca.h" line="94">Type of memory chunks to be allocated</doc>
|
|
</parameter>
|
|
<parameter name="n_structs">
|
|
<doc xml:space="preserve" filename="galloca.h" line="95">Number of chunks to be allocated</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="node_append" c:identifier="g_node_append" introspectable="0">
|
|
<doc xml:space="preserve" filename="gnode.h" line="142">Inserts a #GNode as the last child of the given parent.</doc>
|
|
<source-position filename="gnode.h" line="151"/>
|
|
<parameters>
|
|
<parameter name="parent">
|
|
<doc xml:space="preserve" filename="gnode.h" line="144">the #GNode to place the new #GNode under</doc>
|
|
</parameter>
|
|
<parameter name="node">
|
|
<doc xml:space="preserve" filename="gnode.h" line="145">the #GNode to insert</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="node_append_data" c:identifier="g_node_append_data" introspectable="0">
|
|
<doc xml:space="preserve" filename="gnode.h" line="206">Inserts a new #GNode as the last child of the given parent.</doc>
|
|
<source-position filename="gnode.h" line="215"/>
|
|
<parameters>
|
|
<parameter name="parent">
|
|
<doc xml:space="preserve" filename="gnode.h" line="208">the #GNode to place the new #GNode under</doc>
|
|
</parameter>
|
|
<parameter name="data">
|
|
<doc xml:space="preserve" filename="gnode.h" line="209">the data for the new #GNode</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="node_first_child" c:identifier="g_node_first_child" introspectable="0">
|
|
<doc xml:space="preserve" filename="gnode.h" line="293">Gets the first child of a #GNode.</doc>
|
|
<source-position filename="gnode.h" line="302"/>
|
|
<parameters>
|
|
<parameter name="node">
|
|
<doc xml:space="preserve" filename="gnode.h" line="295">a #GNode</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="node_insert_data" c:identifier="g_node_insert_data" introspectable="0">
|
|
<doc xml:space="preserve" filename="gnode.h" line="154">Inserts a new #GNode at the given position.</doc>
|
|
<source-position filename="gnode.h" line="165"/>
|
|
<parameters>
|
|
<parameter name="parent">
|
|
<doc xml:space="preserve" filename="gnode.h" line="156">the #GNode to place the new #GNode under</doc>
|
|
</parameter>
|
|
<parameter name="position">
|
|
<doc xml:space="preserve" filename="gnode.h" line="157">the position to place the new #GNode at. If position is -1,
|
|
the new #GNode is inserted as the last child of @parent</doc>
|
|
</parameter>
|
|
<parameter name="data">
|
|
<doc xml:space="preserve" filename="gnode.h" line="159">the data for the new #GNode</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="node_insert_data_after" c:identifier="g_node_insert_data_after" introspectable="0">
|
|
<doc xml:space="preserve" filename="gnode.h" line="168">Inserts a new #GNode after the given sibling.</doc>
|
|
<source-position filename="gnode.h" line="179"/>
|
|
<parameters>
|
|
<parameter name="parent">
|
|
<doc xml:space="preserve" filename="gnode.h" line="170">the #GNode to place the new #GNode under</doc>
|
|
</parameter>
|
|
<parameter name="sibling">
|
|
<doc xml:space="preserve" filename="gnode.h" line="171">the sibling #GNode to place the new #GNode after</doc>
|
|
</parameter>
|
|
<parameter name="data">
|
|
<doc xml:space="preserve" filename="gnode.h" line="172">the data for the new #GNode</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="node_insert_data_before" c:identifier="g_node_insert_data_before" introspectable="0">
|
|
<doc xml:space="preserve" filename="gnode.h" line="181">Inserts a new #GNode before the given sibling.</doc>
|
|
<source-position filename="gnode.h" line="191"/>
|
|
<parameters>
|
|
<parameter name="parent">
|
|
<doc xml:space="preserve" filename="gnode.h" line="183">the #GNode to place the new #GNode under</doc>
|
|
</parameter>
|
|
<parameter name="sibling">
|
|
<doc xml:space="preserve" filename="gnode.h" line="184">the sibling #GNode to place the new #GNode before</doc>
|
|
</parameter>
|
|
<parameter name="data">
|
|
<doc xml:space="preserve" filename="gnode.h" line="185">the data for the new #GNode</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="node_next_sibling" c:identifier="g_node_next_sibling" introspectable="0">
|
|
<doc xml:space="preserve" filename="gnode.h" line="281">Gets the next sibling of a #GNode.</doc>
|
|
<source-position filename="gnode.h" line="290"/>
|
|
<parameters>
|
|
<parameter name="node">
|
|
<doc xml:space="preserve" filename="gnode.h" line="283">a #GNode</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="node_prepend_data" c:identifier="g_node_prepend_data" introspectable="0">
|
|
<doc xml:space="preserve" filename="gnode.h" line="194">Inserts a new #GNode as the first child of the given parent.</doc>
|
|
<source-position filename="gnode.h" line="203"/>
|
|
<parameters>
|
|
<parameter name="parent">
|
|
<doc xml:space="preserve" filename="gnode.h" line="196">the #GNode to place the new #GNode under</doc>
|
|
</parameter>
|
|
<parameter name="data">
|
|
<doc xml:space="preserve" filename="gnode.h" line="197">the data for the new #GNode</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="node_prev_sibling" c:identifier="g_node_prev_sibling" introspectable="0">
|
|
<doc xml:space="preserve" filename="gnode.h" line="269">Gets the previous sibling of a #GNode.</doc>
|
|
<source-position filename="gnode.h" line="278"/>
|
|
<parameters>
|
|
<parameter name="node">
|
|
<doc xml:space="preserve" filename="gnode.h" line="271">a #GNode</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="ntohl" c:identifier="g_ntohl" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23408">Converts a 32-bit integer value from network to host byte order.</doc>
|
|
<source-position filename="gtypes.h" line="416"/>
|
|
<parameters>
|
|
<parameter name="val">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23410">a 32-bit integer value in network byte order</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="ntohs" c:identifier="g_ntohs" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23418">Converts a 16-bit integer value from network to host byte order.</doc>
|
|
<source-position filename="gtypes.h" line="417"/>
|
|
<parameters>
|
|
<parameter name="val">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23420">a 16-bit integer value in network byte order</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function name="nullify_pointer" c:identifier="g_nullify_pointer">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23428">Set the pointer at the specified location to %NULL.</doc>
|
|
<source-position filename="gutils.h" line="178"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="nullify_location" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23430">the memory address of the pointer.</doc>
|
|
<type name="gpointer" c:type="gpointer*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="number_parser_error_quark" c:identifier="g_number_parser_error_quark">
|
|
<return-value transfer-ownership="none">
|
|
<type name="Quark" c:type="GQuark"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="on_error_query" c:identifier="g_on_error_query">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23436">Prompts the user with
|
|
`[E]xit, [H]alt, show [S]tack trace or [P]roceed`.
|
|
This function is intended to be used for debugging use only.
|
|
The following example shows how it can be used together with
|
|
the g_log() functions.
|
|
|
|
|[<!-- language="C" -->
|
|
#include <glib.h>
|
|
|
|
static void
|
|
log_handler (const gchar *log_domain,
|
|
GLogLevelFlags log_level,
|
|
const gchar *message,
|
|
gpointer user_data)
|
|
{
|
|
g_log_default_handler (log_domain, log_level, message, user_data);
|
|
|
|
g_on_error_query (MY_PROGRAM_NAME);
|
|
}
|
|
|
|
int
|
|
main (int argc, char *argv[])
|
|
{
|
|
g_log_set_handler (MY_LOG_DOMAIN,
|
|
G_LOG_LEVEL_WARNING |
|
|
G_LOG_LEVEL_ERROR |
|
|
G_LOG_LEVEL_CRITICAL,
|
|
log_handler,
|
|
NULL);
|
|
...
|
|
]|
|
|
|
|
If "[E]xit" is selected, the application terminates with a call
|
|
to _exit(0).
|
|
|
|
If "[S]tack" trace is selected, g_on_error_stack_trace() is called.
|
|
This invokes gdb, which attaches to the current process and shows
|
|
a stack trace. The prompt is then shown again.
|
|
|
|
If "[P]roceed" is selected, the function returns.
|
|
|
|
This function may cause different actions on non-UNIX platforms.
|
|
|
|
On Windows consider using the `G_DEBUGGER` environment
|
|
variable (see [Running GLib Applications](glib-running.html)) and
|
|
calling g_on_error_stack_trace() instead.</doc>
|
|
<source-position filename="gbacktrace.h" line="41"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="prg_name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23438">the program name, needed by gdb for the "[S]tack trace"
|
|
option. If @prg_name is %NULL, g_get_prgname() is called to get
|
|
the program name (which will work correctly if gdk_init() or
|
|
gtk_init() has been called)</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="on_error_stack_trace" c:identifier="g_on_error_stack_trace">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23492">Invokes gdb, which attaches to the current process and shows a
|
|
stack trace. Called by g_on_error_query() when the "[S]tack trace"
|
|
option is selected. You can get the current process's program name
|
|
with g_get_prgname(), assuming that you have called gtk_init() or
|
|
gdk_init().
|
|
|
|
This function may cause different actions on non-UNIX platforms.
|
|
|
|
When running on Windows, this function is *not* called by
|
|
g_on_error_query(). If called directly, it will raise an
|
|
exception, which will crash the program. If the `G_DEBUGGER` environment
|
|
variable is set, a debugger will be invoked to attach and
|
|
handle that exception (see [Running GLib Applications](glib-running.html)).</doc>
|
|
<source-position filename="gbacktrace.h" line="43"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="prg_name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23494">the program name, needed by gdb for the "[S]tack trace"
|
|
option</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function-macro name="once" c:identifier="g_once" version="2.4" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23513">The first call to this routine by a process with a given #GOnce
|
|
struct calls @func with the given argument. Thereafter, subsequent
|
|
calls to g_once() with the same #GOnce struct do not call @func
|
|
again, but return the stored result of the first call. On return
|
|
from g_once(), the status of @once will be %G_ONCE_STATUS_READY.
|
|
|
|
For example, a mutex or a thread-specific data key must be created
|
|
exactly once. In a threaded environment, calling g_once() ensures
|
|
that the initialization is serialized across multiple threads.
|
|
|
|
Calling g_once() recursively on the same #GOnce struct in
|
|
@func will lead to a deadlock.
|
|
|
|
|[<!-- language="C" -->
|
|
gpointer
|
|
get_debug_flags (void)
|
|
{
|
|
static GOnce my_once = G_ONCE_INIT;
|
|
|
|
g_once (&my_once, parse_debug_flags, NULL);
|
|
|
|
return my_once.retval;
|
|
}
|
|
]|</doc>
|
|
<source-position filename="gthread.h" line="238"/>
|
|
<parameters>
|
|
<parameter name="once">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23515">a #GOnce structure</doc>
|
|
</parameter>
|
|
<parameter name="func">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23516">the #GThreadFunc function associated to @once. This function
|
|
is called only once, regardless of the number of times it and
|
|
its associated #GOnce struct are passed to g_once().</doc>
|
|
</parameter>
|
|
<parameter name="arg">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23519">data to be passed to @func</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function name="once_init_enter" c:identifier="g_once_init_enter" moved-to="Once.init_enter" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23550">Function to be called when starting a critical initialization
|
|
section. The argument @location must point to a static
|
|
0-initialized variable that will be set to a value other than 0 at
|
|
the end of the initialization section. In combination with
|
|
g_once_init_leave() and the unique address @value_location, it can
|
|
be ensured that an initialization section will be executed only once
|
|
during a program's life time, and that concurrent threads are
|
|
blocked until initialization completed. To be used in constructs
|
|
like this:
|
|
|
|
|[<!-- language="C" -->
|
|
static gsize initialization_value = 0;
|
|
|
|
if (g_once_init_enter (&initialization_value))
|
|
{
|
|
gsize setup_value = 42; // initialization code here
|
|
|
|
g_once_init_leave (&initialization_value, setup_value);
|
|
}
|
|
|
|
// use initialization_value here
|
|
]|</doc>
|
|
<source-position filename="gthread.h" line="232"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23578">%TRUE if the initialization section should be entered,
|
|
%FALSE and blocks otherwise</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="location" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23552">location of a static initializable variable
|
|
containing 0</doc>
|
|
<type name="gpointer" c:type="void*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="once_init_leave" c:identifier="g_once_init_leave" moved-to="Once.init_leave" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23584">Counterpart to g_once_init_enter(). Expects a location of a static
|
|
0-initialized initialization variable, and an initialization value
|
|
other than 0. Sets the variable to the initialization value, and
|
|
releases concurrent threads blocking in g_once_init_enter() on this
|
|
initialization variable.</doc>
|
|
<source-position filename="gthread.h" line="234"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="location" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23586">location of a static initializable variable
|
|
containing 0</doc>
|
|
<type name="gpointer" c:type="void*"/>
|
|
</parameter>
|
|
<parameter name="result" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="23588">new non-0 value for *@value_location</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="option_error_quark" c:identifier="g_option_error_quark">
|
|
<return-value transfer-ownership="none">
|
|
<type name="Quark" c:type="GQuark"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="parse_debug_string" c:identifier="g_parse_debug_string">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24142">Parses a string containing debugging options
|
|
into a %guint containing bit flags. This is used
|
|
within GDK and GTK+ to parse the debug options passed on the
|
|
command line or through environment variables.
|
|
|
|
If @string is equal to "all", all flags are set. Any flags
|
|
specified along with "all" in @string are inverted; thus,
|
|
"all,foo,bar" or "foo,bar,all" sets all flags except those
|
|
corresponding to "foo" and "bar".
|
|
|
|
If @string is equal to "help", all the available keys in @keys
|
|
are printed out to standard error.</doc>
|
|
<source-position filename="gutils.h" line="161"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24163">the combined set of bit flags.</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="string" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24144">a list of debug options separated by colons, spaces, or
|
|
commas, or %NULL.</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="keys" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24146">pointer to an array of #GDebugKey which associate
|
|
strings with bit flags.</doc>
|
|
<array length="2" zero-terminated="0" c:type="const GDebugKey*">
|
|
<type name="DebugKey" c:type="GDebugKey"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="nkeys" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24148">the number of #GDebugKeys in the array.</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="path_get_basename" c:identifier="g_path_get_basename">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24167">Gets the last component of the filename.
|
|
|
|
If @file_name ends with a directory separator it gets the component
|
|
before the last slash. If @file_name consists only of directory
|
|
separators (and on Windows, possibly a drive letter), a single
|
|
separator is returned. If @file_name is empty, it gets ".".</doc>
|
|
<source-position filename="gfileutils.h" line="169"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24178">a newly allocated string containing the last
|
|
component of the filename</doc>
|
|
<type name="filename" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="file_name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24169">the name of the file</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="path_get_dirname" c:identifier="g_path_get_dirname">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24183">Gets the directory components of a file name. For example, the directory
|
|
component of `/usr/bin/test` is `/usr/bin`. The directory component of `/`
|
|
is `/`.
|
|
|
|
If the file name has no directory components "." is returned.
|
|
The returned string should be freed when no longer needed.</doc>
|
|
<source-position filename="gfileutils.h" line="171"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24194">the directory components of the file</doc>
|
|
<type name="filename" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="file_name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24185">the name of the file</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="path_is_absolute" c:identifier="g_path_is_absolute">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24198">Returns %TRUE if the given @file_name is an absolute file name.
|
|
Note that this is a somewhat vague concept on Windows.
|
|
|
|
On POSIX systems, an absolute file name is well-defined. It always
|
|
starts from the single root directory. For example "/usr/local".
|
|
|
|
On Windows, the concepts of current drive and drive-specific
|
|
current directory introduce vagueness. This function interprets as
|
|
an absolute file name one that either begins with a directory
|
|
separator such as "\Users\tml" or begins with the root on a drive,
|
|
for example "C:\Windows". The first case also includes UNC paths
|
|
such as "\\\\myserver\docs\foo". In all cases, either slashes or
|
|
backslashes are accepted.
|
|
|
|
Note that a file name relative to the current drive root does not
|
|
truly specify a file uniquely over time and across processes, as
|
|
the current drive is a per-process value and can be changed.
|
|
|
|
File names relative the current directory on some specific drive,
|
|
such as "D:foo/bar", are not interpreted as absolute by this
|
|
function, but they obviously are not relative to the normal current
|
|
directory as returned by getcwd() or g_get_current_dir()
|
|
either. Such paths should be avoided, or need to be handled using
|
|
Windows-specific code.</doc>
|
|
<source-position filename="gfileutils.h" line="158"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24227">%TRUE if @file_name is absolute</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="file_name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24200">a file name</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="path_skip_root" c:identifier="g_path_skip_root">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24231">Returns a pointer into @file_name after the root component,
|
|
i.e. after the "/" in UNIX or "C:\" under Windows. If @file_name
|
|
is not an absolute path it returns %NULL.</doc>
|
|
<source-position filename="gfileutils.h" line="160"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24239">a pointer into @file_name after the
|
|
root component</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="file_name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24233">a file name</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="pattern_match" c:identifier="g_pattern_match">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24244">Matches a string against a compiled pattern. Passing the correct
|
|
length of the string given is mandatory. The reversed string can be
|
|
omitted by passing %NULL, this is more efficient if the reversed
|
|
version of the string to be matched is not at hand, as
|
|
g_pattern_match() will only construct it if the compiled pattern
|
|
requires reverse matches.
|
|
|
|
Note that, if the user code will (possibly) match a string against a
|
|
multitude of patterns containing wildcards, chances are high that
|
|
some patterns will require a reversed string. In this case, it's
|
|
more efficient to provide the reversed string to avoid multiple
|
|
constructions thereof in the various calls to g_pattern_match().
|
|
|
|
Note also that the reverse of a UTF-8 encoded string can in general
|
|
not be obtained by g_strreverse(). This works only if the string
|
|
does not contain any multibyte characters. GLib offers the
|
|
g_utf8_strreverse() function to reverse UTF-8 encoded strings.</doc>
|
|
<source-position filename="gpattern.h" line="40"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24270">%TRUE if @string matches @pspec</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="pspec" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24246">a #GPatternSpec</doc>
|
|
<type name="PatternSpec" c:type="GPatternSpec*"/>
|
|
</parameter>
|
|
<parameter name="string_length" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24247">the length of @string (in bytes, i.e. strlen(),
|
|
not g_utf8_strlen())</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
<parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24249">the UTF-8 encoded string to match</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="string_reversed" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24250">the reverse of @string or %NULL</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="pattern_match_simple" c:identifier="g_pattern_match_simple">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24274">Matches a string against a pattern given as a string. If this
|
|
function is to be called in a loop, it's more efficient to compile
|
|
the pattern once with g_pattern_spec_new() and call
|
|
g_pattern_match_string() repeatedly.</doc>
|
|
<source-position filename="gpattern.h" line="48"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24284">%TRUE if @string matches @pspec</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="pattern" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24276">the UTF-8 encoded pattern</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24277">the UTF-8 encoded string to match</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="pattern_match_string" c:identifier="g_pattern_match_string">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24288">Matches a string against a compiled pattern. If the string is to be
|
|
matched against more than one pattern, consider using
|
|
g_pattern_match() instead while supplying the reversed string.</doc>
|
|
<source-position filename="gpattern.h" line="45"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24297">%TRUE if @string matches @pspec</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="pspec" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24290">a #GPatternSpec</doc>
|
|
<type name="PatternSpec" c:type="GPatternSpec*"/>
|
|
</parameter>
|
|
<parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24291">the UTF-8 encoded string to match</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="pointer_bit_lock" c:identifier="g_pointer_bit_lock" version="2.30">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24331">This is equivalent to g_bit_lock, but working on pointers (or other
|
|
pointer-sized values).
|
|
|
|
For portability reasons, you may only lock on the bottom 32 bits of
|
|
the pointer.</doc>
|
|
<source-position filename="gbitlock.h" line="43"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="address" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24333">a pointer to a #gpointer-sized value</doc>
|
|
<type name="gpointer" c:type="void*"/>
|
|
</parameter>
|
|
<parameter name="lock_bit" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24334">a bit value between 0 and 31</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="pointer_bit_trylock" c:identifier="g_pointer_bit_trylock" version="2.30">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24346">This is equivalent to g_bit_trylock, but working on pointers (or
|
|
other pointer-sized values).
|
|
|
|
For portability reasons, you may only lock on the bottom 32 bits of
|
|
the pointer.</doc>
|
|
<source-position filename="gbitlock.h" line="46"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24357">%TRUE if the lock was acquired</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="address" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24348">a pointer to a #gpointer-sized value</doc>
|
|
<type name="gpointer" c:type="void*"/>
|
|
</parameter>
|
|
<parameter name="lock_bit" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24349">a bit value between 0 and 31</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="pointer_bit_unlock" c:identifier="g_pointer_bit_unlock" version="2.30">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24362">This is equivalent to g_bit_unlock, but working on pointers (or other
|
|
pointer-sized values).
|
|
|
|
For portability reasons, you may only lock on the bottom 32 bits of
|
|
the pointer.</doc>
|
|
<source-position filename="gbitlock.h" line="49"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="address" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24364">a pointer to a #gpointer-sized value</doc>
|
|
<type name="gpointer" c:type="void*"/>
|
|
</parameter>
|
|
<parameter name="lock_bit" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24365">a bit value between 0 and 31</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="poll" c:identifier="g_poll" version="2.20">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24377">Polls @fds, as with the poll() system call, but portably. (On
|
|
systems that don't have poll(), it is emulated using select().)
|
|
This is used internally by #GMainContext, but it can be called
|
|
directly if you need to block until a file descriptor is ready, but
|
|
don't want to run the full main loop.
|
|
|
|
Each element of @fds is a #GPollFD describing a single file
|
|
descriptor to poll. The @fd field indicates the file descriptor,
|
|
and the @events field indicates the events to poll for. On return,
|
|
the @revents fields will be filled with the events that actually
|
|
occurred.
|
|
|
|
On POSIX systems, the file descriptors in @fds can be any sort of
|
|
file descriptor, but the situation is much more complicated on
|
|
Windows. If you need to use g_poll() in code that has to run on
|
|
Windows, the easiest solution is to construct all of your
|
|
#GPollFDs with g_io_channel_win32_make_pollfd().</doc>
|
|
<source-position filename="gpoll.h" line="114"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24401">the number of entries in @fds whose @revents fields
|
|
were filled in, or 0 if the operation timed out, or -1 on error or
|
|
if the call was interrupted.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="fds" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24379">file descriptors to poll</doc>
|
|
<type name="PollFD" c:type="GPollFD*"/>
|
|
</parameter>
|
|
<parameter name="nfds" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24380">the number of file descriptors in @fds</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
<parameter name="timeout" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24381">amount of time to wait, in milliseconds, or -1 to wait forever</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="prefix_error" c:identifier="g_prefix_error" version="2.16" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24408">Formats a string according to @format and prefix it to an existing
|
|
error message. If @err is %NULL (ie: no error variable) then do
|
|
nothing.
|
|
|
|
If *@err is %NULL (ie: an error variable is present but there is no
|
|
error condition) then also do nothing.</doc>
|
|
<source-position filename="gerror.h" line="104"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="err" direction="inout" caller-allocates="0" transfer-ownership="full" nullable="1" allow-none="1" optional="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24410">a return location for a #GError</doc>
|
|
<type name="Error" c:type="GError**"/>
|
|
</parameter>
|
|
<parameter name="format" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24411">printf()-style format string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="..." transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24412">arguments to @format</doc>
|
|
<varargs/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="print" c:identifier="g_print" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24425">Outputs a formatted message via the print handler.
|
|
The default print handler simply outputs the message to stdout, without
|
|
appending a trailing new-line character. Typically, @format should end with
|
|
its own new-line character.
|
|
|
|
g_print() should not be used from within libraries for debugging
|
|
messages, since it may be redirected by applications to special
|
|
purpose message windows or even files. Instead, libraries should
|
|
use g_log(), g_log_structured(), or the convenience macros g_message(),
|
|
g_warning() and g_error().</doc>
|
|
<source-position filename="gmessages.h" line="465"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="format" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24427">the message format. See the printf() documentation</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="..." transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24428">the parameters to insert into the format string</doc>
|
|
<varargs/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="printerr" c:identifier="g_printerr" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24443">Outputs a formatted message via the error message handler.
|
|
The default handler simply outputs the message to stderr, without appending
|
|
a trailing new-line character. Typically, @format should end with its own
|
|
new-line character.
|
|
|
|
g_printerr() should not be used from within libraries.
|
|
Instead g_log() or g_log_structured() should be used, or the convenience
|
|
macros g_message(), g_warning() and g_error().</doc>
|
|
<source-position filename="gmessages.h" line="470"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="format" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24445">the message format. See the printf() documentation</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="..." transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24446">the parameters to insert into the format string</doc>
|
|
<varargs/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="printf" c:identifier="g_printf" version="2.2" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24459">An implementation of the standard printf() function which supports
|
|
positional parameters, as specified in the Single Unix Specification.
|
|
|
|
As with the standard printf(), this does not automatically append a trailing
|
|
new-line character to the message, so typically @format should end with its
|
|
own new-line character.
|
|
|
|
`glib/gprintf.h` must be explicitly included in order to use this function.</doc>
|
|
<source-position filename="gprintf.h" line="28"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24474">the number of bytes printed.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="format" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24461">a standard printf() format string, but notice
|
|
[string precision pitfalls][string-precision]</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="..." transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24463">the arguments to insert in the output.</doc>
|
|
<varargs/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="printf_string_upper_bound" c:identifier="g_printf_string_upper_bound" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24479">Calculates the maximum space needed to store the output
|
|
of the sprintf() function.</doc>
|
|
<source-position filename="gmessages.h" line="42"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24487">the maximum space needed to store the formatted string</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="format" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24481">the format string. See the printf() documentation</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="args" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24482">the parameters to be inserted into the format string</doc>
|
|
<type name="va_list" c:type="va_list"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="propagate_error" c:identifier="g_propagate_error">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24534">If @dest is %NULL, free @src; otherwise, moves @src into *@dest.
|
|
The error variable @dest points to must be %NULL.
|
|
|
|
@src must be non-%NULL.
|
|
|
|
Note that @src is no longer valid after this call. If you want
|
|
to keep using the same GError*, you need to set it to %NULL
|
|
after calling this function on it.</doc>
|
|
<source-position filename="gerror.h" line="95"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="dest" direction="out" caller-allocates="0" transfer-ownership="full" nullable="1" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24536">error return location</doc>
|
|
<type name="Error" c:type="GError**"/>
|
|
</parameter>
|
|
<parameter name="src" transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24537">error to move into the return location</doc>
|
|
<type name="Error" c:type="GError*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="propagate_prefixed_error" c:identifier="g_propagate_prefixed_error" version="2.16" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24550">If @dest is %NULL, free @src; otherwise, moves @src into *@dest.
|
|
*@dest must be %NULL. After the move, add a prefix as with
|
|
g_prefix_error().</doc>
|
|
<source-position filename="gerror.h" line="110"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="dest" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24552">error return location</doc>
|
|
<type name="Error" c:type="GError**"/>
|
|
</parameter>
|
|
<parameter name="src" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24553">error to move into the return location</doc>
|
|
<type name="Error" c:type="GError*"/>
|
|
</parameter>
|
|
<parameter name="format" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24554">printf()-style format string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="..." transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24555">arguments to @format</doc>
|
|
<varargs/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="ptr_array_find" c:identifier="g_ptr_array_find" moved-to="PtrArray.find" version="2.54" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24642">Checks whether @needle exists in @haystack. If the element is found, %TRUE is
|
|
returned and the element’s index is returned in @index_ (if non-%NULL).
|
|
Otherwise, %FALSE is returned and @index_ is undefined. If @needle exists
|
|
multiple times in @haystack, the index of the first instance is returned.
|
|
|
|
This does pointer comparisons only. If you want to use more complex equality
|
|
checks, such as string comparisons, use g_ptr_array_find_with_equal_func().</doc>
|
|
<source-position filename="garray.h" line="211"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24657">%TRUE if @needle is one of the elements of @haystack</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="haystack" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24644">pointer array to be searched</doc>
|
|
<array name="GLib.PtrArray" c:type="GPtrArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="needle" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24645">pointer to look for</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
<parameter name="index_" direction="out" caller-allocates="1" transfer-ownership="none" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24646">return location for the index of
|
|
the element, if found</doc>
|
|
<type name="guint" c:type="guint*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="ptr_array_find_with_equal_func" c:identifier="g_ptr_array_find_with_equal_func" moved-to="PtrArray.find_with_equal_func" version="2.54" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24662">Checks whether @needle exists in @haystack, using the given @equal_func.
|
|
If the element is found, %TRUE is returned and the element’s index is
|
|
returned in @index_ (if non-%NULL). Otherwise, %FALSE is returned and @index_
|
|
is undefined. If @needle exists multiple times in @haystack, the index of
|
|
the first instance is returned.
|
|
|
|
@equal_func is called with the element from the array as its first parameter,
|
|
and @needle as its second parameter. If @equal_func is %NULL, pointer
|
|
equality is used.</doc>
|
|
<source-position filename="garray.h" line="215"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24682">%TRUE if @needle is one of the elements of @haystack</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="haystack" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24664">pointer array to be searched</doc>
|
|
<array name="GLib.PtrArray" c:type="GPtrArray*">
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="needle" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24665">pointer to look for</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
<parameter name="equal_func" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24666">the function to call for each element, which should
|
|
return %TRUE when the desired element is found; or %NULL to use pointer
|
|
equality</doc>
|
|
<type name="EqualFunc" c:type="GEqualFunc"/>
|
|
</parameter>
|
|
<parameter name="index_" direction="out" caller-allocates="1" transfer-ownership="none" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24669">return location for the index of
|
|
the element, if found</doc>
|
|
<type name="guint" c:type="guint*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function-macro name="ptr_array_index" c:identifier="g_ptr_array_index" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24725">Returns the pointer at the given index of the pointer array.
|
|
|
|
This does not perform bounds checking on the given @index_,
|
|
so you are responsible for checking it against the array length.</doc>
|
|
<source-position filename="garray.h" line="135"/>
|
|
<parameters>
|
|
<parameter name="array">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24727">a #GPtrArray</doc>
|
|
</parameter>
|
|
<parameter name="index_">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="24728">the index of the pointer to return</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function name="qsort_with_data" c:identifier="g_qsort_with_data" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25010">This is just like the standard C qsort() function, but
|
|
the comparison routine accepts a user data argument.
|
|
|
|
This is guaranteed to be a stable sort since version 2.32.</doc>
|
|
<source-position filename="gqsort.h" line="37"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="pbase" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25012">start of array to sort</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
<parameter name="total_elems" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25013">elements in the array</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="size" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25014">size of each element</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
<parameter name="compare_func" transfer-ownership="none" closure="4">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25015">function to compare elements</doc>
|
|
<type name="CompareDataFunc" c:type="GCompareDataFunc"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25016">data to pass to @compare_func</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="quark_from_static_string" c:identifier="g_quark_from_static_string">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25025">Gets the #GQuark identifying the given (static) string. If the
|
|
string does not currently have an associated #GQuark, a new #GQuark
|
|
is created, linked to the given string.
|
|
|
|
Note that this function is identical to g_quark_from_string() except
|
|
that if a new #GQuark is created the string itself is used rather
|
|
than a copy. This saves memory, but can only be used if the string
|
|
will continue to exist until the program terminates. It can be used
|
|
with statically allocated strings in the main program, but not with
|
|
statically allocated memory in dynamically loaded modules, if you
|
|
expect to ever unload the module again (e.g. do not use this
|
|
function in GTK+ theme engines).
|
|
|
|
This function must not be used before library constructors have finished
|
|
running. In particular, this means it cannot be used to initialize global
|
|
variables in C++.</doc>
|
|
<source-position filename="gquark.h" line="43"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25046">the #GQuark identifying the string, or 0 if @string is %NULL</doc>
|
|
<type name="Quark" c:type="GQuark"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="string" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25027">a string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="quark_from_string" c:identifier="g_quark_from_string">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25050">Gets the #GQuark identifying the given string. If the string does
|
|
not currently have an associated #GQuark, a new #GQuark is created,
|
|
using a copy of the string.
|
|
|
|
This function must not be used before library constructors have finished
|
|
running. In particular, this means it cannot be used to initialize global
|
|
variables in C++.</doc>
|
|
<source-position filename="gquark.h" line="45"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25062">the #GQuark identifying the string, or 0 if @string is %NULL</doc>
|
|
<type name="Quark" c:type="GQuark"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="string" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25052">a string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="quark_to_string" c:identifier="g_quark_to_string">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25066">Gets the string associated with the given #GQuark.</doc>
|
|
<source-position filename="gquark.h" line="47"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25072">the string associated with the #GQuark</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="quark" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25068">a #GQuark.</doc>
|
|
<type name="Quark" c:type="GQuark"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="quark_try_string" c:identifier="g_quark_try_string">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25076">Gets the #GQuark associated with the given string, or 0 if string is
|
|
%NULL or it has no associated #GQuark.
|
|
|
|
If you want the GQuark to be created if it doesn't already exist,
|
|
use g_quark_from_string() or g_quark_from_static_string().
|
|
|
|
This function must not be used before library constructors have finished
|
|
running.</doc>
|
|
<source-position filename="gquark.h" line="41"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25089">the #GQuark associated with the string, or 0 if @string is
|
|
%NULL or there is no #GQuark associated with it</doc>
|
|
<type name="Quark" c:type="GQuark"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="string" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25078">a string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function-macro name="rand_boolean" c:identifier="g_rand_boolean" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25630">Returns a random #gboolean from @rand_.
|
|
This corresponds to a unbiased coin toss.</doc>
|
|
<source-position filename="grand.h" line="66"/>
|
|
<parameters>
|
|
<parameter name="rand_">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25632">a #GRand</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function name="random_double" c:identifier="g_random_double">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25781">Returns a random #gdouble equally distributed over the range [0..1).</doc>
|
|
<source-position filename="grand.h" line="91"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25786">a random number</doc>
|
|
<type name="gdouble" c:type="gdouble"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="random_double_range" c:identifier="g_random_double_range">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25790">Returns a random #gdouble equally distributed over the range
|
|
[@begin..@end).</doc>
|
|
<source-position filename="grand.h" line="93"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25798">a random number</doc>
|
|
<type name="gdouble" c:type="gdouble"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="begin" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25792">lower closed bound of the interval</doc>
|
|
<type name="gdouble" c:type="gdouble"/>
|
|
</parameter>
|
|
<parameter name="end" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25793">upper open bound of the interval</doc>
|
|
<type name="gdouble" c:type="gdouble"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="random_int" c:identifier="g_random_int">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25802">Return a random #guint32 equally distributed over the range
|
|
[0..2^32-1].</doc>
|
|
<source-position filename="grand.h" line="86"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25808">a random number</doc>
|
|
<type name="guint32" c:type="guint32"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="random_int_range" c:identifier="g_random_int_range">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25812">Returns a random #gint32 equally distributed over the range
|
|
[@begin..@end-1].</doc>
|
|
<source-position filename="grand.h" line="88"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25820">a random number</doc>
|
|
<type name="gint32" c:type="gint32"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="begin" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25814">lower closed bound of the interval</doc>
|
|
<type name="gint32" c:type="gint32"/>
|
|
</parameter>
|
|
<parameter name="end" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25815">upper open bound of the interval</doc>
|
|
<type name="gint32" c:type="gint32"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="random_set_seed" c:identifier="g_random_set_seed">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25824">Sets the seed for the global random number generator, which is used
|
|
by the g_random_* functions, to @seed.</doc>
|
|
<source-position filename="grand.h" line="81"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="seed" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25826">a value to reinitialize the global random number generator</doc>
|
|
<type name="guint32" c:type="guint32"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="rc_box_acquire" c:identifier="g_rc_box_acquire" version="2.58">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25833">Acquires a reference on the data pointed by @mem_block.</doc>
|
|
<source-position filename="grcbox.h" line="37"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25839">a pointer to the data,
|
|
with its reference count increased</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="mem_block" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25835">a pointer to reference counted data</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="rc_box_alloc" c:identifier="g_rc_box_alloc" version="2.58">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25845">Allocates @block_size bytes of memory, and adds reference
|
|
counting semantics to it.
|
|
|
|
The data will be freed when its reference count drops to
|
|
zero.
|
|
|
|
The allocated data is guaranteed to be suitably aligned for any
|
|
built-in type.</doc>
|
|
<source-position filename="grcbox.h" line="30"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25858">a pointer to the allocated memory</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="block_size" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25847">the size of the allocation, must be greater than 0</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="rc_box_alloc0" c:identifier="g_rc_box_alloc0" version="2.58">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25863">Allocates @block_size bytes of memory, and adds reference
|
|
counting semantics to it.
|
|
|
|
The contents of the returned data is set to zero.
|
|
|
|
The data will be freed when its reference count drops to
|
|
zero.
|
|
|
|
The allocated data is guaranteed to be suitably aligned for any
|
|
built-in type.</doc>
|
|
<source-position filename="grcbox.h" line="32"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25878">a pointer to the allocated memory</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="block_size" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25865">the size of the allocation, must be greater than 0</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="rc_box_dup" c:identifier="g_rc_box_dup" version="2.58">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25883">Allocates a new block of data with reference counting
|
|
semantics, and copies @block_size bytes of @mem_block
|
|
into it.</doc>
|
|
<source-position filename="grcbox.h" line="34"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25892">a pointer to the allocated
|
|
memory</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="block_size" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25885">the number of bytes to copy, must be greater than 0</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
<parameter name="mem_block" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25886">the memory to copy</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="rc_box_get_size" c:identifier="g_rc_box_get_size" version="2.58">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25898">Retrieves the size of the reference counted data pointed by @mem_block.</doc>
|
|
<source-position filename="grcbox.h" line="45"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25904">the size of the data, in bytes</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="mem_block" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25900">a pointer to reference counted data</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function-macro name="rc_box_new" c:identifier="g_rc_box_new" version="2.58" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25909">A convenience macro to allocate reference counted data with
|
|
the size of the given @type.
|
|
|
|
This macro calls g_rc_box_alloc() with `sizeof (@type)` and
|
|
casts the returned pointer to a pointer of the given @type,
|
|
avoiding a type cast in the source code.</doc>
|
|
<source-position filename="grcbox.h" line="65"/>
|
|
<parameters>
|
|
<parameter name="type">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25911">the type to allocate, typically a structure name</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="rc_box_new0" c:identifier="g_rc_box_new0" version="2.58" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25926">A convenience macro to allocate reference counted data with
|
|
the size of the given @type, and set its contents to zero.
|
|
|
|
This macro calls g_rc_box_alloc0() with `sizeof (@type)` and
|
|
casts the returned pointer to a pointer of the given @type,
|
|
avoiding a type cast in the source code.</doc>
|
|
<source-position filename="grcbox.h" line="67"/>
|
|
<parameters>
|
|
<parameter name="type">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25928">the type to allocate, typically a structure name</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function name="rc_box_release" c:identifier="g_rc_box_release" version="2.58">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25943">Releases a reference on the data pointed by @mem_block.
|
|
|
|
If the reference was the last one, it will free the
|
|
resources allocated for @mem_block.</doc>
|
|
<source-position filename="grcbox.h" line="39"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="mem_block" transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25945">a pointer to reference counted data</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="rc_box_release_full" c:identifier="g_rc_box_release_full" version="2.58">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25956">Releases a reference on the data pointed by @mem_block.
|
|
|
|
If the reference was the last one, it will call @clear_func
|
|
to clear the contents of @mem_block, and then will free the
|
|
resources allocated for @mem_block.</doc>
|
|
<source-position filename="grcbox.h" line="41"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="mem_block" transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25958">a pointer to reference counted data</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="clear_func" transfer-ownership="none" scope="async">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25959">a function to call when clearing the data</doc>
|
|
<type name="DestroyNotify" c:type="GDestroyNotify"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="realloc" c:identifier="g_realloc">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25971">Reallocates the memory pointed to by @mem, so that it now has space for
|
|
@n_bytes bytes of memory. It returns the new address of the memory, which may
|
|
have been moved. @mem may be %NULL, in which case it's considered to
|
|
have zero-length. @n_bytes may be 0, in which case %NULL will be returned
|
|
and @mem will be freed unless it is %NULL.</doc>
|
|
<source-position filename="gmem.h" line="82"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25982">the new address of the allocated memory</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="mem" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25973">the memory to reallocate</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="n_bytes" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25974">new size of the memory in bytes</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="realloc_n" c:identifier="g_realloc_n" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25986">This function is similar to g_realloc(), allocating (@n_blocks * @n_block_bytes) bytes,
|
|
but care is taken to detect possible overflow during multiplication.</doc>
|
|
<source-position filename="gmem.h" line="99"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25996">the new address of the allocated memory</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="mem" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25988">the memory to reallocate</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="n_blocks" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25989">the number of blocks to allocate</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
<parameter name="n_block_bytes" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="25990">the size of each block in bytes</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="ref_count_compare" c:identifier="g_ref_count_compare" version="2.58">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26095">Compares the current value of @rc with @val.</doc>
|
|
<source-position filename="grefcount.h" line="38"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26102">%TRUE if the reference count is the same
|
|
as the given value</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="rc" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26097">the address of a reference count variable</doc>
|
|
<type name="gint" c:type="grefcount*"/>
|
|
</parameter>
|
|
<parameter name="val" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26098">the value to compare</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="ref_count_dec" c:identifier="g_ref_count_dec" version="2.58">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26108">Decreases the reference count.</doc>
|
|
<source-position filename="grefcount.h" line="36"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26114">%TRUE if the reference count reached 0, and %FALSE otherwise</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="rc" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26110">the address of a reference count variable</doc>
|
|
<type name="gint" c:type="grefcount*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="ref_count_inc" c:identifier="g_ref_count_inc" version="2.58">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26119">Increases the reference count.</doc>
|
|
<source-position filename="grefcount.h" line="34"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="rc" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26121">the address of a reference count variable</doc>
|
|
<type name="gint" c:type="grefcount*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="ref_count_init" c:identifier="g_ref_count_init" version="2.58">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26129">Initializes a reference count variable.</doc>
|
|
<source-position filename="grefcount.h" line="32"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="rc" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26131">the address of a reference count variable</doc>
|
|
<type name="gint" c:type="grefcount*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="ref_string_acquire" c:identifier="g_ref_string_acquire" version="2.58">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26139">Acquires a reference on a string.</doc>
|
|
<source-position filename="grefstring.h" line="35"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26145">the given string, with its reference count increased</doc>
|
|
<type name="utf8" c:type="char*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="str" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26141">a reference counted string</doc>
|
|
<type name="utf8" c:type="char*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="ref_string_length" c:identifier="g_ref_string_length" version="2.58">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26150">Retrieves the length of @str.</doc>
|
|
<source-position filename="grefstring.h" line="40"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26156">the length of the given string, in bytes</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="str" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26152">a reference counted string</doc>
|
|
<type name="utf8" c:type="char*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="ref_string_new" c:identifier="g_ref_string_new" version="2.58">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26161">Creates a new reference counted string and copies the contents of @str
|
|
into it.</doc>
|
|
<source-position filename="grefstring.h" line="27"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26168">the newly created reference counted string</doc>
|
|
<type name="utf8" c:type="char*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="str" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26163">a NUL-terminated string</doc>
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="ref_string_new_intern" c:identifier="g_ref_string_new_intern" version="2.58">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26173">Creates a new reference counted string and copies the content of @str
|
|
into it.
|
|
|
|
If you call this function multiple times with the same @str, or with
|
|
the same contents of @str, it will return a new reference, instead of
|
|
creating a new string.</doc>
|
|
<source-position filename="grefstring.h" line="32"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26184">the newly created reference
|
|
counted string, or a new reference to an existing string</doc>
|
|
<type name="utf8" c:type="char*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="str" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26175">a NUL-terminated string</doc>
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="ref_string_new_len" c:identifier="g_ref_string_new_len" version="2.58">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26190">Creates a new reference counted string and copies the contents of @str
|
|
into it, up to @len bytes.
|
|
|
|
Since this function does not stop at nul bytes, it is the caller's
|
|
responsibility to ensure that @str has at least @len addressable bytes.</doc>
|
|
<source-position filename="grefstring.h" line="29"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26201">the newly created reference counted string</doc>
|
|
<type name="utf8" c:type="char*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="str" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26192">a string</doc>
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
<parameter name="len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26193">length of @str to use, or -1 if @str is nul-terminated</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="ref_string_release" c:identifier="g_ref_string_release" version="2.58">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26206">Releases a reference on a string; if it was the last reference, the
|
|
resources allocated by the string are freed as well.</doc>
|
|
<source-position filename="grefstring.h" line="37"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="str" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26208">a reference counted string</doc>
|
|
<type name="utf8" c:type="char*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="regex_check_replacement" c:identifier="g_regex_check_replacement" moved-to="Regex.check_replacement" version="2.14" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26217">Checks whether @replacement is a valid replacement string
|
|
(see g_regex_replace()), i.e. that all escape sequences in
|
|
it are valid.
|
|
|
|
If @has_references is not %NULL then @replacement is checked
|
|
for pattern references. For instance, replacement text 'foo\n'
|
|
does not contain references and may be evaluated without information
|
|
about actual match, but '\0\1' (whole match followed by first
|
|
subpattern) requires valid #GMatchInfo object.</doc>
|
|
<source-position filename="gregex.h" line="559"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26234">whether @replacement is a valid replacement string</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="replacement" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26219">the replacement string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="has_references" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26220">location to store information about
|
|
references in @replacement or %NULL</doc>
|
|
<type name="gboolean" c:type="gboolean*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="regex_error_quark" c:identifier="g_regex_error_quark" moved-to="Regex.error_quark">
|
|
<return-value transfer-ownership="none">
|
|
<type name="Quark" c:type="GQuark"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="regex_escape_nul" c:identifier="g_regex_escape_nul" moved-to="Regex.escape_nul" version="2.30">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26239">Escapes the nul characters in @string to "\x00". It can be used
|
|
to compile a regex with embedded nul characters.
|
|
|
|
For completeness, @length can be -1 for a nul-terminated string.
|
|
In this case the output string will be of course equal to @string.</doc>
|
|
<source-position filename="gregex.h" line="472"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26250">a newly-allocated escaped string</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26241">the string to escape</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="length" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26242">the length of @string</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="regex_escape_string" c:identifier="g_regex_escape_string" moved-to="Regex.escape_string" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26255">Escapes the special characters used for regular expressions
|
|
in @string, for instance "a.b*c" becomes "a\.b\*c". This
|
|
function is useful to dynamically generate regular expressions.
|
|
|
|
@string can contain nul characters that are replaced with "\0",
|
|
in this case remember to specify the correct length of @string
|
|
in @length.</doc>
|
|
<source-position filename="gregex.h" line="469"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26268">a newly-allocated escaped string</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26257">the string to escape</doc>
|
|
<array length="1" zero-terminated="0" c:type="const gchar*">
|
|
<type name="utf8" c:type="gchar"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="length" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26258">the length of @string, in bytes, or -1 if @string is nul-terminated</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="regex_match_simple" c:identifier="g_regex_match_simple" moved-to="Regex.match_simple" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26577">Scans for a match in @string for @pattern.
|
|
|
|
This function is equivalent to g_regex_match() but it does not
|
|
require to compile the pattern with g_regex_new(), avoiding some
|
|
lines of code when you need just to do a match without extracting
|
|
substrings, capture counts, and so on.
|
|
|
|
If this function is to be called on the same @pattern more than
|
|
once, it's more efficient to compile the pattern once with
|
|
g_regex_new() and then use g_regex_match().</doc>
|
|
<source-position filename="gregex.h" line="482"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26595">%TRUE if the string matched, %FALSE otherwise</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="pattern" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26579">the regular expression</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26580">the string to scan for matches</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="compile_options" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26581">compile options for the regular expression, or 0</doc>
|
|
<type name="RegexCompileFlags" c:type="GRegexCompileFlags"/>
|
|
</parameter>
|
|
<parameter name="match_options" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26582">match options, or 0</doc>
|
|
<type name="RegexMatchFlags" c:type="GRegexMatchFlags"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="regex_split_simple" c:identifier="g_regex_split_simple" moved-to="Regex.split_simple" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26824">Breaks the string on the pattern, and returns an array of
|
|
the tokens. If the pattern contains capturing parentheses,
|
|
then the text for each of the substrings will also be returned.
|
|
If the pattern does not match anywhere in the string, then the
|
|
whole string is returned as the first token.
|
|
|
|
This function is equivalent to g_regex_split() but it does
|
|
not require to compile the pattern with g_regex_new(), avoiding
|
|
some lines of code when you need just to do a split without
|
|
extracting substrings, capture counts, and so on.
|
|
|
|
If this function is to be called on the same @pattern more than
|
|
once, it's more efficient to compile the pattern once with
|
|
g_regex_new() and then use g_regex_split().
|
|
|
|
As a special case, the result of splitting the empty string ""
|
|
is an empty vector, not a vector containing a single string.
|
|
The reason for this special case is that being able to represent
|
|
a empty vector is typically more useful than consistent handling
|
|
of empty elements. If you do need to represent empty elements,
|
|
you'll need to check for the empty string before calling this
|
|
function.
|
|
|
|
A pattern that can match empty strings splits @string into
|
|
separate characters wherever it matches the empty string between
|
|
characters. For example splitting "ab c" using as a separator
|
|
"\s*", you will get "a", "b" and "c".</doc>
|
|
<source-position filename="gregex.h" line="515"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26859">a %NULL-terminated array of strings. Free
|
|
it using g_strfreev()</doc>
|
|
<array c:type="gchar**">
|
|
<type name="utf8"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="pattern" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26826">the regular expression</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26827">the string to scan for matches</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="compile_options" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26828">compile options for the regular expression, or 0</doc>
|
|
<type name="RegexCompileFlags" c:type="GRegexCompileFlags"/>
|
|
</parameter>
|
|
<parameter name="match_options" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26829">match options, or 0</doc>
|
|
<type name="RegexMatchFlags" c:type="GRegexMatchFlags"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="reload_user_special_dirs_cache" c:identifier="g_reload_user_special_dirs_cache" version="2.22">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26876">Resets the cache used for g_get_user_special_dir(), so
|
|
that the latest on-disk version is used. Call this only
|
|
if you just changed the data on disk yourself.
|
|
|
|
Due to thread safety issues this may cause leaking of strings
|
|
that were previously returned from g_get_user_special_dir()
|
|
that can't be freed. We ensure to only leak the data for
|
|
the directories that actually changed value though.</doc>
|
|
<source-position filename="gutils.h" line="70"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
</function>
|
|
<function-macro name="renew" c:identifier="g_renew" introspectable="0">
|
|
<doc xml:space="preserve" filename="gmem.h" line="300">Reallocates the memory pointed to by @mem, so that it now has space for
|
|
@n_structs elements of type @struct_type. It returns the new address of
|
|
the memory, which may have been moved.
|
|
Care is taken to avoid overflow when calculating the size of the allocated block.</doc>
|
|
<source-position filename="gmem.h" line="313"/>
|
|
<parameters>
|
|
<parameter name="struct_type">
|
|
<doc xml:space="preserve" filename="gmem.h" line="302">the type of the elements to allocate</doc>
|
|
</parameter>
|
|
<parameter name="mem">
|
|
<doc xml:space="preserve" filename="gmem.h" line="303">the currently allocated memory</doc>
|
|
</parameter>
|
|
<parameter name="n_structs">
|
|
<doc xml:space="preserve" filename="gmem.h" line="304">the number of elements to allocate</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="return_if_fail" c:identifier="g_return_if_fail" introspectable="0">
|
|
<source-position filename="gmessages.h" line="534"/>
|
|
<parameters>
|
|
<parameter name="expr">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function name="return_if_fail_warning" c:identifier="g_return_if_fail_warning" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26938">Internal function used to print messages from the public g_return_if_fail()
|
|
and g_return_val_if_fail() macros.</doc>
|
|
<source-position filename="gmessages.h" line="269"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="log_domain" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26940">log domain</doc>
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
<parameter name="pretty_function" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26941">function containing the assertion</doc>
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
<parameter name="expression" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26942">expression which failed</doc>
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function-macro name="return_val_if_fail" c:identifier="g_return_val_if_fail" introspectable="0">
|
|
<source-position filename="gmessages.h" line="560"/>
|
|
<parameters>
|
|
<parameter name="expr">
|
|
</parameter>
|
|
<parameter name="val">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="return_val_if_reached" c:identifier="g_return_val_if_reached" introspectable="0">
|
|
<source-position filename="gmessages.h" line="580"/>
|
|
<parameters>
|
|
<parameter name="val">
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function name="rmdir" c:identifier="g_rmdir" version="2.6">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26949">A wrapper for the POSIX rmdir() function. The rmdir() function
|
|
deletes a directory from the filesystem.
|
|
|
|
See your C library manual for more details about how rmdir() works
|
|
on your system.</doc>
|
|
<source-position filename="gstdio.h" line="93"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26960">0 if the directory was successfully removed, -1 if an error
|
|
occurred</doc>
|
|
<type name="gint" c:type="int"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="filename" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="26951">a pathname in the GLib file name encoding
|
|
(UTF-8 on Windows)</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function-macro name="scanner_add_symbol" c:identifier="g_scanner_add_symbol" introspectable="0" deprecated="1" deprecated-version="2.2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27097">Adds a symbol to the default scope.</doc>
|
|
<doc-deprecated xml:space="preserve">Use g_scanner_scope_add_symbol() instead.</doc-deprecated>
|
|
<source-position filename="gscanner.h" line="276"/>
|
|
<parameters>
|
|
<parameter name="scanner">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27099">a #GScanner</doc>
|
|
</parameter>
|
|
<parameter name="symbol">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27100">the symbol to add</doc>
|
|
</parameter>
|
|
<parameter name="value">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27101">the value of the symbol</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="scanner_foreach_symbol" c:identifier="g_scanner_foreach_symbol" introspectable="0" deprecated="1" deprecated-version="2.2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27185">Calls a function for each symbol in the default scope.</doc>
|
|
<doc-deprecated xml:space="preserve">Use g_scanner_scope_foreach_symbol() instead.</doc-deprecated>
|
|
<source-position filename="gscanner.h" line="282"/>
|
|
<parameters>
|
|
<parameter name="scanner">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27187">a #GScanner</doc>
|
|
</parameter>
|
|
<parameter name="func">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27188">the function to call with each symbol</doc>
|
|
</parameter>
|
|
<parameter name="data">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27189">data to pass to the function</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="scanner_freeze_symbol_table" c:identifier="g_scanner_freeze_symbol_table" introspectable="0" deprecated="1" deprecated-version="2.2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27197">There is no reason to use this macro, since it does nothing.</doc>
|
|
<doc-deprecated xml:space="preserve">This macro does nothing.</doc-deprecated>
|
|
<source-position filename="gscanner.h" line="288"/>
|
|
<parameters>
|
|
<parameter name="scanner">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27199">a #GScanner</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="scanner_remove_symbol" c:identifier="g_scanner_remove_symbol" introspectable="0" deprecated="1" deprecated-version="2.2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27288">Removes a symbol from the default scope.</doc>
|
|
<doc-deprecated xml:space="preserve">Use g_scanner_scope_remove_symbol() instead.</doc-deprecated>
|
|
<source-position filename="gscanner.h" line="279"/>
|
|
<parameters>
|
|
<parameter name="scanner">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27290">a #GScanner</doc>
|
|
</parameter>
|
|
<parameter name="symbol">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27291">the symbol to remove</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="scanner_thaw_symbol_table" c:identifier="g_scanner_thaw_symbol_table" introspectable="0" deprecated="1" deprecated-version="2.2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27370">There is no reason to use this macro, since it does nothing.</doc>
|
|
<doc-deprecated xml:space="preserve">This macro does nothing.</doc-deprecated>
|
|
<source-position filename="gscanner.h" line="289"/>
|
|
<parameters>
|
|
<parameter name="scanner">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27372">a #GScanner</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function name="sequence_get" c:identifier="g_sequence_get" moved-to="Sequence.get" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27471">Returns the data that @iter points to.</doc>
|
|
<source-position filename="gsequence.h" line="140"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27477">the data that @iter points to</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="iter" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27473">a #GSequenceIter</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="sequence_insert_before" c:identifier="g_sequence_insert_before" moved-to="Sequence.insert_before" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27530">Inserts a new item just before the item pointed to by @iter.</doc>
|
|
<source-position filename="gsequence.h" line="81"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27537">an iterator pointing to the new item</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="iter" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27532">a #GSequenceIter</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27533">the data for the new item</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="sequence_move" c:identifier="g_sequence_move" moved-to="Sequence.move" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27761">Moves the item pointed to by @src to the position indicated by @dest.
|
|
After calling this function @dest will point to the position immediately
|
|
after @src. It is allowed for @src and @dest to point into different
|
|
sequences.</doc>
|
|
<source-position filename="gsequence.h" line="84"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="src" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27763">a #GSequenceIter pointing to the item to move</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</parameter>
|
|
<parameter name="dest" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27764">a #GSequenceIter pointing to the position to which
|
|
the item is moved</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="sequence_move_range" c:identifier="g_sequence_move_range" moved-to="Sequence.move_range" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27776">Inserts the (@begin, @end) range at the destination pointed to by @dest.
|
|
The @begin and @end iters must point into the same sequence. It is
|
|
allowed for @dest to point to a different sequence than the one pointed
|
|
into by @begin and @end.
|
|
|
|
If @dest is %NULL, the range indicated by @begin and @end is
|
|
removed from the sequence. If @dest points to a place within
|
|
the (@begin, @end) range, the range does not move.</doc>
|
|
<source-position filename="gsequence.h" line="113"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="dest" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27778">a #GSequenceIter</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</parameter>
|
|
<parameter name="begin" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27779">a #GSequenceIter</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</parameter>
|
|
<parameter name="end" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27780">a #GSequenceIter</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="sequence_range_get_midpoint" c:identifier="g_sequence_range_get_midpoint" moved-to="Sequence.range_get_midpoint" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27820">Finds an iterator somewhere in the range (@begin, @end). This
|
|
iterator will be close to the middle of the range, but is not
|
|
guaranteed to be exactly in the middle.
|
|
|
|
The @begin and @end iterators must both point to the same sequence
|
|
and @begin must come before or be equal to @end in the sequence.</doc>
|
|
<source-position filename="gsequence.h" line="168"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27832">a #GSequenceIter pointing somewhere in the
|
|
(@begin, @end) range</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="begin" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27822">a #GSequenceIter</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</parameter>
|
|
<parameter name="end" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27823">a #GSequenceIter</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="sequence_remove" c:identifier="g_sequence_remove" moved-to="Sequence.remove" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27838">Removes the item pointed to by @iter. It is an error to pass the
|
|
end iterator to this function.
|
|
|
|
If the sequence has a data destroy function associated with it, this
|
|
function is called on the data for the removed item.</doc>
|
|
<source-position filename="gsequence.h" line="108"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="iter" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27840">a #GSequenceIter</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="sequence_remove_range" c:identifier="g_sequence_remove_range" moved-to="Sequence.remove_range" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27852">Removes all items in the (@begin, @end) range.
|
|
|
|
If the sequence has a data destroy function associated with it, this
|
|
function is called on the data for the removed items.</doc>
|
|
<source-position filename="gsequence.h" line="110"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="begin" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27854">a #GSequenceIter</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</parameter>
|
|
<parameter name="end" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27855">a #GSequenceIter</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="sequence_set" c:identifier="g_sequence_set" moved-to="Sequence.set" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27921">Changes the data for the item pointed to by @iter to be @data. If
|
|
the sequence has a data destroy function associated with it, that
|
|
function is called on the existing data that @iter pointed to.</doc>
|
|
<source-position filename="gsequence.h" line="142"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="iter" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27923">a #GSequenceIter</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="27924">new data for the item</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="sequence_swap" c:identifier="g_sequence_swap" moved-to="Sequence.swap" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28010">Swaps the items pointed to by @a and @b. It is allowed for @a and @b
|
|
to point into difference sequences.</doc>
|
|
<source-position filename="gsequence.h" line="87"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="a" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28012">a #GSequenceIter</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</parameter>
|
|
<parameter name="b" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28013">a #GSequenceIter</doc>
|
|
<type name="SequenceIter" c:type="GSequenceIter*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="set_application_name" c:identifier="g_set_application_name" version="2.2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28022">Sets a human-readable name for the application. This name should be
|
|
localized if possible, and is intended for display to the user.
|
|
Contrast with g_set_prgname(), which sets a non-localized name.
|
|
g_set_prgname() will be called automatically by gtk_init(),
|
|
but g_set_application_name() will not.
|
|
|
|
Note that for thread safety reasons, this function can only
|
|
be called once.
|
|
|
|
The application name will be used in contexts such as error messages,
|
|
or when displaying an application's name in the task list.</doc>
|
|
<source-position filename="gutils.h" line="67"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="application_name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28024">localized name of the application</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="set_error" c:identifier="g_set_error" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28042">Does nothing if @err is %NULL; if @err is non-%NULL, then *@err
|
|
must be %NULL. A new #GError is created and assigned to *@err.</doc>
|
|
<source-position filename="gerror.h" line="80"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="err" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28044">a return location for a #GError</doc>
|
|
<type name="Error" c:type="GError**"/>
|
|
</parameter>
|
|
<parameter name="domain" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28045">error domain</doc>
|
|
<type name="Quark" c:type="GQuark"/>
|
|
</parameter>
|
|
<parameter name="code" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28046">error code</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="format" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28047">printf()-style format</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="..." transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28048">args for @format</doc>
|
|
<varargs/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="set_error_literal" c:identifier="g_set_error_literal" version="2.18">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28055">Does nothing if @err is %NULL; if @err is non-%NULL, then *@err
|
|
must be %NULL. A new #GError is created and assigned to *@err.
|
|
Unlike g_set_error(), @message is not a printf()-style format string.
|
|
Use this function if @message contains text you don't have control over,
|
|
that could include printf() escape sequences.</doc>
|
|
<source-position filename="gerror.h" line="87"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="err" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28057">a return location for a #GError</doc>
|
|
<type name="Error" c:type="GError**"/>
|
|
</parameter>
|
|
<parameter name="domain" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28058">error domain</doc>
|
|
<type name="Quark" c:type="GQuark"/>
|
|
</parameter>
|
|
<parameter name="code" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28059">error code</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="message" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28060">error message</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="set_prgname" c:identifier="g_set_prgname">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28072">Sets the name of the program. This name should not be localized,
|
|
in contrast to g_set_application_name().
|
|
|
|
If you are using #GApplication the program name is set in
|
|
g_application_run(). In case of GDK or GTK+ it is set in
|
|
gdk_init(), which is called by gtk_init() and the
|
|
#GtkApplication::startup handler. The program name is found by
|
|
taking the last component of @argv[0].
|
|
|
|
Note that for thread-safety reasons this function can only be called once.</doc>
|
|
<source-position filename="gutils.h" line="63"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="prgname" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28074">the name of the program.</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="set_print_handler" c:identifier="g_set_print_handler" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28089">Sets the print handler.
|
|
|
|
Any messages passed to g_print() will be output via
|
|
the new handler. The default handler simply outputs
|
|
the message to stdout. By providing your own handler
|
|
you can redirect the output, to a GTK+ widget or a
|
|
log file for example.</doc>
|
|
<source-position filename="gmessages.h" line="468"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28101">the old print handler</doc>
|
|
<type name="PrintFunc" c:type="GPrintFunc"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="func" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28091">the new print handler</doc>
|
|
<type name="PrintFunc" c:type="GPrintFunc"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="set_printerr_handler" c:identifier="g_set_printerr_handler" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28105">Sets the handler for printing error messages.
|
|
|
|
Any messages passed to g_printerr() will be output via
|
|
the new handler. The default handler simply outputs the
|
|
message to stderr. By providing your own handler you can
|
|
redirect the output, to a GTK+ widget or a log file for
|
|
example.</doc>
|
|
<source-position filename="gmessages.h" line="473"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28117">the old error message handler</doc>
|
|
<type name="PrintFunc" c:type="GPrintFunc"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="func" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28107">the new error message handler</doc>
|
|
<type name="PrintFunc" c:type="GPrintFunc"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="setenv" c:identifier="g_setenv" version="2.4">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28121">Sets an environment variable. On UNIX, both the variable's name and
|
|
value can be arbitrary byte strings, except that the variable's name
|
|
cannot contain '='. On Windows, they should be in UTF-8.
|
|
|
|
Note that on some systems, when variables are overwritten, the memory
|
|
used for the previous variables and its value isn't reclaimed.
|
|
|
|
You should be mindful of the fact that environment variable handling
|
|
in UNIX is not thread-safe, and your program may crash if one thread
|
|
calls g_setenv() while another thread is calling getenv(). (And note
|
|
that many functions, such as gettext(), call getenv() internally.)
|
|
This function is only safe to use at the very start of your program,
|
|
before creating any other threads (or creating objects that create
|
|
worker threads of their own).
|
|
|
|
If you need to set up the environment for a child process, you can
|
|
use g_get_environ() to get an environment array, modify that with
|
|
g_environ_setenv() and g_environ_unsetenv(), and then pass that
|
|
array directly to execvpe(), g_spawn_async(), or the like.</doc>
|
|
<source-position filename="genviron.h" line="39"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28148">%FALSE if the environment variable couldn't be set.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="variable" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28123">the environment variable to set, must not
|
|
contain '='.</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="value" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28125">the value for to set the variable to.</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="overwrite" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28126">whether to change the variable if it already exists.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="shell_error_quark" c:identifier="g_shell_error_quark">
|
|
<return-value transfer-ownership="none">
|
|
<type name="Quark" c:type="GQuark"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="shell_parse_argv" c:identifier="g_shell_parse_argv" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28153">Parses a command line into an argument vector, in much the same way
|
|
the shell would, but without many of the expansions the shell would
|
|
perform (variable expansion, globs, operators, filename expansion,
|
|
etc. are not supported). The results are defined to be the same as
|
|
those you would get from a UNIX98 /bin/sh, as long as the input
|
|
contains none of the unsupported shell expansions. If the input
|
|
does contain such expansions, they are passed through
|
|
literally. Possible errors are those from the #G_SHELL_ERROR
|
|
domain. Free the returned vector with g_strfreev().</doc>
|
|
<source-position filename="gshell.h" line="50"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28171">%TRUE on success, %FALSE if error set</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="command_line" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28155">command line to parse</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="argcp" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28156">return location for number of args</doc>
|
|
<type name="gint" c:type="gint*"/>
|
|
</parameter>
|
|
<parameter name="argvp" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28157">
|
|
return location for array of args</doc>
|
|
<array length="1" zero-terminated="1" c:type="gchar***">
|
|
<type name="filename"/>
|
|
</array>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="shell_quote" c:identifier="g_shell_quote">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28175">Quotes a string so that the shell (/bin/sh) will interpret the
|
|
quoted string to mean @unquoted_string. If you pass a filename to
|
|
the shell, for example, you should first quote it with this
|
|
function. The return value must be freed with g_free(). The
|
|
quoting style used is undefined (single or double quotes may be
|
|
used).</doc>
|
|
<source-position filename="gshell.h" line="45"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28186">quoted string</doc>
|
|
<type name="filename" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="unquoted_string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28177">a literal string</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="shell_unquote" c:identifier="g_shell_unquote" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28190">Unquotes a string as the shell (/bin/sh) would. Only handles
|
|
quotes; if a string contains file globs, arithmetic operators,
|
|
variables, backticks, redirections, or other special-to-the-shell
|
|
features, the result will be different from the result a real shell
|
|
would produce (the variables, backticks, etc. will be passed
|
|
through literally instead of being expanded). This function is
|
|
guaranteed to succeed if applied to the result of
|
|
g_shell_quote(). If it fails, it returns %NULL and sets the
|
|
error. The @quoted_string need not actually contain quoted or
|
|
escaped text; g_shell_unquote() simply goes through the string and
|
|
unquotes/unescapes anything that the shell would. Both single and
|
|
double quotes are handled, as are escapes including escaped
|
|
newlines. The return value must be freed with g_free(). Possible
|
|
errors are in the #G_SHELL_ERROR domain.
|
|
|
|
Shell quoting rules are a bit strange. Single quotes preserve the
|
|
literal string exactly. escape sequences are not allowed; not even
|
|
\' - if you want a ' in the quoted text, you have to do something
|
|
like 'foo'\''bar'. Double quotes allow $, `, ", \, and newline to
|
|
be escaped with backslash. Otherwise double quotes preserve things
|
|
literally.</doc>
|
|
<source-position filename="gshell.h" line="47"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28217">an unquoted string</doc>
|
|
<type name="filename" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="quoted_string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28192">shell-quoted string</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function-macro name="size_checked_add" c:identifier="g_size_checked_add" version="2.48" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28221">Performs a checked addition of @a and @b, storing the result in
|
|
@dest.
|
|
|
|
If the operation is successful, %TRUE is returned. If the operation
|
|
overflows then the state of @dest is undefined and %FALSE is
|
|
returned.</doc>
|
|
<source-position filename="gtypes.h" line="443"/>
|
|
<parameters>
|
|
<parameter name="dest">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28223">a pointer to the #gsize destination</doc>
|
|
</parameter>
|
|
<parameter name="a">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28224">the #gsize left operand</doc>
|
|
</parameter>
|
|
<parameter name="b">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28225">the #gsize right operand</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="size_checked_mul" c:identifier="g_size_checked_mul" version="2.48" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28239">Performs a checked multiplication of @a and @b, storing the result in
|
|
@dest.
|
|
|
|
If the operation is successful, %TRUE is returned. If the operation
|
|
overflows then the state of @dest is undefined and %FALSE is
|
|
returned.</doc>
|
|
<source-position filename="gtypes.h" line="445"/>
|
|
<parameters>
|
|
<parameter name="dest">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28241">a pointer to the #gsize destination</doc>
|
|
</parameter>
|
|
<parameter name="a">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28242">the #gsize left operand</doc>
|
|
</parameter>
|
|
<parameter name="b">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28243">the #gsize right operand</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function name="slice_alloc" c:identifier="g_slice_alloc" version="2.10">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28257">Allocates a block of memory from the slice allocator.
|
|
The block address handed out can be expected to be aligned
|
|
to at least 1 * sizeof (void*),
|
|
though in general slices are 2 * sizeof (void*) bytes aligned,
|
|
if a malloc() fallback implementation is used instead,
|
|
the alignment may be reduced in a libc dependent fashion.
|
|
Note that the underlying slice allocation mechanism can
|
|
be changed with the [`G_SLICE=always-malloc`][G_SLICE]
|
|
environment variable.</doc>
|
|
<source-position filename="gslice.h" line="32"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28271">a pointer to the allocated memory block, which will be %NULL if and
|
|
only if @mem_size is 0</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="block_size" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28259">the number of bytes to allocate</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="slice_alloc0" c:identifier="g_slice_alloc0" version="2.10">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28277">Allocates a block of memory via g_slice_alloc() and initializes
|
|
the returned memory to 0. Note that the underlying slice allocation
|
|
mechanism can be changed with the [`G_SLICE=always-malloc`][G_SLICE]
|
|
environment variable.</doc>
|
|
<source-position filename="gslice.h" line="34"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28286">a pointer to the allocated block, which will be %NULL if and only
|
|
if @mem_size is 0</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="block_size" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28279">the number of bytes to allocate</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="slice_copy" c:identifier="g_slice_copy" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28292">Allocates a block of memory from the slice allocator
|
|
and copies @block_size bytes into it from @mem_block.
|
|
|
|
@mem_block must be non-%NULL if @block_size is non-zero.</doc>
|
|
<source-position filename="gslice.h" line="36"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28302">a pointer to the allocated memory block, which will be %NULL if and
|
|
only if @mem_size is 0</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="block_size" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28294">the number of bytes to allocate</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
<parameter name="mem_block" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28295">the memory to copy</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function-macro name="slice_dup" c:identifier="g_slice_dup" version="2.14" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28308">A convenience macro to duplicate a block of memory using
|
|
the slice allocator.
|
|
|
|
It calls g_slice_copy() with `sizeof (@type)`
|
|
and casts the returned pointer to a pointer of the given type,
|
|
avoiding a type cast in the source code.
|
|
Note that the underlying slice allocation mechanism can
|
|
be changed with the [`G_SLICE=always-malloc`][G_SLICE]
|
|
environment variable.
|
|
|
|
This can never return %NULL.</doc>
|
|
<source-position filename="gslice.h" line="60"/>
|
|
<parameters>
|
|
<parameter name="type">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28310">the type to duplicate, typically a structure name</doc>
|
|
</parameter>
|
|
<parameter name="mem">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28311">the memory to copy into the allocated block</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="slice_free" c:identifier="g_slice_free" version="2.10" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28331">A convenience macro to free a block of memory that has
|
|
been allocated from the slice allocator.
|
|
|
|
It calls g_slice_free1() using `sizeof (type)`
|
|
as the block size.
|
|
Note that the exact release behaviour can be changed with the
|
|
[`G_DEBUG=gc-friendly`][G_DEBUG] environment variable, also see
|
|
[`G_SLICE`][G_SLICE] for related debugging options.
|
|
|
|
If @mem is %NULL, this macro does nothing.</doc>
|
|
<source-position filename="gslice.h" line="63"/>
|
|
<parameters>
|
|
<parameter name="type">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28333">the type of the block to free, typically a structure name</doc>
|
|
</parameter>
|
|
<parameter name="mem">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28334">a pointer to the block to free</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function name="slice_free1" c:identifier="g_slice_free1" version="2.10">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28351">Frees a block of memory.
|
|
|
|
The memory must have been allocated via g_slice_alloc() or
|
|
g_slice_alloc0() and the @block_size has to match the size
|
|
specified upon allocation. Note that the exact release behaviour
|
|
can be changed with the [`G_DEBUG=gc-friendly`][G_DEBUG] environment
|
|
variable, also see [`G_SLICE`][G_SLICE] for related debugging options.
|
|
|
|
If @mem_block is %NULL, this function does nothing.</doc>
|
|
<source-position filename="gslice.h" line="39"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="block_size" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28353">the size of the block</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
<parameter name="mem_block" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28354">a pointer to the block to free</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function-macro name="slice_free_chain" c:identifier="g_slice_free_chain" version="2.10" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28370">Frees a linked list of memory blocks of structure type @type.
|
|
The memory blocks must be equal-sized, allocated via
|
|
g_slice_alloc() or g_slice_alloc0() and linked together by
|
|
a @next pointer (similar to #GSList). The name of the
|
|
@next field in @type is passed as third argument.
|
|
Note that the exact release behaviour can be changed with the
|
|
[`G_DEBUG=gc-friendly`][G_DEBUG] environment variable, also see
|
|
[`G_SLICE`][G_SLICE] for related debugging options.
|
|
|
|
If @mem_chain is %NULL, this function does nothing.</doc>
|
|
<source-position filename="gslice.h" line="68"/>
|
|
<parameters>
|
|
<parameter name="type">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28372">the type of the @mem_chain blocks</doc>
|
|
</parameter>
|
|
<parameter name="mem_chain">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28373">a pointer to the first block of the chain</doc>
|
|
</parameter>
|
|
<parameter name="next">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28374">the field name of the next pointer in @type</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function name="slice_free_chain_with_offset" c:identifier="g_slice_free_chain_with_offset" version="2.10">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28391">Frees a linked list of memory blocks of structure type @type.
|
|
|
|
The memory blocks must be equal-sized, allocated via
|
|
g_slice_alloc() or g_slice_alloc0() and linked together by a
|
|
@next pointer (similar to #GSList). The offset of the @next
|
|
field in each block is passed as third argument.
|
|
Note that the exact release behaviour can be changed with the
|
|
[`G_DEBUG=gc-friendly`][G_DEBUG] environment variable, also see
|
|
[`G_SLICE`][G_SLICE] for related debugging options.
|
|
|
|
If @mem_chain is %NULL, this function does nothing.</doc>
|
|
<source-position filename="gslice.h" line="42"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="block_size" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28393">the size of the blocks</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
<parameter name="mem_chain" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28394">a pointer to the first block of the chain</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="next_offset" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28395">the offset of the @next field in the blocks</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="slice_get_config" c:identifier="g_slice_get_config">
|
|
<source-position filename="gslice.h" line="88"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="gint64" c:type="gint64"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="ckey" transfer-ownership="none">
|
|
<type name="SliceConfig" c:type="GSliceConfig"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="slice_get_config_state" c:identifier="g_slice_get_config_state">
|
|
<source-position filename="gslice.h" line="90"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="gint64" c:type="gint64*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="ckey" transfer-ownership="none">
|
|
<type name="SliceConfig" c:type="GSliceConfig"/>
|
|
</parameter>
|
|
<parameter name="address" transfer-ownership="none">
|
|
<type name="gint64" c:type="gint64"/>
|
|
</parameter>
|
|
<parameter name="n_values" transfer-ownership="none">
|
|
<type name="guint" c:type="guint*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function-macro name="slice_new" c:identifier="g_slice_new" version="2.10" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28413">A convenience macro to allocate a block of memory from the
|
|
slice allocator.
|
|
|
|
It calls g_slice_alloc() with `sizeof (@type)` and casts the
|
|
returned pointer to a pointer of the given type, avoiding a type
|
|
cast in the source code. Note that the underlying slice allocation
|
|
mechanism can be changed with the [`G_SLICE=always-malloc`][G_SLICE]
|
|
environment variable.
|
|
|
|
This can never return %NULL as the minimum allocation size from
|
|
`sizeof (@type)` is 1 byte.</doc>
|
|
<source-position filename="gslice.h" line="45"/>
|
|
<parameters>
|
|
<parameter name="type">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28415">the type to allocate, typically a structure name</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="slice_new0" c:identifier="g_slice_new0" version="2.10" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28435">A convenience macro to allocate a block of memory from the
|
|
slice allocator and set the memory to 0.
|
|
|
|
It calls g_slice_alloc0() with `sizeof (@type)`
|
|
and casts the returned pointer to a pointer of the given type,
|
|
avoiding a type cast in the source code.
|
|
Note that the underlying slice allocation mechanism can
|
|
be changed with the [`G_SLICE=always-malloc`][G_SLICE]
|
|
environment variable.
|
|
|
|
This can never return %NULL as the minimum allocation size from
|
|
`sizeof (@type)` is 1 byte.</doc>
|
|
<source-position filename="gslice.h" line="46"/>
|
|
<parameters>
|
|
<parameter name="type">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28437">the type to allocate, typically a structure name</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function name="slice_set_config" c:identifier="g_slice_set_config">
|
|
<source-position filename="gslice.h" line="86"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="ckey" transfer-ownership="none">
|
|
<type name="SliceConfig" c:type="GSliceConfig"/>
|
|
</parameter>
|
|
<parameter name="value" transfer-ownership="none">
|
|
<type name="gint64" c:type="gint64"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function-macro name="slist_next" c:identifier="g_slist_next" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28769">A convenience macro to get the next element in a #GSList.
|
|
Note that it is considered perfectly acceptable to access
|
|
@slist->next directly.</doc>
|
|
<source-position filename="gslist.h" line="139"/>
|
|
<parameters>
|
|
<parameter name="slist">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28771">an element in a #GSList.</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function name="snprintf" c:identifier="g_snprintf" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28924">A safer form of the standard sprintf() function. The output is guaranteed
|
|
to not exceed @n characters (including the terminating nul character), so
|
|
it is easy to ensure that a buffer overflow cannot occur.
|
|
|
|
See also g_strdup_printf().
|
|
|
|
In versions of GLib prior to 1.2.3, this function may return -1 if the
|
|
output was truncated, and the truncated string may not be nul-terminated.
|
|
In versions prior to 1.3.12, this function returns the length of the output
|
|
string.
|
|
|
|
The return value of g_snprintf() conforms to the snprintf()
|
|
function as standardized in ISO C99. Note that this is different from
|
|
traditional snprintf(), which returns the length of the output string.
|
|
|
|
The format string may contain positional parameters, as specified in
|
|
the Single Unix Specification.</doc>
|
|
<source-position filename="gutils.h" line="166"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28951">the number of bytes which would be produced if the buffer
|
|
was large enough.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28926">the buffer to hold the output.</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</parameter>
|
|
<parameter name="n" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28927">the maximum number of bytes to produce (including the
|
|
terminating nul character).</doc>
|
|
<type name="gulong" c:type="gulong"/>
|
|
</parameter>
|
|
<parameter name="format" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28929">a standard printf() format string, but notice
|
|
[string precision pitfalls][string-precision]</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="..." transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="28931">the arguments to insert in the output.</doc>
|
|
<varargs/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="source_remove" c:identifier="g_source_remove" moved-to="Source.remove">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29317">Removes the source with the given ID from the default main context. You must
|
|
use g_source_destroy() for sources added to a non-default main context.
|
|
|
|
The ID of a #GSource is given by g_source_get_id(), or will be
|
|
returned by the functions g_source_attach(), g_idle_add(),
|
|
g_idle_add_full(), g_timeout_add(), g_timeout_add_full(),
|
|
g_child_watch_add(), g_child_watch_add_full(), g_io_add_watch(), and
|
|
g_io_add_watch_full().
|
|
|
|
It is a programmer error to attempt to remove a non-existent source.
|
|
|
|
More specifically: source IDs can be reissued after a source has been
|
|
destroyed and therefore it is never valid to use this function with a
|
|
source ID which may have already been removed. An example is when
|
|
scheduling an idle to run in another thread with g_idle_add(): the
|
|
idle may already have run and been removed by the time this function
|
|
is called on its (now invalid) source ID. This source ID may have
|
|
been reissued, leading to the operation being performed against the
|
|
wrong source.</doc>
|
|
<source-position filename="gmain.h" line="586"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29341">For historical reasons, this function always returns %TRUE</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="tag" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29319">the ID of the source to remove.</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="source_remove_by_funcs_user_data" c:identifier="g_source_remove_by_funcs_user_data" moved-to="Source.remove_by_funcs_user_data">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29345">Removes a source from the default main loop context given the
|
|
source functions and user data. If multiple sources exist with the
|
|
same source functions and user data, only one will be destroyed.</doc>
|
|
<source-position filename="gmain.h" line="590"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29354">%TRUE if a source was found and removed.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="funcs" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29347">The @source_funcs passed to g_source_new()</doc>
|
|
<type name="SourceFuncs" c:type="GSourceFuncs*"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29348">the user data for the callback</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="source_remove_by_user_data" c:identifier="g_source_remove_by_user_data" moved-to="Source.remove_by_user_data">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29358">Removes a source from the default main loop context given the user
|
|
data for the callback. If multiple sources exist with the same user
|
|
data, only one will be destroyed.</doc>
|
|
<source-position filename="gmain.h" line="588"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29366">%TRUE if a source was found and removed.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29360">the user_data for the callback.</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="source_set_name_by_id" c:identifier="g_source_set_name_by_id" moved-to="Source.set_name_by_id" version="2.26">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29515">Sets the name of a source using its ID.
|
|
|
|
This is a convenience utility to set source names from the return
|
|
value of g_idle_add(), g_timeout_add(), etc.
|
|
|
|
It is a programmer error to attempt to set the name of a non-existent
|
|
source.
|
|
|
|
More specifically: source IDs can be reissued after a source has been
|
|
destroyed and therefore it is never valid to use this function with a
|
|
source ID which may have already been removed. An example is when
|
|
scheduling an idle to run in another thread with g_idle_add(): the
|
|
idle may already have run and been removed by the time this function
|
|
is called on its (now invalid) source ID. This source ID may have
|
|
been reissued, leading to the operation being performed against the
|
|
wrong source.</doc>
|
|
<source-position filename="gmain.h" line="501"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="tag" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29517">a #GSource ID</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
<parameter name="name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29518">debug name for the source</doc>
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="spaced_primes_closest" c:identifier="g_spaced_primes_closest">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29600">Gets the smallest prime number from a built-in array of primes which
|
|
is larger than @num. This is used within GLib to calculate the optimum
|
|
size of a #GHashTable.
|
|
|
|
The built-in array of primes ranges from 11 to 13845163 such that
|
|
each prime is approximately 1.5-2 times the previous prime.</doc>
|
|
<source-position filename="gprimes.h" line="46"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29611">the smallest prime number from a built-in array of primes
|
|
which is larger than @num</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="num" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29602">a #guint</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="spawn_async" c:identifier="g_spawn_async" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29616">See g_spawn_async_with_pipes() for a full description; this function
|
|
simply calls the g_spawn_async_with_pipes() without any pipes.
|
|
|
|
You should call g_spawn_close_pid() on the returned child process
|
|
reference when you don't need it any more.
|
|
|
|
If you are writing a GTK+ application, and the program you are spawning is a
|
|
graphical application too, then to ensure that the spawned program opens its
|
|
windows on the right screen, you may want to use #GdkAppLaunchContext,
|
|
#GAppLaunchContext, or set the %DISPLAY environment variable.
|
|
|
|
Note that the returned @child_pid on Windows is a handle to the child
|
|
process and not its identifier. Process handles and process identifiers
|
|
are different concepts on Windows.</doc>
|
|
<source-position filename="gspawn.h" line="190"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29645">%TRUE on success, %FALSE if error is set</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="working_directory" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29618">child's current working
|
|
directory, or %NULL to inherit parent's</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="argv" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29620">
|
|
child's argument vector</doc>
|
|
<array c:type="gchar**">
|
|
<type name="filename"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="envp" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29622">
|
|
child's environment, or %NULL to inherit parent's</doc>
|
|
<array c:type="gchar**">
|
|
<type name="filename"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="flags" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29624">flags from #GSpawnFlags</doc>
|
|
<type name="SpawnFlags" c:type="GSpawnFlags"/>
|
|
</parameter>
|
|
<parameter name="child_setup" transfer-ownership="none" nullable="1" allow-none="1" scope="async" closure="5">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29625">function to run in the child just before exec()</doc>
|
|
<type name="SpawnChildSetupFunc" c:type="GSpawnChildSetupFunc"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29626">user data for @child_setup</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="child_pid" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29627">return location for child process reference, or %NULL</doc>
|
|
<type name="Pid" c:type="GPid*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="spawn_async_with_fds" c:identifier="g_spawn_async_with_fds" version="2.58" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29649">Identical to g_spawn_async_with_pipes() but instead of
|
|
creating pipes for the stdin/stdout/stderr, you can pass existing
|
|
file descriptors into this function through the @stdin_fd,
|
|
@stdout_fd and @stderr_fd parameters. The following @flags
|
|
also have their behaviour slightly tweaked as a result:
|
|
|
|
%G_SPAWN_STDOUT_TO_DEV_NULL means that the child's standard output
|
|
will be discarded, instead of going to the same location as the parent's
|
|
standard output. If you use this flag, @standard_output must be -1.
|
|
%G_SPAWN_STDERR_TO_DEV_NULL means that the child's standard error
|
|
will be discarded, instead of going to the same location as the parent's
|
|
standard error. If you use this flag, @standard_error must be -1.
|
|
%G_SPAWN_CHILD_INHERITS_STDIN means that the child will inherit the parent's
|
|
standard input (by default, the child's standard input is attached to
|
|
/dev/null). If you use this flag, @standard_input must be -1.
|
|
|
|
It is valid to pass the same fd in multiple parameters (e.g. you can pass
|
|
a single fd for both stdout and stderr).</doc>
|
|
<source-position filename="gspawn.h" line="218"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29682">%TRUE on success, %FALSE if an error was set</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="working_directory" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29651">child's current working directory, or %NULL to inherit parent's, in the GLib file name encoding</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="argv" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29652">child's argument vector, in the GLib file name encoding</doc>
|
|
<array c:type="gchar**">
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="envp" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29653">child's environment, or %NULL to inherit parent's, in the GLib file name encoding</doc>
|
|
<array c:type="gchar**">
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="flags" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29654">flags from #GSpawnFlags</doc>
|
|
<type name="SpawnFlags" c:type="GSpawnFlags"/>
|
|
</parameter>
|
|
<parameter name="child_setup" transfer-ownership="none" nullable="1" allow-none="1" scope="async" closure="5">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29655">function to run in the child just before exec()</doc>
|
|
<type name="SpawnChildSetupFunc" c:type="GSpawnChildSetupFunc"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29656">user data for @child_setup</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="child_pid" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29657">return location for child process ID, or %NULL</doc>
|
|
<type name="Pid" c:type="GPid*"/>
|
|
</parameter>
|
|
<parameter name="stdin_fd" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29658">file descriptor to use for child's stdin, or -1</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="stdout_fd" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29659">file descriptor to use for child's stdout, or -1</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="stderr_fd" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29660">file descriptor to use for child's stderr, or -1</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="spawn_async_with_pipes" c:identifier="g_spawn_async_with_pipes" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29687">Executes a child program asynchronously (your program will not
|
|
block waiting for the child to exit). The child program is
|
|
specified by the only argument that must be provided, @argv.
|
|
@argv should be a %NULL-terminated array of strings, to be passed
|
|
as the argument vector for the child. The first string in @argv
|
|
is of course the name of the program to execute. By default, the
|
|
name of the program must be a full path. If @flags contains the
|
|
%G_SPAWN_SEARCH_PATH flag, the `PATH` environment variable is
|
|
used to search for the executable. If @flags contains the
|
|
%G_SPAWN_SEARCH_PATH_FROM_ENVP flag, the `PATH` variable from
|
|
@envp is used to search for the executable. If both the
|
|
%G_SPAWN_SEARCH_PATH and %G_SPAWN_SEARCH_PATH_FROM_ENVP flags
|
|
are set, the `PATH` variable from @envp takes precedence over
|
|
the environment variable.
|
|
|
|
If the program name is not a full path and %G_SPAWN_SEARCH_PATH flag is not
|
|
used, then the program will be run from the current directory (or
|
|
@working_directory, if specified); this might be unexpected or even
|
|
dangerous in some cases when the current directory is world-writable.
|
|
|
|
On Windows, note that all the string or string vector arguments to
|
|
this function and the other g_spawn*() functions are in UTF-8, the
|
|
GLib file name encoding. Unicode characters that are not part of
|
|
the system codepage passed in these arguments will be correctly
|
|
available in the spawned program only if it uses wide character API
|
|
to retrieve its command line. For C programs built with Microsoft's
|
|
tools it is enough to make the program have a wmain() instead of
|
|
main(). wmain() has a wide character argument vector as parameter.
|
|
|
|
At least currently, mingw doesn't support wmain(), so if you use
|
|
mingw to develop the spawned program, it should call
|
|
g_win32_get_command_line() to get arguments in UTF-8.
|
|
|
|
On Windows the low-level child process creation API CreateProcess()
|
|
doesn't use argument vectors, but a command line. The C runtime
|
|
library's spawn*() family of functions (which g_spawn_async_with_pipes()
|
|
eventually calls) paste the argument vector elements together into
|
|
a command line, and the C runtime startup code does a corresponding
|
|
reconstruction of an argument vector from the command line, to be
|
|
passed to main(). Complications arise when you have argument vector
|
|
elements that contain spaces or double quotes. The `spawn*()` functions
|
|
don't do any quoting or escaping, but on the other hand the startup
|
|
code does do unquoting and unescaping in order to enable receiving
|
|
arguments with embedded spaces or double quotes. To work around this
|
|
asymmetry, g_spawn_async_with_pipes() will do quoting and escaping on
|
|
argument vector elements that need it before calling the C runtime
|
|
spawn() function.
|
|
|
|
The returned @child_pid on Windows is a handle to the child
|
|
process, not its identifier. Process handles and process
|
|
identifiers are different concepts on Windows.
|
|
|
|
@envp is a %NULL-terminated array of strings, where each string
|
|
has the form `KEY=VALUE`. This will become the child's environment.
|
|
If @envp is %NULL, the child inherits its parent's environment.
|
|
|
|
@flags should be the bitwise OR of any flags you want to affect the
|
|
function's behaviour. The %G_SPAWN_DO_NOT_REAP_CHILD means that the
|
|
child will not automatically be reaped; you must use a child watch
|
|
(g_child_watch_add()) to be notified about the death of the child process,
|
|
otherwise it will stay around as a zombie process until this process exits.
|
|
Eventually you must call g_spawn_close_pid() on the @child_pid, in order to
|
|
free resources which may be associated with the child process. (On Unix,
|
|
using a child watch is equivalent to calling waitpid() or handling
|
|
the %SIGCHLD signal manually. On Windows, calling g_spawn_close_pid()
|
|
is equivalent to calling CloseHandle() on the process handle returned
|
|
in @child_pid). See g_child_watch_add().
|
|
|
|
Open UNIX file descriptors marked as `FD_CLOEXEC` will be automatically
|
|
closed in the child process. %G_SPAWN_LEAVE_DESCRIPTORS_OPEN means that
|
|
other open file descriptors will be inherited by the child; otherwise all
|
|
descriptors except stdin/stdout/stderr will be closed before calling exec()
|
|
in the child. %G_SPAWN_SEARCH_PATH means that @argv[0] need not be an
|
|
absolute path, it will be looked for in the `PATH` environment
|
|
variable. %G_SPAWN_SEARCH_PATH_FROM_ENVP means need not be an
|
|
absolute path, it will be looked for in the `PATH` variable from
|
|
@envp. If both %G_SPAWN_SEARCH_PATH and %G_SPAWN_SEARCH_PATH_FROM_ENVP
|
|
are used, the value from @envp takes precedence over the environment.
|
|
%G_SPAWN_STDOUT_TO_DEV_NULL means that the child's standard output
|
|
will be discarded, instead of going to the same location as the parent's
|
|
standard output. If you use this flag, @standard_output must be %NULL.
|
|
%G_SPAWN_STDERR_TO_DEV_NULL means that the child's standard error
|
|
will be discarded, instead of going to the same location as the parent's
|
|
standard error. If you use this flag, @standard_error must be %NULL.
|
|
%G_SPAWN_CHILD_INHERITS_STDIN means that the child will inherit the parent's
|
|
standard input (by default, the child's standard input is attached to
|
|
`/dev/null`). If you use this flag, @standard_input must be %NULL.
|
|
%G_SPAWN_FILE_AND_ARGV_ZERO means that the first element of @argv is
|
|
the file to execute, while the remaining elements are the actual
|
|
argument vector to pass to the file. Normally g_spawn_async_with_pipes()
|
|
uses @argv[0] as the file to execute, and passes all of @argv to the child.
|
|
|
|
@child_setup and @user_data are a function and user data. On POSIX
|
|
platforms, the function is called in the child after GLib has
|
|
performed all the setup it plans to perform (including creating
|
|
pipes, closing file descriptors, etc.) but before calling exec().
|
|
That is, @child_setup is called just before calling exec() in the
|
|
child. Obviously actions taken in this function will only affect
|
|
the child, not the parent.
|
|
|
|
On Windows, there is no separate fork() and exec() functionality.
|
|
Child processes are created and run with a single API call,
|
|
CreateProcess(). There is no sensible thing @child_setup
|
|
could be used for on Windows so it is ignored and not called.
|
|
|
|
If non-%NULL, @child_pid will on Unix be filled with the child's
|
|
process ID. You can use the process ID to send signals to the child,
|
|
or to use g_child_watch_add() (or waitpid()) if you specified the
|
|
%G_SPAWN_DO_NOT_REAP_CHILD flag. On Windows, @child_pid will be
|
|
filled with a handle to the child process only if you specified the
|
|
%G_SPAWN_DO_NOT_REAP_CHILD flag. You can then access the child
|
|
process using the Win32 API, for example wait for its termination
|
|
with the WaitFor*() functions, or examine its exit code with
|
|
GetExitCodeProcess(). You should close the handle with CloseHandle()
|
|
or g_spawn_close_pid() when you no longer need it.
|
|
|
|
If non-%NULL, the @standard_input, @standard_output, @standard_error
|
|
locations will be filled with file descriptors for writing to the child's
|
|
standard input or reading from its standard output or standard error.
|
|
The caller of g_spawn_async_with_pipes() must close these file descriptors
|
|
when they are no longer in use. If these parameters are %NULL, the
|
|
corresponding pipe won't be created.
|
|
|
|
If @standard_input is %NULL, the child's standard input is attached to
|
|
`/dev/null` unless %G_SPAWN_CHILD_INHERITS_STDIN is set.
|
|
|
|
If @standard_error is NULL, the child's standard error goes to the same
|
|
location as the parent's standard error unless %G_SPAWN_STDERR_TO_DEV_NULL
|
|
is set.
|
|
|
|
If @standard_output is NULL, the child's standard output goes to the same
|
|
location as the parent's standard output unless %G_SPAWN_STDOUT_TO_DEV_NULL
|
|
is set.
|
|
|
|
@error can be %NULL to ignore errors, or non-%NULL to report errors.
|
|
If an error is set, the function returns %FALSE. Errors are reported
|
|
even if they occur in the child (for example if the executable in
|
|
@argv[0] is not found). Typically the `message` field of returned
|
|
errors should be displayed to users. Possible errors are those from
|
|
the #G_SPAWN_ERROR domain.
|
|
|
|
If an error occurs, @child_pid, @standard_input, @standard_output,
|
|
and @standard_error will not be filled with valid values.
|
|
|
|
If @child_pid is not %NULL and an error does not occur then the returned
|
|
process reference must be closed using g_spawn_close_pid().
|
|
|
|
On modern UNIX platforms, GLib can use an efficient process launching
|
|
codepath driven internally by posix_spawn(). This has the advantage of
|
|
avoiding the fork-time performance costs of cloning the parent process
|
|
address space, and avoiding associated memory overcommit checks that are
|
|
not relevant in the context of immediately executing a distinct process.
|
|
This optimized codepath will be used provided that the following conditions
|
|
are met:
|
|
|
|
1. %G_SPAWN_DO_NOT_REAP_CHILD is set
|
|
2. %G_SPAWN_LEAVE_DESCRIPTORS_OPEN is set
|
|
3. %G_SPAWN_SEARCH_PATH_FROM_ENVP is not set
|
|
4. @working_directory is %NULL
|
|
5. @child_setup is %NULL
|
|
6. The program is of a recognised binary format, or has a shebang. Otherwise, GLib will have to execute the program through the shell, which is not done using the optimized codepath.
|
|
|
|
If you are writing a GTK+ application, and the program you are spawning is a
|
|
graphical application too, then to ensure that the spawned program opens its
|
|
windows on the right screen, you may want to use #GdkAppLaunchContext,
|
|
#GAppLaunchContext, or set the %DISPLAY environment variable.</doc>
|
|
<source-position filename="gspawn.h" line="204"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29872">%TRUE on success, %FALSE if an error was set</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="working_directory" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29689">child's current working
|
|
directory, or %NULL to inherit parent's, in the GLib file name encoding</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="argv" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29691">child's argument
|
|
vector, in the GLib file name encoding</doc>
|
|
<array c:type="gchar**">
|
|
<type name="filename"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="envp" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29693">
|
|
child's environment, or %NULL to inherit parent's, in the GLib file
|
|
name encoding</doc>
|
|
<array c:type="gchar**">
|
|
<type name="filename"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="flags" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29696">flags from #GSpawnFlags</doc>
|
|
<type name="SpawnFlags" c:type="GSpawnFlags"/>
|
|
</parameter>
|
|
<parameter name="child_setup" transfer-ownership="none" nullable="1" allow-none="1" scope="async" closure="5">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29697">function to run in the child just before exec()</doc>
|
|
<type name="SpawnChildSetupFunc" c:type="GSpawnChildSetupFunc"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29698">user data for @child_setup</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="child_pid" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29699">return location for child process ID, or %NULL</doc>
|
|
<type name="Pid" c:type="GPid*"/>
|
|
</parameter>
|
|
<parameter name="standard_input" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29700">return location for file descriptor to write to child's stdin, or %NULL</doc>
|
|
<type name="gint" c:type="gint*"/>
|
|
</parameter>
|
|
<parameter name="standard_output" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29701">return location for file descriptor to read child's stdout, or %NULL</doc>
|
|
<type name="gint" c:type="gint*"/>
|
|
</parameter>
|
|
<parameter name="standard_error" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29702">return location for file descriptor to read child's stderr, or %NULL</doc>
|
|
<type name="gint" c:type="gint*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="spawn_check_exit_status" c:identifier="g_spawn_check_exit_status" version="2.34" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29876">Set @error if @exit_status indicates the child exited abnormally
|
|
(e.g. with a nonzero exit code, or via a fatal signal).
|
|
|
|
The g_spawn_sync() and g_child_watch_add() family of APIs return an
|
|
exit status for subprocesses encoded in a platform-specific way.
|
|
On Unix, this is guaranteed to be in the same format waitpid() returns,
|
|
and on Windows it is guaranteed to be the result of GetExitCodeProcess().
|
|
|
|
Prior to the introduction of this function in GLib 2.34, interpreting
|
|
@exit_status required use of platform-specific APIs, which is problematic
|
|
for software using GLib as a cross-platform layer.
|
|
|
|
Additionally, many programs simply want to determine whether or not
|
|
the child exited successfully, and either propagate a #GError or
|
|
print a message to standard error. In that common case, this function
|
|
can be used. Note that the error message in @error will contain
|
|
human-readable information about the exit status.
|
|
|
|
The @domain and @code of @error have special semantics in the case
|
|
where the process has an "exit code", as opposed to being killed by
|
|
a signal. On Unix, this happens if WIFEXITED() would be true of
|
|
@exit_status. On Windows, it is always the case.
|
|
|
|
The special semantics are that the actual exit code will be the
|
|
code set in @error, and the domain will be %G_SPAWN_EXIT_ERROR.
|
|
This allows you to differentiate between different exit codes.
|
|
|
|
If the process was terminated by some means other than an exit
|
|
status, the domain will be %G_SPAWN_ERROR, and the code will be
|
|
%G_SPAWN_ERROR_FAILED.
|
|
|
|
This function just offers convenience; you can of course also check
|
|
the available platform via a macro such as %G_OS_UNIX, and use
|
|
WIFEXITED() and WEXITSTATUS() on @exit_status directly. Do not attempt
|
|
to scan or parse the error message string; it may be translated and/or
|
|
change in future versions of GLib.</doc>
|
|
<source-position filename="gspawn.h" line="257"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29918">%TRUE if child exited successfully, %FALSE otherwise (and
|
|
@error will be set)</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="exit_status" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29878">An exit code as returned from g_spawn_sync()</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="spawn_close_pid" c:identifier="g_spawn_close_pid">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29924">On some platforms, notably Windows, the #GPid type represents a resource
|
|
which must be closed to prevent resource leaking. g_spawn_close_pid()
|
|
is provided for this purpose. It should be used on all platforms, even
|
|
though it doesn't do anything under UNIX.</doc>
|
|
<source-position filename="gspawn.h" line="261"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="pid" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29926">The process reference to close</doc>
|
|
<type name="Pid" c:type="GPid"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="spawn_command_line_async" c:identifier="g_spawn_command_line_async" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29935">A simple version of g_spawn_async() that parses a command line with
|
|
g_shell_parse_argv() and passes it to g_spawn_async(). Runs a
|
|
command line in the background. Unlike g_spawn_async(), the
|
|
%G_SPAWN_SEARCH_PATH flag is enabled, other flags are not. Note
|
|
that %G_SPAWN_SEARCH_PATH can have security implications, so
|
|
consider using g_spawn_async() directly if appropriate. Possible
|
|
errors are those from g_shell_parse_argv() and g_spawn_async().
|
|
|
|
The same concerns on Windows apply as for g_spawn_command_line_sync().</doc>
|
|
<source-position filename="gspawn.h" line="253"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29950">%TRUE on success, %FALSE if error is set</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="command_line" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29937">a command line</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="spawn_command_line_sync" c:identifier="g_spawn_command_line_sync" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29954">A simple version of g_spawn_sync() with little-used parameters
|
|
removed, taking a command line instead of an argument vector. See
|
|
g_spawn_sync() for full details. @command_line will be parsed by
|
|
g_shell_parse_argv(). Unlike g_spawn_sync(), the %G_SPAWN_SEARCH_PATH flag
|
|
is enabled. Note that %G_SPAWN_SEARCH_PATH can have security
|
|
implications, so consider using g_spawn_sync() directly if
|
|
appropriate. Possible errors are those from g_spawn_sync() and those
|
|
from g_shell_parse_argv().
|
|
|
|
If @exit_status is non-%NULL, the platform-specific exit status of
|
|
the child is stored there; see the documentation of
|
|
g_spawn_check_exit_status() for how to use and interpret this.
|
|
|
|
On Windows, please note the implications of g_shell_parse_argv()
|
|
parsing @command_line. Parsing is done according to Unix shell rules, not
|
|
Windows command interpreter rules.
|
|
Space is a separator, and backslashes are
|
|
special. Thus you cannot simply pass a @command_line containing
|
|
canonical Windows paths, like "c:\\program files\\app\\app.exe", as
|
|
the backslashes will be eaten, and the space will act as a
|
|
separator. You need to enclose such paths with single quotes, like
|
|
"'c:\\program files\\app\\app.exe' 'e:\\folder\\argument.txt'".</doc>
|
|
<source-position filename="gspawn.h" line="247"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29985">%TRUE on success, %FALSE if an error was set</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="command_line" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29956">a command line</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="standard_output" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29957">return location for child output</doc>
|
|
<array c:type="gchar**">
|
|
<type name="guint8"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="standard_error" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29958">return location for child errors</doc>
|
|
<array c:type="gchar**">
|
|
<type name="guint8"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="exit_status" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29959">return location for child exit status, as returned by waitpid()</doc>
|
|
<type name="gint" c:type="gint*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="spawn_error_quark" c:identifier="g_spawn_error_quark">
|
|
<return-value transfer-ownership="none">
|
|
<type name="Quark" c:type="GQuark"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="spawn_exit_error_quark" c:identifier="g_spawn_exit_error_quark">
|
|
<return-value transfer-ownership="none">
|
|
<type name="Quark" c:type="GQuark"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="spawn_sync" c:identifier="g_spawn_sync" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29989">Executes a child synchronously (waits for the child to exit before returning).
|
|
All output from the child is stored in @standard_output and @standard_error,
|
|
if those parameters are non-%NULL. Note that you must set the
|
|
%G_SPAWN_STDOUT_TO_DEV_NULL and %G_SPAWN_STDERR_TO_DEV_NULL flags when
|
|
passing %NULL for @standard_output and @standard_error.
|
|
|
|
If @exit_status is non-%NULL, the platform-specific exit status of
|
|
the child is stored there; see the documentation of
|
|
g_spawn_check_exit_status() for how to use and interpret this.
|
|
Note that it is invalid to pass %G_SPAWN_DO_NOT_REAP_CHILD in
|
|
@flags, and on POSIX platforms, the same restrictions as for
|
|
g_child_watch_source_new() apply.
|
|
|
|
If an error occurs, no data is returned in @standard_output,
|
|
@standard_error, or @exit_status.
|
|
|
|
This function calls g_spawn_async_with_pipes() internally; see that
|
|
function for full details on the other parameters and details on
|
|
how these functions work on Windows.</doc>
|
|
<source-position filename="gspawn.h" line="235"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30025">%TRUE on success, %FALSE if an error was set</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="working_directory" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29991">child's current working
|
|
directory, or %NULL to inherit parent's</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="argv" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29993">
|
|
child's argument vector</doc>
|
|
<array c:type="gchar**">
|
|
<type name="filename"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="envp" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29995">
|
|
child's environment, or %NULL to inherit parent's</doc>
|
|
<array c:type="gchar**">
|
|
<type name="filename"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="flags" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29997">flags from #GSpawnFlags</doc>
|
|
<type name="SpawnFlags" c:type="GSpawnFlags"/>
|
|
</parameter>
|
|
<parameter name="child_setup" transfer-ownership="none" nullable="1" allow-none="1" scope="async" closure="5">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29998">function to run in the child just before exec()</doc>
|
|
<type name="SpawnChildSetupFunc" c:type="GSpawnChildSetupFunc"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="29999">user data for @child_setup</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="standard_output" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30000">return location for child output, or %NULL</doc>
|
|
<array c:type="gchar**">
|
|
<type name="guint8"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="standard_error" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30001">return location for child error messages, or %NULL</doc>
|
|
<array c:type="gchar**">
|
|
<type name="guint8"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="exit_status" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30002">return location for child exit status, as returned by waitpid(), or %NULL</doc>
|
|
<type name="gint" c:type="gint*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="sprintf" c:identifier="g_sprintf" version="2.2" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30029">An implementation of the standard sprintf() function which supports
|
|
positional parameters, as specified in the Single Unix Specification.
|
|
|
|
Note that it is usually better to use g_snprintf(), to avoid the
|
|
risk of buffer overflow.
|
|
|
|
`glib/gprintf.h` must be explicitly included in order to use this function.
|
|
|
|
See also g_strdup_printf().</doc>
|
|
<source-position filename="gprintf.h" line="35"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30048">the number of bytes printed.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30031">A pointer to a memory buffer to contain the resulting string. It
|
|
is up to the caller to ensure that the allocated buffer is large
|
|
enough to hold the formatted result</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</parameter>
|
|
<parameter name="format" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30034">a standard printf() format string, but notice
|
|
[string precision pitfalls][string-precision]</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="..." transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30036">the arguments to insert in the output.</doc>
|
|
<varargs/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function-macro name="steal_pointer" c:identifier="g_steal_pointer" version="2.44" introspectable="0">
|
|
<doc xml:space="preserve" filename="gmem.h" line="145">Sets @pp to %NULL, returning the value that was there before.
|
|
|
|
Conceptually, this transfers the ownership of the pointer from the
|
|
referenced variable to the "caller" of the macro (ie: "steals" the
|
|
reference).
|
|
|
|
The return value will be properly typed, according to the type of
|
|
@pp.
|
|
|
|
This can be very useful when combined with g_autoptr() to prevent the
|
|
return value of a function from being automatically freed. Consider
|
|
the following example (which only works on GCC and clang):
|
|
|
|
|[
|
|
GObject *
|
|
create_object (void)
|
|
{
|
|
g_autoptr(GObject) obj = g_object_new (G_TYPE_OBJECT, NULL);
|
|
|
|
if (early_error_case)
|
|
return NULL;
|
|
|
|
return g_steal_pointer (&obj);
|
|
}
|
|
]|
|
|
|
|
It can also be used in similar ways for 'out' parameters and is
|
|
particularly useful for dealing with optional out parameters:
|
|
|
|
|[
|
|
gboolean
|
|
get_object (GObject **obj_out)
|
|
{
|
|
g_autoptr(GObject) obj = g_object_new (G_TYPE_OBJECT, NULL);
|
|
|
|
if (early_error_case)
|
|
return FALSE;
|
|
|
|
if (obj_out)
|
|
*obj_out = g_steal_pointer (&obj);
|
|
|
|
return TRUE;
|
|
}
|
|
]|
|
|
|
|
In the above example, the object will be automatically freed in the
|
|
early error case and also in the case that %NULL was given for
|
|
@obj_out.</doc>
|
|
<source-position filename="gmem.h" line="214"/>
|
|
<parameters>
|
|
<parameter name="pp">
|
|
<doc xml:space="preserve" filename="gmem.h" line="147">a pointer to a pointer</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function name="stpcpy" c:identifier="g_stpcpy">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30087">Copies a nul-terminated string into the dest buffer, include the
|
|
trailing nul, and return a pointer to the trailing nul byte.
|
|
This is useful for concatenating multiple strings together
|
|
without having to repeatedly scan for the end.</doc>
|
|
<source-position filename="gstrfuncs.h" line="289"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30097">a pointer to trailing nul byte.</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="dest" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30089">destination buffer.</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</parameter>
|
|
<parameter name="src" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30090">source string.</doc>
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="str_equal" c:identifier="g_str_equal">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30101">Compares two strings for byte-by-byte equality and returns %TRUE
|
|
if they are equal. It can be passed to g_hash_table_new() as the
|
|
@key_equal_func parameter, when using non-%NULL strings as keys in a
|
|
#GHashTable.
|
|
|
|
This function is typically used for hash table comparisons, but can be used
|
|
for general purpose comparisons of non-%NULL strings. For a %NULL-safe string
|
|
comparison function, see g_strcmp0().</doc>
|
|
<source-position filename="ghash.h" line="157"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30115">%TRUE if the two keys match</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="v1" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30103">a key</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
<parameter name="v2" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30104">a key to compare with @v1</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="str_has_prefix" c:identifier="g_str_has_prefix" version="2.2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30119">Looks whether the string @str begins with @prefix.</doc>
|
|
<source-position filename="gstrfuncs.h" line="141"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30126">%TRUE if @str begins with @prefix, %FALSE otherwise.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="str" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30121">a nul-terminated string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="prefix" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30122">the nul-terminated prefix to look for</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="str_has_suffix" c:identifier="g_str_has_suffix" version="2.2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30131">Looks whether the string @str ends with @suffix.</doc>
|
|
<source-position filename="gstrfuncs.h" line="138"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30138">%TRUE if @str end with @suffix, %FALSE otherwise.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="str" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30133">a nul-terminated string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="suffix" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30134">the nul-terminated suffix to look for</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="str_hash" c:identifier="g_str_hash">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30143">Converts a string to a hash value.
|
|
|
|
This function implements the widely used "djb" hash apparently
|
|
posted by Daniel Bernstein to comp.lang.c some time ago. The 32
|
|
bit unsigned hash value starts at 5381 and for each byte 'c' in
|
|
the string, is updated: `hash = hash * 33 + c`. This function
|
|
uses the signed value of each byte.
|
|
|
|
It can be passed to g_hash_table_new() as the @hash_func parameter,
|
|
when using non-%NULL strings as keys in a #GHashTable.
|
|
|
|
Note that this function may not be a perfect fit for all use cases.
|
|
For example, it produces some hash collisions with strings as short
|
|
as 2.</doc>
|
|
<source-position filename="ghash.h" line="160"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30162">a hash value corresponding to the key</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="v" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30145">a string key</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="str_is_ascii" c:identifier="g_str_is_ascii" version="2.40">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30166">Determines if a string is pure ASCII. A string is pure ASCII if it
|
|
contains no bytes with the high bit set.</doc>
|
|
<source-position filename="gstrfuncs.h" line="198"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30173">%TRUE if @str is ASCII</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="str" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30168">a string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="str_match_string" c:identifier="g_str_match_string" version="2.40">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30178">Checks if a search conducted for @search_term should match
|
|
@potential_hit.
|
|
|
|
This function calls g_str_tokenize_and_fold() on both
|
|
@search_term and @potential_hit. ASCII alternates are never taken
|
|
for @search_term but will be taken for @potential_hit according to
|
|
the value of @accept_alternates.
|
|
|
|
A hit occurs when each folded token in @search_term is a prefix of a
|
|
folded token from @potential_hit.
|
|
|
|
Depending on how you're performing the search, it will typically be
|
|
faster to call g_str_tokenize_and_fold() on each string in
|
|
your corpus and build an index on the returned folded tokens, then
|
|
call g_str_tokenize_and_fold() on the search term and
|
|
perform lookups into that index.
|
|
|
|
As some examples, searching for ‘fred’ would match the potential hit
|
|
‘Smith, Fred’ and also ‘Frédéric’. Searching for ‘Fréd’ would match
|
|
‘Frédéric’ but not ‘Frederic’ (due to the one-directional nature of
|
|
accent matching). Searching ‘fo’ would match ‘Foo’ and ‘Bar Foo
|
|
Baz’, but not ‘SFO’ (because no word has ‘fo’ as a prefix).</doc>
|
|
<source-position filename="gstrfuncs.h" line="302"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30207">%TRUE if @potential_hit is a hit</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="search_term" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30180">the search term from the user</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="potential_hit" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30181">the text that may be a hit</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="accept_alternates" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30182">%TRUE to accept ASCII alternates</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="str_to_ascii" c:identifier="g_str_to_ascii" version="2.40">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30212">Transliterate @str to plain ASCII.
|
|
|
|
For best results, @str should be in composed normalised form.
|
|
|
|
This function performs a reasonably good set of character
|
|
replacements. The particular set of replacements that is done may
|
|
change by version or even by runtime environment.
|
|
|
|
If the source language of @str is known, it can used to improve the
|
|
accuracy of the translation by passing it as @from_locale. It should
|
|
be a valid POSIX locale string (of the form
|
|
`language[_territory][.codeset][@modifier]`).
|
|
|
|
If @from_locale is %NULL then the current locale is used.
|
|
|
|
If you want to do translation for no specific locale, and you want it
|
|
to be done independently of the currently locale, specify `"C"` for
|
|
@from_locale.</doc>
|
|
<source-position filename="gstrfuncs.h" line="293"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30236">a string in plain ASCII</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="str" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30214">a string, in UTF-8</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="from_locale" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30215">the source locale, if known</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="str_tokenize_and_fold" c:identifier="g_str_tokenize_and_fold" version="2.40">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30241">Tokenises @string and performs folding on each token.
|
|
|
|
A token is a non-empty sequence of alphanumeric characters in the
|
|
source string, separated by non-alphanumeric characters. An
|
|
"alphanumeric" character for this purpose is one that matches
|
|
g_unichar_isalnum() or g_unichar_ismark().
|
|
|
|
Each token is then (Unicode) normalised and case-folded. If
|
|
@ascii_alternates is non-%NULL and some of the returned tokens
|
|
contain non-ASCII characters, ASCII alternatives will be generated.
|
|
|
|
The number of ASCII alternatives that are generated and the method
|
|
for doing so is unspecified, but @translit_locale (if specified) may
|
|
improve the transliteration if the language of the source string is
|
|
known.</doc>
|
|
<source-position filename="gstrfuncs.h" line="297"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30265">the folded tokens</doc>
|
|
<array c:type="gchar**">
|
|
<type name="utf8"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30243">a string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="translit_locale" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30244">the language code (like 'de' or
|
|
'en_GB') from which @string originates</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="ascii_alternates" direction="out" caller-allocates="0" transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30246">a
|
|
return location for ASCII alternates</doc>
|
|
<array c:type="gchar***">
|
|
<type name="utf8" c:type="gchar**"/>
|
|
</array>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="strcanon" c:identifier="g_strcanon">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30270">For each character in @string, if the character is not in @valid_chars,
|
|
replaces the character with @substitutor. Modifies @string in place,
|
|
and return @string itself, not a copy. The return value is to allow
|
|
nesting such as
|
|
|[<!-- language="C" -->
|
|
g_ascii_strup (g_strcanon (str, "abc", '?'))
|
|
]|
|
|
|
|
In order to modify a copy, you may use `g_strdup()`:
|
|
|[<!-- language="C" -->
|
|
reformatted = g_strcanon (g_strdup (const_str), "abc", '?');
|
|
...
|
|
g_free (reformatted);
|
|
]|</doc>
|
|
<source-position filename="gstrfuncs.h" line="108"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30291">@string</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30272">a nul-terminated array of bytes</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</parameter>
|
|
<parameter name="valid_chars" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30273">bytes permitted in @string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="substitutor" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30274">replacement character for disallowed bytes</doc>
|
|
<type name="gchar" c:type="gchar"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="strcasecmp" c:identifier="g_strcasecmp" deprecated="1" deprecated-version="2.2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30295">A case-insensitive string comparison, corresponding to the standard
|
|
strcasecmp() function on platforms which support it.</doc>
|
|
<doc-deprecated xml:space="preserve">See g_strncasecmp() for a discussion of why this
|
|
function is deprecated and how to replace it.</doc-deprecated>
|
|
<source-position filename="gstrfuncs.h" line="201"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30303">0 if the strings match, a negative value if @s1 < @s2,
|
|
or a positive value if @s1 > @s2.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="s1" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30297">a string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="s2" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30298">a string to compare with @s1</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="strchomp" c:identifier="g_strchomp">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30310">Removes trailing whitespace from a string.
|
|
|
|
This function doesn't allocate or reallocate any memory;
|
|
it modifies @string in place. Therefore, it cannot be used
|
|
on statically allocated strings.
|
|
|
|
The pointer to @string is returned to allow the nesting of functions.
|
|
|
|
Also see g_strchug() and g_strstrip().</doc>
|
|
<source-position filename="gstrfuncs.h" line="179"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30324">@string</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30312">a string to remove the trailing whitespace from</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="strchug" c:identifier="g_strchug">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30328">Removes leading whitespace from a string, by moving the rest
|
|
of the characters forward.
|
|
|
|
This function doesn't allocate or reallocate any memory;
|
|
it modifies @string in place. Therefore, it cannot be used on
|
|
statically allocated strings.
|
|
|
|
The pointer to @string is returned to allow the nesting of functions.
|
|
|
|
Also see g_strchomp() and g_strstrip().</doc>
|
|
<source-position filename="gstrfuncs.h" line="176"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30343">@string</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30330">a string to remove the leading whitespace from</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="strcmp0" c:identifier="g_strcmp0" version="2.16">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30347">Compares @str1 and @str2 like strcmp(). Handles %NULL
|
|
gracefully by sorting it before non-%NULL strings.
|
|
Comparing two %NULL pointers returns 0.</doc>
|
|
<source-position filename="gtestutils.h" line="171"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30356">an integer less than, equal to, or greater than zero, if @str1 is <, == or > than @str2.</doc>
|
|
<type name="gint" c:type="int"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="str1" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30349">a C string or %NULL</doc>
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
<parameter name="str2" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30350">another C string or %NULL</doc>
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="strcompress" c:identifier="g_strcompress">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30361">Replaces all escaped characters with their one byte equivalent.
|
|
|
|
This function does the reverse conversion of g_strescape().</doc>
|
|
<source-position filename="gstrfuncs.h" line="242"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30369">a newly-allocated copy of @source with all escaped
|
|
character compressed</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="source" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30363">a string to compress</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="strconcat" c:identifier="g_strconcat" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30374">Concatenates all of the given strings into one long string. The
|
|
returned string should be freed with g_free() when no longer needed.
|
|
|
|
The variable argument list must end with %NULL. If you forget the %NULL,
|
|
g_strconcat() will start appending random memory junk to your string.
|
|
|
|
Note that this function is usually not the right function to use to
|
|
assemble a translated message from pieces, since proper translation
|
|
often requires the pieces to be reordered.</doc>
|
|
<source-position filename="gstrfuncs.h" line="231"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30389">a newly-allocated string containing all the string arguments</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="string1" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30376">the first string to add, which must not be %NULL</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="..." transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30377">a %NULL-terminated list of strings to append to the string</doc>
|
|
<varargs/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="strdelimit" c:identifier="g_strdelimit">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30393">Converts any delimiter characters in @string to @new_delimiter.
|
|
Any characters in @string which are found in @delimiters are
|
|
changed to the @new_delimiter character. Modifies @string in place,
|
|
and returns @string itself, not a copy. The return value is to
|
|
allow nesting such as
|
|
|[<!-- language="C" -->
|
|
g_ascii_strup (g_strdelimit (str, "abc", '?'))
|
|
]|
|
|
|
|
In order to modify a copy, you may use `g_strdup()`:
|
|
|[<!-- language="C" -->
|
|
reformatted = g_strdelimit (g_strdup (const_str), "abc", '?');
|
|
...
|
|
g_free (reformatted);
|
|
]|</doc>
|
|
<source-position filename="gstrfuncs.h" line="104"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30416">@string</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30395">the string to convert</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</parameter>
|
|
<parameter name="delimiters" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30396">a string containing the current delimiters,
|
|
or %NULL to use the standard delimiters defined in #G_STR_DELIMITERS</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="new_delimiter" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30398">the new delimiter character</doc>
|
|
<type name="gchar" c:type="gchar"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="strdown" c:identifier="g_strdown" deprecated="1" deprecated-version="2.2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30420">Converts a string to lower case.</doc>
|
|
<doc-deprecated xml:space="preserve">This function is totally broken for the reasons discussed
|
|
in the g_strncasecmp() docs - use g_ascii_strdown() or g_utf8_strdown()
|
|
instead.</doc-deprecated>
|
|
<source-position filename="gstrfuncs.h" line="208"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30426">the string</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30422">the string to convert.</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="strdup" c:identifier="g_strdup">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30433">Duplicates a string. If @str is %NULL it returns %NULL.
|
|
The returned string should be freed with g_free()
|
|
when no longer needed.</doc>
|
|
<source-position filename="gstrfuncs.h" line="217"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30441">a newly-allocated copy of @str</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="str" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30435">the string to duplicate</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="strdup_printf" c:identifier="g_strdup_printf" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30445">Similar to the standard C sprintf() function but safer, since it
|
|
calculates the maximum space required and allocates memory to hold
|
|
the result. The returned string should be freed with g_free() when no
|
|
longer needed.</doc>
|
|
<source-position filename="gstrfuncs.h" line="219"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30456">a newly-allocated string holding the result</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="format" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30447">a standard printf() format string, but notice
|
|
[string precision pitfalls][string-precision]</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="..." transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30449">the parameters to insert into the format string</doc>
|
|
<varargs/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="strdup_vprintf" c:identifier="g_strdup_vprintf" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30460">Similar to the standard C vsprintf() function but safer, since it
|
|
calculates the maximum space required and allocates memory to hold
|
|
the result. The returned string should be freed with g_free() when
|
|
no longer needed.
|
|
|
|
See also g_vasprintf(), which offers the same functionality, but
|
|
additionally returns the length of the allocated string.</doc>
|
|
<source-position filename="gstrfuncs.h" line="222"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30474">a newly-allocated string holding the result</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="format" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30462">a standard printf() format string, but notice
|
|
[string precision pitfalls][string-precision]</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="args" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30464">the list of parameters to insert into the format string</doc>
|
|
<type name="va_list" c:type="va_list"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="strdupv" c:identifier="g_strdupv" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30478">Copies %NULL-terminated array of strings. The copy is a deep copy;
|
|
the new array should be freed by first freeing each string, then
|
|
the array itself. g_strfreev() does this for you. If called
|
|
on a %NULL value, g_strdupv() simply returns %NULL.</doc>
|
|
<source-position filename="gstrfuncs.h" line="284"/>
|
|
<return-value nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30487">a new %NULL-terminated array of strings.</doc>
|
|
<array c:type="gchar**">
|
|
<type name="utf8"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="str_array" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30480">a %NULL-terminated array of strings</doc>
|
|
<type name="utf8" c:type="gchar**"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="strerror" c:identifier="g_strerror">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30491">Returns a string corresponding to the given error code, e.g. "no
|
|
such process". Unlike strerror(), this always returns a string in
|
|
UTF-8 encoding, and the pointer is guaranteed to remain valid for
|
|
the lifetime of the process.
|
|
|
|
Note that the string may be translated according to the current locale.
|
|
|
|
The value of %errno will not be changed by this function. However, it may
|
|
be changed by intermediate function calls, so you should save its value
|
|
as soon as the call returns:
|
|
|[
|
|
int saved_errno;
|
|
|
|
ret = read (blah);
|
|
saved_errno = errno;
|
|
|
|
g_strerror (saved_errno);
|
|
]|</doc>
|
|
<source-position filename="gstrfuncs.h" line="112"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30515">a UTF-8 string describing the error code. If the error code
|
|
is unknown, it returns a string like "unknown error (<code>)".</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="errnum" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30493">the system error number. See the standard C %errno
|
|
documentation</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="strescape" c:identifier="g_strescape">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30520">Escapes the special characters '\b', '\f', '\n', '\r', '\t', '\v', '\'
|
|
and '"' in the string @source by inserting a '\' before
|
|
them. Additionally all characters in the range 0x01-0x1F (everything
|
|
below SPACE) and in the range 0x7F-0xFF (all non-ASCII chars) are
|
|
replaced with a '\' followed by their octal representation.
|
|
Characters supplied in @exceptions are not escaped.
|
|
|
|
g_strcompress() does the reverse conversion.</doc>
|
|
<source-position filename="gstrfuncs.h" line="253"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30534">a newly-allocated copy of @source with certain
|
|
characters escaped. See above.</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="source" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30522">a string to escape</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="exceptions" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30523">a string of characters not to escape in @source</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="strfreev" c:identifier="g_strfreev">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30539">Frees a %NULL-terminated array of strings, as well as each
|
|
string it contains.
|
|
|
|
If @str_array is %NULL, this function simply returns.</doc>
|
|
<source-position filename="gstrfuncs.h" line="282"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="str_array" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30541">a %NULL-terminated array of strings to free</doc>
|
|
<type name="utf8" c:type="gchar**"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="string_new" c:identifier="g_string_new">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30936">Creates a new #GString, initialized with the given string.</doc>
|
|
<source-position filename="gstring.h" line="49"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30943">the new #GString</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="init" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30938">the initial text to copy into the string, or %NULL to
|
|
start with an empty string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="string_new_len" c:identifier="g_string_new_len">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30947">Creates a new #GString with @len bytes of the @init buffer.
|
|
Because a length is provided, @init need not be nul-terminated,
|
|
and can contain embedded nul bytes.
|
|
|
|
Since this function does not stop at nul bytes, it is the caller's
|
|
responsibility to ensure that @init has at least @len addressable
|
|
bytes.</doc>
|
|
<source-position filename="gstring.h" line="51"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30960">a new #GString</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="init" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30949">initial contents of the string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="30950">length of @init to use</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="string_sized_new" c:identifier="g_string_sized_new">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31077">Creates a new #GString, with enough space for @dfl_size
|
|
bytes. This is useful if you are going to add a lot of
|
|
text to the string and don't want it to be reallocated
|
|
too often.</doc>
|
|
<source-position filename="gstring.h" line="54"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31087">the new #GString</doc>
|
|
<type name="String" c:type="GString*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="dfl_size" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31079">the default size of the space allocated to
|
|
hold the string</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="strip_context" c:identifier="g_strip_context" version="2.4">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31159">An auxiliary function for gettext() support (see Q_()).</doc>
|
|
<source-position filename="ggettext.h" line="37"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31166">@msgval, unless @msgval is identical to @msgid
|
|
and contains a '|' character, in which case a pointer to
|
|
the substring of msgid after the first '|' character is returned.</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="msgid" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31161">a string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="msgval" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31162">another string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="strjoin" c:identifier="g_strjoin" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31173">Joins a number of strings together to form one long string, with the
|
|
optional @separator inserted between each of them. The returned string
|
|
should be freed with g_free().</doc>
|
|
<source-position filename="gstrfuncs.h" line="234"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31183">a newly-allocated string containing all of the strings joined
|
|
together, with @separator between them</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="separator" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31175">a string to insert between each of the
|
|
strings, or %NULL</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="..." transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31177">a %NULL-terminated list of strings to join</doc>
|
|
<varargs/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="strjoinv" c:identifier="g_strjoinv">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31188">Joins a number of strings together to form one long string, with the
|
|
optional @separator inserted between each of them. The returned string
|
|
should be freed with g_free().
|
|
|
|
If @str_array has no items, the return value will be an
|
|
empty string. If @str_array contains a single item, @separator will not
|
|
appear in the resulting string.</doc>
|
|
<source-position filename="gstrfuncs.h" line="279"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31202">a newly-allocated string containing all of the strings joined
|
|
together, with @separator between them</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="separator" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31190">a string to insert between each of the
|
|
strings, or %NULL</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="str_array" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31192">a %NULL-terminated array of strings to join</doc>
|
|
<type name="utf8" c:type="gchar**"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="strlcat" c:identifier="g_strlcat">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31207">Portability wrapper that calls strlcat() on systems which have it,
|
|
and emulates it otherwise. Appends nul-terminated @src string to @dest,
|
|
guaranteeing nul-termination for @dest. The total size of @dest won't
|
|
exceed @dest_size.
|
|
|
|
At most @dest_size - 1 characters will be copied. Unlike strncat(),
|
|
@dest_size is the full size of dest, not the space left over. This
|
|
function does not allocate memory. It always nul-terminates (unless
|
|
@dest_size == 0 or there were no nul characters in the @dest_size
|
|
characters of dest to start with).
|
|
|
|
Caveat: this is supposedly a more secure alternative to strcat() or
|
|
strncat(), but for real security g_strconcat() is harder to mess up.</doc>
|
|
<source-position filename="gstrfuncs.h" line="122"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31228">size of attempted result, which is MIN (dest_size, strlen
|
|
(original dest)) + strlen (src), so if retval >= dest_size,
|
|
truncation occurred.</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="dest" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31209">destination buffer, already containing one nul-terminated string</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</parameter>
|
|
<parameter name="src" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31210">source buffer</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="dest_size" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31211">length of @dest buffer in bytes (not length of existing string
|
|
inside @dest)</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="strlcpy" c:identifier="g_strlcpy">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31234">Portability wrapper that calls strlcpy() on systems which have it,
|
|
and emulates strlcpy() otherwise. Copies @src to @dest; @dest is
|
|
guaranteed to be nul-terminated; @src must be nul-terminated;
|
|
@dest_size is the buffer size, not the number of bytes to copy.
|
|
|
|
At most @dest_size - 1 characters will be copied. Always nul-terminates
|
|
(unless @dest_size is 0). This function does not allocate memory. Unlike
|
|
strncpy(), this function doesn't pad @dest (so it's often faster). It
|
|
returns the size of the attempted result, strlen (src), so if
|
|
@retval >= @dest_size, truncation occurred.
|
|
|
|
Caveat: strlcpy() is supposedly more secure than strcpy() or strncpy(),
|
|
but if you really want to avoid screwups, g_strdup() is an even better
|
|
idea.</doc>
|
|
<source-position filename="gstrfuncs.h" line="118"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31255">length of @src</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="dest" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31236">destination buffer</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</parameter>
|
|
<parameter name="src" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31237">source buffer</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="dest_size" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31238">length of @dest in bytes</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="strncasecmp" c:identifier="g_strncasecmp" deprecated="1" deprecated-version="2.2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31259">A case-insensitive string comparison, corresponding to the standard
|
|
strncasecmp() function on platforms which support it. It is similar
|
|
to g_strcasecmp() except it only compares the first @n characters of
|
|
the strings.</doc>
|
|
<doc-deprecated xml:space="preserve">The problem with g_strncasecmp() is that it does
|
|
the comparison by calling toupper()/tolower(). These functions
|
|
are locale-specific and operate on single bytes. However, it is
|
|
impossible to handle things correctly from an internationalization
|
|
standpoint by operating on bytes, since characters may be multibyte.
|
|
Thus g_strncasecmp() is broken if your string is guaranteed to be
|
|
ASCII, since it is locale-sensitive, and it's broken if your string
|
|
is localized, since it doesn't work on many encodings at all,
|
|
including UTF-8, EUC-JP, etc.
|
|
|
|
There are therefore two replacement techniques: g_ascii_strncasecmp(),
|
|
which only works on ASCII and is not locale-sensitive, and
|
|
g_utf8_casefold() followed by strcmp() on the resulting strings,
|
|
which is good for case-insensitive sorting of UTF-8.</doc-deprecated>
|
|
<source-position filename="gstrfuncs.h" line="204"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31270">0 if the strings match, a negative value if @s1 < @s2,
|
|
or a positive value if @s1 > @s2.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="s1" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31261">a string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="s2" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31262">a string to compare with @s1</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="n" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31263">the maximum number of characters to compare</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="strndup" c:identifier="g_strndup">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31289">Duplicates the first @n bytes of a string, returning a newly-allocated
|
|
buffer @n + 1 bytes long which will always be nul-terminated. If @str
|
|
is less than @n bytes long the buffer is padded with nuls. If @str is
|
|
%NULL it returns %NULL. The returned value should be freed when no longer
|
|
needed.
|
|
|
|
To copy a number of characters from a UTF-8 encoded string,
|
|
use g_utf8_strncpy() instead.</doc>
|
|
<source-position filename="gstrfuncs.h" line="225"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31303">a newly-allocated buffer containing the first @n bytes
|
|
of @str, nul-terminated</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="str" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31291">the string to duplicate</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="n" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31292">the maximum number of bytes to copy from @str</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="strnfill" c:identifier="g_strnfill">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31308">Creates a new string @length bytes long filled with @fill_char.
|
|
The returned string should be freed when no longer needed.</doc>
|
|
<source-position filename="gstrfuncs.h" line="228"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31316">a newly-allocated string filled the @fill_char</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="length" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31310">the length of the new string</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
<parameter name="fill_char" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31311">the byte to fill the string with</doc>
|
|
<type name="gchar" c:type="gchar"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="strreverse" c:identifier="g_strreverse">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31320">Reverses all of the bytes in a string. For example,
|
|
`g_strreverse ("abcdef")` will result in "fedcba".
|
|
|
|
Note that g_strreverse() doesn't work on UTF-8 strings
|
|
containing multibyte characters. For that purpose, use
|
|
g_utf8_strreverse().</doc>
|
|
<source-position filename="gstrfuncs.h" line="116"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31331">the same pointer passed in as @string</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31322">the string to reverse</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="strrstr" c:identifier="g_strrstr">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31335">Searches the string @haystack for the last occurrence
|
|
of the string @needle.</doc>
|
|
<source-position filename="gstrfuncs.h" line="130"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31343">a pointer to the found occurrence, or
|
|
%NULL if not found.</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="haystack" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31337">a nul-terminated string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="needle" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31338">the nul-terminated string to search for</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="strrstr_len" c:identifier="g_strrstr_len">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31348">Searches the string @haystack for the last occurrence
|
|
of the string @needle, limiting the length of the search
|
|
to @haystack_len.</doc>
|
|
<source-position filename="gstrfuncs.h" line="133"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31358">a pointer to the found occurrence, or
|
|
%NULL if not found.</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="haystack" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31350">a nul-terminated string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="haystack_len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31351">the maximum length of @haystack</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
<parameter name="needle" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31352">the nul-terminated string to search for</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="strsignal" c:identifier="g_strsignal">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31363">Returns a string describing the given signal, e.g. "Segmentation fault".
|
|
You should use this function in preference to strsignal(), because it
|
|
returns a string in UTF-8 encoding, and since not all platforms support
|
|
the strsignal() function.</doc>
|
|
<source-position filename="gstrfuncs.h" line="114"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31372">a UTF-8 string describing the signal. If the signal is unknown,
|
|
it returns "unknown signal (<signum>)".</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="signum" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31365">the signal number. See the `signal` documentation</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="strsplit" c:identifier="g_strsplit" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31377">Splits a string into a maximum of @max_tokens pieces, using the given
|
|
@delimiter. If @max_tokens is reached, the remainder of @string is
|
|
appended to the last token.
|
|
|
|
As an example, the result of g_strsplit (":a:bc::d:", ":", -1) is a
|
|
%NULL-terminated vector containing the six strings "", "a", "bc", "", "d"
|
|
and "".
|
|
|
|
As a special case, the result of splitting the empty string "" is an empty
|
|
vector, not a vector containing a single string. The reason for this
|
|
special case is that being able to represent a empty vector is typically
|
|
more useful than consistent handling of empty elements. If you do need
|
|
to represent empty elements, you'll need to check for the empty string
|
|
before calling g_strsplit().</doc>
|
|
<source-position filename="gstrfuncs.h" line="271"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31401">a newly-allocated %NULL-terminated array of strings. Use
|
|
g_strfreev() to free it.</doc>
|
|
<array c:type="gchar**">
|
|
<type name="utf8"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31379">a string to split</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="delimiter" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31380">a string which specifies the places at which to split
|
|
the string. The delimiter is not included in any of the resulting
|
|
strings, unless @max_tokens is reached.</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="max_tokens" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31383">the maximum number of pieces to split @string into.
|
|
If this is less than 1, the string is split completely.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="strsplit_set" c:identifier="g_strsplit_set" version="2.4" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31406">Splits @string into a number of tokens not containing any of the characters
|
|
in @delimiter. A token is the (possibly empty) longest string that does not
|
|
contain any of the characters in @delimiters. If @max_tokens is reached, the
|
|
remainder is appended to the last token.
|
|
|
|
For example the result of g_strsplit_set ("abc:def/ghi", ":/", -1) is a
|
|
%NULL-terminated vector containing the three strings "abc", "def",
|
|
and "ghi".
|
|
|
|
The result of g_strsplit_set (":def/ghi:", ":/", -1) is a %NULL-terminated
|
|
vector containing the four strings "", "def", "ghi", and "".
|
|
|
|
As a special case, the result of splitting the empty string "" is an empty
|
|
vector, not a vector containing a single string. The reason for this
|
|
special case is that being able to represent a empty vector is typically
|
|
more useful than consistent handling of empty elements. If you do need
|
|
to represent empty elements, you'll need to check for the empty string
|
|
before calling g_strsplit_set().
|
|
|
|
Note that this function works on bytes not characters, so it can't be used
|
|
to delimit UTF-8 strings for anything but ASCII characters.</doc>
|
|
<source-position filename="gstrfuncs.h" line="275"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31436">a newly-allocated %NULL-terminated array of strings. Use
|
|
g_strfreev() to free it.</doc>
|
|
<array c:type="gchar**">
|
|
<type name="utf8"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31408">The string to be tokenized</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="delimiters" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31409">A nul-terminated string containing bytes that are used
|
|
to split the string.</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="max_tokens" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31411">The maximum number of tokens to split @string into.
|
|
If this is less than 1, the string is split completely</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="strstr_len" c:identifier="g_strstr_len">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31442">Searches the string @haystack for the first occurrence
|
|
of the string @needle, limiting the length of the search
|
|
to @haystack_len.</doc>
|
|
<source-position filename="gstrfuncs.h" line="126"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31454">a pointer to the found occurrence, or
|
|
%NULL if not found.</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="haystack" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31444">a string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="haystack_len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31445">the maximum length of @haystack. Note that -1 is
|
|
a valid length, if @haystack is nul-terminated, meaning it will
|
|
search through the whole string.</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
<parameter name="needle" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31448">the string to search for</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function-macro name="strstrip" c:identifier="g_strstrip" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31459">Removes leading and trailing whitespace from a string.
|
|
See g_strchomp() and g_strchug().</doc>
|
|
<source-position filename="gstrfuncs.h" line="181"/>
|
|
<parameters>
|
|
<parameter name="string">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31461">a string to remove the leading and trailing whitespace from</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function name="strtod" c:identifier="g_strtod">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31470">Converts a string to a #gdouble value.
|
|
It calls the standard strtod() function to handle the conversion, but
|
|
if the string is not completely converted it attempts the conversion
|
|
again with g_ascii_strtod(), and returns the best match.
|
|
|
|
This function should seldom be used. The normal situation when reading
|
|
numbers not for human consumption is to use g_ascii_strtod(). Only when
|
|
you know that you must expect both locale formatted and C formatted numbers
|
|
should you use this. Make sure that you don't pass strings such as comma
|
|
separated lists of values, since the commas may be interpreted as a decimal
|
|
point in some locales, causing unexpected results.</doc>
|
|
<source-position filename="gstrfuncs.h" line="147"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31488">the #gdouble value.</doc>
|
|
<type name="gdouble" c:type="gdouble"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="nptr" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31472">the string to convert to a numeric value.</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="endptr" direction="out" caller-allocates="0" transfer-ownership="none" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31473">if non-%NULL, it returns the
|
|
character after the last character used in the conversion.</doc>
|
|
<type name="utf8" c:type="gchar**"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="strup" c:identifier="g_strup" deprecated="1" deprecated-version="2.2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31492">Converts a string to upper case.</doc>
|
|
<doc-deprecated xml:space="preserve">This function is totally broken for the reasons
|
|
discussed in the g_strncasecmp() docs - use g_ascii_strup()
|
|
or g_utf8_strup() instead.</doc-deprecated>
|
|
<source-position filename="gstrfuncs.h" line="210"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31498">the string</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31494">the string to convert</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="strv_contains" c:identifier="g_strv_contains" version="2.44">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31505">Checks if @strv contains @str. @strv must not be %NULL.</doc>
|
|
<source-position filename="gstrfuncs.h" line="307"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31512">%TRUE if @str is an element of @strv, according to g_str_equal().</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="strv" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31507">a %NULL-terminated array of strings</doc>
|
|
<type name="utf8" c:type="const gchar* const*"/>
|
|
</parameter>
|
|
<parameter name="str" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31508">a string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="strv_equal" c:identifier="g_strv_equal" version="2.60">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31517">Checks if @strv1 and @strv2 contain exactly the same elements in exactly the
|
|
same order. Elements are compared using g_str_equal(). To match independently
|
|
of order, sort the arrays first (using g_qsort_with_data() or similar).
|
|
|
|
Two empty arrays are considered equal. Neither @strv1 not @strv2 may be
|
|
%NULL.</doc>
|
|
<source-position filename="gstrfuncs.h" line="311"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31529">%TRUE if @strv1 and @strv2 are equal</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="strv1" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31519">a %NULL-terminated array of strings</doc>
|
|
<type name="utf8" c:type="const gchar* const*"/>
|
|
</parameter>
|
|
<parameter name="strv2" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31520">another %NULL-terminated array of strings</doc>
|
|
<type name="utf8" c:type="const gchar* const*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="strv_get_type" c:identifier="g_strv_get_type">
|
|
<source-position filename="glib-types.h" line="303"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="GType" c:type="GType"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="strv_length" c:identifier="g_strv_length" version="2.6">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31534">Returns the length of the given %NULL-terminated
|
|
string array @str_array. @str_array must not be %NULL.</doc>
|
|
<source-position filename="gstrfuncs.h" line="286"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31541">length of @str_array.</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="str_array" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31536">a %NULL-terminated array of strings</doc>
|
|
<type name="utf8" c:type="gchar**"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function-macro name="test_add" c:identifier="g_test_add" version="2.16" introspectable="0">
|
|
<doc xml:space="preserve" filename="gtestutils.h" line="285">Hook up a new test case at @testpath, similar to g_test_add_func().
|
|
A fixture data structure with setup and teardown functions may be provided,
|
|
similar to g_test_create_case().
|
|
|
|
g_test_add() is implemented as a macro, so that the fsetup(), ftest() and
|
|
fteardown() callbacks can expect a @Fixture pointer as their first argument
|
|
in a type safe manner. They otherwise have type #GTestFixtureFunc.</doc>
|
|
<source-position filename="gtestutils.h" line="304"/>
|
|
<parameters>
|
|
<parameter name="testpath">
|
|
<doc xml:space="preserve" filename="gtestutils.h" line="287">The test path for a new test case.</doc>
|
|
</parameter>
|
|
<parameter name="Fixture">
|
|
<doc xml:space="preserve" filename="gtestutils.h" line="288">The type of a fixture data structure.</doc>
|
|
</parameter>
|
|
<parameter name="tdata">
|
|
<doc xml:space="preserve" filename="gtestutils.h" line="289">Data argument for the test functions.</doc>
|
|
</parameter>
|
|
<parameter name="fsetup">
|
|
<doc xml:space="preserve" filename="gtestutils.h" line="290">The function to set up the fixture data.</doc>
|
|
</parameter>
|
|
<parameter name="ftest">
|
|
<doc xml:space="preserve" filename="gtestutils.h" line="291">The actual test function.</doc>
|
|
</parameter>
|
|
<parameter name="fteardown">
|
|
<doc xml:space="preserve" filename="gtestutils.h" line="292">The function to tear down the fixture data.</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function name="test_add_data_func" c:identifier="g_test_add_data_func" version="2.16">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31546">Create a new test case, similar to g_test_create_case(). However
|
|
the test is assumed to use no fixture, and test suites are automatically
|
|
created on the fly and added to the root fixture, based on the
|
|
slash-separated portions of @testpath. The @test_data argument
|
|
will be passed as first argument to @test_func.
|
|
|
|
If @testpath includes the component "subprocess" anywhere in it,
|
|
the test will be skipped by default, and only run if explicitly
|
|
required via the `-p` command-line option or g_test_trap_subprocess().
|
|
|
|
No component of @testpath may start with a dot (`.`) if the
|
|
%G_TEST_OPTION_ISOLATE_DIRS option is being used; and it is recommended to
|
|
do so even if it isn’t.</doc>
|
|
<source-position filename="gtestutils.h" line="263"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="testpath" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31548">/-separated test case path name for the test.</doc>
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
<parameter name="test_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31549">Test data argument for the test function.</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
<parameter name="test_func" transfer-ownership="none" scope="async">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31550">The test function to invoke for this test.</doc>
|
|
<type name="TestDataFunc" c:type="GTestDataFunc"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="test_add_data_func_full" c:identifier="g_test_add_data_func_full" version="2.34">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31570">Create a new test case, as with g_test_add_data_func(), but freeing
|
|
@test_data after the test run is complete.</doc>
|
|
<source-position filename="gtestutils.h" line="268"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="testpath" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31572">/-separated test case path name for the test.</doc>
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
<parameter name="test_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31573">Test data argument for the test function.</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="test_func" transfer-ownership="none" scope="notified" destroy="3">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31574">The test function to invoke for this test.</doc>
|
|
<type name="TestDataFunc" c:type="GTestDataFunc"/>
|
|
</parameter>
|
|
<parameter name="data_free_func" transfer-ownership="none" scope="async">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31575">#GDestroyNotify for @test_data.</doc>
|
|
<type name="DestroyNotify" c:type="GDestroyNotify"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="test_add_func" c:identifier="g_test_add_func" version="2.16">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31584">Create a new test case, similar to g_test_create_case(). However
|
|
the test is assumed to use no fixture, and test suites are automatically
|
|
created on the fly and added to the root fixture, based on the
|
|
slash-separated portions of @testpath.
|
|
|
|
If @testpath includes the component "subprocess" anywhere in it,
|
|
the test will be skipped by default, and only run if explicitly
|
|
required via the `-p` command-line option or g_test_trap_subprocess().
|
|
|
|
No component of @testpath may start with a dot (`.`) if the
|
|
%G_TEST_OPTION_ISOLATE_DIRS option is being used; and it is recommended to
|
|
do so even if it isn’t.</doc>
|
|
<source-position filename="gtestutils.h" line="259"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="testpath" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31586">/-separated test case path name for the test.</doc>
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
<parameter name="test_func" transfer-ownership="none" scope="async">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31587">The test function to invoke for this test.</doc>
|
|
<type name="TestFunc" c:type="GTestFunc"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="test_add_vtable" c:identifier="g_test_add_vtable" introspectable="0">
|
|
<source-position filename="gtestutils.h" line="485"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="testpath" transfer-ownership="none">
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
<parameter name="data_size" transfer-ownership="none">
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
<parameter name="test_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
<parameter name="data_setup" transfer-ownership="none">
|
|
<type name="TestFixtureFunc" c:type="GTestFixtureFunc"/>
|
|
</parameter>
|
|
<parameter name="data_test" transfer-ownership="none">
|
|
<type name="TestFixtureFunc" c:type="GTestFixtureFunc"/>
|
|
</parameter>
|
|
<parameter name="data_teardown" transfer-ownership="none">
|
|
<type name="TestFixtureFunc" c:type="GTestFixtureFunc"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="test_assert_expected_messages_internal" c:identifier="g_test_assert_expected_messages_internal">
|
|
<source-position filename="gtestutils.h" line="579"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="domain" transfer-ownership="none">
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
<parameter name="file" transfer-ownership="none">
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
<parameter name="line" transfer-ownership="none">
|
|
<type name="gint" c:type="int"/>
|
|
</parameter>
|
|
<parameter name="func" transfer-ownership="none">
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="test_bug" c:identifier="g_test_bug" version="2.16">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31623">This function adds a message to test reports that
|
|
associates a bug URI with a test case.
|
|
Bug URIs are constructed from a base URI set with g_test_bug_base()
|
|
and @bug_uri_snippet.</doc>
|
|
<doc-version xml:space="preserve">
|
|
See also: g_test_summary()</doc-version>
|
|
<source-position filename="gtestutils.h" line="323"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="bug_uri_snippet" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31625">Bug specific bug tracker URI portion.</doc>
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="test_bug_base" c:identifier="g_test_bug_base" version="2.16">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31637">Specify the base URI for bug reports.
|
|
|
|
The base URI is used to construct bug report messages for
|
|
g_test_message() when g_test_bug() is called.
|
|
Calling this function outside of a test case sets the
|
|
default base URI for all test cases. Calling it from within
|
|
a test case changes the base URI for the scope of the test
|
|
case only.
|
|
Bug URIs are constructed by appending a bug specific URI
|
|
portion to @uri_pattern, or by replacing the special string
|
|
'\%s' within @uri_pattern if that is present.</doc>
|
|
<source-position filename="gtestutils.h" line="321"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="uri_pattern" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31639">the base pattern for bug URIs</doc>
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="test_build_filename" c:identifier="g_test_build_filename" version="2.38" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31657">Creates the pathname to a data file that is required for a test.
|
|
|
|
This function is conceptually similar to g_build_filename() except
|
|
that the first argument has been replaced with a #GTestFileType
|
|
argument.
|
|
|
|
The data file should either have been distributed with the module
|
|
containing the test (%G_TEST_DIST) or built as part of the build
|
|
system of that module (%G_TEST_BUILT).
|
|
|
|
In order for this function to work in srcdir != builddir situations,
|
|
the G_TEST_SRCDIR and G_TEST_BUILDDIR environment variables need to
|
|
have been defined. As of 2.38, this is done by the glib.mk
|
|
included in GLib. Please ensure that your copy is up to date before
|
|
using this function.
|
|
|
|
In case neither variable is set, this function will fall back to
|
|
using the dirname portion of argv[0], possibly removing ".libs".
|
|
This allows for casual running of tests directly from the commandline
|
|
in the srcdir == builddir case and should also support running of
|
|
installed tests, assuming the data files have been installed in the
|
|
same relative path as the test binary.</doc>
|
|
<source-position filename="gtestutils.h" line="591"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31686">the path of the file, to be freed using g_free()</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="file_type" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31659">the type of file (built vs. distributed)</doc>
|
|
<type name="TestFileType" c:type="GTestFileType"/>
|
|
</parameter>
|
|
<parameter name="first_path" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31660">the first segment of the pathname</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="..." transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31661">%NULL-terminated additional path segments</doc>
|
|
<varargs/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="test_create_case" c:identifier="g_test_create_case" version="2.16" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31691">Create a new #GTestCase, named @test_name, this API is fairly
|
|
low level, calling g_test_add() or g_test_add_func() is preferable.
|
|
When this test is executed, a fixture structure of size @data_size
|
|
will be automatically allocated and filled with zeros. Then @data_setup is
|
|
called to initialize the fixture. After fixture setup, the actual test
|
|
function @data_test is called. Once the test run completes, the
|
|
fixture structure is torn down by calling @data_teardown and
|
|
after that the memory is automatically released by the test framework.
|
|
|
|
Splitting up a test run into fixture setup, test function and
|
|
fixture teardown is most useful if the same fixture is used for
|
|
multiple tests. In this cases, g_test_create_case() will be
|
|
called with the same fixture, but varying @test_name and
|
|
@data_test arguments.</doc>
|
|
<source-position filename="gtestutils.h" line="418"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31715">a newly allocated #GTestCase.</doc>
|
|
<type name="TestCase" c:type="GTestCase*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="test_name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31693">the name for the test case</doc>
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
<parameter name="data_size" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31694">the size of the fixture data structure</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
<parameter name="test_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31695">test data argument for the test functions</doc>
|
|
<type name="gpointer" c:type="gconstpointer"/>
|
|
</parameter>
|
|
<parameter name="data_setup" transfer-ownership="none" scope="async">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31696">the function to set up the fixture data</doc>
|
|
<type name="TestFixtureFunc" c:type="GTestFixtureFunc"/>
|
|
</parameter>
|
|
<parameter name="data_test" transfer-ownership="none" scope="async">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31697">the actual test function</doc>
|
|
<type name="TestFixtureFunc" c:type="GTestFixtureFunc"/>
|
|
</parameter>
|
|
<parameter name="data_teardown" transfer-ownership="none" scope="async">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31698">the function to teardown the fixture data</doc>
|
|
<type name="TestFixtureFunc" c:type="GTestFixtureFunc"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="test_create_suite" c:identifier="g_test_create_suite" version="2.16" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31720">Create a new test suite with the name @suite_name.</doc>
|
|
<source-position filename="gtestutils.h" line="425"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31726">A newly allocated #GTestSuite instance.</doc>
|
|
<type name="TestSuite" c:type="GTestSuite*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="suite_name" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31722">a name for the suite</doc>
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="test_expect_message" c:identifier="g_test_expect_message" version="2.34">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31731">Indicates that a message with the given @log_domain and @log_level,
|
|
with text matching @pattern, is expected to be logged. When this
|
|
message is logged, it will not be printed, and the test case will
|
|
not abort.
|
|
|
|
This API may only be used with the old logging API (g_log() without
|
|
%G_LOG_USE_STRUCTURED defined). It will not work with the structured logging
|
|
API. See [Testing for Messages][testing-for-messages].
|
|
|
|
Use g_test_assert_expected_messages() to assert that all
|
|
previously-expected messages have been seen and suppressed.
|
|
|
|
You can call this multiple times in a row, if multiple messages are
|
|
expected as a result of a single call. (The messages must appear in
|
|
the same order as the calls to g_test_expect_message().)
|
|
|
|
For example:
|
|
|
|
|[<!-- language="C" -->
|
|
// g_main_context_push_thread_default() should fail if the
|
|
// context is already owned by another thread.
|
|
g_test_expect_message (G_LOG_DOMAIN,
|
|
G_LOG_LEVEL_CRITICAL,
|
|
"assertion*acquired_context*failed");
|
|
g_main_context_push_thread_default (bad_context);
|
|
g_test_assert_expected_messages ();
|
|
]|
|
|
|
|
Note that you cannot use this to test g_error() messages, since
|
|
g_error() intentionally never returns even if the program doesn't
|
|
abort; use g_test_trap_subprocess() in this case.
|
|
|
|
If messages at %G_LOG_LEVEL_DEBUG are emitted, but not explicitly
|
|
expected via g_test_expect_message() then they will be ignored.</doc>
|
|
<source-position filename="gtestutils.h" line="575"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="log_domain" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31733">the log domain of the message</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="log_level" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31734">the log level of the message</doc>
|
|
<type name="LogLevelFlags" c:type="GLogLevelFlags"/>
|
|
</parameter>
|
|
<parameter name="pattern" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31735">a glob-style [pattern][glib-Glob-style-pattern-matching]</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="test_fail" c:identifier="g_test_fail" version="2.30">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31776">Indicates that a test failed. This function can be called
|
|
multiple times from the same test. You can use this function
|
|
if your test failed in a recoverable way.
|
|
|
|
Do not use this function if the failure of a test could cause
|
|
other tests to malfunction.
|
|
|
|
Calling this function will not stop the test from running, you
|
|
need to return from the test function yourself. So you can
|
|
produce additional diagnostic messages or even continue running
|
|
the test.
|
|
|
|
If not called from inside a test, this function does nothing.</doc>
|
|
<source-position filename="gtestutils.h" line="275"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="test_failed" c:identifier="g_test_failed" version="2.38">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31797">Returns whether a test has already failed. This will
|
|
be the case when g_test_fail(), g_test_incomplete()
|
|
or g_test_skip() have been called, but also if an
|
|
assertion has failed.
|
|
|
|
This can be useful to return early from a test if
|
|
continuing after a failed assertion might be harmful.
|
|
|
|
The return value of this function is only meaningful
|
|
if it is called from inside a test function.</doc>
|
|
<source-position filename="gtestutils.h" line="281"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31811">%TRUE if the test has failed</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="test_get_dir" c:identifier="g_test_get_dir" version="2.38">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31816">Gets the pathname of the directory containing test files of the type
|
|
specified by @file_type.
|
|
|
|
This is approximately the same as calling g_test_build_filename("."),
|
|
but you don't need to free the return value.</doc>
|
|
<source-position filename="gtestutils.h" line="595"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31826">the path of the directory, owned by GLib</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="file_type" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31818">the type of file (built vs. distributed)</doc>
|
|
<type name="TestFileType" c:type="GTestFileType"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="test_get_filename" c:identifier="g_test_get_filename" version="2.38" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31831">Gets the pathname to a data file that is required for a test.
|
|
|
|
This is the same as g_test_build_filename() with two differences.
|
|
The first difference is that must only use this function from within
|
|
a testcase function. The second difference is that you need not free
|
|
the return value -- it will be automatically freed when the testcase
|
|
finishes running.
|
|
|
|
It is safe to use this function from a thread inside of a testcase
|
|
but you must ensure that all such uses occur before the main testcase
|
|
function returns (ie: it is best to ensure that all threads have been
|
|
joined).</doc>
|
|
<source-position filename="gtestutils.h" line="597"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31850">the path, automatically freed at the end of the testcase</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="file_type" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31833">the type of file (built vs. distributed)</doc>
|
|
<type name="TestFileType" c:type="GTestFileType"/>
|
|
</parameter>
|
|
<parameter name="first_path" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31834">the first segment of the pathname</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="..." transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31835">%NULL-terminated additional path segments</doc>
|
|
<varargs/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="test_get_root" c:identifier="g_test_get_root" version="2.16" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31855">Get the toplevel test suite for the test path API.</doc>
|
|
<source-position filename="gtestutils.h" line="427"/>
|
|
<return-value>
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31860">the toplevel #GTestSuite</doc>
|
|
<type name="TestSuite" c:type="GTestSuite*"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="test_incomplete" c:identifier="g_test_incomplete" version="2.38">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31865">Indicates that a test failed because of some incomplete
|
|
functionality. This function can be called multiple times
|
|
from the same test.
|
|
|
|
Calling this function will not stop the test from running, you
|
|
need to return from the test function yourself. So you can
|
|
produce additional diagnostic messages or even continue running
|
|
the test.
|
|
|
|
If not called from inside a test, this function does nothing.</doc>
|
|
<source-position filename="gtestutils.h" line="277"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="msg" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31867">explanation</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="test_init" c:identifier="g_test_init" version="2.16" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31884">Initialize the GLib testing framework, e.g. by seeding the
|
|
test random number generator, the name for g_get_prgname()
|
|
and parsing test related command line args.
|
|
|
|
So far, the following arguments are understood:
|
|
|
|
- `-l`: List test cases available in a test executable.
|
|
- `--seed=SEED`: Provide a random seed to reproduce test
|
|
runs using random numbers.
|
|
- `--verbose`: Run tests verbosely.
|
|
- `-q`, `--quiet`: Run tests quietly.
|
|
- `-p PATH`: Execute all tests matching the given path.
|
|
- `-s PATH`: Skip all tests matching the given path.
|
|
This can also be used to force a test to run that would otherwise
|
|
be skipped (ie, a test whose name contains "/subprocess").
|
|
- `-m {perf|slow|thorough|quick|undefined|no-undefined}`: Execute tests according to these test modes:
|
|
|
|
`perf`: Performance tests, may take long and report results (off by default).
|
|
|
|
`slow`, `thorough`: Slow and thorough tests, may take quite long and maximize coverage
|
|
(off by default).
|
|
|
|
`quick`: Quick tests, should run really quickly and give good coverage (the default).
|
|
|
|
`undefined`: Tests for undefined behaviour, may provoke programming errors
|
|
under g_test_trap_subprocess() or g_test_expect_message() to check
|
|
that appropriate assertions or warnings are given (the default).
|
|
|
|
`no-undefined`: Avoid tests for undefined behaviour
|
|
|
|
- `--debug-log`: Debug test logging output.
|
|
|
|
Options which can be passed to @... are:
|
|
|
|
- `"no_g_set_prgname"`: Causes g_test_init() to not call g_set_prgname().
|
|
- %G_TEST_OPTION_ISOLATE_DIRS: Creates a unique temporary directory for each
|
|
unit test and uses g_set_user_dirs() to set XDG directories to point into
|
|
that temporary directory for the duration of the unit test. See the
|
|
documentation for %G_TEST_OPTION_ISOLATE_DIRS.
|
|
|
|
Since 2.58, if tests are compiled with `G_DISABLE_ASSERT` defined,
|
|
g_test_init() will print an error and exit. This is to prevent no-op tests
|
|
from being executed, as g_assert() is commonly (erroneously) used in unit
|
|
tests, and is a no-op when compiled with `G_DISABLE_ASSERT`. Ensure your
|
|
tests are compiled without `G_DISABLE_ASSERT` defined.</doc>
|
|
<source-position filename="gtestutils.h" line="186"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="argc" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31886">Address of the @argc parameter of the main() function.
|
|
Changed if any arguments were handled.</doc>
|
|
<type name="gint" c:type="int*"/>
|
|
</parameter>
|
|
<parameter name="argv" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31888">Address of the @argv parameter of main().
|
|
Any parameters understood by g_test_init() stripped before return.</doc>
|
|
<type name="utf8" c:type="char***"/>
|
|
</parameter>
|
|
<parameter name="..." transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31890">%NULL-terminated list of special options, documented below.</doc>
|
|
<varargs/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="test_log_set_fatal_handler" c:identifier="g_test_log_set_fatal_handler" version="2.22" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31987">Installs a non-error fatal log handler which can be
|
|
used to decide whether log messages which are counted
|
|
as fatal abort the program.
|
|
|
|
The use case here is that you are running a test case
|
|
that depends on particular libraries or circumstances
|
|
and cannot prevent certain known critical or warning
|
|
messages. So you install a handler that compares the
|
|
domain and message to precisely not abort in such a case.
|
|
|
|
Note that the handler is reset at the beginning of
|
|
any test case, so you have to set it inside each test
|
|
function which needs the special behavior.
|
|
|
|
This handler has no effect on g_error messages.
|
|
|
|
This handler also has no effect on structured log messages (using
|
|
g_log_structured() or g_log_structured_array()). To change the fatal
|
|
behaviour for specific log messages, programs must install a custom log
|
|
writer function using g_log_set_writer_func().See
|
|
[Using Structured Logging][using-structured-logging].</doc>
|
|
<source-position filename="gtestutils.h" line="571"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="log_func" transfer-ownership="none" closure="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31989">the log handler function.</doc>
|
|
<type name="TestLogFatalFunc" c:type="GTestLogFatalFunc"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="31990">data passed to the log handler.</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="test_log_type_name" c:identifier="g_test_log_type_name">
|
|
<source-position filename="gtestutils.h" line="538"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="utf8" c:type="const char*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="log_type" transfer-ownership="none">
|
|
<type name="TestLogType" c:type="GTestLogType"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="test_maximized_result" c:identifier="g_test_maximized_result" version="2.16" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32018">Report the result of a performance or measurement test.
|
|
The test should generally strive to maximize the reported
|
|
quantities (larger values are better than smaller ones),
|
|
this and @maximized_quantity can determine sorting
|
|
order for test result reports.</doc>
|
|
<source-position filename="gtestutils.h" line="180"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="maximized_quantity" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32020">the reported value</doc>
|
|
<type name="gdouble" c:type="double"/>
|
|
</parameter>
|
|
<parameter name="format" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32021">the format string of the report message</doc>
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
<parameter name="..." transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32022">arguments to pass to the printf() function</doc>
|
|
<varargs/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="test_message" c:identifier="g_test_message" version="2.16" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32034">Add a message to the test report.</doc>
|
|
<source-position filename="gtestutils.h" line="318"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="format" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32036">the format string</doc>
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
<parameter name="..." transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32037">printf-like arguments to @format</doc>
|
|
<varargs/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="test_minimized_result" c:identifier="g_test_minimized_result" version="2.16" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32045">Report the result of a performance or measurement test.
|
|
The test should generally strive to minimize the reported
|
|
quantities (smaller values are better than larger ones),
|
|
this and @minimized_quantity can determine sorting
|
|
order for test result reports.</doc>
|
|
<source-position filename="gtestutils.h" line="176"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="minimized_quantity" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32047">the reported value</doc>
|
|
<type name="gdouble" c:type="double"/>
|
|
</parameter>
|
|
<parameter name="format" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32048">the format string of the report message</doc>
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
<parameter name="..." transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32049">arguments to pass to the printf() function</doc>
|
|
<varargs/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="test_queue_destroy" c:identifier="g_test_queue_destroy" version="2.16">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32074">This function enqueus a callback @destroy_func to be executed
|
|
during the next test case teardown phase. This is most useful
|
|
to auto destruct allocated test resources at the end of a test run.
|
|
Resources are released in reverse queue order, that means enqueueing
|
|
callback A before callback B will cause B() to be called before
|
|
A() during teardown.</doc>
|
|
<source-position filename="gtestutils.h" line="338"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="destroy_func" transfer-ownership="none" scope="async">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32076">Destroy callback for teardown phase.</doc>
|
|
<type name="DestroyNotify" c:type="GDestroyNotify"/>
|
|
</parameter>
|
|
<parameter name="destroy_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32077">Destroy callback data.</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="test_queue_free" c:identifier="g_test_queue_free" version="2.16">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32090">Enqueue a pointer to be released with g_free() during the next
|
|
teardown phase. This is equivalent to calling g_test_queue_destroy()
|
|
with a destroy callback of g_free().</doc>
|
|
<source-position filename="gtestutils.h" line="336"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="gfree_pointer" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32092">the pointer to be stored.</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function-macro name="test_queue_unref" c:identifier="g_test_queue_unref" version="2.16" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32102">Enqueue an object to be released with g_object_unref() during
|
|
the next teardown phase. This is equivalent to calling
|
|
g_test_queue_destroy() with a destroy callback of g_object_unref().</doc>
|
|
<source-position filename="gtestutils.h" line="340"/>
|
|
<parameters>
|
|
<parameter name="gobject">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32104">the object to unref</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function name="test_rand_double" c:identifier="g_test_rand_double" version="2.16">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32151">Get a reproducible random floating point number,
|
|
see g_test_rand_int() for details on test case random numbers.</doc>
|
|
<source-position filename="gtestutils.h" line="407"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32157">a random number from the seeded random number generator.</doc>
|
|
<type name="gdouble" c:type="double"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="test_rand_double_range" c:identifier="g_test_rand_double_range" version="2.16">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32162">Get a reproducible random floating pointer number out of a specified range,
|
|
see g_test_rand_int() for details on test case random numbers.</doc>
|
|
<source-position filename="gtestutils.h" line="409"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32170">a number with @range_start <= number < @range_end.</doc>
|
|
<type name="gdouble" c:type="double"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="range_start" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32164">the minimum value returned by this function</doc>
|
|
<type name="gdouble" c:type="double"/>
|
|
</parameter>
|
|
<parameter name="range_end" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32165">the minimum value not returned by this function</doc>
|
|
<type name="gdouble" c:type="double"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="test_rand_int" c:identifier="g_test_rand_int" version="2.16">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32175">Get a reproducible random integer number.
|
|
|
|
The random numbers generated by the g_test_rand_*() family of functions
|
|
change with every new test program start, unless the --seed option is
|
|
given when starting test programs.
|
|
|
|
For individual test cases however, the random number generator is
|
|
reseeded, to avoid dependencies between tests and to make --seed
|
|
effective for all test cases.</doc>
|
|
<source-position filename="gtestutils.h" line="402"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32188">a random number from the seeded random number generator.</doc>
|
|
<type name="gint32" c:type="gint32"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="test_rand_int_range" c:identifier="g_test_rand_int_range" version="2.16">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32193">Get a reproducible random integer number out of a specified range,
|
|
see g_test_rand_int() for details on test case random numbers.</doc>
|
|
<source-position filename="gtestutils.h" line="404"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32201">a number with @begin <= number < @end.</doc>
|
|
<type name="gint32" c:type="gint32"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="begin" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32195">the minimum value returned by this function</doc>
|
|
<type name="gint32" c:type="gint32"/>
|
|
</parameter>
|
|
<parameter name="end" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32196">the smallest value not to be returned by this function</doc>
|
|
<type name="gint32" c:type="gint32"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="test_run" c:identifier="g_test_run" version="2.16">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32206">Runs all tests under the toplevel suite which can be retrieved
|
|
with g_test_get_root(). Similar to g_test_run_suite(), the test
|
|
cases to be run are filtered according to test path arguments
|
|
(`-p testpath` and `-s testpath`) as parsed by g_test_init().
|
|
g_test_run_suite() or g_test_run() may only be called once in a
|
|
program.
|
|
|
|
In general, the tests and sub-suites within each suite are run in
|
|
the order in which they are defined. However, note that prior to
|
|
GLib 2.36, there was a bug in the `g_test_add_*`
|
|
functions which caused them to create multiple suites with the same
|
|
name, meaning that if you created tests "/foo/simple",
|
|
"/bar/simple", and "/foo/using-bar" in that order, they would get
|
|
run in that order (since g_test_run() would run the first "/foo"
|
|
suite, then the "/bar" suite, then the second "/foo" suite). As of
|
|
2.36, this bug is fixed, and adding the tests in that order would
|
|
result in a running order of "/foo/simple", "/foo/using-bar",
|
|
"/bar/simple". If this new ordering is sub-optimal (because it puts
|
|
more-complicated tests before simpler ones, making it harder to
|
|
figure out exactly what has failed), you can fix it by changing the
|
|
test paths to group tests by suite in a way that will result in the
|
|
desired running order. Eg, "/simple/foo", "/simple/bar",
|
|
"/complex/foo-using-bar".
|
|
|
|
However, you should never make the actual result of a test depend
|
|
on the order that tests are run in. If you need to ensure that some
|
|
particular code runs before or after a given test case, use
|
|
g_test_add(), which lets you specify setup and teardown functions.
|
|
|
|
If all tests are skipped or marked as incomplete (expected failures),
|
|
this function will return 0 if producing TAP output, or 77 (treated
|
|
as "skip test" by Automake) otherwise.</doc>
|
|
<source-position filename="gtestutils.h" line="256"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32242">0 on success, 1 on failure (assuming it returns at all),
|
|
0 or 77 if all tests were skipped with g_test_skip() and/or
|
|
g_test_incomplete()</doc>
|
|
<type name="gint" c:type="int"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="test_run_suite" c:identifier="g_test_run_suite" version="2.16">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32249">Execute the tests within @suite and all nested #GTestSuites.
|
|
The test suites to be executed are filtered according to
|
|
test path arguments (`-p testpath` and `-s testpath`) as parsed by
|
|
g_test_init(). See the g_test_run() documentation for more
|
|
information on the order that tests are run in.
|
|
|
|
g_test_run_suite() or g_test_run() may only be called once
|
|
in a program.</doc>
|
|
<source-position filename="gtestutils.h" line="435"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32262">0 on success</doc>
|
|
<type name="gint" c:type="int"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="suite" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32251">a #GTestSuite</doc>
|
|
<type name="TestSuite" c:type="GTestSuite*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="test_set_nonfatal_assertions" c:identifier="g_test_set_nonfatal_assertions" version="2.38">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32267">Changes the behaviour of g_assert_cmpstr(), g_assert_cmpint(),
|
|
g_assert_cmpuint(), g_assert_cmphex(), g_assert_cmpfloat(),
|
|
g_assert_true(), g_assert_false(), g_assert_null(), g_assert_no_error(),
|
|
g_assert_error(), g_test_assert_expected_messages() and the various
|
|
g_test_trap_assert_*() macros to not abort to program, but instead
|
|
call g_test_fail() and continue. (This also changes the behavior of
|
|
g_test_fail() so that it will not cause the test program to abort
|
|
after completing the failed test.)
|
|
|
|
Note that the g_assert_not_reached() and g_assert() are not
|
|
affected by this.
|
|
|
|
This function can only be called after g_test_init().</doc>
|
|
<source-position filename="gtestutils.h" line="283"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="test_skip" c:identifier="g_test_skip" version="2.38">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32288">Indicates that a test was skipped.
|
|
|
|
Calling this function will not stop the test from running, you
|
|
need to return from the test function yourself. So you can
|
|
produce additional diagnostic messages or even continue running
|
|
the test.
|
|
|
|
If not called from inside a test, this function does nothing.</doc>
|
|
<source-position filename="gtestutils.h" line="279"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="msg" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32290">explanation</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="test_subprocess" c:identifier="g_test_subprocess" version="2.38">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32320">Returns %TRUE (after g_test_init() has been called) if the test
|
|
program is running under g_test_trap_subprocess().</doc>
|
|
<source-position filename="gtestutils.h" line="252"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32326">%TRUE if the test program is running under
|
|
g_test_trap_subprocess().</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="test_summary" c:identifier="g_test_summary" version="2.62">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32354">Set the summary for a test, which describes what the test checks, and how it
|
|
goes about checking it. This may be included in test report output, and is
|
|
useful documentation for anyone reading the source code or modifying a test
|
|
in future. It must be a single line.
|
|
|
|
This should be called at the top of a test function.
|
|
|
|
For example:
|
|
|[<!-- language="C" -->
|
|
static void
|
|
test_array_sort (void)
|
|
{
|
|
g_test_summary ("Test my_array_sort() sorts the array correctly and stably, "
|
|
"including testing zero length and one-element arrays.");
|
|
|
|
…
|
|
}
|
|
]|</doc>
|
|
<doc-version xml:space="preserve">
|
|
See also: g_test_bug()</doc-version>
|
|
<source-position filename="gtestutils.h" line="325"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="summary" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32356">One or two sentences summarising what the test checks, and how it
|
|
checks it.</doc>
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="test_timer_elapsed" c:identifier="g_test_timer_elapsed" version="2.16">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32397">Get the time since the last start of the timer with g_test_timer_start().</doc>
|
|
<source-position filename="gtestutils.h" line="330"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32402">the time since the last start of the timer, as a double</doc>
|
|
<type name="gdouble" c:type="double"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="test_timer_last" c:identifier="g_test_timer_last" version="2.16">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32407">Report the last result of g_test_timer_elapsed().</doc>
|
|
<source-position filename="gtestutils.h" line="332"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32412">the last result of g_test_timer_elapsed(), as a double</doc>
|
|
<type name="gdouble" c:type="double"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="test_timer_start" c:identifier="g_test_timer_start" version="2.16">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32417">Start a timing test. Call g_test_timer_elapsed() when the task is supposed
|
|
to be done. Call this function again to restart the timer.</doc>
|
|
<source-position filename="gtestutils.h" line="328"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
</function>
|
|
<function-macro name="test_trap_assert_stderr" c:identifier="g_test_trap_assert_stderr" version="2.16" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32453">Assert that the stderr output of the last test subprocess
|
|
matches @serrpattern. See g_test_trap_subprocess().
|
|
|
|
This is sometimes used to test situations that are formally
|
|
considered to be undefined behaviour, like code that hits a
|
|
g_assert() or g_error(). In these situations you should skip the
|
|
entire test, including the call to g_test_trap_subprocess(), unless
|
|
g_test_undefined() returns %TRUE to indicate that undefined
|
|
behaviour may be tested.</doc>
|
|
<source-position filename="gtestutils.h" line="396"/>
|
|
<parameters>
|
|
<parameter name="serrpattern">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32455">a glob-style [pattern][glib-Glob-style-pattern-matching]</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="test_trap_assert_stderr_unmatched" c:identifier="g_test_trap_assert_stderr_unmatched" version="2.16" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32471">Assert that the stderr output of the last test subprocess
|
|
does not match @serrpattern. See g_test_trap_subprocess().</doc>
|
|
<source-position filename="gtestutils.h" line="397"/>
|
|
<parameters>
|
|
<parameter name="serrpattern">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32473">a glob-style [pattern][glib-Glob-style-pattern-matching]</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="test_trap_assert_stdout" c:identifier="g_test_trap_assert_stdout" version="2.16" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32482">Assert that the stdout output of the last test subprocess matches
|
|
@soutpattern. See g_test_trap_subprocess().</doc>
|
|
<source-position filename="gtestutils.h" line="394"/>
|
|
<parameters>
|
|
<parameter name="soutpattern">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32484">a glob-style [pattern][glib-Glob-style-pattern-matching]</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="test_trap_assert_stdout_unmatched" c:identifier="g_test_trap_assert_stdout_unmatched" version="2.16" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32493">Assert that the stdout output of the last test subprocess
|
|
does not match @soutpattern. See g_test_trap_subprocess().</doc>
|
|
<source-position filename="gtestutils.h" line="395"/>
|
|
<parameters>
|
|
<parameter name="soutpattern">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32495">a glob-style [pattern][glib-Glob-style-pattern-matching]</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function name="test_trap_assertions" c:identifier="g_test_trap_assertions">
|
|
<source-position filename="gtestutils.h" line="438"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="domain" transfer-ownership="none">
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
<parameter name="file" transfer-ownership="none">
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
<parameter name="line" transfer-ownership="none">
|
|
<type name="gint" c:type="int"/>
|
|
</parameter>
|
|
<parameter name="func" transfer-ownership="none">
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
<parameter name="assertion_flags" transfer-ownership="none">
|
|
<type name="guint64" c:type="guint64"/>
|
|
</parameter>
|
|
<parameter name="pattern" transfer-ownership="none">
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="test_trap_fork" c:identifier="g_test_trap_fork" version="2.16" deprecated="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32504">Fork the current test program to execute a test case that might
|
|
not return or that might abort.
|
|
|
|
If @usec_timeout is non-0, the forked test case is aborted and
|
|
considered failing if its run time exceeds it.
|
|
|
|
The forking behavior can be configured with the #GTestTrapFlags flags.
|
|
|
|
In the following example, the test code forks, the forked child
|
|
process produces some sample output and exits successfully.
|
|
The forking parent process then asserts successful child program
|
|
termination and validates child program outputs.
|
|
|
|
|[<!-- language="C" -->
|
|
static void
|
|
test_fork_patterns (void)
|
|
{
|
|
if (g_test_trap_fork (0, G_TEST_TRAP_SILENCE_STDOUT | G_TEST_TRAP_SILENCE_STDERR))
|
|
{
|
|
g_print ("some stdout text: somagic17\n");
|
|
g_printerr ("some stderr text: semagic43\n");
|
|
exit (0); // successful test run
|
|
}
|
|
g_test_trap_assert_passed ();
|
|
g_test_trap_assert_stdout ("*somagic17*");
|
|
g_test_trap_assert_stderr ("*semagic43*");
|
|
}
|
|
]|</doc>
|
|
<doc-deprecated xml:space="preserve">This function is implemented only on Unix platforms,
|
|
and is not always reliable due to problems inherent in
|
|
fork-without-exec. Use g_test_trap_subprocess() instead.</doc-deprecated>
|
|
<source-position filename="gtestutils.h" line="372"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32538">%TRUE for the forked child and %FALSE for the executing parent process.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="usec_timeout" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32506">Timeout for the forked test in micro seconds.</doc>
|
|
<type name="guint64" c:type="guint64"/>
|
|
</parameter>
|
|
<parameter name="test_trap_flags" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32507">Flags to modify forking behaviour.</doc>
|
|
<type name="TestTrapFlags" c:type="GTestTrapFlags"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="test_trap_has_passed" c:identifier="g_test_trap_has_passed" version="2.16">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32546">Check the result of the last g_test_trap_subprocess() call.</doc>
|
|
<source-position filename="gtestutils.h" line="389"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32551">%TRUE if the last test subprocess terminated successfully.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="test_trap_reached_timeout" c:identifier="g_test_trap_reached_timeout" version="2.16">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32556">Check the result of the last g_test_trap_subprocess() call.</doc>
|
|
<source-position filename="gtestutils.h" line="391"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32561">%TRUE if the last test subprocess got killed due to a timeout.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="test_trap_subprocess" c:identifier="g_test_trap_subprocess" version="2.38">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32566">Respawns the test program to run only @test_path in a subprocess.
|
|
This can be used for a test case that might not return, or that
|
|
might abort.
|
|
|
|
If @test_path is %NULL then the same test is re-run in a subprocess.
|
|
You can use g_test_subprocess() to determine whether the test is in
|
|
a subprocess or not.
|
|
|
|
@test_path can also be the name of the parent test, followed by
|
|
"`/subprocess/`" and then a name for the specific subtest (or just
|
|
ending with "`/subprocess`" if the test only has one child test);
|
|
tests with names of this form will automatically be skipped in the
|
|
parent process.
|
|
|
|
If @usec_timeout is non-0, the test subprocess is aborted and
|
|
considered failing if its run time exceeds it.
|
|
|
|
The subprocess behavior can be configured with the
|
|
#GTestSubprocessFlags flags.
|
|
|
|
You can use methods such as g_test_trap_assert_passed(),
|
|
g_test_trap_assert_failed(), and g_test_trap_assert_stderr() to
|
|
check the results of the subprocess. (But note that
|
|
g_test_trap_assert_stdout() and g_test_trap_assert_stderr()
|
|
cannot be used if @test_flags specifies that the child should
|
|
inherit the parent stdout/stderr.)
|
|
|
|
If your `main ()` needs to behave differently in
|
|
the subprocess, you can call g_test_subprocess() (after calling
|
|
g_test_init()) to see whether you are in a subprocess.
|
|
|
|
The following example tests that calling
|
|
`my_object_new(1000000)` will abort with an error
|
|
message.
|
|
|
|
|[<!-- language="C" -->
|
|
static void
|
|
test_create_large_object (void)
|
|
{
|
|
if (g_test_subprocess ())
|
|
{
|
|
my_object_new (1000000);
|
|
return;
|
|
}
|
|
|
|
// Reruns this same test in a subprocess
|
|
g_test_trap_subprocess (NULL, 0, 0);
|
|
g_test_trap_assert_failed ();
|
|
g_test_trap_assert_stderr ("*ERROR*too large*");
|
|
}
|
|
|
|
int
|
|
main (int argc, char **argv)
|
|
{
|
|
g_test_init (&argc, &argv, NULL);
|
|
|
|
g_test_add_func ("/myobject/create_large_object",
|
|
test_create_large_object);
|
|
return g_test_run ();
|
|
}
|
|
]|</doc>
|
|
<source-position filename="gtestutils.h" line="384"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="test_path" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32568">Test to run in a subprocess</doc>
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
<parameter name="usec_timeout" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32569">Timeout for the subprocess test in micro seconds.</doc>
|
|
<type name="guint64" c:type="guint64"/>
|
|
</parameter>
|
|
<parameter name="test_flags" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32570">Flags to modify subprocess behaviour.</doc>
|
|
<type name="TestSubprocessFlags" c:type="GTestSubprocessFlags"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="thread_error_quark" c:identifier="g_thread_error_quark" moved-to="Thread.error_quark">
|
|
<return-value transfer-ownership="none">
|
|
<type name="Quark" c:type="GQuark"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="thread_exit" c:identifier="g_thread_exit" moved-to="Thread.exit">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32664">Terminates the current thread.
|
|
|
|
If another thread is waiting for us using g_thread_join() then the
|
|
waiting thread will be woken up and get @retval as the return value
|
|
of g_thread_join().
|
|
|
|
Calling g_thread_exit() with a parameter @retval is equivalent to
|
|
returning @retval from the function @func, as given to g_thread_new().
|
|
|
|
You must only call g_thread_exit() from a thread that you created
|
|
yourself with g_thread_new() or related APIs. You must not call
|
|
this function from a thread created with another threading library
|
|
or or from within a #GThreadPool.</doc>
|
|
<source-position filename="gthread.h" line="156"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="retval" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32666">the return value of this thread</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="thread_pool_get_max_idle_time" c:identifier="g_thread_pool_get_max_idle_time" moved-to="ThreadPool.get_max_idle_time" version="2.10">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32763">This function will return the maximum @interval that a
|
|
thread will wait in the thread pool for new tasks before
|
|
being stopped.
|
|
|
|
If this function returns 0, threads waiting in the thread
|
|
pool for new work are not stopped.</doc>
|
|
<source-position filename="gthreadpool.h" line="92"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32773">the maximum @interval (milliseconds) to wait
|
|
for new tasks in the thread pool before stopping the
|
|
thread</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="thread_pool_get_max_unused_threads" c:identifier="g_thread_pool_get_max_unused_threads" moved-to="ThreadPool.get_max_unused_threads">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32790">Returns the maximal allowed number of unused threads.</doc>
|
|
<source-position filename="gthreadpool.h" line="84"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32795">the maximal number of unused threads</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="thread_pool_get_num_unused_threads" c:identifier="g_thread_pool_get_num_unused_threads" moved-to="ThreadPool.get_num_unused_threads">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32809">Returns the number of currently unused threads.</doc>
|
|
<source-position filename="gthreadpool.h" line="86"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32814">the number of currently unused threads</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="thread_pool_set_max_idle_time" c:identifier="g_thread_pool_set_max_idle_time" moved-to="ThreadPool.set_max_idle_time" version="2.10">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32898">This function will set the maximum @interval that a thread
|
|
waiting in the pool for new tasks can be idle for before
|
|
being stopped. This function is similar to calling
|
|
g_thread_pool_stop_unused_threads() on a regular timeout,
|
|
except this is done on a per thread basis.
|
|
|
|
By setting @interval to 0, idle threads will not be stopped.
|
|
|
|
The default value is 15000 (15 seconds).</doc>
|
|
<source-position filename="gthreadpool.h" line="90"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="interval" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32900">the maximum @interval (in milliseconds)
|
|
a thread can be idle</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="thread_pool_set_max_unused_threads" c:identifier="g_thread_pool_set_max_unused_threads" moved-to="ThreadPool.set_max_unused_threads">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32949">Sets the maximal number of unused threads to @max_threads.
|
|
If @max_threads is -1, no limit is imposed on the number
|
|
of unused threads.
|
|
|
|
The default value is 2.</doc>
|
|
<source-position filename="gthreadpool.h" line="82"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="max_threads" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32951">maximal number of unused threads</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="thread_pool_stop_unused_threads" c:identifier="g_thread_pool_stop_unused_threads" moved-to="ThreadPool.stop_unused_threads">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="32986">Stops all currently unused threads. This does not change the
|
|
maximal number of unused threads. This function can be used to
|
|
regularly stop all unused threads e.g. from g_timeout_add().</doc>
|
|
<source-position filename="gthreadpool.h" line="88"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="thread_self" c:identifier="g_thread_self" moved-to="Thread.self">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33016">This function returns the #GThread corresponding to the
|
|
current thread. Note that this function does not increase
|
|
the reference count of the returned struct.
|
|
|
|
This function will return a #GThread even for threads that
|
|
were not created by GLib (i.e. those created by other threading
|
|
APIs). This may be useful for thread identification purposes
|
|
(i.e. comparisons) but you must not use GLib functions (such
|
|
as g_thread_join()) on these threads.</doc>
|
|
<source-position filename="gthread.h" line="154"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33029">the #GThread representing the current thread</doc>
|
|
<type name="Thread" c:type="GThread*"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="thread_yield" c:identifier="g_thread_yield" moved-to="Thread.yield">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33079">Causes the calling thread to voluntarily relinquish the CPU, so
|
|
that other threads can run.
|
|
|
|
This function is often used as a method to make busy wait less evil.</doc>
|
|
<source-position filename="gthread.h" line="160"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="time_val_from_iso8601" c:identifier="g_time_val_from_iso8601" moved-to="TimeVal.from_iso8601" version="2.12" deprecated="1" deprecated-version="2.62">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33102">Converts a string containing an ISO 8601 encoded date and time
|
|
to a #GTimeVal and puts it into @time_.
|
|
|
|
@iso_date must include year, month, day, hours, minutes, and
|
|
seconds. It can optionally include fractions of a second and a time
|
|
zone indicator. (In the absence of any time zone indication, the
|
|
timestamp is assumed to be in local time.)
|
|
|
|
Any leading or trailing space in @iso_date is ignored.
|
|
|
|
This function was deprecated, along with #GTimeVal itself, in GLib 2.62.
|
|
Equivalent functionality is available using code like:
|
|
|[
|
|
GDateTime *dt = g_date_time_new_from_iso8601 (iso8601_string, NULL);
|
|
gint64 time_val = g_date_time_to_unix (dt);
|
|
g_date_time_unref (dt);
|
|
]|</doc>
|
|
<doc-deprecated xml:space="preserve">#GTimeVal is not year-2038-safe. Use
|
|
g_date_time_new_from_iso8601() instead.</doc-deprecated>
|
|
<source-position filename="gtimer.h" line="70"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33125">%TRUE if the conversion was successful.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="iso_date" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33104">an ISO 8601 encoded date string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="time_" direction="out" caller-allocates="1" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33105">a #GTimeVal</doc>
|
|
<type name="TimeVal" c:type="GTimeVal*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="timeout_add" c:identifier="g_timeout_add" shadowed-by="timeout_add_full" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33446">Sets a function to be called at regular intervals, with the default
|
|
priority, #G_PRIORITY_DEFAULT. The function is called repeatedly
|
|
until it returns %FALSE, at which point the timeout is automatically
|
|
destroyed and the function will not be called again. The first call
|
|
to the function will be at the end of the first @interval.
|
|
|
|
Note that timeout functions may be delayed, due to the processing of other
|
|
event sources. Thus they should not be relied on for precise timing.
|
|
After each call to the timeout function, the time of the next
|
|
timeout is recalculated based on the current time and the given interval
|
|
(it does not try to 'catch up' time lost in delays).
|
|
|
|
See [memory management of sources][mainloop-memory-management] for details
|
|
on how to handle the return value and memory management of @data.
|
|
|
|
If you want to have a timer in the "seconds" range and do not care
|
|
about the exact time of the first call of the timer, use the
|
|
g_timeout_add_seconds() function; this function allows for more
|
|
optimizations and more efficient system power usage.
|
|
|
|
This internally creates a main loop source using g_timeout_source_new()
|
|
and attaches it to the global #GMainContext using g_source_attach(), so
|
|
the callback will be invoked in whichever thread is running that main
|
|
context. You can do these steps manually if you need greater control or to
|
|
use a custom main context.
|
|
|
|
The interval given is in terms of monotonic time, not wall clock
|
|
time. See g_get_monotonic_time().</doc>
|
|
<source-position filename="gmain.h" line="633"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33482">the ID (greater than 0) of the event source.</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="interval" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33448">the time between calls to the function, in milliseconds
|
|
(1/1000ths of a second)</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
<parameter name="function" transfer-ownership="none" closure="2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33450">function to call</doc>
|
|
<type name="SourceFunc" c:type="GSourceFunc"/>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33451">data to pass to @function</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="timeout_add_full" c:identifier="g_timeout_add_full" shadows="timeout_add">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33486">Sets a function to be called at regular intervals, with the given
|
|
priority. The function is called repeatedly until it returns
|
|
%FALSE, at which point the timeout is automatically destroyed and
|
|
the function will not be called again. The @notify function is
|
|
called when the timeout is destroyed. The first call to the
|
|
function will be at the end of the first @interval.
|
|
|
|
Note that timeout functions may be delayed, due to the processing of other
|
|
event sources. Thus they should not be relied on for precise timing.
|
|
After each call to the timeout function, the time of the next
|
|
timeout is recalculated based on the current time and the given interval
|
|
(it does not try to 'catch up' time lost in delays).
|
|
|
|
See [memory management of sources][mainloop-memory-management] for details
|
|
on how to handle the return value and memory management of @data.
|
|
|
|
This internally creates a main loop source using g_timeout_source_new()
|
|
and attaches it to the global #GMainContext using g_source_attach(), so
|
|
the callback will be invoked in whichever thread is running that main
|
|
context. You can do these steps manually if you need greater control or to
|
|
use a custom main context.
|
|
|
|
The interval given is in terms of monotonic time, not wall clock time.
|
|
See g_get_monotonic_time().</doc>
|
|
<source-position filename="gmain.h" line="627"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33521">the ID (greater than 0) of the event source.</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="priority" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33488">the priority of the timeout source. Typically this will be in
|
|
the range between #G_PRIORITY_DEFAULT and #G_PRIORITY_HIGH.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="interval" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33490">the time between calls to the function, in milliseconds
|
|
(1/1000ths of a second)</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
<parameter name="function" transfer-ownership="none" scope="notified" closure="3" destroy="4">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33492">function to call</doc>
|
|
<type name="SourceFunc" c:type="GSourceFunc"/>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33493">data to pass to @function</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="notify" transfer-ownership="none" nullable="1" allow-none="1" scope="async">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33494">function to call when the timeout is removed, or %NULL</doc>
|
|
<type name="DestroyNotify" c:type="GDestroyNotify"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="timeout_add_seconds" c:identifier="g_timeout_add_seconds" shadowed-by="timeout_add_seconds_full" version="2.14" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33525">Sets a function to be called at regular intervals with the default
|
|
priority, #G_PRIORITY_DEFAULT. The function is called repeatedly until
|
|
it returns %FALSE, at which point the timeout is automatically destroyed
|
|
and the function will not be called again.
|
|
|
|
This internally creates a main loop source using
|
|
g_timeout_source_new_seconds() and attaches it to the main loop context
|
|
using g_source_attach(). You can do these steps manually if you need
|
|
greater control. Also see g_timeout_add_seconds_full().
|
|
|
|
Note that the first call of the timer may not be precise for timeouts
|
|
of one second. If you need finer precision and have such a timeout,
|
|
you may want to use g_timeout_add() instead.
|
|
|
|
See [memory management of sources][mainloop-memory-management] for details
|
|
on how to handle the return value and memory management of @data.
|
|
|
|
The interval given is in terms of monotonic time, not wall clock
|
|
time. See g_get_monotonic_time().</doc>
|
|
<source-position filename="gmain.h" line="643"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33551">the ID (greater than 0) of the event source.</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="interval" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33527">the time between calls to the function, in seconds</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
<parameter name="function" transfer-ownership="none" closure="2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33528">function to call</doc>
|
|
<type name="SourceFunc" c:type="GSourceFunc"/>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33529">data to pass to @function</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="timeout_add_seconds_full" c:identifier="g_timeout_add_seconds_full" shadows="timeout_add_seconds" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33556">Sets a function to be called at regular intervals, with @priority.
|
|
The function is called repeatedly until it returns %FALSE, at which
|
|
point the timeout is automatically destroyed and the function will
|
|
not be called again.
|
|
|
|
Unlike g_timeout_add(), this function operates at whole second granularity.
|
|
The initial starting point of the timer is determined by the implementation
|
|
and the implementation is expected to group multiple timers together so that
|
|
they fire all at the same time.
|
|
To allow this grouping, the @interval to the first timer is rounded
|
|
and can deviate up to one second from the specified interval.
|
|
Subsequent timer iterations will generally run at the specified interval.
|
|
|
|
Note that timeout functions may be delayed, due to the processing of other
|
|
event sources. Thus they should not be relied on for precise timing.
|
|
After each call to the timeout function, the time of the next
|
|
timeout is recalculated based on the current time and the given @interval
|
|
|
|
See [memory management of sources][mainloop-memory-management] for details
|
|
on how to handle the return value and memory management of @data.
|
|
|
|
If you want timing more precise than whole seconds, use g_timeout_add()
|
|
instead.
|
|
|
|
The grouping of timers to fire at the same time results in a more power
|
|
and CPU efficient behavior so if your timer is in multiples of seconds
|
|
and you don't require the first timer exactly one second from now, the
|
|
use of g_timeout_add_seconds() is preferred over g_timeout_add().
|
|
|
|
This internally creates a main loop source using
|
|
g_timeout_source_new_seconds() and attaches it to the main loop context
|
|
using g_source_attach(). You can do these steps manually if you need
|
|
greater control.
|
|
|
|
The interval given is in terms of monotonic time, not wall clock
|
|
time. See g_get_monotonic_time().</doc>
|
|
<source-position filename="gmain.h" line="637"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33602">the ID (greater than 0) of the event source.</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="priority" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33558">the priority of the timeout source. Typically this will be in
|
|
the range between #G_PRIORITY_DEFAULT and #G_PRIORITY_HIGH.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="interval" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33560">the time between calls to the function, in seconds</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
<parameter name="function" transfer-ownership="none" scope="notified" closure="3" destroy="4">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33561">function to call</doc>
|
|
<type name="SourceFunc" c:type="GSourceFunc"/>
|
|
</parameter>
|
|
<parameter name="data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33562">data to pass to @function</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="notify" transfer-ownership="none" nullable="1" allow-none="1" scope="async">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33563">function to call when the timeout is removed, or %NULL</doc>
|
|
<type name="DestroyNotify" c:type="GDestroyNotify"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="timeout_source_new" c:identifier="g_timeout_source_new">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33607">Creates a new timeout source.
|
|
|
|
The source will not initially be associated with any #GMainContext
|
|
and must be added to one with g_source_attach() before it will be
|
|
executed.
|
|
|
|
The interval given is in terms of monotonic time, not wall clock
|
|
time. See g_get_monotonic_time().</doc>
|
|
<source-position filename="gmain.h" line="567"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33620">the newly-created timeout source</doc>
|
|
<type name="Source" c:type="GSource*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="interval" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33609">the timeout interval in milliseconds.</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="timeout_source_new_seconds" c:identifier="g_timeout_source_new_seconds" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33624">Creates a new timeout source.
|
|
|
|
The source will not initially be associated with any #GMainContext
|
|
and must be added to one with g_source_attach() before it will be
|
|
executed.
|
|
|
|
The scheduling granularity/accuracy of this timeout source will be
|
|
in seconds.
|
|
|
|
The interval given is in terms of monotonic time, not wall clock time.
|
|
See g_get_monotonic_time().</doc>
|
|
<source-position filename="gmain.h" line="569"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33640">the newly-created timeout source</doc>
|
|
<type name="Source" c:type="GSource*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="interval" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33626">the timeout interval in seconds</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="trash_stack_height" c:identifier="g_trash_stack_height" moved-to="TrashStack.height" deprecated="1" deprecated-version="2.48">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33735">Returns the height of a #GTrashStack.
|
|
|
|
Note that execution of this function is of O(N) complexity
|
|
where N denotes the number of items on the stack.</doc>
|
|
<doc-deprecated xml:space="preserve">#GTrashStack is deprecated without replacement</doc-deprecated>
|
|
<source-position filename="gtrashstack.h" line="52"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33744">the height of the stack</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="stack_p" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33737">a #GTrashStack</doc>
|
|
<type name="TrashStack" c:type="GTrashStack**"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="trash_stack_peek" c:identifier="g_trash_stack_peek" moved-to="TrashStack.peek" deprecated="1" deprecated-version="2.48">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33749">Returns the element at the top of a #GTrashStack
|
|
which may be %NULL.</doc>
|
|
<doc-deprecated xml:space="preserve">#GTrashStack is deprecated without replacement</doc-deprecated>
|
|
<source-position filename="gtrashstack.h" line="50"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33756">the element at the top of the stack</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="stack_p" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33751">a #GTrashStack</doc>
|
|
<type name="TrashStack" c:type="GTrashStack**"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="trash_stack_pop" c:identifier="g_trash_stack_pop" moved-to="TrashStack.pop" deprecated="1" deprecated-version="2.48">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33761">Pops a piece of memory off a #GTrashStack.</doc>
|
|
<doc-deprecated xml:space="preserve">#GTrashStack is deprecated without replacement</doc-deprecated>
|
|
<source-position filename="gtrashstack.h" line="48"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33767">the element at the top of the stack</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="stack_p" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33763">a #GTrashStack</doc>
|
|
<type name="TrashStack" c:type="GTrashStack**"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="trash_stack_push" c:identifier="g_trash_stack_push" moved-to="TrashStack.push" deprecated="1" deprecated-version="2.48">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33772">Pushes a piece of memory onto a #GTrashStack.</doc>
|
|
<doc-deprecated xml:space="preserve">#GTrashStack is deprecated without replacement</doc-deprecated>
|
|
<source-position filename="gtrashstack.h" line="45"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="stack_p" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33774">a #GTrashStack</doc>
|
|
<type name="TrashStack" c:type="GTrashStack**"/>
|
|
</parameter>
|
|
<parameter name="data_p" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="33775">the piece of memory to push on the stack</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="try_malloc" c:identifier="g_try_malloc">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34049">Attempts to allocate @n_bytes, and returns %NULL on failure.
|
|
Contrast with g_malloc(), which aborts the program on failure.</doc>
|
|
<source-position filename="gmem.h" line="85"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34056">the allocated memory, or %NULL.</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="n_bytes" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34051">number of bytes to allocate.</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="try_malloc0" c:identifier="g_try_malloc0" version="2.8">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34060">Attempts to allocate @n_bytes, initialized to 0's, and returns %NULL on
|
|
failure. Contrast with g_malloc0(), which aborts the program on failure.</doc>
|
|
<source-position filename="gmem.h" line="87"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34068">the allocated memory, or %NULL</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="n_bytes" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34062">number of bytes to allocate</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="try_malloc0_n" c:identifier="g_try_malloc0_n" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34072">This function is similar to g_try_malloc0(), allocating (@n_blocks * @n_block_bytes) bytes,
|
|
but care is taken to detect possible overflow during multiplication.</doc>
|
|
<source-position filename="gmem.h" line="106"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34081">the allocated memory, or %NULL</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="n_blocks" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34074">the number of blocks to allocate</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
<parameter name="n_block_bytes" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34075">the size of each block in bytes</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="try_malloc_n" c:identifier="g_try_malloc_n" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34085">This function is similar to g_try_malloc(), allocating (@n_blocks * @n_block_bytes) bytes,
|
|
but care is taken to detect possible overflow during multiplication.</doc>
|
|
<source-position filename="gmem.h" line="103"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34094">the allocated memory, or %NULL.</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="n_blocks" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34087">the number of blocks to allocate</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
<parameter name="n_block_bytes" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34088">the size of each block in bytes</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function-macro name="try_new" c:identifier="g_try_new" version="2.8" introspectable="0">
|
|
<doc xml:space="preserve" filename="gmem.h" line="314">Attempts to allocate @n_structs elements of type @struct_type, and returns
|
|
%NULL on failure. Contrast with g_new(), which aborts the program on failure.
|
|
The returned pointer is cast to a pointer to the given type.
|
|
The function returns %NULL when @n_structs is 0 of if an overflow occurs.</doc>
|
|
<source-position filename="gmem.h" line="327"/>
|
|
<parameters>
|
|
<parameter name="struct_type">
|
|
<doc xml:space="preserve" filename="gmem.h" line="316">the type of the elements to allocate</doc>
|
|
</parameter>
|
|
<parameter name="n_structs">
|
|
<doc xml:space="preserve" filename="gmem.h" line="317">the number of elements to allocate</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="try_new0" c:identifier="g_try_new0" version="2.8" introspectable="0">
|
|
<doc xml:space="preserve" filename="gmem.h" line="328">Attempts to allocate @n_structs elements of type @struct_type, initialized
|
|
to 0's, and returns %NULL on failure. Contrast with g_new0(), which aborts
|
|
the program on failure.
|
|
The returned pointer is cast to a pointer to the given type.
|
|
The function returns %NULL when @n_structs is 0 or if an overflow occurs.</doc>
|
|
<source-position filename="gmem.h" line="342"/>
|
|
<parameters>
|
|
<parameter name="struct_type">
|
|
<doc xml:space="preserve" filename="gmem.h" line="330">the type of the elements to allocate</doc>
|
|
</parameter>
|
|
<parameter name="n_structs">
|
|
<doc xml:space="preserve" filename="gmem.h" line="331">the number of elements to allocate</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function name="try_realloc" c:identifier="g_try_realloc">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34098">Attempts to realloc @mem to a new size, @n_bytes, and returns %NULL
|
|
on failure. Contrast with g_realloc(), which aborts the program
|
|
on failure.
|
|
|
|
If @mem is %NULL, behaves the same as g_try_malloc().</doc>
|
|
<source-position filename="gmem.h" line="89"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34109">the allocated memory, or %NULL.</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="mem" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34100">previously-allocated memory, or %NULL.</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="n_bytes" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34101">number of bytes to allocate.</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="try_realloc_n" c:identifier="g_try_realloc_n" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34113">This function is similar to g_try_realloc(), allocating (@n_blocks * @n_block_bytes) bytes,
|
|
but care is taken to detect possible overflow during multiplication.</doc>
|
|
<source-position filename="gmem.h" line="109"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34123">the allocated memory, or %NULL.</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="mem" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34115">previously-allocated memory, or %NULL.</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="n_blocks" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34116">the number of blocks to allocate</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
<parameter name="n_block_bytes" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34117">the size of each block in bytes</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function-macro name="try_renew" c:identifier="g_try_renew" version="2.8" introspectable="0">
|
|
<doc xml:space="preserve" filename="gmem.h" line="343">Attempts to reallocate the memory pointed to by @mem, so that it now has
|
|
space for @n_structs elements of type @struct_type, and returns %NULL on
|
|
failure. Contrast with g_renew(), which aborts the program on failure.
|
|
It returns the new address of the memory, which may have been moved.
|
|
The function returns %NULL if an overflow occurs.</doc>
|
|
<source-position filename="gmem.h" line="358"/>
|
|
<parameters>
|
|
<parameter name="struct_type">
|
|
<doc xml:space="preserve" filename="gmem.h" line="345">the type of the elements to allocate</doc>
|
|
</parameter>
|
|
<parameter name="mem">
|
|
<doc xml:space="preserve" filename="gmem.h" line="346">the currently allocated memory</doc>
|
|
</parameter>
|
|
<parameter name="n_structs">
|
|
<doc xml:space="preserve" filename="gmem.h" line="347">the number of elements to allocate</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function name="ucs4_to_utf16" c:identifier="g_ucs4_to_utf16" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34127">Convert a string from UCS-4 to UTF-16. A 0 character will be
|
|
added to the result after the converted text.</doc>
|
|
<source-position filename="gunicode.h" line="838"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34145">a pointer to a newly allocated UTF-16 string.
|
|
This value must be freed with g_free(). If an error occurs,
|
|
%NULL will be returned and @error set.</doc>
|
|
<type name="guint16" c:type="gunichar2*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="str" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34129">a UCS-4 encoded string</doc>
|
|
<type name="gunichar" c:type="const gunichar*"/>
|
|
</parameter>
|
|
<parameter name="len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34130">the maximum length (number of characters) of @str to use.
|
|
If @len < 0, then the string is nul-terminated.</doc>
|
|
<type name="glong" c:type="glong"/>
|
|
</parameter>
|
|
<parameter name="items_read" direction="out" caller-allocates="1" transfer-ownership="none" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34132">location to store number of
|
|
bytes read, or %NULL. If an error occurs then the index of the invalid
|
|
input is stored here.</doc>
|
|
<type name="glong" c:type="glong*"/>
|
|
</parameter>
|
|
<parameter name="items_written" direction="out" caller-allocates="1" transfer-ownership="none" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34135">location to store number
|
|
of #gunichar2 written, or %NULL. The value stored here does not include
|
|
the trailing 0.</doc>
|
|
<type name="glong" c:type="glong*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="ucs4_to_utf8" c:identifier="g_ucs4_to_utf8" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34151">Convert a string from a 32-bit fixed width representation as UCS-4.
|
|
to UTF-8. The result will be terminated with a 0 byte.</doc>
|
|
<source-position filename="gunicode.h" line="844"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34168">a pointer to a newly allocated UTF-8 string.
|
|
This value must be freed with g_free(). If an error occurs,
|
|
%NULL will be returned and @error set. In that case, @items_read
|
|
will be set to the position of the first invalid input character.</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="str" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34153">a UCS-4 encoded string</doc>
|
|
<type name="gunichar" c:type="const gunichar*"/>
|
|
</parameter>
|
|
<parameter name="len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34154">the maximum length (number of characters) of @str to use.
|
|
If @len < 0, then the string is nul-terminated.</doc>
|
|
<type name="glong" c:type="glong"/>
|
|
</parameter>
|
|
<parameter name="items_read" direction="out" caller-allocates="1" transfer-ownership="none" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34156">location to store number of
|
|
characters read, or %NULL.</doc>
|
|
<type name="glong" c:type="glong*"/>
|
|
</parameter>
|
|
<parameter name="items_written" direction="out" caller-allocates="1" transfer-ownership="none" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34158">location to store number
|
|
of bytes written or %NULL. The value here stored does not include the
|
|
trailing 0 byte.</doc>
|
|
<type name="glong" c:type="glong*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function-macro name="uint64_checked_add" c:identifier="g_uint64_checked_add" version="2.48" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34175">Performs a checked addition of @a and @b, storing the result in
|
|
@dest.
|
|
|
|
If the operation is successful, %TRUE is returned. If the operation
|
|
overflows then the state of @dest is undefined and %FALSE is
|
|
returned.</doc>
|
|
<source-position filename="gtypes.h" line="437"/>
|
|
<parameters>
|
|
<parameter name="dest">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34177">a pointer to the #guint64 destination</doc>
|
|
</parameter>
|
|
<parameter name="a">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34178">the #guint64 left operand</doc>
|
|
</parameter>
|
|
<parameter name="b">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34179">the #guint64 right operand</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="uint64_checked_mul" c:identifier="g_uint64_checked_mul" version="2.48" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34193">Performs a checked multiplication of @a and @b, storing the result in
|
|
@dest.
|
|
|
|
If the operation is successful, %TRUE is returned. If the operation
|
|
overflows then the state of @dest is undefined and %FALSE is
|
|
returned.</doc>
|
|
<source-position filename="gtypes.h" line="439"/>
|
|
<parameters>
|
|
<parameter name="dest">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34195">a pointer to the #guint64 destination</doc>
|
|
</parameter>
|
|
<parameter name="a">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34196">the #guint64 left operand</doc>
|
|
</parameter>
|
|
<parameter name="b">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34197">the #guint64 right operand</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="uint_checked_add" c:identifier="g_uint_checked_add" version="2.48" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34211">Performs a checked addition of @a and @b, storing the result in
|
|
@dest.
|
|
|
|
If the operation is successful, %TRUE is returned. If the operation
|
|
overflows then the state of @dest is undefined and %FALSE is
|
|
returned.</doc>
|
|
<source-position filename="gtypes.h" line="432"/>
|
|
<parameters>
|
|
<parameter name="dest">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34213">a pointer to the #guint destination</doc>
|
|
</parameter>
|
|
<parameter name="a">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34214">the #guint left operand</doc>
|
|
</parameter>
|
|
<parameter name="b">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34215">the #guint right operand</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function-macro name="uint_checked_mul" c:identifier="g_uint_checked_mul" version="2.48" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34229">Performs a checked multiplication of @a and @b, storing the result in
|
|
@dest.
|
|
|
|
If the operation is successful, %TRUE is returned. If the operation
|
|
overflows then the state of @dest is undefined and %FALSE is
|
|
returned.</doc>
|
|
<source-position filename="gtypes.h" line="434"/>
|
|
<parameters>
|
|
<parameter name="dest">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34231">a pointer to the #guint destination</doc>
|
|
</parameter>
|
|
<parameter name="a">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34232">the #guint left operand</doc>
|
|
</parameter>
|
|
<parameter name="b">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34233">the #guint right operand</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function name="unichar_break_type" c:identifier="g_unichar_break_type">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34247">Determines the break type of @c. @c should be a Unicode character
|
|
(to derive a character from UTF-8 encoded text, use
|
|
g_utf8_get_char()). The break type is used to find word and line
|
|
breaks ("text boundaries"), Pango implements the Unicode boundary
|
|
resolution algorithms and normally you would use a function such
|
|
as pango_break() instead of caring about break types yourself.</doc>
|
|
<source-position filename="gunicode.h" line="686"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34258">the break type of @c</doc>
|
|
<type name="UnicodeBreakType" c:type="GUnicodeBreakType"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="c" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34249">a Unicode character</doc>
|
|
<type name="gunichar" c:type="gunichar"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="unichar_combining_class" c:identifier="g_unichar_combining_class" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34262">Determines the canonical combining class of a Unicode character.</doc>
|
|
<source-position filename="gunicode.h" line="690"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34268">the combining class of the character</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="uc" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34264">a Unicode character</doc>
|
|
<type name="gunichar" c:type="gunichar"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="unichar_compose" c:identifier="g_unichar_compose" version="2.30">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34273">Performs a single composition step of the
|
|
Unicode canonical composition algorithm.
|
|
|
|
This function includes algorithmic Hangul Jamo composition,
|
|
but it is not exactly the inverse of g_unichar_decompose().
|
|
No composition can have either of @a or @b equal to zero.
|
|
To be precise, this function composes if and only if
|
|
there exists a Primary Composite P which is canonically
|
|
equivalent to the sequence <@a,@b>. See the Unicode
|
|
Standard for the definition of Primary Composite.
|
|
|
|
If @a and @b do not compose a new character, @ch is set to zero.
|
|
|
|
See
|
|
[UAX#15](http://unicode.org/reports/tr15/)
|
|
for details.</doc>
|
|
<source-position filename="gunicode.h" line="705"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34296">%TRUE if the characters could be composed</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="a" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34275">a Unicode character</doc>
|
|
<type name="gunichar" c:type="gunichar"/>
|
|
</parameter>
|
|
<parameter name="b" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34276">a Unicode character</doc>
|
|
<type name="gunichar" c:type="gunichar"/>
|
|
</parameter>
|
|
<parameter name="ch" direction="out" caller-allocates="0" transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34277">return location for the composed character</doc>
|
|
<type name="gunichar" c:type="gunichar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="unichar_decompose" c:identifier="g_unichar_decompose" version="2.30">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34301">Performs a single decomposition step of the
|
|
Unicode canonical decomposition algorithm.
|
|
|
|
This function does not include compatibility
|
|
decompositions. It does, however, include algorithmic
|
|
Hangul Jamo decomposition, as well as 'singleton'
|
|
decompositions which replace a character by a single
|
|
other character. In the case of singletons *@b will
|
|
be set to zero.
|
|
|
|
If @ch is not decomposable, *@a is set to @ch and *@b
|
|
is set to zero.
|
|
|
|
Note that the way Unicode decomposition pairs are
|
|
defined, it is guaranteed that @b would not decompose
|
|
further, but @a may itself decompose. To get the full
|
|
canonical decomposition for @ch, one would need to
|
|
recursively call this function on @a. Or use
|
|
g_unichar_fully_decompose().
|
|
|
|
See
|
|
[UAX#15](http://unicode.org/reports/tr15/)
|
|
for details.</doc>
|
|
<source-position filename="gunicode.h" line="709"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34331">%TRUE if the character could be decomposed</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="ch" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34303">a Unicode character</doc>
|
|
<type name="gunichar" c:type="gunichar"/>
|
|
</parameter>
|
|
<parameter name="a" direction="out" caller-allocates="0" transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34304">return location for the first component of @ch</doc>
|
|
<type name="gunichar" c:type="gunichar*"/>
|
|
</parameter>
|
|
<parameter name="b" direction="out" caller-allocates="0" transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34305">return location for the second component of @ch</doc>
|
|
<type name="gunichar" c:type="gunichar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="unichar_digit_value" c:identifier="g_unichar_digit_value">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34336">Determines the numeric value of a character as a decimal
|
|
digit.</doc>
|
|
<source-position filename="gunicode.h" line="675"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34343">If @c is a decimal digit (according to
|
|
g_unichar_isdigit()), its numeric value. Otherwise, -1.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="c" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34338">a Unicode character</doc>
|
|
<type name="gunichar" c:type="gunichar"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="unichar_fully_decompose" c:identifier="g_unichar_fully_decompose" version="2.30">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34348">Computes the canonical or compatibility decomposition of a
|
|
Unicode character. For compatibility decomposition,
|
|
pass %TRUE for @compat; for canonical decomposition
|
|
pass %FALSE for @compat.
|
|
|
|
The decomposed sequence is placed in @result. Only up to
|
|
@result_len characters are written into @result. The length
|
|
of the full decomposition (irrespective of @result_len) is
|
|
returned by the function. For canonical decomposition,
|
|
currently all decompositions are of length at most 4, but
|
|
this may change in the future (very unlikely though).
|
|
At any rate, Unicode does guarantee that a buffer of length
|
|
18 is always enough for both compatibility and canonical
|
|
decompositions, so that is the size recommended. This is provided
|
|
as %G_UNICHAR_MAX_DECOMPOSITION_LENGTH.
|
|
|
|
See
|
|
[UAX#15](http://unicode.org/reports/tr15/)
|
|
for details.</doc>
|
|
<source-position filename="gunicode.h" line="714"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34375">the length of the full decomposition.</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="ch" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34350">a Unicode character.</doc>
|
|
<type name="gunichar" c:type="gunichar"/>
|
|
</parameter>
|
|
<parameter name="compat" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34351">whether perform canonical or compatibility decomposition</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
<parameter name="result" direction="out" caller-allocates="1" transfer-ownership="none" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34352">location to store decomposed result, or %NULL</doc>
|
|
<type name="gunichar" c:type="gunichar*"/>
|
|
</parameter>
|
|
<parameter name="result_len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34353">length of @result</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="unichar_get_mirror_char" c:identifier="g_unichar_get_mirror_char" version="2.4">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34380">In Unicode, some characters are "mirrored". This means that their
|
|
images are mirrored horizontally in text that is laid out from right
|
|
to left. For instance, "(" would become its mirror image, ")", in
|
|
right-to-left text.
|
|
|
|
If @ch has the Unicode mirrored property and there is another unicode
|
|
character that typically has a glyph that is the mirror image of @ch's
|
|
glyph and @mirrored_ch is set, it puts that character in the address
|
|
pointed to by @mirrored_ch. Otherwise the original character is put.</doc>
|
|
<source-position filename="gunicode.h" line="693"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34395">%TRUE if @ch has a mirrored character, %FALSE otherwise</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="ch" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34382">a Unicode character</doc>
|
|
<type name="gunichar" c:type="gunichar"/>
|
|
</parameter>
|
|
<parameter name="mirrored_ch" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34383">location to store the mirrored character</doc>
|
|
<type name="gunichar" c:type="gunichar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="unichar_get_script" c:identifier="g_unichar_get_script" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34400">Looks up the #GUnicodeScript for a particular character (as defined
|
|
by Unicode Standard Annex \#24). No check is made for @ch being a
|
|
valid Unicode character; if you pass in invalid character, the
|
|
result is undefined.
|
|
|
|
This function is equivalent to pango_script_for_unichar() and the
|
|
two are interchangeable.</doc>
|
|
<source-position filename="gunicode.h" line="697"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34412">the #GUnicodeScript for the character.</doc>
|
|
<type name="UnicodeScript" c:type="GUnicodeScript"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="ch" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34402">a Unicode character</doc>
|
|
<type name="gunichar" c:type="gunichar"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="unichar_isalnum" c:identifier="g_unichar_isalnum">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34417">Determines whether a character is alphanumeric.
|
|
Given some UTF-8 text, obtain a character value
|
|
with g_utf8_get_char().</doc>
|
|
<source-position filename="gunicode.h" line="629"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34425">%TRUE if @c is an alphanumeric character</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="c" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34419">a Unicode character</doc>
|
|
<type name="gunichar" c:type="gunichar"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="unichar_isalpha" c:identifier="g_unichar_isalpha">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34429">Determines whether a character is alphabetic (i.e. a letter).
|
|
Given some UTF-8 text, obtain a character value with
|
|
g_utf8_get_char().</doc>
|
|
<source-position filename="gunicode.h" line="631"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34437">%TRUE if @c is an alphabetic character</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="c" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34431">a Unicode character</doc>
|
|
<type name="gunichar" c:type="gunichar"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="unichar_iscntrl" c:identifier="g_unichar_iscntrl">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34441">Determines whether a character is a control character.
|
|
Given some UTF-8 text, obtain a character value with
|
|
g_utf8_get_char().</doc>
|
|
<source-position filename="gunicode.h" line="633"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34449">%TRUE if @c is a control character</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="c" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34443">a Unicode character</doc>
|
|
<type name="gunichar" c:type="gunichar"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="unichar_isdefined" c:identifier="g_unichar_isdefined">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34453">Determines if a given character is assigned in the Unicode
|
|
standard.</doc>
|
|
<source-position filename="gunicode.h" line="653"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34460">%TRUE if the character has an assigned value</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="c" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34455">a Unicode character</doc>
|
|
<type name="gunichar" c:type="gunichar"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="unichar_isdigit" c:identifier="g_unichar_isdigit">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34464">Determines whether a character is numeric (i.e. a digit). This
|
|
covers ASCII 0-9 and also digits in other languages/scripts. Given
|
|
some UTF-8 text, obtain a character value with g_utf8_get_char().</doc>
|
|
<source-position filename="gunicode.h" line="635"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34472">%TRUE if @c is a digit</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="c" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34466">a Unicode character</doc>
|
|
<type name="gunichar" c:type="gunichar"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="unichar_isgraph" c:identifier="g_unichar_isgraph">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34476">Determines whether a character is printable and not a space
|
|
(returns %FALSE for control characters, format characters, and
|
|
spaces). g_unichar_isprint() is similar, but returns %TRUE for
|
|
spaces. Given some UTF-8 text, obtain a character value with
|
|
g_utf8_get_char().</doc>
|
|
<source-position filename="gunicode.h" line="637"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34486">%TRUE if @c is printable unless it's a space</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="c" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34478">a Unicode character</doc>
|
|
<type name="gunichar" c:type="gunichar"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="unichar_islower" c:identifier="g_unichar_islower">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34490">Determines whether a character is a lowercase letter.
|
|
Given some UTF-8 text, obtain a character value with
|
|
g_utf8_get_char().</doc>
|
|
<source-position filename="gunicode.h" line="639"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34498">%TRUE if @c is a lowercase letter</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="c" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34492">a Unicode character</doc>
|
|
<type name="gunichar" c:type="gunichar"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="unichar_ismark" c:identifier="g_unichar_ismark" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34502">Determines whether a character is a mark (non-spacing mark,
|
|
combining mark, or enclosing mark in Unicode speak).
|
|
Given some UTF-8 text, obtain a character value
|
|
with g_utf8_get_char().
|
|
|
|
Note: in most cases where isalpha characters are allowed,
|
|
ismark characters should be allowed to as they are essential
|
|
for writing most European languages as well as many non-Latin
|
|
scripts.</doc>
|
|
<source-position filename="gunicode.h" line="661"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34516">%TRUE if @c is a mark character</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="c" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34504">a Unicode character</doc>
|
|
<type name="gunichar" c:type="gunichar"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="unichar_isprint" c:identifier="g_unichar_isprint">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34521">Determines whether a character is printable.
|
|
Unlike g_unichar_isgraph(), returns %TRUE for spaces.
|
|
Given some UTF-8 text, obtain a character value with
|
|
g_utf8_get_char().</doc>
|
|
<source-position filename="gunicode.h" line="641"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34530">%TRUE if @c is printable</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="c" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34523">a Unicode character</doc>
|
|
<type name="gunichar" c:type="gunichar"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="unichar_ispunct" c:identifier="g_unichar_ispunct">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34534">Determines whether a character is punctuation or a symbol.
|
|
Given some UTF-8 text, obtain a character value with
|
|
g_utf8_get_char().</doc>
|
|
<source-position filename="gunicode.h" line="643"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34542">%TRUE if @c is a punctuation or symbol character</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="c" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34536">a Unicode character</doc>
|
|
<type name="gunichar" c:type="gunichar"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="unichar_isspace" c:identifier="g_unichar_isspace">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34546">Determines whether a character is a space, tab, or line separator
|
|
(newline, carriage return, etc.). Given some UTF-8 text, obtain a
|
|
character value with g_utf8_get_char().
|
|
|
|
(Note: don't use this to do word breaking; you have to use
|
|
Pango or equivalent to get word breaking right, the algorithm
|
|
is fairly complex.)</doc>
|
|
<source-position filename="gunicode.h" line="645"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34558">%TRUE if @c is a space character</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="c" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34548">a Unicode character</doc>
|
|
<type name="gunichar" c:type="gunichar"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="unichar_istitle" c:identifier="g_unichar_istitle">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34562">Determines if a character is titlecase. Some characters in
|
|
Unicode which are composites, such as the DZ digraph
|
|
have three case variants instead of just two. The titlecase
|
|
form is used at the beginning of a word where only the
|
|
first letter is capitalized. The titlecase form of the DZ
|
|
digraph is U+01F2 LATIN CAPITAL LETTTER D WITH SMALL LETTER Z.</doc>
|
|
<source-position filename="gunicode.h" line="651"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34573">%TRUE if the character is titlecase</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="c" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34564">a Unicode character</doc>
|
|
<type name="gunichar" c:type="gunichar"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="unichar_isupper" c:identifier="g_unichar_isupper">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34577">Determines if a character is uppercase.</doc>
|
|
<source-position filename="gunicode.h" line="647"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34583">%TRUE if @c is an uppercase character</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="c" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34579">a Unicode character</doc>
|
|
<type name="gunichar" c:type="gunichar"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="unichar_iswide" c:identifier="g_unichar_iswide">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34587">Determines if a character is typically rendered in a double-width
|
|
cell.</doc>
|
|
<source-position filename="gunicode.h" line="655"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34594">%TRUE if the character is wide</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="c" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34589">a Unicode character</doc>
|
|
<type name="gunichar" c:type="gunichar"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="unichar_iswide_cjk" c:identifier="g_unichar_iswide_cjk" version="2.12">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34598">Determines if a character is typically rendered in a double-width
|
|
cell under legacy East Asian locales. If a character is wide according to
|
|
g_unichar_iswide(), then it is also reported wide with this function, but
|
|
the converse is not necessarily true. See the
|
|
[Unicode Standard Annex #11](http://www.unicode.org/reports/tr11/)
|
|
for details.
|
|
|
|
If a character passes the g_unichar_iswide() test then it will also pass
|
|
this test, but not the other way around. Note that some characters may
|
|
pass both this test and g_unichar_iszerowidth().</doc>
|
|
<source-position filename="gunicode.h" line="657"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34613">%TRUE if the character is wide in legacy East Asian locales</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="c" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34600">a Unicode character</doc>
|
|
<type name="gunichar" c:type="gunichar"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="unichar_isxdigit" c:identifier="g_unichar_isxdigit">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34618">Determines if a character is a hexidecimal digit.</doc>
|
|
<source-position filename="gunicode.h" line="649"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34624">%TRUE if the character is a hexadecimal digit</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="c" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34620">a Unicode character.</doc>
|
|
<type name="gunichar" c:type="gunichar"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="unichar_iszerowidth" c:identifier="g_unichar_iszerowidth" version="2.14">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34628">Determines if a given character typically takes zero width when rendered.
|
|
The return value is %TRUE for all non-spacing and enclosing marks
|
|
(e.g., combining accents), format characters, zero-width
|
|
space, but not U+00AD SOFT HYPHEN.
|
|
|
|
A typical use of this function is with one of g_unichar_iswide() or
|
|
g_unichar_iswide_cjk() to determine the number of cells a string occupies
|
|
when displayed on a grid display (terminals). However, note that not all
|
|
terminals support zero-width rendering of zero-width marks.</doc>
|
|
<source-position filename="gunicode.h" line="659"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34642">%TRUE if the character has zero width</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="c" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34630">a Unicode character</doc>
|
|
<type name="gunichar" c:type="gunichar"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="unichar_to_utf8" c:identifier="g_unichar_to_utf8">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34647">Converts a single character to UTF-8.</doc>
|
|
<source-position filename="gunicode.h" line="851"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34656">number of bytes written</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="c" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34649">a Unicode character code</doc>
|
|
<type name="gunichar" c:type="gunichar"/>
|
|
</parameter>
|
|
<parameter name="outbuf" direction="out" caller-allocates="1" transfer-ownership="none" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34650">output buffer, must have at
|
|
least 6 bytes of space. If %NULL, the length will be computed and
|
|
returned and nothing will be written to @outbuf.</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="unichar_tolower" c:identifier="g_unichar_tolower">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34660">Converts a character to lower case.</doc>
|
|
<source-position filename="gunicode.h" line="668"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34666">the result of converting @c to lower case.
|
|
If @c is not an upperlower or titlecase character,
|
|
or has no lowercase equivalent @c is returned unchanged.</doc>
|
|
<type name="gunichar" c:type="gunichar"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="c" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34662">a Unicode character.</doc>
|
|
<type name="gunichar" c:type="gunichar"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="unichar_totitle" c:identifier="g_unichar_totitle">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34672">Converts a character to the titlecase.</doc>
|
|
<source-position filename="gunicode.h" line="670"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34678">the result of converting @c to titlecase.
|
|
If @c is not an uppercase or lowercase character,
|
|
@c is returned unchanged.</doc>
|
|
<type name="gunichar" c:type="gunichar"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="c" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34674">a Unicode character</doc>
|
|
<type name="gunichar" c:type="gunichar"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="unichar_toupper" c:identifier="g_unichar_toupper">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34684">Converts a character to uppercase.</doc>
|
|
<source-position filename="gunicode.h" line="666"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34690">the result of converting @c to uppercase.
|
|
If @c is not an lowercase or titlecase character,
|
|
or has no upper case equivalent @c is returned unchanged.</doc>
|
|
<type name="gunichar" c:type="gunichar"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="c" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34686">a Unicode character</doc>
|
|
<type name="gunichar" c:type="gunichar"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="unichar_type" c:identifier="g_unichar_type">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34696">Classifies a Unicode character by type.</doc>
|
|
<source-position filename="gunicode.h" line="682"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34702">the type of the character.</doc>
|
|
<type name="UnicodeType" c:type="GUnicodeType"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="c" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34698">a Unicode character</doc>
|
|
<type name="gunichar" c:type="gunichar"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="unichar_validate" c:identifier="g_unichar_validate">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34706">Checks whether @ch is a valid Unicode character. Some possible
|
|
integer values of @ch will not be valid. 0 is considered a valid
|
|
character, though it's normally a string terminator.</doc>
|
|
<source-position filename="gunicode.h" line="701"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34714">%TRUE if @ch is a valid Unicode character</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="ch" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34708">a Unicode character</doc>
|
|
<type name="gunichar" c:type="gunichar"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="unichar_xdigit_value" c:identifier="g_unichar_xdigit_value">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34718">Determines the numeric value of a character as a hexidecimal
|
|
digit.</doc>
|
|
<source-position filename="gunicode.h" line="678"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34725">If @c is a hex digit (according to
|
|
g_unichar_isxdigit()), its numeric value. Otherwise, -1.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="c" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34720">a Unicode character</doc>
|
|
<type name="gunichar" c:type="gunichar"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="unicode_canonical_decomposition" c:identifier="g_unicode_canonical_decomposition" deprecated="1" deprecated-version="2.30">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34730">Computes the canonical decomposition of a Unicode character.</doc>
|
|
<doc-deprecated xml:space="preserve">Use the more flexible g_unichar_fully_decompose()
|
|
instead.</doc-deprecated>
|
|
<source-position filename="gunicode.h" line="740"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34737">a newly allocated string of Unicode characters.
|
|
@result_len is set to the resulting length of the string.</doc>
|
|
<type name="gunichar" c:type="gunichar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="ch" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34732">a Unicode character.</doc>
|
|
<type name="gunichar" c:type="gunichar"/>
|
|
</parameter>
|
|
<parameter name="result_len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34733">location to store the length of the return value.</doc>
|
|
<type name="gsize" c:type="gsize*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="unicode_canonical_ordering" c:identifier="g_unicode_canonical_ordering">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34744">Computes the canonical ordering of a string in-place.
|
|
This rearranges decomposed characters in the string
|
|
according to their combining classes. See the Unicode
|
|
manual for more information.</doc>
|
|
<source-position filename="gunicode.h" line="735"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34746">a UCS-4 encoded string.</doc>
|
|
<type name="gunichar" c:type="gunichar*"/>
|
|
</parameter>
|
|
<parameter name="len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34747">the maximum length of @string to use.</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="unicode_script_from_iso15924" c:identifier="g_unicode_script_from_iso15924" version="2.30">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34756">Looks up the Unicode script for @iso15924. ISO 15924 assigns four-letter
|
|
codes to scripts. For example, the code for Arabic is 'Arab'.
|
|
This function accepts four letter codes encoded as a @guint32 in a
|
|
big-endian fashion. That is, the code expected for Arabic is
|
|
0x41726162 (0x41 is ASCII code for 'A', 0x72 is ASCII code for 'r', etc).
|
|
|
|
See
|
|
[Codes for the representation of names of scripts](http://unicode.org/iso15924/codelists.html)
|
|
for details.</doc>
|
|
<source-position filename="gunicode.h" line="624"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34770">the Unicode script for @iso15924, or
|
|
of %G_UNICODE_SCRIPT_INVALID_CODE if @iso15924 is zero and
|
|
%G_UNICODE_SCRIPT_UNKNOWN if @iso15924 is unknown.</doc>
|
|
<type name="UnicodeScript" c:type="GUnicodeScript"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="iso15924" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34758">a Unicode script</doc>
|
|
<type name="guint32" c:type="guint32"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="unicode_script_to_iso15924" c:identifier="g_unicode_script_to_iso15924" version="2.30">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34777">Looks up the ISO 15924 code for @script. ISO 15924 assigns four-letter
|
|
codes to scripts. For example, the code for Arabic is 'Arab'. The
|
|
four letter codes are encoded as a @guint32 by this function in a
|
|
big-endian fashion. That is, the code returned for Arabic is
|
|
0x41726162 (0x41 is ASCII code for 'A', 0x72 is ASCII code for 'r', etc).
|
|
|
|
See
|
|
[Codes for the representation of names of scripts](http://unicode.org/iso15924/codelists.html)
|
|
for details.</doc>
|
|
<source-position filename="gunicode.h" line="622"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34791">the ISO 15924 code for @script, encoded as an integer,
|
|
of zero if @script is %G_UNICODE_SCRIPT_INVALID_CODE or
|
|
ISO 15924 code 'Zzzz' (script code for UNKNOWN) if @script is not understood.</doc>
|
|
<type name="guint32" c:type="guint32"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="script" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34779">a Unicode script</doc>
|
|
<type name="UnicodeScript" c:type="GUnicodeScript"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="unix_error_quark" c:identifier="g_unix_error_quark">
|
|
<return-value transfer-ownership="none">
|
|
<type name="Quark" c:type="GQuark"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="unix_fd_add" c:identifier="g_unix_fd_add" version="2.36" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34798">Sets a function to be called when the IO condition, as specified by
|
|
@condition becomes true for @fd.
|
|
|
|
@function will be called when the specified IO condition becomes
|
|
%TRUE. The function is expected to clear whatever event caused the
|
|
IO condition to become true and return %TRUE in order to be notified
|
|
when it happens again. If @function returns %FALSE then the watch
|
|
will be cancelled.
|
|
|
|
The return value of this function can be passed to g_source_remove()
|
|
to cancel the watch at any time that it exists.
|
|
|
|
The source will never close the fd -- you must do it yourself.</doc>
|
|
<source-position filename="glib-unix.h" line="112"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34819">the ID (greater than 0) of the event source</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="fd" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34800">a file descriptor</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="condition" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34801">IO conditions to watch for on @fd</doc>
|
|
<type name="IOCondition" c:type="GIOCondition"/>
|
|
</parameter>
|
|
<parameter name="function" transfer-ownership="none" closure="3">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34802">a #GUnixFDSourceFunc</doc>
|
|
<type name="UnixFDSourceFunc" c:type="GUnixFDSourceFunc"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34803">data to pass to @function</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="unix_fd_add_full" c:identifier="g_unix_fd_add_full" version="2.36">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34824">Sets a function to be called when the IO condition, as specified by
|
|
@condition becomes true for @fd.
|
|
|
|
This is the same as g_unix_fd_add(), except that it allows you to
|
|
specify a non-default priority and a provide a #GDestroyNotify for
|
|
@user_data.</doc>
|
|
<source-position filename="glib-unix.h" line="104"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34840">the ID (greater than 0) of the event source</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="priority" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34826">the priority of the source</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="fd" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34827">a file descriptor</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="condition" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34828">IO conditions to watch for on @fd</doc>
|
|
<type name="IOCondition" c:type="GIOCondition"/>
|
|
</parameter>
|
|
<parameter name="function" transfer-ownership="none" scope="notified" closure="4" destroy="5">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34829">a #GUnixFDSourceFunc</doc>
|
|
<type name="UnixFDSourceFunc" c:type="GUnixFDSourceFunc"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34830">data to pass to @function</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="notify" transfer-ownership="none" scope="async">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34831">function to call when the idle is removed, or %NULL</doc>
|
|
<type name="DestroyNotify" c:type="GDestroyNotify"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="unix_fd_source_new" c:identifier="g_unix_fd_source_new" version="2.36">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34845">Creates a #GSource to watch for a particular IO condition on a file
|
|
descriptor.
|
|
|
|
The source will never close the fd -- you must do it yourself.</doc>
|
|
<source-position filename="glib-unix.h" line="100"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34855">the newly created #GSource</doc>
|
|
<type name="Source" c:type="GSource*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="fd" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34847">a file descriptor</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="condition" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34848">IO conditions to watch for on @fd</doc>
|
|
<type name="IOCondition" c:type="GIOCondition"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="unix_open_pipe" c:identifier="g_unix_open_pipe" version="2.30" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34860">Similar to the UNIX pipe() call, but on modern systems like Linux
|
|
uses the pipe2() system call, which atomically creates a pipe with
|
|
the configured flags. The only supported flag currently is
|
|
%FD_CLOEXEC. If for example you want to configure %O_NONBLOCK, that
|
|
must still be done separately with fcntl().
|
|
|
|
This function does not take %O_CLOEXEC, it takes %FD_CLOEXEC as if
|
|
for fcntl(); these are different on Linux/glibc.</doc>
|
|
<source-position filename="glib-unix.h" line="60"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34875">%TRUE on success, %FALSE if not (and errno will be set).</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="fds" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34862">Array of two integers</doc>
|
|
<type name="gint" c:type="gint*"/>
|
|
</parameter>
|
|
<parameter name="flags" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34863">Bitfield of file descriptor flags, as for fcntl()</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="unix_set_fd_nonblocking" c:identifier="g_unix_set_fd_nonblocking" version="2.30" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34880">Control the non-blocking state of the given file descriptor,
|
|
according to @nonblock. On most systems this uses %O_NONBLOCK, but
|
|
on some older ones may use %O_NDELAY.</doc>
|
|
<source-position filename="glib-unix.h" line="65"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34890">%TRUE if successful</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="fd" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34882">A file descriptor</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="nonblock" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34883">If %TRUE, set the descriptor to be non-blocking</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="unix_signal_add" c:identifier="g_unix_signal_add" shadowed-by="unix_signal_add_full" version="2.30" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34895">A convenience function for g_unix_signal_source_new(), which
|
|
attaches to the default #GMainContext. You can remove the watch
|
|
using g_source_remove().</doc>
|
|
<source-position filename="glib-unix.h" line="80"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34905">An ID (greater than 0) for the event source</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="signum" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34897">Signal number</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="handler" transfer-ownership="none" closure="2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34898">Callback</doc>
|
|
<type name="SourceFunc" c:type="GSourceFunc"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34899">Data for @handler</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="unix_signal_add_full" c:identifier="g_unix_signal_add_full" shadows="unix_signal_add" version="2.30">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34910">A convenience function for g_unix_signal_source_new(), which
|
|
attaches to the default #GMainContext. You can remove the watch
|
|
using g_source_remove().</doc>
|
|
<source-position filename="glib-unix.h" line="73"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34923">An ID (greater than 0) for the event source</doc>
|
|
<type name="guint" c:type="guint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="priority" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34912">the priority of the signal source. Typically this will be in
|
|
the range between #G_PRIORITY_DEFAULT and #G_PRIORITY_HIGH.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="signum" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34914">Signal number</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
<parameter name="handler" transfer-ownership="none" scope="notified" closure="3" destroy="4">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34915">Callback</doc>
|
|
<type name="SourceFunc" c:type="GSourceFunc"/>
|
|
</parameter>
|
|
<parameter name="user_data" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34916">Data for @handler</doc>
|
|
<type name="gpointer" c:type="gpointer"/>
|
|
</parameter>
|
|
<parameter name="notify" transfer-ownership="none" scope="async">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34917">#GDestroyNotify for @handler</doc>
|
|
<type name="DestroyNotify" c:type="GDestroyNotify"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="unix_signal_source_new" c:identifier="g_unix_signal_source_new" version="2.30">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34928">Create a #GSource that will be dispatched upon delivery of the UNIX
|
|
signal @signum. In GLib versions before 2.36, only `SIGHUP`, `SIGINT`,
|
|
`SIGTERM` can be monitored. In GLib 2.36, `SIGUSR1` and `SIGUSR2`
|
|
were added. In GLib 2.54, `SIGWINCH` was added.
|
|
|
|
Note that unlike the UNIX default, all sources which have created a
|
|
watch will be dispatched, regardless of which underlying thread
|
|
invoked g_unix_signal_source_new().
|
|
|
|
For example, an effective use of this function is to handle `SIGTERM`
|
|
cleanly; flushing any outstanding files, and then calling
|
|
g_main_loop_quit (). It is not safe to do any of this a regular
|
|
UNIX signal handler; your handler may be invoked while malloc() or
|
|
another library function is running, causing reentrancy if you
|
|
attempt to use it from the handler. None of the GLib/GObject API
|
|
is safe against this kind of reentrancy.
|
|
|
|
The interaction of this source when combined with native UNIX
|
|
functions like sigprocmask() is not defined.
|
|
|
|
The source will not initially be associated with any #GMainContext
|
|
and must be added to one with g_source_attach() before it will be
|
|
executed.</doc>
|
|
<source-position filename="glib-unix.h" line="70"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34956">A newly created #GSource</doc>
|
|
<type name="Source" c:type="GSource*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="signum" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34930">A signal number</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="unlink" c:identifier="g_unlink" version="2.6">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34961">A wrapper for the POSIX unlink() function. The unlink() function
|
|
deletes a name from the filesystem. If this was the last link to the
|
|
file and no processes have it opened, the diskspace occupied by the
|
|
file is freed.
|
|
|
|
See your C library manual for more details about unlink(). Note
|
|
that on Windows, it is in general not possible to delete files that
|
|
are open to some process, or mapped into memory.</doc>
|
|
<source-position filename="gstdio.h" line="90"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34975">0 if the name was successfully deleted, -1 if an error
|
|
occurred</doc>
|
|
<type name="gint" c:type="int"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="filename" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34963">a pathname in the GLib file name encoding
|
|
(UTF-8 on Windows)</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="unsetenv" c:identifier="g_unsetenv" version="2.4">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34981">Removes an environment variable from the environment.
|
|
|
|
Note that on some systems, when variables are overwritten, the
|
|
memory used for the previous variables and its value isn't reclaimed.
|
|
|
|
You should be mindful of the fact that environment variable handling
|
|
in UNIX is not thread-safe, and your program may crash if one thread
|
|
calls g_unsetenv() while another thread is calling getenv(). (And note
|
|
that many functions, such as gettext(), call getenv() internally.) This
|
|
function is only safe to use at the very start of your program, before
|
|
creating any other threads (or creating objects that create worker
|
|
threads of their own).
|
|
|
|
If you need to set up the environment for a child process, you can
|
|
use g_get_environ() to get an environment array, modify that with
|
|
g_environ_setenv() and g_environ_unsetenv(), and then pass that
|
|
array directly to execvpe(), g_spawn_async(), or the like.</doc>
|
|
<source-position filename="genviron.h" line="43"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="variable" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="34983">the environment variable to remove, must
|
|
not contain '='</doc>
|
|
<type name="filename" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="uri_escape_string" c:identifier="g_uri_escape_string" version="2.16">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35008">Escapes a string for use in a URI.
|
|
|
|
Normally all characters that are not "unreserved" (i.e. ASCII alphanumerical
|
|
characters plus dash, dot, underscore and tilde) are escaped.
|
|
But if you specify characters in @reserved_chars_allowed they are not
|
|
escaped. This is useful for the "reserved" characters in the URI
|
|
specification, since those are allowed unescaped in some portions of
|
|
a URI.</doc>
|
|
<source-position filename="gurifuncs.h" line="77"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35024">an escaped version of @unescaped. The returned string should be
|
|
freed when no longer needed.</doc>
|
|
<type name="utf8" c:type="char*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="unescaped" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35010">the unescaped input string.</doc>
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
<parameter name="reserved_chars_allowed" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35011">a string of reserved characters that
|
|
are allowed to be used, or %NULL.</doc>
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
<parameter name="allow_utf8" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35013">%TRUE if the result can include UTF-8 characters.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="uri_list_extract_uris" c:identifier="g_uri_list_extract_uris" version="2.6">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35030">Splits an URI list conforming to the text/uri-list
|
|
mime type defined in RFC 2483 into individual URIs,
|
|
discarding any comments. The URIs are not validated.</doc>
|
|
<source-position filename="gconvert.h" line="173"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35038">a newly allocated %NULL-terminated list
|
|
of strings holding the individual URIs. The array should be freed
|
|
with g_strfreev().</doc>
|
|
<array c:type="gchar**">
|
|
<type name="utf8"/>
|
|
</array>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="uri_list" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35032">an URI list</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="uri_parse_scheme" c:identifier="g_uri_parse_scheme" version="2.16">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35045">Gets the scheme portion of a URI string. RFC 3986 decodes the scheme as:
|
|
|[
|
|
URI = scheme ":" hier-part [ "?" query ] [ "#" fragment ]
|
|
]|
|
|
Common schemes include "file", "http", "svn+ssh", etc.</doc>
|
|
<source-position filename="gurifuncs.h" line="75"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35055">The "Scheme" component of the URI, or %NULL on error.
|
|
The returned string should be freed when no longer needed.</doc>
|
|
<type name="utf8" c:type="char*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="uri" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35047">a valid URI.</doc>
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="uri_unescape_segment" c:identifier="g_uri_unescape_segment" version="2.16">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35061">Unescapes a segment of an escaped string.
|
|
|
|
If any of the characters in @illegal_characters or the character zero appears
|
|
as an escaped character in @escaped_string then that is an error and %NULL
|
|
will be returned. This is useful it you want to avoid for instance having a
|
|
slash being expanded in an escaped path element, which might confuse pathname
|
|
handling.</doc>
|
|
<source-position filename="gurifuncs.h" line="71"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35075">an unescaped version of @escaped_string or %NULL on error.
|
|
The returned string should be freed when no longer needed. As a
|
|
special case if %NULL is given for @escaped_string, this function
|
|
will return %NULL.</doc>
|
|
<type name="utf8" c:type="char*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="escaped_string" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35063">A string, may be %NULL</doc>
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
<parameter name="escaped_string_end" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35064">Pointer to end of @escaped_string, may be %NULL</doc>
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
<parameter name="illegal_characters" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35065">An optional string of illegal characters not to be allowed, may be %NULL</doc>
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="uri_unescape_string" c:identifier="g_uri_unescape_string" version="2.16">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35083">Unescapes a whole escaped string.
|
|
|
|
If any of the characters in @illegal_characters or the character zero appears
|
|
as an escaped character in @escaped_string then that is an error and %NULL
|
|
will be returned. This is useful it you want to avoid for instance having a
|
|
slash being expanded in an escaped path element, which might confuse pathname
|
|
handling.</doc>
|
|
<source-position filename="gurifuncs.h" line="68"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35097">an unescaped version of @escaped_string. The returned string
|
|
should be freed when no longer needed.</doc>
|
|
<type name="utf8" c:type="char*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="escaped_string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35085">an escaped string to be unescaped.</doc>
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
<parameter name="illegal_characters" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35086">a string of illegal characters not to be
|
|
allowed, or %NULL.</doc>
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="usleep" c:identifier="g_usleep">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35103">Pauses the current thread for the given number of microseconds.
|
|
|
|
There are 1 million microseconds per second (represented by the
|
|
#G_USEC_PER_SEC macro). g_usleep() may have limited precision,
|
|
depending on hardware and operating system; don't rely on the exact
|
|
length of the sleep.</doc>
|
|
<source-position filename="gtimer.h" line="63"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="microseconds" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35105">number of microseconds to pause</doc>
|
|
<type name="gulong" c:type="gulong"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="utf16_to_ucs4" c:identifier="g_utf16_to_ucs4" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35116">Convert a string from UTF-16 to UCS-4. The result will be
|
|
nul-terminated.</doc>
|
|
<source-position filename="gunicode.h" line="826"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35135">a pointer to a newly allocated UCS-4 string.
|
|
This value must be freed with g_free(). If an error occurs,
|
|
%NULL will be returned and @error set.</doc>
|
|
<type name="gunichar" c:type="gunichar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="str" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35118">a UTF-16 encoded string</doc>
|
|
<type name="guint16" c:type="const gunichar2*"/>
|
|
</parameter>
|
|
<parameter name="len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35119">the maximum length (number of #gunichar2) of @str to use.
|
|
If @len < 0, then the string is nul-terminated.</doc>
|
|
<type name="glong" c:type="glong"/>
|
|
</parameter>
|
|
<parameter name="items_read" direction="out" caller-allocates="1" transfer-ownership="none" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35121">location to store number of
|
|
words read, or %NULL. If %NULL, then %G_CONVERT_ERROR_PARTIAL_INPUT will
|
|
be returned in case @str contains a trailing partial character. If
|
|
an error occurs then the index of the invalid input is stored here.</doc>
|
|
<type name="glong" c:type="glong*"/>
|
|
</parameter>
|
|
<parameter name="items_written" direction="out" caller-allocates="1" transfer-ownership="none" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35125">location to store number
|
|
of characters written, or %NULL. The value stored here does not include
|
|
the trailing 0 character.</doc>
|
|
<type name="glong" c:type="glong*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="utf16_to_utf8" c:identifier="g_utf16_to_utf8" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35141">Convert a string from UTF-16 to UTF-8. The result will be
|
|
terminated with a 0 byte.
|
|
|
|
Note that the input is expected to be already in native endianness,
|
|
an initial byte-order-mark character is not handled specially.
|
|
g_convert() can be used to convert a byte buffer of UTF-16 data of
|
|
ambiguous endianess.
|
|
|
|
Further note that this function does not validate the result
|
|
string; it may e.g. include embedded NUL characters. The only
|
|
validation done by this function is to ensure that the input can
|
|
be correctly interpreted as UTF-16, i.e. it doesn't contain
|
|
things unpaired surrogates.</doc>
|
|
<source-position filename="gunicode.h" line="832"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35171">a pointer to a newly allocated UTF-8 string.
|
|
This value must be freed with g_free(). If an error occurs,
|
|
%NULL will be returned and @error set.</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="str" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35143">a UTF-16 encoded string</doc>
|
|
<type name="guint16" c:type="const gunichar2*"/>
|
|
</parameter>
|
|
<parameter name="len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35144">the maximum length (number of #gunichar2) of @str to use.
|
|
If @len < 0, then the string is nul-terminated.</doc>
|
|
<type name="glong" c:type="glong"/>
|
|
</parameter>
|
|
<parameter name="items_read" direction="out" caller-allocates="1" transfer-ownership="none" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35146">location to store number of
|
|
words read, or %NULL. If %NULL, then %G_CONVERT_ERROR_PARTIAL_INPUT will
|
|
be returned in case @str contains a trailing partial character. If
|
|
an error occurs then the index of the invalid input is stored here.</doc>
|
|
<type name="glong" c:type="glong*"/>
|
|
</parameter>
|
|
<parameter name="items_written" direction="out" caller-allocates="1" transfer-ownership="none" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35150">location to store number
|
|
of bytes written, or %NULL. The value stored here does not include the
|
|
trailing 0 byte.</doc>
|
|
<type name="glong" c:type="glong*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="utf8_casefold" c:identifier="g_utf8_casefold">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35177">Converts a string into a form that is independent of case. The
|
|
result will not correspond to any particular case, but can be
|
|
compared for equality or ordered with the results of calling
|
|
g_utf8_casefold() on other strings.
|
|
|
|
Note that calling g_utf8_casefold() followed by g_utf8_collate() is
|
|
only an approximation to the correct linguistic case insensitive
|
|
ordering, though it is a fairly good one. Getting this exactly
|
|
right would require a more sophisticated collation function that
|
|
takes case sensitivity into account. GLib does not currently
|
|
provide such a function.</doc>
|
|
<source-position filename="gunicode.h" line="870"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35194">a newly allocated string, that is a
|
|
case independent form of @str.</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="str" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35179">a UTF-8 encoded string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35180">length of @str, in bytes, or -1 if @str is nul-terminated.</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="utf8_collate" c:identifier="g_utf8_collate">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35199">Compares two strings for ordering using the linguistically
|
|
correct rules for the [current locale][setlocale].
|
|
When sorting a large number of strings, it will be significantly
|
|
faster to obtain collation keys with g_utf8_collate_key() and
|
|
compare the keys with strcmp() when sorting instead of sorting
|
|
the original strings.</doc>
|
|
<source-position filename="gunicode.h" line="914"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35211">< 0 if @str1 compares before @str2,
|
|
0 if they compare equal, > 0 if @str1 compares after @str2.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="str1" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35201">a UTF-8 encoded string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="str2" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35202">a UTF-8 encoded string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="utf8_collate_key" c:identifier="g_utf8_collate_key">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35216">Converts a string into a collation key that can be compared
|
|
with other collation keys produced by the same function using
|
|
strcmp().
|
|
|
|
The results of comparing the collation keys of two strings
|
|
with strcmp() will always be the same as comparing the two
|
|
original keys with g_utf8_collate().
|
|
|
|
Note that this function depends on the [current locale][setlocale].</doc>
|
|
<source-position filename="gunicode.h" line="917"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35231">a newly allocated string. This string should
|
|
be freed with g_free() when you are done with it.</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="str" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35218">a UTF-8 encoded string.</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35219">length of @str, in bytes, or -1 if @str is nul-terminated.</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="utf8_collate_key_for_filename" c:identifier="g_utf8_collate_key_for_filename" version="2.8">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35236">Converts a string into a collation key that can be compared
|
|
with other collation keys produced by the same function using strcmp().
|
|
|
|
In order to sort filenames correctly, this function treats the dot '.'
|
|
as a special case. Most dictionary orderings seem to consider it
|
|
insignificant, thus producing the ordering "event.c" "eventgenerator.c"
|
|
"event.h" instead of "event.c" "event.h" "eventgenerator.c". Also, we
|
|
would like to treat numbers intelligently so that "file1" "file10" "file5"
|
|
is sorted as "file1" "file5" "file10".
|
|
|
|
Note that this function depends on the [current locale][setlocale].</doc>
|
|
<source-position filename="gunicode.h" line="920"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35253">a newly allocated string. This string should
|
|
be freed with g_free() when you are done with it.</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="str" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35238">a UTF-8 encoded string.</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35239">length of @str, in bytes, or -1 if @str is nul-terminated.</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="utf8_find_next_char" c:identifier="g_utf8_find_next_char">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35259">Finds the start of the next UTF-8 character in the string after @p.
|
|
|
|
@p does not have to be at the beginning of a UTF-8 character. No check
|
|
is made to see if the character found is actually valid other than
|
|
it starts with an appropriate byte.
|
|
|
|
If @end is %NULL, the return value will never be %NULL: if the end of the
|
|
string is reached, a pointer to the terminating nul byte is returned. If
|
|
@end is non-%NULL, the return value will be %NULL if the end of the string
|
|
is reached.</doc>
|
|
<source-position filename="gunicode.h" line="775"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35276">a pointer to the found character or %NULL if @end is
|
|
set and is reached</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="p" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35261">a pointer to a position within a UTF-8 encoded string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="end" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35262">a pointer to the byte following the end of the string,
|
|
or %NULL to indicate that the string is nul-terminated</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="utf8_find_prev_char" c:identifier="g_utf8_find_prev_char">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35281">Given a position @p with a UTF-8 encoded string @str, find the start
|
|
of the previous UTF-8 character starting before @p. Returns %NULL if no
|
|
UTF-8 characters are present in @str before @p.
|
|
|
|
@p does not have to be at the beginning of a UTF-8 character. No check
|
|
is made to see if the character found is actually valid other than
|
|
it starts with an appropriate byte.</doc>
|
|
<source-position filename="gunicode.h" line="778"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35294">a pointer to the found character or %NULL.</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="str" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35283">pointer to the beginning of a UTF-8 encoded string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="p" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35284">pointer to some position within @str</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="utf8_get_char" c:identifier="g_utf8_get_char">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35298">Converts a sequence of bytes encoded as UTF-8 to a Unicode character.
|
|
|
|
If @p does not point to a valid UTF-8 encoded character, results
|
|
are undefined. If you are not sure that the bytes are complete
|
|
valid Unicode characters, you should use g_utf8_get_char_validated()
|
|
instead.</doc>
|
|
<source-position filename="gunicode.h" line="761"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35309">the resulting character</doc>
|
|
<type name="gunichar" c:type="gunichar"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="p" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35300">a pointer to Unicode character encoded as UTF-8</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="utf8_get_char_validated" c:identifier="g_utf8_get_char_validated">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35313">Convert a sequence of bytes encoded as UTF-8 to a Unicode character.
|
|
This function checks for incomplete characters, for invalid characters
|
|
such as characters that are out of the range of Unicode, and for
|
|
overlong encodings of valid characters.
|
|
|
|
Note that g_utf8_get_char_validated() returns (gunichar)-2 if
|
|
@max_len is positive and any of the bytes in the first UTF-8 character
|
|
sequence are nul.</doc>
|
|
<source-position filename="gunicode.h" line="763"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35327">the resulting character. If @p points to a partial
|
|
sequence at the end of a string that could begin a valid
|
|
character (or if @max_len is zero), returns (gunichar)-2;
|
|
otherwise, if @p does not point to a valid UTF-8 encoded
|
|
Unicode character, returns (gunichar)-1.</doc>
|
|
<type name="gunichar" c:type="gunichar"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="p" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35315">a pointer to Unicode character encoded as UTF-8</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="max_len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35316">the maximum number of bytes to read, or -1 if @p is nul-terminated</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="utf8_make_valid" c:identifier="g_utf8_make_valid" version="2.52">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35335">If the provided string is valid UTF-8, return a copy of it. If not,
|
|
return a copy in which bytes that could not be interpreted as valid Unicode
|
|
are replaced with the Unicode replacement character (U+FFFD).
|
|
|
|
For example, this is an appropriate function to use if you have received
|
|
a string that was incorrectly declared to be UTF-8, and you need a valid
|
|
UTF-8 version of it that can be logged or displayed to the user, with the
|
|
assumption that it is close enough to ASCII or UTF-8 to be mostly
|
|
readable as-is.</doc>
|
|
<source-position filename="gunicode.h" line="924"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35351">a valid UTF-8 string whose content resembles @str</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="str" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35337">string to coerce into UTF-8</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35338">the maximum length of @str to use, in bytes. If @len < 0,
|
|
then the string is nul-terminated.</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function-macro name="utf8_next_char" c:identifier="g_utf8_next_char" introspectable="0">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="747">Skips to the next character in a UTF-8 string. The string must be
|
|
valid; this macro is as fast as possible, and has no error-checking.
|
|
You would use this macro to iterate over a string character by
|
|
character. The macro returns the start of the next UTF-8 character.
|
|
Before using this macro, use g_utf8_validate() to validate strings
|
|
that may contain invalid UTF-8.</doc>
|
|
<source-position filename="gunicode.h" line="758"/>
|
|
<parameters>
|
|
<parameter name="p">
|
|
<doc xml:space="preserve" filename="gunicode.h" line="749">Pointer to the start of a valid UTF-8 character</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function name="utf8_normalize" c:identifier="g_utf8_normalize">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35356">Converts a string into canonical form, standardizing
|
|
such issues as whether a character with an accent
|
|
is represented as a base character and combining
|
|
accent or as a single precomposed character. The
|
|
string has to be valid UTF-8, otherwise %NULL is
|
|
returned. You should generally call g_utf8_normalize()
|
|
before comparing two Unicode strings.
|
|
|
|
The normalization mode %G_NORMALIZE_DEFAULT only
|
|
standardizes differences that do not affect the
|
|
text content, such as the above-mentioned accent
|
|
representation. %G_NORMALIZE_ALL also standardizes
|
|
the "compatibility" characters in Unicode, such
|
|
as SUPERSCRIPT THREE to the standard forms
|
|
(in this case DIGIT THREE). Formatting information
|
|
may be lost but for most text operations such
|
|
characters should be considered the same.
|
|
|
|
%G_NORMALIZE_DEFAULT_COMPOSE and %G_NORMALIZE_ALL_COMPOSE
|
|
are like %G_NORMALIZE_DEFAULT and %G_NORMALIZE_ALL,
|
|
but returned a result with composed forms rather
|
|
than a maximally decomposed form. This is often
|
|
useful if you intend to convert the string to
|
|
a legacy encoding or pass it to a system with
|
|
less capable Unicode handling.</doc>
|
|
<source-position filename="gunicode.h" line="909"/>
|
|
<return-value transfer-ownership="full" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35388">a newly allocated string, that
|
|
is the normalized form of @str, or %NULL if @str
|
|
is not valid UTF-8.</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="str" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35358">a UTF-8 encoded string.</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35359">length of @str, in bytes, or -1 if @str is nul-terminated.</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
<parameter name="mode" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35360">the type of normalization to perform.</doc>
|
|
<type name="NormalizeMode" c:type="GNormalizeMode"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="utf8_offset_to_pointer" c:identifier="g_utf8_offset_to_pointer">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35394">Converts from an integer character offset to a pointer to a position
|
|
within the string.
|
|
|
|
Since 2.10, this function allows to pass a negative @offset to
|
|
step backwards. It is usually worth stepping backwards from the end
|
|
instead of forwards if @offset is in the last fourth of the string,
|
|
since moving forward is about 3 times faster than moving backward.
|
|
|
|
Note that this function doesn't abort when reaching the end of @str.
|
|
Therefore you should be sure that @offset is within string boundaries
|
|
before calling that function. Call g_utf8_strlen() when unsure.
|
|
This limitation exists as this function is called frequently during
|
|
text rendering and therefore has to be as fast as possible.</doc>
|
|
<source-position filename="gunicode.h" line="767"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35413">the resulting pointer</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="str" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35396">a UTF-8 encoded string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="offset" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35397">a character offset within @str</doc>
|
|
<type name="glong" c:type="glong"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="utf8_pointer_to_offset" c:identifier="g_utf8_pointer_to_offset">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35417">Converts from a pointer to position within a string to a integer
|
|
character offset.
|
|
|
|
Since 2.10, this function allows @pos to be before @str, and returns
|
|
a negative offset in this case.</doc>
|
|
<source-position filename="gunicode.h" line="770"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35428">the resulting character offset</doc>
|
|
<type name="glong" c:type="glong"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="str" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35419">a UTF-8 encoded string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="pos" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35420">a pointer to a position within @str</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="utf8_prev_char" c:identifier="g_utf8_prev_char">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35432">Finds the previous UTF-8 character in the string before @p.
|
|
|
|
@p does not have to be at the beginning of a UTF-8 character. No check
|
|
is made to see if the character found is actually valid other than
|
|
it starts with an appropriate byte. If @p might be the first
|
|
character of the string, you must use g_utf8_find_prev_char() instead.</doc>
|
|
<source-position filename="gunicode.h" line="773"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35443">a pointer to the found character</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="p" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35434">a pointer to a position within a UTF-8 encoded string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="utf8_strchr" c:identifier="g_utf8_strchr">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35447">Finds the leftmost occurrence of the given Unicode character
|
|
in a UTF-8 encoded string, while limiting the search to @len bytes.
|
|
If @len is -1, allow unbounded search.</doc>
|
|
<source-position filename="gunicode.h" line="798"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35457">%NULL if the string does not contain the character,
|
|
otherwise, a pointer to the start of the leftmost occurrence
|
|
of the character in the string.</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="p" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35449">a nul-terminated UTF-8 encoded string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35450">the maximum length of @p</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
<parameter name="c" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35451">a Unicode character</doc>
|
|
<type name="gunichar" c:type="gunichar"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="utf8_strdown" c:identifier="g_utf8_strdown">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35463">Converts all Unicode characters in the string that have a case
|
|
to lowercase. The exact manner that this is done depends
|
|
on the current locale, and may result in the number of
|
|
characters in the string changing.</doc>
|
|
<source-position filename="gunicode.h" line="867"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35473">a newly allocated string, with all characters
|
|
converted to lowercase.</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="str" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35465">a UTF-8 encoded string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35466">length of @str, in bytes, or -1 if @str is nul-terminated.</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="utf8_strlen" c:identifier="g_utf8_strlen">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35478">Computes the length of the string in characters, not including
|
|
the terminating nul character. If the @max'th byte falls in the
|
|
middle of a character, the last (partial) character is not counted.</doc>
|
|
<source-position filename="gunicode.h" line="782"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35491">the length of the string in characters</doc>
|
|
<type name="glong" c:type="glong"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="p" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35480">pointer to the start of a UTF-8 encoded string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="max" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35481">the maximum number of bytes to examine. If @max
|
|
is less than 0, then the string is assumed to be
|
|
nul-terminated. If @max is 0, @p will not be examined and
|
|
may be %NULL. If @max is greater than 0, up to @max
|
|
bytes are examined</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="utf8_strncpy" c:identifier="g_utf8_strncpy">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35495">Like the standard C strncpy() function, but copies a given number
|
|
of characters instead of a given number of bytes. The @src string
|
|
must be valid UTF-8 encoded text. (Use g_utf8_validate() on all
|
|
text before trying to use UTF-8 utility functions with it.)
|
|
|
|
Note you must ensure @dest is at least 4 * @n to fit the
|
|
largest possible UTF-8 characters</doc>
|
|
<source-position filename="gunicode.h" line="791"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35509">@dest</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="dest" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35497">buffer to fill with characters from @src</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</parameter>
|
|
<parameter name="src" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35498">UTF-8 encoded string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="n" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35499">character count</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="utf8_strrchr" c:identifier="g_utf8_strrchr">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35513">Find the rightmost occurrence of the given Unicode character
|
|
in a UTF-8 encoded string, while limiting the search to @len bytes.
|
|
If @len is -1, allow unbounded search.</doc>
|
|
<source-position filename="gunicode.h" line="802"/>
|
|
<return-value transfer-ownership="none" nullable="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35523">%NULL if the string does not contain the character,
|
|
otherwise, a pointer to the start of the rightmost occurrence
|
|
of the character in the string.</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="p" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35515">a nul-terminated UTF-8 encoded string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35516">the maximum length of @p</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
<parameter name="c" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35517">a Unicode character</doc>
|
|
<type name="gunichar" c:type="gunichar"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="utf8_strreverse" c:identifier="g_utf8_strreverse" version="2.2">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35529">Reverses a UTF-8 string. @str must be valid UTF-8 encoded text.
|
|
(Use g_utf8_validate() on all text before trying to use UTF-8
|
|
utility functions with it.)
|
|
|
|
This function is intended for programmatic uses of reversed strings.
|
|
It pays no attention to decomposed characters, combining marks, byte
|
|
order marks, directional indicators (LRM, LRO, etc) and similar
|
|
characters which might need special handling when reversing a string
|
|
for display purposes.
|
|
|
|
Note that unlike g_strreverse(), this function returns
|
|
newly-allocated memory, which should be freed with g_free() when
|
|
no longer needed.</doc>
|
|
<source-position filename="gunicode.h" line="806"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35549">a newly-allocated string which is the reverse of @str</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="str" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35531">a UTF-8 encoded string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35532">the maximum length of @str to use, in bytes. If @len < 0,
|
|
then the string is nul-terminated.</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="utf8_strup" c:identifier="g_utf8_strup">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35554">Converts all Unicode characters in the string that have a case
|
|
to uppercase. The exact manner that this is done depends
|
|
on the current locale, and may result in the number of
|
|
characters in the string increasing. (For instance, the
|
|
German ess-zet will be changed to SS.)</doc>
|
|
<source-position filename="gunicode.h" line="864"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35565">a newly allocated string, with all characters
|
|
converted to uppercase.</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="str" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35556">a UTF-8 encoded string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35557">length of @str, in bytes, or -1 if @str is nul-terminated.</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="utf8_substring" c:identifier="g_utf8_substring" version="2.30">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35570">Copies a substring out of a UTF-8 encoded string.
|
|
The substring will contain @end_pos - @start_pos characters.</doc>
|
|
<source-position filename="gunicode.h" line="786"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35579">a newly allocated copy of the requested
|
|
substring. Free with g_free() when no longer needed.</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="str" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35572">a UTF-8 encoded string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="start_pos" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35573">a character offset within @str</doc>
|
|
<type name="glong" c:type="glong"/>
|
|
</parameter>
|
|
<parameter name="end_pos" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35574">another character offset within @str</doc>
|
|
<type name="glong" c:type="glong"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="utf8_to_ucs4" c:identifier="g_utf8_to_ucs4" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35585">Convert a string from UTF-8 to a 32-bit fixed width
|
|
representation as UCS-4. A trailing 0 character will be added to the
|
|
string after the converted text.</doc>
|
|
<source-position filename="gunicode.h" line="816"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35607">a pointer to a newly allocated UCS-4 string.
|
|
This value must be freed with g_free(). If an error occurs,
|
|
%NULL will be returned and @error set.</doc>
|
|
<type name="gunichar" c:type="gunichar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="str" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35587">a UTF-8 encoded string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35588">the maximum length of @str to use, in bytes. If @len < 0,
|
|
then the string is nul-terminated.</doc>
|
|
<type name="glong" c:type="glong"/>
|
|
</parameter>
|
|
<parameter name="items_read" direction="out" caller-allocates="1" transfer-ownership="none" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35590">location to store number of
|
|
bytes read, or %NULL.
|
|
If %NULL, then %G_CONVERT_ERROR_PARTIAL_INPUT will be
|
|
returned in case @str contains a trailing partial
|
|
character. If an error occurs then the index of the
|
|
invalid input is stored here.</doc>
|
|
<type name="glong" c:type="glong*"/>
|
|
</parameter>
|
|
<parameter name="items_written" direction="out" caller-allocates="1" transfer-ownership="none" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35596">location to store number
|
|
of characters written or %NULL. The value here stored does not include
|
|
the trailing 0 character.</doc>
|
|
<type name="glong" c:type="glong*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="utf8_to_ucs4_fast" c:identifier="g_utf8_to_ucs4_fast">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35613">Convert a string from UTF-8 to a 32-bit fixed width
|
|
representation as UCS-4, assuming valid UTF-8 input.
|
|
This function is roughly twice as fast as g_utf8_to_ucs4()
|
|
but does no error checking on the input. A trailing 0 character
|
|
will be added to the string after the converted text.</doc>
|
|
<source-position filename="gunicode.h" line="822"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35627">a pointer to a newly allocated UCS-4 string.
|
|
This value must be freed with g_free().</doc>
|
|
<type name="gunichar" c:type="gunichar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="str" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35615">a UTF-8 encoded string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35616">the maximum length of @str to use, in bytes. If @len < 0,
|
|
then the string is nul-terminated.</doc>
|
|
<type name="glong" c:type="glong"/>
|
|
</parameter>
|
|
<parameter name="items_written" direction="out" caller-allocates="1" transfer-ownership="none" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35618">location to store the
|
|
number of characters in the result, or %NULL.</doc>
|
|
<type name="glong" c:type="glong*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="utf8_to_utf16" c:identifier="g_utf8_to_utf16" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35632">Convert a string from UTF-8 to UTF-16. A 0 character will be
|
|
added to the result after the converted text.</doc>
|
|
<source-position filename="gunicode.h" line="810"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35651">a pointer to a newly allocated UTF-16 string.
|
|
This value must be freed with g_free(). If an error occurs,
|
|
%NULL will be returned and @error set.</doc>
|
|
<type name="guint16" c:type="gunichar2*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="str" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35634">a UTF-8 encoded string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35635">the maximum length (number of bytes) of @str to use.
|
|
If @len < 0, then the string is nul-terminated.</doc>
|
|
<type name="glong" c:type="glong"/>
|
|
</parameter>
|
|
<parameter name="items_read" direction="out" caller-allocates="1" transfer-ownership="none" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35637">location to store number of
|
|
bytes read, or %NULL. If %NULL, then %G_CONVERT_ERROR_PARTIAL_INPUT will
|
|
be returned in case @str contains a trailing partial character. If
|
|
an error occurs then the index of the invalid input is stored here.</doc>
|
|
<type name="glong" c:type="glong*"/>
|
|
</parameter>
|
|
<parameter name="items_written" direction="out" caller-allocates="1" transfer-ownership="none" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35641">location to store number
|
|
of #gunichar2 written, or %NULL. The value stored here does not include
|
|
the trailing 0.</doc>
|
|
<type name="glong" c:type="glong*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="utf8_validate" c:identifier="g_utf8_validate">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35657">Validates UTF-8 encoded text. @str is the text to validate;
|
|
if @str is nul-terminated, then @max_len can be -1, otherwise
|
|
@max_len should be the number of bytes to validate.
|
|
If @end is non-%NULL, then the end of the valid range
|
|
will be stored there (i.e. the start of the first invalid
|
|
character if some bytes were invalid, or the end of the text
|
|
being validated otherwise).
|
|
|
|
Note that g_utf8_validate() returns %FALSE if @max_len is
|
|
positive and any of the @max_len bytes are nul.
|
|
|
|
Returns %TRUE if all of @str was valid. Many GLib and GTK+
|
|
routines require valid UTF-8 as input; so data read from a file
|
|
or the network should be checked with g_utf8_validate() before
|
|
doing anything else with it.</doc>
|
|
<source-position filename="gunicode.h" line="855"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35679">%TRUE if the text was valid UTF-8</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="str" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35659">a pointer to character data</doc>
|
|
<array length="1" zero-terminated="0" c:type="const gchar*">
|
|
<type name="guint8"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="max_len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35660">max bytes to validate, or -1 to go until NUL</doc>
|
|
<type name="gssize" c:type="gssize"/>
|
|
</parameter>
|
|
<parameter name="end" direction="out" caller-allocates="0" transfer-ownership="none" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35661">return location for end of valid data</doc>
|
|
<type name="utf8" c:type="const gchar**"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="utf8_validate_len" c:identifier="g_utf8_validate_len" version="2.60">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35683">Validates UTF-8 encoded text.
|
|
|
|
As with g_utf8_validate(), but @max_len must be set, and hence this function
|
|
will always return %FALSE if any of the bytes of @str are nul.</doc>
|
|
<source-position filename="gunicode.h" line="859"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35694">%TRUE if the text was valid UTF-8</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="str" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35685">a pointer to character data</doc>
|
|
<array length="1" zero-terminated="0" c:type="const gchar*">
|
|
<type name="guint8"/>
|
|
</array>
|
|
</parameter>
|
|
<parameter name="max_len" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35686">max bytes to validate</doc>
|
|
<type name="gsize" c:type="gsize"/>
|
|
</parameter>
|
|
<parameter name="end" direction="out" caller-allocates="0" transfer-ownership="none" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35687">return location for end of valid data</doc>
|
|
<type name="utf8" c:type="const gchar**"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="uuid_string_is_valid" c:identifier="g_uuid_string_is_valid" version="2.52">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35716">Parses the string @str and verify if it is a UUID.
|
|
|
|
The function accepts the following syntax:
|
|
|
|
- simple forms (e.g. `f81d4fae-7dec-11d0-a765-00a0c91e6bf6`)
|
|
|
|
Note that hyphens are required within the UUID string itself,
|
|
as per the aforementioned RFC.</doc>
|
|
<source-position filename="guuid.h" line="35"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35729">%TRUE if @str is a valid UUID, %FALSE otherwise.</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="str" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35718">a string representing a UUID</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="uuid_string_random" c:identifier="g_uuid_string_random" version="2.52">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35734">Generates a random UUID (RFC 4122 version 4) as a string.</doc>
|
|
<source-position filename="guuid.h" line="38"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="35739">A string that should be freed with g_free().</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="variant_get_gtype" c:identifier="g_variant_get_gtype">
|
|
<source-position filename="glib-types.h" line="358"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="GType" c:type="GType"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="variant_is_object_path" c:identifier="g_variant_is_object_path" moved-to="Variant.is_object_path" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37100">Determines if a given string is a valid D-Bus object path. You
|
|
should ensure that a string is a valid D-Bus object path before
|
|
passing it to g_variant_new_object_path().
|
|
|
|
A valid object path starts with `/` followed by zero or more
|
|
sequences of characters separated by `/` characters. Each sequence
|
|
must contain only the characters `[A-Z][a-z][0-9]_`. No sequence
|
|
(including the one following the final `/` character) may be empty.</doc>
|
|
<source-position filename="gvariant.h" line="110"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37113">%TRUE if @string is a D-Bus object path</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37102">a normal C nul-terminated string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="variant_is_signature" c:identifier="g_variant_is_signature" moved-to="Variant.is_signature" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37130">Determines if a given string is a valid D-Bus type signature. You
|
|
should ensure that a string is a valid D-Bus type signature before
|
|
passing it to g_variant_new_signature().
|
|
|
|
D-Bus type signatures consist of zero or more definite #GVariantType
|
|
strings in sequence.</doc>
|
|
<source-position filename="gvariant.h" line="114"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37141">%TRUE if @string is a D-Bus type signature</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="37132">a normal C nul-terminated string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="variant_parse" c:identifier="g_variant_parse" moved-to="Variant.parse" throws="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38084">Parses a #GVariant from a text representation.
|
|
|
|
A single #GVariant is parsed from the content of @text.
|
|
|
|
The format is described [here][gvariant-text].
|
|
|
|
The memory at @limit will never be accessed and the parser behaves as
|
|
if the character at @limit is the nul terminator. This has the
|
|
effect of bounding @text.
|
|
|
|
If @endptr is non-%NULL then @text is permitted to contain data
|
|
following the value that this function parses and @endptr will be
|
|
updated to point to the first character past the end of the text
|
|
parsed by this function. If @endptr is %NULL and there is extra data
|
|
then an error is returned.
|
|
|
|
If @type is non-%NULL then the value will be parsed to have that
|
|
type. This may result in additional parse errors (in the case that
|
|
the parsed value doesn't fit the type) but may also result in fewer
|
|
errors (in the case that the type would have been ambiguous, such as
|
|
with empty arrays).
|
|
|
|
In the event that the parsing is successful, the resulting #GVariant
|
|
is returned. It is never floating, and must be freed with
|
|
g_variant_unref().
|
|
|
|
In case of any error, %NULL will be returned. If @error is non-%NULL
|
|
then it will be set to reflect the error that occurred.
|
|
|
|
Officially, the language understood by the parser is "any string
|
|
produced by g_variant_print()".</doc>
|
|
<source-position filename="gvariant.h" line="416"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38124">a non-floating reference to a #GVariant, or %NULL</doc>
|
|
<type name="Variant" c:type="GVariant*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="type" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38086">a #GVariantType, or %NULL</doc>
|
|
<type name="VariantType" c:type="const GVariantType*"/>
|
|
</parameter>
|
|
<parameter name="text" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38087">a string containing a GVariant in text form</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="limit" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38088">a pointer to the end of @text, or %NULL</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="endptr" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38089">a location to store the end pointer, or %NULL</doc>
|
|
<type name="utf8" c:type="const gchar**"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="variant_parse_error_print_context" c:identifier="g_variant_parse_error_print_context" moved-to="Variant.parse_error_print_context" version="2.40">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38128">Pretty-prints a message showing the context of a #GVariant parse
|
|
error within the string for which parsing was attempted.
|
|
|
|
The resulting string is suitable for output to the console or other
|
|
monospace media where newlines are treated in the usual way.
|
|
|
|
The message will typically look something like one of the following:
|
|
|
|
|[
|
|
unterminated string constant:
|
|
(1, 2, 3, 'abc
|
|
^^^^
|
|
]|
|
|
|
|
or
|
|
|
|
|[
|
|
unable to find a common type:
|
|
[1, 2, 3, 'str']
|
|
^ ^^^^^
|
|
]|
|
|
|
|
The format of the message may change in a future version.
|
|
|
|
@error must have come from a failed attempt to g_variant_parse() and
|
|
@source_str must be exactly the same string that caused the error.
|
|
If @source_str was not nul-terminated when you passed it to
|
|
g_variant_parse() then you must add nul termination before using this
|
|
function.</doc>
|
|
<source-position filename="gvariant.h" line="429"/>
|
|
<return-value transfer-ownership="full">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38163">the printed message</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="error" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38130">a #GError from the #GVariantParseError domain</doc>
|
|
<type name="Error" c:type="GError*"/>
|
|
</parameter>
|
|
<parameter name="source_str" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38131">the string that was given to the parser</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="variant_parse_error_quark" c:identifier="g_variant_parse_error_quark" moved-to="Variant.parse_error_quark">
|
|
<return-value transfer-ownership="none">
|
|
<type name="Quark" c:type="GQuark"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="variant_parser_get_error_quark" c:identifier="g_variant_parser_get_error_quark" moved-to="Variant.parser_get_error_quark" deprecated="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38168">Same as g_variant_error_quark().</doc>
|
|
<doc-deprecated xml:space="preserve">Use g_variant_parse_error_quark() instead.</doc-deprecated>
|
|
<return-value transfer-ownership="none">
|
|
<type name="Quark" c:type="GQuark"/>
|
|
</return-value>
|
|
</function>
|
|
<function name="variant_type_checked_" c:identifier="g_variant_type_checked_" moved-to="VariantType.checked_">
|
|
<source-position filename="gvarianttype.h" line="376"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="VariantType" c:type="const GVariantType*"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="arg0" transfer-ownership="none">
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="variant_type_string_get_depth_" c:identifier="g_variant_type_string_get_depth_" moved-to="VariantType.string_get_depth_">
|
|
<source-position filename="gvarianttype.h" line="378"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="gsize" c:type="gsize"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="type_string" transfer-ownership="none">
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="variant_type_string_is_valid" c:identifier="g_variant_type_string_is_valid" moved-to="VariantType.string_is_valid">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38762">Checks if @type_string is a valid GVariant type string. This call is
|
|
equivalent to calling g_variant_type_string_scan() and confirming
|
|
that the following character is a nul terminator.</doc>
|
|
<source-position filename="gvarianttype.h" line="296"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38770">%TRUE if @type_string is exactly one valid type string
|
|
|
|
Since 2.24</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="type_string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38764">a pointer to any string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="variant_type_string_scan" c:identifier="g_variant_type_string_scan" moved-to="VariantType.string_scan" version="2.24">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38776">Scan for a single complete and valid GVariant type string in @string.
|
|
The memory pointed to by @limit (or bytes beyond it) is never
|
|
accessed.
|
|
|
|
If a valid type string is found, @endptr is updated to point to the
|
|
first character past the end of the string that was found and %TRUE
|
|
is returned.
|
|
|
|
If there is no valid type string starting at @string, or if the type
|
|
string does not end before @limit then %FALSE is returned.
|
|
|
|
For the simple case of checking if a string is a valid type string,
|
|
see g_variant_type_string_is_valid().</doc>
|
|
<source-position filename="gvarianttype.h" line="298"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38796">%TRUE if a valid type string was found</doc>
|
|
<type name="gboolean" c:type="gboolean"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38778">a pointer to any string</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="limit" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38779">the end of @string, or %NULL</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="endptr" direction="out" caller-allocates="0" transfer-ownership="full" optional="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38780">location to store the end pointer, or %NULL</doc>
|
|
<type name="utf8" c:type="const gchar**"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="vasprintf" c:identifier="g_vasprintf" version="2.4" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38826">An implementation of the GNU vasprintf() function which supports
|
|
positional parameters, as specified in the Single Unix Specification.
|
|
This function is similar to g_vsprintf(), except that it allocates a
|
|
string to hold the output, instead of putting the output in a buffer
|
|
you allocate in advance.
|
|
|
|
`glib/gprintf.h` must be explicitly included in order to use this function.</doc>
|
|
<source-position filename="gprintf.h" line="51"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38841">the number of bytes printed.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38828">the return location for the newly-allocated string.</doc>
|
|
<type name="utf8" c:type="gchar**"/>
|
|
</parameter>
|
|
<parameter name="format" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38829">a standard printf() format string, but notice
|
|
[string precision pitfalls][string-precision]</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="args" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38831">the list of arguments to insert in the output.</doc>
|
|
<type name="va_list" c:type="va_list"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="vfprintf" c:identifier="g_vfprintf" version="2.2" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38846">An implementation of the standard fprintf() function which supports
|
|
positional parameters, as specified in the Single Unix Specification.
|
|
|
|
`glib/gprintf.h` must be explicitly included in order to use this function.</doc>
|
|
<source-position filename="gprintf.h" line="43"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38858">the number of bytes printed.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38848">the stream to write to.</doc>
|
|
<type name="gpointer" c:type="FILE*"/>
|
|
</parameter>
|
|
<parameter name="format" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38849">a standard printf() format string, but notice
|
|
[string precision pitfalls][string-precision]</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="args" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38851">the list of arguments to insert in the output.</doc>
|
|
<type name="va_list" c:type="va_list"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="vprintf" c:identifier="g_vprintf" version="2.2" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38863">An implementation of the standard vprintf() function which supports
|
|
positional parameters, as specified in the Single Unix Specification.
|
|
|
|
`glib/gprintf.h` must be explicitly included in order to use this function.</doc>
|
|
<source-position filename="gprintf.h" line="40"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38874">the number of bytes printed.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="format" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38865">a standard printf() format string, but notice
|
|
[string precision pitfalls][string-precision]</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="args" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38867">the list of arguments to insert in the output.</doc>
|
|
<type name="va_list" c:type="va_list"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="vsnprintf" c:identifier="g_vsnprintf" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38879">A safer form of the standard vsprintf() function. The output is guaranteed
|
|
to not exceed @n characters (including the terminating nul character), so
|
|
it is easy to ensure that a buffer overflow cannot occur.
|
|
|
|
See also g_strdup_vprintf().
|
|
|
|
In versions of GLib prior to 1.2.3, this function may return -1 if the
|
|
output was truncated, and the truncated string may not be nul-terminated.
|
|
In versions prior to 1.3.12, this function returns the length of the output
|
|
string.
|
|
|
|
The return value of g_vsnprintf() conforms to the vsnprintf() function
|
|
as standardized in ISO C99. Note that this is different from traditional
|
|
vsnprintf(), which returns the length of the output string.
|
|
|
|
The format string may contain positional parameters, as specified in
|
|
the Single Unix Specification.</doc>
|
|
<source-position filename="gutils.h" line="171"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38906">the number of bytes which would be produced if the buffer
|
|
was large enough.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38881">the buffer to hold the output.</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</parameter>
|
|
<parameter name="n" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38882">the maximum number of bytes to produce (including the
|
|
terminating nul character).</doc>
|
|
<type name="gulong" c:type="gulong"/>
|
|
</parameter>
|
|
<parameter name="format" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38884">a standard printf() format string, but notice
|
|
string precision pitfalls][string-precision]</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="args" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38886">the list of arguments to insert in the output.</doc>
|
|
<type name="va_list" c:type="va_list"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function name="vsprintf" c:identifier="g_vsprintf" version="2.2" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38911">An implementation of the standard vsprintf() function which supports
|
|
positional parameters, as specified in the Single Unix Specification.
|
|
|
|
`glib/gprintf.h` must be explicitly included in order to use this function.</doc>
|
|
<source-position filename="gprintf.h" line="47"/>
|
|
<return-value transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38923">the number of bytes printed.</doc>
|
|
<type name="gint" c:type="gint"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="string" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38913">the buffer to hold the output.</doc>
|
|
<type name="utf8" c:type="gchar*"/>
|
|
</parameter>
|
|
<parameter name="format" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38914">a standard printf() format string, but notice
|
|
[string precision pitfalls][string-precision]</doc>
|
|
<type name="utf8" c:type="const gchar*"/>
|
|
</parameter>
|
|
<parameter name="args" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38916">the list of arguments to insert in the output.</doc>
|
|
<type name="va_list" c:type="va_list"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
<function-macro name="warn_if_fail" c:identifier="g_warn_if_fail" version="2.16" introspectable="0">
|
|
<doc xml:space="preserve" filename="gmessages.h" line="487">Logs a warning if the expression is not true.</doc>
|
|
<source-position filename="gmessages.h" line="495"/>
|
|
<parameters>
|
|
<parameter name="expr">
|
|
<doc xml:space="preserve" filename="gmessages.h" line="489">the expression to check</doc>
|
|
</parameter>
|
|
</parameters>
|
|
</function-macro>
|
|
<function name="warn_message" c:identifier="g_warn_message" introspectable="0">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38997">Internal function used to print messages from the public g_warn_if_reached()
|
|
and g_warn_if_fail() macros.</doc>
|
|
<source-position filename="gmessages.h" line="273"/>
|
|
<return-value transfer-ownership="none">
|
|
<type name="none" c:type="void"/>
|
|
</return-value>
|
|
<parameters>
|
|
<parameter name="domain" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="38999">log domain</doc>
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
<parameter name="file" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="39000">file containing the warning</doc>
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
<parameter name="line" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="39001">line number of the warning</doc>
|
|
<type name="gint" c:type="int"/>
|
|
</parameter>
|
|
<parameter name="func" transfer-ownership="none">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="39002">function containing the warning</doc>
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
<parameter name="warnexpr" transfer-ownership="none" nullable="1" allow-none="1">
|
|
<doc xml:space="preserve" filename="glib-2.0.c" line="39003">expression which failed</doc>
|
|
<type name="utf8" c:type="const char*"/>
|
|
</parameter>
|
|
</parameters>
|
|
</function>
|
|
</namespace>
|
|
</repository>
|