glib2 2.2.4-x64-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/README +40 -0
- data/Rakefile +157 -0
- data/ext/glib2/depend +18 -0
- data/ext/glib2/extconf.rb +80 -0
- data/ext/glib2/glib2.def +147 -0
- data/ext/glib2/rbgcompat.h +29 -0
- data/ext/glib2/rbglib.c +1158 -0
- data/ext/glib2/rbglib.h +202 -0
- data/ext/glib2/rbglib2conversions.h +57 -0
- data/ext/glib2/rbglib_bookmarkfile.c +546 -0
- data/ext/glib2/rbglib_convert.c +197 -0
- data/ext/glib2/rbglib_error.c +164 -0
- data/ext/glib2/rbglib_fileutils.c +119 -0
- data/ext/glib2/rbglib_gettext.c +48 -0
- data/ext/glib2/rbglib_i18n.c +40 -0
- data/ext/glib2/rbglib_int64.c +165 -0
- data/ext/glib2/rbglib_io_constants.c +30 -0
- data/ext/glib2/rbglib_iochannel.c +824 -0
- data/ext/glib2/rbglib_iochannel_win32_socket.c +56 -0
- data/ext/glib2/rbglib_iochannelerror.c +49 -0
- data/ext/glib2/rbglib_keyfile.c +755 -0
- data/ext/glib2/rbglib_maincontext.c +565 -0
- data/ext/glib2/rbglib_mainloop.c +121 -0
- data/ext/glib2/rbglib_messages.c +148 -0
- data/ext/glib2/rbglib_pollfd.c +112 -0
- data/ext/glib2/rbglib_shell.c +64 -0
- data/ext/glib2/rbglib_shellerror.c +34 -0
- data/ext/glib2/rbglib_source.c +242 -0
- data/ext/glib2/rbglib_spawn.c +245 -0
- data/ext/glib2/rbglib_spawnerror.c +53 -0
- data/ext/glib2/rbglib_threads.c +61 -0
- data/ext/glib2/rbglib_timer.c +127 -0
- data/ext/glib2/rbglib_ucs4.c +79 -0
- data/ext/glib2/rbglib_unichar.c +201 -0
- data/ext/glib2/rbglib_unicode.c +90 -0
- data/ext/glib2/rbglib_utf16.c +78 -0
- data/ext/glib2/rbglib_utf8.c +257 -0
- data/ext/glib2/rbglib_utils.c +339 -0
- data/ext/glib2/rbglib_win32.c +112 -0
- data/ext/glib2/rbglibdeprecated.c +56 -0
- data/ext/glib2/rbglibdeprecated.h +34 -0
- data/ext/glib2/rbgobj_boxed.c +295 -0
- data/ext/glib2/rbgobj_closure.c +345 -0
- data/ext/glib2/rbgobj_convert.c +195 -0
- data/ext/glib2/rbgobj_enumflags.c +109 -0
- data/ext/glib2/rbgobj_enums.c +401 -0
- data/ext/glib2/rbgobj_flags.c +522 -0
- data/ext/glib2/rbgobj_object.c +885 -0
- data/ext/glib2/rbgobj_param.c +378 -0
- data/ext/glib2/rbgobj_paramspecs.c +311 -0
- data/ext/glib2/rbgobj_signal.c +978 -0
- data/ext/glib2/rbgobj_strv.c +44 -0
- data/ext/glib2/rbgobj_type.c +846 -0
- data/ext/glib2/rbgobj_typeinstance.c +128 -0
- data/ext/glib2/rbgobj_typeinterface.c +149 -0
- data/ext/glib2/rbgobj_typemodule.c +72 -0
- data/ext/glib2/rbgobj_typeplugin.c +57 -0
- data/ext/glib2/rbgobj_value.c +395 -0
- data/ext/glib2/rbgobj_valuearray.c +100 -0
- data/ext/glib2/rbgobj_valuetypes.c +243 -0
- data/ext/glib2/rbgobject.c +387 -0
- data/ext/glib2/rbgobject.h +301 -0
- data/ext/glib2/rbgprivate.h +178 -0
- data/ext/glib2/rbgutil.c +183 -0
- data/ext/glib2/rbgutil.h +119 -0
- data/ext/glib2/rbgutil_callback.c +272 -0
- data/ext/glib2/rbgutil_list.c +173 -0
- data/ext/glib2/rbgutil_list.h +85 -0
- data/ext/glib2/rbgutildeprecated.c +252 -0
- data/ext/glib2/rbgutildeprecated.h +63 -0
- data/extconf.rb +49 -0
- data/lib/2.0/glib2.so +0 -0
- data/lib/2.1/glib2.so +0 -0
- data/lib/2.2/glib2.so +0 -0
- data/lib/glib-mkenums.rb +214 -0
- data/lib/glib2.rb +231 -0
- data/lib/glib2/deprecatable.rb +153 -0
- data/lib/gnome2-raketask.rb +8 -0
- data/lib/gnome2/rake/external-package.rb +227 -0
- data/lib/gnome2/rake/native-binary-build-task.rb +129 -0
- data/lib/gnome2/rake/package-task.rb +273 -0
- data/lib/gnome2/rake/package.rb +152 -0
- data/lib/gnome2/rake/source-download-task.rb +82 -0
- data/lib/gnome2/rake/windows-binary-build-task.rb +303 -0
- data/lib/gnome2/rake/windows-binary-download-task.rb +181 -0
- data/lib/mkmf-gnome2.rb +637 -0
- data/sample/bookmarkfile.rb +66 -0
- data/sample/idle.rb +41 -0
- data/sample/iochannel.rb +44 -0
- data/sample/keyfile.rb +62 -0
- data/sample/shell.rb +36 -0
- data/sample/spawn.rb +25 -0
- data/sample/timeout.rb +28 -0
- data/sample/timeout2.rb +35 -0
- data/sample/timer.rb +40 -0
- data/sample/type-register.rb +103 -0
- data/sample/type-register2.rb +104 -0
- data/sample/utils.rb +54 -0
- data/test/glib-test-init.rb +5 -0
- data/test/glib-test-utils.rb +12 -0
- data/test/run-test.rb +21 -0
- data/test/test_enum.rb +99 -0
- data/test/test_file_utils.rb +53 -0
- data/test/test_flags.rb +129 -0
- data/test/test_glib2.rb +122 -0
- data/test/test_iochannel.rb +275 -0
- data/test/test_key_file.rb +42 -0
- data/test/test_mkenums.rb +25 -0
- data/test/test_poll_fd.rb +26 -0
- data/test/test_signal.rb +20 -0
- data/test/test_source.rb +63 -0
- data/test/test_spawn.rb +33 -0
- data/test/test_timeout.rb +28 -0
- data/test/test_unicode.rb +394 -0
- data/test/test_utils.rb +37 -0
- data/test/test_value.rb +31 -0
- data/test/test_win32.rb +13 -0
- data/vendor/local/bin/certtool.exe +0 -0
- data/vendor/local/bin/danetool.exe +0 -0
- data/vendor/local/bin/envsubst.exe +0 -0
- data/vendor/local/bin/gdbus-codegen +39 -0
- data/vendor/local/bin/gdbus.exe +0 -0
- data/vendor/local/bin/gettext.exe +0 -0
- data/vendor/local/bin/gettext.sh +121 -0
- data/vendor/local/bin/gio-querymodules.exe +0 -0
- data/vendor/local/bin/glib-compile-resources.exe +0 -0
- data/vendor/local/bin/glib-compile-schemas.exe +0 -0
- data/vendor/local/bin/glib-genmarshal.exe +0 -0
- data/vendor/local/bin/glib-gettextize +187 -0
- data/vendor/local/bin/glib-mkenums +565 -0
- data/vendor/local/bin/gnutls-cli-debug.exe +0 -0
- data/vendor/local/bin/gnutls-cli.exe +0 -0
- data/vendor/local/bin/gnutls-serv.exe +0 -0
- data/vendor/local/bin/gobject-query.exe +0 -0
- data/vendor/local/bin/gresource.exe +0 -0
- data/vendor/local/bin/gsettings.exe +0 -0
- data/vendor/local/bin/gspawn-win64-helper-console.exe +0 -0
- data/vendor/local/bin/gspawn-win64-helper.exe +0 -0
- data/vendor/local/bin/iconv.exe +0 -0
- data/vendor/local/bin/libasprintf-0.dll +0 -0
- data/vendor/local/bin/libcharset-1.dll +0 -0
- data/vendor/local/bin/libffi-6.dll +0 -0
- data/vendor/local/bin/libgio-2.0-0.dll +0 -0
- data/vendor/local/bin/libglib-2.0-0.dll +0 -0
- data/vendor/local/bin/libgmodule-2.0-0.dll +0 -0
- data/vendor/local/bin/libgmp-10.dll +0 -0
- data/vendor/local/bin/libgnutls-28.def +861 -0
- data/vendor/local/bin/libgnutls-28.dll +0 -0
- data/vendor/local/bin/libgnutls-openssl-27.dll +0 -0
- data/vendor/local/bin/libgnutls-openssl-28.def +228 -0
- data/vendor/local/bin/libgnutls-xssl-0.dll +0 -0
- data/vendor/local/bin/libgnutls-xssl-28.def +13 -0
- data/vendor/local/bin/libgobject-2.0-0.dll +0 -0
- data/vendor/local/bin/libgthread-2.0-0.dll +0 -0
- data/vendor/local/bin/libhogweed-2-5.dll +0 -0
- data/vendor/local/bin/libiconv-2.dll +0 -0
- data/vendor/local/bin/libintl-8.dll +0 -0
- data/vendor/local/bin/libnettle-4-7.dll +0 -0
- data/vendor/local/bin/nettle-hash.exe +0 -0
- data/vendor/local/bin/nettle-lfib-stream.exe +0 -0
- data/vendor/local/bin/ngettext.exe +0 -0
- data/vendor/local/bin/ocsptool.exe +0 -0
- data/vendor/local/bin/pkcs1-conv.exe +0 -0
- data/vendor/local/bin/psktool.exe +0 -0
- data/vendor/local/bin/sexp-conv.exe +0 -0
- data/vendor/local/bin/srptool.exe +0 -0
- data/vendor/local/include/autosprintf.h +67 -0
- data/vendor/local/include/gio-win32-2.0/gio/gwin32inputstream.h +82 -0
- data/vendor/local/include/gio-win32-2.0/gio/gwin32outputstream.h +81 -0
- data/vendor/local/include/glib-2.0/gio/gaction.h +98 -0
- data/vendor/local/include/glib-2.0/gio/gactiongroup.h +161 -0
- data/vendor/local/include/glib-2.0/gio/gactiongroupexporter.h +45 -0
- data/vendor/local/include/glib-2.0/gio/gactionmap.h +95 -0
- data/vendor/local/include/glib-2.0/gio/gappinfo.h +313 -0
- data/vendor/local/include/glib-2.0/gio/gapplication.h +236 -0
- data/vendor/local/include/glib-2.0/gio/gapplicationcommandline.h +122 -0
- data/vendor/local/include/glib-2.0/gio/gasyncinitable.h +124 -0
- data/vendor/local/include/glib-2.0/gio/gasyncresult.h +85 -0
- data/vendor/local/include/glib-2.0/gio/gbufferedinputstream.h +133 -0
- data/vendor/local/include/glib-2.0/gio/gbufferedoutputstream.h +86 -0
- data/vendor/local/include/glib-2.0/gio/gbytesicon.h +52 -0
- data/vendor/local/include/glib-2.0/gio/gcancellable.h +118 -0
- data/vendor/local/include/glib-2.0/gio/gcharsetconverter.h +63 -0
- data/vendor/local/include/glib-2.0/gio/gcontenttype.h +71 -0
- data/vendor/local/include/glib-2.0/gio/gconverter.h +96 -0
- data/vendor/local/include/glib-2.0/gio/gconverterinputstream.h +80 -0
- data/vendor/local/include/glib-2.0/gio/gconverteroutputstream.h +80 -0
- data/vendor/local/include/glib-2.0/gio/gcredentials.h +85 -0
- data/vendor/local/include/glib-2.0/gio/gdatainputstream.h +180 -0
- data/vendor/local/include/glib-2.0/gio/gdataoutputstream.h +125 -0
- data/vendor/local/include/glib-2.0/gio/gdbusactiongroup.h +54 -0
- data/vendor/local/include/glib-2.0/gio/gdbusaddress.h +65 -0
- data/vendor/local/include/glib-2.0/gio/gdbusauthobserver.h +51 -0
- data/vendor/local/include/glib-2.0/gio/gdbusconnection.h +663 -0
- data/vendor/local/include/glib-2.0/gio/gdbuserror.h +109 -0
- data/vendor/local/include/glib-2.0/gio/gdbusinterface.h +81 -0
- data/vendor/local/include/glib-2.0/gio/gdbusinterfaceskeleton.h +127 -0
- data/vendor/local/include/glib-2.0/gio/gdbusintrospection.h +325 -0
- data/vendor/local/include/glib-2.0/gio/gdbusmenumodel.h +45 -0
- data/vendor/local/include/glib-2.0/gio/gdbusmessage.h +197 -0
- data/vendor/local/include/glib-2.0/gio/gdbusmethodinvocation.h +97 -0
- data/vendor/local/include/glib-2.0/gio/gdbusnameowning.h +115 -0
- data/vendor/local/include/glib-2.0/gio/gdbusnamewatching.h +102 -0
- data/vendor/local/include/glib-2.0/gio/gdbusobject.h +78 -0
- data/vendor/local/include/glib-2.0/gio/gdbusobjectmanager.h +94 -0
- data/vendor/local/include/glib-2.0/gio/gdbusobjectmanagerclient.h +146 -0
- data/vendor/local/include/glib-2.0/gio/gdbusobjectmanagerserver.h +93 -0
- data/vendor/local/include/glib-2.0/gio/gdbusobjectproxy.h +79 -0
- data/vendor/local/include/glib-2.0/gio/gdbusobjectskeleton.h +96 -0
- data/vendor/local/include/glib-2.0/gio/gdbusproxy.h +214 -0
- data/vendor/local/include/glib-2.0/gio/gdbusserver.h +60 -0
- data/vendor/local/include/glib-2.0/gio/gdbusutils.h +55 -0
- data/vendor/local/include/glib-2.0/gio/gdrive.h +259 -0
- data/vendor/local/include/glib-2.0/gio/gemblem.h +61 -0
- data/vendor/local/include/glib-2.0/gio/gemblemedicon.h +81 -0
- data/vendor/local/include/glib-2.0/gio/gfile.h +1250 -0
- data/vendor/local/include/glib-2.0/gio/gfileattribute.h +84 -0
- data/vendor/local/include/glib-2.0/gio/gfileenumerator.h +144 -0
- data/vendor/local/include/glib-2.0/gio/gfileicon.h +57 -0
- data/vendor/local/include/glib-2.0/gio/gfileinfo.h +1070 -0
- data/vendor/local/include/glib-2.0/gio/gfileinputstream.h +114 -0
- data/vendor/local/include/glib-2.0/gio/gfileiostream.h +121 -0
- data/vendor/local/include/glib-2.0/gio/gfilemonitor.h +98 -0
- data/vendor/local/include/glib-2.0/gio/gfilenamecompleter.h +79 -0
- data/vendor/local/include/glib-2.0/gio/gfileoutputstream.h +122 -0
- data/vendor/local/include/glib-2.0/gio/gfilterinputstream.h +78 -0
- data/vendor/local/include/glib-2.0/gio/gfilteroutputstream.h +78 -0
- data/vendor/local/include/glib-2.0/gio/gicon.h +101 -0
- data/vendor/local/include/glib-2.0/gio/ginetaddress.h +124 -0
- data/vendor/local/include/glib-2.0/gio/ginetaddressmask.h +85 -0
- data/vendor/local/include/glib-2.0/gio/ginetsocketaddress.h +78 -0
- data/vendor/local/include/glib-2.0/gio/ginitable.h +99 -0
- data/vendor/local/include/glib-2.0/gio/ginputstream.h +201 -0
- data/vendor/local/include/glib-2.0/gio/gio.h +167 -0
- data/vendor/local/include/glib-2.0/gio/gioenums.h +1816 -0
- data/vendor/local/include/glib-2.0/gio/gioenumtypes.h +167 -0
- data/vendor/local/include/glib-2.0/gio/gioerror.h +53 -0
- data/vendor/local/include/glib-2.0/gio/giomodule.h +169 -0
- data/vendor/local/include/glib-2.0/gio/gioscheduler.h +54 -0
- data/vendor/local/include/glib-2.0/gio/giostream.h +135 -0
- data/vendor/local/include/glib-2.0/gio/giotypes.h +535 -0
- data/vendor/local/include/glib-2.0/gio/gloadableicon.h +99 -0
- data/vendor/local/include/glib-2.0/gio/gmemoryinputstream.h +90 -0
- data/vendor/local/include/glib-2.0/gio/gmemoryoutputstream.h +107 -0
- data/vendor/local/include/glib-2.0/gio/gmenu.h +182 -0
- data/vendor/local/include/glib-2.0/gio/gmenuexporter.h +40 -0
- data/vendor/local/include/glib-2.0/gio/gmenumodel.h +305 -0
- data/vendor/local/include/glib-2.0/gio/gmount.h +276 -0
- data/vendor/local/include/glib-2.0/gio/gmountoperation.h +140 -0
- data/vendor/local/include/glib-2.0/gio/gnativevolumemonitor.h +61 -0
- data/vendor/local/include/glib-2.0/gio/gnetworkaddress.h +78 -0
- data/vendor/local/include/glib-2.0/gio/gnetworking.h +82 -0
- data/vendor/local/include/glib-2.0/gio/gnetworkmonitor.h +93 -0
- data/vendor/local/include/glib-2.0/gio/gnetworkservice.h +76 -0
- data/vendor/local/include/glib-2.0/gio/gnotification.h +97 -0
- data/vendor/local/include/glib-2.0/gio/goutputstream.h +254 -0
- data/vendor/local/include/glib-2.0/gio/gpermission.h +127 -0
- data/vendor/local/include/glib-2.0/gio/gpollableinputstream.h +105 -0
- data/vendor/local/include/glib-2.0/gio/gpollableoutputstream.h +105 -0
- data/vendor/local/include/glib-2.0/gio/gpollableutils.h +64 -0
- data/vendor/local/include/glib-2.0/gio/gpropertyaction.h +47 -0
- data/vendor/local/include/glib-2.0/gio/gproxy.h +128 -0
- data/vendor/local/include/glib-2.0/gio/gproxyaddress.h +86 -0
- data/vendor/local/include/glib-2.0/gio/gproxyaddressenumerator.h +74 -0
- data/vendor/local/include/glib-2.0/gio/gproxyresolver.h +95 -0
- data/vendor/local/include/glib-2.0/gio/gremoteactiongroup.h +75 -0
- data/vendor/local/include/glib-2.0/gio/gresolver.h +212 -0
- data/vendor/local/include/glib-2.0/gio/gresource.h +129 -0
- data/vendor/local/include/glib-2.0/gio/gseekable.h +103 -0
- data/vendor/local/include/glib-2.0/gio/gsettings.h +331 -0
- data/vendor/local/include/glib-2.0/gio/gsettingsbackend.h +158 -0
- data/vendor/local/include/glib-2.0/gio/gsettingsschema.h +104 -0
- data/vendor/local/include/glib-2.0/gio/gsimpleaction.h +59 -0
- data/vendor/local/include/glib-2.0/gio/gsimpleactiongroup.h +97 -0
- data/vendor/local/include/glib-2.0/gio/gsimpleasyncresult.h +162 -0
- data/vendor/local/include/glib-2.0/gio/gsimplepermission.h +45 -0
- data/vendor/local/include/glib-2.0/gio/gsimpleproxyresolver.h +89 -0
- data/vendor/local/include/glib-2.0/gio/gsocket.h +289 -0
- data/vendor/local/include/glib-2.0/gio/gsocketaddress.h +82 -0
- data/vendor/local/include/glib-2.0/gio/gsocketaddressenumerator.h +91 -0
- data/vendor/local/include/glib-2.0/gio/gsocketclient.h +197 -0
- data/vendor/local/include/glib-2.0/gio/gsocketconnectable.h +75 -0
- data/vendor/local/include/glib-2.0/gio/gsocketconnection.h +115 -0
- data/vendor/local/include/glib-2.0/gio/gsocketcontrolmessage.h +109 -0
- data/vendor/local/include/glib-2.0/gio/gsocketlistener.h +150 -0
- data/vendor/local/include/glib-2.0/gio/gsocketservice.h +91 -0
- data/vendor/local/include/glib-2.0/gio/gsrvtarget.h +59 -0
- data/vendor/local/include/glib-2.0/gio/gsubprocess.h +167 -0
- data/vendor/local/include/glib-2.0/gio/gsubprocesslauncher.h +116 -0
- data/vendor/local/include/glib-2.0/gio/gtask.h +158 -0
- data/vendor/local/include/glib-2.0/gio/gtcpconnection.h +69 -0
- data/vendor/local/include/glib-2.0/gio/gtcpwrapperconnection.h +69 -0
- data/vendor/local/include/glib-2.0/gio/gtestdbus.h +72 -0
- data/vendor/local/include/glib-2.0/gio/gthemedicon.h +68 -0
- data/vendor/local/include/glib-2.0/gio/gthreadedsocketservice.h +81 -0
- data/vendor/local/include/glib-2.0/gio/gtlsbackend.h +96 -0
- data/vendor/local/include/glib-2.0/gio/gtlscertificate.h +92 -0
- data/vendor/local/include/glib-2.0/gio/gtlsclientconnection.h +71 -0
- data/vendor/local/include/glib-2.0/gio/gtlsconnection.h +154 -0
- data/vendor/local/include/glib-2.0/gio/gtlsdatabase.h +247 -0
- data/vendor/local/include/glib-2.0/gio/gtlsfiledatabase.h +58 -0
- data/vendor/local/include/glib-2.0/gio/gtlsinteraction.h +148 -0
- data/vendor/local/include/glib-2.0/gio/gtlspassword.h +110 -0
- data/vendor/local/include/glib-2.0/gio/gtlsserverconnection.h +61 -0
- data/vendor/local/include/glib-2.0/gio/gvfs.h +132 -0
- data/vendor/local/include/glib-2.0/gio/gvolume.h +251 -0
- data/vendor/local/include/glib-2.0/gio/gvolumemonitor.h +154 -0
- data/vendor/local/include/glib-2.0/gio/gzlibcompressor.h +62 -0
- data/vendor/local/include/glib-2.0/gio/gzlibdecompressor.h +58 -0
- data/vendor/local/include/glib-2.0/glib-object.h +40 -0
- data/vendor/local/include/glib-2.0/glib-unix.h +119 -0
- data/vendor/local/include/glib-2.0/glib.h +112 -0
- data/vendor/local/include/glib-2.0/glib/deprecated/gallocator.h +88 -0
- data/vendor/local/include/glib-2.0/glib/deprecated/gcache.h +75 -0
- data/vendor/local/include/glib-2.0/glib/deprecated/gcompletion.h +83 -0
- data/vendor/local/include/glib-2.0/glib/deprecated/gmain.h +139 -0
- data/vendor/local/include/glib-2.0/glib/deprecated/grel.h +105 -0
- data/vendor/local/include/glib-2.0/glib/deprecated/gthread.h +293 -0
- data/vendor/local/include/glib-2.0/glib/galloca.h +103 -0
- data/vendor/local/include/glib-2.0/glib/garray.h +238 -0
- data/vendor/local/include/glib-2.0/glib/gasyncqueue.h +109 -0
- data/vendor/local/include/glib-2.0/glib/gatomic.h +281 -0
- data/vendor/local/include/glib-2.0/glib/gbacktrace.h +64 -0
- data/vendor/local/include/glib-2.0/glib/gbase64.h +61 -0
- data/vendor/local/include/glib-2.0/glib/gbitlock.h +76 -0
- data/vendor/local/include/glib-2.0/glib/gbookmarkfile.h +255 -0
- data/vendor/local/include/glib-2.0/glib/gbytes.h +90 -0
- data/vendor/local/include/glib-2.0/glib/gcharset.h +43 -0
- data/vendor/local/include/glib-2.0/glib/gchecksum.h +101 -0
- data/vendor/local/include/glib-2.0/glib/gconvert.h +199 -0
- data/vendor/local/include/glib-2.0/glib/gdataset.h +150 -0
- data/vendor/local/include/glib-2.0/glib/gdate.h +309 -0
- data/vendor/local/include/glib-2.0/glib/gdatetime.h +264 -0
- data/vendor/local/include/glib-2.0/glib/gdir.h +64 -0
- data/vendor/local/include/glib-2.0/glib/genviron.h +78 -0
- data/vendor/local/include/glib-2.0/glib/gerror.h +118 -0
- data/vendor/local/include/glib-2.0/glib/gfileutils.h +207 -0
- data/vendor/local/include/glib-2.0/glib/ggettext.h +63 -0
- data/vendor/local/include/glib-2.0/glib/ghash.h +185 -0
- data/vendor/local/include/glib-2.0/glib/ghmac.h +78 -0
- data/vendor/local/include/glib-2.0/glib/ghook.h +202 -0
- data/vendor/local/include/glib-2.0/glib/ghostutils.h +43 -0
- data/vendor/local/include/glib-2.0/glib/gi18n-lib.h +36 -0
- data/vendor/local/include/glib-2.0/glib/gi18n.h +32 -0
- data/vendor/local/include/glib-2.0/glib/giochannel.h +413 -0
- data/vendor/local/include/glib-2.0/glib/gkeyfile.h +320 -0
- data/vendor/local/include/glib-2.0/glib/glist.h +152 -0
- data/vendor/local/include/glib-2.0/glib/gmacros.h +366 -0
- data/vendor/local/include/glib-2.0/glib/gmain.h +614 -0
- data/vendor/local/include/glib-2.0/glib/gmappedfile.h +58 -0
- data/vendor/local/include/glib-2.0/glib/gmarkup.h +262 -0
- data/vendor/local/include/glib-2.0/glib/gmem.h +298 -0
- data/vendor/local/include/glib-2.0/glib/gmessages.h +407 -0
- data/vendor/local/include/glib-2.0/glib/gnode.h +322 -0
- data/vendor/local/include/glib-2.0/glib/goption.h +377 -0
- data/vendor/local/include/glib-2.0/glib/gpattern.h +53 -0
- data/vendor/local/include/glib-2.0/glib/gpoll.h +127 -0
- data/vendor/local/include/glib-2.0/glib/gprimes.h +50 -0
- data/vendor/local/include/glib-2.0/glib/gprintf.h +57 -0
- data/vendor/local/include/glib-2.0/glib/gqsort.h +45 -0
- data/vendor/local/include/glib-2.0/glib/gquark.h +68 -0
- data/vendor/local/include/glib-2.0/glib/gqueue.h +190 -0
- data/vendor/local/include/glib-2.0/glib/grand.h +99 -0
- data/vendor/local/include/glib-2.0/glib/gregex.h +610 -0
- data/vendor/local/include/glib-2.0/glib/gscanner.h +303 -0
- data/vendor/local/include/glib-2.0/glib/gsequence.h +171 -0
- data/vendor/local/include/glib-2.0/glib/gshell.h +59 -0
- data/vendor/local/include/glib-2.0/glib/gslice.h +98 -0
- data/vendor/local/include/glib-2.0/glib/gslist.h +143 -0
- data/vendor/local/include/glib-2.0/glib/gspawn.h +307 -0
- data/vendor/local/include/glib-2.0/glib/gstdio.h +171 -0
- data/vendor/local/include/glib-2.0/glib/gstrfuncs.h +306 -0
- data/vendor/local/include/glib-2.0/glib/gstring.h +189 -0
- data/vendor/local/include/glib-2.0/glib/gstringchunk.h +57 -0
- data/vendor/local/include/glib-2.0/glib/gtestutils.h +421 -0
- data/vendor/local/include/glib-2.0/glib/gthread.h +271 -0
- data/vendor/local/include/glib-2.0/glib/gthreadpool.h +92 -0
- data/vendor/local/include/glib-2.0/glib/gtimer.h +74 -0
- data/vendor/local/include/glib-2.0/glib/gtimezone.h +89 -0
- data/vendor/local/include/glib-2.0/glib/gtrashstack.h +101 -0
- data/vendor/local/include/glib-2.0/glib/gtree.h +104 -0
- data/vendor/local/include/glib-2.0/glib/gtypes.h +482 -0
- data/vendor/local/include/glib-2.0/glib/gunicode.h +860 -0
- data/vendor/local/include/glib-2.0/glib/gurifuncs.h +83 -0
- data/vendor/local/include/glib-2.0/glib/gutils.h +374 -0
- data/vendor/local/include/glib-2.0/glib/gvariant.h +452 -0
- data/vendor/local/include/glib-2.0/glib/gvarianttype.h +380 -0
- data/vendor/local/include/glib-2.0/glib/gversion.h +55 -0
- data/vendor/local/include/glib-2.0/glib/gversionmacros.h +345 -0
- data/vendor/local/include/glib-2.0/glib/gwin32.h +134 -0
- data/vendor/local/include/glib-2.0/gmodule.h +115 -0
- data/vendor/local/include/glib-2.0/gobject/gbinding.h +149 -0
- data/vendor/local/include/glib-2.0/gobject/gboxed.h +122 -0
- data/vendor/local/include/glib-2.0/gobject/gclosure.h +297 -0
- data/vendor/local/include/glib-2.0/gobject/genums.h +273 -0
- data/vendor/local/include/glib-2.0/gobject/glib-types.h +358 -0
- data/vendor/local/include/glib-2.0/gobject/gmarshal.h +385 -0
- data/vendor/local/include/glib-2.0/gobject/gobject.h +672 -0
- data/vendor/local/include/glib-2.0/gobject/gobjectnotifyqueue.c +197 -0
- data/vendor/local/include/glib-2.0/gobject/gparam.h +447 -0
- data/vendor/local/include/glib-2.0/gobject/gparamspecs.h +1164 -0
- data/vendor/local/include/glib-2.0/gobject/gsignal.h +604 -0
- data/vendor/local/include/glib-2.0/gobject/gsourceclosure.h +38 -0
- data/vendor/local/include/glib-2.0/gobject/gtype.h +1990 -0
- data/vendor/local/include/glib-2.0/gobject/gtypemodule.h +278 -0
- data/vendor/local/include/glib-2.0/gobject/gtypeplugin.h +134 -0
- data/vendor/local/include/glib-2.0/gobject/gvalue.h +194 -0
- data/vendor/local/include/glib-2.0/gobject/gvaluearray.h +104 -0
- data/vendor/local/include/glib-2.0/gobject/gvaluecollector.h +254 -0
- data/vendor/local/include/glib-2.0/gobject/gvaluetypes.h +300 -0
- data/vendor/local/include/gmp.h +2301 -0
- data/vendor/local/include/gnutls/abstract.h +454 -0
- data/vendor/local/include/gnutls/compat.h +401 -0
- data/vendor/local/include/gnutls/crypto.h +117 -0
- data/vendor/local/include/gnutls/dtls.h +92 -0
- data/vendor/local/include/gnutls/gnutls.h +2299 -0
- data/vendor/local/include/gnutls/ocsp.h +257 -0
- data/vendor/local/include/gnutls/openpgp.h +366 -0
- data/vendor/local/include/gnutls/openssl.h +329 -0
- data/vendor/local/include/gnutls/pkcs11.h +356 -0
- data/vendor/local/include/gnutls/pkcs12.h +135 -0
- data/vendor/local/include/gnutls/tpm.h +79 -0
- data/vendor/local/include/gnutls/x509.h +1192 -0
- data/vendor/local/include/gnutls/xssl.h +125 -0
- data/vendor/local/include/iconv.h +242 -0
- data/vendor/local/include/libcharset.h +46 -0
- data/vendor/local/include/libintl.h +464 -0
- data/vendor/local/include/localcharset.h +42 -0
- data/vendor/local/include/nettle/aes.h +85 -0
- data/vendor/local/include/nettle/arcfour.h +66 -0
- data/vendor/local/include/nettle/arctwo.h +82 -0
- data/vendor/local/include/nettle/asn1.h +144 -0
- data/vendor/local/include/nettle/base16.h +106 -0
- data/vendor/local/include/nettle/base64.h +153 -0
- data/vendor/local/include/nettle/bignum.h +121 -0
- data/vendor/local/include/nettle/blowfish.h +76 -0
- data/vendor/local/include/nettle/buffer.h +98 -0
- data/vendor/local/include/nettle/camellia.h +82 -0
- data/vendor/local/include/nettle/cast128.h +77 -0
- data/vendor/local/include/nettle/cbc.h +76 -0
- data/vendor/local/include/nettle/ctr.h +62 -0
- data/vendor/local/include/nettle/des-compat.h +154 -0
- data/vendor/local/include/nettle/des.h +111 -0
- data/vendor/local/include/nettle/dsa.h +293 -0
- data/vendor/local/include/nettle/ecc-curve.h +45 -0
- data/vendor/local/include/nettle/ecc.h +261 -0
- data/vendor/local/include/nettle/ecdsa.h +94 -0
- data/vendor/local/include/nettle/gcm.h +186 -0
- data/vendor/local/include/nettle/gosthash94.h +88 -0
- data/vendor/local/include/nettle/hmac.h +202 -0
- data/vendor/local/include/nettle/knuth-lfib.h +75 -0
- data/vendor/local/include/nettle/macros.h +238 -0
- data/vendor/local/include/nettle/md2.h +69 -0
- data/vendor/local/include/nettle/md4.h +73 -0
- data/vendor/local/include/nettle/md5-compat.h +50 -0
- data/vendor/local/include/nettle/md5.h +76 -0
- data/vendor/local/include/nettle/memxor.h +22 -0
- data/vendor/local/include/nettle/nettle-meta.h +232 -0
- data/vendor/local/include/nettle/nettle-stdint.h +286 -0
- data/vendor/local/include/nettle/nettle-types.h +92 -0
- data/vendor/local/include/nettle/pbkdf2.h +77 -0
- data/vendor/local/include/nettle/pgp.h +240 -0
- data/vendor/local/include/nettle/pkcs1.h +106 -0
- data/vendor/local/include/nettle/realloc.h +41 -0
- data/vendor/local/include/nettle/ripemd160.h +78 -0
- data/vendor/local/include/nettle/rsa-compat.h +131 -0
- data/vendor/local/include/nettle/rsa.h +419 -0
- data/vendor/local/include/nettle/salsa20.h +93 -0
- data/vendor/local/include/nettle/serpent.h +81 -0
- data/vendor/local/include/nettle/sexp.h +212 -0
- data/vendor/local/include/nettle/sha.h +34 -0
- data/vendor/local/include/nettle/sha1.h +78 -0
- data/vendor/local/include/nettle/sha2.h +156 -0
- data/vendor/local/include/nettle/sha3.h +176 -0
- data/vendor/local/include/nettle/twofish.h +78 -0
- data/vendor/local/include/nettle/umac.h +241 -0
- data/vendor/local/include/nettle/yarrow.h +137 -0
- data/vendor/local/lib/charset.alias +4 -0
- data/vendor/local/lib/gio/modules/libgiognutls.a +0 -0
- data/vendor/local/lib/gio/modules/libgiognutls.dll +0 -0
- data/vendor/local/lib/gio/modules/libgiognutls.dll.a +0 -0
- data/vendor/local/lib/gio/modules/libgiognutls.la +41 -0
- data/vendor/local/lib/glib-2.0/include/glibconfig.h +199 -0
- data/vendor/local/lib/gthread-2.0.def +3 -0
- data/vendor/local/lib/libasprintf.a +0 -0
- data/vendor/local/lib/libasprintf.dll.a +0 -0
- data/vendor/local/lib/libasprintf.la +41 -0
- data/vendor/local/lib/libcharset.a +0 -0
- data/vendor/local/lib/libcharset.dll.a +0 -0
- data/vendor/local/lib/libcharset.la +41 -0
- data/vendor/local/lib/libffi-3.2.1/include/ffi.h +487 -0
- data/vendor/local/lib/libffi-3.2.1/include/ffitarget.h +150 -0
- data/vendor/local/lib/libffi.a +0 -0
- data/vendor/local/lib/libffi.dll.a +0 -0
- data/vendor/local/lib/libffi.la +41 -0
- data/vendor/local/lib/libgio-2.0.dll.a +0 -0
- data/vendor/local/lib/libgio-2.0.la +41 -0
- data/vendor/local/lib/libglib-2.0.dll.a +0 -0
- data/vendor/local/lib/libglib-2.0.la +41 -0
- data/vendor/local/lib/libgmodule-2.0.dll.a +0 -0
- data/vendor/local/lib/libgmodule-2.0.la +41 -0
- data/vendor/local/lib/libgmp.dll.a +0 -0
- data/vendor/local/lib/libgmp.la +41 -0
- data/vendor/local/lib/libgnutls-openssl.a +0 -0
- data/vendor/local/lib/libgnutls-openssl.dll.a +0 -0
- data/vendor/local/lib/libgnutls-openssl.la +41 -0
- data/vendor/local/lib/libgnutls-xssl.a +0 -0
- data/vendor/local/lib/libgnutls-xssl.dll.a +0 -0
- data/vendor/local/lib/libgnutls-xssl.la +41 -0
- data/vendor/local/lib/libgnutls.a +0 -0
- data/vendor/local/lib/libgnutls.dll.a +0 -0
- data/vendor/local/lib/libgnutls.la +41 -0
- data/vendor/local/lib/libgobject-2.0.dll.a +0 -0
- data/vendor/local/lib/libgobject-2.0.la +41 -0
- data/vendor/local/lib/libgthread-2.0.dll.a +0 -0
- data/vendor/local/lib/libgthread-2.0.la +41 -0
- data/vendor/local/lib/libhogweed.a +0 -0
- data/vendor/local/lib/libhogweed.dll.a +0 -0
- data/vendor/local/lib/libiconv.dll.a +0 -0
- data/vendor/local/lib/libiconv.la +41 -0
- data/vendor/local/lib/libintl.a +0 -0
- data/vendor/local/lib/libintl.dll.a +0 -0
- data/vendor/local/lib/libintl.la +41 -0
- data/vendor/local/lib/libnettle.a +0 -0
- data/vendor/local/lib/libnettle.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/gio-2.0.pc +18 -0
- data/vendor/local/lib/pkgconfig/gio-windows-2.0.pc +11 -0
- data/vendor/local/lib/pkgconfig/glib-2.0.pc +16 -0
- data/vendor/local/lib/pkgconfig/gmodule-2.0.pc +14 -0
- data/vendor/local/lib/pkgconfig/gmodule-export-2.0.pc +14 -0
- data/vendor/local/lib/pkgconfig/gmodule-no-export-2.0.pc +14 -0
- data/vendor/local/lib/pkgconfig/gnutls.pc +24 -0
- data/vendor/local/lib/pkgconfig/gobject-2.0.pc +12 -0
- data/vendor/local/lib/pkgconfig/gthread-2.0.pc +11 -0
- data/vendor/local/lib/pkgconfig/hogweed.pc +18 -0
- data/vendor/local/lib/pkgconfig/libffi.pc +11 -0
- data/vendor/local/lib/pkgconfig/nettle.pc +11 -0
- data/vendor/local/lib/pkgconfig/patched +0 -0
- data/vendor/local/share/aclocal/glib-2.0.m4 +211 -0
- data/vendor/local/share/aclocal/glib-gettext.m4 +435 -0
- data/vendor/local/share/aclocal/gsettings.m4 +83 -0
- data/vendor/local/share/bash-completion/completions/gapplication +55 -0
- data/vendor/local/share/bash-completion/completions/gdbus +33 -0
- data/vendor/local/share/bash-completion/completions/gresource +58 -0
- data/vendor/local/share/bash-completion/completions/gsettings +84 -0
- data/vendor/local/share/doc/gettext/bind_textdomain_codeset.3.html +158 -0
- data/vendor/local/share/doc/gettext/bindtextdomain.3.html +154 -0
- data/vendor/local/share/doc/gettext/csharpdoc/GNU_Gettext.html +8 -0
- data/vendor/local/share/doc/gettext/csharpdoc/GNU_Gettext_GettextResourceManager.html +305 -0
- data/vendor/local/share/doc/gettext/csharpdoc/GNU_Gettext_GettextResourceSet.html +356 -0
- data/vendor/local/share/doc/gettext/csharpdoc/begin.html +11 -0
- data/vendor/local/share/doc/gettext/csharpdoc/index.html +10 -0
- data/vendor/local/share/doc/gettext/csharpdoc/namespaces.html +6 -0
- data/vendor/local/share/doc/gettext/envsubst.1.html +139 -0
- data/vendor/local/share/doc/gettext/gettext.1.html +188 -0
- data/vendor/local/share/doc/gettext/gettext.3.html +182 -0
- data/vendor/local/share/doc/gettext/javadoc2/allclasses-frame.html +25 -0
- data/vendor/local/share/doc/gettext/javadoc2/deprecated-list.html +87 -0
- data/vendor/local/share/doc/gettext/javadoc2/gnu/gettext/GettextResource.html +321 -0
- data/vendor/local/share/doc/gettext/javadoc2/gnu/gettext/package-frame.html +26 -0
- data/vendor/local/share/doc/gettext/javadoc2/gnu/gettext/package-summary.html +103 -0
- data/vendor/local/share/doc/gettext/javadoc2/gnu/gettext/package-tree.html +99 -0
- data/vendor/local/share/doc/gettext/javadoc2/help-doc.html +136 -0
- data/vendor/local/share/doc/gettext/javadoc2/index-all.html +111 -0
- data/vendor/local/share/doc/gettext/javadoc2/index.html +22 -0
- data/vendor/local/share/doc/gettext/javadoc2/overview-tree.html +96 -0
- data/vendor/local/share/doc/gettext/javadoc2/package-list +1 -0
- data/vendor/local/share/doc/gettext/javadoc2/packages.html +26 -0
- data/vendor/local/share/doc/gettext/javadoc2/serialized-form.html +87 -0
- data/vendor/local/share/doc/gettext/javadoc2/stylesheet.css +29 -0
- data/vendor/local/share/doc/gettext/ngettext.1.html +194 -0
- data/vendor/local/share/doc/gettext/ngettext.3.html +138 -0
- data/vendor/local/share/doc/gettext/textdomain.3.html +140 -0
- data/vendor/local/share/doc/libasprintf/autosprintf_all.html +174 -0
- data/vendor/local/share/doc/libiconv/iconv.1.html +206 -0
- data/vendor/local/share/doc/libiconv/iconv.3.html +207 -0
- data/vendor/local/share/doc/libiconv/iconv_close.3.html +90 -0
- data/vendor/local/share/doc/libiconv/iconv_open.3.html +318 -0
- data/vendor/local/share/doc/libiconv/iconv_open_into.3.html +120 -0
- data/vendor/local/share/doc/libiconv/iconvctl.3.html +189 -0
- data/vendor/local/share/gdb/auto-load/libglib-2.0.so.0.4200.1-gdb.py +10 -0
- data/vendor/local/share/gdb/auto-load/libgobject-2.0.so.0.4200.1-gdb.py +10 -0
- data/vendor/local/share/gettext/ABOUT-NLS +1282 -0
- data/vendor/local/share/glib-2.0/codegen/__init__.py +27 -0
- data/vendor/local/share/glib-2.0/codegen/__init__.pyc +0 -0
- data/vendor/local/share/glib-2.0/codegen/__init__.pyo +0 -0
- data/vendor/local/share/glib-2.0/codegen/codegen.py +3412 -0
- data/vendor/local/share/glib-2.0/codegen/codegen.pyc +0 -0
- data/vendor/local/share/glib-2.0/codegen/codegen.pyo +0 -0
- data/vendor/local/share/glib-2.0/codegen/codegen_docbook.py +329 -0
- data/vendor/local/share/glib-2.0/codegen/codegen_docbook.pyc +0 -0
- data/vendor/local/share/glib-2.0/codegen/codegen_docbook.pyo +0 -0
- data/vendor/local/share/glib-2.0/codegen/codegen_main.py +201 -0
- data/vendor/local/share/glib-2.0/codegen/codegen_main.pyc +0 -0
- data/vendor/local/share/glib-2.0/codegen/codegen_main.pyo +0 -0
- data/vendor/local/share/glib-2.0/codegen/config.py +25 -0
- data/vendor/local/share/glib-2.0/codegen/config.pyc +0 -0
- data/vendor/local/share/glib-2.0/codegen/config.pyo +0 -0
- data/vendor/local/share/glib-2.0/codegen/dbustypes.py +424 -0
- data/vendor/local/share/glib-2.0/codegen/dbustypes.pyc +0 -0
- data/vendor/local/share/glib-2.0/codegen/dbustypes.pyo +0 -0
- data/vendor/local/share/glib-2.0/codegen/parser.py +288 -0
- data/vendor/local/share/glib-2.0/codegen/parser.pyc +0 -0
- data/vendor/local/share/glib-2.0/codegen/parser.pyo +0 -0
- data/vendor/local/share/glib-2.0/codegen/utils.py +102 -0
- data/vendor/local/share/glib-2.0/codegen/utils.pyc +0 -0
- data/vendor/local/share/glib-2.0/codegen/utils.pyo +0 -0
- data/vendor/local/share/glib-2.0/gdb/glib.py +257 -0
- data/vendor/local/share/glib-2.0/gdb/gobject.py +295 -0
- data/vendor/local/share/glib-2.0/gettext/po/Makefile.in.in +268 -0
- data/vendor/local/share/glib-2.0/schemas/gschema.dtd +73 -0
- data/vendor/local/share/glib-2.0/schemas/gschemas.compiled +0 -0
- data/vendor/local/share/gtk-doc/html/gio/ExampleAnimal.html +1537 -0
- data/vendor/local/share/gtk-doc/html/gio/ExampleCat.html +679 -0
- data/vendor/local/share/gtk-doc/html/gio/ExampleObject.html +572 -0
- data/vendor/local/share/gtk-doc/html/gio/ExampleObjectManagerClient.html +561 -0
- data/vendor/local/share/gtk-doc/html/gio/GAction.html +832 -0
- data/vendor/local/share/gtk-doc/html/gio/GActionGroup.html +1242 -0
- data/vendor/local/share/gtk-doc/html/gio/GActionMap.html +507 -0
- data/vendor/local/share/gtk-doc/html/gio/GAppInfo.html +2160 -0
- data/vendor/local/share/gtk-doc/html/gio/GAppInfoMonitor.html +151 -0
- data/vendor/local/share/gtk-doc/html/gio/GApplication.html +2448 -0
- data/vendor/local/share/gtk-doc/html/gio/GApplicationCommandLine.html +981 -0
- data/vendor/local/share/gtk-doc/html/gio/GAsyncInitable.html +769 -0
- data/vendor/local/share/gtk-doc/html/gio/GAsyncResult.html +511 -0
- data/vendor/local/share/gtk-doc/html/gio/GBufferedInputStream.html +705 -0
- data/vendor/local/share/gtk-doc/html/gio/GBufferedOutputStream.html +393 -0
- data/vendor/local/share/gtk-doc/html/gio/GCancellable.html +861 -0
- data/vendor/local/share/gtk-doc/html/gio/GCharsetConverter.html +317 -0
- data/vendor/local/share/gtk-doc/html/gio/GConverter.html +467 -0
- data/vendor/local/share/gtk-doc/html/gio/GCredentials.html +564 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusActionGroup.html +161 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusAuthObserver.html +390 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusConnection.html +4687 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusInterface.html +329 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusInterfaceSkeleton.html +882 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusMenuModel.html +152 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusMessage.html +2484 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusMethodInvocation.html +903 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusObject.html +404 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusObjectManager.html +592 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusObjectManagerClient.html +1281 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusObjectManagerServer.html +505 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusObjectProxy.html +260 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusObjectSkeleton.html +491 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusProxy.html +2170 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusServer.html +635 -0
- data/vendor/local/share/gtk-doc/html/gio/GDataInputStream.html +1595 -0
- data/vendor/local/share/gtk-doc/html/gio/GDataOutputStream.html +699 -0
- data/vendor/local/share/gtk-doc/html/gio/GDrive.html +1873 -0
- data/vendor/local/share/gtk-doc/html/gio/GEmblem.html +354 -0
- data/vendor/local/share/gtk-doc/html/gio/GEmblemedIcon.html +325 -0
- data/vendor/local/share/gtk-doc/html/gio/GFile.html +9688 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileDescriptorBased.html +145 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileEnumerator.html +713 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileIOStream.html +352 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileIcon.html +200 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileInfo.html +4261 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileInputStream.html +293 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileMonitor.html +475 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileOutputStream.html +345 -0
- data/vendor/local/share/gtk-doc/html/gio/GFilenameCompleter.html +287 -0
- data/vendor/local/share/gtk-doc/html/gio/GFilterInputStream.html +249 -0
- data/vendor/local/share/gtk-doc/html/gio/GFilterOutputStream.html +251 -0
- data/vendor/local/share/gtk-doc/html/gio/GIOModule.html +592 -0
- data/vendor/local/share/gtk-doc/html/gio/GIOStream.html +772 -0
- data/vendor/local/share/gtk-doc/html/gio/GIcon.html +479 -0
- data/vendor/local/share/gtk-doc/html/gio/GInetAddress.html +1044 -0
- data/vendor/local/share/gtk-doc/html/gio/GInetSocketAddress.html +419 -0
- data/vendor/local/share/gtk-doc/html/gio/GInitable.html +455 -0
- data/vendor/local/share/gtk-doc/html/gio/GInputStream.html +1164 -0
- data/vendor/local/share/gtk-doc/html/gio/GLoadableIcon.html +354 -0
- data/vendor/local/share/gtk-doc/html/gio/GMemoryInputStream.html +308 -0
- data/vendor/local/share/gtk-doc/html/gio/GMemoryOutputStream.html +577 -0
- data/vendor/local/share/gtk-doc/html/gio/GMenu.html +1877 -0
- data/vendor/local/share/gtk-doc/html/gio/GMenuModel.html +1205 -0
- data/vendor/local/share/gtk-doc/html/gio/GMount.html +1929 -0
- data/vendor/local/share/gtk-doc/html/gio/GMountOperation.html +1197 -0
- data/vendor/local/share/gtk-doc/html/gio/GNetworkAddress.html +451 -0
- data/vendor/local/share/gtk-doc/html/gio/GNetworkMonitor.html +499 -0
- data/vendor/local/share/gtk-doc/html/gio/GNetworkService.html +421 -0
- data/vendor/local/share/gtk-doc/html/gio/GOutputStream.html +1561 -0
- data/vendor/local/share/gtk-doc/html/gio/GPermission.html +672 -0
- data/vendor/local/share/gtk-doc/html/gio/GPollableInputStream.html +411 -0
- data/vendor/local/share/gtk-doc/html/gio/GPollableOutputStream.html +411 -0
- data/vendor/local/share/gtk-doc/html/gio/GProxy.html +455 -0
- data/vendor/local/share/gtk-doc/html/gio/GProxyAddress.html +580 -0
- data/vendor/local/share/gtk-doc/html/gio/GProxyResolver.html +395 -0
- data/vendor/local/share/gtk-doc/html/gio/GRemoteActionGroup.html +290 -0
- data/vendor/local/share/gtk-doc/html/gio/GResolver.html +1171 -0
- data/vendor/local/share/gtk-doc/html/gio/GSeekable.html +441 -0
- data/vendor/local/share/gtk-doc/html/gio/GSettings.html +3485 -0
- data/vendor/local/share/gtk-doc/html/gio/GSettingsBackend.html +755 -0
- data/vendor/local/share/gtk-doc/html/gio/GSimpleAction.html +540 -0
- data/vendor/local/share/gtk-doc/html/gio/GSimpleActionGroup.html +319 -0
- data/vendor/local/share/gtk-doc/html/gio/GSimpleAsyncResult.html +1634 -0
- data/vendor/local/share/gtk-doc/html/gio/GSimplePermission.html +129 -0
- data/vendor/local/share/gtk-doc/html/gio/GSimpleProxyResolver.html +433 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocket.html +3696 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketAddress.html +374 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketClient.html +2079 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketConnectable.html +623 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketConnection.html +631 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketControlMessage.html +330 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketListener.html +868 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketService.html +329 -0
- data/vendor/local/share/gtk-doc/html/gio/GSrvTarget.html +424 -0
- data/vendor/local/share/gtk-doc/html/gio/GSubprocess.html +1601 -0
- data/vendor/local/share/gtk-doc/html/gio/GTask.html +2562 -0
- data/vendor/local/share/gtk-doc/html/gio/GTcpConnection.html +209 -0
- data/vendor/local/share/gtk-doc/html/gio/GTcpWrapperConnection.html +211 -0
- data/vendor/local/share/gtk-doc/html/gio/GTestDBus.html +510 -0
- data/vendor/local/share/gtk-doc/html/gio/GThemedIcon.html +464 -0
- data/vendor/local/share/gtk-doc/html/gio/GThreadedSocketService.html +241 -0
- data/vendor/local/share/gtk-doc/html/gio/GTlsBackend.html +432 -0
- data/vendor/local/share/gtk-doc/html/gio/GTlsCertificate.html +590 -0
- data/vendor/local/share/gtk-doc/html/gio/GTlsClientConnection.html +550 -0
- data/vendor/local/share/gtk-doc/html/gio/GTlsConnection.html +1294 -0
- data/vendor/local/share/gtk-doc/html/gio/GTlsDatabase.html +1091 -0
- data/vendor/local/share/gtk-doc/html/gio/GTlsFileDatabase.html +208 -0
- data/vendor/local/share/gtk-doc/html/gio/GTlsInteraction.html +735 -0
- data/vendor/local/share/gtk-doc/html/gio/GTlsPassword.html +662 -0
- data/vendor/local/share/gtk-doc/html/gio/GTlsServerConnection.html +193 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixConnection.html +553 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixCredentialsMessage.html +268 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixFDList.html +455 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixFDMessage.html +349 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixInputStream.html +314 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixOutputStream.html +314 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixSocketAddress.html +612 -0
- data/vendor/local/share/gtk-doc/html/gio/GVfs.html +358 -0
- data/vendor/local/share/gtk-doc/html/gio/GVolume.html +1391 -0
- data/vendor/local/share/gtk-doc/html/gio/GVolumeMonitor.html +926 -0
- data/vendor/local/share/gtk-doc/html/gio/GZlibCompressor.html +330 -0
- data/vendor/local/share/gtk-doc/html/gio/GZlibDecompressor.html +220 -0
- data/vendor/local/share/gtk-doc/html/gio/annotation-glossary.html +76 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-18.html +148 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-20.html +157 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-22.html +1083 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-24.html +210 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-26.html +1640 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-28.html +715 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-30.html +686 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-32.html +725 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-34.html +268 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-36.html +259 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-38.html +161 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-40.html +369 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-42.html +50 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-deprecated.html +198 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-full.html +9512 -0
- data/vendor/local/share/gtk-doc/html/gio/application.html +80 -0
- data/vendor/local/share/gtk-doc/html/gio/async.html +48 -0
- data/vendor/local/share/gtk-doc/html/gio/ch01.html +232 -0
- data/vendor/local/share/gtk-doc/html/gio/ch02.html +114 -0
- data/vendor/local/share/gtk-doc/html/gio/ch03.html +45 -0
- data/vendor/local/share/gtk-doc/html/gio/ch30.html +75 -0
- data/vendor/local/share/gtk-doc/html/gio/ch31.html +217 -0
- data/vendor/local/share/gtk-doc/html/gio/ch31s02.html +41 -0
- data/vendor/local/share/gtk-doc/html/gio/ch31s03.html +39 -0
- data/vendor/local/share/gtk-doc/html/gio/ch32.html +56 -0
- data/vendor/local/share/gtk-doc/html/gio/ch32s02.html +59 -0
- data/vendor/local/share/gtk-doc/html/gio/ch32s03.html +159 -0
- data/vendor/local/share/gtk-doc/html/gio/ch32s04.html +46 -0
- data/vendor/local/share/gtk-doc/html/gio/ch32s05.html +48 -0
- data/vendor/local/share/gtk-doc/html/gio/ch32s06.html +278 -0
- data/vendor/local/share/gtk-doc/html/gio/ch32s07.html +160 -0
- data/vendor/local/share/gtk-doc/html/gio/ch33.html +116 -0
- data/vendor/local/share/gtk-doc/html/gio/ch33s02.html +142 -0
- data/vendor/local/share/gtk-doc/html/gio/ch33s03.html +202 -0
- data/vendor/local/share/gtk-doc/html/gio/ch33s04.html +97 -0
- data/vendor/local/share/gtk-doc/html/gio/ch33s05.html +931 -0
- data/vendor/local/share/gtk-doc/html/gio/conversion.html +44 -0
- data/vendor/local/share/gtk-doc/html/gio/extending-gio.html +131 -0
- data/vendor/local/share/gtk-doc/html/gio/extending.html +41 -0
- data/vendor/local/share/gtk-doc/html/gio/failable_initialization.html +38 -0
- data/vendor/local/share/gtk-doc/html/gio/file_mon.html +33 -0
- data/vendor/local/share/gtk-doc/html/gio/file_ops.html +50 -0
- data/vendor/local/share/gtk-doc/html/gio/gapplication-tool.html +288 -0
- data/vendor/local/share/gtk-doc/html/gio/gdbus-codegen.html +1098 -0
- data/vendor/local/share/gtk-doc/html/gio/gdbus-convenience.html +65 -0
- data/vendor/local/share/gtk-doc/html/gio/gdbus-lowlevel.html +59 -0
- data/vendor/local/share/gtk-doc/html/gio/gdbus-org.gtk.GDBus.Example.ObjectManager.Animal.html +161 -0
- data/vendor/local/share/gtk-doc/html/gio/gdbus-org.gtk.GDBus.Example.ObjectManager.Cat.html +51 -0
- data/vendor/local/share/gtk-doc/html/gio/gdbus.html +300 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-D-Bus-Addresses.html +390 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-D-Bus-Introspection-Data.html +1572 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-D-Bus-Utilities.html +398 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-Desktop-file-based-GAppInfo.html +1131 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-Extension-Points.html +613 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GActionGroup-exporter.html +192 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GBytesIcon.html +162 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GContentType.html +595 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GConverterInputstream.html +214 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GConverterOutputstream.html +214 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GDBusError.html +1106 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GFileAttribute.html +650 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GIOError.html +539 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GIOScheduler.html +365 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GInetAddressMask.html +443 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GMenuModel-exporter.html +183 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GNotification.html +670 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GPropertyAction.html +177 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GResource.html +1141 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GSettingsSchema-GSettingsSchemaSource.html +1186 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GSubprocessLauncher.html +931 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GWin32InputStream.html +258 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GWin32OutputStream.html +259 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-Owning-Bus-Names.html +658 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-TLS-Overview.html +321 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-Unix-Mounts.html +1398 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-Watching-Bus-Names.html +575 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-gnetworking.h.html +94 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-gpollableutils.html +475 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-hierarchy.html +188 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-querymodules.html +53 -0
- data/vendor/local/share/gtk-doc/html/gio/gio.devhelp2 +2715 -0
- data/vendor/local/share/gtk-doc/html/gio/glib-compile-resources.html +209 -0
- data/vendor/local/share/gtk-doc/html/gio/glib-compile-schemas.html +111 -0
- data/vendor/local/share/gtk-doc/html/gio/gresource-tool.html +111 -0
- data/vendor/local/share/gtk-doc/html/gio/gsettings-tool.html +178 -0
- data/vendor/local/share/gtk-doc/html/gio/gvfs-overview.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/highlevel-socket.html +60 -0
- data/vendor/local/share/gtk-doc/html/gio/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/icons.html +53 -0
- data/vendor/local/share/gtk-doc/html/gio/index.html +646 -0
- data/vendor/local/share/gtk-doc/html/gio/index.sgml +4046 -0
- data/vendor/local/share/gtk-doc/html/gio/left-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/menu-example.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/menu-model.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/migrating.html +82 -0
- data/vendor/local/share/gtk-doc/html/gio/networking.html +75 -0
- data/vendor/local/share/gtk-doc/html/gio/permissions.html +39 -0
- data/vendor/local/share/gtk-doc/html/gio/pt01.html +40 -0
- data/vendor/local/share/gtk-doc/html/gio/pt02.html +572 -0
- data/vendor/local/share/gtk-doc/html/gio/resolver.html +53 -0
- data/vendor/local/share/gtk-doc/html/gio/resources.html +33 -0
- data/vendor/local/share/gtk-doc/html/gio/right-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/running-gio-apps.html +189 -0
- data/vendor/local/share/gtk-doc/html/gio/settings.html +42 -0
- data/vendor/local/share/gtk-doc/html/gio/streaming.html +107 -0
- data/vendor/local/share/gtk-doc/html/gio/style.css +476 -0
- data/vendor/local/share/gtk-doc/html/gio/subprocesses.html +38 -0
- data/vendor/local/share/gtk-doc/html/gio/testing.html +33 -0
- data/vendor/local/share/gtk-doc/html/gio/tls.html +62 -0
- data/vendor/local/share/gtk-doc/html/gio/tools.html +56 -0
- data/vendor/local/share/gtk-doc/html/gio/types.html +44 -0
- data/vendor/local/share/gtk-doc/html/gio/up-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/utils.html +33 -0
- data/vendor/local/share/gtk-doc/html/gio/volume_mon.html +47 -0
- data/vendor/local/share/gtk-doc/html/glib/Sorted_binary_tree_breadth-first_traversal.svg +134 -0
- data/vendor/local/share/gtk-doc/html/glib/Sorted_binary_tree_inorder.svg +753 -0
- data/vendor/local/share/gtk-doc/html/glib/Sorted_binary_tree_postorder.svg +750 -0
- data/vendor/local/share/gtk-doc/html/glib/Sorted_binary_tree_preorder.svg +750 -0
- data/vendor/local/share/gtk-doc/html/glib/annotation-glossary.html +81 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-10.html +167 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-12.html +307 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-14.html +562 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-16.html +357 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-18.html +108 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-2.html +119 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-20.html +86 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-22.html +189 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-24.html +423 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-26.html +389 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-28.html +122 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-30.html +252 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-32.html +343 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-34.html +116 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-36.html +116 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-38.html +111 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-4.html +399 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-40.html +158 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-42.html +35 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-6.html +416 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-8.html +157 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-deprecated.html +596 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-full.html +9013 -0
- data/vendor/local/share/gtk-doc/html/glib/deprecated.html +47 -0
- data/vendor/local/share/gtk-doc/html/glib/file-name-encodings.png +0 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Arrays.html +1130 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Asynchronous-Queues.html +1242 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Atomic-Operations.html +944 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Automatic-String-Completion.html +614 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Balanced-Binary-Trees.html +958 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Base64-Encoding.html +440 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html +1155 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Bookmark-file-parser.html +2442 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Byte-Arrays.html +1513 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Byte-Order-Macros.html +2152 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Caches.html +540 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Character-Set-Conversion.html +1299 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Commandline-option-parser.html +2164 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Data-Checksums.html +644 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Data-HMACs.html +549 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Datasets.html +662 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Date-and-Time-Functions.html +2808 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Deprecated-Thread-APIs.html +2101 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Double-ended-Queues.html +1860 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html +1941 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Dynamic-Loading-of-Modules.html +664 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Error-Reporting.html +1226 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-File-Utilities.html +2516 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-GDateTime.html +2430 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-GTimeZone.html +664 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-GVariant.html +6967 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-GVariantType.html +1842 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Glob-style-pattern-matching.html +373 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Hash-Tables.html +2260 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Hook-Functions.html +1817 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Hostname-Utilities.html +287 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-I18N.html +814 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-IO-Channels.html +2662 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Key-value-file-parser.html +3457 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Keyed-Data-Lists.html +1007 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Lexical-Scanner.html +1878 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Allocation.html +1375 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Slices.html +625 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Message-Logging.html +947 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Miscellaneous-Macros.html +1180 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Miscellaneous-Utility-Functions.html +2274 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-N-ary-Trees.html +1995 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Numerical-Definitions.html +236 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Perl-compatible-regular-expressions.html +3551 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Pointer-Arrays.html +1059 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Quarks.html +378 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Random-Numbers.html +775 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Relations-and-Tuples.html +660 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Sequences.html +2054 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Shell-related-Utilities.html +302 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Simple-XML-Subset-Parser.html +1491 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Singly-Linked-Lists.html +1560 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Spawning-Processes.html +1165 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html +593 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-String-Chunks.html +374 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-String-Utility-Functions.html +4052 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Strings.html +1797 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Testing.html +3149 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-The-Main-Event-Loop.html +5082 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Thread-Pools.html +774 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Threads.html +3183 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Timers.html +319 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Trash-Stacks.html +254 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Type-Conversion-Macros.html +309 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-UNIX-specific-utilities-and-integration.html +618 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-URI-Functions.html +508 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Unicode-Manipulation.html +4995 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Version-Information.html +483 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Warnings-and-Assertions.html +598 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Windows-Compatibility-Functions.html +585 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-building.html +438 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-changes.html +153 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-compiling.html +145 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-core.html +68 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-cross-compiling.html +165 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-data-types.html +100 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-fundamentals.html +57 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-gettextize.html +96 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-programming.html +76 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-regex-syntax.html +2217 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-resources.html +124 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-running.html +295 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-utilities.html +126 -0
- data/vendor/local/share/gtk-doc/html/glib/glib.devhelp2 +2399 -0
- data/vendor/local/share/gtk-doc/html/glib/glib.html +72 -0
- data/vendor/local/share/gtk-doc/html/glib/gtester-report.html +81 -0
- data/vendor/local/share/gtk-doc/html/glib/gtester.html +187 -0
- data/vendor/local/share/gtk-doc/html/glib/gvariant-format-strings.html +1338 -0
- data/vendor/local/share/gtk-doc/html/glib/gvariant-text.html +667 -0
- data/vendor/local/share/gtk-doc/html/glib/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/glib/index.html +358 -0
- data/vendor/local/share/gtk-doc/html/glib/index.sgml +2782 -0
- data/vendor/local/share/gtk-doc/html/glib/left-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/glib/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/glib/mainloop-states.gif +0 -0
- data/vendor/local/share/gtk-doc/html/glib/right-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/glib/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/glib/style.css +476 -0
- data/vendor/local/share/gtk-doc/html/glib/tools.html +41 -0
- data/vendor/local/share/gtk-doc/html/glib/up-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/glib/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gobject/GBinding.html +981 -0
- data/vendor/local/share/gtk-doc/html/gobject/GTypeModule.html +814 -0
- data/vendor/local/share/gtk-doc/html/gobject/GTypePlugin.html +558 -0
- data/vendor/local/share/gtk-doc/html/gobject/annotation-glossary.html +76 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-10.html +80 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-12.html +50 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-14.html +46 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-18.html +43 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-2.html +35 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-22.html +43 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-24.html +68 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-26.html +196 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-28.html +42 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-30.html +65 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-32.html +76 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-34.html +58 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-36.html +51 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-38.html +68 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-4.html +173 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-40.html +35 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-42.html +35 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-6.html +39 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-8.html +39 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-deprecated.html +132 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-full.html +2999 -0
- data/vendor/local/share/gtk-doc/html/gobject/ch01s02.html +136 -0
- data/vendor/local/share/gtk-doc/html/gobject/chapter-gobject.html +290 -0
- data/vendor/local/share/gtk-doc/html/gobject/chapter-gtype.html +263 -0
- data/vendor/local/share/gtk-doc/html/gobject/chapter-intro.html +92 -0
- data/vendor/local/share/gtk-doc/html/gobject/chapter-signal.html +214 -0
- data/vendor/local/share/gtk-doc/html/gobject/glib-genmarshal.html +380 -0
- data/vendor/local/share/gtk-doc/html/gobject/glib-mkenums.html +337 -0
- data/vendor/local/share/gtk-doc/html/gobject/glue.png +0 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Boxed-Types.html +677 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Closures.html +3510 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Enumeration-and-Flag-Types.html +1110 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-GParamSpec.html +1937 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Generic-values.html +1101 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html +3395 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Standard-Parameter-and-Value-Types.html +7262 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html +4119 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Type-Information.html +6080 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Value-arrays.html +644 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Varargs-Value-Collection.html +309 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-memory.html +234 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-properties.html +392 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-query.html +128 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject.devhelp2 +838 -0
- data/vendor/local/share/gtk-doc/html/gobject/gtype-conventions.html +141 -0
- data/vendor/local/share/gtk-doc/html/gobject/gtype-instantiable-classed.html +288 -0
- data/vendor/local/share/gtk-doc/html/gobject/gtype-non-instantiable-classed.html +378 -0
- data/vendor/local/share/gtk-doc/html/gobject/gtype-non-instantiable.html +76 -0
- data/vendor/local/share/gtk-doc/html/gobject/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-chainup.html +98 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-code.html +88 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-construction.html +172 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-destruction.html +117 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-methods.html +250 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-gobject.html +270 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-interface-implement.html +137 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-interface-override.html +133 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-interface-prerequisite.html +123 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-interface-properties.html +153 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-interface.html +149 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-signals.html +121 -0
- data/vendor/local/share/gtk-doc/html/gobject/index.html +201 -0
- data/vendor/local/share/gtk-doc/html/gobject/index.sgml +869 -0
- data/vendor/local/share/gtk-doc/html/gobject/left-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gobject/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gobject/pr01.html +72 -0
- data/vendor/local/share/gtk-doc/html/gobject/pt01.html +80 -0
- data/vendor/local/share/gtk-doc/html/gobject/pt02.html +67 -0
- data/vendor/local/share/gtk-doc/html/gobject/pt03.html +55 -0
- data/vendor/local/share/gtk-doc/html/gobject/right-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gobject/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gobject/rn01.html +85 -0
- data/vendor/local/share/gtk-doc/html/gobject/rn02.html +47 -0
- data/vendor/local/share/gtk-doc/html/gobject/signal.html +378 -0
- data/vendor/local/share/gtk-doc/html/gobject/style.css +476 -0
- data/vendor/local/share/gtk-doc/html/gobject/tools-ginspector.html +35 -0
- data/vendor/local/share/gtk-doc/html/gobject/tools-gob.html +40 -0
- data/vendor/local/share/gtk-doc/html/gobject/tools-gtkdoc.html +63 -0
- data/vendor/local/share/gtk-doc/html/gobject/tools-refdb.html +48 -0
- data/vendor/local/share/gtk-doc/html/gobject/tools-vala.html +43 -0
- data/vendor/local/share/gtk-doc/html/gobject/up-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gobject/up.png +0 -0
- data/vendor/local/share/info/autosprintf.info +133 -0
- data/vendor/local/share/info/dir +43 -0
- data/vendor/local/share/info/gmp.info +181 -0
- data/vendor/local/share/info/gmp.info-1 +7073 -0
- data/vendor/local/share/info/gmp.info-2 +3865 -0
- data/vendor/local/share/info/gnutls-client-server-use-case.png +0 -0
- data/vendor/local/share/info/gnutls-guile.info +1589 -0
- data/vendor/local/share/info/gnutls-handshake-sequence.png +0 -0
- data/vendor/local/share/info/gnutls-handshake-state.png +0 -0
- data/vendor/local/share/info/gnutls-internals.png +0 -0
- data/vendor/local/share/info/gnutls-layers.png +0 -0
- data/vendor/local/share/info/gnutls-logo.png +0 -0
- data/vendor/local/share/info/gnutls-modauth.png +0 -0
- data/vendor/local/share/info/gnutls-pgp.png +0 -0
- data/vendor/local/share/info/gnutls-x509.png +0 -0
- data/vendor/local/share/info/gnutls.info +1371 -0
- data/vendor/local/share/info/gnutls.info-1 +7371 -0
- data/vendor/local/share/info/gnutls.info-2 +7842 -0
- data/vendor/local/share/info/gnutls.info-3 +11715 -0
- data/vendor/local/share/info/gnutls.info-4 +6737 -0
- data/vendor/local/share/info/gnutls.info-5 +2308 -0
- data/vendor/local/share/info/libffi.info +765 -0
- data/vendor/local/share/info/pkcs11-vision.png +0 -0
- data/vendor/local/share/license/gettext/AUTHORS +2 -0
- data/vendor/local/share/license/gettext/COPYING +13 -0
- data/vendor/local/share/license/glib-networking/AUTHORS +0 -0
- data/vendor/local/share/license/glib-networking/COPYING +481 -0
- data/vendor/local/share/license/glib/AUTHORS +40 -0
- data/vendor/local/share/license/glib/COPYING +482 -0
- data/vendor/local/share/license/gmp/AUTHORS +100 -0
- data/vendor/local/share/license/gmp/COPYING +674 -0
- data/vendor/local/share/license/gnutls/AUTHORS +92 -0
- data/vendor/local/share/license/gnutls/COPYING +674 -0
- data/vendor/local/share/license/libiconv/AUTHORS +1 -0
- data/vendor/local/share/license/libiconv/COPYING +674 -0
- data/vendor/local/share/license/libiconv/COPYING.LIB +482 -0
- data/vendor/local/share/license/nettle/AUTHORS +1 -0
- data/vendor/local/share/license/nettle/COPYING.LIB +510 -0
- data/vendor/local/share/locale/af/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/am/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/an/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/an/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ar/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/ar/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/as/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/as/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ast/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/az/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/be/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/be/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/be/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/be@latin/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/bg/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/bg/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/bg/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/bn/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/bn_IN/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/bn_IN/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/bs/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ca/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/ca/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/ca/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/cy/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/da/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/da/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/da/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/dz/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/el/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/el/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/el/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/en@boldquot/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/en@boldquot/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/en@quot/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/en@quot/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/en@shaw/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/en_CA/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/en_CA/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/en_GB/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/en_GB/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/eo/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/eo/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/eo/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/eo/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/es/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/es/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/es/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/et/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/et/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/et/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/eu/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/eu/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/fa/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/fa/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/fi/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/fi/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/fi/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/fi/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/fr/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/fr/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/fr/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/fr/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/fur/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/ga/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/ga/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/gl/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/gl/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/gl/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/gu/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/gu/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/he/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/he/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/hi/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/hi/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/hr/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/hr/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/hu/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/hu/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/hu/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/hy/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/id/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/id/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/id/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/is/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/ja/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/ja/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/ja/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ka/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/kk/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/kk/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/km/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/kn/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/kn/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ko/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/ko/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/ko/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ku/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/locale.alias +75 -0
- data/vendor/local/share/locale/lt/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/lt/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/lv/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/lv/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/mai/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/mg/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/mk/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ml/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/ml/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/mn/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/mr/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/mr/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ms/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ms/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/nb/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/nb/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/nb/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/nds/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ne/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/nl/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/nl/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/nl/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/nl/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/nn/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/nn/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/oc/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/or/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/or/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/pa/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/pa/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/ps/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/pt/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/pt/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/pt/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/pt_BR/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/pt_BR/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ro/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/ro/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/ro/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ru/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/ru/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/ru/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/rw/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/si/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sk/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/sk/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/sk/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sl/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/sl/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/sl/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sq/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sr/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/sr/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/sr/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sr@ije/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sr@latin/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/sr@latin/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sv/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/sv/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/sv/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sv/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/ta/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/ta/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/te/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/te/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/tg/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/tg/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/th/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/th/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/tl/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/tr/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/tr/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/tr/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/tt/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ug/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/ug/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/uk/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/uk/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/uk/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/uk/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/vi/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/vi/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/vi/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/vi/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/wa/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/xh/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/yi/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/zh_CN/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/zh_CN/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/zh_HK/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/zh_HK/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/zh_TW/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/zh_TW/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/man/man1/certtool.1 +741 -0
- data/vendor/local/share/man/man1/envsubst.1 +54 -0
- data/vendor/local/share/man/man1/gettext.1 +69 -0
- data/vendor/local/share/man/man1/gnutls-cli-debug.1 +165 -0
- data/vendor/local/share/man/man1/gnutls-cli.1 +420 -0
- data/vendor/local/share/man/man1/gnutls-serv.1 +453 -0
- data/vendor/local/share/man/man1/iconv.1 +108 -0
- data/vendor/local/share/man/man1/ngettext.1 +68 -0
- data/vendor/local/share/man/man1/ocsptool.1 +335 -0
- data/vendor/local/share/man/man1/p11tool.1 +320 -0
- data/vendor/local/share/man/man1/psktool.1 +129 -0
- data/vendor/local/share/man/man1/srptool.1 +164 -0
- data/vendor/local/share/man/man1/tpmtool.1 +223 -0
- data/vendor/local/share/man/man3/bind_textdomain_codeset.3 +72 -0
- data/vendor/local/share/man/man3/bindtextdomain.3 +69 -0
- data/vendor/local/share/man/man3/dcgettext.3 +1 -0
- data/vendor/local/share/man/man3/dcngettext.3 +1 -0
- data/vendor/local/share/man/man3/dgettext.3 +1 -0
- data/vendor/local/share/man/man3/dngettext.3 +1 -0
- data/vendor/local/share/man/man3/ffi.3 +41 -0
- data/vendor/local/share/man/man3/ffi_call.3 +103 -0
- data/vendor/local/share/man/man3/ffi_prep_cif.3 +68 -0
- data/vendor/local/share/man/man3/ffi_prep_cif_var.3 +73 -0
- data/vendor/local/share/man/man3/gettext.3 +99 -0
- data/vendor/local/share/man/man3/gnutls_alert_get.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_alert_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_alert_get_strname.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_alert_send.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_alert_send_appropriate.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_alpn_get_selected_protocol.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_alpn_set_protocols.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_anon_allocate_client_credentials.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_anon_allocate_server_credentials.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_anon_free_client_credentials.3 +34 -0
- data/vendor/local/share/man/man3/gnutls_anon_free_server_credentials.3 +34 -0
- data/vendor/local/share/man/man3/gnutls_anon_set_params_function.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_anon_set_server_dh_params.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_anon_set_server_params_function.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_auth_client_get_type.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_auth_get_type.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_auth_server_get_type.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_bye.3 +60 -0
- data/vendor/local/share/man/man3/gnutls_certificate_activation_time_peers.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_certificate_allocate_credentials.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_certificate_client_get_request_status.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_certificate_client_set_retrieve_function.3 +62 -0
- data/vendor/local/share/man/man3/gnutls_certificate_expiration_time_peers.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_certificate_free_ca_names.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_certificate_free_cas.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_certificate_free_credentials.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_certificate_free_crls.3 +34 -0
- data/vendor/local/share/man/man3/gnutls_certificate_free_keys.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_certificate_get_crt_raw.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_certificate_get_issuer.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_certificate_get_ours.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_certificate_get_peers.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_certificate_get_peers_subkey_id.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_certificate_send_x509_rdn_sequence.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_certificate_server_set_request.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_certificate_server_set_retrieve_function.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_dh_params.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_key.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_ocsp_status_request_file.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_ocsp_status_request_function.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_key.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_key_file.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_key_file2.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_key_mem.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_key_mem2.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_keyring_file.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_keyring_mem.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_params_function.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_pin_function.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_retrieve_function.3 +65 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_retrieve_function2.3 +68 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_rsa_export_params.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_trust_list.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_verify_flags.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_verify_function.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_verify_limits.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_crl.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_crl_file.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_crl_mem.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_key.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_key_file.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_key_file2.3 +62 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_key_mem.3 +54 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_key_mem2.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_simple_pkcs12_file.3 +63 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_simple_pkcs12_mem.3 +64 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_system_trust.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_trust.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_trust_file.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_trust_mem.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_certificate_type_get.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_certificate_type_get_id.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_certificate_type_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_certificate_type_list.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_certificate_type_set_priority.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_certificate_verification_status_print.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_certificate_verify_peers2.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_certificate_verify_peers3.3 +55 -0
- data/vendor/local/share/man/man3/gnutls_check_version.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_cipher_add_auth.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_cipher_decrypt.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_cipher_decrypt2.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_cipher_deinit.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_cipher_encrypt.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_cipher_encrypt2.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_cipher_get.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_cipher_get_block_size.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_cipher_get_id.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_cipher_get_iv_size.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_cipher_get_key_size.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_cipher_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_cipher_get_tag_size.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_cipher_init.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_cipher_list.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_cipher_set_iv.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_cipher_set_priority.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_cipher_suite_get_name.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_cipher_suite_info.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_cipher_tag.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_compression_get.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_compression_get_id.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_compression_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_compression_list.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_compression_set_priority.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_credentials_clear.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_credentials_set.3 +59 -0
- data/vendor/local/share/man/man3/gnutls_db_check_entry.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_db_check_entry_time.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_db_get_default_cache_expiration.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_db_get_ptr.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_db_remove_session.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_db_set_cache_expiration.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_db_set_ptr.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_db_set_remove_function.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_db_set_retrieve_function.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_db_set_store_function.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_deinit.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_dh_get_group.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_dh_get_peers_public_bits.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_dh_get_prime_bits.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_dh_get_pubkey.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_dh_get_secret_bits.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_dh_params_cpy.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_dh_params_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_dh_params_export2_pkcs3.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_dh_params_export_pkcs3.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_dh_params_export_raw.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_dh_params_generate2.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_dh_params_import_pkcs3.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_dh_params_import_raw.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_dh_params_init.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_dh_set_prime_bits.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_digest_get_id.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_digest_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_digest_list.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_dtls_cookie_send.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_dtls_cookie_verify.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_dtls_get_data_mtu.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_dtls_get_mtu.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_dtls_get_timeout.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_dtls_prestate_set.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_dtls_set_data_mtu.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_dtls_set_mtu.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_dtls_set_timeouts.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_ecc_curve_get.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_ecc_curve_get_name.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_ecc_curve_get_size.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_ecc_curve_list.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_error_is_fatal.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_error_to_alert.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_est_record_overhead_size.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_fingerprint.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_global_deinit.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_global_init.3 +54 -0
- data/vendor/local/share/man/man3/gnutls_global_set_audit_log_function.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_global_set_log_function.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_global_set_log_level.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_global_set_mem_functions.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_global_set_mutex.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_global_set_time_function.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_handshake.3 +61 -0
- data/vendor/local/share/man/man3/gnutls_handshake_description_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_handshake_get_last_in.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_handshake_get_last_out.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_handshake_set_hook_function.3 +55 -0
- data/vendor/local/share/man/man3/gnutls_handshake_set_max_packet_length.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_handshake_set_post_client_hello_function.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_handshake_set_private_extensions.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_handshake_set_random.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_handshake_set_timeout.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_hash.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_hash_deinit.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_hash_fast.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_hash_get_len.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_hash_init.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_hash_output.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_heartbeat_allowed.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_heartbeat_enable.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_heartbeat_get_timeout.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_heartbeat_ping.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_heartbeat_pong.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_heartbeat_set_timeouts.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_hex2bin.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_hex_decode.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_hex_encode.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_hmac.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_hmac_deinit.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_hmac_fast.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_hmac_get_len.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_hmac_init.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_hmac_output.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_hmac_set_nonce.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_init.3 +54 -0
- data/vendor/local/share/man/man3/gnutls_key_generate.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_kx_get.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_kx_get_id.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_kx_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_kx_list.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_kx_set_priority.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_load_file.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_mac_get.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_mac_get_id.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_mac_get_key_size.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_mac_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_mac_get_nonce_size.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_mac_list.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_mac_set_priority.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_add_cert.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_add_cert_id.3 +57 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_export.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_get_cert_id.3 +61 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_get_extension.3 +54 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_get_nonce.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_get_version.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_import.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_init.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_print.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_randomize_nonce.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_set_extension.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_set_nonce.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_check_crt.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_export.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_certs.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_extension.3 +54 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_nonce.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_produced.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_responder.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_response.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_signature.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_signature_algorithm.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_single.3 +64 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_status.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_version.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_import.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_init.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_print.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_verify.3 +59 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_verify_direct.3 +53 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_status_request_enable_client.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_status_request_get.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_status_request_is_checked.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_check_hostname.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_export.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_export2.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_auth_subkey.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_creation_time.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_expiration_time.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_fingerprint.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_key_id.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_key_usage.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_name.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_pk_algorithm.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_pk_dsa_raw.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_pk_rsa_raw.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_preferred_key_id.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_revoked_status.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_count.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_creation_time.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_expiration_time.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_fingerprint.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_id.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_idx.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_pk_algorithm.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_pk_dsa_raw.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_pk_rsa_raw.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_revoked_status.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_usage.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_version.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_import.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_init.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_print.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_set_preferred_key_id.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_verify_ring.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_verify_self.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_keyring_check_id.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_keyring_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_keyring_get_crt.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_keyring_get_crt_count.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_keyring_import.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_keyring_init.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_export.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_export2.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_export_dsa_raw.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_export_rsa_raw.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_export_subkey_dsa_raw.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_export_subkey_rsa_raw.3 +53 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_fingerprint.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_key_id.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_pk_algorithm.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_preferred_key_id.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_revoked_status.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_count.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_creation_time.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_expiration_time.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_fingerprint.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_id.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_idx.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_pk_algorithm.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_revoked_status.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_import.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_init.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_sec_param.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_set_preferred_key_id.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_sign_hash.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_send_cert.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_set_recv_key_function.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_pcert_deinit.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_pcert_import_openpgp.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_pcert_import_openpgp_raw.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_pcert_import_x509.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_pcert_import_x509_raw.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_pcert_list_import_x509_raw.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_pem_base64_decode.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_pem_base64_decode_alloc.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_pem_base64_encode.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_pem_base64_encode_alloc.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_perror.3 +34 -0
- data/vendor/local/share/man/man3/gnutls_pk_algorithm_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_pk_bits_to_sec_param.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_pk_get_id.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_pk_get_name.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pk_list.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_pk_to_sign.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_add_provider.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_copy_secret_key.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_copy_x509_crt.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_copy_x509_privkey.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_deinit.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_delete_url.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_get_pin_function.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_get_raw_issuer.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_init.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_deinit.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_export.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_export2.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_export3.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_export_url.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_get_info.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_get_type.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_import_url.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_init.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_list_import_url.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_list_import_url2.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_set_pin_function.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_export_url.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_generate.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_generate2.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_get_info.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_get_pk_algorithm.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_import_url.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_init.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_set_pin_function.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_status.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_reinit.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_set_pin_function.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_set_token_function.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_token_get_flags.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_token_get_info.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_token_get_mechanism.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_token_get_random.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_token_get_url.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_token_init.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_token_set_pin.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_type_get_name.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_decrypt.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_encrypt.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_get_count.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_get_data.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_get_friendly_name.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_get_key_id.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_get_type.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_init.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_set_crl.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_set_crt.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_set_data.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_set_friendly_name.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_set_key_id.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_export.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_export2.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_generate_mac.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_get_bag.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_import.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_init.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_set_bag.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_simple_parse.3 +84 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_verify_mac.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_delete_crl.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_delete_crt.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_export.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_export2.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_get_crl_count.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_get_crl_raw.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_get_crt_count.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_get_crt_raw.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_import.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_init.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_set_crl.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_set_crl_raw.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_set_crt.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_set_crt_raw.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_prf.3 +64 -0
- data/vendor/local/share/man/man3/gnutls_prf_raw.3 +62 -0
- data/vendor/local/share/man/man3/gnutls_priority_certificate_type_list.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_priority_cipher_list.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_priority_compression_list.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_priority_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_priority_ecc_curve_list.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_priority_get_cipher_suite_index.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_priority_init.3 +102 -0
- data/vendor/local/share/man/man3/gnutls_priority_kx_list.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_priority_mac_list.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_priority_protocol_list.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_priority_set.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_priority_set_direct.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_priority_sign_list.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_privkey_decrypt_data.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_privkey_deinit.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_privkey_get_pk_algorithm.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_privkey_get_type.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_ext.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_ext2.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_openpgp.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_openpgp_raw.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_pkcs11.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_pkcs11_url.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_tpm_raw.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_tpm_url.3 +55 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_url.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_x509.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_x509_raw.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_privkey_init.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_privkey_set_pin_function.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_privkey_sign_data.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_privkey_sign_hash.3 +55 -0
- data/vendor/local/share/man/man3/gnutls_privkey_sign_raw_data.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_privkey_status.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_protocol_get_id.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_protocol_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_protocol_get_version.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_protocol_list.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_protocol_set_priority.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_psk_allocate_client_credentials.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_psk_allocate_server_credentials.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_psk_client_get_hint.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_psk_free_client_credentials.3 +34 -0
- data/vendor/local/share/man/man3/gnutls_psk_free_server_credentials.3 +34 -0
- data/vendor/local/share/man/man3/gnutls_psk_server_get_username.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_psk_set_client_credentials.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_psk_set_client_credentials_function.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_psk_set_params_function.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_psk_set_server_credentials_file.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_psk_set_server_credentials_function.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_psk_set_server_credentials_hint.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_psk_set_server_dh_params.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_psk_set_server_params_function.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_deinit.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_encrypt_data.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_export.3 +54 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_export2.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_get_key_id.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_get_key_usage.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_get_openpgp_key_id.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_get_pk_algorithm.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_get_pk_dsa_raw.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_get_pk_ecc_raw.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_get_pk_ecc_x962.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_get_pk_rsa_raw.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_get_preferred_hash_algorithm.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_get_verify_algorithm.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_dsa_raw.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_ecc_raw.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_ecc_x962.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_openpgp.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_openpgp_raw.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_pkcs11.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_pkcs11_url.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_privkey.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_rsa_raw.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_tpm_raw.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_tpm_url.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_url.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_x509.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_x509_crq.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_x509_raw.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_init.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_print.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_set_key_usage.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_set_pin_function.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_verify_data.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_verify_data2.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_verify_hash.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_verify_hash2.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_random_art.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_range_split.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_record_can_use_length_hiding.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_record_check_corked.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_record_check_pending.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_record_cork.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_record_disable_padding.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_record_get_direction.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_record_get_discarded.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_record_get_max_size.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_record_overhead_size.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_record_recv.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_record_recv_seq.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_record_send.3 +64 -0
- data/vendor/local/share/man/man3/gnutls_record_send_range.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_record_set_max_empty_records.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_record_set_max_size.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_record_set_timeout.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_record_uncork.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_rehandshake.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_rnd.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_rnd_refresh.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_rsa_export_get_modulus_bits.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_rsa_export_get_pubkey.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_rsa_params_cpy.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_rsa_params_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_rsa_params_export_pkcs1.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_rsa_params_export_raw.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_rsa_params_generate2.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_rsa_params_import_pkcs1.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_rsa_params_import_raw.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_rsa_params_init.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_safe_renegotiation_status.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_sec_param_get_name.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_sec_param_to_pk_bits.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_server_name_get.3 +59 -0
- data/vendor/local/share/man/man3/gnutls_server_name_set.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_session_channel_binding.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_session_enable_compatibility_mode.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_session_force_valid.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_session_get_data.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_session_get_data2.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_session_get_desc.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_session_get_id.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_session_get_id2.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_session_get_ptr.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_session_get_random.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_session_is_resumed.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_session_resumption_requested.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_session_set_data.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_session_set_id.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_session_set_premaster.3 +55 -0
- data/vendor/local/share/man/man3/gnutls_session_set_ptr.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_session_ticket_enable_client.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_session_ticket_enable_server.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_session_ticket_key_generate.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_set_default_export_priority.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_set_default_priority.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_sign_algorithm_get.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_sign_algorithm_get_client.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_sign_algorithm_get_requested.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_sign_callback_get.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_sign_callback_set.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_sign_get_hash_algorithm.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_sign_get_id.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_sign_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_sign_get_pk_algorithm.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_sign_is_secure.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_sign_list.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_srp_allocate_client_credentials.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_srp_allocate_server_credentials.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_srp_base64_decode.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_srp_base64_decode_alloc.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_srp_base64_encode.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_srp_base64_encode_alloc.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_srp_free_client_credentials.3 +34 -0
- data/vendor/local/share/man/man3/gnutls_srp_free_server_credentials.3 +34 -0
- data/vendor/local/share/man/man3/gnutls_srp_server_get_username.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_srp_set_client_credentials.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_srp_set_client_credentials_function.3 +53 -0
- data/vendor/local/share/man/man3/gnutls_srp_set_prime_bits.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_srp_set_server_credentials_file.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_srp_set_server_credentials_function.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_srp_verifier.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_srtp_get_keys.3 +54 -0
- data/vendor/local/share/man/man3/gnutls_srtp_get_mki.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_srtp_get_profile_id.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_srtp_get_profile_name.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_srtp_get_selected_profile.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_srtp_set_mki.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_srtp_set_profile.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_srtp_set_profile_direct.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_store_commitment.3 +60 -0
- data/vendor/local/share/man/man3/gnutls_store_pubkey.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_strerror.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_strerror_name.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_supplemental_get_name.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_tdb_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_tdb_init.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_tdb_set_store_commitment_func.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_tdb_set_store_func.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_tdb_set_verify_func.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_tpm_get_registered.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_tpm_key_list_deinit.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_tpm_key_list_get_url.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_tpm_privkey_delete.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_tpm_privkey_generate.3 +64 -0
- data/vendor/local/share/man/man3/gnutls_transport_get_int.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_transport_get_int2.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_transport_get_ptr.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_transport_get_ptr2.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_transport_set_errno.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_transport_set_errno_function.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_transport_set_int.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_transport_set_int2.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_transport_set_ptr.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_transport_set_ptr2.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_transport_set_pull_function.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_transport_set_pull_timeout_function.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_transport_set_push_function.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_transport_set_vec_push_function.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_url_is_supported.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_verify_stored_pubkey.3 +67 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_check_issuer.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_export.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_export2.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_authority_key_gn_serial.3 +57 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_authority_key_id.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_crt_count.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_crt_serial.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_dn_oid.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_extension_data.3 +53 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_extension_info.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_extension_oid.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_issuer_dn.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_issuer_dn2.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_issuer_dn_by_oid.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_next_update.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_number.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_raw_issuer_dn.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_signature.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_signature_algorithm.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_this_update.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_version.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_import.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_init.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_list_import.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_list_import2.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_print.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_privkey_sign.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_set_authority_key_id.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_set_crt.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_set_crt_serial.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_set_next_update.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_set_number.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_set_this_update.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_set_version.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_sign.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_sign2.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_verify.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_deinit.3 +34 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_export.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_export2.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_attribute_by_oid.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_attribute_data.3 +53 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_attribute_info.3 +54 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_basic_constraints.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_challenge_password.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_dn.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_dn2.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_dn_by_oid.3 +57 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_dn_oid.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_extension_by_oid.3 +53 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_extension_data.3 +53 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_extension_info.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_key_id.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_key_purpose_oid.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_key_rsa_raw.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_key_usage.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_pk_algorithm.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_private_key_usage_period.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_subject_alt_name.3 +60 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_subject_alt_othername_oid.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_version.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_import.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_init.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_print.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_privkey_sign.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_attribute_by_oid.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_basic_constraints.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_challenge_password.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_dn.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_dn_by_oid.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_key.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_key_purpose_oid.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_key_rsa_raw.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_key_usage.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_private_key_usage_period.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_pubkey.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_subject_alt_name.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_version.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_sign.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_sign2.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_verify.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_check_hostname.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_check_issuer.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_check_revocation.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_cpy_crl_dist_points.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_export.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_export2.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_activation_time.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_authority_info_access.3 +100 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_authority_key_gn_serial.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_authority_key_id.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_basic_constraints.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_ca_status.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_crl_dist_points.3 +53 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_dn.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_dn2.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_dn_by_oid.3 +60 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_dn_oid.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_expiration_time.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_extension_by_oid.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_extension_data.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_extension_info.3 +55 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_extension_oid.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_fingerprint.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_alt_name.3 +64 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_alt_name2.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_alt_othername_oid.3 +61 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_dn.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_dn2.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_dn_by_oid.3 +60 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_dn_oid.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_unique_id.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_key_id.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_key_purpose_oid.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_key_usage.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_pk_algorithm.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_pk_dsa_raw.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_pk_rsa_raw.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_policy.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_preferred_hash_algorithm.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_private_key_usage_period.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_proxy.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_raw_dn.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_raw_issuer_dn.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_serial.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_signature.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_signature_algorithm.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_subject.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_subject_alt_name.3 +61 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_subject_alt_name2.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_subject_alt_othername_oid.3 +59 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_subject_key_id.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_subject_unique_id.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_verify_algorithm.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_version.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_import.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_import_pkcs11.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_import_pkcs11_url.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_init.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_list_import.3 +54 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_list_import2.3 +53 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_list_import_pkcs11.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_list_verify.3 +62 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_print.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_privkey_sign.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_activation_time.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_authority_info_access.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_authority_key_id.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_basic_constraints.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_ca_status.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_crl_dist_points.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_crl_dist_points2.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_crq.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_crq_extensions.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_dn.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_dn_by_oid.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_expiration_time.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_extension_by_oid.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_issuer_dn.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_issuer_dn_by_oid.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_key.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_key_purpose_oid.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_key_usage.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_pin_function.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_policy.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_private_key_usage_period.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_proxy.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_proxy_dn.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_pubkey.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_serial.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_subject_alt_name.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_subject_alternative_name.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_subject_key_id.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_version.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_sign.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_sign2.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_verify.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_verify_data.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_verify_hash.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_dn_deinit.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_x509_dn_export.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_dn_export2.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_x509_dn_get_rdn_ava.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_x509_dn_import.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_dn_init.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_dn_oid_known.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_dn_oid_name.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_x509_policy_release.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_cpy.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_export.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_export2.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_export2_pkcs8.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_export_dsa_raw.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_export_ecc_raw.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_export_pkcs8.3 +61 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_export_rsa_raw.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_export_rsa_raw2.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_fix.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_generate.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_get_key_id.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_get_pk_algorithm.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_get_pk_algorithm2.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_import.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_import2.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_import_dsa_raw.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_import_ecc_raw.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_import_openssl.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_import_pkcs8.3 +59 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_import_rsa_raw.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_import_rsa_raw2.3 +54 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_init.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_sec_param.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_sign_data.3 +59 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_sign_hash.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_verify_params.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_x509_rdn_get.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_rdn_get_by_oid.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_x509_rdn_get_oid.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_add_cas.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_add_crls.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_add_named_crt.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_add_system_trust.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_add_trust_file.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_add_trust_mem.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_deinit.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_get_issuer.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_init.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_remove_cas.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_remove_trust_file.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_remove_trust_mem.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_verify_crt.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_verify_named_crt.3 +53 -0
- data/vendor/local/share/man/man3/iconv.3 +92 -0
- data/vendor/local/share/man/man3/iconv_close.3 +31 -0
- data/vendor/local/share/man/man3/iconv_open.3 +205 -0
- data/vendor/local/share/man/man3/iconv_open_into.3 +47 -0
- data/vendor/local/share/man/man3/iconvctl.3 +67 -0
- data/vendor/local/share/man/man3/ngettext.3 +60 -0
- data/vendor/local/share/man/man3/textdomain.3 +57 -0
- data/vendor/local/share/man/man3/xssl_client_init.3 +56 -0
- data/vendor/local/share/man/man3/xssl_cred_deinit.3 +37 -0
- data/vendor/local/share/man/man3/xssl_cred_init.3 +48 -0
- data/vendor/local/share/man/man3/xssl_deinit.3 +36 -0
- data/vendor/local/share/man/man3/xssl_flush.3 +39 -0
- data/vendor/local/share/man/man3/xssl_get_session.3 +35 -0
- data/vendor/local/share/man/man3/xssl_getdelim.3 +49 -0
- data/vendor/local/share/man/man3/xssl_printf.3 +45 -0
- data/vendor/local/share/man/man3/xssl_read.3 +43 -0
- data/vendor/local/share/man/man3/xssl_server_init.3 +50 -0
- data/vendor/local/share/man/man3/xssl_sinit.3 +44 -0
- data/vendor/local/share/man/man3/xssl_write.3 +47 -0
- metadata +2311 -0
Binary file
|
@@ -0,0 +1,358 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
+
<title>GLib Reference Manual: GLib Reference Manual</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
|
7
|
+
<link rel="home" href="index.html" title="GLib Reference Manual">
|
8
|
+
<link rel="next" href="glib.html" title="GLib Overview">
|
9
|
+
<meta name="generator" content="GTK-Doc V1.21.1 (XML mode)">
|
10
|
+
<link rel="stylesheet" href="style.css" type="text/css">
|
11
|
+
</head>
|
12
|
+
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
13
|
+
<div class="book">
|
14
|
+
<div class="titlepage">
|
15
|
+
<div>
|
16
|
+
<div><table class="navigation" id="top" width="100%" cellpadding="2" cellspacing="0"><tr><th valign="middle"><p class="title">GLib Reference Manual</p></th></tr></table></div>
|
17
|
+
<div><p class="releaseinfo">
|
18
|
+
for GLib 2.42.1
|
19
|
+
|
20
|
+
The latest version of this documentation can be found on-line at
|
21
|
+
<a class="ulink" href="https://developer.gnome.org/glib/unstable/" target="_top">https://developer.gnome.org/glib/unstable/</a>.
|
22
|
+
</p></div>
|
23
|
+
</div>
|
24
|
+
<hr>
|
25
|
+
</div>
|
26
|
+
<div class="toc"><dl class="toc">
|
27
|
+
<dt><span class="chapter"><a href="glib.html">GLib Overview</a></span></dt>
|
28
|
+
<dd><dl>
|
29
|
+
<dt>
|
30
|
+
<span class="refentrytitle"><a href="glib-building.html">Compiling the GLib package</a></span><span class="refpurpose"> — How to compile GLib itself</span>
|
31
|
+
</dt>
|
32
|
+
<dt>
|
33
|
+
<span class="refentrytitle"><a href="glib-cross-compiling.html">Cross-compiling the GLib package</a></span><span class="refpurpose"> —
|
34
|
+
How to cross-compile GLib
|
35
|
+
</span>
|
36
|
+
</dt>
|
37
|
+
<dt>
|
38
|
+
<span class="refentrytitle"><a href="glib-programming.html">Writing GLib Applications</a></span><span class="refpurpose"> —
|
39
|
+
General considerations when programming with GLib
|
40
|
+
</span>
|
41
|
+
</dt>
|
42
|
+
<dt>
|
43
|
+
<span class="refentrytitle"><a href="glib-compiling.html">Compiling GLib Applications</a></span><span class="refpurpose"> —
|
44
|
+
How to compile your GLib application
|
45
|
+
</span>
|
46
|
+
</dt>
|
47
|
+
<dt>
|
48
|
+
<span class="refentrytitle"><a href="glib-running.html">Running GLib Applications</a></span><span class="refpurpose"> —
|
49
|
+
How to run and debug your GLib application
|
50
|
+
</span>
|
51
|
+
</dt>
|
52
|
+
<dt>
|
53
|
+
<span class="refentrytitle"><a href="glib-changes.html">Changes to GLib</a></span><span class="refpurpose"> —
|
54
|
+
Incompatible changes made between successing versions of GLib
|
55
|
+
</span>
|
56
|
+
</dt>
|
57
|
+
<dt>
|
58
|
+
<span class="refentrytitle"><a href="glib-resources.html">Mailing lists and bug reports</a></span><span class="refpurpose"> —
|
59
|
+
Getting help with GLib
|
60
|
+
</span>
|
61
|
+
</dt>
|
62
|
+
</dl></dd>
|
63
|
+
<dt><span class="chapter"><a href="glib-fundamentals.html">GLib Fundamentals</a></span></dt>
|
64
|
+
<dd><dl>
|
65
|
+
<dt>
|
66
|
+
<span class="refentrytitle"><a href="glib-Version-Information.html">Version Information</a></span><span class="refpurpose"> — variables and functions to check the GLib version</span>
|
67
|
+
</dt>
|
68
|
+
<dt>
|
69
|
+
<span class="refentrytitle"><a href="glib-Basic-Types.html">Basic Types</a></span><span class="refpurpose"> — standard GLib types, defined for ease-of-use
|
70
|
+
and portability</span>
|
71
|
+
</dt>
|
72
|
+
<dt>
|
73
|
+
<span class="refentrytitle"><a href="glib-Standard-Macros.html">Standard Macros</a></span><span class="refpurpose"> — commonly-used macros</span>
|
74
|
+
</dt>
|
75
|
+
<dt>
|
76
|
+
<span class="refentrytitle"><a href="glib-Type-Conversion-Macros.html">Type Conversion Macros</a></span><span class="refpurpose"> — portably storing integers in pointer variables</span>
|
77
|
+
</dt>
|
78
|
+
<dt>
|
79
|
+
<span class="refentrytitle"><a href="glib-Byte-Order-Macros.html">Byte Order Macros</a></span><span class="refpurpose"> — a portable way to convert between different byte orders</span>
|
80
|
+
</dt>
|
81
|
+
<dt>
|
82
|
+
<span class="refentrytitle"><a href="glib-Numerical-Definitions.html">Numerical Definitions</a></span><span class="refpurpose"> — mathematical constants, and floating point decomposition</span>
|
83
|
+
</dt>
|
84
|
+
<dt>
|
85
|
+
<span class="refentrytitle"><a href="glib-Miscellaneous-Macros.html">Miscellaneous Macros</a></span><span class="refpurpose"> — specialized macros which are not used often</span>
|
86
|
+
</dt>
|
87
|
+
<dt>
|
88
|
+
<span class="refentrytitle"><a href="glib-Atomic-Operations.html">Atomic Operations</a></span><span class="refpurpose"> — basic atomic integer and pointer operations</span>
|
89
|
+
</dt>
|
90
|
+
</dl></dd>
|
91
|
+
<dt><span class="chapter"><a href="glib-core.html">GLib Core Application Support</a></span></dt>
|
92
|
+
<dd><dl>
|
93
|
+
<dt>
|
94
|
+
<span class="refentrytitle"><a href="glib-The-Main-Event-Loop.html">The Main Event Loop</a></span><span class="refpurpose"> — manages all available sources of events</span>
|
95
|
+
</dt>
|
96
|
+
<dt>
|
97
|
+
<span class="refentrytitle"><a href="glib-Threads.html">Threads</a></span><span class="refpurpose"> — portable support for threads, mutexes, locks,
|
98
|
+
conditions and thread private data</span>
|
99
|
+
</dt>
|
100
|
+
<dt>
|
101
|
+
<span class="refentrytitle"><a href="glib-Thread-Pools.html">Thread Pools</a></span><span class="refpurpose"> — pools of threads to execute work concurrently</span>
|
102
|
+
</dt>
|
103
|
+
<dt>
|
104
|
+
<span class="refentrytitle"><a href="glib-Asynchronous-Queues.html">Asynchronous Queues</a></span><span class="refpurpose"> — asynchronous communication between threads</span>
|
105
|
+
</dt>
|
106
|
+
<dt>
|
107
|
+
<span class="refentrytitle"><a href="glib-Dynamic-Loading-of-Modules.html">Dynamic Loading of Modules</a></span><span class="refpurpose"> — portable method for dynamically loading 'plug-ins'</span>
|
108
|
+
</dt>
|
109
|
+
<dt>
|
110
|
+
<span class="refentrytitle"><a href="glib-Memory-Allocation.html">Memory Allocation</a></span><span class="refpurpose"> — general memory-handling</span>
|
111
|
+
</dt>
|
112
|
+
<dt>
|
113
|
+
<span class="refentrytitle"><a href="glib-Memory-Slices.html">Memory Slices</a></span><span class="refpurpose"> — efficient way to allocate groups of equal-sized
|
114
|
+
chunks of memory</span>
|
115
|
+
</dt>
|
116
|
+
<dt>
|
117
|
+
<span class="refentrytitle"><a href="glib-IO-Channels.html">IO Channels</a></span><span class="refpurpose"> — portable support for using files, pipes and sockets</span>
|
118
|
+
</dt>
|
119
|
+
<dt>
|
120
|
+
<span class="refentrytitle"><a href="glib-Error-Reporting.html">Error Reporting</a></span><span class="refpurpose"> — a system for reporting errors</span>
|
121
|
+
</dt>
|
122
|
+
<dt>
|
123
|
+
<span class="refentrytitle"><a href="glib-Warnings-and-Assertions.html">Message Output and Debugging Functions</a></span><span class="refpurpose"> — functions to output messages and help debug applications</span>
|
124
|
+
</dt>
|
125
|
+
<dt>
|
126
|
+
<span class="refentrytitle"><a href="glib-Message-Logging.html">Message Logging</a></span><span class="refpurpose"> — versatile support for logging messages
|
127
|
+
with different levels of importance</span>
|
128
|
+
</dt>
|
129
|
+
</dl></dd>
|
130
|
+
<dt><span class="chapter"><a href="glib-utilities.html">GLib Utilities</a></span></dt>
|
131
|
+
<dd><dl>
|
132
|
+
<dt>
|
133
|
+
<span class="refentrytitle"><a href="glib-String-Utility-Functions.html">String Utility Functions</a></span><span class="refpurpose"> — various string-related functions</span>
|
134
|
+
</dt>
|
135
|
+
<dt>
|
136
|
+
<span class="refentrytitle"><a href="glib-Character-Set-Conversion.html">Character Set Conversion</a></span><span class="refpurpose"> — convert strings between different character sets</span>
|
137
|
+
</dt>
|
138
|
+
<dt>
|
139
|
+
<span class="refentrytitle"><a href="glib-Unicode-Manipulation.html">Unicode Manipulation</a></span><span class="refpurpose"> — functions operating on Unicode characters and
|
140
|
+
UTF-8 strings</span>
|
141
|
+
</dt>
|
142
|
+
<dt>
|
143
|
+
<span class="refentrytitle"><a href="glib-Base64-Encoding.html">Base64 Encoding</a></span><span class="refpurpose"> — encodes and decodes data in Base64 format</span>
|
144
|
+
</dt>
|
145
|
+
<dt>
|
146
|
+
<span class="refentrytitle"><a href="glib-Data-Checksums.html">Data Checksums</a></span><span class="refpurpose"> — computes the checksum for data</span>
|
147
|
+
</dt>
|
148
|
+
<dt>
|
149
|
+
<span class="refentrytitle"><a href="glib-Data-HMACs.html">Secure HMAC Digests</a></span><span class="refpurpose"> — computes the HMAC for data</span>
|
150
|
+
</dt>
|
151
|
+
<dt>
|
152
|
+
<span class="refentrytitle"><a href="glib-I18N.html">Internationalization</a></span><span class="refpurpose"> — gettext support macros</span>
|
153
|
+
</dt>
|
154
|
+
<dt>
|
155
|
+
<span class="refentrytitle"><a href="glib-Date-and-Time-Functions.html">Date and Time Functions</a></span><span class="refpurpose"> — calendrical calculations and miscellaneous time stuff</span>
|
156
|
+
</dt>
|
157
|
+
<dt>
|
158
|
+
<span class="refentrytitle"><a href="glib-GTimeZone.html">GTimeZone</a></span><span class="refpurpose"> — a structure representing a time zone</span>
|
159
|
+
</dt>
|
160
|
+
<dt>
|
161
|
+
<span class="refentrytitle"><a href="glib-GDateTime.html">GDateTime</a></span><span class="refpurpose"> — a structure representing Date and Time</span>
|
162
|
+
</dt>
|
163
|
+
<dt>
|
164
|
+
<span class="refentrytitle"><a href="glib-Random-Numbers.html">Random Numbers</a></span><span class="refpurpose"> — pseudo-random number generator</span>
|
165
|
+
</dt>
|
166
|
+
<dt>
|
167
|
+
<span class="refentrytitle"><a href="glib-Hook-Functions.html">Hook Functions</a></span><span class="refpurpose"> — support for manipulating lists of hook functions</span>
|
168
|
+
</dt>
|
169
|
+
<dt>
|
170
|
+
<span class="refentrytitle"><a href="glib-Miscellaneous-Utility-Functions.html">Miscellaneous Utility Functions</a></span><span class="refpurpose"> — a selection of portable utility functions</span>
|
171
|
+
</dt>
|
172
|
+
<dt>
|
173
|
+
<span class="refentrytitle"><a href="glib-Lexical-Scanner.html">Lexical Scanner</a></span><span class="refpurpose"> — a general purpose lexical scanner</span>
|
174
|
+
</dt>
|
175
|
+
<dt>
|
176
|
+
<span class="refentrytitle"><a href="glib-Timers.html">Timers</a></span><span class="refpurpose"> — keep track of elapsed time</span>
|
177
|
+
</dt>
|
178
|
+
<dt>
|
179
|
+
<span class="refentrytitle"><a href="glib-Spawning-Processes.html">Spawning Processes</a></span><span class="refpurpose"> — process launching</span>
|
180
|
+
</dt>
|
181
|
+
<dt>
|
182
|
+
<span class="refentrytitle"><a href="glib-File-Utilities.html">File Utilities</a></span><span class="refpurpose"> — various file-related functions</span>
|
183
|
+
</dt>
|
184
|
+
<dt>
|
185
|
+
<span class="refentrytitle"><a href="glib-URI-Functions.html">URI Functions</a></span><span class="refpurpose"> — manipulating URIs</span>
|
186
|
+
</dt>
|
187
|
+
<dt>
|
188
|
+
<span class="refentrytitle"><a href="glib-Hostname-Utilities.html">Hostname Utilities</a></span><span class="refpurpose"> — Internet hostname utilities</span>
|
189
|
+
</dt>
|
190
|
+
<dt>
|
191
|
+
<span class="refentrytitle"><a href="glib-Shell-related-Utilities.html">Shell-related Utilities</a></span><span class="refpurpose"> — shell-like commandline handling</span>
|
192
|
+
</dt>
|
193
|
+
<dt>
|
194
|
+
<span class="refentrytitle"><a href="glib-Commandline-option-parser.html">Commandline option parser</a></span><span class="refpurpose"> — parses commandline options</span>
|
195
|
+
</dt>
|
196
|
+
<dt>
|
197
|
+
<span class="refentrytitle"><a href="glib-Glob-style-pattern-matching.html">Glob-style pattern matching</a></span><span class="refpurpose"> — matches strings against patterns containing '*'
|
198
|
+
(wildcard) and '?' (joker)</span>
|
199
|
+
</dt>
|
200
|
+
<dt>
|
201
|
+
<span class="refentrytitle"><a href="glib-Perl-compatible-regular-expressions.html">Perl-compatible regular expressions</a></span><span class="refpurpose"> — matches strings against regular expressions</span>
|
202
|
+
</dt>
|
203
|
+
<dt>
|
204
|
+
<span class="refentrytitle"><a href="glib-regex-syntax.html">Regular expression syntax</a></span><span class="refpurpose"> —
|
205
|
+
syntax and semantics of regular expressions supported by GRegex
|
206
|
+
</span>
|
207
|
+
</dt>
|
208
|
+
<dt>
|
209
|
+
<span class="refentrytitle"><a href="glib-Simple-XML-Subset-Parser.html">Simple XML Subset Parser</a></span><span class="refpurpose"> — parses a subset of XML</span>
|
210
|
+
</dt>
|
211
|
+
<dt>
|
212
|
+
<span class="refentrytitle"><a href="glib-Key-value-file-parser.html">Key-value file parser</a></span><span class="refpurpose"> — parses .ini-like config files</span>
|
213
|
+
</dt>
|
214
|
+
<dt>
|
215
|
+
<span class="refentrytitle"><a href="glib-Bookmark-file-parser.html">Bookmark file parser</a></span><span class="refpurpose"> — parses files containing bookmarks</span>
|
216
|
+
</dt>
|
217
|
+
<dt>
|
218
|
+
<span class="refentrytitle"><a href="glib-Testing.html">Testing</a></span><span class="refpurpose"> — a test framework</span>
|
219
|
+
</dt>
|
220
|
+
<dt>
|
221
|
+
<span class="refentrytitle"><a href="glib-UNIX-specific-utilities-and-integration.html">UNIX-specific utilities and integration</a></span><span class="refpurpose"> — pipes, signal handling</span>
|
222
|
+
</dt>
|
223
|
+
<dt>
|
224
|
+
<span class="refentrytitle"><a href="glib-Windows-Compatibility-Functions.html">Windows Compatibility Functions</a></span><span class="refpurpose"> — UNIX emulation on Windows</span>
|
225
|
+
</dt>
|
226
|
+
</dl></dd>
|
227
|
+
<dt><span class="chapter"><a href="glib-data-types.html">GLib Data Types</a></span></dt>
|
228
|
+
<dd><dl>
|
229
|
+
<dt>
|
230
|
+
<span class="refentrytitle"><a href="glib-Doubly-Linked-Lists.html">Doubly-Linked Lists</a></span><span class="refpurpose"> — linked lists that can be iterated over in both directions</span>
|
231
|
+
</dt>
|
232
|
+
<dt>
|
233
|
+
<span class="refentrytitle"><a href="glib-Singly-Linked-Lists.html">Singly-Linked Lists</a></span><span class="refpurpose"> — linked lists that can be iterated in one direction</span>
|
234
|
+
</dt>
|
235
|
+
<dt>
|
236
|
+
<span class="refentrytitle"><a href="glib-Double-ended-Queues.html">Double-ended Queues</a></span><span class="refpurpose"> — double-ended queue data structure</span>
|
237
|
+
</dt>
|
238
|
+
<dt>
|
239
|
+
<span class="refentrytitle"><a href="glib-Sequences.html">Sequences</a></span><span class="refpurpose"> — scalable lists</span>
|
240
|
+
</dt>
|
241
|
+
<dt>
|
242
|
+
<span class="refentrytitle"><a href="glib-Trash-Stacks.html">Trash Stacks</a></span><span class="refpurpose"> — maintain a stack of unused allocated memory chunks</span>
|
243
|
+
</dt>
|
244
|
+
<dt>
|
245
|
+
<span class="refentrytitle"><a href="glib-Hash-Tables.html">Hash Tables</a></span><span class="refpurpose"> — associations between keys and values so that
|
246
|
+
given a key the value can be found quickly</span>
|
247
|
+
</dt>
|
248
|
+
<dt>
|
249
|
+
<span class="refentrytitle"><a href="glib-Strings.html">Strings</a></span><span class="refpurpose"> — text buffers which grow automatically
|
250
|
+
as text is added</span>
|
251
|
+
</dt>
|
252
|
+
<dt>
|
253
|
+
<span class="refentrytitle"><a href="glib-String-Chunks.html">String Chunks</a></span><span class="refpurpose"> — efficient storage of groups of strings</span>
|
254
|
+
</dt>
|
255
|
+
<dt>
|
256
|
+
<span class="refentrytitle"><a href="glib-Arrays.html">Arrays</a></span><span class="refpurpose"> — arrays of arbitrary elements which grow
|
257
|
+
automatically as elements are added</span>
|
258
|
+
</dt>
|
259
|
+
<dt>
|
260
|
+
<span class="refentrytitle"><a href="glib-Pointer-Arrays.html">Pointer Arrays</a></span><span class="refpurpose"> — arrays of pointers to any type of data, which
|
261
|
+
grow automatically as new elements are added</span>
|
262
|
+
</dt>
|
263
|
+
<dt>
|
264
|
+
<span class="refentrytitle"><a href="glib-Byte-Arrays.html">Byte Arrays</a></span><span class="refpurpose"> — arrays of bytes</span>
|
265
|
+
</dt>
|
266
|
+
<dt>
|
267
|
+
<span class="refentrytitle"><a href="glib-Balanced-Binary-Trees.html">Balanced Binary Trees</a></span><span class="refpurpose"> — a sorted collection of key/value pairs optimized
|
268
|
+
for searching and traversing in order</span>
|
269
|
+
</dt>
|
270
|
+
<dt>
|
271
|
+
<span class="refentrytitle"><a href="glib-N-ary-Trees.html">N-ary Trees</a></span><span class="refpurpose"> — trees of data with any number of branches</span>
|
272
|
+
</dt>
|
273
|
+
<dt>
|
274
|
+
<span class="refentrytitle"><a href="glib-Quarks.html">Quarks</a></span><span class="refpurpose"> — a 2-way association between a string and a
|
275
|
+
unique integer identifier</span>
|
276
|
+
</dt>
|
277
|
+
<dt>
|
278
|
+
<span class="refentrytitle"><a href="glib-Keyed-Data-Lists.html">Keyed Data Lists</a></span><span class="refpurpose"> — lists of data elements which are accessible by a
|
279
|
+
string or GQuark identifier</span>
|
280
|
+
</dt>
|
281
|
+
<dt>
|
282
|
+
<span class="refentrytitle"><a href="glib-Datasets.html">Datasets</a></span><span class="refpurpose"> — associate groups of data elements with
|
283
|
+
particular memory locations</span>
|
284
|
+
</dt>
|
285
|
+
<dt>
|
286
|
+
<span class="refentrytitle"><a href="glib-GVariantType.html">GVariantType</a></span><span class="refpurpose"> — introduction to the GVariant type system</span>
|
287
|
+
</dt>
|
288
|
+
<dt>
|
289
|
+
<span class="refentrytitle"><a href="glib-GVariant.html">GVariant</a></span><span class="refpurpose"> — strongly typed value datatype</span>
|
290
|
+
</dt>
|
291
|
+
<dt>
|
292
|
+
<span class="refentrytitle"><a href="gvariant-format-strings.html">GVariant Format Strings</a></span><span class="refpurpose"> — varargs conversion of GVariants</span>
|
293
|
+
</dt>
|
294
|
+
<dt>
|
295
|
+
<span class="refentrytitle"><a href="gvariant-text.html">GVariant Text Format</a></span><span class="refpurpose"> — textual representation of GVariants</span>
|
296
|
+
</dt>
|
297
|
+
</dl></dd>
|
298
|
+
<dt><span class="chapter"><a href="deprecated.html">Deprecated APIs</a></span></dt>
|
299
|
+
<dd><dl>
|
300
|
+
<dt>
|
301
|
+
<span class="refentrytitle"><a href="glib-Deprecated-Thread-APIs.html">Deprecated thread API</a></span><span class="refpurpose"> — old thread APIs (for reference only)</span>
|
302
|
+
</dt>
|
303
|
+
<dt>
|
304
|
+
<span class="refentrytitle"><a href="glib-Caches.html">Caches</a></span><span class="refpurpose"> — caches allow sharing of complex data structures
|
305
|
+
to save resources</span>
|
306
|
+
</dt>
|
307
|
+
<dt>
|
308
|
+
<span class="refentrytitle"><a href="glib-Relations-and-Tuples.html">Relations and Tuples</a></span><span class="refpurpose"> — tables of data which can be indexed on any
|
309
|
+
number of fields</span>
|
310
|
+
</dt>
|
311
|
+
<dt>
|
312
|
+
<span class="refentrytitle"><a href="glib-Automatic-String-Completion.html">Automatic String Completion</a></span><span class="refpurpose"> — support for automatic completion using a group
|
313
|
+
of target strings</span>
|
314
|
+
</dt>
|
315
|
+
</dl></dd>
|
316
|
+
<dt><span class="chapter"><a href="tools.html">GLib Tools</a></span></dt>
|
317
|
+
<dd><dl>
|
318
|
+
<dt>
|
319
|
+
<span class="refentrytitle"><a href="glib-gettextize.html">glib-gettextize</a></span><span class="refpurpose"> — gettext internationalization utility</span>
|
320
|
+
</dt>
|
321
|
+
<dt>
|
322
|
+
<span class="refentrytitle"><a href="gtester.html">gtester</a></span><span class="refpurpose"> — test running utility</span>
|
323
|
+
</dt>
|
324
|
+
<dt>
|
325
|
+
<span class="refentrytitle"><a href="gtester-report.html">gtester-report</a></span><span class="refpurpose"> — test report formatting utility</span>
|
326
|
+
</dt>
|
327
|
+
</dl></dd>
|
328
|
+
<dt><span class="index"><a href="api-index-full.html">Index</a></span></dt>
|
329
|
+
<dt><span class="index"><a href="api-index-deprecated.html">Index of deprecated symbols</a></span></dt>
|
330
|
+
<dt><span class="index"><a href="api-index-2-2.html">Index of new symbols in 2.2</a></span></dt>
|
331
|
+
<dt><span class="index"><a href="api-index-2-4.html">Index of new symbols in 2.4</a></span></dt>
|
332
|
+
<dt><span class="index"><a href="api-index-2-6.html">Index of new symbols in 2.6</a></span></dt>
|
333
|
+
<dt><span class="index"><a href="api-index-2-8.html">Index of new symbols in 2.8</a></span></dt>
|
334
|
+
<dt><span class="index"><a href="api-index-2-10.html">Index of new symbols in 2.10</a></span></dt>
|
335
|
+
<dt><span class="index"><a href="api-index-2-12.html">Index of new symbols in 2.12</a></span></dt>
|
336
|
+
<dt><span class="index"><a href="api-index-2-14.html">Index of new symbols in 2.14</a></span></dt>
|
337
|
+
<dt><span class="index"><a href="api-index-2-16.html">Index of new symbols in 2.16</a></span></dt>
|
338
|
+
<dt><span class="index"><a href="api-index-2-18.html">Index of new symbols in 2.18</a></span></dt>
|
339
|
+
<dt><span class="index"><a href="api-index-2-20.html">Index of new symbols in 2.20</a></span></dt>
|
340
|
+
<dt><span class="index"><a href="api-index-2-22.html">Index of new symbols in 2.22</a></span></dt>
|
341
|
+
<dt><span class="index"><a href="api-index-2-24.html">Index of new symbols in 2.24</a></span></dt>
|
342
|
+
<dt><span class="index"><a href="api-index-2-26.html">Index of new symbols in 2.26</a></span></dt>
|
343
|
+
<dt><span class="index"><a href="api-index-2-28.html">Index of new symbols in 2.28</a></span></dt>
|
344
|
+
<dt><span class="index"><a href="api-index-2-30.html">Index of new symbols in 2.30</a></span></dt>
|
345
|
+
<dt><span class="index"><a href="api-index-2-32.html">Index of new symbols in 2.32</a></span></dt>
|
346
|
+
<dt><span class="index"><a href="api-index-2-34.html">Index of new symbols in 2.34</a></span></dt>
|
347
|
+
<dt><span class="index"><a href="api-index-2-36.html">Index of new symbols in 2.36</a></span></dt>
|
348
|
+
<dt><span class="index"><a href="api-index-2-38.html">Index of new symbols in 2.38</a></span></dt>
|
349
|
+
<dt><span class="index"><a href="api-index-2-40.html">Index of new symbols in 2.40</a></span></dt>
|
350
|
+
<dt><span class="index"><a href="api-index-2-42.html">Index of new symbols in 2.42</a></span></dt>
|
351
|
+
<dt><span class="glossary"><a href="annotation-glossary.html">Annotation Glossary</a></span></dt>
|
352
|
+
</dl></div>
|
353
|
+
</div>
|
354
|
+
<div class="footer">
|
355
|
+
<hr>
|
356
|
+
Generated by GTK-Doc V1.21.1</div>
|
357
|
+
</body>
|
358
|
+
</html>
|
@@ -0,0 +1,2782 @@
|
|
1
|
+
<ONLINE href="https://developer.gnome.org/glib/unstable/">
|
2
|
+
<ANCHOR id="glib-building" href="glib/glib-building.html">
|
3
|
+
<ANCHOR id="building" href="glib/glib-building.html#building">
|
4
|
+
<ANCHOR id="dependencies" href="glib/glib-building.html#dependencies">
|
5
|
+
<ANCHOR id="extra-configuration-options" href="glib/glib-building.html#extra-configuration-options">
|
6
|
+
<ANCHOR id="glib-cross-compiling" href="glib/glib-cross-compiling.html">
|
7
|
+
<ANCHOR id="cross" href="glib/glib-cross-compiling.html#cross">
|
8
|
+
<ANCHOR id="cache-file-variables" href="glib/glib-cross-compiling.html#cache-file-variables">
|
9
|
+
<ANCHOR id="glib-programming" href="glib/glib-programming.html">
|
10
|
+
<ANCHOR id="glib-compiling" href="glib/glib-compiling.html">
|
11
|
+
<ANCHOR id="glib-running" href="glib/glib-running.html">
|
12
|
+
<ANCHOR id="setlocale" href="glib/glib-running.html#setlocale">
|
13
|
+
<ANCHOR id="glib-changes" href="glib/glib-changes.html">
|
14
|
+
<ANCHOR id="glib-resources" href="glib/glib-resources.html">
|
15
|
+
<ANCHOR id="glib-Version-Information" href="glib/glib-Version-Information.html">
|
16
|
+
<ANCHOR id="glib-Version-Information.functions" href="glib/glib-Version-Information.html#glib-Version-Information.functions">
|
17
|
+
<ANCHOR id="glib-Version-Information.other" href="glib/glib-Version-Information.html#glib-Version-Information.other">
|
18
|
+
<ANCHOR id="glib-Version-Information.includes" href="glib/glib-Version-Information.html#glib-Version-Information.includes">
|
19
|
+
<ANCHOR id="glib-Version-Information.description" href="glib/glib-Version-Information.html#glib-Version-Information.description">
|
20
|
+
<ANCHOR id="glib-Version-Information.functions_details" href="glib/glib-Version-Information.html#glib-Version-Information.functions_details">
|
21
|
+
<ANCHOR id="glib-check-version" href="glib/glib-Version-Information.html#glib-check-version">
|
22
|
+
<ANCHOR id="GLIB-CHECK-VERSION:CAPS" href="glib/glib-Version-Information.html#GLIB-CHECK-VERSION:CAPS">
|
23
|
+
<ANCHOR id="GLIB-VERSION-2-26:CAPS" href="glib/glib-Version-Information.html#GLIB-VERSION-2-26:CAPS">
|
24
|
+
<ANCHOR id="GLIB-VERSION-2-28:CAPS" href="glib/glib-Version-Information.html#GLIB-VERSION-2-28:CAPS">
|
25
|
+
<ANCHOR id="GLIB-VERSION-2-30:CAPS" href="glib/glib-Version-Information.html#GLIB-VERSION-2-30:CAPS">
|
26
|
+
<ANCHOR id="GLIB-VERSION-2-32:CAPS" href="glib/glib-Version-Information.html#GLIB-VERSION-2-32:CAPS">
|
27
|
+
<ANCHOR id="GLIB-VERSION-2-34:CAPS" href="glib/glib-Version-Information.html#GLIB-VERSION-2-34:CAPS">
|
28
|
+
<ANCHOR id="GLIB-VERSION-2-36:CAPS" href="glib/glib-Version-Information.html#GLIB-VERSION-2-36:CAPS">
|
29
|
+
<ANCHOR id="GLIB-VERSION-2-38:CAPS" href="glib/glib-Version-Information.html#GLIB-VERSION-2-38:CAPS">
|
30
|
+
<ANCHOR id="GLIB-VERSION-2-40:CAPS" href="glib/glib-Version-Information.html#GLIB-VERSION-2-40:CAPS">
|
31
|
+
<ANCHOR id="GLIB-VERSION-2-42:CAPS" href="glib/glib-Version-Information.html#GLIB-VERSION-2-42:CAPS">
|
32
|
+
<ANCHOR id="GLIB-VERSION-MIN-REQUIRED:CAPS" href="glib/glib-Version-Information.html#GLIB-VERSION-MIN-REQUIRED:CAPS">
|
33
|
+
<ANCHOR id="GLIB-VERSION-MAX-ALLOWED:CAPS" href="glib/glib-Version-Information.html#GLIB-VERSION-MAX-ALLOWED:CAPS">
|
34
|
+
<ANCHOR id="glib-Version-Information.other_details" href="glib/glib-Version-Information.html#glib-Version-Information.other_details">
|
35
|
+
<ANCHOR id="glib-major-version" href="glib/glib-Version-Information.html#glib-major-version">
|
36
|
+
<ANCHOR id="glib-minor-version" href="glib/glib-Version-Information.html#glib-minor-version">
|
37
|
+
<ANCHOR id="glib-micro-version" href="glib/glib-Version-Information.html#glib-micro-version">
|
38
|
+
<ANCHOR id="glib-binary-age" href="glib/glib-Version-Information.html#glib-binary-age">
|
39
|
+
<ANCHOR id="glib-interface-age" href="glib/glib-Version-Information.html#glib-interface-age">
|
40
|
+
<ANCHOR id="GLIB-MAJOR-VERSION:CAPS" href="glib/glib-Version-Information.html#GLIB-MAJOR-VERSION:CAPS">
|
41
|
+
<ANCHOR id="GLIB-MINOR-VERSION:CAPS" href="glib/glib-Version-Information.html#GLIB-MINOR-VERSION:CAPS">
|
42
|
+
<ANCHOR id="GLIB-MICRO-VERSION:CAPS" href="glib/glib-Version-Information.html#GLIB-MICRO-VERSION:CAPS">
|
43
|
+
<ANCHOR id="GLIB-DISABLE-DEPRECATION-WARNINGS:CAPS" href="glib/glib-Version-Information.html#GLIB-DISABLE-DEPRECATION-WARNINGS:CAPS">
|
44
|
+
<ANCHOR id="glib-Basic-Types" href="glib/glib-Basic-Types.html">
|
45
|
+
<ANCHOR id="glib-Basic-Types.functions" href="glib/glib-Basic-Types.html#glib-Basic-Types.functions">
|
46
|
+
<ANCHOR id="glib-Basic-Types.other" href="glib/glib-Basic-Types.html#glib-Basic-Types.other">
|
47
|
+
<ANCHOR id="glib-Basic-Types.includes" href="glib/glib-Basic-Types.html#glib-Basic-Types.includes">
|
48
|
+
<ANCHOR id="glib-Basic-Types.description" href="glib/glib-Basic-Types.html#glib-Basic-Types.description">
|
49
|
+
<ANCHOR id="glib-Basic-Types.functions_details" href="glib/glib-Basic-Types.html#glib-Basic-Types.functions_details">
|
50
|
+
<ANCHOR id="G-GINT64-CONSTANT:CAPS" href="glib/glib-Basic-Types.html#G-GINT64-CONSTANT:CAPS">
|
51
|
+
<ANCHOR id="G-GUINT64-CONSTANT:CAPS" href="glib/glib-Basic-Types.html#G-GUINT64-CONSTANT:CAPS">
|
52
|
+
<ANCHOR id="G-GOFFSET-CONSTANT:CAPS" href="glib/glib-Basic-Types.html#G-GOFFSET-CONSTANT:CAPS">
|
53
|
+
<ANCHOR id="glib-Basic-Types.other_details" href="glib/glib-Basic-Types.html#glib-Basic-Types.other_details">
|
54
|
+
<ANCHOR id="gboolean" href="glib/glib-Basic-Types.html#gboolean">
|
55
|
+
<ANCHOR id="gpointer" href="glib/glib-Basic-Types.html#gpointer">
|
56
|
+
<ANCHOR id="gconstpointer" href="glib/glib-Basic-Types.html#gconstpointer">
|
57
|
+
<ANCHOR id="gchar" href="glib/glib-Basic-Types.html#gchar">
|
58
|
+
<ANCHOR id="guchar" href="glib/glib-Basic-Types.html#guchar">
|
59
|
+
<ANCHOR id="gint" href="glib/glib-Basic-Types.html#gint">
|
60
|
+
<ANCHOR id="G-MININT:CAPS" href="glib/glib-Basic-Types.html#G-MININT:CAPS">
|
61
|
+
<ANCHOR id="G-MAXINT:CAPS" href="glib/glib-Basic-Types.html#G-MAXINT:CAPS">
|
62
|
+
<ANCHOR id="guint" href="glib/glib-Basic-Types.html#guint">
|
63
|
+
<ANCHOR id="G-MAXUINT:CAPS" href="glib/glib-Basic-Types.html#G-MAXUINT:CAPS">
|
64
|
+
<ANCHOR id="gshort" href="glib/glib-Basic-Types.html#gshort">
|
65
|
+
<ANCHOR id="G-MINSHORT:CAPS" href="glib/glib-Basic-Types.html#G-MINSHORT:CAPS">
|
66
|
+
<ANCHOR id="G-MAXSHORT:CAPS" href="glib/glib-Basic-Types.html#G-MAXSHORT:CAPS">
|
67
|
+
<ANCHOR id="gushort" href="glib/glib-Basic-Types.html#gushort">
|
68
|
+
<ANCHOR id="G-MAXUSHORT:CAPS" href="glib/glib-Basic-Types.html#G-MAXUSHORT:CAPS">
|
69
|
+
<ANCHOR id="glong" href="glib/glib-Basic-Types.html#glong">
|
70
|
+
<ANCHOR id="G-MINLONG:CAPS" href="glib/glib-Basic-Types.html#G-MINLONG:CAPS">
|
71
|
+
<ANCHOR id="G-MAXLONG:CAPS" href="glib/glib-Basic-Types.html#G-MAXLONG:CAPS">
|
72
|
+
<ANCHOR id="gulong" href="glib/glib-Basic-Types.html#gulong">
|
73
|
+
<ANCHOR id="G-MAXULONG:CAPS" href="glib/glib-Basic-Types.html#G-MAXULONG:CAPS">
|
74
|
+
<ANCHOR id="gint8" href="glib/glib-Basic-Types.html#gint8">
|
75
|
+
<ANCHOR id="G-MININT8:CAPS" href="glib/glib-Basic-Types.html#G-MININT8:CAPS">
|
76
|
+
<ANCHOR id="G-MAXINT8:CAPS" href="glib/glib-Basic-Types.html#G-MAXINT8:CAPS">
|
77
|
+
<ANCHOR id="guint8" href="glib/glib-Basic-Types.html#guint8">
|
78
|
+
<ANCHOR id="G-MAXUINT8:CAPS" href="glib/glib-Basic-Types.html#G-MAXUINT8:CAPS">
|
79
|
+
<ANCHOR id="gint16" href="glib/glib-Basic-Types.html#gint16">
|
80
|
+
<ANCHOR id="G-MININT16:CAPS" href="glib/glib-Basic-Types.html#G-MININT16:CAPS">
|
81
|
+
<ANCHOR id="G-MAXINT16:CAPS" href="glib/glib-Basic-Types.html#G-MAXINT16:CAPS">
|
82
|
+
<ANCHOR id="G-GINT16-MODIFIER:CAPS" href="glib/glib-Basic-Types.html#G-GINT16-MODIFIER:CAPS">
|
83
|
+
<ANCHOR id="G-GINT16-FORMAT:CAPS" href="glib/glib-Basic-Types.html#G-GINT16-FORMAT:CAPS">
|
84
|
+
<ANCHOR id="guint16" href="glib/glib-Basic-Types.html#guint16">
|
85
|
+
<ANCHOR id="G-MAXUINT16:CAPS" href="glib/glib-Basic-Types.html#G-MAXUINT16:CAPS">
|
86
|
+
<ANCHOR id="G-GUINT16-FORMAT:CAPS" href="glib/glib-Basic-Types.html#G-GUINT16-FORMAT:CAPS">
|
87
|
+
<ANCHOR id="gint32" href="glib/glib-Basic-Types.html#gint32">
|
88
|
+
<ANCHOR id="G-MININT32:CAPS" href="glib/glib-Basic-Types.html#G-MININT32:CAPS">
|
89
|
+
<ANCHOR id="G-MAXINT32:CAPS" href="glib/glib-Basic-Types.html#G-MAXINT32:CAPS">
|
90
|
+
<ANCHOR id="G-GINT32-MODIFIER:CAPS" href="glib/glib-Basic-Types.html#G-GINT32-MODIFIER:CAPS">
|
91
|
+
<ANCHOR id="G-GINT32-FORMAT:CAPS" href="glib/glib-Basic-Types.html#G-GINT32-FORMAT:CAPS">
|
92
|
+
<ANCHOR id="guint32" href="glib/glib-Basic-Types.html#guint32">
|
93
|
+
<ANCHOR id="G-MAXUINT32:CAPS" href="glib/glib-Basic-Types.html#G-MAXUINT32:CAPS">
|
94
|
+
<ANCHOR id="G-GUINT32-FORMAT:CAPS" href="glib/glib-Basic-Types.html#G-GUINT32-FORMAT:CAPS">
|
95
|
+
<ANCHOR id="gint64" href="glib/glib-Basic-Types.html#gint64">
|
96
|
+
<ANCHOR id="G-MININT64:CAPS" href="glib/glib-Basic-Types.html#G-MININT64:CAPS">
|
97
|
+
<ANCHOR id="G-MAXINT64:CAPS" href="glib/glib-Basic-Types.html#G-MAXINT64:CAPS">
|
98
|
+
<ANCHOR id="G-GINT64-MODIFIER:CAPS" href="glib/glib-Basic-Types.html#G-GINT64-MODIFIER:CAPS">
|
99
|
+
<ANCHOR id="G-GINT64-FORMAT:CAPS" href="glib/glib-Basic-Types.html#G-GINT64-FORMAT:CAPS">
|
100
|
+
<ANCHOR id="guint64" href="glib/glib-Basic-Types.html#guint64">
|
101
|
+
<ANCHOR id="G-MAXUINT64:CAPS" href="glib/glib-Basic-Types.html#G-MAXUINT64:CAPS">
|
102
|
+
<ANCHOR id="G-GUINT64-FORMAT:CAPS" href="glib/glib-Basic-Types.html#G-GUINT64-FORMAT:CAPS">
|
103
|
+
<ANCHOR id="gfloat" href="glib/glib-Basic-Types.html#gfloat">
|
104
|
+
<ANCHOR id="G-MINFLOAT:CAPS" href="glib/glib-Basic-Types.html#G-MINFLOAT:CAPS">
|
105
|
+
<ANCHOR id="G-MAXFLOAT:CAPS" href="glib/glib-Basic-Types.html#G-MAXFLOAT:CAPS">
|
106
|
+
<ANCHOR id="gdouble" href="glib/glib-Basic-Types.html#gdouble">
|
107
|
+
<ANCHOR id="G-MINDOUBLE:CAPS" href="glib/glib-Basic-Types.html#G-MINDOUBLE:CAPS">
|
108
|
+
<ANCHOR id="G-MAXDOUBLE:CAPS" href="glib/glib-Basic-Types.html#G-MAXDOUBLE:CAPS">
|
109
|
+
<ANCHOR id="gsize" href="glib/glib-Basic-Types.html#gsize">
|
110
|
+
<ANCHOR id="G-MAXSIZE:CAPS" href="glib/glib-Basic-Types.html#G-MAXSIZE:CAPS">
|
111
|
+
<ANCHOR id="G-GSIZE-MODIFIER:CAPS" href="glib/glib-Basic-Types.html#G-GSIZE-MODIFIER:CAPS">
|
112
|
+
<ANCHOR id="G-GSIZE-FORMAT:CAPS" href="glib/glib-Basic-Types.html#G-GSIZE-FORMAT:CAPS">
|
113
|
+
<ANCHOR id="gssize" href="glib/glib-Basic-Types.html#gssize">
|
114
|
+
<ANCHOR id="G-MINSSIZE:CAPS" href="glib/glib-Basic-Types.html#G-MINSSIZE:CAPS">
|
115
|
+
<ANCHOR id="G-MAXSSIZE:CAPS" href="glib/glib-Basic-Types.html#G-MAXSSIZE:CAPS">
|
116
|
+
<ANCHOR id="G-GSSIZE-FORMAT:CAPS" href="glib/glib-Basic-Types.html#G-GSSIZE-FORMAT:CAPS">
|
117
|
+
<ANCHOR id="goffset" href="glib/glib-Basic-Types.html#goffset">
|
118
|
+
<ANCHOR id="G-MINOFFSET:CAPS" href="glib/glib-Basic-Types.html#G-MINOFFSET:CAPS">
|
119
|
+
<ANCHOR id="G-MAXOFFSET:CAPS" href="glib/glib-Basic-Types.html#G-MAXOFFSET:CAPS">
|
120
|
+
<ANCHOR id="G-GOFFSET-MODIFIER:CAPS" href="glib/glib-Basic-Types.html#G-GOFFSET-MODIFIER:CAPS">
|
121
|
+
<ANCHOR id="G-GOFFSET-FORMAT:CAPS" href="glib/glib-Basic-Types.html#G-GOFFSET-FORMAT:CAPS">
|
122
|
+
<ANCHOR id="gintptr" href="glib/glib-Basic-Types.html#gintptr">
|
123
|
+
<ANCHOR id="G-GINTPTR-MODIFIER:CAPS" href="glib/glib-Basic-Types.html#G-GINTPTR-MODIFIER:CAPS">
|
124
|
+
<ANCHOR id="G-GINTPTR-FORMAT:CAPS" href="glib/glib-Basic-Types.html#G-GINTPTR-FORMAT:CAPS">
|
125
|
+
<ANCHOR id="guintptr" href="glib/glib-Basic-Types.html#guintptr">
|
126
|
+
<ANCHOR id="G-GUINTPTR-FORMAT:CAPS" href="glib/glib-Basic-Types.html#G-GUINTPTR-FORMAT:CAPS">
|
127
|
+
<ANCHOR id="glib-Standard-Macros" href="glib/glib-Standard-Macros.html">
|
128
|
+
<ANCHOR id="glib-Standard-Macros.functions" href="glib/glib-Standard-Macros.html#glib-Standard-Macros.functions">
|
129
|
+
<ANCHOR id="glib-Standard-Macros.other" href="glib/glib-Standard-Macros.html#glib-Standard-Macros.other">
|
130
|
+
<ANCHOR id="glib-Standard-Macros.includes" href="glib/glib-Standard-Macros.html#glib-Standard-Macros.includes">
|
131
|
+
<ANCHOR id="glib-Standard-Macros.description" href="glib/glib-Standard-Macros.html#glib-Standard-Macros.description">
|
132
|
+
<ANCHOR id="glib-Standard-Macros.functions_details" href="glib/glib-Standard-Macros.html#glib-Standard-Macros.functions_details">
|
133
|
+
<ANCHOR id="G-IS-DIR-SEPARATOR:CAPS" href="glib/glib-Standard-Macros.html#G-IS-DIR-SEPARATOR:CAPS">
|
134
|
+
<ANCHOR id="NULL:CAPS" href="glib/glib-Standard-Macros.html#NULL:CAPS">
|
135
|
+
<ANCHOR id="MIN:CAPS" href="glib/glib-Standard-Macros.html#MIN:CAPS">
|
136
|
+
<ANCHOR id="MAX:CAPS" href="glib/glib-Standard-Macros.html#MAX:CAPS">
|
137
|
+
<ANCHOR id="ABS:CAPS" href="glib/glib-Standard-Macros.html#ABS:CAPS">
|
138
|
+
<ANCHOR id="CLAMP:CAPS" href="glib/glib-Standard-Macros.html#CLAMP:CAPS">
|
139
|
+
<ANCHOR id="G-STRUCT-MEMBER:CAPS" href="glib/glib-Standard-Macros.html#G-STRUCT-MEMBER:CAPS">
|
140
|
+
<ANCHOR id="G-STRUCT-MEMBER-P:CAPS" href="glib/glib-Standard-Macros.html#G-STRUCT-MEMBER-P:CAPS">
|
141
|
+
<ANCHOR id="G-STRUCT-OFFSET:CAPS" href="glib/glib-Standard-Macros.html#G-STRUCT-OFFSET:CAPS">
|
142
|
+
<ANCHOR id="G-N-ELEMENTS:CAPS" href="glib/glib-Standard-Macros.html#G-N-ELEMENTS:CAPS">
|
143
|
+
<ANCHOR id="glib-Standard-Macros.other_details" href="glib/glib-Standard-Macros.html#glib-Standard-Macros.other_details">
|
144
|
+
<ANCHOR id="G-OS-WIN32:CAPS" href="glib/glib-Standard-Macros.html#G-OS-WIN32:CAPS">
|
145
|
+
<ANCHOR id="G-OS-UNIX:CAPS" href="glib/glib-Standard-Macros.html#G-OS-UNIX:CAPS">
|
146
|
+
<ANCHOR id="G-DIR-SEPARATOR:CAPS" href="glib/glib-Standard-Macros.html#G-DIR-SEPARATOR:CAPS">
|
147
|
+
<ANCHOR id="G-DIR-SEPARATOR-S:CAPS" href="glib/glib-Standard-Macros.html#G-DIR-SEPARATOR-S:CAPS">
|
148
|
+
<ANCHOR id="G-SEARCHPATH-SEPARATOR:CAPS" href="glib/glib-Standard-Macros.html#G-SEARCHPATH-SEPARATOR:CAPS">
|
149
|
+
<ANCHOR id="G-SEARCHPATH-SEPARATOR-S:CAPS" href="glib/glib-Standard-Macros.html#G-SEARCHPATH-SEPARATOR-S:CAPS">
|
150
|
+
<ANCHOR id="TRUE:CAPS" href="glib/glib-Standard-Macros.html#TRUE:CAPS">
|
151
|
+
<ANCHOR id="FALSE:CAPS" href="glib/glib-Standard-Macros.html#FALSE:CAPS">
|
152
|
+
<ANCHOR id="G-MEM-ALIGN:CAPS" href="glib/glib-Standard-Macros.html#G-MEM-ALIGN:CAPS">
|
153
|
+
<ANCHOR id="G-CONST-RETURN:CAPS" href="glib/glib-Standard-Macros.html#G-CONST-RETURN:CAPS">
|
154
|
+
<ANCHOR id="glib-Type-Conversion-Macros" href="glib/glib-Type-Conversion-Macros.html">
|
155
|
+
<ANCHOR id="glib-Type-Conversion-Macros.functions" href="glib/glib-Type-Conversion-Macros.html#glib-Type-Conversion-Macros.functions">
|
156
|
+
<ANCHOR id="glib-Type-Conversion-Macros.includes" href="glib/glib-Type-Conversion-Macros.html#glib-Type-Conversion-Macros.includes">
|
157
|
+
<ANCHOR id="glib-Type-Conversion-Macros.description" href="glib/glib-Type-Conversion-Macros.html#glib-Type-Conversion-Macros.description">
|
158
|
+
<ANCHOR id="glib-Type-Conversion-Macros.functions_details" href="glib/glib-Type-Conversion-Macros.html#glib-Type-Conversion-Macros.functions_details">
|
159
|
+
<ANCHOR id="GINT-TO-POINTER:CAPS" href="glib/glib-Type-Conversion-Macros.html#GINT-TO-POINTER:CAPS">
|
160
|
+
<ANCHOR id="GPOINTER-TO-INT:CAPS" href="glib/glib-Type-Conversion-Macros.html#GPOINTER-TO-INT:CAPS">
|
161
|
+
<ANCHOR id="GUINT-TO-POINTER:CAPS" href="glib/glib-Type-Conversion-Macros.html#GUINT-TO-POINTER:CAPS">
|
162
|
+
<ANCHOR id="GPOINTER-TO-UINT:CAPS" href="glib/glib-Type-Conversion-Macros.html#GPOINTER-TO-UINT:CAPS">
|
163
|
+
<ANCHOR id="GSIZE-TO-POINTER:CAPS" href="glib/glib-Type-Conversion-Macros.html#GSIZE-TO-POINTER:CAPS">
|
164
|
+
<ANCHOR id="GPOINTER-TO-SIZE:CAPS" href="glib/glib-Type-Conversion-Macros.html#GPOINTER-TO-SIZE:CAPS">
|
165
|
+
<ANCHOR id="glib-Type-Conversion-Macros.other_details" href="glib/glib-Type-Conversion-Macros.html#glib-Type-Conversion-Macros.other_details">
|
166
|
+
<ANCHOR id="glib-Byte-Order-Macros" href="glib/glib-Byte-Order-Macros.html">
|
167
|
+
<ANCHOR id="glib-Byte-Order-Macros.functions" href="glib/glib-Byte-Order-Macros.html#glib-Byte-Order-Macros.functions">
|
168
|
+
<ANCHOR id="glib-Byte-Order-Macros.other" href="glib/glib-Byte-Order-Macros.html#glib-Byte-Order-Macros.other">
|
169
|
+
<ANCHOR id="glib-Byte-Order-Macros.includes" href="glib/glib-Byte-Order-Macros.html#glib-Byte-Order-Macros.includes">
|
170
|
+
<ANCHOR id="glib-Byte-Order-Macros.description" href="glib/glib-Byte-Order-Macros.html#glib-Byte-Order-Macros.description">
|
171
|
+
<ANCHOR id="glib-Byte-Order-Macros.functions_details" href="glib/glib-Byte-Order-Macros.html#glib-Byte-Order-Macros.functions_details">
|
172
|
+
<ANCHOR id="g-htonl" href="glib/glib-Byte-Order-Macros.html#g-htonl">
|
173
|
+
<ANCHOR id="g-htons" href="glib/glib-Byte-Order-Macros.html#g-htons">
|
174
|
+
<ANCHOR id="g-ntohl" href="glib/glib-Byte-Order-Macros.html#g-ntohl">
|
175
|
+
<ANCHOR id="g-ntohs" href="glib/glib-Byte-Order-Macros.html#g-ntohs">
|
176
|
+
<ANCHOR id="GINT-FROM-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GINT-FROM-BE:CAPS">
|
177
|
+
<ANCHOR id="GINT-FROM-LE:CAPS" href="glib/glib-Byte-Order-Macros.html#GINT-FROM-LE:CAPS">
|
178
|
+
<ANCHOR id="GINT-TO-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GINT-TO-BE:CAPS">
|
179
|
+
<ANCHOR id="GINT-TO-LE:CAPS" href="glib/glib-Byte-Order-Macros.html#GINT-TO-LE:CAPS">
|
180
|
+
<ANCHOR id="GUINT-FROM-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GUINT-FROM-BE:CAPS">
|
181
|
+
<ANCHOR id="GUINT-FROM-LE:CAPS" href="glib/glib-Byte-Order-Macros.html#GUINT-FROM-LE:CAPS">
|
182
|
+
<ANCHOR id="GUINT-TO-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GUINT-TO-BE:CAPS">
|
183
|
+
<ANCHOR id="GUINT-TO-LE:CAPS" href="glib/glib-Byte-Order-Macros.html#GUINT-TO-LE:CAPS">
|
184
|
+
<ANCHOR id="GLONG-FROM-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GLONG-FROM-BE:CAPS">
|
185
|
+
<ANCHOR id="GLONG-FROM-LE:CAPS" href="glib/glib-Byte-Order-Macros.html#GLONG-FROM-LE:CAPS">
|
186
|
+
<ANCHOR id="GLONG-TO-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GLONG-TO-BE:CAPS">
|
187
|
+
<ANCHOR id="GLONG-TO-LE:CAPS" href="glib/glib-Byte-Order-Macros.html#GLONG-TO-LE:CAPS">
|
188
|
+
<ANCHOR id="GULONG-FROM-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GULONG-FROM-BE:CAPS">
|
189
|
+
<ANCHOR id="GULONG-FROM-LE:CAPS" href="glib/glib-Byte-Order-Macros.html#GULONG-FROM-LE:CAPS">
|
190
|
+
<ANCHOR id="GULONG-TO-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GULONG-TO-BE:CAPS">
|
191
|
+
<ANCHOR id="GULONG-TO-LE:CAPS" href="glib/glib-Byte-Order-Macros.html#GULONG-TO-LE:CAPS">
|
192
|
+
<ANCHOR id="GSIZE-FROM-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GSIZE-FROM-BE:CAPS">
|
193
|
+
<ANCHOR id="GSIZE-FROM-LE:CAPS" href="glib/glib-Byte-Order-Macros.html#GSIZE-FROM-LE:CAPS">
|
194
|
+
<ANCHOR id="GSIZE-TO-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GSIZE-TO-BE:CAPS">
|
195
|
+
<ANCHOR id="GSIZE-TO-LE:CAPS" href="glib/glib-Byte-Order-Macros.html#GSIZE-TO-LE:CAPS">
|
196
|
+
<ANCHOR id="GSSIZE-FROM-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GSSIZE-FROM-BE:CAPS">
|
197
|
+
<ANCHOR id="GSSIZE-FROM-LE:CAPS" href="glib/glib-Byte-Order-Macros.html#GSSIZE-FROM-LE:CAPS">
|
198
|
+
<ANCHOR id="GSSIZE-TO-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GSSIZE-TO-BE:CAPS">
|
199
|
+
<ANCHOR id="GSSIZE-TO-LE:CAPS" href="glib/glib-Byte-Order-Macros.html#GSSIZE-TO-LE:CAPS">
|
200
|
+
<ANCHOR id="GINT16-FROM-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GINT16-FROM-BE:CAPS">
|
201
|
+
<ANCHOR id="GINT16-FROM-LE:CAPS" href="glib/glib-Byte-Order-Macros.html#GINT16-FROM-LE:CAPS">
|
202
|
+
<ANCHOR id="GINT16-TO-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GINT16-TO-BE:CAPS">
|
203
|
+
<ANCHOR id="GINT16-TO-LE:CAPS" href="glib/glib-Byte-Order-Macros.html#GINT16-TO-LE:CAPS">
|
204
|
+
<ANCHOR id="GUINT16-FROM-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GUINT16-FROM-BE:CAPS">
|
205
|
+
<ANCHOR id="GUINT16-FROM-LE:CAPS" href="glib/glib-Byte-Order-Macros.html#GUINT16-FROM-LE:CAPS">
|
206
|
+
<ANCHOR id="GUINT16-TO-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GUINT16-TO-BE:CAPS">
|
207
|
+
<ANCHOR id="GUINT16-TO-LE:CAPS" href="glib/glib-Byte-Order-Macros.html#GUINT16-TO-LE:CAPS">
|
208
|
+
<ANCHOR id="GINT32-FROM-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GINT32-FROM-BE:CAPS">
|
209
|
+
<ANCHOR id="GINT32-FROM-LE:CAPS" href="glib/glib-Byte-Order-Macros.html#GINT32-FROM-LE:CAPS">
|
210
|
+
<ANCHOR id="GINT32-TO-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GINT32-TO-BE:CAPS">
|
211
|
+
<ANCHOR id="GINT32-TO-LE:CAPS" href="glib/glib-Byte-Order-Macros.html#GINT32-TO-LE:CAPS">
|
212
|
+
<ANCHOR id="GUINT32-FROM-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GUINT32-FROM-BE:CAPS">
|
213
|
+
<ANCHOR id="GUINT32-FROM-LE:CAPS" href="glib/glib-Byte-Order-Macros.html#GUINT32-FROM-LE:CAPS">
|
214
|
+
<ANCHOR id="GUINT32-TO-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GUINT32-TO-BE:CAPS">
|
215
|
+
<ANCHOR id="GUINT32-TO-LE:CAPS" href="glib/glib-Byte-Order-Macros.html#GUINT32-TO-LE:CAPS">
|
216
|
+
<ANCHOR id="GINT64-FROM-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GINT64-FROM-BE:CAPS">
|
217
|
+
<ANCHOR id="GINT64-FROM-LE:CAPS" href="glib/glib-Byte-Order-Macros.html#GINT64-FROM-LE:CAPS">
|
218
|
+
<ANCHOR id="GINT64-TO-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GINT64-TO-BE:CAPS">
|
219
|
+
<ANCHOR id="GINT64-TO-LE:CAPS" href="glib/glib-Byte-Order-Macros.html#GINT64-TO-LE:CAPS">
|
220
|
+
<ANCHOR id="GUINT64-FROM-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GUINT64-FROM-BE:CAPS">
|
221
|
+
<ANCHOR id="GUINT64-FROM-LE:CAPS" href="glib/glib-Byte-Order-Macros.html#GUINT64-FROM-LE:CAPS">
|
222
|
+
<ANCHOR id="GUINT64-TO-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GUINT64-TO-BE:CAPS">
|
223
|
+
<ANCHOR id="GUINT64-TO-LE:CAPS" href="glib/glib-Byte-Order-Macros.html#GUINT64-TO-LE:CAPS">
|
224
|
+
<ANCHOR id="GUINT16-SWAP-BE-PDP:CAPS" href="glib/glib-Byte-Order-Macros.html#GUINT16-SWAP-BE-PDP:CAPS">
|
225
|
+
<ANCHOR id="GUINT16-SWAP-LE-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GUINT16-SWAP-LE-BE:CAPS">
|
226
|
+
<ANCHOR id="GUINT16-SWAP-LE-PDP:CAPS" href="glib/glib-Byte-Order-Macros.html#GUINT16-SWAP-LE-PDP:CAPS">
|
227
|
+
<ANCHOR id="GUINT32-SWAP-BE-PDP:CAPS" href="glib/glib-Byte-Order-Macros.html#GUINT32-SWAP-BE-PDP:CAPS">
|
228
|
+
<ANCHOR id="GUINT32-SWAP-LE-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GUINT32-SWAP-LE-BE:CAPS">
|
229
|
+
<ANCHOR id="GUINT32-SWAP-LE-PDP:CAPS" href="glib/glib-Byte-Order-Macros.html#GUINT32-SWAP-LE-PDP:CAPS">
|
230
|
+
<ANCHOR id="GUINT64-SWAP-LE-BE:CAPS" href="glib/glib-Byte-Order-Macros.html#GUINT64-SWAP-LE-BE:CAPS">
|
231
|
+
<ANCHOR id="glib-Byte-Order-Macros.other_details" href="glib/glib-Byte-Order-Macros.html#glib-Byte-Order-Macros.other_details">
|
232
|
+
<ANCHOR id="G-BYTE-ORDER:CAPS" href="glib/glib-Byte-Order-Macros.html#G-BYTE-ORDER:CAPS">
|
233
|
+
<ANCHOR id="G-LITTLE-ENDIAN:CAPS" href="glib/glib-Byte-Order-Macros.html#G-LITTLE-ENDIAN:CAPS">
|
234
|
+
<ANCHOR id="G-BIG-ENDIAN:CAPS" href="glib/glib-Byte-Order-Macros.html#G-BIG-ENDIAN:CAPS">
|
235
|
+
<ANCHOR id="G-PDP-ENDIAN:CAPS" href="glib/glib-Byte-Order-Macros.html#G-PDP-ENDIAN:CAPS">
|
236
|
+
<ANCHOR id="glib-Numerical-Definitions" href="glib/glib-Numerical-Definitions.html">
|
237
|
+
<ANCHOR id="glib-Numerical-Definitions.other" href="glib/glib-Numerical-Definitions.html#glib-Numerical-Definitions.other">
|
238
|
+
<ANCHOR id="glib-Numerical-Definitions.includes" href="glib/glib-Numerical-Definitions.html#glib-Numerical-Definitions.includes">
|
239
|
+
<ANCHOR id="glib-Numerical-Definitions.description" href="glib/glib-Numerical-Definitions.html#glib-Numerical-Definitions.description">
|
240
|
+
<ANCHOR id="glib-Numerical-Definitions.functions_details" href="glib/glib-Numerical-Definitions.html#glib-Numerical-Definitions.functions_details">
|
241
|
+
<ANCHOR id="glib-Numerical-Definitions.other_details" href="glib/glib-Numerical-Definitions.html#glib-Numerical-Definitions.other_details">
|
242
|
+
<ANCHOR id="G-IEEE754-FLOAT-BIAS:CAPS" href="glib/glib-Numerical-Definitions.html#G-IEEE754-FLOAT-BIAS:CAPS">
|
243
|
+
<ANCHOR id="G-IEEE754-DOUBLE-BIAS:CAPS" href="glib/glib-Numerical-Definitions.html#G-IEEE754-DOUBLE-BIAS:CAPS">
|
244
|
+
<ANCHOR id="GFloatIEEE754" href="glib/glib-Numerical-Definitions.html#GFloatIEEE754">
|
245
|
+
<ANCHOR id="GDoubleIEEE754" href="glib/glib-Numerical-Definitions.html#GDoubleIEEE754">
|
246
|
+
<ANCHOR id="G-E:CAPS" href="glib/glib-Numerical-Definitions.html#G-E:CAPS">
|
247
|
+
<ANCHOR id="G-LN2:CAPS" href="glib/glib-Numerical-Definitions.html#G-LN2:CAPS">
|
248
|
+
<ANCHOR id="G-LN10:CAPS" href="glib/glib-Numerical-Definitions.html#G-LN10:CAPS">
|
249
|
+
<ANCHOR id="G-PI:CAPS" href="glib/glib-Numerical-Definitions.html#G-PI:CAPS">
|
250
|
+
<ANCHOR id="G-PI-2:CAPS" href="glib/glib-Numerical-Definitions.html#G-PI-2:CAPS">
|
251
|
+
<ANCHOR id="G-PI-4:CAPS" href="glib/glib-Numerical-Definitions.html#G-PI-4:CAPS">
|
252
|
+
<ANCHOR id="G-SQRT2:CAPS" href="glib/glib-Numerical-Definitions.html#G-SQRT2:CAPS">
|
253
|
+
<ANCHOR id="G-LOG-2-BASE-10:CAPS" href="glib/glib-Numerical-Definitions.html#G-LOG-2-BASE-10:CAPS">
|
254
|
+
<ANCHOR id="glib-Miscellaneous-Macros" href="glib/glib-Miscellaneous-Macros.html">
|
255
|
+
<ANCHOR id="glib-Miscellaneous-Macros.functions" href="glib/glib-Miscellaneous-Macros.html#glib-Miscellaneous-Macros.functions">
|
256
|
+
<ANCHOR id="glib-Miscellaneous-Macros.other" href="glib/glib-Miscellaneous-Macros.html#glib-Miscellaneous-Macros.other">
|
257
|
+
<ANCHOR id="glib-Miscellaneous-Macros.includes" href="glib/glib-Miscellaneous-Macros.html#glib-Miscellaneous-Macros.includes">
|
258
|
+
<ANCHOR id="glib-Miscellaneous-Macros.description" href="glib/glib-Miscellaneous-Macros.html#glib-Miscellaneous-Macros.description">
|
259
|
+
<ANCHOR id="glib-Miscellaneous-Macros.functions_details" href="glib/glib-Miscellaneous-Macros.html#glib-Miscellaneous-Macros.functions_details">
|
260
|
+
<ANCHOR id="G-VA-COPY:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-VA-COPY:CAPS">
|
261
|
+
<ANCHOR id="G-STRINGIFY:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-STRINGIFY:CAPS">
|
262
|
+
<ANCHOR id="G-PASTE:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-PASTE:CAPS">
|
263
|
+
<ANCHOR id="G-STATIC-ASSERT:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-STATIC-ASSERT:CAPS">
|
264
|
+
<ANCHOR id="G-STATIC-ASSERT-EXPR:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-STATIC-ASSERT-EXPR:CAPS">
|
265
|
+
<ANCHOR id="G-GNUC-ALLOC-SIZE:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GNUC-ALLOC-SIZE:CAPS">
|
266
|
+
<ANCHOR id="G-GNUC-ALLOC-SIZE2:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GNUC-ALLOC-SIZE2:CAPS">
|
267
|
+
<ANCHOR id="G-GNUC-DEPRECATED-FOR:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GNUC-DEPRECATED-FOR:CAPS">
|
268
|
+
<ANCHOR id="G-GNUC-PRINTF:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GNUC-PRINTF:CAPS">
|
269
|
+
<ANCHOR id="G-GNUC-SCANF:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GNUC-SCANF:CAPS">
|
270
|
+
<ANCHOR id="G-GNUC-FORMAT:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GNUC-FORMAT:CAPS">
|
271
|
+
<ANCHOR id="G-DEPRECATED-FOR:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-DEPRECATED-FOR:CAPS">
|
272
|
+
<ANCHOR id="G-UNAVAILABLE:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-UNAVAILABLE:CAPS">
|
273
|
+
<ANCHOR id="G-LIKELY:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-LIKELY:CAPS">
|
274
|
+
<ANCHOR id="G-UNLIKELY:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-UNLIKELY:CAPS">
|
275
|
+
<ANCHOR id="G-STRFUNC:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-STRFUNC:CAPS">
|
276
|
+
<ANCHOR id="glib-Miscellaneous-Macros.other_details" href="glib/glib-Miscellaneous-Macros.html#glib-Miscellaneous-Macros.other_details">
|
277
|
+
<ANCHOR id="G-INLINE-FUNC:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-INLINE-FUNC:CAPS">
|
278
|
+
<ANCHOR id="G-STMT-START:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-STMT-START:CAPS">
|
279
|
+
<ANCHOR id="G-STMT-END:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-STMT-END:CAPS">
|
280
|
+
<ANCHOR id="G-BEGIN-DECLS:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-BEGIN-DECLS:CAPS">
|
281
|
+
<ANCHOR id="G-END-DECLS:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-END-DECLS:CAPS">
|
282
|
+
<ANCHOR id="G-GNUC-EXTENSION:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GNUC-EXTENSION:CAPS">
|
283
|
+
<ANCHOR id="G-GNUC-CONST:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GNUC-CONST:CAPS">
|
284
|
+
<ANCHOR id="G-GNUC-PURE:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GNUC-PURE:CAPS">
|
285
|
+
<ANCHOR id="G-GNUC-MALLOC:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GNUC-MALLOC:CAPS">
|
286
|
+
<ANCHOR id="G-GNUC-DEPRECATED:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GNUC-DEPRECATED:CAPS">
|
287
|
+
<ANCHOR id="G-GNUC-BEGIN-IGNORE-DEPRECATIONS:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GNUC-BEGIN-IGNORE-DEPRECATIONS:CAPS">
|
288
|
+
<ANCHOR id="G-GNUC-END-IGNORE-DEPRECATIONS:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GNUC-END-IGNORE-DEPRECATIONS:CAPS">
|
289
|
+
<ANCHOR id="G-GNUC-NORETURN:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GNUC-NORETURN:CAPS">
|
290
|
+
<ANCHOR id="G-GNUC-UNUSED:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GNUC-UNUSED:CAPS">
|
291
|
+
<ANCHOR id="G-GNUC-NULL-TERMINATED:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GNUC-NULL-TERMINATED:CAPS">
|
292
|
+
<ANCHOR id="G-GNUC-WARN-UNUSED-RESULT:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GNUC-WARN-UNUSED-RESULT:CAPS">
|
293
|
+
<ANCHOR id="G-GNUC-FUNCTION:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GNUC-FUNCTION:CAPS">
|
294
|
+
<ANCHOR id="G-GNUC-PRETTY-FUNCTION:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GNUC-PRETTY-FUNCTION:CAPS">
|
295
|
+
<ANCHOR id="G-GNUC-NO-INSTRUMENT:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GNUC-NO-INSTRUMENT:CAPS">
|
296
|
+
<ANCHOR id="G-HAVE-GNUC-VISIBILITY:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-HAVE-GNUC-VISIBILITY:CAPS">
|
297
|
+
<ANCHOR id="G-GNUC-INTERNAL:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GNUC-INTERNAL:CAPS">
|
298
|
+
<ANCHOR id="G-GNUC-MAY-ALIAS:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-GNUC-MAY-ALIAS:CAPS">
|
299
|
+
<ANCHOR id="G-DEPRECATED:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-DEPRECATED:CAPS">
|
300
|
+
<ANCHOR id="G-STRLOC:CAPS" href="glib/glib-Miscellaneous-Macros.html#G-STRLOC:CAPS">
|
301
|
+
<ANCHOR id="glib-Atomic-Operations" href="glib/glib-Atomic-Operations.html">
|
302
|
+
<ANCHOR id="glib-Atomic-Operations.functions" href="glib/glib-Atomic-Operations.html#glib-Atomic-Operations.functions">
|
303
|
+
<ANCHOR id="glib-Atomic-Operations.other" href="glib/glib-Atomic-Operations.html#glib-Atomic-Operations.other">
|
304
|
+
<ANCHOR id="glib-Atomic-Operations.includes" href="glib/glib-Atomic-Operations.html#glib-Atomic-Operations.includes">
|
305
|
+
<ANCHOR id="glib-Atomic-Operations.description" href="glib/glib-Atomic-Operations.html#glib-Atomic-Operations.description">
|
306
|
+
<ANCHOR id="glib-Atomic-Operations.functions_details" href="glib/glib-Atomic-Operations.html#glib-Atomic-Operations.functions_details">
|
307
|
+
<ANCHOR id="g-atomic-int-get" href="glib/glib-Atomic-Operations.html#g-atomic-int-get">
|
308
|
+
<ANCHOR id="g-atomic-int-set" href="glib/glib-Atomic-Operations.html#g-atomic-int-set">
|
309
|
+
<ANCHOR id="g-atomic-int-inc" href="glib/glib-Atomic-Operations.html#g-atomic-int-inc">
|
310
|
+
<ANCHOR id="g-atomic-int-dec-and-test" href="glib/glib-Atomic-Operations.html#g-atomic-int-dec-and-test">
|
311
|
+
<ANCHOR id="g-atomic-int-compare-and-exchange" href="glib/glib-Atomic-Operations.html#g-atomic-int-compare-and-exchange">
|
312
|
+
<ANCHOR id="g-atomic-int-add" href="glib/glib-Atomic-Operations.html#g-atomic-int-add">
|
313
|
+
<ANCHOR id="g-atomic-int-and" href="glib/glib-Atomic-Operations.html#g-atomic-int-and">
|
314
|
+
<ANCHOR id="g-atomic-int-or" href="glib/glib-Atomic-Operations.html#g-atomic-int-or">
|
315
|
+
<ANCHOR id="g-atomic-int-xor" href="glib/glib-Atomic-Operations.html#g-atomic-int-xor">
|
316
|
+
<ANCHOR id="g-atomic-pointer-get" href="glib/glib-Atomic-Operations.html#g-atomic-pointer-get">
|
317
|
+
<ANCHOR id="g-atomic-pointer-set" href="glib/glib-Atomic-Operations.html#g-atomic-pointer-set">
|
318
|
+
<ANCHOR id="g-atomic-pointer-compare-and-exchange" href="glib/glib-Atomic-Operations.html#g-atomic-pointer-compare-and-exchange">
|
319
|
+
<ANCHOR id="g-atomic-pointer-add" href="glib/glib-Atomic-Operations.html#g-atomic-pointer-add">
|
320
|
+
<ANCHOR id="g-atomic-pointer-and" href="glib/glib-Atomic-Operations.html#g-atomic-pointer-and">
|
321
|
+
<ANCHOR id="g-atomic-pointer-or" href="glib/glib-Atomic-Operations.html#g-atomic-pointer-or">
|
322
|
+
<ANCHOR id="g-atomic-pointer-xor" href="glib/glib-Atomic-Operations.html#g-atomic-pointer-xor">
|
323
|
+
<ANCHOR id="g-atomic-int-exchange-and-add" href="glib/glib-Atomic-Operations.html#g-atomic-int-exchange-and-add">
|
324
|
+
<ANCHOR id="glib-Atomic-Operations.other_details" href="glib/glib-Atomic-Operations.html#glib-Atomic-Operations.other_details">
|
325
|
+
<ANCHOR id="G-ATOMIC-LOCK-FREE:CAPS" href="glib/glib-Atomic-Operations.html#G-ATOMIC-LOCK-FREE:CAPS">
|
326
|
+
<ANCHOR id="glib-Atomic-Operations.see-also" href="glib/glib-Atomic-Operations.html#glib-Atomic-Operations.see-also">
|
327
|
+
<ANCHOR id="glib-The-Main-Event-Loop" href="glib/glib-The-Main-Event-Loop.html">
|
328
|
+
<ANCHOR id="glib-The-Main-Event-Loop.functions" href="glib/glib-The-Main-Event-Loop.html#glib-The-Main-Event-Loop.functions">
|
329
|
+
<ANCHOR id="glib-The-Main-Event-Loop.other" href="glib/glib-The-Main-Event-Loop.html#glib-The-Main-Event-Loop.other">
|
330
|
+
<ANCHOR id="glib-The-Main-Event-Loop.includes" href="glib/glib-The-Main-Event-Loop.html#glib-The-Main-Event-Loop.includes">
|
331
|
+
<ANCHOR id="glib-The-Main-Event-Loop.description" href="glib/glib-The-Main-Event-Loop.html#glib-The-Main-Event-Loop.description">
|
332
|
+
<ANCHOR id="glib-The-Main-Event-Loop.functions_details" href="glib/glib-The-Main-Event-Loop.html#glib-The-Main-Event-Loop.functions_details">
|
333
|
+
<ANCHOR id="g-main-loop-new" href="glib/glib-The-Main-Event-Loop.html#g-main-loop-new">
|
334
|
+
<ANCHOR id="g-main-loop-ref" href="glib/glib-The-Main-Event-Loop.html#g-main-loop-ref">
|
335
|
+
<ANCHOR id="g-main-loop-unref" href="glib/glib-The-Main-Event-Loop.html#g-main-loop-unref">
|
336
|
+
<ANCHOR id="g-main-loop-run" href="glib/glib-The-Main-Event-Loop.html#g-main-loop-run">
|
337
|
+
<ANCHOR id="g-main-loop-quit" href="glib/glib-The-Main-Event-Loop.html#g-main-loop-quit">
|
338
|
+
<ANCHOR id="g-main-loop-is-running" href="glib/glib-The-Main-Event-Loop.html#g-main-loop-is-running">
|
339
|
+
<ANCHOR id="g-main-loop-get-context" href="glib/glib-The-Main-Event-Loop.html#g-main-loop-get-context">
|
340
|
+
<ANCHOR id="g-main-new" href="glib/glib-The-Main-Event-Loop.html#g-main-new">
|
341
|
+
<ANCHOR id="g-main-destroy" href="glib/glib-The-Main-Event-Loop.html#g-main-destroy">
|
342
|
+
<ANCHOR id="g-main-run" href="glib/glib-The-Main-Event-Loop.html#g-main-run">
|
343
|
+
<ANCHOR id="g-main-quit" href="glib/glib-The-Main-Event-Loop.html#g-main-quit">
|
344
|
+
<ANCHOR id="g-main-is-running" href="glib/glib-The-Main-Event-Loop.html#g-main-is-running">
|
345
|
+
<ANCHOR id="g-main-context-new" href="glib/glib-The-Main-Event-Loop.html#g-main-context-new">
|
346
|
+
<ANCHOR id="g-main-context-ref" href="glib/glib-The-Main-Event-Loop.html#g-main-context-ref">
|
347
|
+
<ANCHOR id="g-main-context-unref" href="glib/glib-The-Main-Event-Loop.html#g-main-context-unref">
|
348
|
+
<ANCHOR id="g-main-context-default" href="glib/glib-The-Main-Event-Loop.html#g-main-context-default">
|
349
|
+
<ANCHOR id="g-main-context-iteration" href="glib/glib-The-Main-Event-Loop.html#g-main-context-iteration">
|
350
|
+
<ANCHOR id="g-main-iteration" href="glib/glib-The-Main-Event-Loop.html#g-main-iteration">
|
351
|
+
<ANCHOR id="g-main-context-pending" href="glib/glib-The-Main-Event-Loop.html#g-main-context-pending">
|
352
|
+
<ANCHOR id="g-main-pending" href="glib/glib-The-Main-Event-Loop.html#g-main-pending">
|
353
|
+
<ANCHOR id="g-main-context-find-source-by-id" href="glib/glib-The-Main-Event-Loop.html#g-main-context-find-source-by-id">
|
354
|
+
<ANCHOR id="g-main-context-find-source-by-user-data" href="glib/glib-The-Main-Event-Loop.html#g-main-context-find-source-by-user-data">
|
355
|
+
<ANCHOR id="g-main-context-find-source-by-funcs-user-data" href="glib/glib-The-Main-Event-Loop.html#g-main-context-find-source-by-funcs-user-data">
|
356
|
+
<ANCHOR id="g-main-context-wakeup" href="glib/glib-The-Main-Event-Loop.html#g-main-context-wakeup">
|
357
|
+
<ANCHOR id="g-main-context-acquire" href="glib/glib-The-Main-Event-Loop.html#g-main-context-acquire">
|
358
|
+
<ANCHOR id="g-main-context-release" href="glib/glib-The-Main-Event-Loop.html#g-main-context-release">
|
359
|
+
<ANCHOR id="g-main-context-is-owner" href="glib/glib-The-Main-Event-Loop.html#g-main-context-is-owner">
|
360
|
+
<ANCHOR id="g-main-context-wait" href="glib/glib-The-Main-Event-Loop.html#g-main-context-wait">
|
361
|
+
<ANCHOR id="g-main-context-prepare" href="glib/glib-The-Main-Event-Loop.html#g-main-context-prepare">
|
362
|
+
<ANCHOR id="g-main-context-query" href="glib/glib-The-Main-Event-Loop.html#g-main-context-query">
|
363
|
+
<ANCHOR id="g-main-context-check" href="glib/glib-The-Main-Event-Loop.html#g-main-context-check">
|
364
|
+
<ANCHOR id="g-main-context-dispatch" href="glib/glib-The-Main-Event-Loop.html#g-main-context-dispatch">
|
365
|
+
<ANCHOR id="g-main-context-set-poll-func" href="glib/glib-The-Main-Event-Loop.html#g-main-context-set-poll-func">
|
366
|
+
<ANCHOR id="g-main-context-get-poll-func" href="glib/glib-The-Main-Event-Loop.html#g-main-context-get-poll-func">
|
367
|
+
<ANCHOR id="GPollFunc" href="glib/glib-The-Main-Event-Loop.html#GPollFunc">
|
368
|
+
<ANCHOR id="g-main-context-add-poll" href="glib/glib-The-Main-Event-Loop.html#g-main-context-add-poll">
|
369
|
+
<ANCHOR id="g-main-context-remove-poll" href="glib/glib-The-Main-Event-Loop.html#g-main-context-remove-poll">
|
370
|
+
<ANCHOR id="g-main-depth" href="glib/glib-The-Main-Event-Loop.html#g-main-depth">
|
371
|
+
<ANCHOR id="g-main-current-source" href="glib/glib-The-Main-Event-Loop.html#g-main-current-source">
|
372
|
+
<ANCHOR id="g-main-set-poll-func" href="glib/glib-The-Main-Event-Loop.html#g-main-set-poll-func">
|
373
|
+
<ANCHOR id="g-main-context-invoke" href="glib/glib-The-Main-Event-Loop.html#g-main-context-invoke">
|
374
|
+
<ANCHOR id="g-main-context-invoke-full" href="glib/glib-The-Main-Event-Loop.html#g-main-context-invoke-full">
|
375
|
+
<ANCHOR id="g-main-context-get-thread-default" href="glib/glib-The-Main-Event-Loop.html#g-main-context-get-thread-default">
|
376
|
+
<ANCHOR id="g-main-context-ref-thread-default" href="glib/glib-The-Main-Event-Loop.html#g-main-context-ref-thread-default">
|
377
|
+
<ANCHOR id="g-main-context-push-thread-default" href="glib/glib-The-Main-Event-Loop.html#g-main-context-push-thread-default">
|
378
|
+
<ANCHOR id="g-main-context-pop-thread-default" href="glib/glib-The-Main-Event-Loop.html#g-main-context-pop-thread-default">
|
379
|
+
<ANCHOR id="g-timeout-source-new" href="glib/glib-The-Main-Event-Loop.html#g-timeout-source-new">
|
380
|
+
<ANCHOR id="g-timeout-source-new-seconds" href="glib/glib-The-Main-Event-Loop.html#g-timeout-source-new-seconds">
|
381
|
+
<ANCHOR id="g-timeout-add" href="glib/glib-The-Main-Event-Loop.html#g-timeout-add">
|
382
|
+
<ANCHOR id="g-timeout-add-full" href="glib/glib-The-Main-Event-Loop.html#g-timeout-add-full">
|
383
|
+
<ANCHOR id="g-timeout-add-seconds" href="glib/glib-The-Main-Event-Loop.html#g-timeout-add-seconds">
|
384
|
+
<ANCHOR id="g-timeout-add-seconds-full" href="glib/glib-The-Main-Event-Loop.html#g-timeout-add-seconds-full">
|
385
|
+
<ANCHOR id="g-idle-source-new" href="glib/glib-The-Main-Event-Loop.html#g-idle-source-new">
|
386
|
+
<ANCHOR id="g-idle-add" href="glib/glib-The-Main-Event-Loop.html#g-idle-add">
|
387
|
+
<ANCHOR id="g-idle-add-full" href="glib/glib-The-Main-Event-Loop.html#g-idle-add-full">
|
388
|
+
<ANCHOR id="g-idle-remove-by-data" href="glib/glib-The-Main-Event-Loop.html#g-idle-remove-by-data">
|
389
|
+
<ANCHOR id="GChildWatchFunc" href="glib/glib-The-Main-Event-Loop.html#GChildWatchFunc">
|
390
|
+
<ANCHOR id="g-child-watch-source-new" href="glib/glib-The-Main-Event-Loop.html#g-child-watch-source-new">
|
391
|
+
<ANCHOR id="g-child-watch-add" href="glib/glib-The-Main-Event-Loop.html#g-child-watch-add">
|
392
|
+
<ANCHOR id="g-child-watch-add-full" href="glib/glib-The-Main-Event-Loop.html#g-child-watch-add-full">
|
393
|
+
<ANCHOR id="g-poll" href="glib/glib-The-Main-Event-Loop.html#g-poll">
|
394
|
+
<ANCHOR id="GSourceDummyMarshal" href="glib/glib-The-Main-Event-Loop.html#GSourceDummyMarshal">
|
395
|
+
<ANCHOR id="g-source-new" href="glib/glib-The-Main-Event-Loop.html#g-source-new">
|
396
|
+
<ANCHOR id="g-source-ref" href="glib/glib-The-Main-Event-Loop.html#g-source-ref">
|
397
|
+
<ANCHOR id="g-source-unref" href="glib/glib-The-Main-Event-Loop.html#g-source-unref">
|
398
|
+
<ANCHOR id="g-source-set-funcs" href="glib/glib-The-Main-Event-Loop.html#g-source-set-funcs">
|
399
|
+
<ANCHOR id="g-source-attach" href="glib/glib-The-Main-Event-Loop.html#g-source-attach">
|
400
|
+
<ANCHOR id="g-source-destroy" href="glib/glib-The-Main-Event-Loop.html#g-source-destroy">
|
401
|
+
<ANCHOR id="g-source-is-destroyed" href="glib/glib-The-Main-Event-Loop.html#g-source-is-destroyed">
|
402
|
+
<ANCHOR id="g-source-set-priority" href="glib/glib-The-Main-Event-Loop.html#g-source-set-priority">
|
403
|
+
<ANCHOR id="g-source-get-priority" href="glib/glib-The-Main-Event-Loop.html#g-source-get-priority">
|
404
|
+
<ANCHOR id="g-source-set-can-recurse" href="glib/glib-The-Main-Event-Loop.html#g-source-set-can-recurse">
|
405
|
+
<ANCHOR id="g-source-get-can-recurse" href="glib/glib-The-Main-Event-Loop.html#g-source-get-can-recurse">
|
406
|
+
<ANCHOR id="g-source-get-id" href="glib/glib-The-Main-Event-Loop.html#g-source-get-id">
|
407
|
+
<ANCHOR id="g-source-get-name" href="glib/glib-The-Main-Event-Loop.html#g-source-get-name">
|
408
|
+
<ANCHOR id="g-source-set-name" href="glib/glib-The-Main-Event-Loop.html#g-source-set-name">
|
409
|
+
<ANCHOR id="g-source-set-name-by-id" href="glib/glib-The-Main-Event-Loop.html#g-source-set-name-by-id">
|
410
|
+
<ANCHOR id="g-source-get-context" href="glib/glib-The-Main-Event-Loop.html#g-source-get-context">
|
411
|
+
<ANCHOR id="g-source-set-callback" href="glib/glib-The-Main-Event-Loop.html#g-source-set-callback">
|
412
|
+
<ANCHOR id="GSourceFunc" href="glib/glib-The-Main-Event-Loop.html#GSourceFunc">
|
413
|
+
<ANCHOR id="g-source-set-callback-indirect" href="glib/glib-The-Main-Event-Loop.html#g-source-set-callback-indirect">
|
414
|
+
<ANCHOR id="g-source-set-ready-time" href="glib/glib-The-Main-Event-Loop.html#g-source-set-ready-time">
|
415
|
+
<ANCHOR id="g-source-get-ready-time" href="glib/glib-The-Main-Event-Loop.html#g-source-get-ready-time">
|
416
|
+
<ANCHOR id="g-source-add-unix-fd" href="glib/glib-The-Main-Event-Loop.html#g-source-add-unix-fd">
|
417
|
+
<ANCHOR id="g-source-remove-unix-fd" href="glib/glib-The-Main-Event-Loop.html#g-source-remove-unix-fd">
|
418
|
+
<ANCHOR id="g-source-modify-unix-fd" href="glib/glib-The-Main-Event-Loop.html#g-source-modify-unix-fd">
|
419
|
+
<ANCHOR id="g-source-query-unix-fd" href="glib/glib-The-Main-Event-Loop.html#g-source-query-unix-fd">
|
420
|
+
<ANCHOR id="g-source-add-poll" href="glib/glib-The-Main-Event-Loop.html#g-source-add-poll">
|
421
|
+
<ANCHOR id="g-source-remove-poll" href="glib/glib-The-Main-Event-Loop.html#g-source-remove-poll">
|
422
|
+
<ANCHOR id="g-source-add-child-source" href="glib/glib-The-Main-Event-Loop.html#g-source-add-child-source">
|
423
|
+
<ANCHOR id="g-source-remove-child-source" href="glib/glib-The-Main-Event-Loop.html#g-source-remove-child-source">
|
424
|
+
<ANCHOR id="g-source-get-time" href="glib/glib-The-Main-Event-Loop.html#g-source-get-time">
|
425
|
+
<ANCHOR id="g-source-get-current-time" href="glib/glib-The-Main-Event-Loop.html#g-source-get-current-time">
|
426
|
+
<ANCHOR id="g-source-remove" href="glib/glib-The-Main-Event-Loop.html#g-source-remove">
|
427
|
+
<ANCHOR id="g-source-remove-by-funcs-user-data" href="glib/glib-The-Main-Event-Loop.html#g-source-remove-by-funcs-user-data">
|
428
|
+
<ANCHOR id="g-source-remove-by-user-data" href="glib/glib-The-Main-Event-Loop.html#g-source-remove-by-user-data">
|
429
|
+
<ANCHOR id="glib-The-Main-Event-Loop.other_details" href="glib/glib-The-Main-Event-Loop.html#glib-The-Main-Event-Loop.other_details">
|
430
|
+
<ANCHOR id="GMainLoop" href="glib/glib-The-Main-Event-Loop.html#GMainLoop">
|
431
|
+
<ANCHOR id="G-PRIORITY-HIGH:CAPS" href="glib/glib-The-Main-Event-Loop.html#G-PRIORITY-HIGH:CAPS">
|
432
|
+
<ANCHOR id="G-PRIORITY-DEFAULT:CAPS" href="glib/glib-The-Main-Event-Loop.html#G-PRIORITY-DEFAULT:CAPS">
|
433
|
+
<ANCHOR id="G-PRIORITY-HIGH-IDLE:CAPS" href="glib/glib-The-Main-Event-Loop.html#G-PRIORITY-HIGH-IDLE:CAPS">
|
434
|
+
<ANCHOR id="G-PRIORITY-DEFAULT-IDLE:CAPS" href="glib/glib-The-Main-Event-Loop.html#G-PRIORITY-DEFAULT-IDLE:CAPS">
|
435
|
+
<ANCHOR id="G-PRIORITY-LOW:CAPS" href="glib/glib-The-Main-Event-Loop.html#G-PRIORITY-LOW:CAPS">
|
436
|
+
<ANCHOR id="G-SOURCE-CONTINUE:CAPS" href="glib/glib-The-Main-Event-Loop.html#G-SOURCE-CONTINUE:CAPS">
|
437
|
+
<ANCHOR id="G-SOURCE-REMOVE:CAPS" href="glib/glib-The-Main-Event-Loop.html#G-SOURCE-REMOVE:CAPS">
|
438
|
+
<ANCHOR id="GMainContext" href="glib/glib-The-Main-Event-Loop.html#GMainContext">
|
439
|
+
<ANCHOR id="GPid" href="glib/glib-The-Main-Event-Loop.html#GPid">
|
440
|
+
<ANCHOR id="GPollFD" href="glib/glib-The-Main-Event-Loop.html#GPollFD">
|
441
|
+
<ANCHOR id="G-POLLFD-FORMAT:CAPS" href="glib/glib-The-Main-Event-Loop.html#G-POLLFD-FORMAT:CAPS">
|
442
|
+
<ANCHOR id="GSource" href="glib/glib-The-Main-Event-Loop.html#GSource">
|
443
|
+
<ANCHOR id="GSourceFuncs" href="glib/glib-The-Main-Event-Loop.html#GSourceFuncs">
|
444
|
+
<ANCHOR id="GSourceCallbackFuncs" href="glib/glib-The-Main-Event-Loop.html#GSourceCallbackFuncs">
|
445
|
+
<ANCHOR id="glib-Threads" href="glib/glib-Threads.html">
|
446
|
+
<ANCHOR id="glib-Threads.functions" href="glib/glib-Threads.html#glib-Threads.functions">
|
447
|
+
<ANCHOR id="glib-Threads.other" href="glib/glib-Threads.html#glib-Threads.other">
|
448
|
+
<ANCHOR id="glib-Threads.includes" href="glib/glib-Threads.html#glib-Threads.includes">
|
449
|
+
<ANCHOR id="glib-Threads.description" href="glib/glib-Threads.html#glib-Threads.description">
|
450
|
+
<ANCHOR id="glib-Threads.functions_details" href="glib/glib-Threads.html#glib-Threads.functions_details">
|
451
|
+
<ANCHOR id="GThreadFunc" href="glib/glib-Threads.html#GThreadFunc">
|
452
|
+
<ANCHOR id="g-thread-new" href="glib/glib-Threads.html#g-thread-new">
|
453
|
+
<ANCHOR id="g-thread-try-new" href="glib/glib-Threads.html#g-thread-try-new">
|
454
|
+
<ANCHOR id="g-thread-ref" href="glib/glib-Threads.html#g-thread-ref">
|
455
|
+
<ANCHOR id="g-thread-unref" href="glib/glib-Threads.html#g-thread-unref">
|
456
|
+
<ANCHOR id="g-thread-join" href="glib/glib-Threads.html#g-thread-join">
|
457
|
+
<ANCHOR id="g-thread-yield" href="glib/glib-Threads.html#g-thread-yield">
|
458
|
+
<ANCHOR id="g-thread-exit" href="glib/glib-Threads.html#g-thread-exit">
|
459
|
+
<ANCHOR id="g-thread-self" href="glib/glib-Threads.html#g-thread-self">
|
460
|
+
<ANCHOR id="g-mutex-init" href="glib/glib-Threads.html#g-mutex-init">
|
461
|
+
<ANCHOR id="g-mutex-clear" href="glib/glib-Threads.html#g-mutex-clear">
|
462
|
+
<ANCHOR id="g-mutex-lock" href="glib/glib-Threads.html#g-mutex-lock">
|
463
|
+
<ANCHOR id="g-mutex-trylock" href="glib/glib-Threads.html#g-mutex-trylock">
|
464
|
+
<ANCHOR id="g-mutex-unlock" href="glib/glib-Threads.html#g-mutex-unlock">
|
465
|
+
<ANCHOR id="G-LOCK-DEFINE:CAPS" href="glib/glib-Threads.html#G-LOCK-DEFINE:CAPS">
|
466
|
+
<ANCHOR id="G-LOCK-DEFINE-STATIC:CAPS" href="glib/glib-Threads.html#G-LOCK-DEFINE-STATIC:CAPS">
|
467
|
+
<ANCHOR id="G-LOCK-EXTERN:CAPS" href="glib/glib-Threads.html#G-LOCK-EXTERN:CAPS">
|
468
|
+
<ANCHOR id="G-LOCK:CAPS" href="glib/glib-Threads.html#G-LOCK:CAPS">
|
469
|
+
<ANCHOR id="G-TRYLOCK:CAPS" href="glib/glib-Threads.html#G-TRYLOCK:CAPS">
|
470
|
+
<ANCHOR id="G-UNLOCK:CAPS" href="glib/glib-Threads.html#G-UNLOCK:CAPS">
|
471
|
+
<ANCHOR id="g-rec-mutex-init" href="glib/glib-Threads.html#g-rec-mutex-init">
|
472
|
+
<ANCHOR id="g-rec-mutex-clear" href="glib/glib-Threads.html#g-rec-mutex-clear">
|
473
|
+
<ANCHOR id="g-rec-mutex-lock" href="glib/glib-Threads.html#g-rec-mutex-lock">
|
474
|
+
<ANCHOR id="g-rec-mutex-trylock" href="glib/glib-Threads.html#g-rec-mutex-trylock">
|
475
|
+
<ANCHOR id="g-rec-mutex-unlock" href="glib/glib-Threads.html#g-rec-mutex-unlock">
|
476
|
+
<ANCHOR id="g-rw-lock-init" href="glib/glib-Threads.html#g-rw-lock-init">
|
477
|
+
<ANCHOR id="g-rw-lock-clear" href="glib/glib-Threads.html#g-rw-lock-clear">
|
478
|
+
<ANCHOR id="g-rw-lock-writer-lock" href="glib/glib-Threads.html#g-rw-lock-writer-lock">
|
479
|
+
<ANCHOR id="g-rw-lock-writer-trylock" href="glib/glib-Threads.html#g-rw-lock-writer-trylock">
|
480
|
+
<ANCHOR id="g-rw-lock-writer-unlock" href="glib/glib-Threads.html#g-rw-lock-writer-unlock">
|
481
|
+
<ANCHOR id="g-rw-lock-reader-lock" href="glib/glib-Threads.html#g-rw-lock-reader-lock">
|
482
|
+
<ANCHOR id="g-rw-lock-reader-trylock" href="glib/glib-Threads.html#g-rw-lock-reader-trylock">
|
483
|
+
<ANCHOR id="g-rw-lock-reader-unlock" href="glib/glib-Threads.html#g-rw-lock-reader-unlock">
|
484
|
+
<ANCHOR id="g-cond-init" href="glib/glib-Threads.html#g-cond-init">
|
485
|
+
<ANCHOR id="g-cond-clear" href="glib/glib-Threads.html#g-cond-clear">
|
486
|
+
<ANCHOR id="g-cond-wait" href="glib/glib-Threads.html#g-cond-wait">
|
487
|
+
<ANCHOR id="g-cond-timed-wait" href="glib/glib-Threads.html#g-cond-timed-wait">
|
488
|
+
<ANCHOR id="g-cond-wait-until" href="glib/glib-Threads.html#g-cond-wait-until">
|
489
|
+
<ANCHOR id="g-cond-signal" href="glib/glib-Threads.html#g-cond-signal">
|
490
|
+
<ANCHOR id="g-cond-broadcast" href="glib/glib-Threads.html#g-cond-broadcast">
|
491
|
+
<ANCHOR id="G-PRIVATE-INIT:CAPS" href="glib/glib-Threads.html#G-PRIVATE-INIT:CAPS">
|
492
|
+
<ANCHOR id="g-private-get" href="glib/glib-Threads.html#g-private-get">
|
493
|
+
<ANCHOR id="g-private-set" href="glib/glib-Threads.html#g-private-set">
|
494
|
+
<ANCHOR id="g-private-replace" href="glib/glib-Threads.html#g-private-replace">
|
495
|
+
<ANCHOR id="g-once" href="glib/glib-Threads.html#g-once">
|
496
|
+
<ANCHOR id="g-once-init-enter" href="glib/glib-Threads.html#g-once-init-enter">
|
497
|
+
<ANCHOR id="g-once-init-leave" href="glib/glib-Threads.html#g-once-init-leave">
|
498
|
+
<ANCHOR id="g-bit-lock" href="glib/glib-Threads.html#g-bit-lock">
|
499
|
+
<ANCHOR id="g-bit-trylock" href="glib/glib-Threads.html#g-bit-trylock">
|
500
|
+
<ANCHOR id="g-bit-unlock" href="glib/glib-Threads.html#g-bit-unlock">
|
501
|
+
<ANCHOR id="g-pointer-bit-lock" href="glib/glib-Threads.html#g-pointer-bit-lock">
|
502
|
+
<ANCHOR id="g-pointer-bit-trylock" href="glib/glib-Threads.html#g-pointer-bit-trylock">
|
503
|
+
<ANCHOR id="g-pointer-bit-unlock" href="glib/glib-Threads.html#g-pointer-bit-unlock">
|
504
|
+
<ANCHOR id="g-get-num-processors" href="glib/glib-Threads.html#g-get-num-processors">
|
505
|
+
<ANCHOR id="glib-Threads.other_details" href="glib/glib-Threads.html#glib-Threads.other_details">
|
506
|
+
<ANCHOR id="G-THREAD-ERROR:CAPS" href="glib/glib-Threads.html#G-THREAD-ERROR:CAPS">
|
507
|
+
<ANCHOR id="GThreadError" href="glib/glib-Threads.html#GThreadError">
|
508
|
+
<ANCHOR id="GThread" href="glib/glib-Threads.html#GThread">
|
509
|
+
<ANCHOR id="GMutex" href="glib/glib-Threads.html#GMutex">
|
510
|
+
<ANCHOR id="GRecMutex" href="glib/glib-Threads.html#GRecMutex">
|
511
|
+
<ANCHOR id="GRWLock" href="glib/glib-Threads.html#GRWLock">
|
512
|
+
<ANCHOR id="GCond" href="glib/glib-Threads.html#GCond">
|
513
|
+
<ANCHOR id="GPrivate" href="glib/glib-Threads.html#GPrivate">
|
514
|
+
<ANCHOR id="GOnce" href="glib/glib-Threads.html#GOnce">
|
515
|
+
<ANCHOR id="GOnceStatus" href="glib/glib-Threads.html#GOnceStatus">
|
516
|
+
<ANCHOR id="G-ONCE-INIT:CAPS" href="glib/glib-Threads.html#G-ONCE-INIT:CAPS">
|
517
|
+
<ANCHOR id="glib-Threads.see-also" href="glib/glib-Threads.html#glib-Threads.see-also">
|
518
|
+
<ANCHOR id="glib-Thread-Pools" href="glib/glib-Thread-Pools.html">
|
519
|
+
<ANCHOR id="glib-Thread-Pools.functions" href="glib/glib-Thread-Pools.html#glib-Thread-Pools.functions">
|
520
|
+
<ANCHOR id="glib-Thread-Pools.other" href="glib/glib-Thread-Pools.html#glib-Thread-Pools.other">
|
521
|
+
<ANCHOR id="glib-Thread-Pools.includes" href="glib/glib-Thread-Pools.html#glib-Thread-Pools.includes">
|
522
|
+
<ANCHOR id="glib-Thread-Pools.description" href="glib/glib-Thread-Pools.html#glib-Thread-Pools.description">
|
523
|
+
<ANCHOR id="glib-Thread-Pools.functions_details" href="glib/glib-Thread-Pools.html#glib-Thread-Pools.functions_details">
|
524
|
+
<ANCHOR id="g-thread-pool-new" href="glib/glib-Thread-Pools.html#g-thread-pool-new">
|
525
|
+
<ANCHOR id="g-thread-pool-push" href="glib/glib-Thread-Pools.html#g-thread-pool-push">
|
526
|
+
<ANCHOR id="g-thread-pool-set-max-threads" href="glib/glib-Thread-Pools.html#g-thread-pool-set-max-threads">
|
527
|
+
<ANCHOR id="g-thread-pool-get-max-threads" href="glib/glib-Thread-Pools.html#g-thread-pool-get-max-threads">
|
528
|
+
<ANCHOR id="g-thread-pool-get-num-threads" href="glib/glib-Thread-Pools.html#g-thread-pool-get-num-threads">
|
529
|
+
<ANCHOR id="g-thread-pool-unprocessed" href="glib/glib-Thread-Pools.html#g-thread-pool-unprocessed">
|
530
|
+
<ANCHOR id="g-thread-pool-free" href="glib/glib-Thread-Pools.html#g-thread-pool-free">
|
531
|
+
<ANCHOR id="g-thread-pool-set-max-unused-threads" href="glib/glib-Thread-Pools.html#g-thread-pool-set-max-unused-threads">
|
532
|
+
<ANCHOR id="g-thread-pool-get-max-unused-threads" href="glib/glib-Thread-Pools.html#g-thread-pool-get-max-unused-threads">
|
533
|
+
<ANCHOR id="g-thread-pool-get-num-unused-threads" href="glib/glib-Thread-Pools.html#g-thread-pool-get-num-unused-threads">
|
534
|
+
<ANCHOR id="g-thread-pool-stop-unused-threads" href="glib/glib-Thread-Pools.html#g-thread-pool-stop-unused-threads">
|
535
|
+
<ANCHOR id="g-thread-pool-set-sort-function" href="glib/glib-Thread-Pools.html#g-thread-pool-set-sort-function">
|
536
|
+
<ANCHOR id="g-thread-pool-set-max-idle-time" href="glib/glib-Thread-Pools.html#g-thread-pool-set-max-idle-time">
|
537
|
+
<ANCHOR id="g-thread-pool-get-max-idle-time" href="glib/glib-Thread-Pools.html#g-thread-pool-get-max-idle-time">
|
538
|
+
<ANCHOR id="glib-Thread-Pools.other_details" href="glib/glib-Thread-Pools.html#glib-Thread-Pools.other_details">
|
539
|
+
<ANCHOR id="GThreadPool" href="glib/glib-Thread-Pools.html#GThreadPool">
|
540
|
+
<ANCHOR id="glib-Thread-Pools.see-also" href="glib/glib-Thread-Pools.html#glib-Thread-Pools.see-also">
|
541
|
+
<ANCHOR id="glib-Asynchronous-Queues" href="glib/glib-Asynchronous-Queues.html">
|
542
|
+
<ANCHOR id="glib-Asynchronous-Queues.functions" href="glib/glib-Asynchronous-Queues.html#glib-Asynchronous-Queues.functions">
|
543
|
+
<ANCHOR id="glib-Asynchronous-Queues.other" href="glib/glib-Asynchronous-Queues.html#glib-Asynchronous-Queues.other">
|
544
|
+
<ANCHOR id="glib-Asynchronous-Queues.includes" href="glib/glib-Asynchronous-Queues.html#glib-Asynchronous-Queues.includes">
|
545
|
+
<ANCHOR id="glib-Asynchronous-Queues.description" href="glib/glib-Asynchronous-Queues.html#glib-Asynchronous-Queues.description">
|
546
|
+
<ANCHOR id="glib-Asynchronous-Queues.functions_details" href="glib/glib-Asynchronous-Queues.html#glib-Asynchronous-Queues.functions_details">
|
547
|
+
<ANCHOR id="g-async-queue-new" href="glib/glib-Asynchronous-Queues.html#g-async-queue-new">
|
548
|
+
<ANCHOR id="g-async-queue-new-full" href="glib/glib-Asynchronous-Queues.html#g-async-queue-new-full">
|
549
|
+
<ANCHOR id="g-async-queue-ref" href="glib/glib-Asynchronous-Queues.html#g-async-queue-ref">
|
550
|
+
<ANCHOR id="g-async-queue-unref" href="glib/glib-Asynchronous-Queues.html#g-async-queue-unref">
|
551
|
+
<ANCHOR id="g-async-queue-push" href="glib/glib-Asynchronous-Queues.html#g-async-queue-push">
|
552
|
+
<ANCHOR id="g-async-queue-push-sorted" href="glib/glib-Asynchronous-Queues.html#g-async-queue-push-sorted">
|
553
|
+
<ANCHOR id="g-async-queue-pop" href="glib/glib-Asynchronous-Queues.html#g-async-queue-pop">
|
554
|
+
<ANCHOR id="g-async-queue-try-pop" href="glib/glib-Asynchronous-Queues.html#g-async-queue-try-pop">
|
555
|
+
<ANCHOR id="g-async-queue-timeout-pop" href="glib/glib-Asynchronous-Queues.html#g-async-queue-timeout-pop">
|
556
|
+
<ANCHOR id="g-async-queue-length" href="glib/glib-Asynchronous-Queues.html#g-async-queue-length">
|
557
|
+
<ANCHOR id="g-async-queue-sort" href="glib/glib-Asynchronous-Queues.html#g-async-queue-sort">
|
558
|
+
<ANCHOR id="g-async-queue-lock" href="glib/glib-Asynchronous-Queues.html#g-async-queue-lock">
|
559
|
+
<ANCHOR id="g-async-queue-unlock" href="glib/glib-Asynchronous-Queues.html#g-async-queue-unlock">
|
560
|
+
<ANCHOR id="g-async-queue-ref-unlocked" href="glib/glib-Asynchronous-Queues.html#g-async-queue-ref-unlocked">
|
561
|
+
<ANCHOR id="g-async-queue-unref-and-unlock" href="glib/glib-Asynchronous-Queues.html#g-async-queue-unref-and-unlock">
|
562
|
+
<ANCHOR id="g-async-queue-push-unlocked" href="glib/glib-Asynchronous-Queues.html#g-async-queue-push-unlocked">
|
563
|
+
<ANCHOR id="g-async-queue-push-sorted-unlocked" href="glib/glib-Asynchronous-Queues.html#g-async-queue-push-sorted-unlocked">
|
564
|
+
<ANCHOR id="g-async-queue-pop-unlocked" href="glib/glib-Asynchronous-Queues.html#g-async-queue-pop-unlocked">
|
565
|
+
<ANCHOR id="g-async-queue-try-pop-unlocked" href="glib/glib-Asynchronous-Queues.html#g-async-queue-try-pop-unlocked">
|
566
|
+
<ANCHOR id="g-async-queue-timeout-pop-unlocked" href="glib/glib-Asynchronous-Queues.html#g-async-queue-timeout-pop-unlocked">
|
567
|
+
<ANCHOR id="g-async-queue-length-unlocked" href="glib/glib-Asynchronous-Queues.html#g-async-queue-length-unlocked">
|
568
|
+
<ANCHOR id="g-async-queue-sort-unlocked" href="glib/glib-Asynchronous-Queues.html#g-async-queue-sort-unlocked">
|
569
|
+
<ANCHOR id="g-async-queue-timed-pop" href="glib/glib-Asynchronous-Queues.html#g-async-queue-timed-pop">
|
570
|
+
<ANCHOR id="g-async-queue-timed-pop-unlocked" href="glib/glib-Asynchronous-Queues.html#g-async-queue-timed-pop-unlocked">
|
571
|
+
<ANCHOR id="glib-Asynchronous-Queues.other_details" href="glib/glib-Asynchronous-Queues.html#glib-Asynchronous-Queues.other_details">
|
572
|
+
<ANCHOR id="GAsyncQueue" href="glib/glib-Asynchronous-Queues.html#GAsyncQueue">
|
573
|
+
<ANCHOR id="glib-Asynchronous-Queues.see-also" href="glib/glib-Asynchronous-Queues.html#glib-Asynchronous-Queues.see-also">
|
574
|
+
<ANCHOR id="glib-Dynamic-Loading-of-Modules" href="glib/glib-Dynamic-Loading-of-Modules.html">
|
575
|
+
<ANCHOR id="glib-Dynamic-Loading-of-Modules.functions" href="glib/glib-Dynamic-Loading-of-Modules.html#glib-Dynamic-Loading-of-Modules.functions">
|
576
|
+
<ANCHOR id="glib-Dynamic-Loading-of-Modules.other" href="glib/glib-Dynamic-Loading-of-Modules.html#glib-Dynamic-Loading-of-Modules.other">
|
577
|
+
<ANCHOR id="glib-Dynamic-Loading-of-Modules.includes" href="glib/glib-Dynamic-Loading-of-Modules.html#glib-Dynamic-Loading-of-Modules.includes">
|
578
|
+
<ANCHOR id="glib-Dynamic-Loading-of-Modules.description" href="glib/glib-Dynamic-Loading-of-Modules.html#glib-Dynamic-Loading-of-Modules.description">
|
579
|
+
<ANCHOR id="glib-Dynamic-Loading-of-Modules.functions_details" href="glib/glib-Dynamic-Loading-of-Modules.html#glib-Dynamic-Loading-of-Modules.functions_details">
|
580
|
+
<ANCHOR id="g-module-supported" href="glib/glib-Dynamic-Loading-of-Modules.html#g-module-supported">
|
581
|
+
<ANCHOR id="g-module-build-path" href="glib/glib-Dynamic-Loading-of-Modules.html#g-module-build-path">
|
582
|
+
<ANCHOR id="g-module-open" href="glib/glib-Dynamic-Loading-of-Modules.html#g-module-open">
|
583
|
+
<ANCHOR id="g-module-symbol" href="glib/glib-Dynamic-Loading-of-Modules.html#g-module-symbol">
|
584
|
+
<ANCHOR id="g-module-name" href="glib/glib-Dynamic-Loading-of-Modules.html#g-module-name">
|
585
|
+
<ANCHOR id="g-module-make-resident" href="glib/glib-Dynamic-Loading-of-Modules.html#g-module-make-resident">
|
586
|
+
<ANCHOR id="g-module-close" href="glib/glib-Dynamic-Loading-of-Modules.html#g-module-close">
|
587
|
+
<ANCHOR id="g-module-error" href="glib/glib-Dynamic-Loading-of-Modules.html#g-module-error">
|
588
|
+
<ANCHOR id="GModuleCheckInit" href="glib/glib-Dynamic-Loading-of-Modules.html#GModuleCheckInit">
|
589
|
+
<ANCHOR id="GModuleUnload" href="glib/glib-Dynamic-Loading-of-Modules.html#GModuleUnload">
|
590
|
+
<ANCHOR id="glib-Dynamic-Loading-of-Modules.other_details" href="glib/glib-Dynamic-Loading-of-Modules.html#glib-Dynamic-Loading-of-Modules.other_details">
|
591
|
+
<ANCHOR id="GModule" href="glib/glib-Dynamic-Loading-of-Modules.html#GModule">
|
592
|
+
<ANCHOR id="GModuleFlags" href="glib/glib-Dynamic-Loading-of-Modules.html#GModuleFlags">
|
593
|
+
<ANCHOR id="G-MODULE-SUFFIX:CAPS" href="glib/glib-Dynamic-Loading-of-Modules.html#G-MODULE-SUFFIX:CAPS">
|
594
|
+
<ANCHOR id="G-MODULE-EXPORT:CAPS" href="glib/glib-Dynamic-Loading-of-Modules.html#G-MODULE-EXPORT:CAPS">
|
595
|
+
<ANCHOR id="G-MODULE-IMPORT:CAPS" href="glib/glib-Dynamic-Loading-of-Modules.html#G-MODULE-IMPORT:CAPS">
|
596
|
+
<ANCHOR id="glib-Memory-Allocation" href="glib/glib-Memory-Allocation.html">
|
597
|
+
<ANCHOR id="glib-Memory-Allocation.functions" href="glib/glib-Memory-Allocation.html#glib-Memory-Allocation.functions">
|
598
|
+
<ANCHOR id="glib-Memory-Allocation.other" href="glib/glib-Memory-Allocation.html#glib-Memory-Allocation.other">
|
599
|
+
<ANCHOR id="glib-Memory-Allocation.includes" href="glib/glib-Memory-Allocation.html#glib-Memory-Allocation.includes">
|
600
|
+
<ANCHOR id="glib-Memory-Allocation.description" href="glib/glib-Memory-Allocation.html#glib-Memory-Allocation.description">
|
601
|
+
<ANCHOR id="glib-Memory-Allocation.functions_details" href="glib/glib-Memory-Allocation.html#glib-Memory-Allocation.functions_details">
|
602
|
+
<ANCHOR id="g-new" href="glib/glib-Memory-Allocation.html#g-new">
|
603
|
+
<ANCHOR id="g-new0" href="glib/glib-Memory-Allocation.html#g-new0">
|
604
|
+
<ANCHOR id="g-renew" href="glib/glib-Memory-Allocation.html#g-renew">
|
605
|
+
<ANCHOR id="g-try-new" href="glib/glib-Memory-Allocation.html#g-try-new">
|
606
|
+
<ANCHOR id="g-try-new0" href="glib/glib-Memory-Allocation.html#g-try-new0">
|
607
|
+
<ANCHOR id="g-try-renew" href="glib/glib-Memory-Allocation.html#g-try-renew">
|
608
|
+
<ANCHOR id="g-malloc" href="glib/glib-Memory-Allocation.html#g-malloc">
|
609
|
+
<ANCHOR id="g-malloc0" href="glib/glib-Memory-Allocation.html#g-malloc0">
|
610
|
+
<ANCHOR id="g-realloc" href="glib/glib-Memory-Allocation.html#g-realloc">
|
611
|
+
<ANCHOR id="g-try-malloc" href="glib/glib-Memory-Allocation.html#g-try-malloc">
|
612
|
+
<ANCHOR id="g-try-malloc0" href="glib/glib-Memory-Allocation.html#g-try-malloc0">
|
613
|
+
<ANCHOR id="g-try-realloc" href="glib/glib-Memory-Allocation.html#g-try-realloc">
|
614
|
+
<ANCHOR id="g-malloc-n" href="glib/glib-Memory-Allocation.html#g-malloc-n">
|
615
|
+
<ANCHOR id="g-malloc0-n" href="glib/glib-Memory-Allocation.html#g-malloc0-n">
|
616
|
+
<ANCHOR id="g-realloc-n" href="glib/glib-Memory-Allocation.html#g-realloc-n">
|
617
|
+
<ANCHOR id="g-try-malloc-n" href="glib/glib-Memory-Allocation.html#g-try-malloc-n">
|
618
|
+
<ANCHOR id="g-try-malloc0-n" href="glib/glib-Memory-Allocation.html#g-try-malloc0-n">
|
619
|
+
<ANCHOR id="g-try-realloc-n" href="glib/glib-Memory-Allocation.html#g-try-realloc-n">
|
620
|
+
<ANCHOR id="g-free" href="glib/glib-Memory-Allocation.html#g-free">
|
621
|
+
<ANCHOR id="g-clear-pointer" href="glib/glib-Memory-Allocation.html#g-clear-pointer">
|
622
|
+
<ANCHOR id="g-alloca" href="glib/glib-Memory-Allocation.html#g-alloca">
|
623
|
+
<ANCHOR id="g-newa" href="glib/glib-Memory-Allocation.html#g-newa">
|
624
|
+
<ANCHOR id="g-memmove" href="glib/glib-Memory-Allocation.html#g-memmove">
|
625
|
+
<ANCHOR id="g-memdup" href="glib/glib-Memory-Allocation.html#g-memdup">
|
626
|
+
<ANCHOR id="g-mem-set-vtable" href="glib/glib-Memory-Allocation.html#g-mem-set-vtable">
|
627
|
+
<ANCHOR id="g-mem-is-system-malloc" href="glib/glib-Memory-Allocation.html#g-mem-is-system-malloc">
|
628
|
+
<ANCHOR id="g-mem-profile" href="glib/glib-Memory-Allocation.html#g-mem-profile">
|
629
|
+
<ANCHOR id="glib-Memory-Allocation.other_details" href="glib/glib-Memory-Allocation.html#glib-Memory-Allocation.other_details">
|
630
|
+
<ANCHOR id="g-mem-gc-friendly" href="glib/glib-Memory-Allocation.html#g-mem-gc-friendly">
|
631
|
+
<ANCHOR id="GMemVTable" href="glib/glib-Memory-Allocation.html#GMemVTable">
|
632
|
+
<ANCHOR id="glib-mem-profiler-table" href="glib/glib-Memory-Allocation.html#glib-mem-profiler-table">
|
633
|
+
<ANCHOR id="glib-Memory-Slices" href="glib/glib-Memory-Slices.html">
|
634
|
+
<ANCHOR id="glib-Memory-Slices.functions" href="glib/glib-Memory-Slices.html#glib-Memory-Slices.functions">
|
635
|
+
<ANCHOR id="glib-Memory-Slices.includes" href="glib/glib-Memory-Slices.html#glib-Memory-Slices.includes">
|
636
|
+
<ANCHOR id="glib-Memory-Slices.description" href="glib/glib-Memory-Slices.html#glib-Memory-Slices.description">
|
637
|
+
<ANCHOR id="glib-Memory-Slices.functions_details" href="glib/glib-Memory-Slices.html#glib-Memory-Slices.functions_details">
|
638
|
+
<ANCHOR id="g-slice-alloc" href="glib/glib-Memory-Slices.html#g-slice-alloc">
|
639
|
+
<ANCHOR id="g-slice-alloc0" href="glib/glib-Memory-Slices.html#g-slice-alloc0">
|
640
|
+
<ANCHOR id="g-slice-copy" href="glib/glib-Memory-Slices.html#g-slice-copy">
|
641
|
+
<ANCHOR id="g-slice-free1" href="glib/glib-Memory-Slices.html#g-slice-free1">
|
642
|
+
<ANCHOR id="g-slice-free-chain-with-offset" href="glib/glib-Memory-Slices.html#g-slice-free-chain-with-offset">
|
643
|
+
<ANCHOR id="g-slice-new" href="glib/glib-Memory-Slices.html#g-slice-new">
|
644
|
+
<ANCHOR id="g-slice-new0" href="glib/glib-Memory-Slices.html#g-slice-new0">
|
645
|
+
<ANCHOR id="g-slice-dup" href="glib/glib-Memory-Slices.html#g-slice-dup">
|
646
|
+
<ANCHOR id="g-slice-free" href="glib/glib-Memory-Slices.html#g-slice-free">
|
647
|
+
<ANCHOR id="g-slice-free-chain" href="glib/glib-Memory-Slices.html#g-slice-free-chain">
|
648
|
+
<ANCHOR id="glib-Memory-Slices.other_details" href="glib/glib-Memory-Slices.html#glib-Memory-Slices.other_details">
|
649
|
+
<ANCHOR id="glib-IO-Channels" href="glib/glib-IO-Channels.html">
|
650
|
+
<ANCHOR id="glib-IO-Channels.functions" href="glib/glib-IO-Channels.html#glib-IO-Channels.functions">
|
651
|
+
<ANCHOR id="glib-IO-Channels.other" href="glib/glib-IO-Channels.html#glib-IO-Channels.other">
|
652
|
+
<ANCHOR id="glib-IO-Channels.includes" href="glib/glib-IO-Channels.html#glib-IO-Channels.includes">
|
653
|
+
<ANCHOR id="glib-IO-Channels.description" href="glib/glib-IO-Channels.html#glib-IO-Channels.description">
|
654
|
+
<ANCHOR id="glib-IO-Channels.functions_details" href="glib/glib-IO-Channels.html#glib-IO-Channels.functions_details">
|
655
|
+
<ANCHOR id="g-io-channel-unix-new" href="glib/glib-IO-Channels.html#g-io-channel-unix-new">
|
656
|
+
<ANCHOR id="g-io-channel-unix-get-fd" href="glib/glib-IO-Channels.html#g-io-channel-unix-get-fd">
|
657
|
+
<ANCHOR id="g-io-channel-win32-new-fd" href="glib/glib-IO-Channels.html#g-io-channel-win32-new-fd">
|
658
|
+
<ANCHOR id="g-io-channel-win32-new-socket" href="glib/glib-IO-Channels.html#g-io-channel-win32-new-socket">
|
659
|
+
<ANCHOR id="g-io-channel-win32-new-messages" href="glib/glib-IO-Channels.html#g-io-channel-win32-new-messages">
|
660
|
+
<ANCHOR id="g-io-channel-init" href="glib/glib-IO-Channels.html#g-io-channel-init">
|
661
|
+
<ANCHOR id="g-io-channel-new-file" href="glib/glib-IO-Channels.html#g-io-channel-new-file">
|
662
|
+
<ANCHOR id="g-io-channel-read-chars" href="glib/glib-IO-Channels.html#g-io-channel-read-chars">
|
663
|
+
<ANCHOR id="g-io-channel-read-unichar" href="glib/glib-IO-Channels.html#g-io-channel-read-unichar">
|
664
|
+
<ANCHOR id="g-io-channel-read-line" href="glib/glib-IO-Channels.html#g-io-channel-read-line">
|
665
|
+
<ANCHOR id="g-io-channel-read-line-string" href="glib/glib-IO-Channels.html#g-io-channel-read-line-string">
|
666
|
+
<ANCHOR id="g-io-channel-read-to-end" href="glib/glib-IO-Channels.html#g-io-channel-read-to-end">
|
667
|
+
<ANCHOR id="g-io-channel-write-chars" href="glib/glib-IO-Channels.html#g-io-channel-write-chars">
|
668
|
+
<ANCHOR id="g-io-channel-write-unichar" href="glib/glib-IO-Channels.html#g-io-channel-write-unichar">
|
669
|
+
<ANCHOR id="g-io-channel-flush" href="glib/glib-IO-Channels.html#g-io-channel-flush">
|
670
|
+
<ANCHOR id="g-io-channel-seek-position" href="glib/glib-IO-Channels.html#g-io-channel-seek-position">
|
671
|
+
<ANCHOR id="g-io-channel-shutdown" href="glib/glib-IO-Channels.html#g-io-channel-shutdown">
|
672
|
+
<ANCHOR id="g-io-channel-error-from-errno" href="glib/glib-IO-Channels.html#g-io-channel-error-from-errno">
|
673
|
+
<ANCHOR id="g-io-channel-ref" href="glib/glib-IO-Channels.html#g-io-channel-ref">
|
674
|
+
<ANCHOR id="g-io-channel-unref" href="glib/glib-IO-Channels.html#g-io-channel-unref">
|
675
|
+
<ANCHOR id="g-io-create-watch" href="glib/glib-IO-Channels.html#g-io-create-watch">
|
676
|
+
<ANCHOR id="g-io-add-watch" href="glib/glib-IO-Channels.html#g-io-add-watch">
|
677
|
+
<ANCHOR id="g-io-add-watch-full" href="glib/glib-IO-Channels.html#g-io-add-watch-full">
|
678
|
+
<ANCHOR id="GIOFunc" href="glib/glib-IO-Channels.html#GIOFunc">
|
679
|
+
<ANCHOR id="g-io-channel-get-buffer-size" href="glib/glib-IO-Channels.html#g-io-channel-get-buffer-size">
|
680
|
+
<ANCHOR id="g-io-channel-set-buffer-size" href="glib/glib-IO-Channels.html#g-io-channel-set-buffer-size">
|
681
|
+
<ANCHOR id="g-io-channel-get-buffer-condition" href="glib/glib-IO-Channels.html#g-io-channel-get-buffer-condition">
|
682
|
+
<ANCHOR id="g-io-channel-get-flags" href="glib/glib-IO-Channels.html#g-io-channel-get-flags">
|
683
|
+
<ANCHOR id="g-io-channel-set-flags" href="glib/glib-IO-Channels.html#g-io-channel-set-flags">
|
684
|
+
<ANCHOR id="g-io-channel-get-line-term" href="glib/glib-IO-Channels.html#g-io-channel-get-line-term">
|
685
|
+
<ANCHOR id="g-io-channel-set-line-term" href="glib/glib-IO-Channels.html#g-io-channel-set-line-term">
|
686
|
+
<ANCHOR id="g-io-channel-get-buffered" href="glib/glib-IO-Channels.html#g-io-channel-get-buffered">
|
687
|
+
<ANCHOR id="g-io-channel-set-buffered" href="glib/glib-IO-Channels.html#g-io-channel-set-buffered">
|
688
|
+
<ANCHOR id="g-io-channel-get-encoding" href="glib/glib-IO-Channels.html#g-io-channel-get-encoding">
|
689
|
+
<ANCHOR id="g-io-channel-set-encoding" href="glib/glib-IO-Channels.html#g-io-channel-set-encoding">
|
690
|
+
<ANCHOR id="g-io-channel-get-close-on-unref" href="glib/glib-IO-Channels.html#g-io-channel-get-close-on-unref">
|
691
|
+
<ANCHOR id="g-io-channel-set-close-on-unref" href="glib/glib-IO-Channels.html#g-io-channel-set-close-on-unref">
|
692
|
+
<ANCHOR id="g-io-channel-read" href="glib/glib-IO-Channels.html#g-io-channel-read">
|
693
|
+
<ANCHOR id="g-io-channel-write" href="glib/glib-IO-Channels.html#g-io-channel-write">
|
694
|
+
<ANCHOR id="g-io-channel-seek" href="glib/glib-IO-Channels.html#g-io-channel-seek">
|
695
|
+
<ANCHOR id="g-io-channel-close" href="glib/glib-IO-Channels.html#g-io-channel-close">
|
696
|
+
<ANCHOR id="glib-IO-Channels.other_details" href="glib/glib-IO-Channels.html#glib-IO-Channels.other_details">
|
697
|
+
<ANCHOR id="GIOChannel" href="glib/glib-IO-Channels.html#GIOChannel">
|
698
|
+
<ANCHOR id="GSeekType" href="glib/glib-IO-Channels.html#GSeekType">
|
699
|
+
<ANCHOR id="GIOStatus" href="glib/glib-IO-Channels.html#GIOStatus">
|
700
|
+
<ANCHOR id="GIOChannelError" href="glib/glib-IO-Channels.html#GIOChannelError">
|
701
|
+
<ANCHOR id="G-IO-CHANNEL-ERROR:CAPS" href="glib/glib-IO-Channels.html#G-IO-CHANNEL-ERROR:CAPS">
|
702
|
+
<ANCHOR id="GIOCondition" href="glib/glib-IO-Channels.html#GIOCondition">
|
703
|
+
<ANCHOR id="GIOFuncs" href="glib/glib-IO-Channels.html#GIOFuncs">
|
704
|
+
<ANCHOR id="GIOFlags" href="glib/glib-IO-Channels.html#GIOFlags">
|
705
|
+
<ANCHOR id="GIOError" href="glib/glib-IO-Channels.html#GIOError">
|
706
|
+
<ANCHOR id="glib-IO-Channels.see-also" href="glib/glib-IO-Channels.html#glib-IO-Channels.see-also">
|
707
|
+
<ANCHOR id="glib-Error-Reporting" href="glib/glib-Error-Reporting.html">
|
708
|
+
<ANCHOR id="glib-Error-Reporting.functions" href="glib/glib-Error-Reporting.html#glib-Error-Reporting.functions">
|
709
|
+
<ANCHOR id="glib-Error-Reporting.other" href="glib/glib-Error-Reporting.html#glib-Error-Reporting.other">
|
710
|
+
<ANCHOR id="glib-Error-Reporting.includes" href="glib/glib-Error-Reporting.html#glib-Error-Reporting.includes">
|
711
|
+
<ANCHOR id="glib-Error-Reporting.description" href="glib/glib-Error-Reporting.html#glib-Error-Reporting.description">
|
712
|
+
<ANCHOR id="glib-Error-Reporting.functions_details" href="glib/glib-Error-Reporting.html#glib-Error-Reporting.functions_details">
|
713
|
+
<ANCHOR id="g-error-new" href="glib/glib-Error-Reporting.html#g-error-new">
|
714
|
+
<ANCHOR id="g-error-new-literal" href="glib/glib-Error-Reporting.html#g-error-new-literal">
|
715
|
+
<ANCHOR id="g-error-new-valist" href="glib/glib-Error-Reporting.html#g-error-new-valist">
|
716
|
+
<ANCHOR id="g-error-free" href="glib/glib-Error-Reporting.html#g-error-free">
|
717
|
+
<ANCHOR id="g-error-copy" href="glib/glib-Error-Reporting.html#g-error-copy">
|
718
|
+
<ANCHOR id="g-error-matches" href="glib/glib-Error-Reporting.html#g-error-matches">
|
719
|
+
<ANCHOR id="g-set-error" href="glib/glib-Error-Reporting.html#g-set-error">
|
720
|
+
<ANCHOR id="g-set-error-literal" href="glib/glib-Error-Reporting.html#g-set-error-literal">
|
721
|
+
<ANCHOR id="g-propagate-error" href="glib/glib-Error-Reporting.html#g-propagate-error">
|
722
|
+
<ANCHOR id="g-clear-error" href="glib/glib-Error-Reporting.html#g-clear-error">
|
723
|
+
<ANCHOR id="g-prefix-error" href="glib/glib-Error-Reporting.html#g-prefix-error">
|
724
|
+
<ANCHOR id="g-propagate-prefixed-error" href="glib/glib-Error-Reporting.html#g-propagate-prefixed-error">
|
725
|
+
<ANCHOR id="glib-Error-Reporting.other_details" href="glib/glib-Error-Reporting.html#glib-Error-Reporting.other_details">
|
726
|
+
<ANCHOR id="GError" href="glib/glib-Error-Reporting.html#GError">
|
727
|
+
<ANCHOR id="glib-Warnings-and-Assertions" href="glib/glib-Warnings-and-Assertions.html">
|
728
|
+
<ANCHOR id="glib-Warnings-and-Assertions.functions" href="glib/glib-Warnings-and-Assertions.html#glib-Warnings-and-Assertions.functions">
|
729
|
+
<ANCHOR id="glib-Warnings-and-Assertions.includes" href="glib/glib-Warnings-and-Assertions.html#glib-Warnings-and-Assertions.includes">
|
730
|
+
<ANCHOR id="glib-Warnings-and-Assertions.description" href="glib/glib-Warnings-and-Assertions.html#glib-Warnings-and-Assertions.description">
|
731
|
+
<ANCHOR id="glib-Warnings-and-Assertions.functions_details" href="glib/glib-Warnings-and-Assertions.html#glib-Warnings-and-Assertions.functions_details">
|
732
|
+
<ANCHOR id="g-print" href="glib/glib-Warnings-and-Assertions.html#g-print">
|
733
|
+
<ANCHOR id="g-set-print-handler" href="glib/glib-Warnings-and-Assertions.html#g-set-print-handler">
|
734
|
+
<ANCHOR id="GPrintFunc" href="glib/glib-Warnings-and-Assertions.html#GPrintFunc">
|
735
|
+
<ANCHOR id="g-printerr" href="glib/glib-Warnings-and-Assertions.html#g-printerr">
|
736
|
+
<ANCHOR id="g-set-printerr-handler" href="glib/glib-Warnings-and-Assertions.html#g-set-printerr-handler">
|
737
|
+
<ANCHOR id="g-return-if-fail" href="glib/glib-Warnings-and-Assertions.html#g-return-if-fail">
|
738
|
+
<ANCHOR id="g-return-val-if-fail" href="glib/glib-Warnings-and-Assertions.html#g-return-val-if-fail">
|
739
|
+
<ANCHOR id="g-return-if-reached" href="glib/glib-Warnings-and-Assertions.html#g-return-if-reached">
|
740
|
+
<ANCHOR id="g-return-val-if-reached" href="glib/glib-Warnings-and-Assertions.html#g-return-val-if-reached">
|
741
|
+
<ANCHOR id="g-warn-if-fail" href="glib/glib-Warnings-and-Assertions.html#g-warn-if-fail">
|
742
|
+
<ANCHOR id="g-warn-if-reached" href="glib/glib-Warnings-and-Assertions.html#g-warn-if-reached">
|
743
|
+
<ANCHOR id="g-on-error-query" href="glib/glib-Warnings-and-Assertions.html#g-on-error-query">
|
744
|
+
<ANCHOR id="g-on-error-stack-trace" href="glib/glib-Warnings-and-Assertions.html#g-on-error-stack-trace">
|
745
|
+
<ANCHOR id="G-BREAKPOINT:CAPS" href="glib/glib-Warnings-and-Assertions.html#G-BREAKPOINT:CAPS">
|
746
|
+
<ANCHOR id="glib-Warnings-and-Assertions.other_details" href="glib/glib-Warnings-and-Assertions.html#glib-Warnings-and-Assertions.other_details">
|
747
|
+
<ANCHOR id="glib-Message-Logging" href="glib/glib-Message-Logging.html">
|
748
|
+
<ANCHOR id="glib-Message-Logging.functions" href="glib/glib-Message-Logging.html#glib-Message-Logging.functions">
|
749
|
+
<ANCHOR id="glib-Message-Logging.other" href="glib/glib-Message-Logging.html#glib-Message-Logging.other">
|
750
|
+
<ANCHOR id="glib-Message-Logging.includes" href="glib/glib-Message-Logging.html#glib-Message-Logging.includes">
|
751
|
+
<ANCHOR id="glib-Message-Logging.description" href="glib/glib-Message-Logging.html#glib-Message-Logging.description">
|
752
|
+
<ANCHOR id="glib-Message-Logging.functions_details" href="glib/glib-Message-Logging.html#glib-Message-Logging.functions_details">
|
753
|
+
<ANCHOR id="G-LOG-DOMAIN:CAPS" href="glib/glib-Message-Logging.html#G-LOG-DOMAIN:CAPS">
|
754
|
+
<ANCHOR id="G-LOG-FATAL-MASK:CAPS" href="glib/glib-Message-Logging.html#G-LOG-FATAL-MASK:CAPS">
|
755
|
+
<ANCHOR id="G-LOG-LEVEL-USER-SHIFT:CAPS" href="glib/glib-Message-Logging.html#G-LOG-LEVEL-USER-SHIFT:CAPS">
|
756
|
+
<ANCHOR id="GLogFunc" href="glib/glib-Message-Logging.html#GLogFunc">
|
757
|
+
<ANCHOR id="g-log" href="glib/glib-Message-Logging.html#g-log">
|
758
|
+
<ANCHOR id="g-logv" href="glib/glib-Message-Logging.html#g-logv">
|
759
|
+
<ANCHOR id="g-message" href="glib/glib-Message-Logging.html#g-message">
|
760
|
+
<ANCHOR id="g-warning" href="glib/glib-Message-Logging.html#g-warning">
|
761
|
+
<ANCHOR id="g-critical" href="glib/glib-Message-Logging.html#g-critical">
|
762
|
+
<ANCHOR id="g-error" href="glib/glib-Message-Logging.html#g-error">
|
763
|
+
<ANCHOR id="g-info" href="glib/glib-Message-Logging.html#g-info">
|
764
|
+
<ANCHOR id="g-debug" href="glib/glib-Message-Logging.html#g-debug">
|
765
|
+
<ANCHOR id="g-log-set-handler" href="glib/glib-Message-Logging.html#g-log-set-handler">
|
766
|
+
<ANCHOR id="g-log-remove-handler" href="glib/glib-Message-Logging.html#g-log-remove-handler">
|
767
|
+
<ANCHOR id="g-log-set-always-fatal" href="glib/glib-Message-Logging.html#g-log-set-always-fatal">
|
768
|
+
<ANCHOR id="g-log-set-fatal-mask" href="glib/glib-Message-Logging.html#g-log-set-fatal-mask">
|
769
|
+
<ANCHOR id="g-log-default-handler" href="glib/glib-Message-Logging.html#g-log-default-handler">
|
770
|
+
<ANCHOR id="g-log-set-default-handler" href="glib/glib-Message-Logging.html#g-log-set-default-handler">
|
771
|
+
<ANCHOR id="glib-Message-Logging.other_details" href="glib/glib-Message-Logging.html#glib-Message-Logging.other_details">
|
772
|
+
<ANCHOR id="GLogLevelFlags" href="glib/glib-Message-Logging.html#GLogLevelFlags">
|
773
|
+
<ANCHOR id="glib-String-Utility-Functions" href="glib/glib-String-Utility-Functions.html">
|
774
|
+
<ANCHOR id="glib-String-Utility-Functions.functions" href="glib/glib-String-Utility-Functions.html#glib-String-Utility-Functions.functions">
|
775
|
+
<ANCHOR id="glib-String-Utility-Functions.other" href="glib/glib-String-Utility-Functions.html#glib-String-Utility-Functions.other">
|
776
|
+
<ANCHOR id="glib-String-Utility-Functions.includes" href="glib/glib-String-Utility-Functions.html#glib-String-Utility-Functions.includes">
|
777
|
+
<ANCHOR id="glib-String-Utility-Functions.description" href="glib/glib-String-Utility-Functions.html#glib-String-Utility-Functions.description">
|
778
|
+
<ANCHOR id="glib-String-Utility-Functions.functions_details" href="glib/glib-String-Utility-Functions.html#glib-String-Utility-Functions.functions_details">
|
779
|
+
<ANCHOR id="g-strdup" href="glib/glib-String-Utility-Functions.html#g-strdup">
|
780
|
+
<ANCHOR id="g-strndup" href="glib/glib-String-Utility-Functions.html#g-strndup">
|
781
|
+
<ANCHOR id="g-strdupv" href="glib/glib-String-Utility-Functions.html#g-strdupv">
|
782
|
+
<ANCHOR id="g-strnfill" href="glib/glib-String-Utility-Functions.html#g-strnfill">
|
783
|
+
<ANCHOR id="g-stpcpy" href="glib/glib-String-Utility-Functions.html#g-stpcpy">
|
784
|
+
<ANCHOR id="g-strstr-len" href="glib/glib-String-Utility-Functions.html#g-strstr-len">
|
785
|
+
<ANCHOR id="g-strrstr" href="glib/glib-String-Utility-Functions.html#g-strrstr">
|
786
|
+
<ANCHOR id="g-strrstr-len" href="glib/glib-String-Utility-Functions.html#g-strrstr-len">
|
787
|
+
<ANCHOR id="g-str-has-prefix" href="glib/glib-String-Utility-Functions.html#g-str-has-prefix">
|
788
|
+
<ANCHOR id="g-str-has-suffix" href="glib/glib-String-Utility-Functions.html#g-str-has-suffix">
|
789
|
+
<ANCHOR id="g-strcmp0" href="glib/glib-String-Utility-Functions.html#g-strcmp0">
|
790
|
+
<ANCHOR id="g-str-to-ascii" href="glib/glib-String-Utility-Functions.html#g-str-to-ascii">
|
791
|
+
<ANCHOR id="g-str-tokenize-and-fold" href="glib/glib-String-Utility-Functions.html#g-str-tokenize-and-fold">
|
792
|
+
<ANCHOR id="g-str-match-string" href="glib/glib-String-Utility-Functions.html#g-str-match-string">
|
793
|
+
<ANCHOR id="g-strlcpy" href="glib/glib-String-Utility-Functions.html#g-strlcpy">
|
794
|
+
<ANCHOR id="g-strlcat" href="glib/glib-String-Utility-Functions.html#g-strlcat">
|
795
|
+
<ANCHOR id="g-strdup-printf" href="glib/glib-String-Utility-Functions.html#g-strdup-printf">
|
796
|
+
<ANCHOR id="g-strdup-vprintf" href="glib/glib-String-Utility-Functions.html#g-strdup-vprintf">
|
797
|
+
<ANCHOR id="g-printf" href="glib/glib-String-Utility-Functions.html#g-printf">
|
798
|
+
<ANCHOR id="g-vprintf" href="glib/glib-String-Utility-Functions.html#g-vprintf">
|
799
|
+
<ANCHOR id="g-fprintf" href="glib/glib-String-Utility-Functions.html#g-fprintf">
|
800
|
+
<ANCHOR id="g-vfprintf" href="glib/glib-String-Utility-Functions.html#g-vfprintf">
|
801
|
+
<ANCHOR id="g-sprintf" href="glib/glib-String-Utility-Functions.html#g-sprintf">
|
802
|
+
<ANCHOR id="g-vsprintf" href="glib/glib-String-Utility-Functions.html#g-vsprintf">
|
803
|
+
<ANCHOR id="g-snprintf" href="glib/glib-String-Utility-Functions.html#g-snprintf">
|
804
|
+
<ANCHOR id="g-vsnprintf" href="glib/glib-String-Utility-Functions.html#g-vsnprintf">
|
805
|
+
<ANCHOR id="g-vasprintf" href="glib/glib-String-Utility-Functions.html#g-vasprintf">
|
806
|
+
<ANCHOR id="g-printf-string-upper-bound" href="glib/glib-String-Utility-Functions.html#g-printf-string-upper-bound">
|
807
|
+
<ANCHOR id="g-str-is-ascii" href="glib/glib-String-Utility-Functions.html#g-str-is-ascii">
|
808
|
+
<ANCHOR id="g-ascii-isalnum" href="glib/glib-String-Utility-Functions.html#g-ascii-isalnum">
|
809
|
+
<ANCHOR id="g-ascii-isalpha" href="glib/glib-String-Utility-Functions.html#g-ascii-isalpha">
|
810
|
+
<ANCHOR id="g-ascii-iscntrl" href="glib/glib-String-Utility-Functions.html#g-ascii-iscntrl">
|
811
|
+
<ANCHOR id="g-ascii-isdigit" href="glib/glib-String-Utility-Functions.html#g-ascii-isdigit">
|
812
|
+
<ANCHOR id="g-ascii-isgraph" href="glib/glib-String-Utility-Functions.html#g-ascii-isgraph">
|
813
|
+
<ANCHOR id="g-ascii-islower" href="glib/glib-String-Utility-Functions.html#g-ascii-islower">
|
814
|
+
<ANCHOR id="g-ascii-isprint" href="glib/glib-String-Utility-Functions.html#g-ascii-isprint">
|
815
|
+
<ANCHOR id="g-ascii-ispunct" href="glib/glib-String-Utility-Functions.html#g-ascii-ispunct">
|
816
|
+
<ANCHOR id="g-ascii-isspace" href="glib/glib-String-Utility-Functions.html#g-ascii-isspace">
|
817
|
+
<ANCHOR id="g-ascii-isupper" href="glib/glib-String-Utility-Functions.html#g-ascii-isupper">
|
818
|
+
<ANCHOR id="g-ascii-isxdigit" href="glib/glib-String-Utility-Functions.html#g-ascii-isxdigit">
|
819
|
+
<ANCHOR id="g-ascii-digit-value" href="glib/glib-String-Utility-Functions.html#g-ascii-digit-value">
|
820
|
+
<ANCHOR id="g-ascii-xdigit-value" href="glib/glib-String-Utility-Functions.html#g-ascii-xdigit-value">
|
821
|
+
<ANCHOR id="g-ascii-strcasecmp" href="glib/glib-String-Utility-Functions.html#g-ascii-strcasecmp">
|
822
|
+
<ANCHOR id="g-ascii-strncasecmp" href="glib/glib-String-Utility-Functions.html#g-ascii-strncasecmp">
|
823
|
+
<ANCHOR id="g-ascii-strup" href="glib/glib-String-Utility-Functions.html#g-ascii-strup">
|
824
|
+
<ANCHOR id="g-ascii-strdown" href="glib/glib-String-Utility-Functions.html#g-ascii-strdown">
|
825
|
+
<ANCHOR id="g-ascii-tolower" href="glib/glib-String-Utility-Functions.html#g-ascii-tolower">
|
826
|
+
<ANCHOR id="g-ascii-toupper" href="glib/glib-String-Utility-Functions.html#g-ascii-toupper">
|
827
|
+
<ANCHOR id="g-string-ascii-up" href="glib/glib-String-Utility-Functions.html#g-string-ascii-up">
|
828
|
+
<ANCHOR id="g-string-ascii-down" href="glib/glib-String-Utility-Functions.html#g-string-ascii-down">
|
829
|
+
<ANCHOR id="g-strup" href="glib/glib-String-Utility-Functions.html#g-strup">
|
830
|
+
<ANCHOR id="g-strdown" href="glib/glib-String-Utility-Functions.html#g-strdown">
|
831
|
+
<ANCHOR id="g-strcasecmp" href="glib/glib-String-Utility-Functions.html#g-strcasecmp">
|
832
|
+
<ANCHOR id="g-strncasecmp" href="glib/glib-String-Utility-Functions.html#g-strncasecmp">
|
833
|
+
<ANCHOR id="g-strreverse" href="glib/glib-String-Utility-Functions.html#g-strreverse">
|
834
|
+
<ANCHOR id="g-ascii-strtoll" href="glib/glib-String-Utility-Functions.html#g-ascii-strtoll">
|
835
|
+
<ANCHOR id="g-ascii-strtoull" href="glib/glib-String-Utility-Functions.html#g-ascii-strtoull">
|
836
|
+
<ANCHOR id="G-ASCII-DTOSTR-BUF-SIZE:CAPS" href="glib/glib-String-Utility-Functions.html#G-ASCII-DTOSTR-BUF-SIZE:CAPS">
|
837
|
+
<ANCHOR id="g-ascii-strtod" href="glib/glib-String-Utility-Functions.html#g-ascii-strtod">
|
838
|
+
<ANCHOR id="g-ascii-dtostr" href="glib/glib-String-Utility-Functions.html#g-ascii-dtostr">
|
839
|
+
<ANCHOR id="g-ascii-formatd" href="glib/glib-String-Utility-Functions.html#g-ascii-formatd">
|
840
|
+
<ANCHOR id="g-strtod" href="glib/glib-String-Utility-Functions.html#g-strtod">
|
841
|
+
<ANCHOR id="g-strchug" href="glib/glib-String-Utility-Functions.html#g-strchug">
|
842
|
+
<ANCHOR id="g-strchomp" href="glib/glib-String-Utility-Functions.html#g-strchomp">
|
843
|
+
<ANCHOR id="g-strstrip" href="glib/glib-String-Utility-Functions.html#g-strstrip">
|
844
|
+
<ANCHOR id="g-strdelimit" href="glib/glib-String-Utility-Functions.html#g-strdelimit">
|
845
|
+
<ANCHOR id="g-strescape" href="glib/glib-String-Utility-Functions.html#g-strescape">
|
846
|
+
<ANCHOR id="g-strcompress" href="glib/glib-String-Utility-Functions.html#g-strcompress">
|
847
|
+
<ANCHOR id="g-strcanon" href="glib/glib-String-Utility-Functions.html#g-strcanon">
|
848
|
+
<ANCHOR id="g-strsplit" href="glib/glib-String-Utility-Functions.html#g-strsplit">
|
849
|
+
<ANCHOR id="g-strsplit-set" href="glib/glib-String-Utility-Functions.html#g-strsplit-set">
|
850
|
+
<ANCHOR id="g-strfreev" href="glib/glib-String-Utility-Functions.html#g-strfreev">
|
851
|
+
<ANCHOR id="g-strconcat" href="glib/glib-String-Utility-Functions.html#g-strconcat">
|
852
|
+
<ANCHOR id="g-strjoin" href="glib/glib-String-Utility-Functions.html#g-strjoin">
|
853
|
+
<ANCHOR id="g-strjoinv" href="glib/glib-String-Utility-Functions.html#g-strjoinv">
|
854
|
+
<ANCHOR id="g-strv-length" href="glib/glib-String-Utility-Functions.html#g-strv-length">
|
855
|
+
<ANCHOR id="g-strerror" href="glib/glib-String-Utility-Functions.html#g-strerror">
|
856
|
+
<ANCHOR id="g-strsignal" href="glib/glib-String-Utility-Functions.html#g-strsignal">
|
857
|
+
<ANCHOR id="glib-String-Utility-Functions.other_details" href="glib/glib-String-Utility-Functions.html#glib-String-Utility-Functions.other_details">
|
858
|
+
<ANCHOR id="G-STR-DELIMITERS:CAPS" href="glib/glib-String-Utility-Functions.html#G-STR-DELIMITERS:CAPS">
|
859
|
+
<ANCHOR id="glib-Character-Set-Conversion" href="glib/glib-Character-Set-Conversion.html">
|
860
|
+
<ANCHOR id="glib-Character-Set-Conversion.functions" href="glib/glib-Character-Set-Conversion.html#glib-Character-Set-Conversion.functions">
|
861
|
+
<ANCHOR id="glib-Character-Set-Conversion.other" href="glib/glib-Character-Set-Conversion.html#glib-Character-Set-Conversion.other">
|
862
|
+
<ANCHOR id="glib-Character-Set-Conversion.includes" href="glib/glib-Character-Set-Conversion.html#glib-Character-Set-Conversion.includes">
|
863
|
+
<ANCHOR id="glib-Character-Set-Conversion.description" href="glib/glib-Character-Set-Conversion.html#glib-Character-Set-Conversion.description">
|
864
|
+
<ANCHOR id="glib-Character-Set-Conversion.functions_details" href="glib/glib-Character-Set-Conversion.html#glib-Character-Set-Conversion.functions_details">
|
865
|
+
<ANCHOR id="g-convert" href="glib/glib-Character-Set-Conversion.html#g-convert">
|
866
|
+
<ANCHOR id="g-convert-with-fallback" href="glib/glib-Character-Set-Conversion.html#g-convert-with-fallback">
|
867
|
+
<ANCHOR id="g-convert-with-iconv" href="glib/glib-Character-Set-Conversion.html#g-convert-with-iconv">
|
868
|
+
<ANCHOR id="g-iconv-open" href="glib/glib-Character-Set-Conversion.html#g-iconv-open">
|
869
|
+
<ANCHOR id="g-iconv" href="glib/glib-Character-Set-Conversion.html#g-iconv">
|
870
|
+
<ANCHOR id="g-iconv-close" href="glib/glib-Character-Set-Conversion.html#g-iconv-close">
|
871
|
+
<ANCHOR id="g-locale-to-utf8" href="glib/glib-Character-Set-Conversion.html#g-locale-to-utf8">
|
872
|
+
<ANCHOR id="g-filename-to-utf8" href="glib/glib-Character-Set-Conversion.html#g-filename-to-utf8">
|
873
|
+
<ANCHOR id="g-filename-from-utf8" href="glib/glib-Character-Set-Conversion.html#g-filename-from-utf8">
|
874
|
+
<ANCHOR id="g-get-filename-charsets" href="glib/glib-Character-Set-Conversion.html#g-get-filename-charsets">
|
875
|
+
<ANCHOR id="g-filename-display-name" href="glib/glib-Character-Set-Conversion.html#g-filename-display-name">
|
876
|
+
<ANCHOR id="g-filename-display-basename" href="glib/glib-Character-Set-Conversion.html#g-filename-display-basename">
|
877
|
+
<ANCHOR id="g-locale-from-utf8" href="glib/glib-Character-Set-Conversion.html#g-locale-from-utf8">
|
878
|
+
<ANCHOR id="g-get-charset" href="glib/glib-Character-Set-Conversion.html#g-get-charset">
|
879
|
+
<ANCHOR id="g-get-codeset" href="glib/glib-Character-Set-Conversion.html#g-get-codeset">
|
880
|
+
<ANCHOR id="glib-Character-Set-Conversion.other_details" href="glib/glib-Character-Set-Conversion.html#glib-Character-Set-Conversion.other_details">
|
881
|
+
<ANCHOR id="GIConv" href="glib/glib-Character-Set-Conversion.html#GIConv">
|
882
|
+
<ANCHOR id="G-CONVERT-ERROR:CAPS" href="glib/glib-Character-Set-Conversion.html#G-CONVERT-ERROR:CAPS">
|
883
|
+
<ANCHOR id="GConvertError" href="glib/glib-Character-Set-Conversion.html#GConvertError">
|
884
|
+
<ANCHOR id="glib-Unicode-Manipulation" href="glib/glib-Unicode-Manipulation.html">
|
885
|
+
<ANCHOR id="glib-Unicode-Manipulation.functions" href="glib/glib-Unicode-Manipulation.html#glib-Unicode-Manipulation.functions">
|
886
|
+
<ANCHOR id="glib-Unicode-Manipulation.other" href="glib/glib-Unicode-Manipulation.html#glib-Unicode-Manipulation.other">
|
887
|
+
<ANCHOR id="glib-Unicode-Manipulation.includes" href="glib/glib-Unicode-Manipulation.html#glib-Unicode-Manipulation.includes">
|
888
|
+
<ANCHOR id="glib-Unicode-Manipulation.description" href="glib/glib-Unicode-Manipulation.html#glib-Unicode-Manipulation.description">
|
889
|
+
<ANCHOR id="glib-Unicode-Manipulation.functions_details" href="glib/glib-Unicode-Manipulation.html#glib-Unicode-Manipulation.functions_details">
|
890
|
+
<ANCHOR id="g-unichar-validate" href="glib/glib-Unicode-Manipulation.html#g-unichar-validate">
|
891
|
+
<ANCHOR id="g-unichar-isalnum" href="glib/glib-Unicode-Manipulation.html#g-unichar-isalnum">
|
892
|
+
<ANCHOR id="g-unichar-isalpha" href="glib/glib-Unicode-Manipulation.html#g-unichar-isalpha">
|
893
|
+
<ANCHOR id="g-unichar-iscntrl" href="glib/glib-Unicode-Manipulation.html#g-unichar-iscntrl">
|
894
|
+
<ANCHOR id="g-unichar-isdefined" href="glib/glib-Unicode-Manipulation.html#g-unichar-isdefined">
|
895
|
+
<ANCHOR id="g-unichar-isdigit" href="glib/glib-Unicode-Manipulation.html#g-unichar-isdigit">
|
896
|
+
<ANCHOR id="g-unichar-isgraph" href="glib/glib-Unicode-Manipulation.html#g-unichar-isgraph">
|
897
|
+
<ANCHOR id="g-unichar-islower" href="glib/glib-Unicode-Manipulation.html#g-unichar-islower">
|
898
|
+
<ANCHOR id="g-unichar-ismark" href="glib/glib-Unicode-Manipulation.html#g-unichar-ismark">
|
899
|
+
<ANCHOR id="g-unichar-isprint" href="glib/glib-Unicode-Manipulation.html#g-unichar-isprint">
|
900
|
+
<ANCHOR id="g-unichar-ispunct" href="glib/glib-Unicode-Manipulation.html#g-unichar-ispunct">
|
901
|
+
<ANCHOR id="g-unichar-isspace" href="glib/glib-Unicode-Manipulation.html#g-unichar-isspace">
|
902
|
+
<ANCHOR id="g-unichar-istitle" href="glib/glib-Unicode-Manipulation.html#g-unichar-istitle">
|
903
|
+
<ANCHOR id="g-unichar-isupper" href="glib/glib-Unicode-Manipulation.html#g-unichar-isupper">
|
904
|
+
<ANCHOR id="g-unichar-isxdigit" href="glib/glib-Unicode-Manipulation.html#g-unichar-isxdigit">
|
905
|
+
<ANCHOR id="g-unichar-iswide" href="glib/glib-Unicode-Manipulation.html#g-unichar-iswide">
|
906
|
+
<ANCHOR id="g-unichar-iswide-cjk" href="glib/glib-Unicode-Manipulation.html#g-unichar-iswide-cjk">
|
907
|
+
<ANCHOR id="g-unichar-iszerowidth" href="glib/glib-Unicode-Manipulation.html#g-unichar-iszerowidth">
|
908
|
+
<ANCHOR id="g-unichar-toupper" href="glib/glib-Unicode-Manipulation.html#g-unichar-toupper">
|
909
|
+
<ANCHOR id="g-unichar-tolower" href="glib/glib-Unicode-Manipulation.html#g-unichar-tolower">
|
910
|
+
<ANCHOR id="g-unichar-totitle" href="glib/glib-Unicode-Manipulation.html#g-unichar-totitle">
|
911
|
+
<ANCHOR id="g-unichar-digit-value" href="glib/glib-Unicode-Manipulation.html#g-unichar-digit-value">
|
912
|
+
<ANCHOR id="g-unichar-xdigit-value" href="glib/glib-Unicode-Manipulation.html#g-unichar-xdigit-value">
|
913
|
+
<ANCHOR id="g-unichar-compose" href="glib/glib-Unicode-Manipulation.html#g-unichar-compose">
|
914
|
+
<ANCHOR id="g-unichar-decompose" href="glib/glib-Unicode-Manipulation.html#g-unichar-decompose">
|
915
|
+
<ANCHOR id="g-unichar-fully-decompose" href="glib/glib-Unicode-Manipulation.html#g-unichar-fully-decompose">
|
916
|
+
<ANCHOR id="g-unichar-type" href="glib/glib-Unicode-Manipulation.html#g-unichar-type">
|
917
|
+
<ANCHOR id="g-unichar-break-type" href="glib/glib-Unicode-Manipulation.html#g-unichar-break-type">
|
918
|
+
<ANCHOR id="g-unichar-combining-class" href="glib/glib-Unicode-Manipulation.html#g-unichar-combining-class">
|
919
|
+
<ANCHOR id="g-unicode-canonical-ordering" href="glib/glib-Unicode-Manipulation.html#g-unicode-canonical-ordering">
|
920
|
+
<ANCHOR id="g-unicode-canonical-decomposition" href="glib/glib-Unicode-Manipulation.html#g-unicode-canonical-decomposition">
|
921
|
+
<ANCHOR id="g-unichar-get-mirror-char" href="glib/glib-Unicode-Manipulation.html#g-unichar-get-mirror-char">
|
922
|
+
<ANCHOR id="g-unichar-get-script" href="glib/glib-Unicode-Manipulation.html#g-unichar-get-script">
|
923
|
+
<ANCHOR id="g-unicode-script-from-iso15924" href="glib/glib-Unicode-Manipulation.html#g-unicode-script-from-iso15924">
|
924
|
+
<ANCHOR id="g-unicode-script-to-iso15924" href="glib/glib-Unicode-Manipulation.html#g-unicode-script-to-iso15924">
|
925
|
+
<ANCHOR id="g-utf8-next-char" href="glib/glib-Unicode-Manipulation.html#g-utf8-next-char">
|
926
|
+
<ANCHOR id="g-utf8-get-char" href="glib/glib-Unicode-Manipulation.html#g-utf8-get-char">
|
927
|
+
<ANCHOR id="g-utf8-get-char-validated" href="glib/glib-Unicode-Manipulation.html#g-utf8-get-char-validated">
|
928
|
+
<ANCHOR id="g-utf8-offset-to-pointer" href="glib/glib-Unicode-Manipulation.html#g-utf8-offset-to-pointer">
|
929
|
+
<ANCHOR id="g-utf8-pointer-to-offset" href="glib/glib-Unicode-Manipulation.html#g-utf8-pointer-to-offset">
|
930
|
+
<ANCHOR id="g-utf8-prev-char" href="glib/glib-Unicode-Manipulation.html#g-utf8-prev-char">
|
931
|
+
<ANCHOR id="g-utf8-find-next-char" href="glib/glib-Unicode-Manipulation.html#g-utf8-find-next-char">
|
932
|
+
<ANCHOR id="g-utf8-find-prev-char" href="glib/glib-Unicode-Manipulation.html#g-utf8-find-prev-char">
|
933
|
+
<ANCHOR id="g-utf8-strlen" href="glib/glib-Unicode-Manipulation.html#g-utf8-strlen">
|
934
|
+
<ANCHOR id="g-utf8-strncpy" href="glib/glib-Unicode-Manipulation.html#g-utf8-strncpy">
|
935
|
+
<ANCHOR id="g-utf8-strchr" href="glib/glib-Unicode-Manipulation.html#g-utf8-strchr">
|
936
|
+
<ANCHOR id="g-utf8-strrchr" href="glib/glib-Unicode-Manipulation.html#g-utf8-strrchr">
|
937
|
+
<ANCHOR id="g-utf8-strreverse" href="glib/glib-Unicode-Manipulation.html#g-utf8-strreverse">
|
938
|
+
<ANCHOR id="g-utf8-substring" href="glib/glib-Unicode-Manipulation.html#g-utf8-substring">
|
939
|
+
<ANCHOR id="g-utf8-validate" href="glib/glib-Unicode-Manipulation.html#g-utf8-validate">
|
940
|
+
<ANCHOR id="g-utf8-strup" href="glib/glib-Unicode-Manipulation.html#g-utf8-strup">
|
941
|
+
<ANCHOR id="g-utf8-strdown" href="glib/glib-Unicode-Manipulation.html#g-utf8-strdown">
|
942
|
+
<ANCHOR id="g-utf8-casefold" href="glib/glib-Unicode-Manipulation.html#g-utf8-casefold">
|
943
|
+
<ANCHOR id="g-utf8-normalize" href="glib/glib-Unicode-Manipulation.html#g-utf8-normalize">
|
944
|
+
<ANCHOR id="g-utf8-collate" href="glib/glib-Unicode-Manipulation.html#g-utf8-collate">
|
945
|
+
<ANCHOR id="g-utf8-collate-key" href="glib/glib-Unicode-Manipulation.html#g-utf8-collate-key">
|
946
|
+
<ANCHOR id="g-utf8-collate-key-for-filename" href="glib/glib-Unicode-Manipulation.html#g-utf8-collate-key-for-filename">
|
947
|
+
<ANCHOR id="g-utf8-to-utf16" href="glib/glib-Unicode-Manipulation.html#g-utf8-to-utf16">
|
948
|
+
<ANCHOR id="g-utf8-to-ucs4" href="glib/glib-Unicode-Manipulation.html#g-utf8-to-ucs4">
|
949
|
+
<ANCHOR id="g-utf8-to-ucs4-fast" href="glib/glib-Unicode-Manipulation.html#g-utf8-to-ucs4-fast">
|
950
|
+
<ANCHOR id="g-utf16-to-ucs4" href="glib/glib-Unicode-Manipulation.html#g-utf16-to-ucs4">
|
951
|
+
<ANCHOR id="g-utf16-to-utf8" href="glib/glib-Unicode-Manipulation.html#g-utf16-to-utf8">
|
952
|
+
<ANCHOR id="g-ucs4-to-utf16" href="glib/glib-Unicode-Manipulation.html#g-ucs4-to-utf16">
|
953
|
+
<ANCHOR id="g-ucs4-to-utf8" href="glib/glib-Unicode-Manipulation.html#g-ucs4-to-utf8">
|
954
|
+
<ANCHOR id="g-unichar-to-utf8" href="glib/glib-Unicode-Manipulation.html#g-unichar-to-utf8">
|
955
|
+
<ANCHOR id="glib-Unicode-Manipulation.other_details" href="glib/glib-Unicode-Manipulation.html#glib-Unicode-Manipulation.other_details">
|
956
|
+
<ANCHOR id="gunichar" href="glib/glib-Unicode-Manipulation.html#gunichar">
|
957
|
+
<ANCHOR id="gunichar2" href="glib/glib-Unicode-Manipulation.html#gunichar2">
|
958
|
+
<ANCHOR id="G-UNICHAR-MAX-DECOMPOSITION-LENGTH:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICHAR-MAX-DECOMPOSITION-LENGTH:CAPS">
|
959
|
+
<ANCHOR id="GUnicodeType" href="glib/glib-Unicode-Manipulation.html#GUnicodeType">
|
960
|
+
<ANCHOR id="G-UNICODE-COMBINING-MARK:CAPS" href="glib/glib-Unicode-Manipulation.html#G-UNICODE-COMBINING-MARK:CAPS">
|
961
|
+
<ANCHOR id="GUnicodeBreakType" href="glib/glib-Unicode-Manipulation.html#GUnicodeBreakType">
|
962
|
+
<ANCHOR id="GUnicodeScript" href="glib/glib-Unicode-Manipulation.html#GUnicodeScript">
|
963
|
+
<ANCHOR id="GNormalizeMode" href="glib/glib-Unicode-Manipulation.html#GNormalizeMode">
|
964
|
+
<ANCHOR id="glib-Unicode-Manipulation.see-also" href="glib/glib-Unicode-Manipulation.html#glib-Unicode-Manipulation.see-also">
|
965
|
+
<ANCHOR id="glib-Base64-Encoding" href="glib/glib-Base64-Encoding.html">
|
966
|
+
<ANCHOR id="glib-Base64-Encoding.functions" href="glib/glib-Base64-Encoding.html#glib-Base64-Encoding.functions">
|
967
|
+
<ANCHOR id="glib-Base64-Encoding.includes" href="glib/glib-Base64-Encoding.html#glib-Base64-Encoding.includes">
|
968
|
+
<ANCHOR id="glib-Base64-Encoding.description" href="glib/glib-Base64-Encoding.html#glib-Base64-Encoding.description">
|
969
|
+
<ANCHOR id="glib-Base64-Encoding.functions_details" href="glib/glib-Base64-Encoding.html#glib-Base64-Encoding.functions_details">
|
970
|
+
<ANCHOR id="g-base64-encode-step" href="glib/glib-Base64-Encoding.html#g-base64-encode-step">
|
971
|
+
<ANCHOR id="g-base64-encode-close" href="glib/glib-Base64-Encoding.html#g-base64-encode-close">
|
972
|
+
<ANCHOR id="g-base64-encode" href="glib/glib-Base64-Encoding.html#g-base64-encode">
|
973
|
+
<ANCHOR id="g-base64-decode-step" href="glib/glib-Base64-Encoding.html#g-base64-decode-step">
|
974
|
+
<ANCHOR id="g-base64-decode" href="glib/glib-Base64-Encoding.html#g-base64-decode">
|
975
|
+
<ANCHOR id="g-base64-decode-inplace" href="glib/glib-Base64-Encoding.html#g-base64-decode-inplace">
|
976
|
+
<ANCHOR id="glib-Base64-Encoding.other_details" href="glib/glib-Base64-Encoding.html#glib-Base64-Encoding.other_details">
|
977
|
+
<ANCHOR id="glib-Data-Checksums" href="glib/glib-Data-Checksums.html">
|
978
|
+
<ANCHOR id="glib-Data-Checksums.functions" href="glib/glib-Data-Checksums.html#glib-Data-Checksums.functions">
|
979
|
+
<ANCHOR id="glib-Data-Checksums.other" href="glib/glib-Data-Checksums.html#glib-Data-Checksums.other">
|
980
|
+
<ANCHOR id="glib-Data-Checksums.includes" href="glib/glib-Data-Checksums.html#glib-Data-Checksums.includes">
|
981
|
+
<ANCHOR id="glib-Data-Checksums.description" href="glib/glib-Data-Checksums.html#glib-Data-Checksums.description">
|
982
|
+
<ANCHOR id="glib-Data-Checksums.functions_details" href="glib/glib-Data-Checksums.html#glib-Data-Checksums.functions_details">
|
983
|
+
<ANCHOR id="g-checksum-type-get-length" href="glib/glib-Data-Checksums.html#g-checksum-type-get-length">
|
984
|
+
<ANCHOR id="g-checksum-new" href="glib/glib-Data-Checksums.html#g-checksum-new">
|
985
|
+
<ANCHOR id="g-checksum-copy" href="glib/glib-Data-Checksums.html#g-checksum-copy">
|
986
|
+
<ANCHOR id="g-checksum-free" href="glib/glib-Data-Checksums.html#g-checksum-free">
|
987
|
+
<ANCHOR id="g-checksum-reset" href="glib/glib-Data-Checksums.html#g-checksum-reset">
|
988
|
+
<ANCHOR id="g-checksum-update" href="glib/glib-Data-Checksums.html#g-checksum-update">
|
989
|
+
<ANCHOR id="g-checksum-get-string" href="glib/glib-Data-Checksums.html#g-checksum-get-string">
|
990
|
+
<ANCHOR id="g-checksum-get-digest" href="glib/glib-Data-Checksums.html#g-checksum-get-digest">
|
991
|
+
<ANCHOR id="g-compute-checksum-for-data" href="glib/glib-Data-Checksums.html#g-compute-checksum-for-data">
|
992
|
+
<ANCHOR id="g-compute-checksum-for-string" href="glib/glib-Data-Checksums.html#g-compute-checksum-for-string">
|
993
|
+
<ANCHOR id="g-compute-checksum-for-bytes" href="glib/glib-Data-Checksums.html#g-compute-checksum-for-bytes">
|
994
|
+
<ANCHOR id="glib-Data-Checksums.other_details" href="glib/glib-Data-Checksums.html#glib-Data-Checksums.other_details">
|
995
|
+
<ANCHOR id="GChecksumType" href="glib/glib-Data-Checksums.html#GChecksumType">
|
996
|
+
<ANCHOR id="GChecksum" href="glib/glib-Data-Checksums.html#GChecksum">
|
997
|
+
<ANCHOR id="glib-Data-HMACs" href="glib/glib-Data-HMACs.html">
|
998
|
+
<ANCHOR id="glib-Data-HMACs.functions" href="glib/glib-Data-HMACs.html#glib-Data-HMACs.functions">
|
999
|
+
<ANCHOR id="glib-Data-HMACs.other" href="glib/glib-Data-HMACs.html#glib-Data-HMACs.other">
|
1000
|
+
<ANCHOR id="glib-Data-HMACs.includes" href="glib/glib-Data-HMACs.html#glib-Data-HMACs.includes">
|
1001
|
+
<ANCHOR id="glib-Data-HMACs.description" href="glib/glib-Data-HMACs.html#glib-Data-HMACs.description">
|
1002
|
+
<ANCHOR id="glib-Data-HMACs.functions_details" href="glib/glib-Data-HMACs.html#glib-Data-HMACs.functions_details">
|
1003
|
+
<ANCHOR id="g-hmac-new" href="glib/glib-Data-HMACs.html#g-hmac-new">
|
1004
|
+
<ANCHOR id="g-hmac-copy" href="glib/glib-Data-HMACs.html#g-hmac-copy">
|
1005
|
+
<ANCHOR id="g-hmac-ref" href="glib/glib-Data-HMACs.html#g-hmac-ref">
|
1006
|
+
<ANCHOR id="g-hmac-unref" href="glib/glib-Data-HMACs.html#g-hmac-unref">
|
1007
|
+
<ANCHOR id="g-hmac-update" href="glib/glib-Data-HMACs.html#g-hmac-update">
|
1008
|
+
<ANCHOR id="g-hmac-get-string" href="glib/glib-Data-HMACs.html#g-hmac-get-string">
|
1009
|
+
<ANCHOR id="g-hmac-get-digest" href="glib/glib-Data-HMACs.html#g-hmac-get-digest">
|
1010
|
+
<ANCHOR id="g-compute-hmac-for-data" href="glib/glib-Data-HMACs.html#g-compute-hmac-for-data">
|
1011
|
+
<ANCHOR id="g-compute-hmac-for-string" href="glib/glib-Data-HMACs.html#g-compute-hmac-for-string">
|
1012
|
+
<ANCHOR id="glib-Data-HMACs.other_details" href="glib/glib-Data-HMACs.html#glib-Data-HMACs.other_details">
|
1013
|
+
<ANCHOR id="GHmac" href="glib/glib-Data-HMACs.html#GHmac">
|
1014
|
+
<ANCHOR id="glib-I18N" href="glib/glib-I18N.html">
|
1015
|
+
<ANCHOR id="glib-I18N.functions" href="glib/glib-I18N.html#glib-I18N.functions">
|
1016
|
+
<ANCHOR id="glib-I18N.includes" href="glib/glib-I18N.html#glib-I18N.includes">
|
1017
|
+
<ANCHOR id="glib-I18N.description" href="glib/glib-I18N.html#glib-I18N.description">
|
1018
|
+
<ANCHOR id="glib-I18N.functions_details" href="glib/glib-I18N.html#glib-I18N.functions_details">
|
1019
|
+
<ANCHOR id="gettext-macro" href="glib/glib-I18N.html#gettext-macro">
|
1020
|
+
<ANCHOR id="Q-:CAPS" href="glib/glib-I18N.html#Q-:CAPS">
|
1021
|
+
<ANCHOR id="C-:CAPS" href="glib/glib-I18N.html#C-:CAPS">
|
1022
|
+
<ANCHOR id="N-:CAPS" href="glib/glib-I18N.html#N-:CAPS">
|
1023
|
+
<ANCHOR id="NC-:CAPS" href="glib/glib-I18N.html#NC-:CAPS">
|
1024
|
+
<ANCHOR id="g-dgettext" href="glib/glib-I18N.html#g-dgettext">
|
1025
|
+
<ANCHOR id="g-dcgettext" href="glib/glib-I18N.html#g-dcgettext">
|
1026
|
+
<ANCHOR id="g-dngettext" href="glib/glib-I18N.html#g-dngettext">
|
1027
|
+
<ANCHOR id="g-dpgettext" href="glib/glib-I18N.html#g-dpgettext">
|
1028
|
+
<ANCHOR id="g-dpgettext2" href="glib/glib-I18N.html#g-dpgettext2">
|
1029
|
+
<ANCHOR id="g-strip-context" href="glib/glib-I18N.html#g-strip-context">
|
1030
|
+
<ANCHOR id="g-get-language-names" href="glib/glib-I18N.html#g-get-language-names">
|
1031
|
+
<ANCHOR id="g-get-locale-variants" href="glib/glib-I18N.html#g-get-locale-variants">
|
1032
|
+
<ANCHOR id="glib-I18N.other_details" href="glib/glib-I18N.html#glib-I18N.other_details">
|
1033
|
+
<ANCHOR id="glib-I18N.see-also" href="glib/glib-I18N.html#glib-I18N.see-also">
|
1034
|
+
<ANCHOR id="glib-Date-and-Time-Functions" href="glib/glib-Date-and-Time-Functions.html">
|
1035
|
+
<ANCHOR id="glib-Date-and-Time-Functions.functions" href="glib/glib-Date-and-Time-Functions.html#glib-Date-and-Time-Functions.functions">
|
1036
|
+
<ANCHOR id="glib-Date-and-Time-Functions.other" href="glib/glib-Date-and-Time-Functions.html#glib-Date-and-Time-Functions.other">
|
1037
|
+
<ANCHOR id="glib-Date-and-Time-Functions.includes" href="glib/glib-Date-and-Time-Functions.html#glib-Date-and-Time-Functions.includes">
|
1038
|
+
<ANCHOR id="glib-Date-and-Time-Functions.description" href="glib/glib-Date-and-Time-Functions.html#glib-Date-and-Time-Functions.description">
|
1039
|
+
<ANCHOR id="glib-Date-and-Time-Functions.functions_details" href="glib/glib-Date-and-Time-Functions.html#glib-Date-and-Time-Functions.functions_details">
|
1040
|
+
<ANCHOR id="g-get-current-time" href="glib/glib-Date-and-Time-Functions.html#g-get-current-time">
|
1041
|
+
<ANCHOR id="g-usleep" href="glib/glib-Date-and-Time-Functions.html#g-usleep">
|
1042
|
+
<ANCHOR id="g-time-val-add" href="glib/glib-Date-and-Time-Functions.html#g-time-val-add">
|
1043
|
+
<ANCHOR id="g-time-val-from-iso8601" href="glib/glib-Date-and-Time-Functions.html#g-time-val-from-iso8601">
|
1044
|
+
<ANCHOR id="g-time-val-to-iso8601" href="glib/glib-Date-and-Time-Functions.html#g-time-val-to-iso8601">
|
1045
|
+
<ANCHOR id="g-get-monotonic-time" href="glib/glib-Date-and-Time-Functions.html#g-get-monotonic-time">
|
1046
|
+
<ANCHOR id="g-get-real-time" href="glib/glib-Date-and-Time-Functions.html#g-get-real-time">
|
1047
|
+
<ANCHOR id="g-date-new" href="glib/glib-Date-and-Time-Functions.html#g-date-new">
|
1048
|
+
<ANCHOR id="g-date-new-dmy" href="glib/glib-Date-and-Time-Functions.html#g-date-new-dmy">
|
1049
|
+
<ANCHOR id="g-date-new-julian" href="glib/glib-Date-and-Time-Functions.html#g-date-new-julian">
|
1050
|
+
<ANCHOR id="g-date-clear" href="glib/glib-Date-and-Time-Functions.html#g-date-clear">
|
1051
|
+
<ANCHOR id="g-date-free" href="glib/glib-Date-and-Time-Functions.html#g-date-free">
|
1052
|
+
<ANCHOR id="g-date-set-day" href="glib/glib-Date-and-Time-Functions.html#g-date-set-day">
|
1053
|
+
<ANCHOR id="g-date-set-month" href="glib/glib-Date-and-Time-Functions.html#g-date-set-month">
|
1054
|
+
<ANCHOR id="g-date-set-year" href="glib/glib-Date-and-Time-Functions.html#g-date-set-year">
|
1055
|
+
<ANCHOR id="g-date-set-dmy" href="glib/glib-Date-and-Time-Functions.html#g-date-set-dmy">
|
1056
|
+
<ANCHOR id="g-date-set-julian" href="glib/glib-Date-and-Time-Functions.html#g-date-set-julian">
|
1057
|
+
<ANCHOR id="g-date-set-time" href="glib/glib-Date-and-Time-Functions.html#g-date-set-time">
|
1058
|
+
<ANCHOR id="g-date-set-time-t" href="glib/glib-Date-and-Time-Functions.html#g-date-set-time-t">
|
1059
|
+
<ANCHOR id="g-date-set-time-val" href="glib/glib-Date-and-Time-Functions.html#g-date-set-time-val">
|
1060
|
+
<ANCHOR id="g-date-set-parse" href="glib/glib-Date-and-Time-Functions.html#g-date-set-parse">
|
1061
|
+
<ANCHOR id="g-date-add-days" href="glib/glib-Date-and-Time-Functions.html#g-date-add-days">
|
1062
|
+
<ANCHOR id="g-date-subtract-days" href="glib/glib-Date-and-Time-Functions.html#g-date-subtract-days">
|
1063
|
+
<ANCHOR id="g-date-add-months" href="glib/glib-Date-and-Time-Functions.html#g-date-add-months">
|
1064
|
+
<ANCHOR id="g-date-subtract-months" href="glib/glib-Date-and-Time-Functions.html#g-date-subtract-months">
|
1065
|
+
<ANCHOR id="g-date-add-years" href="glib/glib-Date-and-Time-Functions.html#g-date-add-years">
|
1066
|
+
<ANCHOR id="g-date-subtract-years" href="glib/glib-Date-and-Time-Functions.html#g-date-subtract-years">
|
1067
|
+
<ANCHOR id="g-date-days-between" href="glib/glib-Date-and-Time-Functions.html#g-date-days-between">
|
1068
|
+
<ANCHOR id="g-date-compare" href="glib/glib-Date-and-Time-Functions.html#g-date-compare">
|
1069
|
+
<ANCHOR id="g-date-clamp" href="glib/glib-Date-and-Time-Functions.html#g-date-clamp">
|
1070
|
+
<ANCHOR id="g-date-order" href="glib/glib-Date-and-Time-Functions.html#g-date-order">
|
1071
|
+
<ANCHOR id="g-date-get-day" href="glib/glib-Date-and-Time-Functions.html#g-date-get-day">
|
1072
|
+
<ANCHOR id="g-date-get-month" href="glib/glib-Date-and-Time-Functions.html#g-date-get-month">
|
1073
|
+
<ANCHOR id="g-date-get-year" href="glib/glib-Date-and-Time-Functions.html#g-date-get-year">
|
1074
|
+
<ANCHOR id="g-date-get-julian" href="glib/glib-Date-and-Time-Functions.html#g-date-get-julian">
|
1075
|
+
<ANCHOR id="g-date-get-weekday" href="glib/glib-Date-and-Time-Functions.html#g-date-get-weekday">
|
1076
|
+
<ANCHOR id="g-date-get-day-of-year" href="glib/glib-Date-and-Time-Functions.html#g-date-get-day-of-year">
|
1077
|
+
<ANCHOR id="g-date-get-days-in-month" href="glib/glib-Date-and-Time-Functions.html#g-date-get-days-in-month">
|
1078
|
+
<ANCHOR id="g-date-is-first-of-month" href="glib/glib-Date-and-Time-Functions.html#g-date-is-first-of-month">
|
1079
|
+
<ANCHOR id="g-date-is-last-of-month" href="glib/glib-Date-and-Time-Functions.html#g-date-is-last-of-month">
|
1080
|
+
<ANCHOR id="g-date-is-leap-year" href="glib/glib-Date-and-Time-Functions.html#g-date-is-leap-year">
|
1081
|
+
<ANCHOR id="g-date-get-monday-week-of-year" href="glib/glib-Date-and-Time-Functions.html#g-date-get-monday-week-of-year">
|
1082
|
+
<ANCHOR id="g-date-get-monday-weeks-in-year" href="glib/glib-Date-and-Time-Functions.html#g-date-get-monday-weeks-in-year">
|
1083
|
+
<ANCHOR id="g-date-get-sunday-week-of-year" href="glib/glib-Date-and-Time-Functions.html#g-date-get-sunday-week-of-year">
|
1084
|
+
<ANCHOR id="g-date-get-sunday-weeks-in-year" href="glib/glib-Date-and-Time-Functions.html#g-date-get-sunday-weeks-in-year">
|
1085
|
+
<ANCHOR id="g-date-get-iso8601-week-of-year" href="glib/glib-Date-and-Time-Functions.html#g-date-get-iso8601-week-of-year">
|
1086
|
+
<ANCHOR id="g-date-strftime" href="glib/glib-Date-and-Time-Functions.html#g-date-strftime">
|
1087
|
+
<ANCHOR id="g-date-to-struct-tm" href="glib/glib-Date-and-Time-Functions.html#g-date-to-struct-tm">
|
1088
|
+
<ANCHOR id="g-date-valid" href="glib/glib-Date-and-Time-Functions.html#g-date-valid">
|
1089
|
+
<ANCHOR id="g-date-valid-day" href="glib/glib-Date-and-Time-Functions.html#g-date-valid-day">
|
1090
|
+
<ANCHOR id="g-date-valid-month" href="glib/glib-Date-and-Time-Functions.html#g-date-valid-month">
|
1091
|
+
<ANCHOR id="g-date-valid-year" href="glib/glib-Date-and-Time-Functions.html#g-date-valid-year">
|
1092
|
+
<ANCHOR id="g-date-valid-dmy" href="glib/glib-Date-and-Time-Functions.html#g-date-valid-dmy">
|
1093
|
+
<ANCHOR id="g-date-valid-julian" href="glib/glib-Date-and-Time-Functions.html#g-date-valid-julian">
|
1094
|
+
<ANCHOR id="g-date-valid-weekday" href="glib/glib-Date-and-Time-Functions.html#g-date-valid-weekday">
|
1095
|
+
<ANCHOR id="glib-Date-and-Time-Functions.other_details" href="glib/glib-Date-and-Time-Functions.html#glib-Date-and-Time-Functions.other_details">
|
1096
|
+
<ANCHOR id="G-USEC-PER-SEC:CAPS" href="glib/glib-Date-and-Time-Functions.html#G-USEC-PER-SEC:CAPS">
|
1097
|
+
<ANCHOR id="GTimeVal" href="glib/glib-Date-and-Time-Functions.html#GTimeVal">
|
1098
|
+
<ANCHOR id="GDate" href="glib/glib-Date-and-Time-Functions.html#GDate">
|
1099
|
+
<ANCHOR id="GTime" href="glib/glib-Date-and-Time-Functions.html#GTime">
|
1100
|
+
<ANCHOR id="GDateDMY" href="glib/glib-Date-and-Time-Functions.html#GDateDMY">
|
1101
|
+
<ANCHOR id="GDateDay" href="glib/glib-Date-and-Time-Functions.html#GDateDay">
|
1102
|
+
<ANCHOR id="GDateMonth" href="glib/glib-Date-and-Time-Functions.html#GDateMonth">
|
1103
|
+
<ANCHOR id="GDateYear" href="glib/glib-Date-and-Time-Functions.html#GDateYear">
|
1104
|
+
<ANCHOR id="GDateWeekday" href="glib/glib-Date-and-Time-Functions.html#GDateWeekday">
|
1105
|
+
<ANCHOR id="G-DATE-BAD-DAY:CAPS" href="glib/glib-Date-and-Time-Functions.html#G-DATE-BAD-DAY:CAPS">
|
1106
|
+
<ANCHOR id="G-DATE-BAD-JULIAN:CAPS" href="glib/glib-Date-and-Time-Functions.html#G-DATE-BAD-JULIAN:CAPS">
|
1107
|
+
<ANCHOR id="G-DATE-BAD-YEAR:CAPS" href="glib/glib-Date-and-Time-Functions.html#G-DATE-BAD-YEAR:CAPS">
|
1108
|
+
<ANCHOR id="glib-GTimeZone" href="glib/glib-GTimeZone.html">
|
1109
|
+
<ANCHOR id="glib-GTimeZone.functions" href="glib/glib-GTimeZone.html#glib-GTimeZone.functions">
|
1110
|
+
<ANCHOR id="glib-GTimeZone.other" href="glib/glib-GTimeZone.html#glib-GTimeZone.other">
|
1111
|
+
<ANCHOR id="glib-GTimeZone.includes" href="glib/glib-GTimeZone.html#glib-GTimeZone.includes">
|
1112
|
+
<ANCHOR id="glib-GTimeZone.description" href="glib/glib-GTimeZone.html#glib-GTimeZone.description">
|
1113
|
+
<ANCHOR id="glib-GTimeZone.functions_details" href="glib/glib-GTimeZone.html#glib-GTimeZone.functions_details">
|
1114
|
+
<ANCHOR id="g-time-zone-unref" href="glib/glib-GTimeZone.html#g-time-zone-unref">
|
1115
|
+
<ANCHOR id="g-time-zone-ref" href="glib/glib-GTimeZone.html#g-time-zone-ref">
|
1116
|
+
<ANCHOR id="g-time-zone-new" href="glib/glib-GTimeZone.html#g-time-zone-new">
|
1117
|
+
<ANCHOR id="g-time-zone-new-local" href="glib/glib-GTimeZone.html#g-time-zone-new-local">
|
1118
|
+
<ANCHOR id="g-time-zone-new-utc" href="glib/glib-GTimeZone.html#g-time-zone-new-utc">
|
1119
|
+
<ANCHOR id="g-time-zone-find-interval" href="glib/glib-GTimeZone.html#g-time-zone-find-interval">
|
1120
|
+
<ANCHOR id="g-time-zone-adjust-time" href="glib/glib-GTimeZone.html#g-time-zone-adjust-time">
|
1121
|
+
<ANCHOR id="g-time-zone-get-abbreviation" href="glib/glib-GTimeZone.html#g-time-zone-get-abbreviation">
|
1122
|
+
<ANCHOR id="g-time-zone-get-offset" href="glib/glib-GTimeZone.html#g-time-zone-get-offset">
|
1123
|
+
<ANCHOR id="g-time-zone-is-dst" href="glib/glib-GTimeZone.html#g-time-zone-is-dst">
|
1124
|
+
<ANCHOR id="glib-GTimeZone.other_details" href="glib/glib-GTimeZone.html#glib-GTimeZone.other_details">
|
1125
|
+
<ANCHOR id="GTimeZone" href="glib/glib-GTimeZone.html#GTimeZone">
|
1126
|
+
<ANCHOR id="GTimeType" href="glib/glib-GTimeZone.html#GTimeType">
|
1127
|
+
<ANCHOR id="glib-GTimeZone.see-also" href="glib/glib-GTimeZone.html#glib-GTimeZone.see-also">
|
1128
|
+
<ANCHOR id="glib-GDateTime" href="glib/glib-GDateTime.html">
|
1129
|
+
<ANCHOR id="glib-GDateTime.functions" href="glib/glib-GDateTime.html#glib-GDateTime.functions">
|
1130
|
+
<ANCHOR id="glib-GDateTime.other" href="glib/glib-GDateTime.html#glib-GDateTime.other">
|
1131
|
+
<ANCHOR id="glib-GDateTime.includes" href="glib/glib-GDateTime.html#glib-GDateTime.includes">
|
1132
|
+
<ANCHOR id="glib-GDateTime.description" href="glib/glib-GDateTime.html#glib-GDateTime.description">
|
1133
|
+
<ANCHOR id="glib-GDateTime.functions_details" href="glib/glib-GDateTime.html#glib-GDateTime.functions_details">
|
1134
|
+
<ANCHOR id="G-TIME-SPAN-DAY:CAPS" href="glib/glib-GDateTime.html#G-TIME-SPAN-DAY:CAPS">
|
1135
|
+
<ANCHOR id="G-TIME-SPAN-HOUR:CAPS" href="glib/glib-GDateTime.html#G-TIME-SPAN-HOUR:CAPS">
|
1136
|
+
<ANCHOR id="G-TIME-SPAN-MINUTE:CAPS" href="glib/glib-GDateTime.html#G-TIME-SPAN-MINUTE:CAPS">
|
1137
|
+
<ANCHOR id="G-TIME-SPAN-SECOND:CAPS" href="glib/glib-GDateTime.html#G-TIME-SPAN-SECOND:CAPS">
|
1138
|
+
<ANCHOR id="G-TIME-SPAN-MILLISECOND:CAPS" href="glib/glib-GDateTime.html#G-TIME-SPAN-MILLISECOND:CAPS">
|
1139
|
+
<ANCHOR id="g-date-time-unref" href="glib/glib-GDateTime.html#g-date-time-unref">
|
1140
|
+
<ANCHOR id="g-date-time-ref" href="glib/glib-GDateTime.html#g-date-time-ref">
|
1141
|
+
<ANCHOR id="g-date-time-new-now" href="glib/glib-GDateTime.html#g-date-time-new-now">
|
1142
|
+
<ANCHOR id="g-date-time-new-now-local" href="glib/glib-GDateTime.html#g-date-time-new-now-local">
|
1143
|
+
<ANCHOR id="g-date-time-new-now-utc" href="glib/glib-GDateTime.html#g-date-time-new-now-utc">
|
1144
|
+
<ANCHOR id="g-date-time-new-from-unix-local" href="glib/glib-GDateTime.html#g-date-time-new-from-unix-local">
|
1145
|
+
<ANCHOR id="g-date-time-new-from-unix-utc" href="glib/glib-GDateTime.html#g-date-time-new-from-unix-utc">
|
1146
|
+
<ANCHOR id="g-date-time-new-from-timeval-local" href="glib/glib-GDateTime.html#g-date-time-new-from-timeval-local">
|
1147
|
+
<ANCHOR id="g-date-time-new-from-timeval-utc" href="glib/glib-GDateTime.html#g-date-time-new-from-timeval-utc">
|
1148
|
+
<ANCHOR id="g-date-time-new" href="glib/glib-GDateTime.html#g-date-time-new">
|
1149
|
+
<ANCHOR id="g-date-time-new-local" href="glib/glib-GDateTime.html#g-date-time-new-local">
|
1150
|
+
<ANCHOR id="g-date-time-new-utc" href="glib/glib-GDateTime.html#g-date-time-new-utc">
|
1151
|
+
<ANCHOR id="g-date-time-add" href="glib/glib-GDateTime.html#g-date-time-add">
|
1152
|
+
<ANCHOR id="g-date-time-add-years" href="glib/glib-GDateTime.html#g-date-time-add-years">
|
1153
|
+
<ANCHOR id="g-date-time-add-months" href="glib/glib-GDateTime.html#g-date-time-add-months">
|
1154
|
+
<ANCHOR id="g-date-time-add-weeks" href="glib/glib-GDateTime.html#g-date-time-add-weeks">
|
1155
|
+
<ANCHOR id="g-date-time-add-days" href="glib/glib-GDateTime.html#g-date-time-add-days">
|
1156
|
+
<ANCHOR id="g-date-time-add-hours" href="glib/glib-GDateTime.html#g-date-time-add-hours">
|
1157
|
+
<ANCHOR id="g-date-time-add-minutes" href="glib/glib-GDateTime.html#g-date-time-add-minutes">
|
1158
|
+
<ANCHOR id="g-date-time-add-seconds" href="glib/glib-GDateTime.html#g-date-time-add-seconds">
|
1159
|
+
<ANCHOR id="g-date-time-add-full" href="glib/glib-GDateTime.html#g-date-time-add-full">
|
1160
|
+
<ANCHOR id="g-date-time-compare" href="glib/glib-GDateTime.html#g-date-time-compare">
|
1161
|
+
<ANCHOR id="g-date-time-difference" href="glib/glib-GDateTime.html#g-date-time-difference">
|
1162
|
+
<ANCHOR id="g-date-time-hash" href="glib/glib-GDateTime.html#g-date-time-hash">
|
1163
|
+
<ANCHOR id="g-date-time-equal" href="glib/glib-GDateTime.html#g-date-time-equal">
|
1164
|
+
<ANCHOR id="g-date-time-get-ymd" href="glib/glib-GDateTime.html#g-date-time-get-ymd">
|
1165
|
+
<ANCHOR id="g-date-time-get-year" href="glib/glib-GDateTime.html#g-date-time-get-year">
|
1166
|
+
<ANCHOR id="g-date-time-get-month" href="glib/glib-GDateTime.html#g-date-time-get-month">
|
1167
|
+
<ANCHOR id="g-date-time-get-day-of-month" href="glib/glib-GDateTime.html#g-date-time-get-day-of-month">
|
1168
|
+
<ANCHOR id="g-date-time-get-week-numbering-year" href="glib/glib-GDateTime.html#g-date-time-get-week-numbering-year">
|
1169
|
+
<ANCHOR id="g-date-time-get-week-of-year" href="glib/glib-GDateTime.html#g-date-time-get-week-of-year">
|
1170
|
+
<ANCHOR id="g-date-time-get-day-of-week" href="glib/glib-GDateTime.html#g-date-time-get-day-of-week">
|
1171
|
+
<ANCHOR id="g-date-time-get-day-of-year" href="glib/glib-GDateTime.html#g-date-time-get-day-of-year">
|
1172
|
+
<ANCHOR id="g-date-time-get-hour" href="glib/glib-GDateTime.html#g-date-time-get-hour">
|
1173
|
+
<ANCHOR id="g-date-time-get-minute" href="glib/glib-GDateTime.html#g-date-time-get-minute">
|
1174
|
+
<ANCHOR id="g-date-time-get-second" href="glib/glib-GDateTime.html#g-date-time-get-second">
|
1175
|
+
<ANCHOR id="g-date-time-get-microsecond" href="glib/glib-GDateTime.html#g-date-time-get-microsecond">
|
1176
|
+
<ANCHOR id="g-date-time-get-seconds" href="glib/glib-GDateTime.html#g-date-time-get-seconds">
|
1177
|
+
<ANCHOR id="g-date-time-to-unix" href="glib/glib-GDateTime.html#g-date-time-to-unix">
|
1178
|
+
<ANCHOR id="g-date-time-to-timeval" href="glib/glib-GDateTime.html#g-date-time-to-timeval">
|
1179
|
+
<ANCHOR id="g-date-time-get-utc-offset" href="glib/glib-GDateTime.html#g-date-time-get-utc-offset">
|
1180
|
+
<ANCHOR id="g-date-time-get-timezone-abbreviation" href="glib/glib-GDateTime.html#g-date-time-get-timezone-abbreviation">
|
1181
|
+
<ANCHOR id="g-date-time-is-daylight-savings" href="glib/glib-GDateTime.html#g-date-time-is-daylight-savings">
|
1182
|
+
<ANCHOR id="g-date-time-to-timezone" href="glib/glib-GDateTime.html#g-date-time-to-timezone">
|
1183
|
+
<ANCHOR id="g-date-time-to-local" href="glib/glib-GDateTime.html#g-date-time-to-local">
|
1184
|
+
<ANCHOR id="g-date-time-to-utc" href="glib/glib-GDateTime.html#g-date-time-to-utc">
|
1185
|
+
<ANCHOR id="g-date-time-format" href="glib/glib-GDateTime.html#g-date-time-format">
|
1186
|
+
<ANCHOR id="glib-GDateTime.other_details" href="glib/glib-GDateTime.html#glib-GDateTime.other_details">
|
1187
|
+
<ANCHOR id="GTimeSpan" href="glib/glib-GDateTime.html#GTimeSpan">
|
1188
|
+
<ANCHOR id="GDateTime" href="glib/glib-GDateTime.html#GDateTime">
|
1189
|
+
<ANCHOR id="glib-GDateTime.see-also" href="glib/glib-GDateTime.html#glib-GDateTime.see-also">
|
1190
|
+
<ANCHOR id="glib-Random-Numbers" href="glib/glib-Random-Numbers.html">
|
1191
|
+
<ANCHOR id="glib-Random-Numbers.functions" href="glib/glib-Random-Numbers.html#glib-Random-Numbers.functions">
|
1192
|
+
<ANCHOR id="glib-Random-Numbers.other" href="glib/glib-Random-Numbers.html#glib-Random-Numbers.other">
|
1193
|
+
<ANCHOR id="glib-Random-Numbers.includes" href="glib/glib-Random-Numbers.html#glib-Random-Numbers.includes">
|
1194
|
+
<ANCHOR id="glib-Random-Numbers.description" href="glib/glib-Random-Numbers.html#glib-Random-Numbers.description">
|
1195
|
+
<ANCHOR id="glib-Random-Numbers.functions_details" href="glib/glib-Random-Numbers.html#glib-Random-Numbers.functions_details">
|
1196
|
+
<ANCHOR id="g-rand-new-with-seed" href="glib/glib-Random-Numbers.html#g-rand-new-with-seed">
|
1197
|
+
<ANCHOR id="g-rand-new-with-seed-array" href="glib/glib-Random-Numbers.html#g-rand-new-with-seed-array">
|
1198
|
+
<ANCHOR id="g-rand-new" href="glib/glib-Random-Numbers.html#g-rand-new">
|
1199
|
+
<ANCHOR id="g-rand-copy" href="glib/glib-Random-Numbers.html#g-rand-copy">
|
1200
|
+
<ANCHOR id="g-rand-free" href="glib/glib-Random-Numbers.html#g-rand-free">
|
1201
|
+
<ANCHOR id="g-rand-set-seed" href="glib/glib-Random-Numbers.html#g-rand-set-seed">
|
1202
|
+
<ANCHOR id="g-rand-set-seed-array" href="glib/glib-Random-Numbers.html#g-rand-set-seed-array">
|
1203
|
+
<ANCHOR id="g-rand-boolean" href="glib/glib-Random-Numbers.html#g-rand-boolean">
|
1204
|
+
<ANCHOR id="g-rand-int" href="glib/glib-Random-Numbers.html#g-rand-int">
|
1205
|
+
<ANCHOR id="g-rand-int-range" href="glib/glib-Random-Numbers.html#g-rand-int-range">
|
1206
|
+
<ANCHOR id="g-rand-double" href="glib/glib-Random-Numbers.html#g-rand-double">
|
1207
|
+
<ANCHOR id="g-rand-double-range" href="glib/glib-Random-Numbers.html#g-rand-double-range">
|
1208
|
+
<ANCHOR id="g-random-set-seed" href="glib/glib-Random-Numbers.html#g-random-set-seed">
|
1209
|
+
<ANCHOR id="g-random-boolean" href="glib/glib-Random-Numbers.html#g-random-boolean">
|
1210
|
+
<ANCHOR id="g-random-int" href="glib/glib-Random-Numbers.html#g-random-int">
|
1211
|
+
<ANCHOR id="g-random-int-range" href="glib/glib-Random-Numbers.html#g-random-int-range">
|
1212
|
+
<ANCHOR id="g-random-double" href="glib/glib-Random-Numbers.html#g-random-double">
|
1213
|
+
<ANCHOR id="g-random-double-range" href="glib/glib-Random-Numbers.html#g-random-double-range">
|
1214
|
+
<ANCHOR id="glib-Random-Numbers.other_details" href="glib/glib-Random-Numbers.html#glib-Random-Numbers.other_details">
|
1215
|
+
<ANCHOR id="GRand" href="glib/glib-Random-Numbers.html#GRand">
|
1216
|
+
<ANCHOR id="glib-Hook-Functions" href="glib/glib-Hook-Functions.html">
|
1217
|
+
<ANCHOR id="glib-Hook-Functions.functions" href="glib/glib-Hook-Functions.html#glib-Hook-Functions.functions">
|
1218
|
+
<ANCHOR id="glib-Hook-Functions.other" href="glib/glib-Hook-Functions.html#glib-Hook-Functions.other">
|
1219
|
+
<ANCHOR id="glib-Hook-Functions.includes" href="glib/glib-Hook-Functions.html#glib-Hook-Functions.includes">
|
1220
|
+
<ANCHOR id="glib-Hook-Functions.description" href="glib/glib-Hook-Functions.html#glib-Hook-Functions.description">
|
1221
|
+
<ANCHOR id="glib-Hook-Functions.functions_details" href="glib/glib-Hook-Functions.html#glib-Hook-Functions.functions_details">
|
1222
|
+
<ANCHOR id="GHookFinalizeFunc" href="glib/glib-Hook-Functions.html#GHookFinalizeFunc">
|
1223
|
+
<ANCHOR id="GHookFunc" href="glib/glib-Hook-Functions.html#GHookFunc">
|
1224
|
+
<ANCHOR id="GHookCheckFunc" href="glib/glib-Hook-Functions.html#GHookCheckFunc">
|
1225
|
+
<ANCHOR id="g-hook-list-init" href="glib/glib-Hook-Functions.html#g-hook-list-init">
|
1226
|
+
<ANCHOR id="g-hook-list-invoke" href="glib/glib-Hook-Functions.html#g-hook-list-invoke">
|
1227
|
+
<ANCHOR id="g-hook-list-invoke-check" href="glib/glib-Hook-Functions.html#g-hook-list-invoke-check">
|
1228
|
+
<ANCHOR id="g-hook-list-marshal" href="glib/glib-Hook-Functions.html#g-hook-list-marshal">
|
1229
|
+
<ANCHOR id="GHookMarshaller" href="glib/glib-Hook-Functions.html#GHookMarshaller">
|
1230
|
+
<ANCHOR id="g-hook-list-marshal-check" href="glib/glib-Hook-Functions.html#g-hook-list-marshal-check">
|
1231
|
+
<ANCHOR id="GHookCheckMarshaller" href="glib/glib-Hook-Functions.html#GHookCheckMarshaller">
|
1232
|
+
<ANCHOR id="g-hook-list-clear" href="glib/glib-Hook-Functions.html#g-hook-list-clear">
|
1233
|
+
<ANCHOR id="g-hook-alloc" href="glib/glib-Hook-Functions.html#g-hook-alloc">
|
1234
|
+
<ANCHOR id="g-hook-append" href="glib/glib-Hook-Functions.html#g-hook-append">
|
1235
|
+
<ANCHOR id="g-hook-prepend" href="glib/glib-Hook-Functions.html#g-hook-prepend">
|
1236
|
+
<ANCHOR id="g-hook-insert-before" href="glib/glib-Hook-Functions.html#g-hook-insert-before">
|
1237
|
+
<ANCHOR id="g-hook-insert-sorted" href="glib/glib-Hook-Functions.html#g-hook-insert-sorted">
|
1238
|
+
<ANCHOR id="GHookCompareFunc" href="glib/glib-Hook-Functions.html#GHookCompareFunc">
|
1239
|
+
<ANCHOR id="g-hook-compare-ids" href="glib/glib-Hook-Functions.html#g-hook-compare-ids">
|
1240
|
+
<ANCHOR id="g-hook-get" href="glib/glib-Hook-Functions.html#g-hook-get">
|
1241
|
+
<ANCHOR id="g-hook-find" href="glib/glib-Hook-Functions.html#g-hook-find">
|
1242
|
+
<ANCHOR id="GHookFindFunc" href="glib/glib-Hook-Functions.html#GHookFindFunc">
|
1243
|
+
<ANCHOR id="g-hook-find-data" href="glib/glib-Hook-Functions.html#g-hook-find-data">
|
1244
|
+
<ANCHOR id="g-hook-find-func" href="glib/glib-Hook-Functions.html#g-hook-find-func">
|
1245
|
+
<ANCHOR id="g-hook-find-func-data" href="glib/glib-Hook-Functions.html#g-hook-find-func-data">
|
1246
|
+
<ANCHOR id="g-hook-first-valid" href="glib/glib-Hook-Functions.html#g-hook-first-valid">
|
1247
|
+
<ANCHOR id="g-hook-next-valid" href="glib/glib-Hook-Functions.html#g-hook-next-valid">
|
1248
|
+
<ANCHOR id="G-HOOK-FLAGS:CAPS" href="glib/glib-Hook-Functions.html#G-HOOK-FLAGS:CAPS">
|
1249
|
+
<ANCHOR id="G-HOOK:CAPS" href="glib/glib-Hook-Functions.html#G-HOOK:CAPS">
|
1250
|
+
<ANCHOR id="G-HOOK-IS-VALID:CAPS" href="glib/glib-Hook-Functions.html#G-HOOK-IS-VALID:CAPS">
|
1251
|
+
<ANCHOR id="G-HOOK-ACTIVE:CAPS" href="glib/glib-Hook-Functions.html#G-HOOK-ACTIVE:CAPS">
|
1252
|
+
<ANCHOR id="G-HOOK-IN-CALL:CAPS" href="glib/glib-Hook-Functions.html#G-HOOK-IN-CALL:CAPS">
|
1253
|
+
<ANCHOR id="G-HOOK-IS-UNLINKED:CAPS" href="glib/glib-Hook-Functions.html#G-HOOK-IS-UNLINKED:CAPS">
|
1254
|
+
<ANCHOR id="g-hook-ref" href="glib/glib-Hook-Functions.html#g-hook-ref">
|
1255
|
+
<ANCHOR id="g-hook-unref" href="glib/glib-Hook-Functions.html#g-hook-unref">
|
1256
|
+
<ANCHOR id="g-hook-free" href="glib/glib-Hook-Functions.html#g-hook-free">
|
1257
|
+
<ANCHOR id="g-hook-destroy" href="glib/glib-Hook-Functions.html#g-hook-destroy">
|
1258
|
+
<ANCHOR id="g-hook-destroy-link" href="glib/glib-Hook-Functions.html#g-hook-destroy-link">
|
1259
|
+
<ANCHOR id="glib-Hook-Functions.other_details" href="glib/glib-Hook-Functions.html#glib-Hook-Functions.other_details">
|
1260
|
+
<ANCHOR id="GHookList" href="glib/glib-Hook-Functions.html#GHookList">
|
1261
|
+
<ANCHOR id="GHook" href="glib/glib-Hook-Functions.html#GHook">
|
1262
|
+
<ANCHOR id="GHookFlagMask" href="glib/glib-Hook-Functions.html#GHookFlagMask">
|
1263
|
+
<ANCHOR id="G-HOOK-FLAG-USER-SHIFT:CAPS" href="glib/glib-Hook-Functions.html#G-HOOK-FLAG-USER-SHIFT:CAPS">
|
1264
|
+
<ANCHOR id="glib-Miscellaneous-Utility-Functions" href="glib/glib-Miscellaneous-Utility-Functions.html">
|
1265
|
+
<ANCHOR id="glib-Miscellaneous-Utility-Functions.functions" href="glib/glib-Miscellaneous-Utility-Functions.html#glib-Miscellaneous-Utility-Functions.functions">
|
1266
|
+
<ANCHOR id="glib-Miscellaneous-Utility-Functions.other" href="glib/glib-Miscellaneous-Utility-Functions.html#glib-Miscellaneous-Utility-Functions.other">
|
1267
|
+
<ANCHOR id="glib-Miscellaneous-Utility-Functions.includes" href="glib/glib-Miscellaneous-Utility-Functions.html#glib-Miscellaneous-Utility-Functions.includes">
|
1268
|
+
<ANCHOR id="glib-Miscellaneous-Utility-Functions.description" href="glib/glib-Miscellaneous-Utility-Functions.html#glib-Miscellaneous-Utility-Functions.description">
|
1269
|
+
<ANCHOR id="glib-Miscellaneous-Utility-Functions.functions_details" href="glib/glib-Miscellaneous-Utility-Functions.html#glib-Miscellaneous-Utility-Functions.functions_details">
|
1270
|
+
<ANCHOR id="g-get-application-name" href="glib/glib-Miscellaneous-Utility-Functions.html#g-get-application-name">
|
1271
|
+
<ANCHOR id="g-set-application-name" href="glib/glib-Miscellaneous-Utility-Functions.html#g-set-application-name">
|
1272
|
+
<ANCHOR id="g-get-prgname" href="glib/glib-Miscellaneous-Utility-Functions.html#g-get-prgname">
|
1273
|
+
<ANCHOR id="g-set-prgname" href="glib/glib-Miscellaneous-Utility-Functions.html#g-set-prgname">
|
1274
|
+
<ANCHOR id="g-get-environ" href="glib/glib-Miscellaneous-Utility-Functions.html#g-get-environ">
|
1275
|
+
<ANCHOR id="g-environ-getenv" href="glib/glib-Miscellaneous-Utility-Functions.html#g-environ-getenv">
|
1276
|
+
<ANCHOR id="g-environ-setenv" href="glib/glib-Miscellaneous-Utility-Functions.html#g-environ-setenv">
|
1277
|
+
<ANCHOR id="g-environ-unsetenv" href="glib/glib-Miscellaneous-Utility-Functions.html#g-environ-unsetenv">
|
1278
|
+
<ANCHOR id="g-getenv" href="glib/glib-Miscellaneous-Utility-Functions.html#g-getenv">
|
1279
|
+
<ANCHOR id="g-setenv" href="glib/glib-Miscellaneous-Utility-Functions.html#g-setenv">
|
1280
|
+
<ANCHOR id="g-unsetenv" href="glib/glib-Miscellaneous-Utility-Functions.html#g-unsetenv">
|
1281
|
+
<ANCHOR id="g-listenv" href="glib/glib-Miscellaneous-Utility-Functions.html#g-listenv">
|
1282
|
+
<ANCHOR id="g-get-user-name" href="glib/glib-Miscellaneous-Utility-Functions.html#g-get-user-name">
|
1283
|
+
<ANCHOR id="g-get-real-name" href="glib/glib-Miscellaneous-Utility-Functions.html#g-get-real-name">
|
1284
|
+
<ANCHOR id="g-get-user-cache-dir" href="glib/glib-Miscellaneous-Utility-Functions.html#g-get-user-cache-dir">
|
1285
|
+
<ANCHOR id="g-get-user-data-dir" href="glib/glib-Miscellaneous-Utility-Functions.html#g-get-user-data-dir">
|
1286
|
+
<ANCHOR id="g-get-user-config-dir" href="glib/glib-Miscellaneous-Utility-Functions.html#g-get-user-config-dir">
|
1287
|
+
<ANCHOR id="g-get-user-runtime-dir" href="glib/glib-Miscellaneous-Utility-Functions.html#g-get-user-runtime-dir">
|
1288
|
+
<ANCHOR id="g-get-user-special-dir" href="glib/glib-Miscellaneous-Utility-Functions.html#g-get-user-special-dir">
|
1289
|
+
<ANCHOR id="g-get-system-data-dirs" href="glib/glib-Miscellaneous-Utility-Functions.html#g-get-system-data-dirs">
|
1290
|
+
<ANCHOR id="g-get-system-config-dirs" href="glib/glib-Miscellaneous-Utility-Functions.html#g-get-system-config-dirs">
|
1291
|
+
<ANCHOR id="g-reload-user-special-dirs-cache" href="glib/glib-Miscellaneous-Utility-Functions.html#g-reload-user-special-dirs-cache">
|
1292
|
+
<ANCHOR id="g-get-host-name" href="glib/glib-Miscellaneous-Utility-Functions.html#g-get-host-name">
|
1293
|
+
<ANCHOR id="g-get-home-dir" href="glib/glib-Miscellaneous-Utility-Functions.html#g-get-home-dir">
|
1294
|
+
<ANCHOR id="g-get-tmp-dir" href="glib/glib-Miscellaneous-Utility-Functions.html#g-get-tmp-dir">
|
1295
|
+
<ANCHOR id="g-get-current-dir" href="glib/glib-Miscellaneous-Utility-Functions.html#g-get-current-dir">
|
1296
|
+
<ANCHOR id="g-basename" href="glib/glib-Miscellaneous-Utility-Functions.html#g-basename">
|
1297
|
+
<ANCHOR id="g-path-is-absolute" href="glib/glib-Miscellaneous-Utility-Functions.html#g-path-is-absolute">
|
1298
|
+
<ANCHOR id="g-path-skip-root" href="glib/glib-Miscellaneous-Utility-Functions.html#g-path-skip-root">
|
1299
|
+
<ANCHOR id="g-path-get-basename" href="glib/glib-Miscellaneous-Utility-Functions.html#g-path-get-basename">
|
1300
|
+
<ANCHOR id="g-path-get-dirname" href="glib/glib-Miscellaneous-Utility-Functions.html#g-path-get-dirname">
|
1301
|
+
<ANCHOR id="g-build-filename" href="glib/glib-Miscellaneous-Utility-Functions.html#g-build-filename">
|
1302
|
+
<ANCHOR id="g-build-filenamev" href="glib/glib-Miscellaneous-Utility-Functions.html#g-build-filenamev">
|
1303
|
+
<ANCHOR id="g-build-path" href="glib/glib-Miscellaneous-Utility-Functions.html#g-build-path">
|
1304
|
+
<ANCHOR id="g-build-pathv" href="glib/glib-Miscellaneous-Utility-Functions.html#g-build-pathv">
|
1305
|
+
<ANCHOR id="g-format-size" href="glib/glib-Miscellaneous-Utility-Functions.html#g-format-size">
|
1306
|
+
<ANCHOR id="g-format-size-full" href="glib/glib-Miscellaneous-Utility-Functions.html#g-format-size-full">
|
1307
|
+
<ANCHOR id="g-format-size-for-display" href="glib/glib-Miscellaneous-Utility-Functions.html#g-format-size-for-display">
|
1308
|
+
<ANCHOR id="g-find-program-in-path" href="glib/glib-Miscellaneous-Utility-Functions.html#g-find-program-in-path">
|
1309
|
+
<ANCHOR id="g-bit-nth-lsf" href="glib/glib-Miscellaneous-Utility-Functions.html#g-bit-nth-lsf">
|
1310
|
+
<ANCHOR id="g-bit-nth-msf" href="glib/glib-Miscellaneous-Utility-Functions.html#g-bit-nth-msf">
|
1311
|
+
<ANCHOR id="g-bit-storage" href="glib/glib-Miscellaneous-Utility-Functions.html#g-bit-storage">
|
1312
|
+
<ANCHOR id="g-spaced-primes-closest" href="glib/glib-Miscellaneous-Utility-Functions.html#g-spaced-primes-closest">
|
1313
|
+
<ANCHOR id="g-atexit" href="glib/glib-Miscellaneous-Utility-Functions.html#g-atexit">
|
1314
|
+
<ANCHOR id="g-parse-debug-string" href="glib/glib-Miscellaneous-Utility-Functions.html#g-parse-debug-string">
|
1315
|
+
<ANCHOR id="GVoidFunc" href="glib/glib-Miscellaneous-Utility-Functions.html#GVoidFunc">
|
1316
|
+
<ANCHOR id="GFreeFunc" href="glib/glib-Miscellaneous-Utility-Functions.html#GFreeFunc">
|
1317
|
+
<ANCHOR id="g-qsort-with-data" href="glib/glib-Miscellaneous-Utility-Functions.html#g-qsort-with-data">
|
1318
|
+
<ANCHOR id="g-nullify-pointer" href="glib/glib-Miscellaneous-Utility-Functions.html#g-nullify-pointer">
|
1319
|
+
<ANCHOR id="glib-Miscellaneous-Utility-Functions.other_details" href="glib/glib-Miscellaneous-Utility-Functions.html#glib-Miscellaneous-Utility-Functions.other_details">
|
1320
|
+
<ANCHOR id="GUserDirectory" href="glib/glib-Miscellaneous-Utility-Functions.html#GUserDirectory">
|
1321
|
+
<ANCHOR id="g-dirname" href="glib/glib-Miscellaneous-Utility-Functions.html#g-dirname">
|
1322
|
+
<ANCHOR id="GFormatSizeFlags" href="glib/glib-Miscellaneous-Utility-Functions.html#GFormatSizeFlags">
|
1323
|
+
<ANCHOR id="GDebugKey" href="glib/glib-Miscellaneous-Utility-Functions.html#GDebugKey">
|
1324
|
+
<ANCHOR id="glib-Lexical-Scanner" href="glib/glib-Lexical-Scanner.html">
|
1325
|
+
<ANCHOR id="glib-Lexical-Scanner.functions" href="glib/glib-Lexical-Scanner.html#glib-Lexical-Scanner.functions">
|
1326
|
+
<ANCHOR id="glib-Lexical-Scanner.other" href="glib/glib-Lexical-Scanner.html#glib-Lexical-Scanner.other">
|
1327
|
+
<ANCHOR id="glib-Lexical-Scanner.includes" href="glib/glib-Lexical-Scanner.html#glib-Lexical-Scanner.includes">
|
1328
|
+
<ANCHOR id="glib-Lexical-Scanner.description" href="glib/glib-Lexical-Scanner.html#glib-Lexical-Scanner.description">
|
1329
|
+
<ANCHOR id="glib-Lexical-Scanner.functions_details" href="glib/glib-Lexical-Scanner.html#glib-Lexical-Scanner.functions_details">
|
1330
|
+
<ANCHOR id="g-scanner-new" href="glib/glib-Lexical-Scanner.html#g-scanner-new">
|
1331
|
+
<ANCHOR id="g-scanner-destroy" href="glib/glib-Lexical-Scanner.html#g-scanner-destroy">
|
1332
|
+
<ANCHOR id="g-scanner-input-file" href="glib/glib-Lexical-Scanner.html#g-scanner-input-file">
|
1333
|
+
<ANCHOR id="g-scanner-sync-file-offset" href="glib/glib-Lexical-Scanner.html#g-scanner-sync-file-offset">
|
1334
|
+
<ANCHOR id="g-scanner-input-text" href="glib/glib-Lexical-Scanner.html#g-scanner-input-text">
|
1335
|
+
<ANCHOR id="g-scanner-peek-next-token" href="glib/glib-Lexical-Scanner.html#g-scanner-peek-next-token">
|
1336
|
+
<ANCHOR id="g-scanner-get-next-token" href="glib/glib-Lexical-Scanner.html#g-scanner-get-next-token">
|
1337
|
+
<ANCHOR id="g-scanner-eof" href="glib/glib-Lexical-Scanner.html#g-scanner-eof">
|
1338
|
+
<ANCHOR id="g-scanner-cur-line" href="glib/glib-Lexical-Scanner.html#g-scanner-cur-line">
|
1339
|
+
<ANCHOR id="g-scanner-cur-position" href="glib/glib-Lexical-Scanner.html#g-scanner-cur-position">
|
1340
|
+
<ANCHOR id="g-scanner-cur-token" href="glib/glib-Lexical-Scanner.html#g-scanner-cur-token">
|
1341
|
+
<ANCHOR id="g-scanner-cur-value" href="glib/glib-Lexical-Scanner.html#g-scanner-cur-value">
|
1342
|
+
<ANCHOR id="g-scanner-set-scope" href="glib/glib-Lexical-Scanner.html#g-scanner-set-scope">
|
1343
|
+
<ANCHOR id="g-scanner-scope-add-symbol" href="glib/glib-Lexical-Scanner.html#g-scanner-scope-add-symbol">
|
1344
|
+
<ANCHOR id="g-scanner-scope-foreach-symbol" href="glib/glib-Lexical-Scanner.html#g-scanner-scope-foreach-symbol">
|
1345
|
+
<ANCHOR id="g-scanner-scope-lookup-symbol" href="glib/glib-Lexical-Scanner.html#g-scanner-scope-lookup-symbol">
|
1346
|
+
<ANCHOR id="g-scanner-scope-remove-symbol" href="glib/glib-Lexical-Scanner.html#g-scanner-scope-remove-symbol">
|
1347
|
+
<ANCHOR id="g-scanner-add-symbol" href="glib/glib-Lexical-Scanner.html#g-scanner-add-symbol">
|
1348
|
+
<ANCHOR id="g-scanner-remove-symbol" href="glib/glib-Lexical-Scanner.html#g-scanner-remove-symbol">
|
1349
|
+
<ANCHOR id="g-scanner-foreach-symbol" href="glib/glib-Lexical-Scanner.html#g-scanner-foreach-symbol">
|
1350
|
+
<ANCHOR id="g-scanner-freeze-symbol-table" href="glib/glib-Lexical-Scanner.html#g-scanner-freeze-symbol-table">
|
1351
|
+
<ANCHOR id="g-scanner-thaw-symbol-table" href="glib/glib-Lexical-Scanner.html#g-scanner-thaw-symbol-table">
|
1352
|
+
<ANCHOR id="g-scanner-lookup-symbol" href="glib/glib-Lexical-Scanner.html#g-scanner-lookup-symbol">
|
1353
|
+
<ANCHOR id="g-scanner-warn" href="glib/glib-Lexical-Scanner.html#g-scanner-warn">
|
1354
|
+
<ANCHOR id="g-scanner-error" href="glib/glib-Lexical-Scanner.html#g-scanner-error">
|
1355
|
+
<ANCHOR id="g-scanner-unexp-token" href="glib/glib-Lexical-Scanner.html#g-scanner-unexp-token">
|
1356
|
+
<ANCHOR id="GScannerMsgFunc" href="glib/glib-Lexical-Scanner.html#GScannerMsgFunc">
|
1357
|
+
<ANCHOR id="glib-Lexical-Scanner.other_details" href="glib/glib-Lexical-Scanner.html#glib-Lexical-Scanner.other_details">
|
1358
|
+
<ANCHOR id="GScanner" href="glib/glib-Lexical-Scanner.html#GScanner">
|
1359
|
+
<ANCHOR id="GScannerConfig" href="glib/glib-Lexical-Scanner.html#GScannerConfig">
|
1360
|
+
<ANCHOR id="G-CSET-a-2-z" href="glib/glib-Lexical-Scanner.html#G-CSET-a-2-z">
|
1361
|
+
<ANCHOR id="G-CSET-A-2-Z:CAPS" href="glib/glib-Lexical-Scanner.html#G-CSET-A-2-Z:CAPS">
|
1362
|
+
<ANCHOR id="G-CSET-DIGITS:CAPS" href="glib/glib-Lexical-Scanner.html#G-CSET-DIGITS:CAPS">
|
1363
|
+
<ANCHOR id="G-CSET-LATINC:CAPS" href="glib/glib-Lexical-Scanner.html#G-CSET-LATINC:CAPS">
|
1364
|
+
<ANCHOR id="G-CSET-LATINS:CAPS" href="glib/glib-Lexical-Scanner.html#G-CSET-LATINS:CAPS">
|
1365
|
+
<ANCHOR id="GTokenType" href="glib/glib-Lexical-Scanner.html#GTokenType">
|
1366
|
+
<ANCHOR id="GTokenValue" href="glib/glib-Lexical-Scanner.html#GTokenValue">
|
1367
|
+
<ANCHOR id="GErrorType" href="glib/glib-Lexical-Scanner.html#GErrorType">
|
1368
|
+
<ANCHOR id="glib-Timers" href="glib/glib-Timers.html">
|
1369
|
+
<ANCHOR id="glib-Timers.functions" href="glib/glib-Timers.html#glib-Timers.functions">
|
1370
|
+
<ANCHOR id="glib-Timers.other" href="glib/glib-Timers.html#glib-Timers.other">
|
1371
|
+
<ANCHOR id="glib-Timers.includes" href="glib/glib-Timers.html#glib-Timers.includes">
|
1372
|
+
<ANCHOR id="glib-Timers.description" href="glib/glib-Timers.html#glib-Timers.description">
|
1373
|
+
<ANCHOR id="glib-Timers.functions_details" href="glib/glib-Timers.html#glib-Timers.functions_details">
|
1374
|
+
<ANCHOR id="g-timer-new" href="glib/glib-Timers.html#g-timer-new">
|
1375
|
+
<ANCHOR id="g-timer-start" href="glib/glib-Timers.html#g-timer-start">
|
1376
|
+
<ANCHOR id="g-timer-stop" href="glib/glib-Timers.html#g-timer-stop">
|
1377
|
+
<ANCHOR id="g-timer-continue" href="glib/glib-Timers.html#g-timer-continue">
|
1378
|
+
<ANCHOR id="g-timer-elapsed" href="glib/glib-Timers.html#g-timer-elapsed">
|
1379
|
+
<ANCHOR id="g-timer-reset" href="glib/glib-Timers.html#g-timer-reset">
|
1380
|
+
<ANCHOR id="g-timer-destroy" href="glib/glib-Timers.html#g-timer-destroy">
|
1381
|
+
<ANCHOR id="glib-Timers.other_details" href="glib/glib-Timers.html#glib-Timers.other_details">
|
1382
|
+
<ANCHOR id="GTimer" href="glib/glib-Timers.html#GTimer">
|
1383
|
+
<ANCHOR id="glib-Spawning-Processes" href="glib/glib-Spawning-Processes.html">
|
1384
|
+
<ANCHOR id="glib-Spawning-Processes.functions" href="glib/glib-Spawning-Processes.html#glib-Spawning-Processes.functions">
|
1385
|
+
<ANCHOR id="glib-Spawning-Processes.other" href="glib/glib-Spawning-Processes.html#glib-Spawning-Processes.other">
|
1386
|
+
<ANCHOR id="glib-Spawning-Processes.includes" href="glib/glib-Spawning-Processes.html#glib-Spawning-Processes.includes">
|
1387
|
+
<ANCHOR id="glib-Spawning-Processes.description" href="glib/glib-Spawning-Processes.html#glib-Spawning-Processes.description">
|
1388
|
+
<ANCHOR id="glib-Spawning-Processes.functions_details" href="glib/glib-Spawning-Processes.html#glib-Spawning-Processes.functions_details">
|
1389
|
+
<ANCHOR id="GSpawnChildSetupFunc" href="glib/glib-Spawning-Processes.html#GSpawnChildSetupFunc">
|
1390
|
+
<ANCHOR id="g-spawn-async-with-pipes" href="glib/glib-Spawning-Processes.html#g-spawn-async-with-pipes">
|
1391
|
+
<ANCHOR id="g-spawn-async" href="glib/glib-Spawning-Processes.html#g-spawn-async">
|
1392
|
+
<ANCHOR id="g-spawn-sync" href="glib/glib-Spawning-Processes.html#g-spawn-sync">
|
1393
|
+
<ANCHOR id="g-spawn-check-exit-status" href="glib/glib-Spawning-Processes.html#g-spawn-check-exit-status">
|
1394
|
+
<ANCHOR id="g-spawn-command-line-async" href="glib/glib-Spawning-Processes.html#g-spawn-command-line-async">
|
1395
|
+
<ANCHOR id="g-spawn-command-line-sync" href="glib/glib-Spawning-Processes.html#g-spawn-command-line-sync">
|
1396
|
+
<ANCHOR id="g-spawn-close-pid" href="glib/glib-Spawning-Processes.html#g-spawn-close-pid">
|
1397
|
+
<ANCHOR id="glib-Spawning-Processes.other_details" href="glib/glib-Spawning-Processes.html#glib-Spawning-Processes.other_details">
|
1398
|
+
<ANCHOR id="GSpawnError" href="glib/glib-Spawning-Processes.html#GSpawnError">
|
1399
|
+
<ANCHOR id="G-SPAWN-ERROR:CAPS" href="glib/glib-Spawning-Processes.html#G-SPAWN-ERROR:CAPS">
|
1400
|
+
<ANCHOR id="GSpawnFlags" href="glib/glib-Spawning-Processes.html#GSpawnFlags">
|
1401
|
+
<ANCHOR id="G-SPAWN-EXIT-ERROR:CAPS" href="glib/glib-Spawning-Processes.html#G-SPAWN-EXIT-ERROR:CAPS">
|
1402
|
+
<ANCHOR id="glib-File-Utilities" href="glib/glib-File-Utilities.html">
|
1403
|
+
<ANCHOR id="glib-File-Utilities.functions" href="glib/glib-File-Utilities.html#glib-File-Utilities.functions">
|
1404
|
+
<ANCHOR id="glib-File-Utilities.other" href="glib/glib-File-Utilities.html#glib-File-Utilities.other">
|
1405
|
+
<ANCHOR id="glib-File-Utilities.includes" href="glib/glib-File-Utilities.html#glib-File-Utilities.includes">
|
1406
|
+
<ANCHOR id="glib-File-Utilities.description" href="glib/glib-File-Utilities.html#glib-File-Utilities.description">
|
1407
|
+
<ANCHOR id="glib-File-Utilities.functions_details" href="glib/glib-File-Utilities.html#glib-File-Utilities.functions_details">
|
1408
|
+
<ANCHOR id="g-file-error-from-errno" href="glib/glib-File-Utilities.html#g-file-error-from-errno">
|
1409
|
+
<ANCHOR id="g-file-get-contents" href="glib/glib-File-Utilities.html#g-file-get-contents">
|
1410
|
+
<ANCHOR id="g-file-set-contents" href="glib/glib-File-Utilities.html#g-file-set-contents">
|
1411
|
+
<ANCHOR id="g-file-test" href="glib/glib-File-Utilities.html#g-file-test">
|
1412
|
+
<ANCHOR id="g-mkstemp" href="glib/glib-File-Utilities.html#g-mkstemp">
|
1413
|
+
<ANCHOR id="g-mkstemp-full" href="glib/glib-File-Utilities.html#g-mkstemp-full">
|
1414
|
+
<ANCHOR id="g-file-open-tmp" href="glib/glib-File-Utilities.html#g-file-open-tmp">
|
1415
|
+
<ANCHOR id="g-file-read-link" href="glib/glib-File-Utilities.html#g-file-read-link">
|
1416
|
+
<ANCHOR id="g-mkdir-with-parents" href="glib/glib-File-Utilities.html#g-mkdir-with-parents">
|
1417
|
+
<ANCHOR id="g-mkdtemp" href="glib/glib-File-Utilities.html#g-mkdtemp">
|
1418
|
+
<ANCHOR id="g-mkdtemp-full" href="glib/glib-File-Utilities.html#g-mkdtemp-full">
|
1419
|
+
<ANCHOR id="g-dir-make-tmp" href="glib/glib-File-Utilities.html#g-dir-make-tmp">
|
1420
|
+
<ANCHOR id="g-dir-open" href="glib/glib-File-Utilities.html#g-dir-open">
|
1421
|
+
<ANCHOR id="g-dir-read-name" href="glib/glib-File-Utilities.html#g-dir-read-name">
|
1422
|
+
<ANCHOR id="g-dir-rewind" href="glib/glib-File-Utilities.html#g-dir-rewind">
|
1423
|
+
<ANCHOR id="g-dir-close" href="glib/glib-File-Utilities.html#g-dir-close">
|
1424
|
+
<ANCHOR id="g-mapped-file-new" href="glib/glib-File-Utilities.html#g-mapped-file-new">
|
1425
|
+
<ANCHOR id="g-mapped-file-new-from-fd" href="glib/glib-File-Utilities.html#g-mapped-file-new-from-fd">
|
1426
|
+
<ANCHOR id="g-mapped-file-ref" href="glib/glib-File-Utilities.html#g-mapped-file-ref">
|
1427
|
+
<ANCHOR id="g-mapped-file-unref" href="glib/glib-File-Utilities.html#g-mapped-file-unref">
|
1428
|
+
<ANCHOR id="g-mapped-file-free" href="glib/glib-File-Utilities.html#g-mapped-file-free">
|
1429
|
+
<ANCHOR id="g-mapped-file-get-length" href="glib/glib-File-Utilities.html#g-mapped-file-get-length">
|
1430
|
+
<ANCHOR id="g-mapped-file-get-contents" href="glib/glib-File-Utilities.html#g-mapped-file-get-contents">
|
1431
|
+
<ANCHOR id="g-mapped-file-get-bytes" href="glib/glib-File-Utilities.html#g-mapped-file-get-bytes">
|
1432
|
+
<ANCHOR id="g-open" href="glib/glib-File-Utilities.html#g-open">
|
1433
|
+
<ANCHOR id="g-rename" href="glib/glib-File-Utilities.html#g-rename">
|
1434
|
+
<ANCHOR id="g-mkdir" href="glib/glib-File-Utilities.html#g-mkdir">
|
1435
|
+
<ANCHOR id="g-stat" href="glib/glib-File-Utilities.html#g-stat">
|
1436
|
+
<ANCHOR id="g-lstat" href="glib/glib-File-Utilities.html#g-lstat">
|
1437
|
+
<ANCHOR id="g-unlink" href="glib/glib-File-Utilities.html#g-unlink">
|
1438
|
+
<ANCHOR id="g-remove" href="glib/glib-File-Utilities.html#g-remove">
|
1439
|
+
<ANCHOR id="g-rmdir" href="glib/glib-File-Utilities.html#g-rmdir">
|
1440
|
+
<ANCHOR id="g-fopen" href="glib/glib-File-Utilities.html#g-fopen">
|
1441
|
+
<ANCHOR id="g-freopen" href="glib/glib-File-Utilities.html#g-freopen">
|
1442
|
+
<ANCHOR id="g-chmod" href="glib/glib-File-Utilities.html#g-chmod">
|
1443
|
+
<ANCHOR id="g-access" href="glib/glib-File-Utilities.html#g-access">
|
1444
|
+
<ANCHOR id="g-creat" href="glib/glib-File-Utilities.html#g-creat">
|
1445
|
+
<ANCHOR id="g-chdir" href="glib/glib-File-Utilities.html#g-chdir">
|
1446
|
+
<ANCHOR id="g-utime" href="glib/glib-File-Utilities.html#g-utime">
|
1447
|
+
<ANCHOR id="g-close" href="glib/glib-File-Utilities.html#g-close">
|
1448
|
+
<ANCHOR id="glib-File-Utilities.other_details" href="glib/glib-File-Utilities.html#glib-File-Utilities.other_details">
|
1449
|
+
<ANCHOR id="GFileError" href="glib/glib-File-Utilities.html#GFileError">
|
1450
|
+
<ANCHOR id="G-FILE-ERROR:CAPS" href="glib/glib-File-Utilities.html#G-FILE-ERROR:CAPS">
|
1451
|
+
<ANCHOR id="GFileTest" href="glib/glib-File-Utilities.html#GFileTest">
|
1452
|
+
<ANCHOR id="GDir" href="glib/glib-File-Utilities.html#GDir">
|
1453
|
+
<ANCHOR id="GMappedFile" href="glib/glib-File-Utilities.html#GMappedFile">
|
1454
|
+
<ANCHOR id="GStatBuf" href="glib/glib-File-Utilities.html#GStatBuf">
|
1455
|
+
<ANCHOR id="glib-URI-Functions" href="glib/glib-URI-Functions.html">
|
1456
|
+
<ANCHOR id="glib-URI-Functions.functions" href="glib/glib-URI-Functions.html#glib-URI-Functions.functions">
|
1457
|
+
<ANCHOR id="glib-URI-Functions.other" href="glib/glib-URI-Functions.html#glib-URI-Functions.other">
|
1458
|
+
<ANCHOR id="glib-URI-Functions.includes" href="glib/glib-URI-Functions.html#glib-URI-Functions.includes">
|
1459
|
+
<ANCHOR id="glib-URI-Functions.description" href="glib/glib-URI-Functions.html#glib-URI-Functions.description">
|
1460
|
+
<ANCHOR id="glib-URI-Functions.functions_details" href="glib/glib-URI-Functions.html#glib-URI-Functions.functions_details">
|
1461
|
+
<ANCHOR id="g-uri-parse-scheme" href="glib/glib-URI-Functions.html#g-uri-parse-scheme">
|
1462
|
+
<ANCHOR id="g-uri-escape-string" href="glib/glib-URI-Functions.html#g-uri-escape-string">
|
1463
|
+
<ANCHOR id="g-uri-unescape-string" href="glib/glib-URI-Functions.html#g-uri-unescape-string">
|
1464
|
+
<ANCHOR id="g-uri-unescape-segment" href="glib/glib-URI-Functions.html#g-uri-unescape-segment">
|
1465
|
+
<ANCHOR id="g-uri-list-extract-uris" href="glib/glib-URI-Functions.html#g-uri-list-extract-uris">
|
1466
|
+
<ANCHOR id="g-filename-from-uri" href="glib/glib-URI-Functions.html#g-filename-from-uri">
|
1467
|
+
<ANCHOR id="g-filename-to-uri" href="glib/glib-URI-Functions.html#g-filename-to-uri">
|
1468
|
+
<ANCHOR id="glib-URI-Functions.other_details" href="glib/glib-URI-Functions.html#glib-URI-Functions.other_details">
|
1469
|
+
<ANCHOR id="G-URI-RESERVED-CHARS-ALLOWED-IN-PATH:CAPS" href="glib/glib-URI-Functions.html#G-URI-RESERVED-CHARS-ALLOWED-IN-PATH:CAPS">
|
1470
|
+
<ANCHOR id="G-URI-RESERVED-CHARS-ALLOWED-IN-PATH-ELEMENT:CAPS" href="glib/glib-URI-Functions.html#G-URI-RESERVED-CHARS-ALLOWED-IN-PATH-ELEMENT:CAPS">
|
1471
|
+
<ANCHOR id="G-URI-RESERVED-CHARS-ALLOWED-IN-USERINFO:CAPS" href="glib/glib-URI-Functions.html#G-URI-RESERVED-CHARS-ALLOWED-IN-USERINFO:CAPS">
|
1472
|
+
<ANCHOR id="G-URI-RESERVED-CHARS-GENERIC-DELIMITERS:CAPS" href="glib/glib-URI-Functions.html#G-URI-RESERVED-CHARS-GENERIC-DELIMITERS:CAPS">
|
1473
|
+
<ANCHOR id="G-URI-RESERVED-CHARS-SUBCOMPONENT-DELIMITERS:CAPS" href="glib/glib-URI-Functions.html#G-URI-RESERVED-CHARS-SUBCOMPONENT-DELIMITERS:CAPS">
|
1474
|
+
<ANCHOR id="glib-Hostname-Utilities" href="glib/glib-Hostname-Utilities.html">
|
1475
|
+
<ANCHOR id="glib-Hostname-Utilities.functions" href="glib/glib-Hostname-Utilities.html#glib-Hostname-Utilities.functions">
|
1476
|
+
<ANCHOR id="glib-Hostname-Utilities.includes" href="glib/glib-Hostname-Utilities.html#glib-Hostname-Utilities.includes">
|
1477
|
+
<ANCHOR id="glib-Hostname-Utilities.description" href="glib/glib-Hostname-Utilities.html#glib-Hostname-Utilities.description">
|
1478
|
+
<ANCHOR id="glib-Hostname-Utilities.functions_details" href="glib/glib-Hostname-Utilities.html#glib-Hostname-Utilities.functions_details">
|
1479
|
+
<ANCHOR id="g-hostname-to-ascii" href="glib/glib-Hostname-Utilities.html#g-hostname-to-ascii">
|
1480
|
+
<ANCHOR id="g-hostname-to-unicode" href="glib/glib-Hostname-Utilities.html#g-hostname-to-unicode">
|
1481
|
+
<ANCHOR id="g-hostname-is-non-ascii" href="glib/glib-Hostname-Utilities.html#g-hostname-is-non-ascii">
|
1482
|
+
<ANCHOR id="g-hostname-is-ascii-encoded" href="glib/glib-Hostname-Utilities.html#g-hostname-is-ascii-encoded">
|
1483
|
+
<ANCHOR id="g-hostname-is-ip-address" href="glib/glib-Hostname-Utilities.html#g-hostname-is-ip-address">
|
1484
|
+
<ANCHOR id="glib-Hostname-Utilities.other_details" href="glib/glib-Hostname-Utilities.html#glib-Hostname-Utilities.other_details">
|
1485
|
+
<ANCHOR id="glib-Shell-related-Utilities" href="glib/glib-Shell-related-Utilities.html">
|
1486
|
+
<ANCHOR id="glib-Shell-related-Utilities.functions" href="glib/glib-Shell-related-Utilities.html#glib-Shell-related-Utilities.functions">
|
1487
|
+
<ANCHOR id="glib-Shell-related-Utilities.other" href="glib/glib-Shell-related-Utilities.html#glib-Shell-related-Utilities.other">
|
1488
|
+
<ANCHOR id="glib-Shell-related-Utilities.includes" href="glib/glib-Shell-related-Utilities.html#glib-Shell-related-Utilities.includes">
|
1489
|
+
<ANCHOR id="glib-Shell-related-Utilities.description" href="glib/glib-Shell-related-Utilities.html#glib-Shell-related-Utilities.description">
|
1490
|
+
<ANCHOR id="glib-Shell-related-Utilities.functions_details" href="glib/glib-Shell-related-Utilities.html#glib-Shell-related-Utilities.functions_details">
|
1491
|
+
<ANCHOR id="g-shell-parse-argv" href="glib/glib-Shell-related-Utilities.html#g-shell-parse-argv">
|
1492
|
+
<ANCHOR id="g-shell-quote" href="glib/glib-Shell-related-Utilities.html#g-shell-quote">
|
1493
|
+
<ANCHOR id="g-shell-unquote" href="glib/glib-Shell-related-Utilities.html#g-shell-unquote">
|
1494
|
+
<ANCHOR id="glib-Shell-related-Utilities.other_details" href="glib/glib-Shell-related-Utilities.html#glib-Shell-related-Utilities.other_details">
|
1495
|
+
<ANCHOR id="GShellError" href="glib/glib-Shell-related-Utilities.html#GShellError">
|
1496
|
+
<ANCHOR id="G-SHELL-ERROR:CAPS" href="glib/glib-Shell-related-Utilities.html#G-SHELL-ERROR:CAPS">
|
1497
|
+
<ANCHOR id="glib-Commandline-option-parser" href="glib/glib-Commandline-option-parser.html">
|
1498
|
+
<ANCHOR id="glib-Commandline-option-parser.functions" href="glib/glib-Commandline-option-parser.html#glib-Commandline-option-parser.functions">
|
1499
|
+
<ANCHOR id="glib-Commandline-option-parser.other" href="glib/glib-Commandline-option-parser.html#glib-Commandline-option-parser.other">
|
1500
|
+
<ANCHOR id="glib-Commandline-option-parser.includes" href="glib/glib-Commandline-option-parser.html#glib-Commandline-option-parser.includes">
|
1501
|
+
<ANCHOR id="glib-Commandline-option-parser.description" href="glib/glib-Commandline-option-parser.html#glib-Commandline-option-parser.description">
|
1502
|
+
<ANCHOR id="glib-Commandline-option-parser.functions_details" href="glib/glib-Commandline-option-parser.html#glib-Commandline-option-parser.functions_details">
|
1503
|
+
<ANCHOR id="G-OPTION-ERROR:CAPS" href="glib/glib-Commandline-option-parser.html#G-OPTION-ERROR:CAPS">
|
1504
|
+
<ANCHOR id="GOptionArgFunc" href="glib/glib-Commandline-option-parser.html#GOptionArgFunc">
|
1505
|
+
<ANCHOR id="g-option-context-new" href="glib/glib-Commandline-option-parser.html#g-option-context-new">
|
1506
|
+
<ANCHOR id="g-option-context-set-summary" href="glib/glib-Commandline-option-parser.html#g-option-context-set-summary">
|
1507
|
+
<ANCHOR id="g-option-context-get-summary" href="glib/glib-Commandline-option-parser.html#g-option-context-get-summary">
|
1508
|
+
<ANCHOR id="g-option-context-set-description" href="glib/glib-Commandline-option-parser.html#g-option-context-set-description">
|
1509
|
+
<ANCHOR id="g-option-context-get-description" href="glib/glib-Commandline-option-parser.html#g-option-context-get-description">
|
1510
|
+
<ANCHOR id="GTranslateFunc" href="glib/glib-Commandline-option-parser.html#GTranslateFunc">
|
1511
|
+
<ANCHOR id="g-option-context-set-translate-func" href="glib/glib-Commandline-option-parser.html#g-option-context-set-translate-func">
|
1512
|
+
<ANCHOR id="g-option-context-set-translation-domain" href="glib/glib-Commandline-option-parser.html#g-option-context-set-translation-domain">
|
1513
|
+
<ANCHOR id="g-option-context-free" href="glib/glib-Commandline-option-parser.html#g-option-context-free">
|
1514
|
+
<ANCHOR id="g-option-context-parse" href="glib/glib-Commandline-option-parser.html#g-option-context-parse">
|
1515
|
+
<ANCHOR id="g-option-context-parse-strv" href="glib/glib-Commandline-option-parser.html#g-option-context-parse-strv">
|
1516
|
+
<ANCHOR id="g-option-context-set-help-enabled" href="glib/glib-Commandline-option-parser.html#g-option-context-set-help-enabled">
|
1517
|
+
<ANCHOR id="g-option-context-get-help-enabled" href="glib/glib-Commandline-option-parser.html#g-option-context-get-help-enabled">
|
1518
|
+
<ANCHOR id="g-option-context-set-ignore-unknown-options" href="glib/glib-Commandline-option-parser.html#g-option-context-set-ignore-unknown-options">
|
1519
|
+
<ANCHOR id="g-option-context-get-ignore-unknown-options" href="glib/glib-Commandline-option-parser.html#g-option-context-get-ignore-unknown-options">
|
1520
|
+
<ANCHOR id="g-option-context-get-help" href="glib/glib-Commandline-option-parser.html#g-option-context-get-help">
|
1521
|
+
<ANCHOR id="g-option-context-add-main-entries" href="glib/glib-Commandline-option-parser.html#g-option-context-add-main-entries">
|
1522
|
+
<ANCHOR id="g-option-context-add-group" href="glib/glib-Commandline-option-parser.html#g-option-context-add-group">
|
1523
|
+
<ANCHOR id="g-option-context-set-main-group" href="glib/glib-Commandline-option-parser.html#g-option-context-set-main-group">
|
1524
|
+
<ANCHOR id="g-option-context-get-main-group" href="glib/glib-Commandline-option-parser.html#g-option-context-get-main-group">
|
1525
|
+
<ANCHOR id="g-option-group-new" href="glib/glib-Commandline-option-parser.html#g-option-group-new">
|
1526
|
+
<ANCHOR id="g-option-group-free" href="glib/glib-Commandline-option-parser.html#g-option-group-free">
|
1527
|
+
<ANCHOR id="g-option-group-add-entries" href="glib/glib-Commandline-option-parser.html#g-option-group-add-entries">
|
1528
|
+
<ANCHOR id="GOptionParseFunc" href="glib/glib-Commandline-option-parser.html#GOptionParseFunc">
|
1529
|
+
<ANCHOR id="g-option-group-set-parse-hooks" href="glib/glib-Commandline-option-parser.html#g-option-group-set-parse-hooks">
|
1530
|
+
<ANCHOR id="GOptionErrorFunc" href="glib/glib-Commandline-option-parser.html#GOptionErrorFunc">
|
1531
|
+
<ANCHOR id="g-option-group-set-error-hook" href="glib/glib-Commandline-option-parser.html#g-option-group-set-error-hook">
|
1532
|
+
<ANCHOR id="g-option-group-set-translate-func" href="glib/glib-Commandline-option-parser.html#g-option-group-set-translate-func">
|
1533
|
+
<ANCHOR id="g-option-group-set-translation-domain" href="glib/glib-Commandline-option-parser.html#g-option-group-set-translation-domain">
|
1534
|
+
<ANCHOR id="glib-Commandline-option-parser.other_details" href="glib/glib-Commandline-option-parser.html#glib-Commandline-option-parser.other_details">
|
1535
|
+
<ANCHOR id="GOptionError" href="glib/glib-Commandline-option-parser.html#GOptionError">
|
1536
|
+
<ANCHOR id="GOptionContext" href="glib/glib-Commandline-option-parser.html#GOptionContext">
|
1537
|
+
<ANCHOR id="GOptionArg" href="glib/glib-Commandline-option-parser.html#GOptionArg">
|
1538
|
+
<ANCHOR id="GOptionFlags" href="glib/glib-Commandline-option-parser.html#GOptionFlags">
|
1539
|
+
<ANCHOR id="G-OPTION-REMAINING:CAPS" href="glib/glib-Commandline-option-parser.html#G-OPTION-REMAINING:CAPS">
|
1540
|
+
<ANCHOR id="GOptionEntry" href="glib/glib-Commandline-option-parser.html#GOptionEntry">
|
1541
|
+
<ANCHOR id="GOptionGroup" href="glib/glib-Commandline-option-parser.html#GOptionGroup">
|
1542
|
+
<ANCHOR id="glib-Glob-style-pattern-matching" href="glib/glib-Glob-style-pattern-matching.html">
|
1543
|
+
<ANCHOR id="glib-Glob-style-pattern-matching.functions" href="glib/glib-Glob-style-pattern-matching.html#glib-Glob-style-pattern-matching.functions">
|
1544
|
+
<ANCHOR id="glib-Glob-style-pattern-matching.other" href="glib/glib-Glob-style-pattern-matching.html#glib-Glob-style-pattern-matching.other">
|
1545
|
+
<ANCHOR id="glib-Glob-style-pattern-matching.includes" href="glib/glib-Glob-style-pattern-matching.html#glib-Glob-style-pattern-matching.includes">
|
1546
|
+
<ANCHOR id="glib-Glob-style-pattern-matching.description" href="glib/glib-Glob-style-pattern-matching.html#glib-Glob-style-pattern-matching.description">
|
1547
|
+
<ANCHOR id="glib-Glob-style-pattern-matching.functions_details" href="glib/glib-Glob-style-pattern-matching.html#glib-Glob-style-pattern-matching.functions_details">
|
1548
|
+
<ANCHOR id="g-pattern-spec-new" href="glib/glib-Glob-style-pattern-matching.html#g-pattern-spec-new">
|
1549
|
+
<ANCHOR id="g-pattern-spec-free" href="glib/glib-Glob-style-pattern-matching.html#g-pattern-spec-free">
|
1550
|
+
<ANCHOR id="g-pattern-spec-equal" href="glib/glib-Glob-style-pattern-matching.html#g-pattern-spec-equal">
|
1551
|
+
<ANCHOR id="g-pattern-match" href="glib/glib-Glob-style-pattern-matching.html#g-pattern-match">
|
1552
|
+
<ANCHOR id="g-pattern-match-string" href="glib/glib-Glob-style-pattern-matching.html#g-pattern-match-string">
|
1553
|
+
<ANCHOR id="g-pattern-match-simple" href="glib/glib-Glob-style-pattern-matching.html#g-pattern-match-simple">
|
1554
|
+
<ANCHOR id="glib-Glob-style-pattern-matching.other_details" href="glib/glib-Glob-style-pattern-matching.html#glib-Glob-style-pattern-matching.other_details">
|
1555
|
+
<ANCHOR id="GPatternSpec" href="glib/glib-Glob-style-pattern-matching.html#GPatternSpec">
|
1556
|
+
<ANCHOR id="glib-Perl-compatible-regular-expressions" href="glib/glib-Perl-compatible-regular-expressions.html">
|
1557
|
+
<ANCHOR id="glib-Perl-compatible-regular-expressions.functions" href="glib/glib-Perl-compatible-regular-expressions.html#glib-Perl-compatible-regular-expressions.functions">
|
1558
|
+
<ANCHOR id="glib-Perl-compatible-regular-expressions.other" href="glib/glib-Perl-compatible-regular-expressions.html#glib-Perl-compatible-regular-expressions.other">
|
1559
|
+
<ANCHOR id="glib-Perl-compatible-regular-expressions.includes" href="glib/glib-Perl-compatible-regular-expressions.html#glib-Perl-compatible-regular-expressions.includes">
|
1560
|
+
<ANCHOR id="glib-Perl-compatible-regular-expressions.description" href="glib/glib-Perl-compatible-regular-expressions.html#glib-Perl-compatible-regular-expressions.description">
|
1561
|
+
<ANCHOR id="glib-Perl-compatible-regular-expressions.functions_details" href="glib/glib-Perl-compatible-regular-expressions.html#glib-Perl-compatible-regular-expressions.functions_details">
|
1562
|
+
<ANCHOR id="GRegexEvalCallback" href="glib/glib-Perl-compatible-regular-expressions.html#GRegexEvalCallback">
|
1563
|
+
<ANCHOR id="g-regex-new" href="glib/glib-Perl-compatible-regular-expressions.html#g-regex-new">
|
1564
|
+
<ANCHOR id="g-regex-ref" href="glib/glib-Perl-compatible-regular-expressions.html#g-regex-ref">
|
1565
|
+
<ANCHOR id="g-regex-unref" href="glib/glib-Perl-compatible-regular-expressions.html#g-regex-unref">
|
1566
|
+
<ANCHOR id="g-regex-get-pattern" href="glib/glib-Perl-compatible-regular-expressions.html#g-regex-get-pattern">
|
1567
|
+
<ANCHOR id="g-regex-get-max-backref" href="glib/glib-Perl-compatible-regular-expressions.html#g-regex-get-max-backref">
|
1568
|
+
<ANCHOR id="g-regex-get-capture-count" href="glib/glib-Perl-compatible-regular-expressions.html#g-regex-get-capture-count">
|
1569
|
+
<ANCHOR id="g-regex-get-has-cr-or-lf" href="glib/glib-Perl-compatible-regular-expressions.html#g-regex-get-has-cr-or-lf">
|
1570
|
+
<ANCHOR id="g-regex-get-max-lookbehind" href="glib/glib-Perl-compatible-regular-expressions.html#g-regex-get-max-lookbehind">
|
1571
|
+
<ANCHOR id="g-regex-get-string-number" href="glib/glib-Perl-compatible-regular-expressions.html#g-regex-get-string-number">
|
1572
|
+
<ANCHOR id="g-regex-get-compile-flags" href="glib/glib-Perl-compatible-regular-expressions.html#g-regex-get-compile-flags">
|
1573
|
+
<ANCHOR id="g-regex-get-match-flags" href="glib/glib-Perl-compatible-regular-expressions.html#g-regex-get-match-flags">
|
1574
|
+
<ANCHOR id="g-regex-escape-string" href="glib/glib-Perl-compatible-regular-expressions.html#g-regex-escape-string">
|
1575
|
+
<ANCHOR id="g-regex-escape-nul" href="glib/glib-Perl-compatible-regular-expressions.html#g-regex-escape-nul">
|
1576
|
+
<ANCHOR id="g-regex-match-simple" href="glib/glib-Perl-compatible-regular-expressions.html#g-regex-match-simple">
|
1577
|
+
<ANCHOR id="g-regex-match" href="glib/glib-Perl-compatible-regular-expressions.html#g-regex-match">
|
1578
|
+
<ANCHOR id="g-regex-match-full" href="glib/glib-Perl-compatible-regular-expressions.html#g-regex-match-full">
|
1579
|
+
<ANCHOR id="g-regex-match-all" href="glib/glib-Perl-compatible-regular-expressions.html#g-regex-match-all">
|
1580
|
+
<ANCHOR id="g-regex-match-all-full" href="glib/glib-Perl-compatible-regular-expressions.html#g-regex-match-all-full">
|
1581
|
+
<ANCHOR id="g-regex-split-simple" href="glib/glib-Perl-compatible-regular-expressions.html#g-regex-split-simple">
|
1582
|
+
<ANCHOR id="g-regex-split" href="glib/glib-Perl-compatible-regular-expressions.html#g-regex-split">
|
1583
|
+
<ANCHOR id="g-regex-split-full" href="glib/glib-Perl-compatible-regular-expressions.html#g-regex-split-full">
|
1584
|
+
<ANCHOR id="g-regex-replace" href="glib/glib-Perl-compatible-regular-expressions.html#g-regex-replace">
|
1585
|
+
<ANCHOR id="g-regex-replace-literal" href="glib/glib-Perl-compatible-regular-expressions.html#g-regex-replace-literal">
|
1586
|
+
<ANCHOR id="g-regex-replace-eval" href="glib/glib-Perl-compatible-regular-expressions.html#g-regex-replace-eval">
|
1587
|
+
<ANCHOR id="g-regex-check-replacement" href="glib/glib-Perl-compatible-regular-expressions.html#g-regex-check-replacement">
|
1588
|
+
<ANCHOR id="g-match-info-get-regex" href="glib/glib-Perl-compatible-regular-expressions.html#g-match-info-get-regex">
|
1589
|
+
<ANCHOR id="g-match-info-get-string" href="glib/glib-Perl-compatible-regular-expressions.html#g-match-info-get-string">
|
1590
|
+
<ANCHOR id="g-match-info-ref" href="glib/glib-Perl-compatible-regular-expressions.html#g-match-info-ref">
|
1591
|
+
<ANCHOR id="g-match-info-unref" href="glib/glib-Perl-compatible-regular-expressions.html#g-match-info-unref">
|
1592
|
+
<ANCHOR id="g-match-info-free" href="glib/glib-Perl-compatible-regular-expressions.html#g-match-info-free">
|
1593
|
+
<ANCHOR id="g-match-info-matches" href="glib/glib-Perl-compatible-regular-expressions.html#g-match-info-matches">
|
1594
|
+
<ANCHOR id="g-match-info-next" href="glib/glib-Perl-compatible-regular-expressions.html#g-match-info-next">
|
1595
|
+
<ANCHOR id="g-match-info-get-match-count" href="glib/glib-Perl-compatible-regular-expressions.html#g-match-info-get-match-count">
|
1596
|
+
<ANCHOR id="g-match-info-is-partial-match" href="glib/glib-Perl-compatible-regular-expressions.html#g-match-info-is-partial-match">
|
1597
|
+
<ANCHOR id="g-match-info-expand-references" href="glib/glib-Perl-compatible-regular-expressions.html#g-match-info-expand-references">
|
1598
|
+
<ANCHOR id="g-match-info-fetch" href="glib/glib-Perl-compatible-regular-expressions.html#g-match-info-fetch">
|
1599
|
+
<ANCHOR id="g-match-info-fetch-pos" href="glib/glib-Perl-compatible-regular-expressions.html#g-match-info-fetch-pos">
|
1600
|
+
<ANCHOR id="g-match-info-fetch-named" href="glib/glib-Perl-compatible-regular-expressions.html#g-match-info-fetch-named">
|
1601
|
+
<ANCHOR id="g-match-info-fetch-named-pos" href="glib/glib-Perl-compatible-regular-expressions.html#g-match-info-fetch-named-pos">
|
1602
|
+
<ANCHOR id="g-match-info-fetch-all" href="glib/glib-Perl-compatible-regular-expressions.html#g-match-info-fetch-all">
|
1603
|
+
<ANCHOR id="glib-Perl-compatible-regular-expressions.other_details" href="glib/glib-Perl-compatible-regular-expressions.html#glib-Perl-compatible-regular-expressions.other_details">
|
1604
|
+
<ANCHOR id="GRegexError" href="glib/glib-Perl-compatible-regular-expressions.html#GRegexError">
|
1605
|
+
<ANCHOR id="G-REGEX-ERROR:CAPS" href="glib/glib-Perl-compatible-regular-expressions.html#G-REGEX-ERROR:CAPS">
|
1606
|
+
<ANCHOR id="GRegexCompileFlags" href="glib/glib-Perl-compatible-regular-expressions.html#GRegexCompileFlags">
|
1607
|
+
<ANCHOR id="GRegexMatchFlags" href="glib/glib-Perl-compatible-regular-expressions.html#GRegexMatchFlags">
|
1608
|
+
<ANCHOR id="GRegex" href="glib/glib-Perl-compatible-regular-expressions.html#GRegex">
|
1609
|
+
<ANCHOR id="GMatchInfo" href="glib/glib-Perl-compatible-regular-expressions.html#GMatchInfo">
|
1610
|
+
<ANCHOR id="glib-Perl-compatible-regular-expressions.see-also" href="glib/glib-Perl-compatible-regular-expressions.html#glib-Perl-compatible-regular-expressions.see-also">
|
1611
|
+
<ANCHOR id="glib-regex-syntax" href="glib/glib-regex-syntax.html">
|
1612
|
+
<ANCHOR id="glib-Simple-XML-Subset-Parser" href="glib/glib-Simple-XML-Subset-Parser.html">
|
1613
|
+
<ANCHOR id="glib-Simple-XML-Subset-Parser.functions" href="glib/glib-Simple-XML-Subset-Parser.html#glib-Simple-XML-Subset-Parser.functions">
|
1614
|
+
<ANCHOR id="glib-Simple-XML-Subset-Parser.other" href="glib/glib-Simple-XML-Subset-Parser.html#glib-Simple-XML-Subset-Parser.other">
|
1615
|
+
<ANCHOR id="glib-Simple-XML-Subset-Parser.includes" href="glib/glib-Simple-XML-Subset-Parser.html#glib-Simple-XML-Subset-Parser.includes">
|
1616
|
+
<ANCHOR id="glib-Simple-XML-Subset-Parser.description" href="glib/glib-Simple-XML-Subset-Parser.html#glib-Simple-XML-Subset-Parser.description">
|
1617
|
+
<ANCHOR id="glib-Simple-XML-Subset-Parser.functions_details" href="glib/glib-Simple-XML-Subset-Parser.html#glib-Simple-XML-Subset-Parser.functions_details">
|
1618
|
+
<ANCHOR id="g-markup-escape-text" href="glib/glib-Simple-XML-Subset-Parser.html#g-markup-escape-text">
|
1619
|
+
<ANCHOR id="g-markup-printf-escaped" href="glib/glib-Simple-XML-Subset-Parser.html#g-markup-printf-escaped">
|
1620
|
+
<ANCHOR id="g-markup-vprintf-escaped" href="glib/glib-Simple-XML-Subset-Parser.html#g-markup-vprintf-escaped">
|
1621
|
+
<ANCHOR id="g-markup-parse-context-new" href="glib/glib-Simple-XML-Subset-Parser.html#g-markup-parse-context-new">
|
1622
|
+
<ANCHOR id="g-markup-parse-context-parse" href="glib/glib-Simple-XML-Subset-Parser.html#g-markup-parse-context-parse">
|
1623
|
+
<ANCHOR id="g-markup-parse-context-end-parse" href="glib/glib-Simple-XML-Subset-Parser.html#g-markup-parse-context-end-parse">
|
1624
|
+
<ANCHOR id="g-markup-parse-context-free" href="glib/glib-Simple-XML-Subset-Parser.html#g-markup-parse-context-free">
|
1625
|
+
<ANCHOR id="g-markup-parse-context-get-position" href="glib/glib-Simple-XML-Subset-Parser.html#g-markup-parse-context-get-position">
|
1626
|
+
<ANCHOR id="g-markup-parse-context-get-element" href="glib/glib-Simple-XML-Subset-Parser.html#g-markup-parse-context-get-element">
|
1627
|
+
<ANCHOR id="g-markup-parse-context-get-element-stack" href="glib/glib-Simple-XML-Subset-Parser.html#g-markup-parse-context-get-element-stack">
|
1628
|
+
<ANCHOR id="g-markup-parse-context-get-user-data" href="glib/glib-Simple-XML-Subset-Parser.html#g-markup-parse-context-get-user-data">
|
1629
|
+
<ANCHOR id="g-markup-parse-context-push" href="glib/glib-Simple-XML-Subset-Parser.html#g-markup-parse-context-push">
|
1630
|
+
<ANCHOR id="g-markup-parse-context-pop" href="glib/glib-Simple-XML-Subset-Parser.html#g-markup-parse-context-pop">
|
1631
|
+
<ANCHOR id="g-markup-parse-context-ref" href="glib/glib-Simple-XML-Subset-Parser.html#g-markup-parse-context-ref">
|
1632
|
+
<ANCHOR id="g-markup-parse-context-unref" href="glib/glib-Simple-XML-Subset-Parser.html#g-markup-parse-context-unref">
|
1633
|
+
<ANCHOR id="g-markup-collect-attributes" href="glib/glib-Simple-XML-Subset-Parser.html#g-markup-collect-attributes">
|
1634
|
+
<ANCHOR id="glib-Simple-XML-Subset-Parser.other_details" href="glib/glib-Simple-XML-Subset-Parser.html#glib-Simple-XML-Subset-Parser.other_details">
|
1635
|
+
<ANCHOR id="GMarkupError" href="glib/glib-Simple-XML-Subset-Parser.html#GMarkupError">
|
1636
|
+
<ANCHOR id="G-MARKUP-ERROR:CAPS" href="glib/glib-Simple-XML-Subset-Parser.html#G-MARKUP-ERROR:CAPS">
|
1637
|
+
<ANCHOR id="GMarkupParseFlags" href="glib/glib-Simple-XML-Subset-Parser.html#GMarkupParseFlags">
|
1638
|
+
<ANCHOR id="GMarkupParseContext" href="glib/glib-Simple-XML-Subset-Parser.html#GMarkupParseContext">
|
1639
|
+
<ANCHOR id="GMarkupParser" href="glib/glib-Simple-XML-Subset-Parser.html#GMarkupParser">
|
1640
|
+
<ANCHOR id="GMarkupCollectType" href="glib/glib-Simple-XML-Subset-Parser.html#GMarkupCollectType">
|
1641
|
+
<ANCHOR id="glib-Simple-XML-Subset-Parser.see-also" href="glib/glib-Simple-XML-Subset-Parser.html#glib-Simple-XML-Subset-Parser.see-also">
|
1642
|
+
<ANCHOR id="glib-Key-value-file-parser" href="glib/glib-Key-value-file-parser.html">
|
1643
|
+
<ANCHOR id="glib-Key-value-file-parser.functions" href="glib/glib-Key-value-file-parser.html#glib-Key-value-file-parser.functions">
|
1644
|
+
<ANCHOR id="glib-Key-value-file-parser.other" href="glib/glib-Key-value-file-parser.html#glib-Key-value-file-parser.other">
|
1645
|
+
<ANCHOR id="glib-Key-value-file-parser.includes" href="glib/glib-Key-value-file-parser.html#glib-Key-value-file-parser.includes">
|
1646
|
+
<ANCHOR id="glib-Key-value-file-parser.description" href="glib/glib-Key-value-file-parser.html#glib-Key-value-file-parser.description">
|
1647
|
+
<ANCHOR id="glib-Key-value-file-parser.functions_details" href="glib/glib-Key-value-file-parser.html#glib-Key-value-file-parser.functions_details">
|
1648
|
+
<ANCHOR id="g-key-file-new" href="glib/glib-Key-value-file-parser.html#g-key-file-new">
|
1649
|
+
<ANCHOR id="g-key-file-free" href="glib/glib-Key-value-file-parser.html#g-key-file-free">
|
1650
|
+
<ANCHOR id="g-key-file-ref" href="glib/glib-Key-value-file-parser.html#g-key-file-ref">
|
1651
|
+
<ANCHOR id="g-key-file-unref" href="glib/glib-Key-value-file-parser.html#g-key-file-unref">
|
1652
|
+
<ANCHOR id="g-key-file-set-list-separator" href="glib/glib-Key-value-file-parser.html#g-key-file-set-list-separator">
|
1653
|
+
<ANCHOR id="g-key-file-load-from-file" href="glib/glib-Key-value-file-parser.html#g-key-file-load-from-file">
|
1654
|
+
<ANCHOR id="g-key-file-load-from-data" href="glib/glib-Key-value-file-parser.html#g-key-file-load-from-data">
|
1655
|
+
<ANCHOR id="g-key-file-load-from-data-dirs" href="glib/glib-Key-value-file-parser.html#g-key-file-load-from-data-dirs">
|
1656
|
+
<ANCHOR id="g-key-file-load-from-dirs" href="glib/glib-Key-value-file-parser.html#g-key-file-load-from-dirs">
|
1657
|
+
<ANCHOR id="g-key-file-to-data" href="glib/glib-Key-value-file-parser.html#g-key-file-to-data">
|
1658
|
+
<ANCHOR id="g-key-file-save-to-file" href="glib/glib-Key-value-file-parser.html#g-key-file-save-to-file">
|
1659
|
+
<ANCHOR id="g-key-file-get-start-group" href="glib/glib-Key-value-file-parser.html#g-key-file-get-start-group">
|
1660
|
+
<ANCHOR id="g-key-file-get-groups" href="glib/glib-Key-value-file-parser.html#g-key-file-get-groups">
|
1661
|
+
<ANCHOR id="g-key-file-get-keys" href="glib/glib-Key-value-file-parser.html#g-key-file-get-keys">
|
1662
|
+
<ANCHOR id="g-key-file-has-group" href="glib/glib-Key-value-file-parser.html#g-key-file-has-group">
|
1663
|
+
<ANCHOR id="g-key-file-has-key" href="glib/glib-Key-value-file-parser.html#g-key-file-has-key">
|
1664
|
+
<ANCHOR id="g-key-file-get-value" href="glib/glib-Key-value-file-parser.html#g-key-file-get-value">
|
1665
|
+
<ANCHOR id="g-key-file-get-string" href="glib/glib-Key-value-file-parser.html#g-key-file-get-string">
|
1666
|
+
<ANCHOR id="g-key-file-get-locale-string" href="glib/glib-Key-value-file-parser.html#g-key-file-get-locale-string">
|
1667
|
+
<ANCHOR id="g-key-file-get-boolean" href="glib/glib-Key-value-file-parser.html#g-key-file-get-boolean">
|
1668
|
+
<ANCHOR id="g-key-file-get-integer" href="glib/glib-Key-value-file-parser.html#g-key-file-get-integer">
|
1669
|
+
<ANCHOR id="g-key-file-get-int64" href="glib/glib-Key-value-file-parser.html#g-key-file-get-int64">
|
1670
|
+
<ANCHOR id="g-key-file-get-uint64" href="glib/glib-Key-value-file-parser.html#g-key-file-get-uint64">
|
1671
|
+
<ANCHOR id="g-key-file-get-double" href="glib/glib-Key-value-file-parser.html#g-key-file-get-double">
|
1672
|
+
<ANCHOR id="g-key-file-get-string-list" href="glib/glib-Key-value-file-parser.html#g-key-file-get-string-list">
|
1673
|
+
<ANCHOR id="g-key-file-get-locale-string-list" href="glib/glib-Key-value-file-parser.html#g-key-file-get-locale-string-list">
|
1674
|
+
<ANCHOR id="g-key-file-get-boolean-list" href="glib/glib-Key-value-file-parser.html#g-key-file-get-boolean-list">
|
1675
|
+
<ANCHOR id="g-key-file-get-integer-list" href="glib/glib-Key-value-file-parser.html#g-key-file-get-integer-list">
|
1676
|
+
<ANCHOR id="g-key-file-get-double-list" href="glib/glib-Key-value-file-parser.html#g-key-file-get-double-list">
|
1677
|
+
<ANCHOR id="g-key-file-get-comment" href="glib/glib-Key-value-file-parser.html#g-key-file-get-comment">
|
1678
|
+
<ANCHOR id="g-key-file-set-value" href="glib/glib-Key-value-file-parser.html#g-key-file-set-value">
|
1679
|
+
<ANCHOR id="g-key-file-set-string" href="glib/glib-Key-value-file-parser.html#g-key-file-set-string">
|
1680
|
+
<ANCHOR id="g-key-file-set-locale-string" href="glib/glib-Key-value-file-parser.html#g-key-file-set-locale-string">
|
1681
|
+
<ANCHOR id="g-key-file-set-boolean" href="glib/glib-Key-value-file-parser.html#g-key-file-set-boolean">
|
1682
|
+
<ANCHOR id="g-key-file-set-integer" href="glib/glib-Key-value-file-parser.html#g-key-file-set-integer">
|
1683
|
+
<ANCHOR id="g-key-file-set-int64" href="glib/glib-Key-value-file-parser.html#g-key-file-set-int64">
|
1684
|
+
<ANCHOR id="g-key-file-set-uint64" href="glib/glib-Key-value-file-parser.html#g-key-file-set-uint64">
|
1685
|
+
<ANCHOR id="g-key-file-set-double" href="glib/glib-Key-value-file-parser.html#g-key-file-set-double">
|
1686
|
+
<ANCHOR id="g-key-file-set-string-list" href="glib/glib-Key-value-file-parser.html#g-key-file-set-string-list">
|
1687
|
+
<ANCHOR id="g-key-file-set-locale-string-list" href="glib/glib-Key-value-file-parser.html#g-key-file-set-locale-string-list">
|
1688
|
+
<ANCHOR id="g-key-file-set-boolean-list" href="glib/glib-Key-value-file-parser.html#g-key-file-set-boolean-list">
|
1689
|
+
<ANCHOR id="g-key-file-set-integer-list" href="glib/glib-Key-value-file-parser.html#g-key-file-set-integer-list">
|
1690
|
+
<ANCHOR id="g-key-file-set-double-list" href="glib/glib-Key-value-file-parser.html#g-key-file-set-double-list">
|
1691
|
+
<ANCHOR id="g-key-file-set-comment" href="glib/glib-Key-value-file-parser.html#g-key-file-set-comment">
|
1692
|
+
<ANCHOR id="g-key-file-remove-group" href="glib/glib-Key-value-file-parser.html#g-key-file-remove-group">
|
1693
|
+
<ANCHOR id="g-key-file-remove-key" href="glib/glib-Key-value-file-parser.html#g-key-file-remove-key">
|
1694
|
+
<ANCHOR id="g-key-file-remove-comment" href="glib/glib-Key-value-file-parser.html#g-key-file-remove-comment">
|
1695
|
+
<ANCHOR id="glib-Key-value-file-parser.other_details" href="glib/glib-Key-value-file-parser.html#glib-Key-value-file-parser.other_details">
|
1696
|
+
<ANCHOR id="GKeyFile" href="glib/glib-Key-value-file-parser.html#GKeyFile">
|
1697
|
+
<ANCHOR id="G-KEY-FILE-ERROR:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-ERROR:CAPS">
|
1698
|
+
<ANCHOR id="GKeyFileError" href="glib/glib-Key-value-file-parser.html#GKeyFileError">
|
1699
|
+
<ANCHOR id="GKeyFileFlags" href="glib/glib-Key-value-file-parser.html#GKeyFileFlags">
|
1700
|
+
<ANCHOR id="G-KEY-FILE-DESKTOP-GROUP:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-GROUP:CAPS">
|
1701
|
+
<ANCHOR id="G-KEY-FILE-DESKTOP-KEY-TYPE:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-TYPE:CAPS">
|
1702
|
+
<ANCHOR id="G-KEY-FILE-DESKTOP-KEY-VERSION:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-VERSION:CAPS">
|
1703
|
+
<ANCHOR id="G-KEY-FILE-DESKTOP-KEY-NAME:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-NAME:CAPS">
|
1704
|
+
<ANCHOR id="G-KEY-FILE-DESKTOP-KEY-GENERIC-NAME:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-GENERIC-NAME:CAPS">
|
1705
|
+
<ANCHOR id="G-KEY-FILE-DESKTOP-KEY-NO-DISPLAY:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-NO-DISPLAY:CAPS">
|
1706
|
+
<ANCHOR id="G-KEY-FILE-DESKTOP-KEY-COMMENT:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-COMMENT:CAPS">
|
1707
|
+
<ANCHOR id="G-KEY-FILE-DESKTOP-KEY-ICON:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-ICON:CAPS">
|
1708
|
+
<ANCHOR id="G-KEY-FILE-DESKTOP-KEY-HIDDEN:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-HIDDEN:CAPS">
|
1709
|
+
<ANCHOR id="G-KEY-FILE-DESKTOP-KEY-ONLY-SHOW-IN:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-ONLY-SHOW-IN:CAPS">
|
1710
|
+
<ANCHOR id="G-KEY-FILE-DESKTOP-KEY-NOT-SHOW-IN:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-NOT-SHOW-IN:CAPS">
|
1711
|
+
<ANCHOR id="G-KEY-FILE-DESKTOP-KEY-TRY-EXEC:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-TRY-EXEC:CAPS">
|
1712
|
+
<ANCHOR id="G-KEY-FILE-DESKTOP-KEY-EXEC:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-EXEC:CAPS">
|
1713
|
+
<ANCHOR id="G-KEY-FILE-DESKTOP-KEY-PATH:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-PATH:CAPS">
|
1714
|
+
<ANCHOR id="G-KEY-FILE-DESKTOP-KEY-TERMINAL:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-TERMINAL:CAPS">
|
1715
|
+
<ANCHOR id="G-KEY-FILE-DESKTOP-KEY-MIME-TYPE:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-MIME-TYPE:CAPS">
|
1716
|
+
<ANCHOR id="G-KEY-FILE-DESKTOP-KEY-CATEGORIES:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-CATEGORIES:CAPS">
|
1717
|
+
<ANCHOR id="G-KEY-FILE-DESKTOP-KEY-STARTUP-NOTIFY:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-STARTUP-NOTIFY:CAPS">
|
1718
|
+
<ANCHOR id="G-KEY-FILE-DESKTOP-KEY-STARTUP-WM-CLASS:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-STARTUP-WM-CLASS:CAPS">
|
1719
|
+
<ANCHOR id="G-KEY-FILE-DESKTOP-KEY-URL:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-KEY-URL:CAPS">
|
1720
|
+
<ANCHOR id="G-KEY-FILE-DESKTOP-TYPE-APPLICATION:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-TYPE-APPLICATION:CAPS">
|
1721
|
+
<ANCHOR id="G-KEY-FILE-DESKTOP-TYPE-LINK:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-TYPE-LINK:CAPS">
|
1722
|
+
<ANCHOR id="G-KEY-FILE-DESKTOP-TYPE-DIRECTORY:CAPS" href="glib/glib-Key-value-file-parser.html#G-KEY-FILE-DESKTOP-TYPE-DIRECTORY:CAPS">
|
1723
|
+
<ANCHOR id="glib-Bookmark-file-parser" href="glib/glib-Bookmark-file-parser.html">
|
1724
|
+
<ANCHOR id="glib-Bookmark-file-parser.functions" href="glib/glib-Bookmark-file-parser.html#glib-Bookmark-file-parser.functions">
|
1725
|
+
<ANCHOR id="glib-Bookmark-file-parser.other" href="glib/glib-Bookmark-file-parser.html#glib-Bookmark-file-parser.other">
|
1726
|
+
<ANCHOR id="glib-Bookmark-file-parser.includes" href="glib/glib-Bookmark-file-parser.html#glib-Bookmark-file-parser.includes">
|
1727
|
+
<ANCHOR id="glib-Bookmark-file-parser.description" href="glib/glib-Bookmark-file-parser.html#glib-Bookmark-file-parser.description">
|
1728
|
+
<ANCHOR id="glib-Bookmark-file-parser.functions_details" href="glib/glib-Bookmark-file-parser.html#glib-Bookmark-file-parser.functions_details">
|
1729
|
+
<ANCHOR id="g-bookmark-file-new" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-new">
|
1730
|
+
<ANCHOR id="g-bookmark-file-free" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-free">
|
1731
|
+
<ANCHOR id="g-bookmark-file-load-from-file" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-load-from-file">
|
1732
|
+
<ANCHOR id="g-bookmark-file-load-from-data" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-load-from-data">
|
1733
|
+
<ANCHOR id="g-bookmark-file-load-from-data-dirs" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-load-from-data-dirs">
|
1734
|
+
<ANCHOR id="g-bookmark-file-to-data" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-to-data">
|
1735
|
+
<ANCHOR id="g-bookmark-file-to-file" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-to-file">
|
1736
|
+
<ANCHOR id="g-bookmark-file-has-item" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-has-item">
|
1737
|
+
<ANCHOR id="g-bookmark-file-has-group" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-has-group">
|
1738
|
+
<ANCHOR id="g-bookmark-file-has-application" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-has-application">
|
1739
|
+
<ANCHOR id="g-bookmark-file-get-size" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-get-size">
|
1740
|
+
<ANCHOR id="g-bookmark-file-get-uris" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-get-uris">
|
1741
|
+
<ANCHOR id="g-bookmark-file-get-title" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-get-title">
|
1742
|
+
<ANCHOR id="g-bookmark-file-get-description" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-get-description">
|
1743
|
+
<ANCHOR id="g-bookmark-file-get-mime-type" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-get-mime-type">
|
1744
|
+
<ANCHOR id="g-bookmark-file-get-is-private" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-get-is-private">
|
1745
|
+
<ANCHOR id="g-bookmark-file-get-icon" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-get-icon">
|
1746
|
+
<ANCHOR id="g-bookmark-file-get-added" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-get-added">
|
1747
|
+
<ANCHOR id="g-bookmark-file-get-modified" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-get-modified">
|
1748
|
+
<ANCHOR id="g-bookmark-file-get-visited" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-get-visited">
|
1749
|
+
<ANCHOR id="g-bookmark-file-get-groups" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-get-groups">
|
1750
|
+
<ANCHOR id="g-bookmark-file-get-applications" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-get-applications">
|
1751
|
+
<ANCHOR id="g-bookmark-file-get-app-info" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-get-app-info">
|
1752
|
+
<ANCHOR id="g-bookmark-file-set-title" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-set-title">
|
1753
|
+
<ANCHOR id="g-bookmark-file-set-description" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-set-description">
|
1754
|
+
<ANCHOR id="g-bookmark-file-set-mime-type" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-set-mime-type">
|
1755
|
+
<ANCHOR id="g-bookmark-file-set-is-private" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-set-is-private">
|
1756
|
+
<ANCHOR id="g-bookmark-file-set-icon" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-set-icon">
|
1757
|
+
<ANCHOR id="g-bookmark-file-set-added" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-set-added">
|
1758
|
+
<ANCHOR id="g-bookmark-file-set-groups" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-set-groups">
|
1759
|
+
<ANCHOR id="g-bookmark-file-set-modified" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-set-modified">
|
1760
|
+
<ANCHOR id="g-bookmark-file-set-visited" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-set-visited">
|
1761
|
+
<ANCHOR id="g-bookmark-file-set-app-info" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-set-app-info">
|
1762
|
+
<ANCHOR id="g-bookmark-file-add-group" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-add-group">
|
1763
|
+
<ANCHOR id="g-bookmark-file-add-application" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-add-application">
|
1764
|
+
<ANCHOR id="g-bookmark-file-remove-group" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-remove-group">
|
1765
|
+
<ANCHOR id="g-bookmark-file-remove-application" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-remove-application">
|
1766
|
+
<ANCHOR id="g-bookmark-file-remove-item" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-remove-item">
|
1767
|
+
<ANCHOR id="g-bookmark-file-move-item" href="glib/glib-Bookmark-file-parser.html#g-bookmark-file-move-item">
|
1768
|
+
<ANCHOR id="glib-Bookmark-file-parser.other_details" href="glib/glib-Bookmark-file-parser.html#glib-Bookmark-file-parser.other_details">
|
1769
|
+
<ANCHOR id="GBookmarkFile" href="glib/glib-Bookmark-file-parser.html#GBookmarkFile">
|
1770
|
+
<ANCHOR id="G-BOOKMARK-FILE-ERROR:CAPS" href="glib/glib-Bookmark-file-parser.html#G-BOOKMARK-FILE-ERROR:CAPS">
|
1771
|
+
<ANCHOR id="GBookmarkFileError" href="glib/glib-Bookmark-file-parser.html#GBookmarkFileError">
|
1772
|
+
<ANCHOR id="glib-Testing" href="glib/glib-Testing.html">
|
1773
|
+
<ANCHOR id="glib-Testing.functions" href="glib/glib-Testing.html#glib-Testing.functions">
|
1774
|
+
<ANCHOR id="glib-Testing.other" href="glib/glib-Testing.html#glib-Testing.other">
|
1775
|
+
<ANCHOR id="glib-Testing.includes" href="glib/glib-Testing.html#glib-Testing.includes">
|
1776
|
+
<ANCHOR id="glib-Testing.description" href="glib/glib-Testing.html#glib-Testing.description">
|
1777
|
+
<ANCHOR id="glib-Testing.functions_details" href="glib/glib-Testing.html#glib-Testing.functions_details">
|
1778
|
+
<ANCHOR id="g-test-minimized-result" href="glib/glib-Testing.html#g-test-minimized-result">
|
1779
|
+
<ANCHOR id="g-test-maximized-result" href="glib/glib-Testing.html#g-test-maximized-result">
|
1780
|
+
<ANCHOR id="g-test-init" href="glib/glib-Testing.html#g-test-init">
|
1781
|
+
<ANCHOR id="g-test-initialized" href="glib/glib-Testing.html#g-test-initialized">
|
1782
|
+
<ANCHOR id="g-test-quick" href="glib/glib-Testing.html#g-test-quick">
|
1783
|
+
<ANCHOR id="g-test-slow" href="glib/glib-Testing.html#g-test-slow">
|
1784
|
+
<ANCHOR id="g-test-thorough" href="glib/glib-Testing.html#g-test-thorough">
|
1785
|
+
<ANCHOR id="g-test-perf" href="glib/glib-Testing.html#g-test-perf">
|
1786
|
+
<ANCHOR id="g-test-verbose" href="glib/glib-Testing.html#g-test-verbose">
|
1787
|
+
<ANCHOR id="g-test-undefined" href="glib/glib-Testing.html#g-test-undefined">
|
1788
|
+
<ANCHOR id="g-test-quiet" href="glib/glib-Testing.html#g-test-quiet">
|
1789
|
+
<ANCHOR id="g-test-subprocess" href="glib/glib-Testing.html#g-test-subprocess">
|
1790
|
+
<ANCHOR id="g-test-run" href="glib/glib-Testing.html#g-test-run">
|
1791
|
+
<ANCHOR id="GTestFunc" href="glib/glib-Testing.html#GTestFunc">
|
1792
|
+
<ANCHOR id="g-test-add-func" href="glib/glib-Testing.html#g-test-add-func">
|
1793
|
+
<ANCHOR id="GTestDataFunc" href="glib/glib-Testing.html#GTestDataFunc">
|
1794
|
+
<ANCHOR id="g-test-add-data-func" href="glib/glib-Testing.html#g-test-add-data-func">
|
1795
|
+
<ANCHOR id="g-test-add-data-func-full" href="glib/glib-Testing.html#g-test-add-data-func-full">
|
1796
|
+
<ANCHOR id="g-test-add" href="glib/glib-Testing.html#g-test-add">
|
1797
|
+
<ANCHOR id="g-test-build-filename" href="glib/glib-Testing.html#g-test-build-filename">
|
1798
|
+
<ANCHOR id="g-test-get-filename" href="glib/glib-Testing.html#g-test-get-filename">
|
1799
|
+
<ANCHOR id="g-test-get-dir" href="glib/glib-Testing.html#g-test-get-dir">
|
1800
|
+
<ANCHOR id="g-test-fail" href="glib/glib-Testing.html#g-test-fail">
|
1801
|
+
<ANCHOR id="g-test-skip" href="glib/glib-Testing.html#g-test-skip">
|
1802
|
+
<ANCHOR id="g-test-incomplete" href="glib/glib-Testing.html#g-test-incomplete">
|
1803
|
+
<ANCHOR id="g-test-failed" href="glib/glib-Testing.html#g-test-failed">
|
1804
|
+
<ANCHOR id="g-test-message" href="glib/glib-Testing.html#g-test-message">
|
1805
|
+
<ANCHOR id="g-test-bug-base" href="glib/glib-Testing.html#g-test-bug-base">
|
1806
|
+
<ANCHOR id="g-test-bug" href="glib/glib-Testing.html#g-test-bug">
|
1807
|
+
<ANCHOR id="GTestLogFatalFunc" href="glib/glib-Testing.html#GTestLogFatalFunc">
|
1808
|
+
<ANCHOR id="g-test-log-set-fatal-handler" href="glib/glib-Testing.html#g-test-log-set-fatal-handler">
|
1809
|
+
<ANCHOR id="g-test-timer-start" href="glib/glib-Testing.html#g-test-timer-start">
|
1810
|
+
<ANCHOR id="g-test-timer-elapsed" href="glib/glib-Testing.html#g-test-timer-elapsed">
|
1811
|
+
<ANCHOR id="g-test-timer-last" href="glib/glib-Testing.html#g-test-timer-last">
|
1812
|
+
<ANCHOR id="g-test-queue-free" href="glib/glib-Testing.html#g-test-queue-free">
|
1813
|
+
<ANCHOR id="g-test-queue-destroy" href="glib/glib-Testing.html#g-test-queue-destroy">
|
1814
|
+
<ANCHOR id="g-test-queue-unref" href="glib/glib-Testing.html#g-test-queue-unref">
|
1815
|
+
<ANCHOR id="g-test-expect-message" href="glib/glib-Testing.html#g-test-expect-message">
|
1816
|
+
<ANCHOR id="g-test-assert-expected-messages" href="glib/glib-Testing.html#g-test-assert-expected-messages">
|
1817
|
+
<ANCHOR id="g-test-trap-subprocess" href="glib/glib-Testing.html#g-test-trap-subprocess">
|
1818
|
+
<ANCHOR id="g-test-trap-has-passed" href="glib/glib-Testing.html#g-test-trap-has-passed">
|
1819
|
+
<ANCHOR id="g-test-trap-reached-timeout" href="glib/glib-Testing.html#g-test-trap-reached-timeout">
|
1820
|
+
<ANCHOR id="g-test-trap-assert-passed" href="glib/glib-Testing.html#g-test-trap-assert-passed">
|
1821
|
+
<ANCHOR id="g-test-trap-assert-failed" href="glib/glib-Testing.html#g-test-trap-assert-failed">
|
1822
|
+
<ANCHOR id="g-test-trap-assert-stdout" href="glib/glib-Testing.html#g-test-trap-assert-stdout">
|
1823
|
+
<ANCHOR id="g-test-trap-assert-stdout-unmatched" href="glib/glib-Testing.html#g-test-trap-assert-stdout-unmatched">
|
1824
|
+
<ANCHOR id="g-test-trap-assert-stderr" href="glib/glib-Testing.html#g-test-trap-assert-stderr">
|
1825
|
+
<ANCHOR id="g-test-trap-assert-stderr-unmatched" href="glib/glib-Testing.html#g-test-trap-assert-stderr-unmatched">
|
1826
|
+
<ANCHOR id="g-test-trap-fork" href="glib/glib-Testing.html#g-test-trap-fork">
|
1827
|
+
<ANCHOR id="g-test-rand-bit" href="glib/glib-Testing.html#g-test-rand-bit">
|
1828
|
+
<ANCHOR id="g-test-rand-int" href="glib/glib-Testing.html#g-test-rand-int">
|
1829
|
+
<ANCHOR id="g-test-rand-int-range" href="glib/glib-Testing.html#g-test-rand-int-range">
|
1830
|
+
<ANCHOR id="g-test-rand-double" href="glib/glib-Testing.html#g-test-rand-double">
|
1831
|
+
<ANCHOR id="g-test-rand-double-range" href="glib/glib-Testing.html#g-test-rand-double-range">
|
1832
|
+
<ANCHOR id="g-assert" href="glib/glib-Testing.html#g-assert">
|
1833
|
+
<ANCHOR id="g-assert-not-reached" href="glib/glib-Testing.html#g-assert-not-reached">
|
1834
|
+
<ANCHOR id="g-assert-cmpstr" href="glib/glib-Testing.html#g-assert-cmpstr">
|
1835
|
+
<ANCHOR id="g-assert-cmpint" href="glib/glib-Testing.html#g-assert-cmpint">
|
1836
|
+
<ANCHOR id="g-assert-cmpuint" href="glib/glib-Testing.html#g-assert-cmpuint">
|
1837
|
+
<ANCHOR id="g-assert-cmphex" href="glib/glib-Testing.html#g-assert-cmphex">
|
1838
|
+
<ANCHOR id="g-assert-cmpfloat" href="glib/glib-Testing.html#g-assert-cmpfloat">
|
1839
|
+
<ANCHOR id="g-assert-no-error" href="glib/glib-Testing.html#g-assert-no-error">
|
1840
|
+
<ANCHOR id="g-assert-error" href="glib/glib-Testing.html#g-assert-error">
|
1841
|
+
<ANCHOR id="g-assert-true" href="glib/glib-Testing.html#g-assert-true">
|
1842
|
+
<ANCHOR id="g-assert-false" href="glib/glib-Testing.html#g-assert-false">
|
1843
|
+
<ANCHOR id="g-assert-null" href="glib/glib-Testing.html#g-assert-null">
|
1844
|
+
<ANCHOR id="g-assert-nonnull" href="glib/glib-Testing.html#g-assert-nonnull">
|
1845
|
+
<ANCHOR id="g-test-set-nonfatal-assertions" href="glib/glib-Testing.html#g-test-set-nonfatal-assertions">
|
1846
|
+
<ANCHOR id="GTestFixtureFunc" href="glib/glib-Testing.html#GTestFixtureFunc">
|
1847
|
+
<ANCHOR id="g-test-create-case" href="glib/glib-Testing.html#g-test-create-case">
|
1848
|
+
<ANCHOR id="g-test-create-suite" href="glib/glib-Testing.html#g-test-create-suite">
|
1849
|
+
<ANCHOR id="g-test-get-root" href="glib/glib-Testing.html#g-test-get-root">
|
1850
|
+
<ANCHOR id="g-test-suite-add" href="glib/glib-Testing.html#g-test-suite-add">
|
1851
|
+
<ANCHOR id="g-test-suite-add-suite" href="glib/glib-Testing.html#g-test-suite-add-suite">
|
1852
|
+
<ANCHOR id="g-test-run-suite" href="glib/glib-Testing.html#g-test-run-suite">
|
1853
|
+
<ANCHOR id="glib-Testing.other_details" href="glib/glib-Testing.html#glib-Testing.other_details">
|
1854
|
+
<ANCHOR id="GTestFileType" href="glib/glib-Testing.html#GTestFileType">
|
1855
|
+
<ANCHOR id="GTestTrapFlags" href="glib/glib-Testing.html#GTestTrapFlags">
|
1856
|
+
<ANCHOR id="GTestSubprocessFlags" href="glib/glib-Testing.html#GTestSubprocessFlags">
|
1857
|
+
<ANCHOR id="GTestCase" href="glib/glib-Testing.html#GTestCase">
|
1858
|
+
<ANCHOR id="GTestSuite" href="glib/glib-Testing.html#GTestSuite">
|
1859
|
+
<ANCHOR id="glib-Testing.see-also" href="glib/glib-Testing.html#glib-Testing.see-also">
|
1860
|
+
<ANCHOR id="glib-UNIX-specific-utilities-and-integration" href="glib/glib-UNIX-specific-utilities-and-integration.html">
|
1861
|
+
<ANCHOR id="glib-UNIX-specific-utilities-and-integration.functions" href="glib/glib-UNIX-specific-utilities-and-integration.html#glib-UNIX-specific-utilities-and-integration.functions">
|
1862
|
+
<ANCHOR id="glib-UNIX-specific-utilities-and-integration.includes" href="glib/glib-UNIX-specific-utilities-and-integration.html#glib-UNIX-specific-utilities-and-integration.includes">
|
1863
|
+
<ANCHOR id="glib-UNIX-specific-utilities-and-integration.description" href="glib/glib-UNIX-specific-utilities-and-integration.html#glib-UNIX-specific-utilities-and-integration.description">
|
1864
|
+
<ANCHOR id="glib-UNIX-specific-utilities-and-integration.functions_details" href="glib/glib-UNIX-specific-utilities-and-integration.html#glib-UNIX-specific-utilities-and-integration.functions_details">
|
1865
|
+
<ANCHOR id="G-UNIX-ERROR:CAPS" href="glib/glib-UNIX-specific-utilities-and-integration.html#G-UNIX-ERROR:CAPS">
|
1866
|
+
<ANCHOR id="g-unix-open-pipe" href="glib/glib-UNIX-specific-utilities-and-integration.html#g-unix-open-pipe">
|
1867
|
+
<ANCHOR id="g-unix-set-fd-nonblocking" href="glib/glib-UNIX-specific-utilities-and-integration.html#g-unix-set-fd-nonblocking">
|
1868
|
+
<ANCHOR id="g-unix-signal-add" href="glib/glib-UNIX-specific-utilities-and-integration.html#g-unix-signal-add">
|
1869
|
+
<ANCHOR id="g-unix-signal-add-full" href="glib/glib-UNIX-specific-utilities-and-integration.html#g-unix-signal-add-full">
|
1870
|
+
<ANCHOR id="g-unix-signal-source-new" href="glib/glib-UNIX-specific-utilities-and-integration.html#g-unix-signal-source-new">
|
1871
|
+
<ANCHOR id="GUnixFDSourceFunc" href="glib/glib-UNIX-specific-utilities-and-integration.html#GUnixFDSourceFunc">
|
1872
|
+
<ANCHOR id="g-unix-fd-add" href="glib/glib-UNIX-specific-utilities-and-integration.html#g-unix-fd-add">
|
1873
|
+
<ANCHOR id="g-unix-fd-add-full" href="glib/glib-UNIX-specific-utilities-and-integration.html#g-unix-fd-add-full">
|
1874
|
+
<ANCHOR id="g-unix-fd-source-new" href="glib/glib-UNIX-specific-utilities-and-integration.html#g-unix-fd-source-new">
|
1875
|
+
<ANCHOR id="glib-UNIX-specific-utilities-and-integration.other_details" href="glib/glib-UNIX-specific-utilities-and-integration.html#glib-UNIX-specific-utilities-and-integration.other_details">
|
1876
|
+
<ANCHOR id="glib-Windows-Compatibility-Functions" href="glib/glib-Windows-Compatibility-Functions.html">
|
1877
|
+
<ANCHOR id="glib-Windows-Compatibility-Functions.functions" href="glib/glib-Windows-Compatibility-Functions.html#glib-Windows-Compatibility-Functions.functions">
|
1878
|
+
<ANCHOR id="glib-Windows-Compatibility-Functions.other" href="glib/glib-Windows-Compatibility-Functions.html#glib-Windows-Compatibility-Functions.other">
|
1879
|
+
<ANCHOR id="glib-Windows-Compatibility-Functions.includes" href="glib/glib-Windows-Compatibility-Functions.html#glib-Windows-Compatibility-Functions.includes">
|
1880
|
+
<ANCHOR id="glib-Windows-Compatibility-Functions.description" href="glib/glib-Windows-Compatibility-Functions.html#glib-Windows-Compatibility-Functions.description">
|
1881
|
+
<ANCHOR id="glib-Windows-Compatibility-Functions.functions_details" href="glib/glib-Windows-Compatibility-Functions.html#glib-Windows-Compatibility-Functions.functions_details">
|
1882
|
+
<ANCHOR id="g-win32-get-command-line" href="glib/glib-Windows-Compatibility-Functions.html#g-win32-get-command-line">
|
1883
|
+
<ANCHOR id="g-win32-error-message" href="glib/glib-Windows-Compatibility-Functions.html#g-win32-error-message">
|
1884
|
+
<ANCHOR id="g-win32-getlocale" href="glib/glib-Windows-Compatibility-Functions.html#g-win32-getlocale">
|
1885
|
+
<ANCHOR id="g-win32-get-package-installation-directory" href="glib/glib-Windows-Compatibility-Functions.html#g-win32-get-package-installation-directory">
|
1886
|
+
<ANCHOR id="g-win32-get-package-installation-directory-of-module" href="glib/glib-Windows-Compatibility-Functions.html#g-win32-get-package-installation-directory-of-module">
|
1887
|
+
<ANCHOR id="g-win32-get-package-installation-subdirectory" href="glib/glib-Windows-Compatibility-Functions.html#g-win32-get-package-installation-subdirectory">
|
1888
|
+
<ANCHOR id="g-win32-get-windows-version" href="glib/glib-Windows-Compatibility-Functions.html#g-win32-get-windows-version">
|
1889
|
+
<ANCHOR id="g-win32-locale-filename-from-utf8" href="glib/glib-Windows-Compatibility-Functions.html#g-win32-locale-filename-from-utf8">
|
1890
|
+
<ANCHOR id="G-WIN32-DLLMAIN-FOR-DLL-NAME:CAPS" href="glib/glib-Windows-Compatibility-Functions.html#G-WIN32-DLLMAIN-FOR-DLL-NAME:CAPS">
|
1891
|
+
<ANCHOR id="G-WIN32-HAVE-WIDECHAR-API:CAPS" href="glib/glib-Windows-Compatibility-Functions.html#G-WIN32-HAVE-WIDECHAR-API:CAPS">
|
1892
|
+
<ANCHOR id="G-WIN32-IS-NT-BASED:CAPS" href="glib/glib-Windows-Compatibility-Functions.html#G-WIN32-IS-NT-BASED:CAPS">
|
1893
|
+
<ANCHOR id="glib-Windows-Compatibility-Functions.other_details" href="glib/glib-Windows-Compatibility-Functions.html#glib-Windows-Compatibility-Functions.other_details">
|
1894
|
+
<ANCHOR id="MAXPATHLEN:CAPS" href="glib/glib-Windows-Compatibility-Functions.html#MAXPATHLEN:CAPS">
|
1895
|
+
<ANCHOR id="glib-Doubly-Linked-Lists" href="glib/glib-Doubly-Linked-Lists.html">
|
1896
|
+
<ANCHOR id="glib-Doubly-Linked-Lists.functions" href="glib/glib-Doubly-Linked-Lists.html#glib-Doubly-Linked-Lists.functions">
|
1897
|
+
<ANCHOR id="glib-Doubly-Linked-Lists.other" href="glib/glib-Doubly-Linked-Lists.html#glib-Doubly-Linked-Lists.other">
|
1898
|
+
<ANCHOR id="glib-Doubly-Linked-Lists.includes" href="glib/glib-Doubly-Linked-Lists.html#glib-Doubly-Linked-Lists.includes">
|
1899
|
+
<ANCHOR id="glib-Doubly-Linked-Lists.description" href="glib/glib-Doubly-Linked-Lists.html#glib-Doubly-Linked-Lists.description">
|
1900
|
+
<ANCHOR id="glib-Doubly-Linked-Lists.functions_details" href="glib/glib-Doubly-Linked-Lists.html#glib-Doubly-Linked-Lists.functions_details">
|
1901
|
+
<ANCHOR id="g-list-append" href="glib/glib-Doubly-Linked-Lists.html#g-list-append">
|
1902
|
+
<ANCHOR id="g-list-prepend" href="glib/glib-Doubly-Linked-Lists.html#g-list-prepend">
|
1903
|
+
<ANCHOR id="g-list-insert" href="glib/glib-Doubly-Linked-Lists.html#g-list-insert">
|
1904
|
+
<ANCHOR id="g-list-insert-before" href="glib/glib-Doubly-Linked-Lists.html#g-list-insert-before">
|
1905
|
+
<ANCHOR id="g-list-insert-sorted" href="glib/glib-Doubly-Linked-Lists.html#g-list-insert-sorted">
|
1906
|
+
<ANCHOR id="g-list-remove" href="glib/glib-Doubly-Linked-Lists.html#g-list-remove">
|
1907
|
+
<ANCHOR id="g-list-remove-link" href="glib/glib-Doubly-Linked-Lists.html#g-list-remove-link">
|
1908
|
+
<ANCHOR id="g-list-delete-link" href="glib/glib-Doubly-Linked-Lists.html#g-list-delete-link">
|
1909
|
+
<ANCHOR id="g-list-remove-all" href="glib/glib-Doubly-Linked-Lists.html#g-list-remove-all">
|
1910
|
+
<ANCHOR id="g-list-free" href="glib/glib-Doubly-Linked-Lists.html#g-list-free">
|
1911
|
+
<ANCHOR id="g-list-free-full" href="glib/glib-Doubly-Linked-Lists.html#g-list-free-full">
|
1912
|
+
<ANCHOR id="g-list-alloc" href="glib/glib-Doubly-Linked-Lists.html#g-list-alloc">
|
1913
|
+
<ANCHOR id="g-list-free-1" href="glib/glib-Doubly-Linked-Lists.html#g-list-free-1">
|
1914
|
+
<ANCHOR id="g-list-length" href="glib/glib-Doubly-Linked-Lists.html#g-list-length">
|
1915
|
+
<ANCHOR id="g-list-copy" href="glib/glib-Doubly-Linked-Lists.html#g-list-copy">
|
1916
|
+
<ANCHOR id="g-list-copy-deep" href="glib/glib-Doubly-Linked-Lists.html#g-list-copy-deep">
|
1917
|
+
<ANCHOR id="g-list-reverse" href="glib/glib-Doubly-Linked-Lists.html#g-list-reverse">
|
1918
|
+
<ANCHOR id="g-list-sort" href="glib/glib-Doubly-Linked-Lists.html#g-list-sort">
|
1919
|
+
<ANCHOR id="GCompareFunc" href="glib/glib-Doubly-Linked-Lists.html#GCompareFunc">
|
1920
|
+
<ANCHOR id="g-list-insert-sorted-with-data" href="glib/glib-Doubly-Linked-Lists.html#g-list-insert-sorted-with-data">
|
1921
|
+
<ANCHOR id="g-list-sort-with-data" href="glib/glib-Doubly-Linked-Lists.html#g-list-sort-with-data">
|
1922
|
+
<ANCHOR id="GCompareDataFunc" href="glib/glib-Doubly-Linked-Lists.html#GCompareDataFunc">
|
1923
|
+
<ANCHOR id="g-list-concat" href="glib/glib-Doubly-Linked-Lists.html#g-list-concat">
|
1924
|
+
<ANCHOR id="g-list-foreach" href="glib/glib-Doubly-Linked-Lists.html#g-list-foreach">
|
1925
|
+
<ANCHOR id="GFunc" href="glib/glib-Doubly-Linked-Lists.html#GFunc">
|
1926
|
+
<ANCHOR id="g-list-first" href="glib/glib-Doubly-Linked-Lists.html#g-list-first">
|
1927
|
+
<ANCHOR id="g-list-last" href="glib/glib-Doubly-Linked-Lists.html#g-list-last">
|
1928
|
+
<ANCHOR id="g-list-previous" href="glib/glib-Doubly-Linked-Lists.html#g-list-previous">
|
1929
|
+
<ANCHOR id="g-list-next" href="glib/glib-Doubly-Linked-Lists.html#g-list-next">
|
1930
|
+
<ANCHOR id="g-list-nth" href="glib/glib-Doubly-Linked-Lists.html#g-list-nth">
|
1931
|
+
<ANCHOR id="g-list-nth-data" href="glib/glib-Doubly-Linked-Lists.html#g-list-nth-data">
|
1932
|
+
<ANCHOR id="g-list-nth-prev" href="glib/glib-Doubly-Linked-Lists.html#g-list-nth-prev">
|
1933
|
+
<ANCHOR id="g-list-find" href="glib/glib-Doubly-Linked-Lists.html#g-list-find">
|
1934
|
+
<ANCHOR id="g-list-find-custom" href="glib/glib-Doubly-Linked-Lists.html#g-list-find-custom">
|
1935
|
+
<ANCHOR id="g-list-position" href="glib/glib-Doubly-Linked-Lists.html#g-list-position">
|
1936
|
+
<ANCHOR id="g-list-index" href="glib/glib-Doubly-Linked-Lists.html#g-list-index">
|
1937
|
+
<ANCHOR id="glib-Doubly-Linked-Lists.other_details" href="glib/glib-Doubly-Linked-Lists.html#glib-Doubly-Linked-Lists.other_details">
|
1938
|
+
<ANCHOR id="GList" href="glib/glib-Doubly-Linked-Lists.html#GList">
|
1939
|
+
<ANCHOR id="g-list-free1" href="glib/glib-Doubly-Linked-Lists.html#g-list-free1">
|
1940
|
+
<ANCHOR id="glib-Singly-Linked-Lists" href="glib/glib-Singly-Linked-Lists.html">
|
1941
|
+
<ANCHOR id="glib-Singly-Linked-Lists.functions" href="glib/glib-Singly-Linked-Lists.html#glib-Singly-Linked-Lists.functions">
|
1942
|
+
<ANCHOR id="glib-Singly-Linked-Lists.other" href="glib/glib-Singly-Linked-Lists.html#glib-Singly-Linked-Lists.other">
|
1943
|
+
<ANCHOR id="glib-Singly-Linked-Lists.includes" href="glib/glib-Singly-Linked-Lists.html#glib-Singly-Linked-Lists.includes">
|
1944
|
+
<ANCHOR id="glib-Singly-Linked-Lists.description" href="glib/glib-Singly-Linked-Lists.html#glib-Singly-Linked-Lists.description">
|
1945
|
+
<ANCHOR id="glib-Singly-Linked-Lists.functions_details" href="glib/glib-Singly-Linked-Lists.html#glib-Singly-Linked-Lists.functions_details">
|
1946
|
+
<ANCHOR id="g-slist-alloc" href="glib/glib-Singly-Linked-Lists.html#g-slist-alloc">
|
1947
|
+
<ANCHOR id="g-slist-append" href="glib/glib-Singly-Linked-Lists.html#g-slist-append">
|
1948
|
+
<ANCHOR id="g-slist-prepend" href="glib/glib-Singly-Linked-Lists.html#g-slist-prepend">
|
1949
|
+
<ANCHOR id="g-slist-insert" href="glib/glib-Singly-Linked-Lists.html#g-slist-insert">
|
1950
|
+
<ANCHOR id="g-slist-insert-before" href="glib/glib-Singly-Linked-Lists.html#g-slist-insert-before">
|
1951
|
+
<ANCHOR id="g-slist-insert-sorted" href="glib/glib-Singly-Linked-Lists.html#g-slist-insert-sorted">
|
1952
|
+
<ANCHOR id="g-slist-remove" href="glib/glib-Singly-Linked-Lists.html#g-slist-remove">
|
1953
|
+
<ANCHOR id="g-slist-remove-link" href="glib/glib-Singly-Linked-Lists.html#g-slist-remove-link">
|
1954
|
+
<ANCHOR id="g-slist-delete-link" href="glib/glib-Singly-Linked-Lists.html#g-slist-delete-link">
|
1955
|
+
<ANCHOR id="g-slist-remove-all" href="glib/glib-Singly-Linked-Lists.html#g-slist-remove-all">
|
1956
|
+
<ANCHOR id="g-slist-free" href="glib/glib-Singly-Linked-Lists.html#g-slist-free">
|
1957
|
+
<ANCHOR id="g-slist-free-full" href="glib/glib-Singly-Linked-Lists.html#g-slist-free-full">
|
1958
|
+
<ANCHOR id="g-slist-free-1" href="glib/glib-Singly-Linked-Lists.html#g-slist-free-1">
|
1959
|
+
<ANCHOR id="g-slist-length" href="glib/glib-Singly-Linked-Lists.html#g-slist-length">
|
1960
|
+
<ANCHOR id="g-slist-copy" href="glib/glib-Singly-Linked-Lists.html#g-slist-copy">
|
1961
|
+
<ANCHOR id="g-slist-copy-deep" href="glib/glib-Singly-Linked-Lists.html#g-slist-copy-deep">
|
1962
|
+
<ANCHOR id="g-slist-reverse" href="glib/glib-Singly-Linked-Lists.html#g-slist-reverse">
|
1963
|
+
<ANCHOR id="g-slist-insert-sorted-with-data" href="glib/glib-Singly-Linked-Lists.html#g-slist-insert-sorted-with-data">
|
1964
|
+
<ANCHOR id="g-slist-sort" href="glib/glib-Singly-Linked-Lists.html#g-slist-sort">
|
1965
|
+
<ANCHOR id="g-slist-sort-with-data" href="glib/glib-Singly-Linked-Lists.html#g-slist-sort-with-data">
|
1966
|
+
<ANCHOR id="g-slist-concat" href="glib/glib-Singly-Linked-Lists.html#g-slist-concat">
|
1967
|
+
<ANCHOR id="g-slist-foreach" href="glib/glib-Singly-Linked-Lists.html#g-slist-foreach">
|
1968
|
+
<ANCHOR id="g-slist-last" href="glib/glib-Singly-Linked-Lists.html#g-slist-last">
|
1969
|
+
<ANCHOR id="g-slist-next" href="glib/glib-Singly-Linked-Lists.html#g-slist-next">
|
1970
|
+
<ANCHOR id="g-slist-nth" href="glib/glib-Singly-Linked-Lists.html#g-slist-nth">
|
1971
|
+
<ANCHOR id="g-slist-nth-data" href="glib/glib-Singly-Linked-Lists.html#g-slist-nth-data">
|
1972
|
+
<ANCHOR id="g-slist-find" href="glib/glib-Singly-Linked-Lists.html#g-slist-find">
|
1973
|
+
<ANCHOR id="g-slist-find-custom" href="glib/glib-Singly-Linked-Lists.html#g-slist-find-custom">
|
1974
|
+
<ANCHOR id="g-slist-position" href="glib/glib-Singly-Linked-Lists.html#g-slist-position">
|
1975
|
+
<ANCHOR id="g-slist-index" href="glib/glib-Singly-Linked-Lists.html#g-slist-index">
|
1976
|
+
<ANCHOR id="glib-Singly-Linked-Lists.other_details" href="glib/glib-Singly-Linked-Lists.html#glib-Singly-Linked-Lists.other_details">
|
1977
|
+
<ANCHOR id="GSList" href="glib/glib-Singly-Linked-Lists.html#GSList">
|
1978
|
+
<ANCHOR id="g-slist-free1" href="glib/glib-Singly-Linked-Lists.html#g-slist-free1">
|
1979
|
+
<ANCHOR id="glib-Double-ended-Queues" href="glib/glib-Double-ended-Queues.html">
|
1980
|
+
<ANCHOR id="glib-Double-ended-Queues.functions" href="glib/glib-Double-ended-Queues.html#glib-Double-ended-Queues.functions">
|
1981
|
+
<ANCHOR id="glib-Double-ended-Queues.other" href="glib/glib-Double-ended-Queues.html#glib-Double-ended-Queues.other">
|
1982
|
+
<ANCHOR id="glib-Double-ended-Queues.includes" href="glib/glib-Double-ended-Queues.html#glib-Double-ended-Queues.includes">
|
1983
|
+
<ANCHOR id="glib-Double-ended-Queues.description" href="glib/glib-Double-ended-Queues.html#glib-Double-ended-Queues.description">
|
1984
|
+
<ANCHOR id="glib-Double-ended-Queues.functions_details" href="glib/glib-Double-ended-Queues.html#glib-Double-ended-Queues.functions_details">
|
1985
|
+
<ANCHOR id="g-queue-new" href="glib/glib-Double-ended-Queues.html#g-queue-new">
|
1986
|
+
<ANCHOR id="g-queue-free" href="glib/glib-Double-ended-Queues.html#g-queue-free">
|
1987
|
+
<ANCHOR id="g-queue-free-full" href="glib/glib-Double-ended-Queues.html#g-queue-free-full">
|
1988
|
+
<ANCHOR id="g-queue-init" href="glib/glib-Double-ended-Queues.html#g-queue-init">
|
1989
|
+
<ANCHOR id="g-queue-clear" href="glib/glib-Double-ended-Queues.html#g-queue-clear">
|
1990
|
+
<ANCHOR id="g-queue-is-empty" href="glib/glib-Double-ended-Queues.html#g-queue-is-empty">
|
1991
|
+
<ANCHOR id="g-queue-get-length" href="glib/glib-Double-ended-Queues.html#g-queue-get-length">
|
1992
|
+
<ANCHOR id="g-queue-reverse" href="glib/glib-Double-ended-Queues.html#g-queue-reverse">
|
1993
|
+
<ANCHOR id="g-queue-copy" href="glib/glib-Double-ended-Queues.html#g-queue-copy">
|
1994
|
+
<ANCHOR id="g-queue-foreach" href="glib/glib-Double-ended-Queues.html#g-queue-foreach">
|
1995
|
+
<ANCHOR id="g-queue-find" href="glib/glib-Double-ended-Queues.html#g-queue-find">
|
1996
|
+
<ANCHOR id="g-queue-find-custom" href="glib/glib-Double-ended-Queues.html#g-queue-find-custom">
|
1997
|
+
<ANCHOR id="g-queue-sort" href="glib/glib-Double-ended-Queues.html#g-queue-sort">
|
1998
|
+
<ANCHOR id="g-queue-push-head" href="glib/glib-Double-ended-Queues.html#g-queue-push-head">
|
1999
|
+
<ANCHOR id="g-queue-push-tail" href="glib/glib-Double-ended-Queues.html#g-queue-push-tail">
|
2000
|
+
<ANCHOR id="g-queue-push-nth" href="glib/glib-Double-ended-Queues.html#g-queue-push-nth">
|
2001
|
+
<ANCHOR id="g-queue-pop-head" href="glib/glib-Double-ended-Queues.html#g-queue-pop-head">
|
2002
|
+
<ANCHOR id="g-queue-pop-tail" href="glib/glib-Double-ended-Queues.html#g-queue-pop-tail">
|
2003
|
+
<ANCHOR id="g-queue-pop-nth" href="glib/glib-Double-ended-Queues.html#g-queue-pop-nth">
|
2004
|
+
<ANCHOR id="g-queue-peek-head" href="glib/glib-Double-ended-Queues.html#g-queue-peek-head">
|
2005
|
+
<ANCHOR id="g-queue-peek-tail" href="glib/glib-Double-ended-Queues.html#g-queue-peek-tail">
|
2006
|
+
<ANCHOR id="g-queue-peek-nth" href="glib/glib-Double-ended-Queues.html#g-queue-peek-nth">
|
2007
|
+
<ANCHOR id="g-queue-index" href="glib/glib-Double-ended-Queues.html#g-queue-index">
|
2008
|
+
<ANCHOR id="g-queue-remove" href="glib/glib-Double-ended-Queues.html#g-queue-remove">
|
2009
|
+
<ANCHOR id="g-queue-remove-all" href="glib/glib-Double-ended-Queues.html#g-queue-remove-all">
|
2010
|
+
<ANCHOR id="g-queue-insert-before" href="glib/glib-Double-ended-Queues.html#g-queue-insert-before">
|
2011
|
+
<ANCHOR id="g-queue-insert-after" href="glib/glib-Double-ended-Queues.html#g-queue-insert-after">
|
2012
|
+
<ANCHOR id="g-queue-insert-sorted" href="glib/glib-Double-ended-Queues.html#g-queue-insert-sorted">
|
2013
|
+
<ANCHOR id="g-queue-push-head-link" href="glib/glib-Double-ended-Queues.html#g-queue-push-head-link">
|
2014
|
+
<ANCHOR id="g-queue-push-tail-link" href="glib/glib-Double-ended-Queues.html#g-queue-push-tail-link">
|
2015
|
+
<ANCHOR id="g-queue-push-nth-link" href="glib/glib-Double-ended-Queues.html#g-queue-push-nth-link">
|
2016
|
+
<ANCHOR id="g-queue-pop-head-link" href="glib/glib-Double-ended-Queues.html#g-queue-pop-head-link">
|
2017
|
+
<ANCHOR id="g-queue-pop-tail-link" href="glib/glib-Double-ended-Queues.html#g-queue-pop-tail-link">
|
2018
|
+
<ANCHOR id="g-queue-pop-nth-link" href="glib/glib-Double-ended-Queues.html#g-queue-pop-nth-link">
|
2019
|
+
<ANCHOR id="g-queue-peek-head-link" href="glib/glib-Double-ended-Queues.html#g-queue-peek-head-link">
|
2020
|
+
<ANCHOR id="g-queue-peek-tail-link" href="glib/glib-Double-ended-Queues.html#g-queue-peek-tail-link">
|
2021
|
+
<ANCHOR id="g-queue-peek-nth-link" href="glib/glib-Double-ended-Queues.html#g-queue-peek-nth-link">
|
2022
|
+
<ANCHOR id="g-queue-link-index" href="glib/glib-Double-ended-Queues.html#g-queue-link-index">
|
2023
|
+
<ANCHOR id="g-queue-unlink" href="glib/glib-Double-ended-Queues.html#g-queue-unlink">
|
2024
|
+
<ANCHOR id="g-queue-delete-link" href="glib/glib-Double-ended-Queues.html#g-queue-delete-link">
|
2025
|
+
<ANCHOR id="glib-Double-ended-Queues.other_details" href="glib/glib-Double-ended-Queues.html#glib-Double-ended-Queues.other_details">
|
2026
|
+
<ANCHOR id="GQueue" href="glib/glib-Double-ended-Queues.html#GQueue">
|
2027
|
+
<ANCHOR id="G-QUEUE-INIT:CAPS" href="glib/glib-Double-ended-Queues.html#G-QUEUE-INIT:CAPS">
|
2028
|
+
<ANCHOR id="glib-Sequences" href="glib/glib-Sequences.html">
|
2029
|
+
<ANCHOR id="glib-Sequences.functions" href="glib/glib-Sequences.html#glib-Sequences.functions">
|
2030
|
+
<ANCHOR id="glib-Sequences.other" href="glib/glib-Sequences.html#glib-Sequences.other">
|
2031
|
+
<ANCHOR id="glib-Sequences.includes" href="glib/glib-Sequences.html#glib-Sequences.includes">
|
2032
|
+
<ANCHOR id="glib-Sequences.description" href="glib/glib-Sequences.html#glib-Sequences.description">
|
2033
|
+
<ANCHOR id="glib-Sequences.functions_details" href="glib/glib-Sequences.html#glib-Sequences.functions_details">
|
2034
|
+
<ANCHOR id="GSequenceIterCompareFunc" href="glib/glib-Sequences.html#GSequenceIterCompareFunc">
|
2035
|
+
<ANCHOR id="g-sequence-new" href="glib/glib-Sequences.html#g-sequence-new">
|
2036
|
+
<ANCHOR id="g-sequence-free" href="glib/glib-Sequences.html#g-sequence-free">
|
2037
|
+
<ANCHOR id="g-sequence-get-length" href="glib/glib-Sequences.html#g-sequence-get-length">
|
2038
|
+
<ANCHOR id="g-sequence-foreach" href="glib/glib-Sequences.html#g-sequence-foreach">
|
2039
|
+
<ANCHOR id="g-sequence-foreach-range" href="glib/glib-Sequences.html#g-sequence-foreach-range">
|
2040
|
+
<ANCHOR id="g-sequence-sort" href="glib/glib-Sequences.html#g-sequence-sort">
|
2041
|
+
<ANCHOR id="g-sequence-sort-iter" href="glib/glib-Sequences.html#g-sequence-sort-iter">
|
2042
|
+
<ANCHOR id="g-sequence-get-begin-iter" href="glib/glib-Sequences.html#g-sequence-get-begin-iter">
|
2043
|
+
<ANCHOR id="g-sequence-get-end-iter" href="glib/glib-Sequences.html#g-sequence-get-end-iter">
|
2044
|
+
<ANCHOR id="g-sequence-get-iter-at-pos" href="glib/glib-Sequences.html#g-sequence-get-iter-at-pos">
|
2045
|
+
<ANCHOR id="g-sequence-append" href="glib/glib-Sequences.html#g-sequence-append">
|
2046
|
+
<ANCHOR id="g-sequence-prepend" href="glib/glib-Sequences.html#g-sequence-prepend">
|
2047
|
+
<ANCHOR id="g-sequence-insert-before" href="glib/glib-Sequences.html#g-sequence-insert-before">
|
2048
|
+
<ANCHOR id="g-sequence-move" href="glib/glib-Sequences.html#g-sequence-move">
|
2049
|
+
<ANCHOR id="g-sequence-swap" href="glib/glib-Sequences.html#g-sequence-swap">
|
2050
|
+
<ANCHOR id="g-sequence-insert-sorted" href="glib/glib-Sequences.html#g-sequence-insert-sorted">
|
2051
|
+
<ANCHOR id="g-sequence-insert-sorted-iter" href="glib/glib-Sequences.html#g-sequence-insert-sorted-iter">
|
2052
|
+
<ANCHOR id="g-sequence-sort-changed" href="glib/glib-Sequences.html#g-sequence-sort-changed">
|
2053
|
+
<ANCHOR id="g-sequence-sort-changed-iter" href="glib/glib-Sequences.html#g-sequence-sort-changed-iter">
|
2054
|
+
<ANCHOR id="g-sequence-remove" href="glib/glib-Sequences.html#g-sequence-remove">
|
2055
|
+
<ANCHOR id="g-sequence-remove-range" href="glib/glib-Sequences.html#g-sequence-remove-range">
|
2056
|
+
<ANCHOR id="g-sequence-move-range" href="glib/glib-Sequences.html#g-sequence-move-range">
|
2057
|
+
<ANCHOR id="g-sequence-search" href="glib/glib-Sequences.html#g-sequence-search">
|
2058
|
+
<ANCHOR id="g-sequence-search-iter" href="glib/glib-Sequences.html#g-sequence-search-iter">
|
2059
|
+
<ANCHOR id="g-sequence-lookup" href="glib/glib-Sequences.html#g-sequence-lookup">
|
2060
|
+
<ANCHOR id="g-sequence-lookup-iter" href="glib/glib-Sequences.html#g-sequence-lookup-iter">
|
2061
|
+
<ANCHOR id="g-sequence-get" href="glib/glib-Sequences.html#g-sequence-get">
|
2062
|
+
<ANCHOR id="g-sequence-set" href="glib/glib-Sequences.html#g-sequence-set">
|
2063
|
+
<ANCHOR id="g-sequence-iter-is-begin" href="glib/glib-Sequences.html#g-sequence-iter-is-begin">
|
2064
|
+
<ANCHOR id="g-sequence-iter-is-end" href="glib/glib-Sequences.html#g-sequence-iter-is-end">
|
2065
|
+
<ANCHOR id="g-sequence-iter-next" href="glib/glib-Sequences.html#g-sequence-iter-next">
|
2066
|
+
<ANCHOR id="g-sequence-iter-prev" href="glib/glib-Sequences.html#g-sequence-iter-prev">
|
2067
|
+
<ANCHOR id="g-sequence-iter-get-position" href="glib/glib-Sequences.html#g-sequence-iter-get-position">
|
2068
|
+
<ANCHOR id="g-sequence-iter-move" href="glib/glib-Sequences.html#g-sequence-iter-move">
|
2069
|
+
<ANCHOR id="g-sequence-iter-get-sequence" href="glib/glib-Sequences.html#g-sequence-iter-get-sequence">
|
2070
|
+
<ANCHOR id="g-sequence-iter-compare" href="glib/glib-Sequences.html#g-sequence-iter-compare">
|
2071
|
+
<ANCHOR id="g-sequence-range-get-midpoint" href="glib/glib-Sequences.html#g-sequence-range-get-midpoint">
|
2072
|
+
<ANCHOR id="glib-Sequences.other_details" href="glib/glib-Sequences.html#glib-Sequences.other_details">
|
2073
|
+
<ANCHOR id="GSequence" href="glib/glib-Sequences.html#GSequence">
|
2074
|
+
<ANCHOR id="GSequenceIter" href="glib/glib-Sequences.html#GSequenceIter">
|
2075
|
+
<ANCHOR id="glib-Trash-Stacks" href="glib/glib-Trash-Stacks.html">
|
2076
|
+
<ANCHOR id="glib-Trash-Stacks.functions" href="glib/glib-Trash-Stacks.html#glib-Trash-Stacks.functions">
|
2077
|
+
<ANCHOR id="glib-Trash-Stacks.other" href="glib/glib-Trash-Stacks.html#glib-Trash-Stacks.other">
|
2078
|
+
<ANCHOR id="glib-Trash-Stacks.includes" href="glib/glib-Trash-Stacks.html#glib-Trash-Stacks.includes">
|
2079
|
+
<ANCHOR id="glib-Trash-Stacks.description" href="glib/glib-Trash-Stacks.html#glib-Trash-Stacks.description">
|
2080
|
+
<ANCHOR id="glib-Trash-Stacks.functions_details" href="glib/glib-Trash-Stacks.html#glib-Trash-Stacks.functions_details">
|
2081
|
+
<ANCHOR id="g-trash-stack-push" href="glib/glib-Trash-Stacks.html#g-trash-stack-push">
|
2082
|
+
<ANCHOR id="g-trash-stack-pop" href="glib/glib-Trash-Stacks.html#g-trash-stack-pop">
|
2083
|
+
<ANCHOR id="g-trash-stack-peek" href="glib/glib-Trash-Stacks.html#g-trash-stack-peek">
|
2084
|
+
<ANCHOR id="g-trash-stack-height" href="glib/glib-Trash-Stacks.html#g-trash-stack-height">
|
2085
|
+
<ANCHOR id="glib-Trash-Stacks.other_details" href="glib/glib-Trash-Stacks.html#glib-Trash-Stacks.other_details">
|
2086
|
+
<ANCHOR id="GTrashStack" href="glib/glib-Trash-Stacks.html#GTrashStack">
|
2087
|
+
<ANCHOR id="glib-Hash-Tables" href="glib/glib-Hash-Tables.html">
|
2088
|
+
<ANCHOR id="glib-Hash-Tables.functions" href="glib/glib-Hash-Tables.html#glib-Hash-Tables.functions">
|
2089
|
+
<ANCHOR id="glib-Hash-Tables.other" href="glib/glib-Hash-Tables.html#glib-Hash-Tables.other">
|
2090
|
+
<ANCHOR id="glib-Hash-Tables.includes" href="glib/glib-Hash-Tables.html#glib-Hash-Tables.includes">
|
2091
|
+
<ANCHOR id="glib-Hash-Tables.description" href="glib/glib-Hash-Tables.html#glib-Hash-Tables.description">
|
2092
|
+
<ANCHOR id="glib-Hash-Tables.functions_details" href="glib/glib-Hash-Tables.html#glib-Hash-Tables.functions_details">
|
2093
|
+
<ANCHOR id="g-hash-table-new" href="glib/glib-Hash-Tables.html#g-hash-table-new">
|
2094
|
+
<ANCHOR id="g-hash-table-new-full" href="glib/glib-Hash-Tables.html#g-hash-table-new-full">
|
2095
|
+
<ANCHOR id="GHashFunc" href="glib/glib-Hash-Tables.html#GHashFunc">
|
2096
|
+
<ANCHOR id="GEqualFunc" href="glib/glib-Hash-Tables.html#GEqualFunc">
|
2097
|
+
<ANCHOR id="g-hash-table-insert" href="glib/glib-Hash-Tables.html#g-hash-table-insert">
|
2098
|
+
<ANCHOR id="g-hash-table-replace" href="glib/glib-Hash-Tables.html#g-hash-table-replace">
|
2099
|
+
<ANCHOR id="g-hash-table-add" href="glib/glib-Hash-Tables.html#g-hash-table-add">
|
2100
|
+
<ANCHOR id="g-hash-table-contains" href="glib/glib-Hash-Tables.html#g-hash-table-contains">
|
2101
|
+
<ANCHOR id="g-hash-table-size" href="glib/glib-Hash-Tables.html#g-hash-table-size">
|
2102
|
+
<ANCHOR id="g-hash-table-lookup" href="glib/glib-Hash-Tables.html#g-hash-table-lookup">
|
2103
|
+
<ANCHOR id="g-hash-table-lookup-extended" href="glib/glib-Hash-Tables.html#g-hash-table-lookup-extended">
|
2104
|
+
<ANCHOR id="g-hash-table-foreach" href="glib/glib-Hash-Tables.html#g-hash-table-foreach">
|
2105
|
+
<ANCHOR id="g-hash-table-find" href="glib/glib-Hash-Tables.html#g-hash-table-find">
|
2106
|
+
<ANCHOR id="GHFunc" href="glib/glib-Hash-Tables.html#GHFunc">
|
2107
|
+
<ANCHOR id="g-hash-table-remove" href="glib/glib-Hash-Tables.html#g-hash-table-remove">
|
2108
|
+
<ANCHOR id="g-hash-table-steal" href="glib/glib-Hash-Tables.html#g-hash-table-steal">
|
2109
|
+
<ANCHOR id="g-hash-table-foreach-remove" href="glib/glib-Hash-Tables.html#g-hash-table-foreach-remove">
|
2110
|
+
<ANCHOR id="g-hash-table-foreach-steal" href="glib/glib-Hash-Tables.html#g-hash-table-foreach-steal">
|
2111
|
+
<ANCHOR id="g-hash-table-remove-all" href="glib/glib-Hash-Tables.html#g-hash-table-remove-all">
|
2112
|
+
<ANCHOR id="g-hash-table-steal-all" href="glib/glib-Hash-Tables.html#g-hash-table-steal-all">
|
2113
|
+
<ANCHOR id="g-hash-table-get-keys" href="glib/glib-Hash-Tables.html#g-hash-table-get-keys">
|
2114
|
+
<ANCHOR id="g-hash-table-get-values" href="glib/glib-Hash-Tables.html#g-hash-table-get-values">
|
2115
|
+
<ANCHOR id="g-hash-table-get-keys-as-array" href="glib/glib-Hash-Tables.html#g-hash-table-get-keys-as-array">
|
2116
|
+
<ANCHOR id="GHRFunc" href="glib/glib-Hash-Tables.html#GHRFunc">
|
2117
|
+
<ANCHOR id="g-hash-table-freeze" href="glib/glib-Hash-Tables.html#g-hash-table-freeze">
|
2118
|
+
<ANCHOR id="g-hash-table-thaw" href="glib/glib-Hash-Tables.html#g-hash-table-thaw">
|
2119
|
+
<ANCHOR id="g-hash-table-destroy" href="glib/glib-Hash-Tables.html#g-hash-table-destroy">
|
2120
|
+
<ANCHOR id="g-hash-table-ref" href="glib/glib-Hash-Tables.html#g-hash-table-ref">
|
2121
|
+
<ANCHOR id="g-hash-table-unref" href="glib/glib-Hash-Tables.html#g-hash-table-unref">
|
2122
|
+
<ANCHOR id="g-hash-table-iter-init" href="glib/glib-Hash-Tables.html#g-hash-table-iter-init">
|
2123
|
+
<ANCHOR id="g-hash-table-iter-next" href="glib/glib-Hash-Tables.html#g-hash-table-iter-next">
|
2124
|
+
<ANCHOR id="g-hash-table-iter-get-hash-table" href="glib/glib-Hash-Tables.html#g-hash-table-iter-get-hash-table">
|
2125
|
+
<ANCHOR id="g-hash-table-iter-replace" href="glib/glib-Hash-Tables.html#g-hash-table-iter-replace">
|
2126
|
+
<ANCHOR id="g-hash-table-iter-remove" href="glib/glib-Hash-Tables.html#g-hash-table-iter-remove">
|
2127
|
+
<ANCHOR id="g-hash-table-iter-steal" href="glib/glib-Hash-Tables.html#g-hash-table-iter-steal">
|
2128
|
+
<ANCHOR id="g-direct-equal" href="glib/glib-Hash-Tables.html#g-direct-equal">
|
2129
|
+
<ANCHOR id="g-direct-hash" href="glib/glib-Hash-Tables.html#g-direct-hash">
|
2130
|
+
<ANCHOR id="g-int-equal" href="glib/glib-Hash-Tables.html#g-int-equal">
|
2131
|
+
<ANCHOR id="g-int-hash" href="glib/glib-Hash-Tables.html#g-int-hash">
|
2132
|
+
<ANCHOR id="g-int64-equal" href="glib/glib-Hash-Tables.html#g-int64-equal">
|
2133
|
+
<ANCHOR id="g-int64-hash" href="glib/glib-Hash-Tables.html#g-int64-hash">
|
2134
|
+
<ANCHOR id="g-double-equal" href="glib/glib-Hash-Tables.html#g-double-equal">
|
2135
|
+
<ANCHOR id="g-double-hash" href="glib/glib-Hash-Tables.html#g-double-hash">
|
2136
|
+
<ANCHOR id="g-str-equal" href="glib/glib-Hash-Tables.html#g-str-equal">
|
2137
|
+
<ANCHOR id="g-str-hash" href="glib/glib-Hash-Tables.html#g-str-hash">
|
2138
|
+
<ANCHOR id="glib-Hash-Tables.other_details" href="glib/glib-Hash-Tables.html#glib-Hash-Tables.other_details">
|
2139
|
+
<ANCHOR id="GHashTable" href="glib/glib-Hash-Tables.html#GHashTable">
|
2140
|
+
<ANCHOR id="GHashTableIter" href="glib/glib-Hash-Tables.html#GHashTableIter">
|
2141
|
+
<ANCHOR id="glib-Strings" href="glib/glib-Strings.html">
|
2142
|
+
<ANCHOR id="glib-Strings.functions" href="glib/glib-Strings.html#glib-Strings.functions">
|
2143
|
+
<ANCHOR id="glib-Strings.other" href="glib/glib-Strings.html#glib-Strings.other">
|
2144
|
+
<ANCHOR id="glib-Strings.includes" href="glib/glib-Strings.html#glib-Strings.includes">
|
2145
|
+
<ANCHOR id="glib-Strings.description" href="glib/glib-Strings.html#glib-Strings.description">
|
2146
|
+
<ANCHOR id="glib-Strings.functions_details" href="glib/glib-Strings.html#glib-Strings.functions_details">
|
2147
|
+
<ANCHOR id="g-string-new" href="glib/glib-Strings.html#g-string-new">
|
2148
|
+
<ANCHOR id="g-string-new-len" href="glib/glib-Strings.html#g-string-new-len">
|
2149
|
+
<ANCHOR id="g-string-sized-new" href="glib/glib-Strings.html#g-string-sized-new">
|
2150
|
+
<ANCHOR id="g-string-assign" href="glib/glib-Strings.html#g-string-assign">
|
2151
|
+
<ANCHOR id="g-string-vprintf" href="glib/glib-Strings.html#g-string-vprintf">
|
2152
|
+
<ANCHOR id="g-string-append-vprintf" href="glib/glib-Strings.html#g-string-append-vprintf">
|
2153
|
+
<ANCHOR id="g-string-printf" href="glib/glib-Strings.html#g-string-printf">
|
2154
|
+
<ANCHOR id="g-string-append-printf" href="glib/glib-Strings.html#g-string-append-printf">
|
2155
|
+
<ANCHOR id="g-string-append" href="glib/glib-Strings.html#g-string-append">
|
2156
|
+
<ANCHOR id="g-string-append-c" href="glib/glib-Strings.html#g-string-append-c">
|
2157
|
+
<ANCHOR id="g-string-append-unichar" href="glib/glib-Strings.html#g-string-append-unichar">
|
2158
|
+
<ANCHOR id="g-string-append-len" href="glib/glib-Strings.html#g-string-append-len">
|
2159
|
+
<ANCHOR id="g-string-append-uri-escaped" href="glib/glib-Strings.html#g-string-append-uri-escaped">
|
2160
|
+
<ANCHOR id="g-string-prepend" href="glib/glib-Strings.html#g-string-prepend">
|
2161
|
+
<ANCHOR id="g-string-prepend-c" href="glib/glib-Strings.html#g-string-prepend-c">
|
2162
|
+
<ANCHOR id="g-string-prepend-unichar" href="glib/glib-Strings.html#g-string-prepend-unichar">
|
2163
|
+
<ANCHOR id="g-string-prepend-len" href="glib/glib-Strings.html#g-string-prepend-len">
|
2164
|
+
<ANCHOR id="g-string-insert" href="glib/glib-Strings.html#g-string-insert">
|
2165
|
+
<ANCHOR id="g-string-insert-c" href="glib/glib-Strings.html#g-string-insert-c">
|
2166
|
+
<ANCHOR id="g-string-insert-unichar" href="glib/glib-Strings.html#g-string-insert-unichar">
|
2167
|
+
<ANCHOR id="g-string-insert-len" href="glib/glib-Strings.html#g-string-insert-len">
|
2168
|
+
<ANCHOR id="g-string-overwrite" href="glib/glib-Strings.html#g-string-overwrite">
|
2169
|
+
<ANCHOR id="g-string-overwrite-len" href="glib/glib-Strings.html#g-string-overwrite-len">
|
2170
|
+
<ANCHOR id="g-string-erase" href="glib/glib-Strings.html#g-string-erase">
|
2171
|
+
<ANCHOR id="g-string-truncate" href="glib/glib-Strings.html#g-string-truncate">
|
2172
|
+
<ANCHOR id="g-string-set-size" href="glib/glib-Strings.html#g-string-set-size">
|
2173
|
+
<ANCHOR id="g-string-free" href="glib/glib-Strings.html#g-string-free">
|
2174
|
+
<ANCHOR id="g-string-free-to-bytes" href="glib/glib-Strings.html#g-string-free-to-bytes">
|
2175
|
+
<ANCHOR id="g-string-up" href="glib/glib-Strings.html#g-string-up">
|
2176
|
+
<ANCHOR id="g-string-down" href="glib/glib-Strings.html#g-string-down">
|
2177
|
+
<ANCHOR id="g-string-hash" href="glib/glib-Strings.html#g-string-hash">
|
2178
|
+
<ANCHOR id="g-string-equal" href="glib/glib-Strings.html#g-string-equal">
|
2179
|
+
<ANCHOR id="glib-Strings.other_details" href="glib/glib-Strings.html#glib-Strings.other_details">
|
2180
|
+
<ANCHOR id="GString" href="glib/glib-Strings.html#GString">
|
2181
|
+
<ANCHOR id="g-string-sprintf" href="glib/glib-Strings.html#g-string-sprintf">
|
2182
|
+
<ANCHOR id="g-string-sprintfa" href="glib/glib-Strings.html#g-string-sprintfa">
|
2183
|
+
<ANCHOR id="glib-String-Chunks" href="glib/glib-String-Chunks.html">
|
2184
|
+
<ANCHOR id="glib-String-Chunks.functions" href="glib/glib-String-Chunks.html#glib-String-Chunks.functions">
|
2185
|
+
<ANCHOR id="glib-String-Chunks.other" href="glib/glib-String-Chunks.html#glib-String-Chunks.other">
|
2186
|
+
<ANCHOR id="glib-String-Chunks.includes" href="glib/glib-String-Chunks.html#glib-String-Chunks.includes">
|
2187
|
+
<ANCHOR id="glib-String-Chunks.description" href="glib/glib-String-Chunks.html#glib-String-Chunks.description">
|
2188
|
+
<ANCHOR id="glib-String-Chunks.functions_details" href="glib/glib-String-Chunks.html#glib-String-Chunks.functions_details">
|
2189
|
+
<ANCHOR id="g-string-chunk-new" href="glib/glib-String-Chunks.html#g-string-chunk-new">
|
2190
|
+
<ANCHOR id="g-string-chunk-insert" href="glib/glib-String-Chunks.html#g-string-chunk-insert">
|
2191
|
+
<ANCHOR id="g-string-chunk-insert-const" href="glib/glib-String-Chunks.html#g-string-chunk-insert-const">
|
2192
|
+
<ANCHOR id="g-string-chunk-insert-len" href="glib/glib-String-Chunks.html#g-string-chunk-insert-len">
|
2193
|
+
<ANCHOR id="g-string-chunk-clear" href="glib/glib-String-Chunks.html#g-string-chunk-clear">
|
2194
|
+
<ANCHOR id="g-string-chunk-free" href="glib/glib-String-Chunks.html#g-string-chunk-free">
|
2195
|
+
<ANCHOR id="glib-String-Chunks.other_details" href="glib/glib-String-Chunks.html#glib-String-Chunks.other_details">
|
2196
|
+
<ANCHOR id="GStringChunk" href="glib/glib-String-Chunks.html#GStringChunk">
|
2197
|
+
<ANCHOR id="glib-Arrays" href="glib/glib-Arrays.html">
|
2198
|
+
<ANCHOR id="glib-Arrays.functions" href="glib/glib-Arrays.html#glib-Arrays.functions">
|
2199
|
+
<ANCHOR id="glib-Arrays.other" href="glib/glib-Arrays.html#glib-Arrays.other">
|
2200
|
+
<ANCHOR id="glib-Arrays.includes" href="glib/glib-Arrays.html#glib-Arrays.includes">
|
2201
|
+
<ANCHOR id="glib-Arrays.description" href="glib/glib-Arrays.html#glib-Arrays.description">
|
2202
|
+
<ANCHOR id="glib-Arrays.functions_details" href="glib/glib-Arrays.html#glib-Arrays.functions_details">
|
2203
|
+
<ANCHOR id="g-array-new" href="glib/glib-Arrays.html#g-array-new">
|
2204
|
+
<ANCHOR id="g-array-sized-new" href="glib/glib-Arrays.html#g-array-sized-new">
|
2205
|
+
<ANCHOR id="g-array-ref" href="glib/glib-Arrays.html#g-array-ref">
|
2206
|
+
<ANCHOR id="g-array-unref" href="glib/glib-Arrays.html#g-array-unref">
|
2207
|
+
<ANCHOR id="g-array-get-element-size" href="glib/glib-Arrays.html#g-array-get-element-size">
|
2208
|
+
<ANCHOR id="g-array-append-val" href="glib/glib-Arrays.html#g-array-append-val">
|
2209
|
+
<ANCHOR id="g-array-append-vals" href="glib/glib-Arrays.html#g-array-append-vals">
|
2210
|
+
<ANCHOR id="g-array-prepend-val" href="glib/glib-Arrays.html#g-array-prepend-val">
|
2211
|
+
<ANCHOR id="g-array-prepend-vals" href="glib/glib-Arrays.html#g-array-prepend-vals">
|
2212
|
+
<ANCHOR id="g-array-insert-val" href="glib/glib-Arrays.html#g-array-insert-val">
|
2213
|
+
<ANCHOR id="g-array-insert-vals" href="glib/glib-Arrays.html#g-array-insert-vals">
|
2214
|
+
<ANCHOR id="g-array-remove-index" href="glib/glib-Arrays.html#g-array-remove-index">
|
2215
|
+
<ANCHOR id="g-array-remove-index-fast" href="glib/glib-Arrays.html#g-array-remove-index-fast">
|
2216
|
+
<ANCHOR id="g-array-remove-range" href="glib/glib-Arrays.html#g-array-remove-range">
|
2217
|
+
<ANCHOR id="g-array-sort" href="glib/glib-Arrays.html#g-array-sort">
|
2218
|
+
<ANCHOR id="g-array-sort-with-data" href="glib/glib-Arrays.html#g-array-sort-with-data">
|
2219
|
+
<ANCHOR id="g-array-index" href="glib/glib-Arrays.html#g-array-index">
|
2220
|
+
<ANCHOR id="g-array-set-size" href="glib/glib-Arrays.html#g-array-set-size">
|
2221
|
+
<ANCHOR id="g-array-set-clear-func" href="glib/glib-Arrays.html#g-array-set-clear-func">
|
2222
|
+
<ANCHOR id="g-array-free" href="glib/glib-Arrays.html#g-array-free">
|
2223
|
+
<ANCHOR id="glib-Arrays.other_details" href="glib/glib-Arrays.html#glib-Arrays.other_details">
|
2224
|
+
<ANCHOR id="GArray" href="glib/glib-Arrays.html#GArray">
|
2225
|
+
<ANCHOR id="glib-Pointer-Arrays" href="glib/glib-Pointer-Arrays.html">
|
2226
|
+
<ANCHOR id="glib-Pointer-Arrays.functions" href="glib/glib-Pointer-Arrays.html#glib-Pointer-Arrays.functions">
|
2227
|
+
<ANCHOR id="glib-Pointer-Arrays.other" href="glib/glib-Pointer-Arrays.html#glib-Pointer-Arrays.other">
|
2228
|
+
<ANCHOR id="glib-Pointer-Arrays.includes" href="glib/glib-Pointer-Arrays.html#glib-Pointer-Arrays.includes">
|
2229
|
+
<ANCHOR id="glib-Pointer-Arrays.description" href="glib/glib-Pointer-Arrays.html#glib-Pointer-Arrays.description">
|
2230
|
+
<ANCHOR id="glib-Pointer-Arrays.functions_details" href="glib/glib-Pointer-Arrays.html#glib-Pointer-Arrays.functions_details">
|
2231
|
+
<ANCHOR id="g-ptr-array-new" href="glib/glib-Pointer-Arrays.html#g-ptr-array-new">
|
2232
|
+
<ANCHOR id="g-ptr-array-sized-new" href="glib/glib-Pointer-Arrays.html#g-ptr-array-sized-new">
|
2233
|
+
<ANCHOR id="g-ptr-array-new-with-free-func" href="glib/glib-Pointer-Arrays.html#g-ptr-array-new-with-free-func">
|
2234
|
+
<ANCHOR id="g-ptr-array-new-full" href="glib/glib-Pointer-Arrays.html#g-ptr-array-new-full">
|
2235
|
+
<ANCHOR id="g-ptr-array-set-free-func" href="glib/glib-Pointer-Arrays.html#g-ptr-array-set-free-func">
|
2236
|
+
<ANCHOR id="g-ptr-array-ref" href="glib/glib-Pointer-Arrays.html#g-ptr-array-ref">
|
2237
|
+
<ANCHOR id="g-ptr-array-unref" href="glib/glib-Pointer-Arrays.html#g-ptr-array-unref">
|
2238
|
+
<ANCHOR id="g-ptr-array-add" href="glib/glib-Pointer-Arrays.html#g-ptr-array-add">
|
2239
|
+
<ANCHOR id="g-ptr-array-insert" href="glib/glib-Pointer-Arrays.html#g-ptr-array-insert">
|
2240
|
+
<ANCHOR id="g-ptr-array-remove" href="glib/glib-Pointer-Arrays.html#g-ptr-array-remove">
|
2241
|
+
<ANCHOR id="g-ptr-array-remove-index" href="glib/glib-Pointer-Arrays.html#g-ptr-array-remove-index">
|
2242
|
+
<ANCHOR id="g-ptr-array-remove-fast" href="glib/glib-Pointer-Arrays.html#g-ptr-array-remove-fast">
|
2243
|
+
<ANCHOR id="g-ptr-array-remove-index-fast" href="glib/glib-Pointer-Arrays.html#g-ptr-array-remove-index-fast">
|
2244
|
+
<ANCHOR id="g-ptr-array-remove-range" href="glib/glib-Pointer-Arrays.html#g-ptr-array-remove-range">
|
2245
|
+
<ANCHOR id="g-ptr-array-sort" href="glib/glib-Pointer-Arrays.html#g-ptr-array-sort">
|
2246
|
+
<ANCHOR id="g-ptr-array-sort-with-data" href="glib/glib-Pointer-Arrays.html#g-ptr-array-sort-with-data">
|
2247
|
+
<ANCHOR id="g-ptr-array-set-size" href="glib/glib-Pointer-Arrays.html#g-ptr-array-set-size">
|
2248
|
+
<ANCHOR id="g-ptr-array-index" href="glib/glib-Pointer-Arrays.html#g-ptr-array-index">
|
2249
|
+
<ANCHOR id="g-ptr-array-free" href="glib/glib-Pointer-Arrays.html#g-ptr-array-free">
|
2250
|
+
<ANCHOR id="g-ptr-array-foreach" href="glib/glib-Pointer-Arrays.html#g-ptr-array-foreach">
|
2251
|
+
<ANCHOR id="glib-Pointer-Arrays.other_details" href="glib/glib-Pointer-Arrays.html#glib-Pointer-Arrays.other_details">
|
2252
|
+
<ANCHOR id="GPtrArray" href="glib/glib-Pointer-Arrays.html#GPtrArray">
|
2253
|
+
<ANCHOR id="glib-Byte-Arrays" href="glib/glib-Byte-Arrays.html">
|
2254
|
+
<ANCHOR id="glib-Byte-Arrays.functions" href="glib/glib-Byte-Arrays.html#glib-Byte-Arrays.functions">
|
2255
|
+
<ANCHOR id="glib-Byte-Arrays.other" href="glib/glib-Byte-Arrays.html#glib-Byte-Arrays.other">
|
2256
|
+
<ANCHOR id="glib-Byte-Arrays.includes" href="glib/glib-Byte-Arrays.html#glib-Byte-Arrays.includes">
|
2257
|
+
<ANCHOR id="glib-Byte-Arrays.description" href="glib/glib-Byte-Arrays.html#glib-Byte-Arrays.description">
|
2258
|
+
<ANCHOR id="glib-Byte-Arrays.functions_details" href="glib/glib-Byte-Arrays.html#glib-Byte-Arrays.functions_details">
|
2259
|
+
<ANCHOR id="g-byte-array-new" href="glib/glib-Byte-Arrays.html#g-byte-array-new">
|
2260
|
+
<ANCHOR id="g-byte-array-new-take" href="glib/glib-Byte-Arrays.html#g-byte-array-new-take">
|
2261
|
+
<ANCHOR id="g-byte-array-sized-new" href="glib/glib-Byte-Arrays.html#g-byte-array-sized-new">
|
2262
|
+
<ANCHOR id="g-byte-array-ref" href="glib/glib-Byte-Arrays.html#g-byte-array-ref">
|
2263
|
+
<ANCHOR id="g-byte-array-unref" href="glib/glib-Byte-Arrays.html#g-byte-array-unref">
|
2264
|
+
<ANCHOR id="g-byte-array-append" href="glib/glib-Byte-Arrays.html#g-byte-array-append">
|
2265
|
+
<ANCHOR id="g-byte-array-prepend" href="glib/glib-Byte-Arrays.html#g-byte-array-prepend">
|
2266
|
+
<ANCHOR id="g-byte-array-remove-index" href="glib/glib-Byte-Arrays.html#g-byte-array-remove-index">
|
2267
|
+
<ANCHOR id="g-byte-array-remove-index-fast" href="glib/glib-Byte-Arrays.html#g-byte-array-remove-index-fast">
|
2268
|
+
<ANCHOR id="g-byte-array-remove-range" href="glib/glib-Byte-Arrays.html#g-byte-array-remove-range">
|
2269
|
+
<ANCHOR id="g-byte-array-sort" href="glib/glib-Byte-Arrays.html#g-byte-array-sort">
|
2270
|
+
<ANCHOR id="g-byte-array-sort-with-data" href="glib/glib-Byte-Arrays.html#g-byte-array-sort-with-data">
|
2271
|
+
<ANCHOR id="g-byte-array-set-size" href="glib/glib-Byte-Arrays.html#g-byte-array-set-size">
|
2272
|
+
<ANCHOR id="g-byte-array-free" href="glib/glib-Byte-Arrays.html#g-byte-array-free">
|
2273
|
+
<ANCHOR id="g-byte-array-free-to-bytes" href="glib/glib-Byte-Arrays.html#g-byte-array-free-to-bytes">
|
2274
|
+
<ANCHOR id="g-bytes-new" href="glib/glib-Byte-Arrays.html#g-bytes-new">
|
2275
|
+
<ANCHOR id="g-bytes-new-take" href="glib/glib-Byte-Arrays.html#g-bytes-new-take">
|
2276
|
+
<ANCHOR id="g-bytes-new-static" href="glib/glib-Byte-Arrays.html#g-bytes-new-static">
|
2277
|
+
<ANCHOR id="g-bytes-new-with-free-func" href="glib/glib-Byte-Arrays.html#g-bytes-new-with-free-func">
|
2278
|
+
<ANCHOR id="g-bytes-new-from-bytes" href="glib/glib-Byte-Arrays.html#g-bytes-new-from-bytes">
|
2279
|
+
<ANCHOR id="g-bytes-get-data" href="glib/glib-Byte-Arrays.html#g-bytes-get-data">
|
2280
|
+
<ANCHOR id="g-bytes-get-size" href="glib/glib-Byte-Arrays.html#g-bytes-get-size">
|
2281
|
+
<ANCHOR id="g-bytes-hash" href="glib/glib-Byte-Arrays.html#g-bytes-hash">
|
2282
|
+
<ANCHOR id="g-bytes-equal" href="glib/glib-Byte-Arrays.html#g-bytes-equal">
|
2283
|
+
<ANCHOR id="g-bytes-compare" href="glib/glib-Byte-Arrays.html#g-bytes-compare">
|
2284
|
+
<ANCHOR id="g-bytes-ref" href="glib/glib-Byte-Arrays.html#g-bytes-ref">
|
2285
|
+
<ANCHOR id="g-bytes-unref" href="glib/glib-Byte-Arrays.html#g-bytes-unref">
|
2286
|
+
<ANCHOR id="g-bytes-unref-to-data" href="glib/glib-Byte-Arrays.html#g-bytes-unref-to-data">
|
2287
|
+
<ANCHOR id="g-bytes-unref-to-array" href="glib/glib-Byte-Arrays.html#g-bytes-unref-to-array">
|
2288
|
+
<ANCHOR id="glib-Byte-Arrays.other_details" href="glib/glib-Byte-Arrays.html#glib-Byte-Arrays.other_details">
|
2289
|
+
<ANCHOR id="GByteArray" href="glib/glib-Byte-Arrays.html#GByteArray">
|
2290
|
+
<ANCHOR id="GBytes" href="glib/glib-Byte-Arrays.html#GBytes">
|
2291
|
+
<ANCHOR id="glib-Balanced-Binary-Trees" href="glib/glib-Balanced-Binary-Trees.html">
|
2292
|
+
<ANCHOR id="glib-Balanced-Binary-Trees.functions" href="glib/glib-Balanced-Binary-Trees.html#glib-Balanced-Binary-Trees.functions">
|
2293
|
+
<ANCHOR id="glib-Balanced-Binary-Trees.other" href="glib/glib-Balanced-Binary-Trees.html#glib-Balanced-Binary-Trees.other">
|
2294
|
+
<ANCHOR id="glib-Balanced-Binary-Trees.includes" href="glib/glib-Balanced-Binary-Trees.html#glib-Balanced-Binary-Trees.includes">
|
2295
|
+
<ANCHOR id="glib-Balanced-Binary-Trees.description" href="glib/glib-Balanced-Binary-Trees.html#glib-Balanced-Binary-Trees.description">
|
2296
|
+
<ANCHOR id="glib-Balanced-Binary-Trees.functions_details" href="glib/glib-Balanced-Binary-Trees.html#glib-Balanced-Binary-Trees.functions_details">
|
2297
|
+
<ANCHOR id="g-tree-new" href="glib/glib-Balanced-Binary-Trees.html#g-tree-new">
|
2298
|
+
<ANCHOR id="g-tree-ref" href="glib/glib-Balanced-Binary-Trees.html#g-tree-ref">
|
2299
|
+
<ANCHOR id="g-tree-unref" href="glib/glib-Balanced-Binary-Trees.html#g-tree-unref">
|
2300
|
+
<ANCHOR id="g-tree-new-with-data" href="glib/glib-Balanced-Binary-Trees.html#g-tree-new-with-data">
|
2301
|
+
<ANCHOR id="g-tree-new-full" href="glib/glib-Balanced-Binary-Trees.html#g-tree-new-full">
|
2302
|
+
<ANCHOR id="g-tree-insert" href="glib/glib-Balanced-Binary-Trees.html#g-tree-insert">
|
2303
|
+
<ANCHOR id="g-tree-replace" href="glib/glib-Balanced-Binary-Trees.html#g-tree-replace">
|
2304
|
+
<ANCHOR id="g-tree-nnodes" href="glib/glib-Balanced-Binary-Trees.html#g-tree-nnodes">
|
2305
|
+
<ANCHOR id="g-tree-height" href="glib/glib-Balanced-Binary-Trees.html#g-tree-height">
|
2306
|
+
<ANCHOR id="g-tree-lookup" href="glib/glib-Balanced-Binary-Trees.html#g-tree-lookup">
|
2307
|
+
<ANCHOR id="g-tree-lookup-extended" href="glib/glib-Balanced-Binary-Trees.html#g-tree-lookup-extended">
|
2308
|
+
<ANCHOR id="g-tree-foreach" href="glib/glib-Balanced-Binary-Trees.html#g-tree-foreach">
|
2309
|
+
<ANCHOR id="g-tree-traverse" href="glib/glib-Balanced-Binary-Trees.html#g-tree-traverse">
|
2310
|
+
<ANCHOR id="GTraverseFunc" href="glib/glib-Balanced-Binary-Trees.html#GTraverseFunc">
|
2311
|
+
<ANCHOR id="g-tree-search" href="glib/glib-Balanced-Binary-Trees.html#g-tree-search">
|
2312
|
+
<ANCHOR id="g-tree-remove" href="glib/glib-Balanced-Binary-Trees.html#g-tree-remove">
|
2313
|
+
<ANCHOR id="g-tree-steal" href="glib/glib-Balanced-Binary-Trees.html#g-tree-steal">
|
2314
|
+
<ANCHOR id="g-tree-destroy" href="glib/glib-Balanced-Binary-Trees.html#g-tree-destroy">
|
2315
|
+
<ANCHOR id="glib-Balanced-Binary-Trees.other_details" href="glib/glib-Balanced-Binary-Trees.html#glib-Balanced-Binary-Trees.other_details">
|
2316
|
+
<ANCHOR id="GTree" href="glib/glib-Balanced-Binary-Trees.html#GTree">
|
2317
|
+
<ANCHOR id="glib-N-ary-Trees" href="glib/glib-N-ary-Trees.html">
|
2318
|
+
<ANCHOR id="glib-N-ary-Trees.functions" href="glib/glib-N-ary-Trees.html#glib-N-ary-Trees.functions">
|
2319
|
+
<ANCHOR id="glib-N-ary-Trees.other" href="glib/glib-N-ary-Trees.html#glib-N-ary-Trees.other">
|
2320
|
+
<ANCHOR id="glib-N-ary-Trees.includes" href="glib/glib-N-ary-Trees.html#glib-N-ary-Trees.includes">
|
2321
|
+
<ANCHOR id="glib-N-ary-Trees.description" href="glib/glib-N-ary-Trees.html#glib-N-ary-Trees.description">
|
2322
|
+
<ANCHOR id="glib-N-ary-Trees.functions_details" href="glib/glib-N-ary-Trees.html#glib-N-ary-Trees.functions_details">
|
2323
|
+
<ANCHOR id="g-node-new" href="glib/glib-N-ary-Trees.html#g-node-new">
|
2324
|
+
<ANCHOR id="g-node-copy" href="glib/glib-N-ary-Trees.html#g-node-copy">
|
2325
|
+
<ANCHOR id="GCopyFunc" href="glib/glib-N-ary-Trees.html#GCopyFunc">
|
2326
|
+
<ANCHOR id="g-node-copy-deep" href="glib/glib-N-ary-Trees.html#g-node-copy-deep">
|
2327
|
+
<ANCHOR id="g-node-insert" href="glib/glib-N-ary-Trees.html#g-node-insert">
|
2328
|
+
<ANCHOR id="g-node-insert-before" href="glib/glib-N-ary-Trees.html#g-node-insert-before">
|
2329
|
+
<ANCHOR id="g-node-insert-after" href="glib/glib-N-ary-Trees.html#g-node-insert-after">
|
2330
|
+
<ANCHOR id="g-node-append" href="glib/glib-N-ary-Trees.html#g-node-append">
|
2331
|
+
<ANCHOR id="g-node-prepend" href="glib/glib-N-ary-Trees.html#g-node-prepend">
|
2332
|
+
<ANCHOR id="g-node-insert-data" href="glib/glib-N-ary-Trees.html#g-node-insert-data">
|
2333
|
+
<ANCHOR id="g-node-insert-data-after" href="glib/glib-N-ary-Trees.html#g-node-insert-data-after">
|
2334
|
+
<ANCHOR id="g-node-insert-data-before" href="glib/glib-N-ary-Trees.html#g-node-insert-data-before">
|
2335
|
+
<ANCHOR id="g-node-append-data" href="glib/glib-N-ary-Trees.html#g-node-append-data">
|
2336
|
+
<ANCHOR id="g-node-prepend-data" href="glib/glib-N-ary-Trees.html#g-node-prepend-data">
|
2337
|
+
<ANCHOR id="g-node-reverse-children" href="glib/glib-N-ary-Trees.html#g-node-reverse-children">
|
2338
|
+
<ANCHOR id="g-node-traverse" href="glib/glib-N-ary-Trees.html#g-node-traverse">
|
2339
|
+
<ANCHOR id="GNodeTraverseFunc" href="glib/glib-N-ary-Trees.html#GNodeTraverseFunc">
|
2340
|
+
<ANCHOR id="g-node-children-foreach" href="glib/glib-N-ary-Trees.html#g-node-children-foreach">
|
2341
|
+
<ANCHOR id="GNodeForeachFunc" href="glib/glib-N-ary-Trees.html#GNodeForeachFunc">
|
2342
|
+
<ANCHOR id="g-node-get-root" href="glib/glib-N-ary-Trees.html#g-node-get-root">
|
2343
|
+
<ANCHOR id="g-node-find" href="glib/glib-N-ary-Trees.html#g-node-find">
|
2344
|
+
<ANCHOR id="g-node-find-child" href="glib/glib-N-ary-Trees.html#g-node-find-child">
|
2345
|
+
<ANCHOR id="g-node-child-index" href="glib/glib-N-ary-Trees.html#g-node-child-index">
|
2346
|
+
<ANCHOR id="g-node-child-position" href="glib/glib-N-ary-Trees.html#g-node-child-position">
|
2347
|
+
<ANCHOR id="g-node-first-child" href="glib/glib-N-ary-Trees.html#g-node-first-child">
|
2348
|
+
<ANCHOR id="g-node-last-child" href="glib/glib-N-ary-Trees.html#g-node-last-child">
|
2349
|
+
<ANCHOR id="g-node-nth-child" href="glib/glib-N-ary-Trees.html#g-node-nth-child">
|
2350
|
+
<ANCHOR id="g-node-first-sibling" href="glib/glib-N-ary-Trees.html#g-node-first-sibling">
|
2351
|
+
<ANCHOR id="g-node-next-sibling" href="glib/glib-N-ary-Trees.html#g-node-next-sibling">
|
2352
|
+
<ANCHOR id="g-node-prev-sibling" href="glib/glib-N-ary-Trees.html#g-node-prev-sibling">
|
2353
|
+
<ANCHOR id="g-node-last-sibling" href="glib/glib-N-ary-Trees.html#g-node-last-sibling">
|
2354
|
+
<ANCHOR id="G-NODE-IS-LEAF:CAPS" href="glib/glib-N-ary-Trees.html#G-NODE-IS-LEAF:CAPS">
|
2355
|
+
<ANCHOR id="G-NODE-IS-ROOT:CAPS" href="glib/glib-N-ary-Trees.html#G-NODE-IS-ROOT:CAPS">
|
2356
|
+
<ANCHOR id="g-node-depth" href="glib/glib-N-ary-Trees.html#g-node-depth">
|
2357
|
+
<ANCHOR id="g-node-n-nodes" href="glib/glib-N-ary-Trees.html#g-node-n-nodes">
|
2358
|
+
<ANCHOR id="g-node-n-children" href="glib/glib-N-ary-Trees.html#g-node-n-children">
|
2359
|
+
<ANCHOR id="g-node-is-ancestor" href="glib/glib-N-ary-Trees.html#g-node-is-ancestor">
|
2360
|
+
<ANCHOR id="g-node-max-height" href="glib/glib-N-ary-Trees.html#g-node-max-height">
|
2361
|
+
<ANCHOR id="g-node-unlink" href="glib/glib-N-ary-Trees.html#g-node-unlink">
|
2362
|
+
<ANCHOR id="g-node-destroy" href="glib/glib-N-ary-Trees.html#g-node-destroy">
|
2363
|
+
<ANCHOR id="glib-N-ary-Trees.other_details" href="glib/glib-N-ary-Trees.html#glib-N-ary-Trees.other_details">
|
2364
|
+
<ANCHOR id="GNode" href="glib/glib-N-ary-Trees.html#GNode">
|
2365
|
+
<ANCHOR id="GTraverseType" href="glib/glib-N-ary-Trees.html#GTraverseType">
|
2366
|
+
<ANCHOR id="GTraverseFlags" href="glib/glib-N-ary-Trees.html#GTraverseFlags">
|
2367
|
+
<ANCHOR id="glib-Quarks" href="glib/glib-Quarks.html">
|
2368
|
+
<ANCHOR id="glib-Quarks.functions" href="glib/glib-Quarks.html#glib-Quarks.functions">
|
2369
|
+
<ANCHOR id="glib-Quarks.other" href="glib/glib-Quarks.html#glib-Quarks.other">
|
2370
|
+
<ANCHOR id="glib-Quarks.includes" href="glib/glib-Quarks.html#glib-Quarks.includes">
|
2371
|
+
<ANCHOR id="glib-Quarks.description" href="glib/glib-Quarks.html#glib-Quarks.description">
|
2372
|
+
<ANCHOR id="glib-Quarks.functions_details" href="glib/glib-Quarks.html#glib-Quarks.functions_details">
|
2373
|
+
<ANCHOR id="G-DEFINE-QUARK:CAPS" href="glib/glib-Quarks.html#G-DEFINE-QUARK:CAPS">
|
2374
|
+
<ANCHOR id="g-quark-from-string" href="glib/glib-Quarks.html#g-quark-from-string">
|
2375
|
+
<ANCHOR id="g-quark-from-static-string" href="glib/glib-Quarks.html#g-quark-from-static-string">
|
2376
|
+
<ANCHOR id="g-quark-to-string" href="glib/glib-Quarks.html#g-quark-to-string">
|
2377
|
+
<ANCHOR id="g-quark-try-string" href="glib/glib-Quarks.html#g-quark-try-string">
|
2378
|
+
<ANCHOR id="g-intern-string" href="glib/glib-Quarks.html#g-intern-string">
|
2379
|
+
<ANCHOR id="g-intern-static-string" href="glib/glib-Quarks.html#g-intern-static-string">
|
2380
|
+
<ANCHOR id="glib-Quarks.other_details" href="glib/glib-Quarks.html#glib-Quarks.other_details">
|
2381
|
+
<ANCHOR id="GQuark" href="glib/glib-Quarks.html#GQuark">
|
2382
|
+
<ANCHOR id="glib-Keyed-Data-Lists" href="glib/glib-Keyed-Data-Lists.html">
|
2383
|
+
<ANCHOR id="glib-Keyed-Data-Lists.functions" href="glib/glib-Keyed-Data-Lists.html#glib-Keyed-Data-Lists.functions">
|
2384
|
+
<ANCHOR id="glib-Keyed-Data-Lists.other" href="glib/glib-Keyed-Data-Lists.html#glib-Keyed-Data-Lists.other">
|
2385
|
+
<ANCHOR id="glib-Keyed-Data-Lists.includes" href="glib/glib-Keyed-Data-Lists.html#glib-Keyed-Data-Lists.includes">
|
2386
|
+
<ANCHOR id="glib-Keyed-Data-Lists.description" href="glib/glib-Keyed-Data-Lists.html#glib-Keyed-Data-Lists.description">
|
2387
|
+
<ANCHOR id="glib-Keyed-Data-Lists.functions_details" href="glib/glib-Keyed-Data-Lists.html#glib-Keyed-Data-Lists.functions_details">
|
2388
|
+
<ANCHOR id="g-datalist-init" href="glib/glib-Keyed-Data-Lists.html#g-datalist-init">
|
2389
|
+
<ANCHOR id="g-datalist-id-set-data" href="glib/glib-Keyed-Data-Lists.html#g-datalist-id-set-data">
|
2390
|
+
<ANCHOR id="g-datalist-id-set-data-full" href="glib/glib-Keyed-Data-Lists.html#g-datalist-id-set-data-full">
|
2391
|
+
<ANCHOR id="g-datalist-id-get-data" href="glib/glib-Keyed-Data-Lists.html#g-datalist-id-get-data">
|
2392
|
+
<ANCHOR id="g-datalist-id-remove-data" href="glib/glib-Keyed-Data-Lists.html#g-datalist-id-remove-data">
|
2393
|
+
<ANCHOR id="g-datalist-id-remove-no-notify" href="glib/glib-Keyed-Data-Lists.html#g-datalist-id-remove-no-notify">
|
2394
|
+
<ANCHOR id="GDuplicateFunc" href="glib/glib-Keyed-Data-Lists.html#GDuplicateFunc">
|
2395
|
+
<ANCHOR id="g-datalist-id-dup-data" href="glib/glib-Keyed-Data-Lists.html#g-datalist-id-dup-data">
|
2396
|
+
<ANCHOR id="g-datalist-id-replace-data" href="glib/glib-Keyed-Data-Lists.html#g-datalist-id-replace-data">
|
2397
|
+
<ANCHOR id="g-datalist-set-data" href="glib/glib-Keyed-Data-Lists.html#g-datalist-set-data">
|
2398
|
+
<ANCHOR id="g-datalist-set-data-full" href="glib/glib-Keyed-Data-Lists.html#g-datalist-set-data-full">
|
2399
|
+
<ANCHOR id="g-datalist-get-data" href="glib/glib-Keyed-Data-Lists.html#g-datalist-get-data">
|
2400
|
+
<ANCHOR id="g-datalist-remove-data" href="glib/glib-Keyed-Data-Lists.html#g-datalist-remove-data">
|
2401
|
+
<ANCHOR id="g-datalist-remove-no-notify" href="glib/glib-Keyed-Data-Lists.html#g-datalist-remove-no-notify">
|
2402
|
+
<ANCHOR id="g-datalist-foreach" href="glib/glib-Keyed-Data-Lists.html#g-datalist-foreach">
|
2403
|
+
<ANCHOR id="g-datalist-clear" href="glib/glib-Keyed-Data-Lists.html#g-datalist-clear">
|
2404
|
+
<ANCHOR id="g-datalist-set-flags" href="glib/glib-Keyed-Data-Lists.html#g-datalist-set-flags">
|
2405
|
+
<ANCHOR id="g-datalist-unset-flags" href="glib/glib-Keyed-Data-Lists.html#g-datalist-unset-flags">
|
2406
|
+
<ANCHOR id="g-datalist-get-flags" href="glib/glib-Keyed-Data-Lists.html#g-datalist-get-flags">
|
2407
|
+
<ANCHOR id="glib-Keyed-Data-Lists.other_details" href="glib/glib-Keyed-Data-Lists.html#glib-Keyed-Data-Lists.other_details">
|
2408
|
+
<ANCHOR id="GData" href="glib/glib-Keyed-Data-Lists.html#GData">
|
2409
|
+
<ANCHOR id="G-DATALIST-FLAGS-MASK:CAPS" href="glib/glib-Keyed-Data-Lists.html#G-DATALIST-FLAGS-MASK:CAPS">
|
2410
|
+
<ANCHOR id="glib-Datasets" href="glib/glib-Datasets.html">
|
2411
|
+
<ANCHOR id="glib-Datasets.functions" href="glib/glib-Datasets.html#glib-Datasets.functions">
|
2412
|
+
<ANCHOR id="glib-Datasets.includes" href="glib/glib-Datasets.html#glib-Datasets.includes">
|
2413
|
+
<ANCHOR id="glib-Datasets.description" href="glib/glib-Datasets.html#glib-Datasets.description">
|
2414
|
+
<ANCHOR id="glib-Datasets.functions_details" href="glib/glib-Datasets.html#glib-Datasets.functions_details">
|
2415
|
+
<ANCHOR id="g-dataset-id-set-data" href="glib/glib-Datasets.html#g-dataset-id-set-data">
|
2416
|
+
<ANCHOR id="g-dataset-id-set-data-full" href="glib/glib-Datasets.html#g-dataset-id-set-data-full">
|
2417
|
+
<ANCHOR id="GDestroyNotify" href="glib/glib-Datasets.html#GDestroyNotify">
|
2418
|
+
<ANCHOR id="g-dataset-id-get-data" href="glib/glib-Datasets.html#g-dataset-id-get-data">
|
2419
|
+
<ANCHOR id="g-dataset-id-remove-data" href="glib/glib-Datasets.html#g-dataset-id-remove-data">
|
2420
|
+
<ANCHOR id="g-dataset-id-remove-no-notify" href="glib/glib-Datasets.html#g-dataset-id-remove-no-notify">
|
2421
|
+
<ANCHOR id="g-dataset-set-data" href="glib/glib-Datasets.html#g-dataset-set-data">
|
2422
|
+
<ANCHOR id="g-dataset-set-data-full" href="glib/glib-Datasets.html#g-dataset-set-data-full">
|
2423
|
+
<ANCHOR id="g-dataset-get-data" href="glib/glib-Datasets.html#g-dataset-get-data">
|
2424
|
+
<ANCHOR id="g-dataset-remove-data" href="glib/glib-Datasets.html#g-dataset-remove-data">
|
2425
|
+
<ANCHOR id="g-dataset-remove-no-notify" href="glib/glib-Datasets.html#g-dataset-remove-no-notify">
|
2426
|
+
<ANCHOR id="g-dataset-foreach" href="glib/glib-Datasets.html#g-dataset-foreach">
|
2427
|
+
<ANCHOR id="GDataForeachFunc" href="glib/glib-Datasets.html#GDataForeachFunc">
|
2428
|
+
<ANCHOR id="g-dataset-destroy" href="glib/glib-Datasets.html#g-dataset-destroy">
|
2429
|
+
<ANCHOR id="glib-Datasets.other_details" href="glib/glib-Datasets.html#glib-Datasets.other_details">
|
2430
|
+
<ANCHOR id="glib-GVariantType" href="glib/glib-GVariantType.html">
|
2431
|
+
<ANCHOR id="glib-GVariantType.functions" href="glib/glib-GVariantType.html#glib-GVariantType.functions">
|
2432
|
+
<ANCHOR id="glib-GVariantType.other" href="glib/glib-GVariantType.html#glib-GVariantType.other">
|
2433
|
+
<ANCHOR id="glib-GVariantType.includes" href="glib/glib-GVariantType.html#glib-GVariantType.includes">
|
2434
|
+
<ANCHOR id="glib-GVariantType.description" href="glib/glib-GVariantType.html#glib-GVariantType.description">
|
2435
|
+
<ANCHOR id="glib-GVariantType.functions_details" href="glib/glib-GVariantType.html#glib-GVariantType.functions_details">
|
2436
|
+
<ANCHOR id="G-VARIANT-TYPE-BOOLEAN:CAPS" href="glib/glib-GVariantType.html#G-VARIANT-TYPE-BOOLEAN:CAPS">
|
2437
|
+
<ANCHOR id="G-VARIANT-TYPE-BYTE:CAPS" href="glib/glib-GVariantType.html#G-VARIANT-TYPE-BYTE:CAPS">
|
2438
|
+
<ANCHOR id="G-VARIANT-TYPE-INT16:CAPS" href="glib/glib-GVariantType.html#G-VARIANT-TYPE-INT16:CAPS">
|
2439
|
+
<ANCHOR id="G-VARIANT-TYPE-UINT16:CAPS" href="glib/glib-GVariantType.html#G-VARIANT-TYPE-UINT16:CAPS">
|
2440
|
+
<ANCHOR id="G-VARIANT-TYPE-INT32:CAPS" href="glib/glib-GVariantType.html#G-VARIANT-TYPE-INT32:CAPS">
|
2441
|
+
<ANCHOR id="G-VARIANT-TYPE-UINT32:CAPS" href="glib/glib-GVariantType.html#G-VARIANT-TYPE-UINT32:CAPS">
|
2442
|
+
<ANCHOR id="G-VARIANT-TYPE-INT64:CAPS" href="glib/glib-GVariantType.html#G-VARIANT-TYPE-INT64:CAPS">
|
2443
|
+
<ANCHOR id="G-VARIANT-TYPE-UINT64:CAPS" href="glib/glib-GVariantType.html#G-VARIANT-TYPE-UINT64:CAPS">
|
2444
|
+
<ANCHOR id="G-VARIANT-TYPE-HANDLE:CAPS" href="glib/glib-GVariantType.html#G-VARIANT-TYPE-HANDLE:CAPS">
|
2445
|
+
<ANCHOR id="G-VARIANT-TYPE-DOUBLE:CAPS" href="glib/glib-GVariantType.html#G-VARIANT-TYPE-DOUBLE:CAPS">
|
2446
|
+
<ANCHOR id="G-VARIANT-TYPE-STRING:CAPS" href="glib/glib-GVariantType.html#G-VARIANT-TYPE-STRING:CAPS">
|
2447
|
+
<ANCHOR id="G-VARIANT-TYPE-OBJECT-PATH:CAPS" href="glib/glib-GVariantType.html#G-VARIANT-TYPE-OBJECT-PATH:CAPS">
|
2448
|
+
<ANCHOR id="G-VARIANT-TYPE-SIGNATURE:CAPS" href="glib/glib-GVariantType.html#G-VARIANT-TYPE-SIGNATURE:CAPS">
|
2449
|
+
<ANCHOR id="G-VARIANT-TYPE-VARIANT:CAPS" href="glib/glib-GVariantType.html#G-VARIANT-TYPE-VARIANT:CAPS">
|
2450
|
+
<ANCHOR id="G-VARIANT-TYPE-ANY:CAPS" href="glib/glib-GVariantType.html#G-VARIANT-TYPE-ANY:CAPS">
|
2451
|
+
<ANCHOR id="G-VARIANT-TYPE-BASIC:CAPS" href="glib/glib-GVariantType.html#G-VARIANT-TYPE-BASIC:CAPS">
|
2452
|
+
<ANCHOR id="G-VARIANT-TYPE-MAYBE:CAPS" href="glib/glib-GVariantType.html#G-VARIANT-TYPE-MAYBE:CAPS">
|
2453
|
+
<ANCHOR id="G-VARIANT-TYPE-ARRAY:CAPS" href="glib/glib-GVariantType.html#G-VARIANT-TYPE-ARRAY:CAPS">
|
2454
|
+
<ANCHOR id="G-VARIANT-TYPE-TUPLE:CAPS" href="glib/glib-GVariantType.html#G-VARIANT-TYPE-TUPLE:CAPS">
|
2455
|
+
<ANCHOR id="G-VARIANT-TYPE-UNIT:CAPS" href="glib/glib-GVariantType.html#G-VARIANT-TYPE-UNIT:CAPS">
|
2456
|
+
<ANCHOR id="G-VARIANT-TYPE-DICT-ENTRY:CAPS" href="glib/glib-GVariantType.html#G-VARIANT-TYPE-DICT-ENTRY:CAPS">
|
2457
|
+
<ANCHOR id="G-VARIANT-TYPE-DICTIONARY:CAPS" href="glib/glib-GVariantType.html#G-VARIANT-TYPE-DICTIONARY:CAPS">
|
2458
|
+
<ANCHOR id="G-VARIANT-TYPE-STRING-ARRAY:CAPS" href="glib/glib-GVariantType.html#G-VARIANT-TYPE-STRING-ARRAY:CAPS">
|
2459
|
+
<ANCHOR id="G-VARIANT-TYPE-OBJECT-PATH-ARRAY:CAPS" href="glib/glib-GVariantType.html#G-VARIANT-TYPE-OBJECT-PATH-ARRAY:CAPS">
|
2460
|
+
<ANCHOR id="G-VARIANT-TYPE-BYTESTRING:CAPS" href="glib/glib-GVariantType.html#G-VARIANT-TYPE-BYTESTRING:CAPS">
|
2461
|
+
<ANCHOR id="G-VARIANT-TYPE-BYTESTRING-ARRAY:CAPS" href="glib/glib-GVariantType.html#G-VARIANT-TYPE-BYTESTRING-ARRAY:CAPS">
|
2462
|
+
<ANCHOR id="G-VARIANT-TYPE-VARDICT:CAPS" href="glib/glib-GVariantType.html#G-VARIANT-TYPE-VARDICT:CAPS">
|
2463
|
+
<ANCHOR id="G-VARIANT-TYPE:CAPS" href="glib/glib-GVariantType.html#G-VARIANT-TYPE:CAPS">
|
2464
|
+
<ANCHOR id="g-variant-type-free" href="glib/glib-GVariantType.html#g-variant-type-free">
|
2465
|
+
<ANCHOR id="g-variant-type-copy" href="glib/glib-GVariantType.html#g-variant-type-copy">
|
2466
|
+
<ANCHOR id="g-variant-type-new" href="glib/glib-GVariantType.html#g-variant-type-new">
|
2467
|
+
<ANCHOR id="g-variant-type-string-is-valid" href="glib/glib-GVariantType.html#g-variant-type-string-is-valid">
|
2468
|
+
<ANCHOR id="g-variant-type-string-scan" href="glib/glib-GVariantType.html#g-variant-type-string-scan">
|
2469
|
+
<ANCHOR id="g-variant-type-get-string-length" href="glib/glib-GVariantType.html#g-variant-type-get-string-length">
|
2470
|
+
<ANCHOR id="g-variant-type-peek-string" href="glib/glib-GVariantType.html#g-variant-type-peek-string">
|
2471
|
+
<ANCHOR id="g-variant-type-dup-string" href="glib/glib-GVariantType.html#g-variant-type-dup-string">
|
2472
|
+
<ANCHOR id="g-variant-type-is-definite" href="glib/glib-GVariantType.html#g-variant-type-is-definite">
|
2473
|
+
<ANCHOR id="g-variant-type-is-container" href="glib/glib-GVariantType.html#g-variant-type-is-container">
|
2474
|
+
<ANCHOR id="g-variant-type-is-basic" href="glib/glib-GVariantType.html#g-variant-type-is-basic">
|
2475
|
+
<ANCHOR id="g-variant-type-is-maybe" href="glib/glib-GVariantType.html#g-variant-type-is-maybe">
|
2476
|
+
<ANCHOR id="g-variant-type-is-array" href="glib/glib-GVariantType.html#g-variant-type-is-array">
|
2477
|
+
<ANCHOR id="g-variant-type-is-tuple" href="glib/glib-GVariantType.html#g-variant-type-is-tuple">
|
2478
|
+
<ANCHOR id="g-variant-type-is-dict-entry" href="glib/glib-GVariantType.html#g-variant-type-is-dict-entry">
|
2479
|
+
<ANCHOR id="g-variant-type-is-variant" href="glib/glib-GVariantType.html#g-variant-type-is-variant">
|
2480
|
+
<ANCHOR id="g-variant-type-hash" href="glib/glib-GVariantType.html#g-variant-type-hash">
|
2481
|
+
<ANCHOR id="g-variant-type-equal" href="glib/glib-GVariantType.html#g-variant-type-equal">
|
2482
|
+
<ANCHOR id="g-variant-type-is-subtype-of" href="glib/glib-GVariantType.html#g-variant-type-is-subtype-of">
|
2483
|
+
<ANCHOR id="g-variant-type-new-maybe" href="glib/glib-GVariantType.html#g-variant-type-new-maybe">
|
2484
|
+
<ANCHOR id="g-variant-type-new-array" href="glib/glib-GVariantType.html#g-variant-type-new-array">
|
2485
|
+
<ANCHOR id="g-variant-type-new-tuple" href="glib/glib-GVariantType.html#g-variant-type-new-tuple">
|
2486
|
+
<ANCHOR id="g-variant-type-new-dict-entry" href="glib/glib-GVariantType.html#g-variant-type-new-dict-entry">
|
2487
|
+
<ANCHOR id="g-variant-type-element" href="glib/glib-GVariantType.html#g-variant-type-element">
|
2488
|
+
<ANCHOR id="g-variant-type-n-items" href="glib/glib-GVariantType.html#g-variant-type-n-items">
|
2489
|
+
<ANCHOR id="g-variant-type-first" href="glib/glib-GVariantType.html#g-variant-type-first">
|
2490
|
+
<ANCHOR id="g-variant-type-next" href="glib/glib-GVariantType.html#g-variant-type-next">
|
2491
|
+
<ANCHOR id="g-variant-type-key" href="glib/glib-GVariantType.html#g-variant-type-key">
|
2492
|
+
<ANCHOR id="g-variant-type-value" href="glib/glib-GVariantType.html#g-variant-type-value">
|
2493
|
+
<ANCHOR id="glib-GVariantType.other_details" href="glib/glib-GVariantType.html#glib-GVariantType.other_details">
|
2494
|
+
<ANCHOR id="GVariantType" href="glib/glib-GVariantType.html#GVariantType">
|
2495
|
+
<ANCHOR id="glib-GVariantType.see-also" href="glib/glib-GVariantType.html#glib-GVariantType.see-also">
|
2496
|
+
<ANCHOR id="glib-GVariant" href="glib/glib-GVariant.html">
|
2497
|
+
<ANCHOR id="glib-GVariant.functions" href="glib/glib-GVariant.html#glib-GVariant.functions">
|
2498
|
+
<ANCHOR id="glib-GVariant.other" href="glib/glib-GVariant.html#glib-GVariant.other">
|
2499
|
+
<ANCHOR id="glib-GVariant.includes" href="glib/glib-GVariant.html#glib-GVariant.includes">
|
2500
|
+
<ANCHOR id="glib-GVariant.description" href="glib/glib-GVariant.html#glib-GVariant.description">
|
2501
|
+
<ANCHOR id="glib-GVariant.functions_details" href="glib/glib-GVariant.html#glib-GVariant.functions_details">
|
2502
|
+
<ANCHOR id="g-variant-unref" href="glib/glib-GVariant.html#g-variant-unref">
|
2503
|
+
<ANCHOR id="g-variant-ref" href="glib/glib-GVariant.html#g-variant-ref">
|
2504
|
+
<ANCHOR id="g-variant-ref-sink" href="glib/glib-GVariant.html#g-variant-ref-sink">
|
2505
|
+
<ANCHOR id="g-variant-is-floating" href="glib/glib-GVariant.html#g-variant-is-floating">
|
2506
|
+
<ANCHOR id="g-variant-take-ref" href="glib/glib-GVariant.html#g-variant-take-ref">
|
2507
|
+
<ANCHOR id="g-variant-get-type" href="glib/glib-GVariant.html#g-variant-get-type">
|
2508
|
+
<ANCHOR id="g-variant-get-type-string" href="glib/glib-GVariant.html#g-variant-get-type-string">
|
2509
|
+
<ANCHOR id="g-variant-is-of-type" href="glib/glib-GVariant.html#g-variant-is-of-type">
|
2510
|
+
<ANCHOR id="g-variant-is-container" href="glib/glib-GVariant.html#g-variant-is-container">
|
2511
|
+
<ANCHOR id="g-variant-compare" href="glib/glib-GVariant.html#g-variant-compare">
|
2512
|
+
<ANCHOR id="g-variant-classify" href="glib/glib-GVariant.html#g-variant-classify">
|
2513
|
+
<ANCHOR id="g-variant-check-format-string" href="glib/glib-GVariant.html#g-variant-check-format-string">
|
2514
|
+
<ANCHOR id="g-variant-get" href="glib/glib-GVariant.html#g-variant-get">
|
2515
|
+
<ANCHOR id="g-variant-get-va" href="glib/glib-GVariant.html#g-variant-get-va">
|
2516
|
+
<ANCHOR id="g-variant-new" href="glib/glib-GVariant.html#g-variant-new">
|
2517
|
+
<ANCHOR id="g-variant-new-va" href="glib/glib-GVariant.html#g-variant-new-va">
|
2518
|
+
<ANCHOR id="g-variant-new-boolean" href="glib/glib-GVariant.html#g-variant-new-boolean">
|
2519
|
+
<ANCHOR id="g-variant-new-byte" href="glib/glib-GVariant.html#g-variant-new-byte">
|
2520
|
+
<ANCHOR id="g-variant-new-int16" href="glib/glib-GVariant.html#g-variant-new-int16">
|
2521
|
+
<ANCHOR id="g-variant-new-uint16" href="glib/glib-GVariant.html#g-variant-new-uint16">
|
2522
|
+
<ANCHOR id="g-variant-new-int32" href="glib/glib-GVariant.html#g-variant-new-int32">
|
2523
|
+
<ANCHOR id="g-variant-new-uint32" href="glib/glib-GVariant.html#g-variant-new-uint32">
|
2524
|
+
<ANCHOR id="g-variant-new-int64" href="glib/glib-GVariant.html#g-variant-new-int64">
|
2525
|
+
<ANCHOR id="g-variant-new-uint64" href="glib/glib-GVariant.html#g-variant-new-uint64">
|
2526
|
+
<ANCHOR id="g-variant-new-handle" href="glib/glib-GVariant.html#g-variant-new-handle">
|
2527
|
+
<ANCHOR id="g-variant-new-double" href="glib/glib-GVariant.html#g-variant-new-double">
|
2528
|
+
<ANCHOR id="g-variant-new-string" href="glib/glib-GVariant.html#g-variant-new-string">
|
2529
|
+
<ANCHOR id="g-variant-new-take-string" href="glib/glib-GVariant.html#g-variant-new-take-string">
|
2530
|
+
<ANCHOR id="g-variant-new-printf" href="glib/glib-GVariant.html#g-variant-new-printf">
|
2531
|
+
<ANCHOR id="g-variant-new-object-path" href="glib/glib-GVariant.html#g-variant-new-object-path">
|
2532
|
+
<ANCHOR id="g-variant-is-object-path" href="glib/glib-GVariant.html#g-variant-is-object-path">
|
2533
|
+
<ANCHOR id="g-variant-new-signature" href="glib/glib-GVariant.html#g-variant-new-signature">
|
2534
|
+
<ANCHOR id="g-variant-is-signature" href="glib/glib-GVariant.html#g-variant-is-signature">
|
2535
|
+
<ANCHOR id="g-variant-new-variant" href="glib/glib-GVariant.html#g-variant-new-variant">
|
2536
|
+
<ANCHOR id="g-variant-new-strv" href="glib/glib-GVariant.html#g-variant-new-strv">
|
2537
|
+
<ANCHOR id="g-variant-new-objv" href="glib/glib-GVariant.html#g-variant-new-objv">
|
2538
|
+
<ANCHOR id="g-variant-new-bytestring" href="glib/glib-GVariant.html#g-variant-new-bytestring">
|
2539
|
+
<ANCHOR id="g-variant-new-bytestring-array" href="glib/glib-GVariant.html#g-variant-new-bytestring-array">
|
2540
|
+
<ANCHOR id="g-variant-get-boolean" href="glib/glib-GVariant.html#g-variant-get-boolean">
|
2541
|
+
<ANCHOR id="g-variant-get-byte" href="glib/glib-GVariant.html#g-variant-get-byte">
|
2542
|
+
<ANCHOR id="g-variant-get-int16" href="glib/glib-GVariant.html#g-variant-get-int16">
|
2543
|
+
<ANCHOR id="g-variant-get-uint16" href="glib/glib-GVariant.html#g-variant-get-uint16">
|
2544
|
+
<ANCHOR id="g-variant-get-int32" href="glib/glib-GVariant.html#g-variant-get-int32">
|
2545
|
+
<ANCHOR id="g-variant-get-uint32" href="glib/glib-GVariant.html#g-variant-get-uint32">
|
2546
|
+
<ANCHOR id="g-variant-get-int64" href="glib/glib-GVariant.html#g-variant-get-int64">
|
2547
|
+
<ANCHOR id="g-variant-get-uint64" href="glib/glib-GVariant.html#g-variant-get-uint64">
|
2548
|
+
<ANCHOR id="g-variant-get-handle" href="glib/glib-GVariant.html#g-variant-get-handle">
|
2549
|
+
<ANCHOR id="g-variant-get-double" href="glib/glib-GVariant.html#g-variant-get-double">
|
2550
|
+
<ANCHOR id="g-variant-get-string" href="glib/glib-GVariant.html#g-variant-get-string">
|
2551
|
+
<ANCHOR id="g-variant-dup-string" href="glib/glib-GVariant.html#g-variant-dup-string">
|
2552
|
+
<ANCHOR id="g-variant-get-variant" href="glib/glib-GVariant.html#g-variant-get-variant">
|
2553
|
+
<ANCHOR id="g-variant-get-strv" href="glib/glib-GVariant.html#g-variant-get-strv">
|
2554
|
+
<ANCHOR id="g-variant-dup-strv" href="glib/glib-GVariant.html#g-variant-dup-strv">
|
2555
|
+
<ANCHOR id="g-variant-get-objv" href="glib/glib-GVariant.html#g-variant-get-objv">
|
2556
|
+
<ANCHOR id="g-variant-dup-objv" href="glib/glib-GVariant.html#g-variant-dup-objv">
|
2557
|
+
<ANCHOR id="g-variant-get-bytestring" href="glib/glib-GVariant.html#g-variant-get-bytestring">
|
2558
|
+
<ANCHOR id="g-variant-dup-bytestring" href="glib/glib-GVariant.html#g-variant-dup-bytestring">
|
2559
|
+
<ANCHOR id="g-variant-get-bytestring-array" href="glib/glib-GVariant.html#g-variant-get-bytestring-array">
|
2560
|
+
<ANCHOR id="g-variant-dup-bytestring-array" href="glib/glib-GVariant.html#g-variant-dup-bytestring-array">
|
2561
|
+
<ANCHOR id="g-variant-new-maybe" href="glib/glib-GVariant.html#g-variant-new-maybe">
|
2562
|
+
<ANCHOR id="g-variant-new-array" href="glib/glib-GVariant.html#g-variant-new-array">
|
2563
|
+
<ANCHOR id="g-variant-new-tuple" href="glib/glib-GVariant.html#g-variant-new-tuple">
|
2564
|
+
<ANCHOR id="g-variant-new-dict-entry" href="glib/glib-GVariant.html#g-variant-new-dict-entry">
|
2565
|
+
<ANCHOR id="g-variant-new-fixed-array" href="glib/glib-GVariant.html#g-variant-new-fixed-array">
|
2566
|
+
<ANCHOR id="g-variant-get-maybe" href="glib/glib-GVariant.html#g-variant-get-maybe">
|
2567
|
+
<ANCHOR id="g-variant-n-children" href="glib/glib-GVariant.html#g-variant-n-children">
|
2568
|
+
<ANCHOR id="g-variant-get-child-value" href="glib/glib-GVariant.html#g-variant-get-child-value">
|
2569
|
+
<ANCHOR id="g-variant-get-child" href="glib/glib-GVariant.html#g-variant-get-child">
|
2570
|
+
<ANCHOR id="g-variant-lookup-value" href="glib/glib-GVariant.html#g-variant-lookup-value">
|
2571
|
+
<ANCHOR id="g-variant-lookup" href="glib/glib-GVariant.html#g-variant-lookup">
|
2572
|
+
<ANCHOR id="g-variant-get-fixed-array" href="glib/glib-GVariant.html#g-variant-get-fixed-array">
|
2573
|
+
<ANCHOR id="g-variant-get-size" href="glib/glib-GVariant.html#g-variant-get-size">
|
2574
|
+
<ANCHOR id="g-variant-get-data" href="glib/glib-GVariant.html#g-variant-get-data">
|
2575
|
+
<ANCHOR id="g-variant-get-data-as-bytes" href="glib/glib-GVariant.html#g-variant-get-data-as-bytes">
|
2576
|
+
<ANCHOR id="g-variant-store" href="glib/glib-GVariant.html#g-variant-store">
|
2577
|
+
<ANCHOR id="g-variant-new-from-data" href="glib/glib-GVariant.html#g-variant-new-from-data">
|
2578
|
+
<ANCHOR id="g-variant-new-from-bytes" href="glib/glib-GVariant.html#g-variant-new-from-bytes">
|
2579
|
+
<ANCHOR id="g-variant-byteswap" href="glib/glib-GVariant.html#g-variant-byteswap">
|
2580
|
+
<ANCHOR id="g-variant-get-normal-form" href="glib/glib-GVariant.html#g-variant-get-normal-form">
|
2581
|
+
<ANCHOR id="g-variant-is-normal-form" href="glib/glib-GVariant.html#g-variant-is-normal-form">
|
2582
|
+
<ANCHOR id="g-variant-hash" href="glib/glib-GVariant.html#g-variant-hash">
|
2583
|
+
<ANCHOR id="g-variant-equal" href="glib/glib-GVariant.html#g-variant-equal">
|
2584
|
+
<ANCHOR id="g-variant-print" href="glib/glib-GVariant.html#g-variant-print">
|
2585
|
+
<ANCHOR id="g-variant-print-string" href="glib/glib-GVariant.html#g-variant-print-string">
|
2586
|
+
<ANCHOR id="g-variant-iter-copy" href="glib/glib-GVariant.html#g-variant-iter-copy">
|
2587
|
+
<ANCHOR id="g-variant-iter-free" href="glib/glib-GVariant.html#g-variant-iter-free">
|
2588
|
+
<ANCHOR id="g-variant-iter-init" href="glib/glib-GVariant.html#g-variant-iter-init">
|
2589
|
+
<ANCHOR id="g-variant-iter-n-children" href="glib/glib-GVariant.html#g-variant-iter-n-children">
|
2590
|
+
<ANCHOR id="g-variant-iter-new" href="glib/glib-GVariant.html#g-variant-iter-new">
|
2591
|
+
<ANCHOR id="g-variant-iter-next-value" href="glib/glib-GVariant.html#g-variant-iter-next-value">
|
2592
|
+
<ANCHOR id="g-variant-iter-next" href="glib/glib-GVariant.html#g-variant-iter-next">
|
2593
|
+
<ANCHOR id="g-variant-iter-loop" href="glib/glib-GVariant.html#g-variant-iter-loop">
|
2594
|
+
<ANCHOR id="g-variant-builder-unref" href="glib/glib-GVariant.html#g-variant-builder-unref">
|
2595
|
+
<ANCHOR id="g-variant-builder-ref" href="glib/glib-GVariant.html#g-variant-builder-ref">
|
2596
|
+
<ANCHOR id="g-variant-builder-new" href="glib/glib-GVariant.html#g-variant-builder-new">
|
2597
|
+
<ANCHOR id="g-variant-builder-init" href="glib/glib-GVariant.html#g-variant-builder-init">
|
2598
|
+
<ANCHOR id="g-variant-builder-clear" href="glib/glib-GVariant.html#g-variant-builder-clear">
|
2599
|
+
<ANCHOR id="g-variant-builder-add-value" href="glib/glib-GVariant.html#g-variant-builder-add-value">
|
2600
|
+
<ANCHOR id="g-variant-builder-add" href="glib/glib-GVariant.html#g-variant-builder-add">
|
2601
|
+
<ANCHOR id="g-variant-builder-add-parsed" href="glib/glib-GVariant.html#g-variant-builder-add-parsed">
|
2602
|
+
<ANCHOR id="g-variant-builder-end" href="glib/glib-GVariant.html#g-variant-builder-end">
|
2603
|
+
<ANCHOR id="g-variant-builder-open" href="glib/glib-GVariant.html#g-variant-builder-open">
|
2604
|
+
<ANCHOR id="g-variant-builder-close" href="glib/glib-GVariant.html#g-variant-builder-close">
|
2605
|
+
<ANCHOR id="g-variant-dict-unref" href="glib/glib-GVariant.html#g-variant-dict-unref">
|
2606
|
+
<ANCHOR id="g-variant-dict-ref" href="glib/glib-GVariant.html#g-variant-dict-ref">
|
2607
|
+
<ANCHOR id="g-variant-dict-new" href="glib/glib-GVariant.html#g-variant-dict-new">
|
2608
|
+
<ANCHOR id="g-variant-dict-init" href="glib/glib-GVariant.html#g-variant-dict-init">
|
2609
|
+
<ANCHOR id="g-variant-dict-clear" href="glib/glib-GVariant.html#g-variant-dict-clear">
|
2610
|
+
<ANCHOR id="g-variant-dict-contains" href="glib/glib-GVariant.html#g-variant-dict-contains">
|
2611
|
+
<ANCHOR id="g-variant-dict-lookup" href="glib/glib-GVariant.html#g-variant-dict-lookup">
|
2612
|
+
<ANCHOR id="g-variant-dict-lookup-value" href="glib/glib-GVariant.html#g-variant-dict-lookup-value">
|
2613
|
+
<ANCHOR id="g-variant-dict-insert" href="glib/glib-GVariant.html#g-variant-dict-insert">
|
2614
|
+
<ANCHOR id="g-variant-dict-insert-value" href="glib/glib-GVariant.html#g-variant-dict-insert-value">
|
2615
|
+
<ANCHOR id="g-variant-dict-remove" href="glib/glib-GVariant.html#g-variant-dict-remove">
|
2616
|
+
<ANCHOR id="g-variant-dict-end" href="glib/glib-GVariant.html#g-variant-dict-end">
|
2617
|
+
<ANCHOR id="G-VARIANT-PARSE-ERROR:CAPS" href="glib/glib-GVariant.html#G-VARIANT-PARSE-ERROR:CAPS">
|
2618
|
+
<ANCHOR id="g-variant-parse" href="glib/glib-GVariant.html#g-variant-parse">
|
2619
|
+
<ANCHOR id="g-variant-new-parsed-va" href="glib/glib-GVariant.html#g-variant-new-parsed-va">
|
2620
|
+
<ANCHOR id="g-variant-new-parsed" href="glib/glib-GVariant.html#g-variant-new-parsed">
|
2621
|
+
<ANCHOR id="g-variant-parse-error-print-context" href="glib/glib-GVariant.html#g-variant-parse-error-print-context">
|
2622
|
+
<ANCHOR id="glib-GVariant.other_details" href="glib/glib-GVariant.html#glib-GVariant.other_details">
|
2623
|
+
<ANCHOR id="GVariant" href="glib/glib-GVariant.html#GVariant">
|
2624
|
+
<ANCHOR id="GVariantClass" href="glib/glib-GVariant.html#GVariantClass">
|
2625
|
+
<ANCHOR id="GVariantIter" href="glib/glib-GVariant.html#GVariantIter">
|
2626
|
+
<ANCHOR id="GVariantBuilder" href="glib/glib-GVariant.html#GVariantBuilder">
|
2627
|
+
<ANCHOR id="GVariantDict" href="glib/glib-GVariant.html#GVariantDict">
|
2628
|
+
<ANCHOR id="GVariantParseError" href="glib/glib-GVariant.html#GVariantParseError">
|
2629
|
+
<ANCHOR id="glib-GVariant.see-also" href="glib/glib-GVariant.html#glib-GVariant.see-also">
|
2630
|
+
<ANCHOR id="gvariant-format-strings" href="glib/gvariant-format-strings.html">
|
2631
|
+
<ANCHOR id="gvariant-format-strings-numeric-types" href="glib/gvariant-format-strings.html#gvariant-format-strings-numeric-types">
|
2632
|
+
<ANCHOR id="gvariant-varargs" href="glib/gvariant-format-strings.html#gvariant-varargs">
|
2633
|
+
<ANCHOR id="gvariant-format-strings-strings" href="glib/gvariant-format-strings.html#gvariant-format-strings-strings">
|
2634
|
+
<ANCHOR id="gvariant-format-strings-variants" href="glib/gvariant-format-strings.html#gvariant-format-strings-variants">
|
2635
|
+
<ANCHOR id="gvariant-format-strings-arrays" href="glib/gvariant-format-strings.html#gvariant-format-strings-arrays">
|
2636
|
+
<ANCHOR id="gvariant-format-strings-maybe-types" href="glib/gvariant-format-strings.html#gvariant-format-strings-maybe-types">
|
2637
|
+
<ANCHOR id="gvariant-format-strings-tuples" href="glib/gvariant-format-strings.html#gvariant-format-strings-tuples">
|
2638
|
+
<ANCHOR id="gvariant-format-strings-dictionaries" href="glib/gvariant-format-strings.html#gvariant-format-strings-dictionaries">
|
2639
|
+
<ANCHOR id="gvariant-format-strings-gvariant" href="glib/gvariant-format-strings.html#gvariant-format-strings-gvariant">
|
2640
|
+
<ANCHOR id="gvariant-format-strings-pointers" href="glib/gvariant-format-strings.html#gvariant-format-strings-pointers">
|
2641
|
+
<ANCHOR id="gvariant-format-strings-convenience" href="glib/gvariant-format-strings.html#gvariant-format-strings-convenience">
|
2642
|
+
<ANCHOR id="gvariant-text" href="glib/gvariant-text.html">
|
2643
|
+
<ANCHOR id="gvariant-text-booleans" href="glib/gvariant-text.html#gvariant-text-booleans">
|
2644
|
+
<ANCHOR id="gvariant-text-strings" href="glib/gvariant-text.html#gvariant-text-strings">
|
2645
|
+
<ANCHOR id="gvariant-text-numbers" href="glib/gvariant-text.html#gvariant-text-numbers">
|
2646
|
+
<ANCHOR id="gvariant-text-tuples" href="glib/gvariant-text.html#gvariant-text-tuples">
|
2647
|
+
<ANCHOR id="gvariant-text-arrays" href="glib/gvariant-text.html#gvariant-text-arrays">
|
2648
|
+
<ANCHOR id="gvariant-text-dictionaries" href="glib/gvariant-text.html#gvariant-text-dictionaries">
|
2649
|
+
<ANCHOR id="gvariant-text-variants" href="glib/gvariant-text.html#gvariant-text-variants">
|
2650
|
+
<ANCHOR id="gvariant-text-maybe-types" href="glib/gvariant-text.html#gvariant-text-maybe-types">
|
2651
|
+
<ANCHOR id="gvariant-text-type-annotations" href="glib/gvariant-text.html#gvariant-text-type-annotations">
|
2652
|
+
<ANCHOR id="gvariant-text-bytestrings" href="glib/gvariant-text.html#gvariant-text-bytestrings">
|
2653
|
+
<ANCHOR id="gvariant-text-positional" href="glib/gvariant-text.html#gvariant-text-positional">
|
2654
|
+
<ANCHOR id="glib-Deprecated-Thread-APIs" href="glib/glib-Deprecated-Thread-APIs.html">
|
2655
|
+
<ANCHOR id="glib-Deprecated-Thread-APIs.functions" href="glib/glib-Deprecated-Thread-APIs.html#glib-Deprecated-Thread-APIs.functions">
|
2656
|
+
<ANCHOR id="glib-Deprecated-Thread-APIs.other" href="glib/glib-Deprecated-Thread-APIs.html#glib-Deprecated-Thread-APIs.other">
|
2657
|
+
<ANCHOR id="glib-Deprecated-Thread-APIs.includes" href="glib/glib-Deprecated-Thread-APIs.html#glib-Deprecated-Thread-APIs.includes">
|
2658
|
+
<ANCHOR id="glib-Deprecated-Thread-APIs.description" href="glib/glib-Deprecated-Thread-APIs.html#glib-Deprecated-Thread-APIs.description">
|
2659
|
+
<ANCHOR id="glib-Deprecated-Thread-APIs.functions_details" href="glib/glib-Deprecated-Thread-APIs.html#glib-Deprecated-Thread-APIs.functions_details">
|
2660
|
+
<ANCHOR id="g-thread-init" href="glib/glib-Deprecated-Thread-APIs.html#g-thread-init">
|
2661
|
+
<ANCHOR id="g-thread-supported" href="glib/glib-Deprecated-Thread-APIs.html#g-thread-supported">
|
2662
|
+
<ANCHOR id="g-thread-get-initialized" href="glib/glib-Deprecated-Thread-APIs.html#g-thread-get-initialized">
|
2663
|
+
<ANCHOR id="g-thread-create" href="glib/glib-Deprecated-Thread-APIs.html#g-thread-create">
|
2664
|
+
<ANCHOR id="g-thread-create-full" href="glib/glib-Deprecated-Thread-APIs.html#g-thread-create-full">
|
2665
|
+
<ANCHOR id="g-thread-set-priority" href="glib/glib-Deprecated-Thread-APIs.html#g-thread-set-priority">
|
2666
|
+
<ANCHOR id="g-thread-foreach" href="glib/glib-Deprecated-Thread-APIs.html#g-thread-foreach">
|
2667
|
+
<ANCHOR id="g-mutex-new" href="glib/glib-Deprecated-Thread-APIs.html#g-mutex-new">
|
2668
|
+
<ANCHOR id="g-mutex-free" href="glib/glib-Deprecated-Thread-APIs.html#g-mutex-free">
|
2669
|
+
<ANCHOR id="g-cond-new" href="glib/glib-Deprecated-Thread-APIs.html#g-cond-new">
|
2670
|
+
<ANCHOR id="g-cond-free" href="glib/glib-Deprecated-Thread-APIs.html#g-cond-free">
|
2671
|
+
<ANCHOR id="g-private-new" href="glib/glib-Deprecated-Thread-APIs.html#g-private-new">
|
2672
|
+
<ANCHOR id="g-static-mutex-init" href="glib/glib-Deprecated-Thread-APIs.html#g-static-mutex-init">
|
2673
|
+
<ANCHOR id="g-static-mutex-lock" href="glib/glib-Deprecated-Thread-APIs.html#g-static-mutex-lock">
|
2674
|
+
<ANCHOR id="g-static-mutex-trylock" href="glib/glib-Deprecated-Thread-APIs.html#g-static-mutex-trylock">
|
2675
|
+
<ANCHOR id="g-static-mutex-unlock" href="glib/glib-Deprecated-Thread-APIs.html#g-static-mutex-unlock">
|
2676
|
+
<ANCHOR id="g-static-mutex-get-mutex" href="glib/glib-Deprecated-Thread-APIs.html#g-static-mutex-get-mutex">
|
2677
|
+
<ANCHOR id="g-static-mutex-free" href="glib/glib-Deprecated-Thread-APIs.html#g-static-mutex-free">
|
2678
|
+
<ANCHOR id="g-static-rec-mutex-init" href="glib/glib-Deprecated-Thread-APIs.html#g-static-rec-mutex-init">
|
2679
|
+
<ANCHOR id="g-static-rec-mutex-lock" href="glib/glib-Deprecated-Thread-APIs.html#g-static-rec-mutex-lock">
|
2680
|
+
<ANCHOR id="g-static-rec-mutex-trylock" href="glib/glib-Deprecated-Thread-APIs.html#g-static-rec-mutex-trylock">
|
2681
|
+
<ANCHOR id="g-static-rec-mutex-unlock" href="glib/glib-Deprecated-Thread-APIs.html#g-static-rec-mutex-unlock">
|
2682
|
+
<ANCHOR id="g-static-rec-mutex-lock-full" href="glib/glib-Deprecated-Thread-APIs.html#g-static-rec-mutex-lock-full">
|
2683
|
+
<ANCHOR id="g-static-rec-mutex-unlock-full" href="glib/glib-Deprecated-Thread-APIs.html#g-static-rec-mutex-unlock-full">
|
2684
|
+
<ANCHOR id="g-static-rec-mutex-free" href="glib/glib-Deprecated-Thread-APIs.html#g-static-rec-mutex-free">
|
2685
|
+
<ANCHOR id="g-static-rw-lock-init" href="glib/glib-Deprecated-Thread-APIs.html#g-static-rw-lock-init">
|
2686
|
+
<ANCHOR id="g-static-rw-lock-reader-lock" href="glib/glib-Deprecated-Thread-APIs.html#g-static-rw-lock-reader-lock">
|
2687
|
+
<ANCHOR id="g-static-rw-lock-reader-trylock" href="glib/glib-Deprecated-Thread-APIs.html#g-static-rw-lock-reader-trylock">
|
2688
|
+
<ANCHOR id="g-static-rw-lock-reader-unlock" href="glib/glib-Deprecated-Thread-APIs.html#g-static-rw-lock-reader-unlock">
|
2689
|
+
<ANCHOR id="g-static-rw-lock-writer-lock" href="glib/glib-Deprecated-Thread-APIs.html#g-static-rw-lock-writer-lock">
|
2690
|
+
<ANCHOR id="g-static-rw-lock-writer-trylock" href="glib/glib-Deprecated-Thread-APIs.html#g-static-rw-lock-writer-trylock">
|
2691
|
+
<ANCHOR id="g-static-rw-lock-writer-unlock" href="glib/glib-Deprecated-Thread-APIs.html#g-static-rw-lock-writer-unlock">
|
2692
|
+
<ANCHOR id="g-static-rw-lock-free" href="glib/glib-Deprecated-Thread-APIs.html#g-static-rw-lock-free">
|
2693
|
+
<ANCHOR id="g-static-private-init" href="glib/glib-Deprecated-Thread-APIs.html#g-static-private-init">
|
2694
|
+
<ANCHOR id="g-static-private-get" href="glib/glib-Deprecated-Thread-APIs.html#g-static-private-get">
|
2695
|
+
<ANCHOR id="g-static-private-set" href="glib/glib-Deprecated-Thread-APIs.html#g-static-private-set">
|
2696
|
+
<ANCHOR id="g-static-private-free" href="glib/glib-Deprecated-Thread-APIs.html#g-static-private-free">
|
2697
|
+
<ANCHOR id="glib-Deprecated-Thread-APIs.other_details" href="glib/glib-Deprecated-Thread-APIs.html#glib-Deprecated-Thread-APIs.other_details">
|
2698
|
+
<ANCHOR id="G-THREADS-IMPL-POSIX:CAPS" href="glib/glib-Deprecated-Thread-APIs.html#G-THREADS-IMPL-POSIX:CAPS">
|
2699
|
+
<ANCHOR id="G-THREADS-IMPL-WIN32:CAPS" href="glib/glib-Deprecated-Thread-APIs.html#G-THREADS-IMPL-WIN32:CAPS">
|
2700
|
+
<ANCHOR id="GThreadPriority" href="glib/glib-Deprecated-Thread-APIs.html#GThreadPriority">
|
2701
|
+
<ANCHOR id="GStaticMutex" href="glib/glib-Deprecated-Thread-APIs.html#GStaticMutex">
|
2702
|
+
<ANCHOR id="G-STATIC-MUTEX-INIT:CAPS" href="glib/glib-Deprecated-Thread-APIs.html#G-STATIC-MUTEX-INIT:CAPS">
|
2703
|
+
<ANCHOR id="GStaticRecMutex" href="glib/glib-Deprecated-Thread-APIs.html#GStaticRecMutex">
|
2704
|
+
<ANCHOR id="G-STATIC-REC-MUTEX-INIT:CAPS" href="glib/glib-Deprecated-Thread-APIs.html#G-STATIC-REC-MUTEX-INIT:CAPS">
|
2705
|
+
<ANCHOR id="GStaticRWLock" href="glib/glib-Deprecated-Thread-APIs.html#GStaticRWLock">
|
2706
|
+
<ANCHOR id="G-STATIC-RW-LOCK-INIT:CAPS" href="glib/glib-Deprecated-Thread-APIs.html#G-STATIC-RW-LOCK-INIT:CAPS">
|
2707
|
+
<ANCHOR id="GStaticPrivate" href="glib/glib-Deprecated-Thread-APIs.html#GStaticPrivate">
|
2708
|
+
<ANCHOR id="G-STATIC-PRIVATE-INIT:CAPS" href="glib/glib-Deprecated-Thread-APIs.html#G-STATIC-PRIVATE-INIT:CAPS">
|
2709
|
+
<ANCHOR id="glib-Deprecated-Thread-APIs.see-also" href="glib/glib-Deprecated-Thread-APIs.html#glib-Deprecated-Thread-APIs.see-also">
|
2710
|
+
<ANCHOR id="glib-Caches" href="glib/glib-Caches.html">
|
2711
|
+
<ANCHOR id="glib-Caches.functions" href="glib/glib-Caches.html#glib-Caches.functions">
|
2712
|
+
<ANCHOR id="glib-Caches.other" href="glib/glib-Caches.html#glib-Caches.other">
|
2713
|
+
<ANCHOR id="glib-Caches.includes" href="glib/glib-Caches.html#glib-Caches.includes">
|
2714
|
+
<ANCHOR id="glib-Caches.description" href="glib/glib-Caches.html#glib-Caches.description">
|
2715
|
+
<ANCHOR id="glib-Caches.functions_details" href="glib/glib-Caches.html#glib-Caches.functions_details">
|
2716
|
+
<ANCHOR id="g-cache-new" href="glib/glib-Caches.html#g-cache-new">
|
2717
|
+
<ANCHOR id="g-cache-insert" href="glib/glib-Caches.html#g-cache-insert">
|
2718
|
+
<ANCHOR id="g-cache-remove" href="glib/glib-Caches.html#g-cache-remove">
|
2719
|
+
<ANCHOR id="g-cache-destroy" href="glib/glib-Caches.html#g-cache-destroy">
|
2720
|
+
<ANCHOR id="g-cache-key-foreach" href="glib/glib-Caches.html#g-cache-key-foreach">
|
2721
|
+
<ANCHOR id="g-cache-value-foreach" href="glib/glib-Caches.html#g-cache-value-foreach">
|
2722
|
+
<ANCHOR id="GCacheDestroyFunc" href="glib/glib-Caches.html#GCacheDestroyFunc">
|
2723
|
+
<ANCHOR id="GCacheDupFunc" href="glib/glib-Caches.html#GCacheDupFunc">
|
2724
|
+
<ANCHOR id="GCacheNewFunc" href="glib/glib-Caches.html#GCacheNewFunc">
|
2725
|
+
<ANCHOR id="glib-Caches.other_details" href="glib/glib-Caches.html#glib-Caches.other_details">
|
2726
|
+
<ANCHOR id="GCache" href="glib/glib-Caches.html#GCache">
|
2727
|
+
<ANCHOR id="glib-Relations-and-Tuples" href="glib/glib-Relations-and-Tuples.html">
|
2728
|
+
<ANCHOR id="glib-Relations-and-Tuples.functions" href="glib/glib-Relations-and-Tuples.html#glib-Relations-and-Tuples.functions">
|
2729
|
+
<ANCHOR id="glib-Relations-and-Tuples.other" href="glib/glib-Relations-and-Tuples.html#glib-Relations-and-Tuples.other">
|
2730
|
+
<ANCHOR id="glib-Relations-and-Tuples.includes" href="glib/glib-Relations-and-Tuples.html#glib-Relations-and-Tuples.includes">
|
2731
|
+
<ANCHOR id="glib-Relations-and-Tuples.description" href="glib/glib-Relations-and-Tuples.html#glib-Relations-and-Tuples.description">
|
2732
|
+
<ANCHOR id="glib-Relations-and-Tuples.functions_details" href="glib/glib-Relations-and-Tuples.html#glib-Relations-and-Tuples.functions_details">
|
2733
|
+
<ANCHOR id="g-relation-new" href="glib/glib-Relations-and-Tuples.html#g-relation-new">
|
2734
|
+
<ANCHOR id="g-relation-index" href="glib/glib-Relations-and-Tuples.html#g-relation-index">
|
2735
|
+
<ANCHOR id="g-relation-insert" href="glib/glib-Relations-and-Tuples.html#g-relation-insert">
|
2736
|
+
<ANCHOR id="g-relation-exists" href="glib/glib-Relations-and-Tuples.html#g-relation-exists">
|
2737
|
+
<ANCHOR id="g-relation-count" href="glib/glib-Relations-and-Tuples.html#g-relation-count">
|
2738
|
+
<ANCHOR id="g-relation-select" href="glib/glib-Relations-and-Tuples.html#g-relation-select">
|
2739
|
+
<ANCHOR id="g-relation-delete" href="glib/glib-Relations-and-Tuples.html#g-relation-delete">
|
2740
|
+
<ANCHOR id="g-relation-destroy" href="glib/glib-Relations-and-Tuples.html#g-relation-destroy">
|
2741
|
+
<ANCHOR id="g-relation-print" href="glib/glib-Relations-and-Tuples.html#g-relation-print">
|
2742
|
+
<ANCHOR id="g-tuples-destroy" href="glib/glib-Relations-and-Tuples.html#g-tuples-destroy">
|
2743
|
+
<ANCHOR id="g-tuples-index" href="glib/glib-Relations-and-Tuples.html#g-tuples-index">
|
2744
|
+
<ANCHOR id="glib-Relations-and-Tuples.other_details" href="glib/glib-Relations-and-Tuples.html#glib-Relations-and-Tuples.other_details">
|
2745
|
+
<ANCHOR id="GRelation" href="glib/glib-Relations-and-Tuples.html#GRelation">
|
2746
|
+
<ANCHOR id="GTuples" href="glib/glib-Relations-and-Tuples.html#GTuples">
|
2747
|
+
<ANCHOR id="glib-Automatic-String-Completion" href="glib/glib-Automatic-String-Completion.html">
|
2748
|
+
<ANCHOR id="glib-Automatic-String-Completion.functions" href="glib/glib-Automatic-String-Completion.html#glib-Automatic-String-Completion.functions">
|
2749
|
+
<ANCHOR id="glib-Automatic-String-Completion.other" href="glib/glib-Automatic-String-Completion.html#glib-Automatic-String-Completion.other">
|
2750
|
+
<ANCHOR id="glib-Automatic-String-Completion.includes" href="glib/glib-Automatic-String-Completion.html#glib-Automatic-String-Completion.includes">
|
2751
|
+
<ANCHOR id="glib-Automatic-String-Completion.description" href="glib/glib-Automatic-String-Completion.html#glib-Automatic-String-Completion.description">
|
2752
|
+
<ANCHOR id="glib-Automatic-String-Completion.functions_details" href="glib/glib-Automatic-String-Completion.html#glib-Automatic-String-Completion.functions_details">
|
2753
|
+
<ANCHOR id="g-completion-new" href="glib/glib-Automatic-String-Completion.html#g-completion-new">
|
2754
|
+
<ANCHOR id="GCompletionFunc" href="glib/glib-Automatic-String-Completion.html#GCompletionFunc">
|
2755
|
+
<ANCHOR id="g-completion-add-items" href="glib/glib-Automatic-String-Completion.html#g-completion-add-items">
|
2756
|
+
<ANCHOR id="g-completion-remove-items" href="glib/glib-Automatic-String-Completion.html#g-completion-remove-items">
|
2757
|
+
<ANCHOR id="g-completion-clear-items" href="glib/glib-Automatic-String-Completion.html#g-completion-clear-items">
|
2758
|
+
<ANCHOR id="g-completion-complete" href="glib/glib-Automatic-String-Completion.html#g-completion-complete">
|
2759
|
+
<ANCHOR id="g-completion-complete-utf8" href="glib/glib-Automatic-String-Completion.html#g-completion-complete-utf8">
|
2760
|
+
<ANCHOR id="g-completion-set-compare" href="glib/glib-Automatic-String-Completion.html#g-completion-set-compare">
|
2761
|
+
<ANCHOR id="GCompletionStrncmpFunc" href="glib/glib-Automatic-String-Completion.html#GCompletionStrncmpFunc">
|
2762
|
+
<ANCHOR id="g-completion-free" href="glib/glib-Automatic-String-Completion.html#g-completion-free">
|
2763
|
+
<ANCHOR id="glib-Automatic-String-Completion.other_details" href="glib/glib-Automatic-String-Completion.html#glib-Automatic-String-Completion.other_details">
|
2764
|
+
<ANCHOR id="GCompletion" href="glib/glib-Automatic-String-Completion.html#GCompletion">
|
2765
|
+
<ANCHOR id="glib-gettextize" href="glib/glib-gettextize.html">
|
2766
|
+
<ANCHOR id="gtester" href="glib/gtester.html">
|
2767
|
+
<ANCHOR id="gtester-report" href="glib/gtester-report.html">
|
2768
|
+
<ANCHOR id="annotation-glossterm-allow-none" href="glib/annotation-glossary.html#annotation-glossterm-allow-none">
|
2769
|
+
<ANCHOR id="annotation-glossterm-array" href="glib/annotation-glossary.html#annotation-glossterm-array">
|
2770
|
+
<ANCHOR id="annotation-glossterm-closure" href="glib/annotation-glossary.html#annotation-glossterm-closure">
|
2771
|
+
<ANCHOR id="annotation-glossterm-default" href="glib/annotation-glossary.html#annotation-glossterm-default">
|
2772
|
+
<ANCHOR id="annotation-glossterm-element-type" href="glib/annotation-glossary.html#annotation-glossterm-element-type">
|
2773
|
+
<ANCHOR id="annotation-glossterm-in" href="glib/annotation-glossary.html#annotation-glossterm-in">
|
2774
|
+
<ANCHOR id="annotation-glossterm-inout" href="glib/annotation-glossary.html#annotation-glossterm-inout">
|
2775
|
+
<ANCHOR id="annotation-glossterm-optional" href="glib/annotation-glossary.html#annotation-glossterm-optional">
|
2776
|
+
<ANCHOR id="annotation-glossterm-out" href="glib/annotation-glossary.html#annotation-glossterm-out">
|
2777
|
+
<ANCHOR id="annotation-glossterm-out caller-allocates" href="glib/annotation-glossary.html#annotation-glossterm-out caller-allocates">
|
2778
|
+
<ANCHOR id="annotation-glossterm-scope async" href="glib/annotation-glossary.html#annotation-glossterm-scope async">
|
2779
|
+
<ANCHOR id="annotation-glossterm-transfer container" href="glib/annotation-glossary.html#annotation-glossterm-transfer container">
|
2780
|
+
<ANCHOR id="annotation-glossterm-transfer full" href="glib/annotation-glossary.html#annotation-glossterm-transfer full">
|
2781
|
+
<ANCHOR id="annotation-glossterm-transfer none" href="glib/annotation-glossary.html#annotation-glossterm-transfer none">
|
2782
|
+
<ANCHOR id="annotation-glossterm-type" href="glib/annotation-glossary.html#annotation-glossterm-type">
|