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
@@ -0,0 +1,4261 @@
|
|
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>GIO Reference Manual: GFileInfo</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
|
7
|
+
<link rel="home" href="index.html" title="GIO Reference Manual">
|
8
|
+
<link rel="up" href="file_ops.html" title="File Operations">
|
9
|
+
<link rel="prev" href="gio-GFileAttribute.html" title="GFileAttribute">
|
10
|
+
<link rel="next" href="GFileEnumerator.html" title="GFileEnumerator">
|
11
|
+
<meta name="generator" content="GTK-Doc V1.21.1 (XML mode)">
|
12
|
+
<link rel="stylesheet" href="style.css" type="text/css">
|
13
|
+
</head>
|
14
|
+
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
15
|
+
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
|
16
|
+
<td width="100%" align="left" class="shortcuts">
|
17
|
+
<a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span>
|
18
|
+
<a href="#GFileInfo.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span>
|
19
|
+
<a href="#GFileInfo.object-hierarchy" class="shortcut">Object Hierarchy</a></span>
|
20
|
+
</td>
|
21
|
+
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
22
|
+
<td><a accesskey="u" href="file_ops.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
|
23
|
+
<td><a accesskey="p" href="gio-GFileAttribute.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
|
24
|
+
<td><a accesskey="n" href="GFileEnumerator.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
|
25
|
+
</tr></table>
|
26
|
+
<div class="refentry">
|
27
|
+
<a name="GFileInfo"></a><div class="titlepage"></div>
|
28
|
+
<div class="refnamediv"><table width="100%"><tr>
|
29
|
+
<td valign="top">
|
30
|
+
<h2><span class="refentrytitle"><a name="GFileInfo.top_of_page"></a>GFileInfo</span></h2>
|
31
|
+
<p>GFileInfo — File Information and Attributes</p>
|
32
|
+
</td>
|
33
|
+
<td class="gallery_image" valign="top" align="right"></td>
|
34
|
+
</tr></table></div>
|
35
|
+
<div class="refsect1">
|
36
|
+
<a name="GFileInfo.functions"></a><h2>Functions</h2>
|
37
|
+
<div class="informaltable"><table width="100%" border="0">
|
38
|
+
<colgroup>
|
39
|
+
<col width="150px" class="functions_return">
|
40
|
+
<col class="functions_name">
|
41
|
+
</colgroup>
|
42
|
+
<tbody>
|
43
|
+
<tr>
|
44
|
+
<td class="function_type">
|
45
|
+
<a class="link" href="GFileInfo.html" title="GFileInfo"><span class="returnvalue">GFileInfo</span></a> *
|
46
|
+
</td>
|
47
|
+
<td class="function_name">
|
48
|
+
<a class="link" href="GFileInfo.html#g-file-info-new" title="g_file_info_new ()">g_file_info_new</a> <span class="c_punctuation">()</span>
|
49
|
+
</td>
|
50
|
+
</tr>
|
51
|
+
<tr>
|
52
|
+
<td class="function_type">
|
53
|
+
<a class="link" href="GFileInfo.html" title="GFileInfo"><span class="returnvalue">GFileInfo</span></a> *
|
54
|
+
</td>
|
55
|
+
<td class="function_name">
|
56
|
+
<a class="link" href="GFileInfo.html#g-file-info-dup" title="g_file_info_dup ()">g_file_info_dup</a> <span class="c_punctuation">()</span>
|
57
|
+
</td>
|
58
|
+
</tr>
|
59
|
+
<tr>
|
60
|
+
<td class="function_type">
|
61
|
+
<span class="returnvalue">void</span>
|
62
|
+
</td>
|
63
|
+
<td class="function_name">
|
64
|
+
<a class="link" href="GFileInfo.html#g-file-info-copy-into" title="g_file_info_copy_into ()">g_file_info_copy_into</a> <span class="c_punctuation">()</span>
|
65
|
+
</td>
|
66
|
+
</tr>
|
67
|
+
<tr>
|
68
|
+
<td class="function_type">
|
69
|
+
<a href="../glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
70
|
+
</td>
|
71
|
+
<td class="function_name">
|
72
|
+
<a class="link" href="GFileInfo.html#g-file-info-has-attribute" title="g_file_info_has_attribute ()">g_file_info_has_attribute</a> <span class="c_punctuation">()</span>
|
73
|
+
</td>
|
74
|
+
</tr>
|
75
|
+
<tr>
|
76
|
+
<td class="function_type">
|
77
|
+
<a href="../glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
78
|
+
</td>
|
79
|
+
<td class="function_name">
|
80
|
+
<a class="link" href="GFileInfo.html#g-file-info-has-namespace" title="g_file_info_has_namespace ()">g_file_info_has_namespace</a> <span class="c_punctuation">()</span>
|
81
|
+
</td>
|
82
|
+
</tr>
|
83
|
+
<tr>
|
84
|
+
<td class="function_type">
|
85
|
+
<span class="returnvalue">char</span> **
|
86
|
+
</td>
|
87
|
+
<td class="function_name">
|
88
|
+
<a class="link" href="GFileInfo.html#g-file-info-list-attributes" title="g_file_info_list_attributes ()">g_file_info_list_attributes</a> <span class="c_punctuation">()</span>
|
89
|
+
</td>
|
90
|
+
</tr>
|
91
|
+
<tr>
|
92
|
+
<td class="function_type">
|
93
|
+
<a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="returnvalue">GFileAttributeType</span></a>
|
94
|
+
</td>
|
95
|
+
<td class="function_name">
|
96
|
+
<a class="link" href="GFileInfo.html#g-file-info-get-attribute-type" title="g_file_info_get_attribute_type ()">g_file_info_get_attribute_type</a> <span class="c_punctuation">()</span>
|
97
|
+
</td>
|
98
|
+
</tr>
|
99
|
+
<tr>
|
100
|
+
<td class="function_type">
|
101
|
+
<span class="returnvalue">void</span>
|
102
|
+
</td>
|
103
|
+
<td class="function_name">
|
104
|
+
<a class="link" href="GFileInfo.html#g-file-info-remove-attribute" title="g_file_info_remove_attribute ()">g_file_info_remove_attribute</a> <span class="c_punctuation">()</span>
|
105
|
+
</td>
|
106
|
+
</tr>
|
107
|
+
<tr>
|
108
|
+
<td class="function_type">
|
109
|
+
<span class="returnvalue">char</span> *
|
110
|
+
</td>
|
111
|
+
<td class="function_name">
|
112
|
+
<a class="link" href="GFileInfo.html#g-file-info-get-attribute-as-string" title="g_file_info_get_attribute_as_string ()">g_file_info_get_attribute_as_string</a> <span class="c_punctuation">()</span>
|
113
|
+
</td>
|
114
|
+
</tr>
|
115
|
+
<tr>
|
116
|
+
<td class="function_type">
|
117
|
+
<a href="../glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
118
|
+
</td>
|
119
|
+
<td class="function_name">
|
120
|
+
<a class="link" href="GFileInfo.html#g-file-info-get-attribute-data" title="g_file_info_get_attribute_data ()">g_file_info_get_attribute_data</a> <span class="c_punctuation">()</span>
|
121
|
+
</td>
|
122
|
+
</tr>
|
123
|
+
<tr>
|
124
|
+
<td class="function_type">
|
125
|
+
<a class="link" href="gio-GFileAttribute.html#GFileAttributeStatus" title="enum GFileAttributeStatus"><span class="returnvalue">GFileAttributeStatus</span></a>
|
126
|
+
</td>
|
127
|
+
<td class="function_name">
|
128
|
+
<a class="link" href="GFileInfo.html#g-file-info-get-attribute-status" title="g_file_info_get_attribute_status ()">g_file_info_get_attribute_status</a> <span class="c_punctuation">()</span>
|
129
|
+
</td>
|
130
|
+
</tr>
|
131
|
+
<tr>
|
132
|
+
<td class="function_type">const <span class="returnvalue">char</span> *
|
133
|
+
</td>
|
134
|
+
<td class="function_name">
|
135
|
+
<a class="link" href="GFileInfo.html#g-file-info-get-attribute-string" title="g_file_info_get_attribute_string ()">g_file_info_get_attribute_string</a> <span class="c_punctuation">()</span>
|
136
|
+
</td>
|
137
|
+
</tr>
|
138
|
+
<tr>
|
139
|
+
<td class="function_type">
|
140
|
+
<span class="returnvalue">char</span> **
|
141
|
+
</td>
|
142
|
+
<td class="function_name">
|
143
|
+
<a class="link" href="GFileInfo.html#g-file-info-get-attribute-stringv" title="g_file_info_get_attribute_stringv ()">g_file_info_get_attribute_stringv</a> <span class="c_punctuation">()</span>
|
144
|
+
</td>
|
145
|
+
</tr>
|
146
|
+
<tr>
|
147
|
+
<td class="function_type">const <span class="returnvalue">char</span> *
|
148
|
+
</td>
|
149
|
+
<td class="function_name">
|
150
|
+
<a class="link" href="GFileInfo.html#g-file-info-get-attribute-byte-string" title="g_file_info_get_attribute_byte_string ()">g_file_info_get_attribute_byte_string</a> <span class="c_punctuation">()</span>
|
151
|
+
</td>
|
152
|
+
</tr>
|
153
|
+
<tr>
|
154
|
+
<td class="function_type">
|
155
|
+
<a href="../glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
156
|
+
</td>
|
157
|
+
<td class="function_name">
|
158
|
+
<a class="link" href="GFileInfo.html#g-file-info-get-attribute-boolean" title="g_file_info_get_attribute_boolean ()">g_file_info_get_attribute_boolean</a> <span class="c_punctuation">()</span>
|
159
|
+
</td>
|
160
|
+
</tr>
|
161
|
+
<tr>
|
162
|
+
<td class="function_type">
|
163
|
+
<a href="../glib/glib-Basic-Types.html#guint32"><span class="returnvalue">guint32</span></a>
|
164
|
+
</td>
|
165
|
+
<td class="function_name">
|
166
|
+
<a class="link" href="GFileInfo.html#g-file-info-get-attribute-uint32" title="g_file_info_get_attribute_uint32 ()">g_file_info_get_attribute_uint32</a> <span class="c_punctuation">()</span>
|
167
|
+
</td>
|
168
|
+
</tr>
|
169
|
+
<tr>
|
170
|
+
<td class="function_type">
|
171
|
+
<a href="../glib/glib-Basic-Types.html#gint32"><span class="returnvalue">gint32</span></a>
|
172
|
+
</td>
|
173
|
+
<td class="function_name">
|
174
|
+
<a class="link" href="GFileInfo.html#g-file-info-get-attribute-int32" title="g_file_info_get_attribute_int32 ()">g_file_info_get_attribute_int32</a> <span class="c_punctuation">()</span>
|
175
|
+
</td>
|
176
|
+
</tr>
|
177
|
+
<tr>
|
178
|
+
<td class="function_type">
|
179
|
+
<a href="../glib/glib-Basic-Types.html#guint64"><span class="returnvalue">guint64</span></a>
|
180
|
+
</td>
|
181
|
+
<td class="function_name">
|
182
|
+
<a class="link" href="GFileInfo.html#g-file-info-get-attribute-uint64" title="g_file_info_get_attribute_uint64 ()">g_file_info_get_attribute_uint64</a> <span class="c_punctuation">()</span>
|
183
|
+
</td>
|
184
|
+
</tr>
|
185
|
+
<tr>
|
186
|
+
<td class="function_type">
|
187
|
+
<a href="../glib/glib-Basic-Types.html#gint64"><span class="returnvalue">gint64</span></a>
|
188
|
+
</td>
|
189
|
+
<td class="function_name">
|
190
|
+
<a class="link" href="GFileInfo.html#g-file-info-get-attribute-int64" title="g_file_info_get_attribute_int64 ()">g_file_info_get_attribute_int64</a> <span class="c_punctuation">()</span>
|
191
|
+
</td>
|
192
|
+
</tr>
|
193
|
+
<tr>
|
194
|
+
<td class="function_type">
|
195
|
+
<a href="../gobject/gobject-The-Base-Object-Type.html#GObject"><span class="returnvalue">GObject</span></a> *
|
196
|
+
</td>
|
197
|
+
<td class="function_name">
|
198
|
+
<a class="link" href="GFileInfo.html#g-file-info-get-attribute-object" title="g_file_info_get_attribute_object ()">g_file_info_get_attribute_object</a> <span class="c_punctuation">()</span>
|
199
|
+
</td>
|
200
|
+
</tr>
|
201
|
+
<tr>
|
202
|
+
<td class="function_type">
|
203
|
+
<span class="returnvalue">void</span>
|
204
|
+
</td>
|
205
|
+
<td class="function_name">
|
206
|
+
<a class="link" href="GFileInfo.html#g-file-info-set-attribute" title="g_file_info_set_attribute ()">g_file_info_set_attribute</a> <span class="c_punctuation">()</span>
|
207
|
+
</td>
|
208
|
+
</tr>
|
209
|
+
<tr>
|
210
|
+
<td class="function_type">
|
211
|
+
<a href="../glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
212
|
+
</td>
|
213
|
+
<td class="function_name">
|
214
|
+
<a class="link" href="GFileInfo.html#g-file-info-set-attribute-status" title="g_file_info_set_attribute_status ()">g_file_info_set_attribute_status</a> <span class="c_punctuation">()</span>
|
215
|
+
</td>
|
216
|
+
</tr>
|
217
|
+
<tr>
|
218
|
+
<td class="function_type">
|
219
|
+
<span class="returnvalue">void</span>
|
220
|
+
</td>
|
221
|
+
<td class="function_name">
|
222
|
+
<a class="link" href="GFileInfo.html#g-file-info-set-attribute-string" title="g_file_info_set_attribute_string ()">g_file_info_set_attribute_string</a> <span class="c_punctuation">()</span>
|
223
|
+
</td>
|
224
|
+
</tr>
|
225
|
+
<tr>
|
226
|
+
<td class="function_type">
|
227
|
+
<span class="returnvalue">void</span>
|
228
|
+
</td>
|
229
|
+
<td class="function_name">
|
230
|
+
<a class="link" href="GFileInfo.html#g-file-info-set-attribute-stringv" title="g_file_info_set_attribute_stringv ()">g_file_info_set_attribute_stringv</a> <span class="c_punctuation">()</span>
|
231
|
+
</td>
|
232
|
+
</tr>
|
233
|
+
<tr>
|
234
|
+
<td class="function_type">
|
235
|
+
<span class="returnvalue">void</span>
|
236
|
+
</td>
|
237
|
+
<td class="function_name">
|
238
|
+
<a class="link" href="GFileInfo.html#g-file-info-set-attribute-byte-string" title="g_file_info_set_attribute_byte_string ()">g_file_info_set_attribute_byte_string</a> <span class="c_punctuation">()</span>
|
239
|
+
</td>
|
240
|
+
</tr>
|
241
|
+
<tr>
|
242
|
+
<td class="function_type">
|
243
|
+
<span class="returnvalue">void</span>
|
244
|
+
</td>
|
245
|
+
<td class="function_name">
|
246
|
+
<a class="link" href="GFileInfo.html#g-file-info-set-attribute-boolean" title="g_file_info_set_attribute_boolean ()">g_file_info_set_attribute_boolean</a> <span class="c_punctuation">()</span>
|
247
|
+
</td>
|
248
|
+
</tr>
|
249
|
+
<tr>
|
250
|
+
<td class="function_type">
|
251
|
+
<span class="returnvalue">void</span>
|
252
|
+
</td>
|
253
|
+
<td class="function_name">
|
254
|
+
<a class="link" href="GFileInfo.html#g-file-info-set-attribute-uint32" title="g_file_info_set_attribute_uint32 ()">g_file_info_set_attribute_uint32</a> <span class="c_punctuation">()</span>
|
255
|
+
</td>
|
256
|
+
</tr>
|
257
|
+
<tr>
|
258
|
+
<td class="function_type">
|
259
|
+
<span class="returnvalue">void</span>
|
260
|
+
</td>
|
261
|
+
<td class="function_name">
|
262
|
+
<a class="link" href="GFileInfo.html#g-file-info-set-attribute-int32" title="g_file_info_set_attribute_int32 ()">g_file_info_set_attribute_int32</a> <span class="c_punctuation">()</span>
|
263
|
+
</td>
|
264
|
+
</tr>
|
265
|
+
<tr>
|
266
|
+
<td class="function_type">
|
267
|
+
<span class="returnvalue">void</span>
|
268
|
+
</td>
|
269
|
+
<td class="function_name">
|
270
|
+
<a class="link" href="GFileInfo.html#g-file-info-set-attribute-uint64" title="g_file_info_set_attribute_uint64 ()">g_file_info_set_attribute_uint64</a> <span class="c_punctuation">()</span>
|
271
|
+
</td>
|
272
|
+
</tr>
|
273
|
+
<tr>
|
274
|
+
<td class="function_type">
|
275
|
+
<span class="returnvalue">void</span>
|
276
|
+
</td>
|
277
|
+
<td class="function_name">
|
278
|
+
<a class="link" href="GFileInfo.html#g-file-info-set-attribute-int64" title="g_file_info_set_attribute_int64 ()">g_file_info_set_attribute_int64</a> <span class="c_punctuation">()</span>
|
279
|
+
</td>
|
280
|
+
</tr>
|
281
|
+
<tr>
|
282
|
+
<td class="function_type">
|
283
|
+
<span class="returnvalue">void</span>
|
284
|
+
</td>
|
285
|
+
<td class="function_name">
|
286
|
+
<a class="link" href="GFileInfo.html#g-file-info-set-attribute-object" title="g_file_info_set_attribute_object ()">g_file_info_set_attribute_object</a> <span class="c_punctuation">()</span>
|
287
|
+
</td>
|
288
|
+
</tr>
|
289
|
+
<tr>
|
290
|
+
<td class="function_type">
|
291
|
+
<span class="returnvalue">void</span>
|
292
|
+
</td>
|
293
|
+
<td class="function_name">
|
294
|
+
<a class="link" href="GFileInfo.html#g-file-info-clear-status" title="g_file_info_clear_status ()">g_file_info_clear_status</a> <span class="c_punctuation">()</span>
|
295
|
+
</td>
|
296
|
+
</tr>
|
297
|
+
<tr>
|
298
|
+
<td class="function_type">
|
299
|
+
<a class="link" href="GFileInfo.html#GFileType" title="enum GFileType"><span class="returnvalue">GFileType</span></a>
|
300
|
+
</td>
|
301
|
+
<td class="function_name">
|
302
|
+
<a class="link" href="GFileInfo.html#g-file-info-get-file-type" title="g_file_info_get_file_type ()">g_file_info_get_file_type</a> <span class="c_punctuation">()</span>
|
303
|
+
</td>
|
304
|
+
</tr>
|
305
|
+
<tr>
|
306
|
+
<td class="function_type">
|
307
|
+
<a href="../glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
308
|
+
</td>
|
309
|
+
<td class="function_name">
|
310
|
+
<a class="link" href="GFileInfo.html#g-file-info-get-is-hidden" title="g_file_info_get_is_hidden ()">g_file_info_get_is_hidden</a> <span class="c_punctuation">()</span>
|
311
|
+
</td>
|
312
|
+
</tr>
|
313
|
+
<tr>
|
314
|
+
<td class="function_type">
|
315
|
+
<a href="../glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
316
|
+
</td>
|
317
|
+
<td class="function_name">
|
318
|
+
<a class="link" href="GFileInfo.html#g-file-info-get-is-backup" title="g_file_info_get_is_backup ()">g_file_info_get_is_backup</a> <span class="c_punctuation">()</span>
|
319
|
+
</td>
|
320
|
+
</tr>
|
321
|
+
<tr>
|
322
|
+
<td class="function_type">
|
323
|
+
<a href="../glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
324
|
+
</td>
|
325
|
+
<td class="function_name">
|
326
|
+
<a class="link" href="GFileInfo.html#g-file-info-get-is-symlink" title="g_file_info_get_is_symlink ()">g_file_info_get_is_symlink</a> <span class="c_punctuation">()</span>
|
327
|
+
</td>
|
328
|
+
</tr>
|
329
|
+
<tr>
|
330
|
+
<td class="function_type">const <span class="returnvalue">char</span> *
|
331
|
+
</td>
|
332
|
+
<td class="function_name">
|
333
|
+
<a class="link" href="GFileInfo.html#g-file-info-get-name" title="g_file_info_get_name ()">g_file_info_get_name</a> <span class="c_punctuation">()</span>
|
334
|
+
</td>
|
335
|
+
</tr>
|
336
|
+
<tr>
|
337
|
+
<td class="function_type">const <span class="returnvalue">char</span> *
|
338
|
+
</td>
|
339
|
+
<td class="function_name">
|
340
|
+
<a class="link" href="GFileInfo.html#g-file-info-get-display-name" title="g_file_info_get_display_name ()">g_file_info_get_display_name</a> <span class="c_punctuation">()</span>
|
341
|
+
</td>
|
342
|
+
</tr>
|
343
|
+
<tr>
|
344
|
+
<td class="function_type">const <span class="returnvalue">char</span> *
|
345
|
+
</td>
|
346
|
+
<td class="function_name">
|
347
|
+
<a class="link" href="GFileInfo.html#g-file-info-get-edit-name" title="g_file_info_get_edit_name ()">g_file_info_get_edit_name</a> <span class="c_punctuation">()</span>
|
348
|
+
</td>
|
349
|
+
</tr>
|
350
|
+
<tr>
|
351
|
+
<td class="function_type">
|
352
|
+
<a class="link" href="GIcon.html" title="GIcon"><span class="returnvalue">GIcon</span></a> *
|
353
|
+
</td>
|
354
|
+
<td class="function_name">
|
355
|
+
<a class="link" href="GFileInfo.html#g-file-info-get-icon" title="g_file_info_get_icon ()">g_file_info_get_icon</a> <span class="c_punctuation">()</span>
|
356
|
+
</td>
|
357
|
+
</tr>
|
358
|
+
<tr>
|
359
|
+
<td class="function_type">
|
360
|
+
<a class="link" href="GIcon.html" title="GIcon"><span class="returnvalue">GIcon</span></a> *
|
361
|
+
</td>
|
362
|
+
<td class="function_name">
|
363
|
+
<a class="link" href="GFileInfo.html#g-file-info-get-symbolic-icon" title="g_file_info_get_symbolic_icon ()">g_file_info_get_symbolic_icon</a> <span class="c_punctuation">()</span>
|
364
|
+
</td>
|
365
|
+
</tr>
|
366
|
+
<tr>
|
367
|
+
<td class="function_type">const <span class="returnvalue">char</span> *
|
368
|
+
</td>
|
369
|
+
<td class="function_name">
|
370
|
+
<a class="link" href="GFileInfo.html#g-file-info-get-content-type" title="g_file_info_get_content_type ()">g_file_info_get_content_type</a> <span class="c_punctuation">()</span>
|
371
|
+
</td>
|
372
|
+
</tr>
|
373
|
+
<tr>
|
374
|
+
<td class="function_type">
|
375
|
+
<a href="../glib/glib-Basic-Types.html#goffset"><span class="returnvalue">goffset</span></a>
|
376
|
+
</td>
|
377
|
+
<td class="function_name">
|
378
|
+
<a class="link" href="GFileInfo.html#g-file-info-get-size" title="g_file_info_get_size ()">g_file_info_get_size</a> <span class="c_punctuation">()</span>
|
379
|
+
</td>
|
380
|
+
</tr>
|
381
|
+
<tr>
|
382
|
+
<td class="function_type">
|
383
|
+
<span class="returnvalue">void</span>
|
384
|
+
</td>
|
385
|
+
<td class="function_name">
|
386
|
+
<a class="link" href="GFileInfo.html#g-file-info-get-modification-time" title="g_file_info_get_modification_time ()">g_file_info_get_modification_time</a> <span class="c_punctuation">()</span>
|
387
|
+
</td>
|
388
|
+
</tr>
|
389
|
+
<tr>
|
390
|
+
<td class="function_type">const <span class="returnvalue">char</span> *
|
391
|
+
</td>
|
392
|
+
<td class="function_name">
|
393
|
+
<a class="link" href="GFileInfo.html#g-file-info-get-symlink-target" title="g_file_info_get_symlink_target ()">g_file_info_get_symlink_target</a> <span class="c_punctuation">()</span>
|
394
|
+
</td>
|
395
|
+
</tr>
|
396
|
+
<tr>
|
397
|
+
<td class="function_type">const <span class="returnvalue">char</span> *
|
398
|
+
</td>
|
399
|
+
<td class="function_name">
|
400
|
+
<a class="link" href="GFileInfo.html#g-file-info-get-etag" title="g_file_info_get_etag ()">g_file_info_get_etag</a> <span class="c_punctuation">()</span>
|
401
|
+
</td>
|
402
|
+
</tr>
|
403
|
+
<tr>
|
404
|
+
<td class="function_type">
|
405
|
+
<a href="../glib/glib-Basic-Types.html#gint32"><span class="returnvalue">gint32</span></a>
|
406
|
+
</td>
|
407
|
+
<td class="function_name">
|
408
|
+
<a class="link" href="GFileInfo.html#g-file-info-get-sort-order" title="g_file_info_get_sort_order ()">g_file_info_get_sort_order</a> <span class="c_punctuation">()</span>
|
409
|
+
</td>
|
410
|
+
</tr>
|
411
|
+
<tr>
|
412
|
+
<td class="function_type">
|
413
|
+
<a href="../glib/glib-GDateTime.html#GDateTime"><span class="returnvalue">GDateTime</span></a> *
|
414
|
+
</td>
|
415
|
+
<td class="function_name">
|
416
|
+
<a class="link" href="GFileInfo.html#g-file-info-get-deletion-date" title="g_file_info_get_deletion_date ()">g_file_info_get_deletion_date</a> <span class="c_punctuation">()</span>
|
417
|
+
</td>
|
418
|
+
</tr>
|
419
|
+
<tr>
|
420
|
+
<td class="function_type">
|
421
|
+
<span class="returnvalue">void</span>
|
422
|
+
</td>
|
423
|
+
<td class="function_name">
|
424
|
+
<a class="link" href="GFileInfo.html#g-file-info-set-attribute-mask" title="g_file_info_set_attribute_mask ()">g_file_info_set_attribute_mask</a> <span class="c_punctuation">()</span>
|
425
|
+
</td>
|
426
|
+
</tr>
|
427
|
+
<tr>
|
428
|
+
<td class="function_type">
|
429
|
+
<span class="returnvalue">void</span>
|
430
|
+
</td>
|
431
|
+
<td class="function_name">
|
432
|
+
<a class="link" href="GFileInfo.html#g-file-info-unset-attribute-mask" title="g_file_info_unset_attribute_mask ()">g_file_info_unset_attribute_mask</a> <span class="c_punctuation">()</span>
|
433
|
+
</td>
|
434
|
+
</tr>
|
435
|
+
<tr>
|
436
|
+
<td class="function_type">
|
437
|
+
<span class="returnvalue">void</span>
|
438
|
+
</td>
|
439
|
+
<td class="function_name">
|
440
|
+
<a class="link" href="GFileInfo.html#g-file-info-set-file-type" title="g_file_info_set_file_type ()">g_file_info_set_file_type</a> <span class="c_punctuation">()</span>
|
441
|
+
</td>
|
442
|
+
</tr>
|
443
|
+
<tr>
|
444
|
+
<td class="function_type">
|
445
|
+
<span class="returnvalue">void</span>
|
446
|
+
</td>
|
447
|
+
<td class="function_name">
|
448
|
+
<a class="link" href="GFileInfo.html#g-file-info-set-is-hidden" title="g_file_info_set_is_hidden ()">g_file_info_set_is_hidden</a> <span class="c_punctuation">()</span>
|
449
|
+
</td>
|
450
|
+
</tr>
|
451
|
+
<tr>
|
452
|
+
<td class="function_type">
|
453
|
+
<span class="returnvalue">void</span>
|
454
|
+
</td>
|
455
|
+
<td class="function_name">
|
456
|
+
<a class="link" href="GFileInfo.html#g-file-info-set-is-symlink" title="g_file_info_set_is_symlink ()">g_file_info_set_is_symlink</a> <span class="c_punctuation">()</span>
|
457
|
+
</td>
|
458
|
+
</tr>
|
459
|
+
<tr>
|
460
|
+
<td class="function_type">
|
461
|
+
<span class="returnvalue">void</span>
|
462
|
+
</td>
|
463
|
+
<td class="function_name">
|
464
|
+
<a class="link" href="GFileInfo.html#g-file-info-set-name" title="g_file_info_set_name ()">g_file_info_set_name</a> <span class="c_punctuation">()</span>
|
465
|
+
</td>
|
466
|
+
</tr>
|
467
|
+
<tr>
|
468
|
+
<td class="function_type">
|
469
|
+
<span class="returnvalue">void</span>
|
470
|
+
</td>
|
471
|
+
<td class="function_name">
|
472
|
+
<a class="link" href="GFileInfo.html#g-file-info-set-display-name" title="g_file_info_set_display_name ()">g_file_info_set_display_name</a> <span class="c_punctuation">()</span>
|
473
|
+
</td>
|
474
|
+
</tr>
|
475
|
+
<tr>
|
476
|
+
<td class="function_type">
|
477
|
+
<span class="returnvalue">void</span>
|
478
|
+
</td>
|
479
|
+
<td class="function_name">
|
480
|
+
<a class="link" href="GFileInfo.html#g-file-info-set-edit-name" title="g_file_info_set_edit_name ()">g_file_info_set_edit_name</a> <span class="c_punctuation">()</span>
|
481
|
+
</td>
|
482
|
+
</tr>
|
483
|
+
<tr>
|
484
|
+
<td class="function_type">
|
485
|
+
<span class="returnvalue">void</span>
|
486
|
+
</td>
|
487
|
+
<td class="function_name">
|
488
|
+
<a class="link" href="GFileInfo.html#g-file-info-set-icon" title="g_file_info_set_icon ()">g_file_info_set_icon</a> <span class="c_punctuation">()</span>
|
489
|
+
</td>
|
490
|
+
</tr>
|
491
|
+
<tr>
|
492
|
+
<td class="function_type">
|
493
|
+
<span class="returnvalue">void</span>
|
494
|
+
</td>
|
495
|
+
<td class="function_name">
|
496
|
+
<a class="link" href="GFileInfo.html#g-file-info-set-symbolic-icon" title="g_file_info_set_symbolic_icon ()">g_file_info_set_symbolic_icon</a> <span class="c_punctuation">()</span>
|
497
|
+
</td>
|
498
|
+
</tr>
|
499
|
+
<tr>
|
500
|
+
<td class="function_type">
|
501
|
+
<span class="returnvalue">void</span>
|
502
|
+
</td>
|
503
|
+
<td class="function_name">
|
504
|
+
<a class="link" href="GFileInfo.html#g-file-info-set-content-type" title="g_file_info_set_content_type ()">g_file_info_set_content_type</a> <span class="c_punctuation">()</span>
|
505
|
+
</td>
|
506
|
+
</tr>
|
507
|
+
<tr>
|
508
|
+
<td class="function_type">
|
509
|
+
<span class="returnvalue">void</span>
|
510
|
+
</td>
|
511
|
+
<td class="function_name">
|
512
|
+
<a class="link" href="GFileInfo.html#g-file-info-set-size" title="g_file_info_set_size ()">g_file_info_set_size</a> <span class="c_punctuation">()</span>
|
513
|
+
</td>
|
514
|
+
</tr>
|
515
|
+
<tr>
|
516
|
+
<td class="function_type">
|
517
|
+
<span class="returnvalue">void</span>
|
518
|
+
</td>
|
519
|
+
<td class="function_name">
|
520
|
+
<a class="link" href="GFileInfo.html#g-file-info-set-modification-time" title="g_file_info_set_modification_time ()">g_file_info_set_modification_time</a> <span class="c_punctuation">()</span>
|
521
|
+
</td>
|
522
|
+
</tr>
|
523
|
+
<tr>
|
524
|
+
<td class="function_type">
|
525
|
+
<span class="returnvalue">void</span>
|
526
|
+
</td>
|
527
|
+
<td class="function_name">
|
528
|
+
<a class="link" href="GFileInfo.html#g-file-info-set-symlink-target" title="g_file_info_set_symlink_target ()">g_file_info_set_symlink_target</a> <span class="c_punctuation">()</span>
|
529
|
+
</td>
|
530
|
+
</tr>
|
531
|
+
<tr>
|
532
|
+
<td class="function_type">
|
533
|
+
<span class="returnvalue">void</span>
|
534
|
+
</td>
|
535
|
+
<td class="function_name">
|
536
|
+
<a class="link" href="GFileInfo.html#g-file-info-set-sort-order" title="g_file_info_set_sort_order ()">g_file_info_set_sort_order</a> <span class="c_punctuation">()</span>
|
537
|
+
</td>
|
538
|
+
</tr>
|
539
|
+
<tr>
|
540
|
+
<td class="function_type">
|
541
|
+
<a class="link" href="GFileInfo.html#GFileAttributeMatcher"><span class="returnvalue">GFileAttributeMatcher</span></a> *
|
542
|
+
</td>
|
543
|
+
<td class="function_name">
|
544
|
+
<a class="link" href="GFileInfo.html#g-file-attribute-matcher-new" title="g_file_attribute_matcher_new ()">g_file_attribute_matcher_new</a> <span class="c_punctuation">()</span>
|
545
|
+
</td>
|
546
|
+
</tr>
|
547
|
+
<tr>
|
548
|
+
<td class="function_type">
|
549
|
+
<a class="link" href="GFileInfo.html#GFileAttributeMatcher"><span class="returnvalue">GFileAttributeMatcher</span></a> *
|
550
|
+
</td>
|
551
|
+
<td class="function_name">
|
552
|
+
<a class="link" href="GFileInfo.html#g-file-attribute-matcher-ref" title="g_file_attribute_matcher_ref ()">g_file_attribute_matcher_ref</a> <span class="c_punctuation">()</span>
|
553
|
+
</td>
|
554
|
+
</tr>
|
555
|
+
<tr>
|
556
|
+
<td class="function_type">
|
557
|
+
<a class="link" href="GFileInfo.html#GFileAttributeMatcher"><span class="returnvalue">GFileAttributeMatcher</span></a> *
|
558
|
+
</td>
|
559
|
+
<td class="function_name">
|
560
|
+
<a class="link" href="GFileInfo.html#g-file-attribute-matcher-subtract" title="g_file_attribute_matcher_subtract ()">g_file_attribute_matcher_subtract</a> <span class="c_punctuation">()</span>
|
561
|
+
</td>
|
562
|
+
</tr>
|
563
|
+
<tr>
|
564
|
+
<td class="function_type">
|
565
|
+
<span class="returnvalue">void</span>
|
566
|
+
</td>
|
567
|
+
<td class="function_name">
|
568
|
+
<a class="link" href="GFileInfo.html#g-file-attribute-matcher-unref" title="g_file_attribute_matcher_unref ()">g_file_attribute_matcher_unref</a> <span class="c_punctuation">()</span>
|
569
|
+
</td>
|
570
|
+
</tr>
|
571
|
+
<tr>
|
572
|
+
<td class="function_type">
|
573
|
+
<a href="../glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
574
|
+
</td>
|
575
|
+
<td class="function_name">
|
576
|
+
<a class="link" href="GFileInfo.html#g-file-attribute-matcher-matches" title="g_file_attribute_matcher_matches ()">g_file_attribute_matcher_matches</a> <span class="c_punctuation">()</span>
|
577
|
+
</td>
|
578
|
+
</tr>
|
579
|
+
<tr>
|
580
|
+
<td class="function_type">
|
581
|
+
<a href="../glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
582
|
+
</td>
|
583
|
+
<td class="function_name">
|
584
|
+
<a class="link" href="GFileInfo.html#g-file-attribute-matcher-matches-only" title="g_file_attribute_matcher_matches_only ()">g_file_attribute_matcher_matches_only</a> <span class="c_punctuation">()</span>
|
585
|
+
</td>
|
586
|
+
</tr>
|
587
|
+
<tr>
|
588
|
+
<td class="function_type">
|
589
|
+
<a href="../glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
590
|
+
</td>
|
591
|
+
<td class="function_name">
|
592
|
+
<a class="link" href="GFileInfo.html#g-file-attribute-matcher-enumerate-namespace" title="g_file_attribute_matcher_enumerate_namespace ()">g_file_attribute_matcher_enumerate_namespace</a> <span class="c_punctuation">()</span>
|
593
|
+
</td>
|
594
|
+
</tr>
|
595
|
+
<tr>
|
596
|
+
<td class="function_type">const <span class="returnvalue">char</span> *
|
597
|
+
</td>
|
598
|
+
<td class="function_name">
|
599
|
+
<a class="link" href="GFileInfo.html#g-file-attribute-matcher-enumerate-next" title="g_file_attribute_matcher_enumerate_next ()">g_file_attribute_matcher_enumerate_next</a> <span class="c_punctuation">()</span>
|
600
|
+
</td>
|
601
|
+
</tr>
|
602
|
+
<tr>
|
603
|
+
<td class="function_type">
|
604
|
+
<span class="returnvalue">char</span> *
|
605
|
+
</td>
|
606
|
+
<td class="function_name">
|
607
|
+
<a class="link" href="GFileInfo.html#g-file-attribute-matcher-to-string" title="g_file_attribute_matcher_to_string ()">g_file_attribute_matcher_to_string</a> <span class="c_punctuation">()</span>
|
608
|
+
</td>
|
609
|
+
</tr>
|
610
|
+
</tbody>
|
611
|
+
</table></div>
|
612
|
+
</div>
|
613
|
+
<a name="GFileAttributeMatcher"></a><div class="refsect1">
|
614
|
+
<a name="GFileInfo.other"></a><h2>Types and Values</h2>
|
615
|
+
<div class="informaltable"><table width="100%" border="0">
|
616
|
+
<colgroup>
|
617
|
+
<col width="150px" class="name">
|
618
|
+
<col class="description">
|
619
|
+
</colgroup>
|
620
|
+
<tbody>
|
621
|
+
<tr>
|
622
|
+
<td class="datatype_keyword"> </td>
|
623
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#GFileAttributeMatcher-struct" title="GFileAttributeMatcher">GFileAttributeMatcher</a></td>
|
624
|
+
</tr>
|
625
|
+
<tr>
|
626
|
+
<td class="datatype_keyword">enum</td>
|
627
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#GFileType" title="enum GFileType">GFileType</a></td>
|
628
|
+
</tr>
|
629
|
+
<tr>
|
630
|
+
<td class="datatype_keyword"> </td>
|
631
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#GFileInfo-struct" title="GFileInfo">GFileInfo</a></td>
|
632
|
+
</tr>
|
633
|
+
<tr>
|
634
|
+
<td class="define_keyword">#define</td>
|
635
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-TYPE:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_TYPE">G_FILE_ATTRIBUTE_STANDARD_TYPE</a></td>
|
636
|
+
</tr>
|
637
|
+
<tr>
|
638
|
+
<td class="define_keyword">#define</td>
|
639
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-IS-HIDDEN:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_IS_HIDDEN">G_FILE_ATTRIBUTE_STANDARD_IS_HIDDEN</a></td>
|
640
|
+
</tr>
|
641
|
+
<tr>
|
642
|
+
<td class="define_keyword">#define</td>
|
643
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-IS-BACKUP:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_IS_BACKUP">G_FILE_ATTRIBUTE_STANDARD_IS_BACKUP</a></td>
|
644
|
+
</tr>
|
645
|
+
<tr>
|
646
|
+
<td class="define_keyword">#define</td>
|
647
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-IS-SYMLINK:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_IS_SYMLINK">G_FILE_ATTRIBUTE_STANDARD_IS_SYMLINK</a></td>
|
648
|
+
</tr>
|
649
|
+
<tr>
|
650
|
+
<td class="define_keyword">#define</td>
|
651
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-IS-VIRTUAL:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_IS_VIRTUAL">G_FILE_ATTRIBUTE_STANDARD_IS_VIRTUAL</a></td>
|
652
|
+
</tr>
|
653
|
+
<tr>
|
654
|
+
<td class="define_keyword">#define</td>
|
655
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-NAME:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_NAME">G_FILE_ATTRIBUTE_STANDARD_NAME</a></td>
|
656
|
+
</tr>
|
657
|
+
<tr>
|
658
|
+
<td class="define_keyword">#define</td>
|
659
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-DISPLAY-NAME:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_DISPLAY_NAME">G_FILE_ATTRIBUTE_STANDARD_DISPLAY_NAME</a></td>
|
660
|
+
</tr>
|
661
|
+
<tr>
|
662
|
+
<td class="define_keyword">#define</td>
|
663
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-EDIT-NAME:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_EDIT_NAME">G_FILE_ATTRIBUTE_STANDARD_EDIT_NAME</a></td>
|
664
|
+
</tr>
|
665
|
+
<tr>
|
666
|
+
<td class="define_keyword">#define</td>
|
667
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-COPY-NAME:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_COPY_NAME">G_FILE_ATTRIBUTE_STANDARD_COPY_NAME</a></td>
|
668
|
+
</tr>
|
669
|
+
<tr>
|
670
|
+
<td class="define_keyword">#define</td>
|
671
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-ICON:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_ICON">G_FILE_ATTRIBUTE_STANDARD_ICON</a></td>
|
672
|
+
</tr>
|
673
|
+
<tr>
|
674
|
+
<td class="define_keyword">#define</td>
|
675
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-SYMBOLIC-ICON:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_SYMBOLIC_ICON">G_FILE_ATTRIBUTE_STANDARD_SYMBOLIC_ICON</a></td>
|
676
|
+
</tr>
|
677
|
+
<tr>
|
678
|
+
<td class="define_keyword">#define</td>
|
679
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-CONTENT-TYPE:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_CONTENT_TYPE">G_FILE_ATTRIBUTE_STANDARD_CONTENT_TYPE</a></td>
|
680
|
+
</tr>
|
681
|
+
<tr>
|
682
|
+
<td class="define_keyword">#define</td>
|
683
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-FAST-CONTENT-TYPE:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_FAST_CONTENT_TYPE">G_FILE_ATTRIBUTE_STANDARD_FAST_CONTENT_TYPE</a></td>
|
684
|
+
</tr>
|
685
|
+
<tr>
|
686
|
+
<td class="define_keyword">#define</td>
|
687
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-SIZE:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_SIZE">G_FILE_ATTRIBUTE_STANDARD_SIZE</a></td>
|
688
|
+
</tr>
|
689
|
+
<tr>
|
690
|
+
<td class="define_keyword">#define</td>
|
691
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-ALLOCATED-SIZE:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_ALLOCATED_SIZE">G_FILE_ATTRIBUTE_STANDARD_ALLOCATED_SIZE</a></td>
|
692
|
+
</tr>
|
693
|
+
<tr>
|
694
|
+
<td class="define_keyword">#define</td>
|
695
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-SYMLINK-TARGET:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_SYMLINK_TARGET">G_FILE_ATTRIBUTE_STANDARD_SYMLINK_TARGET</a></td>
|
696
|
+
</tr>
|
697
|
+
<tr>
|
698
|
+
<td class="define_keyword">#define</td>
|
699
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-TARGET-URI:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_TARGET_URI">G_FILE_ATTRIBUTE_STANDARD_TARGET_URI</a></td>
|
700
|
+
</tr>
|
701
|
+
<tr>
|
702
|
+
<td class="define_keyword">#define</td>
|
703
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-SORT-ORDER:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_SORT_ORDER">G_FILE_ATTRIBUTE_STANDARD_SORT_ORDER</a></td>
|
704
|
+
</tr>
|
705
|
+
<tr>
|
706
|
+
<td class="define_keyword">#define</td>
|
707
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-ETAG-VALUE:CAPS" title="G_FILE_ATTRIBUTE_ETAG_VALUE">G_FILE_ATTRIBUTE_ETAG_VALUE</a></td>
|
708
|
+
</tr>
|
709
|
+
<tr>
|
710
|
+
<td class="define_keyword">#define</td>
|
711
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-ID-FILE:CAPS" title="G_FILE_ATTRIBUTE_ID_FILE">G_FILE_ATTRIBUTE_ID_FILE</a></td>
|
712
|
+
</tr>
|
713
|
+
<tr>
|
714
|
+
<td class="define_keyword">#define</td>
|
715
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-ID-FILESYSTEM:CAPS" title="G_FILE_ATTRIBUTE_ID_FILESYSTEM">G_FILE_ATTRIBUTE_ID_FILESYSTEM</a></td>
|
716
|
+
</tr>
|
717
|
+
<tr>
|
718
|
+
<td class="define_keyword">#define</td>
|
719
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-ACCESS-CAN-READ:CAPS" title="G_FILE_ATTRIBUTE_ACCESS_CAN_READ">G_FILE_ATTRIBUTE_ACCESS_CAN_READ</a></td>
|
720
|
+
</tr>
|
721
|
+
<tr>
|
722
|
+
<td class="define_keyword">#define</td>
|
723
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-ACCESS-CAN-WRITE:CAPS" title="G_FILE_ATTRIBUTE_ACCESS_CAN_WRITE">G_FILE_ATTRIBUTE_ACCESS_CAN_WRITE</a></td>
|
724
|
+
</tr>
|
725
|
+
<tr>
|
726
|
+
<td class="define_keyword">#define</td>
|
727
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-ACCESS-CAN-EXECUTE:CAPS" title="G_FILE_ATTRIBUTE_ACCESS_CAN_EXECUTE">G_FILE_ATTRIBUTE_ACCESS_CAN_EXECUTE</a></td>
|
728
|
+
</tr>
|
729
|
+
<tr>
|
730
|
+
<td class="define_keyword">#define</td>
|
731
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-ACCESS-CAN-DELETE:CAPS" title="G_FILE_ATTRIBUTE_ACCESS_CAN_DELETE">G_FILE_ATTRIBUTE_ACCESS_CAN_DELETE</a></td>
|
732
|
+
</tr>
|
733
|
+
<tr>
|
734
|
+
<td class="define_keyword">#define</td>
|
735
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-ACCESS-CAN-TRASH:CAPS" title="G_FILE_ATTRIBUTE_ACCESS_CAN_TRASH">G_FILE_ATTRIBUTE_ACCESS_CAN_TRASH</a></td>
|
736
|
+
</tr>
|
737
|
+
<tr>
|
738
|
+
<td class="define_keyword">#define</td>
|
739
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-ACCESS-CAN-RENAME:CAPS" title="G_FILE_ATTRIBUTE_ACCESS_CAN_RENAME">G_FILE_ATTRIBUTE_ACCESS_CAN_RENAME</a></td>
|
740
|
+
</tr>
|
741
|
+
<tr>
|
742
|
+
<td class="define_keyword">#define</td>
|
743
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-MOUNTABLE-CAN-MOUNT:CAPS" title="G_FILE_ATTRIBUTE_MOUNTABLE_CAN_MOUNT">G_FILE_ATTRIBUTE_MOUNTABLE_CAN_MOUNT</a></td>
|
744
|
+
</tr>
|
745
|
+
<tr>
|
746
|
+
<td class="define_keyword">#define</td>
|
747
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-MOUNTABLE-CAN-UNMOUNT:CAPS" title="G_FILE_ATTRIBUTE_MOUNTABLE_CAN_UNMOUNT">G_FILE_ATTRIBUTE_MOUNTABLE_CAN_UNMOUNT</a></td>
|
748
|
+
</tr>
|
749
|
+
<tr>
|
750
|
+
<td class="define_keyword">#define</td>
|
751
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-MOUNTABLE-CAN-EJECT:CAPS" title="G_FILE_ATTRIBUTE_MOUNTABLE_CAN_EJECT">G_FILE_ATTRIBUTE_MOUNTABLE_CAN_EJECT</a></td>
|
752
|
+
</tr>
|
753
|
+
<tr>
|
754
|
+
<td class="define_keyword">#define</td>
|
755
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-MOUNTABLE-UNIX-DEVICE:CAPS" title="G_FILE_ATTRIBUTE_MOUNTABLE_UNIX_DEVICE">G_FILE_ATTRIBUTE_MOUNTABLE_UNIX_DEVICE</a></td>
|
756
|
+
</tr>
|
757
|
+
<tr>
|
758
|
+
<td class="define_keyword">#define</td>
|
759
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-MOUNTABLE-UNIX-DEVICE-FILE:CAPS" title="G_FILE_ATTRIBUTE_MOUNTABLE_UNIX_DEVICE_FILE">G_FILE_ATTRIBUTE_MOUNTABLE_UNIX_DEVICE_FILE</a></td>
|
760
|
+
</tr>
|
761
|
+
<tr>
|
762
|
+
<td class="define_keyword">#define</td>
|
763
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-MOUNTABLE-HAL-UDI:CAPS" title="G_FILE_ATTRIBUTE_MOUNTABLE_HAL_UDI">G_FILE_ATTRIBUTE_MOUNTABLE_HAL_UDI</a></td>
|
764
|
+
</tr>
|
765
|
+
<tr>
|
766
|
+
<td class="define_keyword">#define</td>
|
767
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-MOUNTABLE-CAN-POLL:CAPS" title="G_FILE_ATTRIBUTE_MOUNTABLE_CAN_POLL">G_FILE_ATTRIBUTE_MOUNTABLE_CAN_POLL</a></td>
|
768
|
+
</tr>
|
769
|
+
<tr>
|
770
|
+
<td class="define_keyword">#define</td>
|
771
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-MOUNTABLE-IS-MEDIA-CHECK-AUTOMATIC:CAPS" title="G_FILE_ATTRIBUTE_MOUNTABLE_IS_MEDIA_CHECK_AUTOMATIC">G_FILE_ATTRIBUTE_MOUNTABLE_IS_MEDIA_CHECK_AUTOMATIC</a></td>
|
772
|
+
</tr>
|
773
|
+
<tr>
|
774
|
+
<td class="define_keyword">#define</td>
|
775
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-MOUNTABLE-CAN-START:CAPS" title="G_FILE_ATTRIBUTE_MOUNTABLE_CAN_START">G_FILE_ATTRIBUTE_MOUNTABLE_CAN_START</a></td>
|
776
|
+
</tr>
|
777
|
+
<tr>
|
778
|
+
<td class="define_keyword">#define</td>
|
779
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-MOUNTABLE-CAN-START-DEGRADED:CAPS" title="G_FILE_ATTRIBUTE_MOUNTABLE_CAN_START_DEGRADED">G_FILE_ATTRIBUTE_MOUNTABLE_CAN_START_DEGRADED</a></td>
|
780
|
+
</tr>
|
781
|
+
<tr>
|
782
|
+
<td class="define_keyword">#define</td>
|
783
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-MOUNTABLE-CAN-STOP:CAPS" title="G_FILE_ATTRIBUTE_MOUNTABLE_CAN_STOP">G_FILE_ATTRIBUTE_MOUNTABLE_CAN_STOP</a></td>
|
784
|
+
</tr>
|
785
|
+
<tr>
|
786
|
+
<td class="define_keyword">#define</td>
|
787
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-MOUNTABLE-START-STOP-TYPE:CAPS" title="G_FILE_ATTRIBUTE_MOUNTABLE_START_STOP_TYPE">G_FILE_ATTRIBUTE_MOUNTABLE_START_STOP_TYPE</a></td>
|
788
|
+
</tr>
|
789
|
+
<tr>
|
790
|
+
<td class="define_keyword">#define</td>
|
791
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-TIME-MODIFIED:CAPS" title="G_FILE_ATTRIBUTE_TIME_MODIFIED">G_FILE_ATTRIBUTE_TIME_MODIFIED</a></td>
|
792
|
+
</tr>
|
793
|
+
<tr>
|
794
|
+
<td class="define_keyword">#define</td>
|
795
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-TIME-MODIFIED-USEC:CAPS" title="G_FILE_ATTRIBUTE_TIME_MODIFIED_USEC">G_FILE_ATTRIBUTE_TIME_MODIFIED_USEC</a></td>
|
796
|
+
</tr>
|
797
|
+
<tr>
|
798
|
+
<td class="define_keyword">#define</td>
|
799
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-TIME-ACCESS:CAPS" title="G_FILE_ATTRIBUTE_TIME_ACCESS">G_FILE_ATTRIBUTE_TIME_ACCESS</a></td>
|
800
|
+
</tr>
|
801
|
+
<tr>
|
802
|
+
<td class="define_keyword">#define</td>
|
803
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-TIME-ACCESS-USEC:CAPS" title="G_FILE_ATTRIBUTE_TIME_ACCESS_USEC">G_FILE_ATTRIBUTE_TIME_ACCESS_USEC</a></td>
|
804
|
+
</tr>
|
805
|
+
<tr>
|
806
|
+
<td class="define_keyword">#define</td>
|
807
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-TIME-CHANGED:CAPS" title="G_FILE_ATTRIBUTE_TIME_CHANGED">G_FILE_ATTRIBUTE_TIME_CHANGED</a></td>
|
808
|
+
</tr>
|
809
|
+
<tr>
|
810
|
+
<td class="define_keyword">#define</td>
|
811
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-TIME-CHANGED-USEC:CAPS" title="G_FILE_ATTRIBUTE_TIME_CHANGED_USEC">G_FILE_ATTRIBUTE_TIME_CHANGED_USEC</a></td>
|
812
|
+
</tr>
|
813
|
+
<tr>
|
814
|
+
<td class="define_keyword">#define</td>
|
815
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-TIME-CREATED:CAPS" title="G_FILE_ATTRIBUTE_TIME_CREATED">G_FILE_ATTRIBUTE_TIME_CREATED</a></td>
|
816
|
+
</tr>
|
817
|
+
<tr>
|
818
|
+
<td class="define_keyword">#define</td>
|
819
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-TIME-CREATED-USEC:CAPS" title="G_FILE_ATTRIBUTE_TIME_CREATED_USEC">G_FILE_ATTRIBUTE_TIME_CREATED_USEC</a></td>
|
820
|
+
</tr>
|
821
|
+
<tr>
|
822
|
+
<td class="define_keyword">#define</td>
|
823
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-UNIX-DEVICE:CAPS" title="G_FILE_ATTRIBUTE_UNIX_DEVICE">G_FILE_ATTRIBUTE_UNIX_DEVICE</a></td>
|
824
|
+
</tr>
|
825
|
+
<tr>
|
826
|
+
<td class="define_keyword">#define</td>
|
827
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-UNIX-INODE:CAPS" title="G_FILE_ATTRIBUTE_UNIX_INODE">G_FILE_ATTRIBUTE_UNIX_INODE</a></td>
|
828
|
+
</tr>
|
829
|
+
<tr>
|
830
|
+
<td class="define_keyword">#define</td>
|
831
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-UNIX-MODE:CAPS" title="G_FILE_ATTRIBUTE_UNIX_MODE">G_FILE_ATTRIBUTE_UNIX_MODE</a></td>
|
832
|
+
</tr>
|
833
|
+
<tr>
|
834
|
+
<td class="define_keyword">#define</td>
|
835
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-UNIX-NLINK:CAPS" title="G_FILE_ATTRIBUTE_UNIX_NLINK">G_FILE_ATTRIBUTE_UNIX_NLINK</a></td>
|
836
|
+
</tr>
|
837
|
+
<tr>
|
838
|
+
<td class="define_keyword">#define</td>
|
839
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-UNIX-UID:CAPS" title="G_FILE_ATTRIBUTE_UNIX_UID">G_FILE_ATTRIBUTE_UNIX_UID</a></td>
|
840
|
+
</tr>
|
841
|
+
<tr>
|
842
|
+
<td class="define_keyword">#define</td>
|
843
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-UNIX-GID:CAPS" title="G_FILE_ATTRIBUTE_UNIX_GID">G_FILE_ATTRIBUTE_UNIX_GID</a></td>
|
844
|
+
</tr>
|
845
|
+
<tr>
|
846
|
+
<td class="define_keyword">#define</td>
|
847
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-UNIX-RDEV:CAPS" title="G_FILE_ATTRIBUTE_UNIX_RDEV">G_FILE_ATTRIBUTE_UNIX_RDEV</a></td>
|
848
|
+
</tr>
|
849
|
+
<tr>
|
850
|
+
<td class="define_keyword">#define</td>
|
851
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-UNIX-BLOCK-SIZE:CAPS" title="G_FILE_ATTRIBUTE_UNIX_BLOCK_SIZE">G_FILE_ATTRIBUTE_UNIX_BLOCK_SIZE</a></td>
|
852
|
+
</tr>
|
853
|
+
<tr>
|
854
|
+
<td class="define_keyword">#define</td>
|
855
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-UNIX-BLOCKS:CAPS" title="G_FILE_ATTRIBUTE_UNIX_BLOCKS">G_FILE_ATTRIBUTE_UNIX_BLOCKS</a></td>
|
856
|
+
</tr>
|
857
|
+
<tr>
|
858
|
+
<td class="define_keyword">#define</td>
|
859
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-UNIX-IS-MOUNTPOINT:CAPS" title="G_FILE_ATTRIBUTE_UNIX_IS_MOUNTPOINT">G_FILE_ATTRIBUTE_UNIX_IS_MOUNTPOINT</a></td>
|
860
|
+
</tr>
|
861
|
+
<tr>
|
862
|
+
<td class="define_keyword">#define</td>
|
863
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-DOS-IS-ARCHIVE:CAPS" title="G_FILE_ATTRIBUTE_DOS_IS_ARCHIVE">G_FILE_ATTRIBUTE_DOS_IS_ARCHIVE</a></td>
|
864
|
+
</tr>
|
865
|
+
<tr>
|
866
|
+
<td class="define_keyword">#define</td>
|
867
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-DOS-IS-SYSTEM:CAPS" title="G_FILE_ATTRIBUTE_DOS_IS_SYSTEM">G_FILE_ATTRIBUTE_DOS_IS_SYSTEM</a></td>
|
868
|
+
</tr>
|
869
|
+
<tr>
|
870
|
+
<td class="define_keyword">#define</td>
|
871
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-OWNER-USER:CAPS" title="G_FILE_ATTRIBUTE_OWNER_USER">G_FILE_ATTRIBUTE_OWNER_USER</a></td>
|
872
|
+
</tr>
|
873
|
+
<tr>
|
874
|
+
<td class="define_keyword">#define</td>
|
875
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-OWNER-USER-REAL:CAPS" title="G_FILE_ATTRIBUTE_OWNER_USER_REAL">G_FILE_ATTRIBUTE_OWNER_USER_REAL</a></td>
|
876
|
+
</tr>
|
877
|
+
<tr>
|
878
|
+
<td class="define_keyword">#define</td>
|
879
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-OWNER-GROUP:CAPS" title="G_FILE_ATTRIBUTE_OWNER_GROUP">G_FILE_ATTRIBUTE_OWNER_GROUP</a></td>
|
880
|
+
</tr>
|
881
|
+
<tr>
|
882
|
+
<td class="define_keyword">#define</td>
|
883
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-THUMBNAIL-PATH:CAPS" title="G_FILE_ATTRIBUTE_THUMBNAIL_PATH">G_FILE_ATTRIBUTE_THUMBNAIL_PATH</a></td>
|
884
|
+
</tr>
|
885
|
+
<tr>
|
886
|
+
<td class="define_keyword">#define</td>
|
887
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-THUMBNAILING-FAILED:CAPS" title="G_FILE_ATTRIBUTE_THUMBNAILING_FAILED">G_FILE_ATTRIBUTE_THUMBNAILING_FAILED</a></td>
|
888
|
+
</tr>
|
889
|
+
<tr>
|
890
|
+
<td class="define_keyword">#define</td>
|
891
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-THUMBNAIL-IS-VALID:CAPS" title="G_FILE_ATTRIBUTE_THUMBNAIL_IS_VALID">G_FILE_ATTRIBUTE_THUMBNAIL_IS_VALID</a></td>
|
892
|
+
</tr>
|
893
|
+
<tr>
|
894
|
+
<td class="define_keyword">#define</td>
|
895
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-PREVIEW-ICON:CAPS" title="G_FILE_ATTRIBUTE_PREVIEW_ICON">G_FILE_ATTRIBUTE_PREVIEW_ICON</a></td>
|
896
|
+
</tr>
|
897
|
+
<tr>
|
898
|
+
<td class="define_keyword">#define</td>
|
899
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-FILESYSTEM-SIZE:CAPS" title="G_FILE_ATTRIBUTE_FILESYSTEM_SIZE">G_FILE_ATTRIBUTE_FILESYSTEM_SIZE</a></td>
|
900
|
+
</tr>
|
901
|
+
<tr>
|
902
|
+
<td class="define_keyword">#define</td>
|
903
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-FILESYSTEM-FREE:CAPS" title="G_FILE_ATTRIBUTE_FILESYSTEM_FREE">G_FILE_ATTRIBUTE_FILESYSTEM_FREE</a></td>
|
904
|
+
</tr>
|
905
|
+
<tr>
|
906
|
+
<td class="define_keyword">#define</td>
|
907
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-FILESYSTEM-USED:CAPS" title="G_FILE_ATTRIBUTE_FILESYSTEM_USED">G_FILE_ATTRIBUTE_FILESYSTEM_USED</a></td>
|
908
|
+
</tr>
|
909
|
+
<tr>
|
910
|
+
<td class="define_keyword">#define</td>
|
911
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-FILESYSTEM-TYPE:CAPS" title="G_FILE_ATTRIBUTE_FILESYSTEM_TYPE">G_FILE_ATTRIBUTE_FILESYSTEM_TYPE</a></td>
|
912
|
+
</tr>
|
913
|
+
<tr>
|
914
|
+
<td class="define_keyword">#define</td>
|
915
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-FILESYSTEM-READONLY:CAPS" title="G_FILE_ATTRIBUTE_FILESYSTEM_READONLY">G_FILE_ATTRIBUTE_FILESYSTEM_READONLY</a></td>
|
916
|
+
</tr>
|
917
|
+
<tr>
|
918
|
+
<td class="define_keyword">#define</td>
|
919
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-GVFS-BACKEND:CAPS" title="G_FILE_ATTRIBUTE_GVFS_BACKEND">G_FILE_ATTRIBUTE_GVFS_BACKEND</a></td>
|
920
|
+
</tr>
|
921
|
+
<tr>
|
922
|
+
<td class="define_keyword">#define</td>
|
923
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-SELINUX-CONTEXT:CAPS" title="G_FILE_ATTRIBUTE_SELINUX_CONTEXT">G_FILE_ATTRIBUTE_SELINUX_CONTEXT</a></td>
|
924
|
+
</tr>
|
925
|
+
<tr>
|
926
|
+
<td class="define_keyword">#define</td>
|
927
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-TRASH-ITEM-COUNT:CAPS" title="G_FILE_ATTRIBUTE_TRASH_ITEM_COUNT">G_FILE_ATTRIBUTE_TRASH_ITEM_COUNT</a></td>
|
928
|
+
</tr>
|
929
|
+
<tr>
|
930
|
+
<td class="define_keyword">#define</td>
|
931
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-TRASH-DELETION-DATE:CAPS" title="G_FILE_ATTRIBUTE_TRASH_DELETION_DATE">G_FILE_ATTRIBUTE_TRASH_DELETION_DATE</a></td>
|
932
|
+
</tr>
|
933
|
+
<tr>
|
934
|
+
<td class="define_keyword">#define</td>
|
935
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-TRASH-ORIG-PATH:CAPS" title="G_FILE_ATTRIBUTE_TRASH_ORIG_PATH">G_FILE_ATTRIBUTE_TRASH_ORIG_PATH</a></td>
|
936
|
+
</tr>
|
937
|
+
<tr>
|
938
|
+
<td class="define_keyword">#define</td>
|
939
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-FILESYSTEM-USE-PREVIEW:CAPS" title="G_FILE_ATTRIBUTE_FILESYSTEM_USE_PREVIEW">G_FILE_ATTRIBUTE_FILESYSTEM_USE_PREVIEW</a></td>
|
940
|
+
</tr>
|
941
|
+
<tr>
|
942
|
+
<td class="define_keyword">#define</td>
|
943
|
+
<td class="function_name"><a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-DESCRIPTION:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_DESCRIPTION">G_FILE_ATTRIBUTE_STANDARD_DESCRIPTION</a></td>
|
944
|
+
</tr>
|
945
|
+
</tbody>
|
946
|
+
</table></div>
|
947
|
+
</div>
|
948
|
+
<div class="refsect1">
|
949
|
+
<a name="GFileInfo.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
950
|
+
<pre class="screen"> GBoxed
|
951
|
+
<span class="lineart">╰──</span> GFileAttributeMatcher
|
952
|
+
<a href="../gobject/gobject-The-Base-Object-Type.html#GObject">GObject</a>
|
953
|
+
<span class="lineart">╰──</span> GFileInfo
|
954
|
+
</pre>
|
955
|
+
</div>
|
956
|
+
<div class="refsect1">
|
957
|
+
<a name="GFileInfo.includes"></a><h2>Includes</h2>
|
958
|
+
<pre class="synopsis">#include <gio/gio.h>
|
959
|
+
</pre>
|
960
|
+
</div>
|
961
|
+
<div class="refsect1">
|
962
|
+
<a name="GFileInfo.description"></a><h2>Description</h2>
|
963
|
+
<p>Functionality for manipulating basic metadata for files. <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>
|
964
|
+
implements methods for getting information that all files should
|
965
|
+
contain, and allows for manipulation of extended attributes.</p>
|
966
|
+
<p>See <a class="link" href="gio-GFileAttribute.html" title="GFileAttribute">GFileAttribute</a> for more information on how
|
967
|
+
GIO handles file attributes.</p>
|
968
|
+
<p>To obtain a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> for a <a class="link" href="GFile.html" title="GFile"><span class="type">GFile</span></a>, use <a class="link" href="GFile.html#g-file-query-info" title="g_file_query_info ()"><code class="function">g_file_query_info()</code></a> (or its
|
969
|
+
async variant). To obtain a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> for a file input or output
|
970
|
+
stream, use <a class="link" href="GFileInputStream.html#g-file-input-stream-query-info" title="g_file_input_stream_query_info ()"><code class="function">g_file_input_stream_query_info()</code></a> or
|
971
|
+
<a class="link" href="GFileOutputStream.html#g-file-output-stream-query-info" title="g_file_output_stream_query_info ()"><code class="function">g_file_output_stream_query_info()</code></a> (or their async variants).</p>
|
972
|
+
<p>To change the actual attributes of a file, you should then set the
|
973
|
+
attribute in the <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> and call <a class="link" href="GFile.html#g-file-set-attributes-from-info" title="g_file_set_attributes_from_info ()"><code class="function">g_file_set_attributes_from_info()</code></a>
|
974
|
+
or <a class="link" href="GFile.html#g-file-set-attributes-async" title="g_file_set_attributes_async ()"><code class="function">g_file_set_attributes_async()</code></a> on a GFile.</p>
|
975
|
+
<p>However, not all attributes can be changed in the file. For instance,
|
976
|
+
the actual size of a file cannot be changed via <a class="link" href="GFileInfo.html#g-file-info-set-size" title="g_file_info_set_size ()"><code class="function">g_file_info_set_size()</code></a>.
|
977
|
+
You may call <a class="link" href="GFile.html#g-file-query-settable-attributes" title="g_file_query_settable_attributes ()"><code class="function">g_file_query_settable_attributes()</code></a> and
|
978
|
+
<a class="link" href="GFile.html#g-file-query-writable-namespaces" title="g_file_query_writable_namespaces ()"><code class="function">g_file_query_writable_namespaces()</code></a> to discover the settable attributes
|
979
|
+
of a particular file at runtime.</p>
|
980
|
+
<p><a class="link" href="GFileInfo.html#GFileAttributeMatcher"><span class="type">GFileAttributeMatcher</span></a> allows for searching through a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> for
|
981
|
+
attributes.</p>
|
982
|
+
</div>
|
983
|
+
<div class="refsect1">
|
984
|
+
<a name="GFileInfo.functions_details"></a><h2>Functions</h2>
|
985
|
+
<div class="refsect2">
|
986
|
+
<a name="g-file-info-new"></a><h3>g_file_info_new ()</h3>
|
987
|
+
<pre class="programlisting"><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="returnvalue">GFileInfo</span></a> *
|
988
|
+
g_file_info_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
989
|
+
<p>Creates a new file info structure.</p>
|
990
|
+
<div class="refsect3">
|
991
|
+
<a name="id-1.4.2.4.9.2.5"></a><h4>Returns</h4>
|
992
|
+
<p> a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p>
|
993
|
+
<p></p>
|
994
|
+
</div>
|
995
|
+
</div>
|
996
|
+
<hr>
|
997
|
+
<div class="refsect2">
|
998
|
+
<a name="g-file-info-dup"></a><h3>g_file_info_dup ()</h3>
|
999
|
+
<pre class="programlisting"><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="returnvalue">GFileInfo</span></a> *
|
1000
|
+
g_file_info_dup (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *other</code></em>);</pre>
|
1001
|
+
<p>Duplicates a file info structure.</p>
|
1002
|
+
<div class="refsect3">
|
1003
|
+
<a name="id-1.4.2.4.9.3.5"></a><h4>Parameters</h4>
|
1004
|
+
<div class="informaltable"><table width="100%" border="0">
|
1005
|
+
<colgroup>
|
1006
|
+
<col width="150px" class="parameters_name">
|
1007
|
+
<col class="parameters_description">
|
1008
|
+
<col width="200px" class="parameters_annotations">
|
1009
|
+
</colgroup>
|
1010
|
+
<tbody><tr>
|
1011
|
+
<td class="parameter_name"><p>other</p></td>
|
1012
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
1013
|
+
<td class="parameter_annotations"> </td>
|
1014
|
+
</tr></tbody>
|
1015
|
+
</table></div>
|
1016
|
+
</div>
|
1017
|
+
<div class="refsect3">
|
1018
|
+
<a name="id-1.4.2.4.9.3.6"></a><h4>Returns</h4>
|
1019
|
+
<p> a duplicate <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> of <em class="parameter"><code>other</code></em>
|
1020
|
+
. </p>
|
1021
|
+
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
|
1022
|
+
</div>
|
1023
|
+
</div>
|
1024
|
+
<hr>
|
1025
|
+
<div class="refsect2">
|
1026
|
+
<a name="g-file-info-copy-into"></a><h3>g_file_info_copy_into ()</h3>
|
1027
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1028
|
+
g_file_info_copy_into (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *src_info</code></em>,
|
1029
|
+
<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *dest_info</code></em>);</pre>
|
1030
|
+
<p>Copies all of the <a class="link" href="gio-GFileAttribute.html" title="GFileAttribute">GFileAttribute</a>
|
1031
|
+
from <em class="parameter"><code>src_info</code></em>
|
1032
|
+
to <em class="parameter"><code>dest_info</code></em>
|
1033
|
+
.</p>
|
1034
|
+
<div class="refsect3">
|
1035
|
+
<a name="id-1.4.2.4.9.4.5"></a><h4>Parameters</h4>
|
1036
|
+
<div class="informaltable"><table width="100%" border="0">
|
1037
|
+
<colgroup>
|
1038
|
+
<col width="150px" class="parameters_name">
|
1039
|
+
<col class="parameters_description">
|
1040
|
+
<col width="200px" class="parameters_annotations">
|
1041
|
+
</colgroup>
|
1042
|
+
<tbody>
|
1043
|
+
<tr>
|
1044
|
+
<td class="parameter_name"><p>src_info</p></td>
|
1045
|
+
<td class="parameter_description"><p>source to copy attributes from.</p></td>
|
1046
|
+
<td class="parameter_annotations"> </td>
|
1047
|
+
</tr>
|
1048
|
+
<tr>
|
1049
|
+
<td class="parameter_name"><p>dest_info</p></td>
|
1050
|
+
<td class="parameter_description"><p>destination to copy attributes to.</p></td>
|
1051
|
+
<td class="parameter_annotations"> </td>
|
1052
|
+
</tr>
|
1053
|
+
</tbody>
|
1054
|
+
</table></div>
|
1055
|
+
</div>
|
1056
|
+
</div>
|
1057
|
+
<hr>
|
1058
|
+
<div class="refsect2">
|
1059
|
+
<a name="g-file-info-has-attribute"></a><h3>g_file_info_has_attribute ()</h3>
|
1060
|
+
<pre class="programlisting"><a href="../glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
1061
|
+
g_file_info_has_attribute (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
|
1062
|
+
<em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>);</pre>
|
1063
|
+
<p>Checks if a file info structure has an attribute named <em class="parameter"><code>attribute</code></em>
|
1064
|
+
.</p>
|
1065
|
+
<div class="refsect3">
|
1066
|
+
<a name="id-1.4.2.4.9.5.5"></a><h4>Parameters</h4>
|
1067
|
+
<div class="informaltable"><table width="100%" border="0">
|
1068
|
+
<colgroup>
|
1069
|
+
<col width="150px" class="parameters_name">
|
1070
|
+
<col class="parameters_description">
|
1071
|
+
<col width="200px" class="parameters_annotations">
|
1072
|
+
</colgroup>
|
1073
|
+
<tbody>
|
1074
|
+
<tr>
|
1075
|
+
<td class="parameter_name"><p>info</p></td>
|
1076
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
1077
|
+
<td class="parameter_annotations"> </td>
|
1078
|
+
</tr>
|
1079
|
+
<tr>
|
1080
|
+
<td class="parameter_name"><p>attribute</p></td>
|
1081
|
+
<td class="parameter_description"><p>a file attribute key.</p></td>
|
1082
|
+
<td class="parameter_annotations"> </td>
|
1083
|
+
</tr>
|
1084
|
+
</tbody>
|
1085
|
+
</table></div>
|
1086
|
+
</div>
|
1087
|
+
<div class="refsect3">
|
1088
|
+
<a name="id-1.4.2.4.9.5.6"></a><h4>Returns</h4>
|
1089
|
+
<p> <a href="../glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>Ginfo</code></em>
|
1090
|
+
has an attribute named <em class="parameter"><code>attribute</code></em>
|
1091
|
+
,
|
1092
|
+
<a href="../glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
|
1093
|
+
<p></p>
|
1094
|
+
</div>
|
1095
|
+
</div>
|
1096
|
+
<hr>
|
1097
|
+
<div class="refsect2">
|
1098
|
+
<a name="g-file-info-has-namespace"></a><h3>g_file_info_has_namespace ()</h3>
|
1099
|
+
<pre class="programlisting"><a href="../glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
1100
|
+
g_file_info_has_namespace (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
|
1101
|
+
<em class="parameter"><code>const <span class="type">char</span> *name_space</code></em>);</pre>
|
1102
|
+
<p>Checks if a file info structure has an attribute in the
|
1103
|
+
specified <em class="parameter"><code>name_space</code></em>
|
1104
|
+
.</p>
|
1105
|
+
<div class="refsect3">
|
1106
|
+
<a name="id-1.4.2.4.9.6.5"></a><h4>Parameters</h4>
|
1107
|
+
<div class="informaltable"><table width="100%" border="0">
|
1108
|
+
<colgroup>
|
1109
|
+
<col width="150px" class="parameters_name">
|
1110
|
+
<col class="parameters_description">
|
1111
|
+
<col width="200px" class="parameters_annotations">
|
1112
|
+
</colgroup>
|
1113
|
+
<tbody>
|
1114
|
+
<tr>
|
1115
|
+
<td class="parameter_name"><p>info</p></td>
|
1116
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
1117
|
+
<td class="parameter_annotations"> </td>
|
1118
|
+
</tr>
|
1119
|
+
<tr>
|
1120
|
+
<td class="parameter_name"><p>name_space</p></td>
|
1121
|
+
<td class="parameter_description"><p>a file attribute namespace.</p></td>
|
1122
|
+
<td class="parameter_annotations"> </td>
|
1123
|
+
</tr>
|
1124
|
+
</tbody>
|
1125
|
+
</table></div>
|
1126
|
+
</div>
|
1127
|
+
<div class="refsect3">
|
1128
|
+
<a name="id-1.4.2.4.9.6.6"></a><h4>Returns</h4>
|
1129
|
+
<p> <a href="../glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>Ginfo</code></em>
|
1130
|
+
has an attribute in <em class="parameter"><code>name_space</code></em>
|
1131
|
+
,
|
1132
|
+
<a href="../glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
|
1133
|
+
<p></p>
|
1134
|
+
</div>
|
1135
|
+
<p class="since">Since 2.22</p>
|
1136
|
+
</div>
|
1137
|
+
<hr>
|
1138
|
+
<div class="refsect2">
|
1139
|
+
<a name="g-file-info-list-attributes"></a><h3>g_file_info_list_attributes ()</h3>
|
1140
|
+
<pre class="programlisting"><span class="returnvalue">char</span> **
|
1141
|
+
g_file_info_list_attributes (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
|
1142
|
+
<em class="parameter"><code>const <span class="type">char</span> *name_space</code></em>);</pre>
|
1143
|
+
<p>Lists the file info structure's attributes.</p>
|
1144
|
+
<div class="refsect3">
|
1145
|
+
<a name="id-1.4.2.4.9.7.5"></a><h4>Parameters</h4>
|
1146
|
+
<div class="informaltable"><table width="100%" border="0">
|
1147
|
+
<colgroup>
|
1148
|
+
<col width="150px" class="parameters_name">
|
1149
|
+
<col class="parameters_description">
|
1150
|
+
<col width="200px" class="parameters_annotations">
|
1151
|
+
</colgroup>
|
1152
|
+
<tbody>
|
1153
|
+
<tr>
|
1154
|
+
<td class="parameter_name"><p>info</p></td>
|
1155
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
1156
|
+
<td class="parameter_annotations"> </td>
|
1157
|
+
</tr>
|
1158
|
+
<tr>
|
1159
|
+
<td class="parameter_name"><p>name_space</p></td>
|
1160
|
+
<td class="parameter_description"><p>a file attribute key's namespace.</p></td>
|
1161
|
+
<td class="parameter_annotations"> </td>
|
1162
|
+
</tr>
|
1163
|
+
</tbody>
|
1164
|
+
</table></div>
|
1165
|
+
</div>
|
1166
|
+
<div class="refsect3">
|
1167
|
+
<a name="id-1.4.2.4.9.7.6"></a><h4>Returns</h4>
|
1168
|
+
<p> a
|
1169
|
+
null-terminated array of strings of all of the possible attribute
|
1170
|
+
types for the given <em class="parameter"><code>name_space</code></em>
|
1171
|
+
, or <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> on error. </p>
|
1172
|
+
<p><span class="annotation">[<acronym title="NULL may be passed as the value in, out, in-out; or as a return value."><span class="acronym">nullable</span></acronym>][<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> zero-terminated=1][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
|
1173
|
+
</div>
|
1174
|
+
</div>
|
1175
|
+
<hr>
|
1176
|
+
<div class="refsect2">
|
1177
|
+
<a name="g-file-info-get-attribute-type"></a><h3>g_file_info_get_attribute_type ()</h3>
|
1178
|
+
<pre class="programlisting"><a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="returnvalue">GFileAttributeType</span></a>
|
1179
|
+
g_file_info_get_attribute_type (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
|
1180
|
+
<em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>);</pre>
|
1181
|
+
<p>Gets the attribute type for an attribute key.</p>
|
1182
|
+
<div class="refsect3">
|
1183
|
+
<a name="id-1.4.2.4.9.8.5"></a><h4>Parameters</h4>
|
1184
|
+
<div class="informaltable"><table width="100%" border="0">
|
1185
|
+
<colgroup>
|
1186
|
+
<col width="150px" class="parameters_name">
|
1187
|
+
<col class="parameters_description">
|
1188
|
+
<col width="200px" class="parameters_annotations">
|
1189
|
+
</colgroup>
|
1190
|
+
<tbody>
|
1191
|
+
<tr>
|
1192
|
+
<td class="parameter_name"><p>info</p></td>
|
1193
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
1194
|
+
<td class="parameter_annotations"> </td>
|
1195
|
+
</tr>
|
1196
|
+
<tr>
|
1197
|
+
<td class="parameter_name"><p>attribute</p></td>
|
1198
|
+
<td class="parameter_description"><p>a file attribute key.</p></td>
|
1199
|
+
<td class="parameter_annotations"> </td>
|
1200
|
+
</tr>
|
1201
|
+
</tbody>
|
1202
|
+
</table></div>
|
1203
|
+
</div>
|
1204
|
+
<div class="refsect3">
|
1205
|
+
<a name="id-1.4.2.4.9.8.6"></a><h4>Returns</h4>
|
1206
|
+
<p> a <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> for the given <em class="parameter"><code>attribute</code></em>
|
1207
|
+
, or
|
1208
|
+
<a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-INVALID:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_INVALID</code></a> if the key is not set.</p>
|
1209
|
+
<p></p>
|
1210
|
+
</div>
|
1211
|
+
</div>
|
1212
|
+
<hr>
|
1213
|
+
<div class="refsect2">
|
1214
|
+
<a name="g-file-info-remove-attribute"></a><h3>g_file_info_remove_attribute ()</h3>
|
1215
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1216
|
+
g_file_info_remove_attribute (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
|
1217
|
+
<em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>);</pre>
|
1218
|
+
<p>Removes all cases of <em class="parameter"><code>attribute</code></em>
|
1219
|
+
from <em class="parameter"><code>info</code></em>
|
1220
|
+
if it exists.</p>
|
1221
|
+
<div class="refsect3">
|
1222
|
+
<a name="id-1.4.2.4.9.9.5"></a><h4>Parameters</h4>
|
1223
|
+
<div class="informaltable"><table width="100%" border="0">
|
1224
|
+
<colgroup>
|
1225
|
+
<col width="150px" class="parameters_name">
|
1226
|
+
<col class="parameters_description">
|
1227
|
+
<col width="200px" class="parameters_annotations">
|
1228
|
+
</colgroup>
|
1229
|
+
<tbody>
|
1230
|
+
<tr>
|
1231
|
+
<td class="parameter_name"><p>info</p></td>
|
1232
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
1233
|
+
<td class="parameter_annotations"> </td>
|
1234
|
+
</tr>
|
1235
|
+
<tr>
|
1236
|
+
<td class="parameter_name"><p>attribute</p></td>
|
1237
|
+
<td class="parameter_description"><p>a file attribute key.</p></td>
|
1238
|
+
<td class="parameter_annotations"> </td>
|
1239
|
+
</tr>
|
1240
|
+
</tbody>
|
1241
|
+
</table></div>
|
1242
|
+
</div>
|
1243
|
+
</div>
|
1244
|
+
<hr>
|
1245
|
+
<div class="refsect2">
|
1246
|
+
<a name="g-file-info-get-attribute-as-string"></a><h3>g_file_info_get_attribute_as_string ()</h3>
|
1247
|
+
<pre class="programlisting"><span class="returnvalue">char</span> *
|
1248
|
+
g_file_info_get_attribute_as_string (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
|
1249
|
+
<em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>);</pre>
|
1250
|
+
<p>Gets the value of a attribute, formated as a string.
|
1251
|
+
This escapes things as needed to make the string valid
|
1252
|
+
utf8.</p>
|
1253
|
+
<div class="refsect3">
|
1254
|
+
<a name="id-1.4.2.4.9.10.5"></a><h4>Parameters</h4>
|
1255
|
+
<div class="informaltable"><table width="100%" border="0">
|
1256
|
+
<colgroup>
|
1257
|
+
<col width="150px" class="parameters_name">
|
1258
|
+
<col class="parameters_description">
|
1259
|
+
<col width="200px" class="parameters_annotations">
|
1260
|
+
</colgroup>
|
1261
|
+
<tbody>
|
1262
|
+
<tr>
|
1263
|
+
<td class="parameter_name"><p>info</p></td>
|
1264
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
1265
|
+
<td class="parameter_annotations"> </td>
|
1266
|
+
</tr>
|
1267
|
+
<tr>
|
1268
|
+
<td class="parameter_name"><p>attribute</p></td>
|
1269
|
+
<td class="parameter_description"><p>a file attribute key.</p></td>
|
1270
|
+
<td class="parameter_annotations"> </td>
|
1271
|
+
</tr>
|
1272
|
+
</tbody>
|
1273
|
+
</table></div>
|
1274
|
+
</div>
|
1275
|
+
<div class="refsect3">
|
1276
|
+
<a name="id-1.4.2.4.9.10.6"></a><h4>Returns</h4>
|
1277
|
+
<p> a UTF-8 string associated with the given <em class="parameter"><code>attribute</code></em>
|
1278
|
+
.
|
1279
|
+
When you're done with the string it must be freed with <a href="../glib/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>.</p>
|
1280
|
+
<p></p>
|
1281
|
+
</div>
|
1282
|
+
</div>
|
1283
|
+
<hr>
|
1284
|
+
<div class="refsect2">
|
1285
|
+
<a name="g-file-info-get-attribute-data"></a><h3>g_file_info_get_attribute_data ()</h3>
|
1286
|
+
<pre class="programlisting"><a href="../glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
1287
|
+
g_file_info_get_attribute_data (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
|
1288
|
+
<em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>,
|
1289
|
+
<em class="parameter"><code><a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> *type</code></em>,
|
1290
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> *value_pp</code></em>,
|
1291
|
+
<em class="parameter"><code><a class="link" href="gio-GFileAttribute.html#GFileAttributeStatus" title="enum GFileAttributeStatus"><span class="type">GFileAttributeStatus</span></a> *status</code></em>);</pre>
|
1292
|
+
<p>Gets the attribute type, value and status for an attribute key.</p>
|
1293
|
+
<div class="refsect3">
|
1294
|
+
<a name="id-1.4.2.4.9.11.5"></a><h4>Parameters</h4>
|
1295
|
+
<div class="informaltable"><table width="100%" border="0">
|
1296
|
+
<colgroup>
|
1297
|
+
<col width="150px" class="parameters_name">
|
1298
|
+
<col class="parameters_description">
|
1299
|
+
<col width="200px" class="parameters_annotations">
|
1300
|
+
</colgroup>
|
1301
|
+
<tbody>
|
1302
|
+
<tr>
|
1303
|
+
<td class="parameter_name"><p>info</p></td>
|
1304
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a></p></td>
|
1305
|
+
<td class="parameter_annotations"> </td>
|
1306
|
+
</tr>
|
1307
|
+
<tr>
|
1308
|
+
<td class="parameter_name"><p>attribute</p></td>
|
1309
|
+
<td class="parameter_description"><p>a file attribute key</p></td>
|
1310
|
+
<td class="parameter_annotations"> </td>
|
1311
|
+
</tr>
|
1312
|
+
<tr>
|
1313
|
+
<td class="parameter_name"><p>type</p></td>
|
1314
|
+
<td class="parameter_description"><p> return location for the attribute type, or <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
|
1315
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
1316
|
+
</tr>
|
1317
|
+
<tr>
|
1318
|
+
<td class="parameter_name"><p>value_pp</p></td>
|
1319
|
+
<td class="parameter_description"><p> return location for the attribute value, or <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
|
1320
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
1321
|
+
</tr>
|
1322
|
+
<tr>
|
1323
|
+
<td class="parameter_name"><p>status</p></td>
|
1324
|
+
<td class="parameter_description"><p> return location for the attribute status, or <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
|
1325
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
1326
|
+
</tr>
|
1327
|
+
</tbody>
|
1328
|
+
</table></div>
|
1329
|
+
</div>
|
1330
|
+
<div class="refsect3">
|
1331
|
+
<a name="id-1.4.2.4.9.11.6"></a><h4>Returns</h4>
|
1332
|
+
<p> <a href="../glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>info</code></em>
|
1333
|
+
has an attribute named <em class="parameter"><code>attribute</code></em>
|
1334
|
+
,
|
1335
|
+
<a href="../glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise. </p>
|
1336
|
+
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
|
1337
|
+
</div>
|
1338
|
+
</div>
|
1339
|
+
<hr>
|
1340
|
+
<div class="refsect2">
|
1341
|
+
<a name="g-file-info-get-attribute-status"></a><h3>g_file_info_get_attribute_status ()</h3>
|
1342
|
+
<pre class="programlisting"><a class="link" href="gio-GFileAttribute.html#GFileAttributeStatus" title="enum GFileAttributeStatus"><span class="returnvalue">GFileAttributeStatus</span></a>
|
1343
|
+
g_file_info_get_attribute_status (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
|
1344
|
+
<em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>);</pre>
|
1345
|
+
<p>Gets the attribute status for an attribute key.</p>
|
1346
|
+
<div class="refsect3">
|
1347
|
+
<a name="id-1.4.2.4.9.12.5"></a><h4>Parameters</h4>
|
1348
|
+
<div class="informaltable"><table width="100%" border="0">
|
1349
|
+
<colgroup>
|
1350
|
+
<col width="150px" class="parameters_name">
|
1351
|
+
<col class="parameters_description">
|
1352
|
+
<col width="200px" class="parameters_annotations">
|
1353
|
+
</colgroup>
|
1354
|
+
<tbody>
|
1355
|
+
<tr>
|
1356
|
+
<td class="parameter_name"><p>info</p></td>
|
1357
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a></p></td>
|
1358
|
+
<td class="parameter_annotations"> </td>
|
1359
|
+
</tr>
|
1360
|
+
<tr>
|
1361
|
+
<td class="parameter_name"><p>attribute</p></td>
|
1362
|
+
<td class="parameter_description"><p>a file attribute key</p></td>
|
1363
|
+
<td class="parameter_annotations"> </td>
|
1364
|
+
</tr>
|
1365
|
+
</tbody>
|
1366
|
+
</table></div>
|
1367
|
+
</div>
|
1368
|
+
<div class="refsect3">
|
1369
|
+
<a name="id-1.4.2.4.9.12.6"></a><h4>Returns</h4>
|
1370
|
+
<p> a <a class="link" href="gio-GFileAttribute.html#GFileAttributeStatus" title="enum GFileAttributeStatus"><span class="type">GFileAttributeStatus</span></a> for the given <em class="parameter"><code>attribute</code></em>
|
1371
|
+
, or
|
1372
|
+
<a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-STATUS-UNSET:CAPS"><code class="literal">G_FILE_ATTRIBUTE_STATUS_UNSET</code></a> if the key is invalid.</p>
|
1373
|
+
<p></p>
|
1374
|
+
</div>
|
1375
|
+
</div>
|
1376
|
+
<hr>
|
1377
|
+
<div class="refsect2">
|
1378
|
+
<a name="g-file-info-get-attribute-string"></a><h3>g_file_info_get_attribute_string ()</h3>
|
1379
|
+
<pre class="programlisting">const <span class="returnvalue">char</span> *
|
1380
|
+
g_file_info_get_attribute_string (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
|
1381
|
+
<em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>);</pre>
|
1382
|
+
<p>Gets the value of a string attribute. If the attribute does
|
1383
|
+
not contain a string, <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> will be returned.</p>
|
1384
|
+
<div class="refsect3">
|
1385
|
+
<a name="id-1.4.2.4.9.13.5"></a><h4>Parameters</h4>
|
1386
|
+
<div class="informaltable"><table width="100%" border="0">
|
1387
|
+
<colgroup>
|
1388
|
+
<col width="150px" class="parameters_name">
|
1389
|
+
<col class="parameters_description">
|
1390
|
+
<col width="200px" class="parameters_annotations">
|
1391
|
+
</colgroup>
|
1392
|
+
<tbody>
|
1393
|
+
<tr>
|
1394
|
+
<td class="parameter_name"><p>info</p></td>
|
1395
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
1396
|
+
<td class="parameter_annotations"> </td>
|
1397
|
+
</tr>
|
1398
|
+
<tr>
|
1399
|
+
<td class="parameter_name"><p>attribute</p></td>
|
1400
|
+
<td class="parameter_description"><p>a file attribute key.</p></td>
|
1401
|
+
<td class="parameter_annotations"> </td>
|
1402
|
+
</tr>
|
1403
|
+
</tbody>
|
1404
|
+
</table></div>
|
1405
|
+
</div>
|
1406
|
+
<div class="refsect3">
|
1407
|
+
<a name="id-1.4.2.4.9.13.6"></a><h4>Returns</h4>
|
1408
|
+
<p> the contents of the <em class="parameter"><code>attribute</code></em>
|
1409
|
+
value as a UTF-8 string, or
|
1410
|
+
<a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> otherwise.</p>
|
1411
|
+
<p></p>
|
1412
|
+
</div>
|
1413
|
+
</div>
|
1414
|
+
<hr>
|
1415
|
+
<div class="refsect2">
|
1416
|
+
<a name="g-file-info-get-attribute-stringv"></a><h3>g_file_info_get_attribute_stringv ()</h3>
|
1417
|
+
<pre class="programlisting"><span class="returnvalue">char</span> **
|
1418
|
+
g_file_info_get_attribute_stringv (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
|
1419
|
+
<em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>);</pre>
|
1420
|
+
<p>Gets the value of a stringv attribute. If the attribute does
|
1421
|
+
not contain a stringv, <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> will be returned.</p>
|
1422
|
+
<div class="refsect3">
|
1423
|
+
<a name="id-1.4.2.4.9.14.5"></a><h4>Parameters</h4>
|
1424
|
+
<div class="informaltable"><table width="100%" border="0">
|
1425
|
+
<colgroup>
|
1426
|
+
<col width="150px" class="parameters_name">
|
1427
|
+
<col class="parameters_description">
|
1428
|
+
<col width="200px" class="parameters_annotations">
|
1429
|
+
</colgroup>
|
1430
|
+
<tbody>
|
1431
|
+
<tr>
|
1432
|
+
<td class="parameter_name"><p>info</p></td>
|
1433
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
1434
|
+
<td class="parameter_annotations"> </td>
|
1435
|
+
</tr>
|
1436
|
+
<tr>
|
1437
|
+
<td class="parameter_name"><p>attribute</p></td>
|
1438
|
+
<td class="parameter_description"><p>a file attribute key.</p></td>
|
1439
|
+
<td class="parameter_annotations"> </td>
|
1440
|
+
</tr>
|
1441
|
+
</tbody>
|
1442
|
+
</table></div>
|
1443
|
+
</div>
|
1444
|
+
<div class="refsect3">
|
1445
|
+
<a name="id-1.4.2.4.9.14.6"></a><h4>Returns</h4>
|
1446
|
+
<p> the contents of the <em class="parameter"><code>attribute</code></em>
|
1447
|
+
value as a stringv, or
|
1448
|
+
<a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> otherwise. Do not free. These returned strings are UTF-8. </p>
|
1449
|
+
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
|
1450
|
+
</div>
|
1451
|
+
<p class="since">Since 2.22</p>
|
1452
|
+
</div>
|
1453
|
+
<hr>
|
1454
|
+
<div class="refsect2">
|
1455
|
+
<a name="g-file-info-get-attribute-byte-string"></a><h3>g_file_info_get_attribute_byte_string ()</h3>
|
1456
|
+
<pre class="programlisting">const <span class="returnvalue">char</span> *
|
1457
|
+
g_file_info_get_attribute_byte_string (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
|
1458
|
+
<em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>);</pre>
|
1459
|
+
<p>Gets the value of a byte string attribute. If the attribute does
|
1460
|
+
not contain a byte string, <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> will be returned.</p>
|
1461
|
+
<div class="refsect3">
|
1462
|
+
<a name="id-1.4.2.4.9.15.5"></a><h4>Parameters</h4>
|
1463
|
+
<div class="informaltable"><table width="100%" border="0">
|
1464
|
+
<colgroup>
|
1465
|
+
<col width="150px" class="parameters_name">
|
1466
|
+
<col class="parameters_description">
|
1467
|
+
<col width="200px" class="parameters_annotations">
|
1468
|
+
</colgroup>
|
1469
|
+
<tbody>
|
1470
|
+
<tr>
|
1471
|
+
<td class="parameter_name"><p>info</p></td>
|
1472
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
1473
|
+
<td class="parameter_annotations"> </td>
|
1474
|
+
</tr>
|
1475
|
+
<tr>
|
1476
|
+
<td class="parameter_name"><p>attribute</p></td>
|
1477
|
+
<td class="parameter_description"><p>a file attribute key.</p></td>
|
1478
|
+
<td class="parameter_annotations"> </td>
|
1479
|
+
</tr>
|
1480
|
+
</tbody>
|
1481
|
+
</table></div>
|
1482
|
+
</div>
|
1483
|
+
<div class="refsect3">
|
1484
|
+
<a name="id-1.4.2.4.9.15.6"></a><h4>Returns</h4>
|
1485
|
+
<p> the contents of the <em class="parameter"><code>attribute</code></em>
|
1486
|
+
value as a byte string, or
|
1487
|
+
<a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> otherwise.</p>
|
1488
|
+
<p></p>
|
1489
|
+
</div>
|
1490
|
+
</div>
|
1491
|
+
<hr>
|
1492
|
+
<div class="refsect2">
|
1493
|
+
<a name="g-file-info-get-attribute-boolean"></a><h3>g_file_info_get_attribute_boolean ()</h3>
|
1494
|
+
<pre class="programlisting"><a href="../glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
1495
|
+
g_file_info_get_attribute_boolean (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
|
1496
|
+
<em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>);</pre>
|
1497
|
+
<p>Gets the value of a boolean attribute. If the attribute does not
|
1498
|
+
contain a boolean value, <a href="../glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> will be returned.</p>
|
1499
|
+
<div class="refsect3">
|
1500
|
+
<a name="id-1.4.2.4.9.16.5"></a><h4>Parameters</h4>
|
1501
|
+
<div class="informaltable"><table width="100%" border="0">
|
1502
|
+
<colgroup>
|
1503
|
+
<col width="150px" class="parameters_name">
|
1504
|
+
<col class="parameters_description">
|
1505
|
+
<col width="200px" class="parameters_annotations">
|
1506
|
+
</colgroup>
|
1507
|
+
<tbody>
|
1508
|
+
<tr>
|
1509
|
+
<td class="parameter_name"><p>info</p></td>
|
1510
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
1511
|
+
<td class="parameter_annotations"> </td>
|
1512
|
+
</tr>
|
1513
|
+
<tr>
|
1514
|
+
<td class="parameter_name"><p>attribute</p></td>
|
1515
|
+
<td class="parameter_description"><p>a file attribute key.</p></td>
|
1516
|
+
<td class="parameter_annotations"> </td>
|
1517
|
+
</tr>
|
1518
|
+
</tbody>
|
1519
|
+
</table></div>
|
1520
|
+
</div>
|
1521
|
+
<div class="refsect3">
|
1522
|
+
<a name="id-1.4.2.4.9.16.6"></a><h4>Returns</h4>
|
1523
|
+
<p> the boolean value contained within the attribute.</p>
|
1524
|
+
<p></p>
|
1525
|
+
</div>
|
1526
|
+
</div>
|
1527
|
+
<hr>
|
1528
|
+
<div class="refsect2">
|
1529
|
+
<a name="g-file-info-get-attribute-uint32"></a><h3>g_file_info_get_attribute_uint32 ()</h3>
|
1530
|
+
<pre class="programlisting"><a href="../glib/glib-Basic-Types.html#guint32"><span class="returnvalue">guint32</span></a>
|
1531
|
+
g_file_info_get_attribute_uint32 (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
|
1532
|
+
<em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>);</pre>
|
1533
|
+
<p>Gets an unsigned 32-bit integer contained within the attribute. If the
|
1534
|
+
attribute does not contain an unsigned 32-bit integer, or is invalid,
|
1535
|
+
0 will be returned.</p>
|
1536
|
+
<div class="refsect3">
|
1537
|
+
<a name="id-1.4.2.4.9.17.5"></a><h4>Parameters</h4>
|
1538
|
+
<div class="informaltable"><table width="100%" border="0">
|
1539
|
+
<colgroup>
|
1540
|
+
<col width="150px" class="parameters_name">
|
1541
|
+
<col class="parameters_description">
|
1542
|
+
<col width="200px" class="parameters_annotations">
|
1543
|
+
</colgroup>
|
1544
|
+
<tbody>
|
1545
|
+
<tr>
|
1546
|
+
<td class="parameter_name"><p>info</p></td>
|
1547
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
1548
|
+
<td class="parameter_annotations"> </td>
|
1549
|
+
</tr>
|
1550
|
+
<tr>
|
1551
|
+
<td class="parameter_name"><p>attribute</p></td>
|
1552
|
+
<td class="parameter_description"><p>a file attribute key.</p></td>
|
1553
|
+
<td class="parameter_annotations"> </td>
|
1554
|
+
</tr>
|
1555
|
+
</tbody>
|
1556
|
+
</table></div>
|
1557
|
+
</div>
|
1558
|
+
<div class="refsect3">
|
1559
|
+
<a name="id-1.4.2.4.9.17.6"></a><h4>Returns</h4>
|
1560
|
+
<p> an unsigned 32-bit integer from the attribute.</p>
|
1561
|
+
<p></p>
|
1562
|
+
</div>
|
1563
|
+
</div>
|
1564
|
+
<hr>
|
1565
|
+
<div class="refsect2">
|
1566
|
+
<a name="g-file-info-get-attribute-int32"></a><h3>g_file_info_get_attribute_int32 ()</h3>
|
1567
|
+
<pre class="programlisting"><a href="../glib/glib-Basic-Types.html#gint32"><span class="returnvalue">gint32</span></a>
|
1568
|
+
g_file_info_get_attribute_int32 (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
|
1569
|
+
<em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>);</pre>
|
1570
|
+
<p>Gets a signed 32-bit integer contained within the attribute. If the
|
1571
|
+
attribute does not contain a signed 32-bit integer, or is invalid,
|
1572
|
+
0 will be returned.</p>
|
1573
|
+
<div class="refsect3">
|
1574
|
+
<a name="id-1.4.2.4.9.18.5"></a><h4>Parameters</h4>
|
1575
|
+
<div class="informaltable"><table width="100%" border="0">
|
1576
|
+
<colgroup>
|
1577
|
+
<col width="150px" class="parameters_name">
|
1578
|
+
<col class="parameters_description">
|
1579
|
+
<col width="200px" class="parameters_annotations">
|
1580
|
+
</colgroup>
|
1581
|
+
<tbody>
|
1582
|
+
<tr>
|
1583
|
+
<td class="parameter_name"><p>info</p></td>
|
1584
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
1585
|
+
<td class="parameter_annotations"> </td>
|
1586
|
+
</tr>
|
1587
|
+
<tr>
|
1588
|
+
<td class="parameter_name"><p>attribute</p></td>
|
1589
|
+
<td class="parameter_description"><p>a file attribute key.</p></td>
|
1590
|
+
<td class="parameter_annotations"> </td>
|
1591
|
+
</tr>
|
1592
|
+
</tbody>
|
1593
|
+
</table></div>
|
1594
|
+
</div>
|
1595
|
+
<div class="refsect3">
|
1596
|
+
<a name="id-1.4.2.4.9.18.6"></a><h4>Returns</h4>
|
1597
|
+
<p> a signed 32-bit integer from the attribute.</p>
|
1598
|
+
<p></p>
|
1599
|
+
</div>
|
1600
|
+
</div>
|
1601
|
+
<hr>
|
1602
|
+
<div class="refsect2">
|
1603
|
+
<a name="g-file-info-get-attribute-uint64"></a><h3>g_file_info_get_attribute_uint64 ()</h3>
|
1604
|
+
<pre class="programlisting"><a href="../glib/glib-Basic-Types.html#guint64"><span class="returnvalue">guint64</span></a>
|
1605
|
+
g_file_info_get_attribute_uint64 (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
|
1606
|
+
<em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>);</pre>
|
1607
|
+
<p>Gets a unsigned 64-bit integer contained within the attribute. If the
|
1608
|
+
attribute does not contain an unsigned 64-bit integer, or is invalid,
|
1609
|
+
0 will be returned.</p>
|
1610
|
+
<div class="refsect3">
|
1611
|
+
<a name="id-1.4.2.4.9.19.5"></a><h4>Parameters</h4>
|
1612
|
+
<div class="informaltable"><table width="100%" border="0">
|
1613
|
+
<colgroup>
|
1614
|
+
<col width="150px" class="parameters_name">
|
1615
|
+
<col class="parameters_description">
|
1616
|
+
<col width="200px" class="parameters_annotations">
|
1617
|
+
</colgroup>
|
1618
|
+
<tbody>
|
1619
|
+
<tr>
|
1620
|
+
<td class="parameter_name"><p>info</p></td>
|
1621
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
1622
|
+
<td class="parameter_annotations"> </td>
|
1623
|
+
</tr>
|
1624
|
+
<tr>
|
1625
|
+
<td class="parameter_name"><p>attribute</p></td>
|
1626
|
+
<td class="parameter_description"><p>a file attribute key.</p></td>
|
1627
|
+
<td class="parameter_annotations"> </td>
|
1628
|
+
</tr>
|
1629
|
+
</tbody>
|
1630
|
+
</table></div>
|
1631
|
+
</div>
|
1632
|
+
<div class="refsect3">
|
1633
|
+
<a name="id-1.4.2.4.9.19.6"></a><h4>Returns</h4>
|
1634
|
+
<p> a unsigned 64-bit integer from the attribute.</p>
|
1635
|
+
<p></p>
|
1636
|
+
</div>
|
1637
|
+
</div>
|
1638
|
+
<hr>
|
1639
|
+
<div class="refsect2">
|
1640
|
+
<a name="g-file-info-get-attribute-int64"></a><h3>g_file_info_get_attribute_int64 ()</h3>
|
1641
|
+
<pre class="programlisting"><a href="../glib/glib-Basic-Types.html#gint64"><span class="returnvalue">gint64</span></a>
|
1642
|
+
g_file_info_get_attribute_int64 (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
|
1643
|
+
<em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>);</pre>
|
1644
|
+
<p>Gets a signed 64-bit integer contained within the attribute. If the
|
1645
|
+
attribute does not contain an signed 64-bit integer, or is invalid,
|
1646
|
+
0 will be returned.</p>
|
1647
|
+
<div class="refsect3">
|
1648
|
+
<a name="id-1.4.2.4.9.20.5"></a><h4>Parameters</h4>
|
1649
|
+
<div class="informaltable"><table width="100%" border="0">
|
1650
|
+
<colgroup>
|
1651
|
+
<col width="150px" class="parameters_name">
|
1652
|
+
<col class="parameters_description">
|
1653
|
+
<col width="200px" class="parameters_annotations">
|
1654
|
+
</colgroup>
|
1655
|
+
<tbody>
|
1656
|
+
<tr>
|
1657
|
+
<td class="parameter_name"><p>info</p></td>
|
1658
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
1659
|
+
<td class="parameter_annotations"> </td>
|
1660
|
+
</tr>
|
1661
|
+
<tr>
|
1662
|
+
<td class="parameter_name"><p>attribute</p></td>
|
1663
|
+
<td class="parameter_description"><p>a file attribute key.</p></td>
|
1664
|
+
<td class="parameter_annotations"> </td>
|
1665
|
+
</tr>
|
1666
|
+
</tbody>
|
1667
|
+
</table></div>
|
1668
|
+
</div>
|
1669
|
+
<div class="refsect3">
|
1670
|
+
<a name="id-1.4.2.4.9.20.6"></a><h4>Returns</h4>
|
1671
|
+
<p> a signed 64-bit integer from the attribute.</p>
|
1672
|
+
<p></p>
|
1673
|
+
</div>
|
1674
|
+
</div>
|
1675
|
+
<hr>
|
1676
|
+
<div class="refsect2">
|
1677
|
+
<a name="g-file-info-get-attribute-object"></a><h3>g_file_info_get_attribute_object ()</h3>
|
1678
|
+
<pre class="programlisting"><a href="../gobject/gobject-The-Base-Object-Type.html#GObject"><span class="returnvalue">GObject</span></a> *
|
1679
|
+
g_file_info_get_attribute_object (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
|
1680
|
+
<em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>);</pre>
|
1681
|
+
<p>Gets the value of a <a href="../gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> attribute. If the attribute does
|
1682
|
+
not contain a <a href="../gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a>, <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> will be returned.</p>
|
1683
|
+
<div class="refsect3">
|
1684
|
+
<a name="id-1.4.2.4.9.21.5"></a><h4>Parameters</h4>
|
1685
|
+
<div class="informaltable"><table width="100%" border="0">
|
1686
|
+
<colgroup>
|
1687
|
+
<col width="150px" class="parameters_name">
|
1688
|
+
<col class="parameters_description">
|
1689
|
+
<col width="200px" class="parameters_annotations">
|
1690
|
+
</colgroup>
|
1691
|
+
<tbody>
|
1692
|
+
<tr>
|
1693
|
+
<td class="parameter_name"><p>info</p></td>
|
1694
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
1695
|
+
<td class="parameter_annotations"> </td>
|
1696
|
+
</tr>
|
1697
|
+
<tr>
|
1698
|
+
<td class="parameter_name"><p>attribute</p></td>
|
1699
|
+
<td class="parameter_description"><p>a file attribute key.</p></td>
|
1700
|
+
<td class="parameter_annotations"> </td>
|
1701
|
+
</tr>
|
1702
|
+
</tbody>
|
1703
|
+
</table></div>
|
1704
|
+
</div>
|
1705
|
+
<div class="refsect3">
|
1706
|
+
<a name="id-1.4.2.4.9.21.6"></a><h4>Returns</h4>
|
1707
|
+
<p> a <a href="../gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> associated with the given <em class="parameter"><code>attribute</code></em>
|
1708
|
+
, or
|
1709
|
+
<a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> otherwise. </p>
|
1710
|
+
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
|
1711
|
+
</div>
|
1712
|
+
</div>
|
1713
|
+
<hr>
|
1714
|
+
<div class="refsect2">
|
1715
|
+
<a name="g-file-info-set-attribute"></a><h3>g_file_info_set_attribute ()</h3>
|
1716
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1717
|
+
g_file_info_set_attribute (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
|
1718
|
+
<em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>,
|
1719
|
+
<em class="parameter"><code><a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> type</code></em>,
|
1720
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> value_p</code></em>);</pre>
|
1721
|
+
<p>Sets the <em class="parameter"><code>attribute</code></em>
|
1722
|
+
to contain the given value, if possible. To unset the
|
1723
|
+
attribute, use <code class="literal">G_ATTRIBUTE_TYPE_INVALID</code> for <em class="parameter"><code>type</code></em>
|
1724
|
+
.</p>
|
1725
|
+
<div class="refsect3">
|
1726
|
+
<a name="id-1.4.2.4.9.22.5"></a><h4>Parameters</h4>
|
1727
|
+
<div class="informaltable"><table width="100%" border="0">
|
1728
|
+
<colgroup>
|
1729
|
+
<col width="150px" class="parameters_name">
|
1730
|
+
<col class="parameters_description">
|
1731
|
+
<col width="200px" class="parameters_annotations">
|
1732
|
+
</colgroup>
|
1733
|
+
<tbody>
|
1734
|
+
<tr>
|
1735
|
+
<td class="parameter_name"><p>info</p></td>
|
1736
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
1737
|
+
<td class="parameter_annotations"> </td>
|
1738
|
+
</tr>
|
1739
|
+
<tr>
|
1740
|
+
<td class="parameter_name"><p>attribute</p></td>
|
1741
|
+
<td class="parameter_description"><p>a file attribute key.</p></td>
|
1742
|
+
<td class="parameter_annotations"> </td>
|
1743
|
+
</tr>
|
1744
|
+
<tr>
|
1745
|
+
<td class="parameter_name"><p>type</p></td>
|
1746
|
+
<td class="parameter_description"><p>a <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a></p></td>
|
1747
|
+
<td class="parameter_annotations"> </td>
|
1748
|
+
</tr>
|
1749
|
+
<tr>
|
1750
|
+
<td class="parameter_name"><p>value_p</p></td>
|
1751
|
+
<td class="parameter_description"><p>pointer to the value</p></td>
|
1752
|
+
<td class="parameter_annotations"> </td>
|
1753
|
+
</tr>
|
1754
|
+
</tbody>
|
1755
|
+
</table></div>
|
1756
|
+
</div>
|
1757
|
+
</div>
|
1758
|
+
<hr>
|
1759
|
+
<div class="refsect2">
|
1760
|
+
<a name="g-file-info-set-attribute-status"></a><h3>g_file_info_set_attribute_status ()</h3>
|
1761
|
+
<pre class="programlisting"><a href="../glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
1762
|
+
g_file_info_set_attribute_status (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
|
1763
|
+
<em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>,
|
1764
|
+
<em class="parameter"><code><a class="link" href="gio-GFileAttribute.html#GFileAttributeStatus" title="enum GFileAttributeStatus"><span class="type">GFileAttributeStatus</span></a> status</code></em>);</pre>
|
1765
|
+
<p>Sets the attribute status for an attribute key. This is only
|
1766
|
+
needed by external code that implement <a class="link" href="GFile.html#g-file-set-attributes-from-info" title="g_file_set_attributes_from_info ()"><code class="function">g_file_set_attributes_from_info()</code></a>
|
1767
|
+
or similar functions.</p>
|
1768
|
+
<p>The attribute must exist in <em class="parameter"><code>info</code></em>
|
1769
|
+
for this to work. Otherwise <a href="../glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>
|
1770
|
+
is returned and <em class="parameter"><code>info</code></em>
|
1771
|
+
is unchanged.</p>
|
1772
|
+
<div class="refsect3">
|
1773
|
+
<a name="id-1.4.2.4.9.23.6"></a><h4>Parameters</h4>
|
1774
|
+
<div class="informaltable"><table width="100%" border="0">
|
1775
|
+
<colgroup>
|
1776
|
+
<col width="150px" class="parameters_name">
|
1777
|
+
<col class="parameters_description">
|
1778
|
+
<col width="200px" class="parameters_annotations">
|
1779
|
+
</colgroup>
|
1780
|
+
<tbody>
|
1781
|
+
<tr>
|
1782
|
+
<td class="parameter_name"><p>info</p></td>
|
1783
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a></p></td>
|
1784
|
+
<td class="parameter_annotations"> </td>
|
1785
|
+
</tr>
|
1786
|
+
<tr>
|
1787
|
+
<td class="parameter_name"><p>attribute</p></td>
|
1788
|
+
<td class="parameter_description"><p>a file attribute key</p></td>
|
1789
|
+
<td class="parameter_annotations"> </td>
|
1790
|
+
</tr>
|
1791
|
+
<tr>
|
1792
|
+
<td class="parameter_name"><p>status</p></td>
|
1793
|
+
<td class="parameter_description"><p>a <a class="link" href="gio-GFileAttribute.html#GFileAttributeStatus" title="enum GFileAttributeStatus"><span class="type">GFileAttributeStatus</span></a></p></td>
|
1794
|
+
<td class="parameter_annotations"> </td>
|
1795
|
+
</tr>
|
1796
|
+
</tbody>
|
1797
|
+
</table></div>
|
1798
|
+
</div>
|
1799
|
+
<div class="refsect3">
|
1800
|
+
<a name="id-1.4.2.4.9.23.7"></a><h4>Returns</h4>
|
1801
|
+
<p> <a href="../glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the status was changed, <a href="../glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if the key was not set.</p>
|
1802
|
+
<p></p>
|
1803
|
+
</div>
|
1804
|
+
<p class="since">Since 2.22</p>
|
1805
|
+
</div>
|
1806
|
+
<hr>
|
1807
|
+
<div class="refsect2">
|
1808
|
+
<a name="g-file-info-set-attribute-string"></a><h3>g_file_info_set_attribute_string ()</h3>
|
1809
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1810
|
+
g_file_info_set_attribute_string (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
|
1811
|
+
<em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>,
|
1812
|
+
<em class="parameter"><code>const <span class="type">char</span> *attr_value</code></em>);</pre>
|
1813
|
+
<p>Sets the <em class="parameter"><code>attribute</code></em>
|
1814
|
+
to contain the given <em class="parameter"><code>attr_value</code></em>
|
1815
|
+
,
|
1816
|
+
if possible.</p>
|
1817
|
+
<div class="refsect3">
|
1818
|
+
<a name="id-1.4.2.4.9.24.5"></a><h4>Parameters</h4>
|
1819
|
+
<div class="informaltable"><table width="100%" border="0">
|
1820
|
+
<colgroup>
|
1821
|
+
<col width="150px" class="parameters_name">
|
1822
|
+
<col class="parameters_description">
|
1823
|
+
<col width="200px" class="parameters_annotations">
|
1824
|
+
</colgroup>
|
1825
|
+
<tbody>
|
1826
|
+
<tr>
|
1827
|
+
<td class="parameter_name"><p>info</p></td>
|
1828
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
1829
|
+
<td class="parameter_annotations"> </td>
|
1830
|
+
</tr>
|
1831
|
+
<tr>
|
1832
|
+
<td class="parameter_name"><p>attribute</p></td>
|
1833
|
+
<td class="parameter_description"><p>a file attribute key.</p></td>
|
1834
|
+
<td class="parameter_annotations"> </td>
|
1835
|
+
</tr>
|
1836
|
+
<tr>
|
1837
|
+
<td class="parameter_name"><p>attr_value</p></td>
|
1838
|
+
<td class="parameter_description"><p>a UTF-8 string.</p></td>
|
1839
|
+
<td class="parameter_annotations"> </td>
|
1840
|
+
</tr>
|
1841
|
+
</tbody>
|
1842
|
+
</table></div>
|
1843
|
+
</div>
|
1844
|
+
</div>
|
1845
|
+
<hr>
|
1846
|
+
<div class="refsect2">
|
1847
|
+
<a name="g-file-info-set-attribute-stringv"></a><h3>g_file_info_set_attribute_stringv ()</h3>
|
1848
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1849
|
+
g_file_info_set_attribute_stringv (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
|
1850
|
+
<em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>,
|
1851
|
+
<em class="parameter"><code><span class="type">char</span> **attr_value</code></em>);</pre>
|
1852
|
+
<p>Sets the <em class="parameter"><code>attribute</code></em>
|
1853
|
+
to contain the given <em class="parameter"><code>attr_value</code></em>
|
1854
|
+
,
|
1855
|
+
if possible.</p>
|
1856
|
+
<p>Sinze: 2.22</p>
|
1857
|
+
<div class="refsect3">
|
1858
|
+
<a name="id-1.4.2.4.9.25.6"></a><h4>Parameters</h4>
|
1859
|
+
<div class="informaltable"><table width="100%" border="0">
|
1860
|
+
<colgroup>
|
1861
|
+
<col width="150px" class="parameters_name">
|
1862
|
+
<col class="parameters_description">
|
1863
|
+
<col width="200px" class="parameters_annotations">
|
1864
|
+
</colgroup>
|
1865
|
+
<tbody>
|
1866
|
+
<tr>
|
1867
|
+
<td class="parameter_name"><p>info</p></td>
|
1868
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
1869
|
+
<td class="parameter_annotations"> </td>
|
1870
|
+
</tr>
|
1871
|
+
<tr>
|
1872
|
+
<td class="parameter_name"><p>attribute</p></td>
|
1873
|
+
<td class="parameter_description"><p>a file attribute key</p></td>
|
1874
|
+
<td class="parameter_annotations"> </td>
|
1875
|
+
</tr>
|
1876
|
+
<tr>
|
1877
|
+
<td class="parameter_name"><p>attr_value</p></td>
|
1878
|
+
<td class="parameter_description"><p> a <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> terminated array of UTF-8 strings. </p></td>
|
1879
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym>][<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> utf8]</span></td>
|
1880
|
+
</tr>
|
1881
|
+
</tbody>
|
1882
|
+
</table></div>
|
1883
|
+
</div>
|
1884
|
+
</div>
|
1885
|
+
<hr>
|
1886
|
+
<div class="refsect2">
|
1887
|
+
<a name="g-file-info-set-attribute-byte-string"></a><h3>g_file_info_set_attribute_byte_string ()</h3>
|
1888
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1889
|
+
g_file_info_set_attribute_byte_string (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
|
1890
|
+
<em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>,
|
1891
|
+
<em class="parameter"><code>const <span class="type">char</span> *attr_value</code></em>);</pre>
|
1892
|
+
<p>Sets the <em class="parameter"><code>attribute</code></em>
|
1893
|
+
to contain the given <em class="parameter"><code>attr_value</code></em>
|
1894
|
+
,
|
1895
|
+
if possible.</p>
|
1896
|
+
<div class="refsect3">
|
1897
|
+
<a name="id-1.4.2.4.9.26.5"></a><h4>Parameters</h4>
|
1898
|
+
<div class="informaltable"><table width="100%" border="0">
|
1899
|
+
<colgroup>
|
1900
|
+
<col width="150px" class="parameters_name">
|
1901
|
+
<col class="parameters_description">
|
1902
|
+
<col width="200px" class="parameters_annotations">
|
1903
|
+
</colgroup>
|
1904
|
+
<tbody>
|
1905
|
+
<tr>
|
1906
|
+
<td class="parameter_name"><p>info</p></td>
|
1907
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
1908
|
+
<td class="parameter_annotations"> </td>
|
1909
|
+
</tr>
|
1910
|
+
<tr>
|
1911
|
+
<td class="parameter_name"><p>attribute</p></td>
|
1912
|
+
<td class="parameter_description"><p>a file attribute key.</p></td>
|
1913
|
+
<td class="parameter_annotations"> </td>
|
1914
|
+
</tr>
|
1915
|
+
<tr>
|
1916
|
+
<td class="parameter_name"><p>attr_value</p></td>
|
1917
|
+
<td class="parameter_description"><p>a byte string.</p></td>
|
1918
|
+
<td class="parameter_annotations"> </td>
|
1919
|
+
</tr>
|
1920
|
+
</tbody>
|
1921
|
+
</table></div>
|
1922
|
+
</div>
|
1923
|
+
</div>
|
1924
|
+
<hr>
|
1925
|
+
<div class="refsect2">
|
1926
|
+
<a name="g-file-info-set-attribute-boolean"></a><h3>g_file_info_set_attribute_boolean ()</h3>
|
1927
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1928
|
+
g_file_info_set_attribute_boolean (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
|
1929
|
+
<em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>,
|
1930
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> attr_value</code></em>);</pre>
|
1931
|
+
<p>Sets the <em class="parameter"><code>attribute</code></em>
|
1932
|
+
to contain the given <em class="parameter"><code>attr_value</code></em>
|
1933
|
+
,
|
1934
|
+
if possible.</p>
|
1935
|
+
<div class="refsect3">
|
1936
|
+
<a name="id-1.4.2.4.9.27.5"></a><h4>Parameters</h4>
|
1937
|
+
<div class="informaltable"><table width="100%" border="0">
|
1938
|
+
<colgroup>
|
1939
|
+
<col width="150px" class="parameters_name">
|
1940
|
+
<col class="parameters_description">
|
1941
|
+
<col width="200px" class="parameters_annotations">
|
1942
|
+
</colgroup>
|
1943
|
+
<tbody>
|
1944
|
+
<tr>
|
1945
|
+
<td class="parameter_name"><p>info</p></td>
|
1946
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
1947
|
+
<td class="parameter_annotations"> </td>
|
1948
|
+
</tr>
|
1949
|
+
<tr>
|
1950
|
+
<td class="parameter_name"><p>attribute</p></td>
|
1951
|
+
<td class="parameter_description"><p>a file attribute key.</p></td>
|
1952
|
+
<td class="parameter_annotations"> </td>
|
1953
|
+
</tr>
|
1954
|
+
<tr>
|
1955
|
+
<td class="parameter_name"><p>attr_value</p></td>
|
1956
|
+
<td class="parameter_description"><p>a boolean value.</p></td>
|
1957
|
+
<td class="parameter_annotations"> </td>
|
1958
|
+
</tr>
|
1959
|
+
</tbody>
|
1960
|
+
</table></div>
|
1961
|
+
</div>
|
1962
|
+
</div>
|
1963
|
+
<hr>
|
1964
|
+
<div class="refsect2">
|
1965
|
+
<a name="g-file-info-set-attribute-uint32"></a><h3>g_file_info_set_attribute_uint32 ()</h3>
|
1966
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1967
|
+
g_file_info_set_attribute_uint32 (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
|
1968
|
+
<em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>,
|
1969
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#guint32"><span class="type">guint32</span></a> attr_value</code></em>);</pre>
|
1970
|
+
<p>Sets the <em class="parameter"><code>attribute</code></em>
|
1971
|
+
to contain the given <em class="parameter"><code>attr_value</code></em>
|
1972
|
+
,
|
1973
|
+
if possible.</p>
|
1974
|
+
<div class="refsect3">
|
1975
|
+
<a name="id-1.4.2.4.9.28.5"></a><h4>Parameters</h4>
|
1976
|
+
<div class="informaltable"><table width="100%" border="0">
|
1977
|
+
<colgroup>
|
1978
|
+
<col width="150px" class="parameters_name">
|
1979
|
+
<col class="parameters_description">
|
1980
|
+
<col width="200px" class="parameters_annotations">
|
1981
|
+
</colgroup>
|
1982
|
+
<tbody>
|
1983
|
+
<tr>
|
1984
|
+
<td class="parameter_name"><p>info</p></td>
|
1985
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
1986
|
+
<td class="parameter_annotations"> </td>
|
1987
|
+
</tr>
|
1988
|
+
<tr>
|
1989
|
+
<td class="parameter_name"><p>attribute</p></td>
|
1990
|
+
<td class="parameter_description"><p>a file attribute key.</p></td>
|
1991
|
+
<td class="parameter_annotations"> </td>
|
1992
|
+
</tr>
|
1993
|
+
<tr>
|
1994
|
+
<td class="parameter_name"><p>attr_value</p></td>
|
1995
|
+
<td class="parameter_description"><p>an unsigned 32-bit integer.</p></td>
|
1996
|
+
<td class="parameter_annotations"> </td>
|
1997
|
+
</tr>
|
1998
|
+
</tbody>
|
1999
|
+
</table></div>
|
2000
|
+
</div>
|
2001
|
+
</div>
|
2002
|
+
<hr>
|
2003
|
+
<div class="refsect2">
|
2004
|
+
<a name="g-file-info-set-attribute-int32"></a><h3>g_file_info_set_attribute_int32 ()</h3>
|
2005
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2006
|
+
g_file_info_set_attribute_int32 (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
|
2007
|
+
<em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>,
|
2008
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gint32"><span class="type">gint32</span></a> attr_value</code></em>);</pre>
|
2009
|
+
<p>Sets the <em class="parameter"><code>attribute</code></em>
|
2010
|
+
to contain the given <em class="parameter"><code>attr_value</code></em>
|
2011
|
+
,
|
2012
|
+
if possible.</p>
|
2013
|
+
<div class="refsect3">
|
2014
|
+
<a name="id-1.4.2.4.9.29.5"></a><h4>Parameters</h4>
|
2015
|
+
<div class="informaltable"><table width="100%" border="0">
|
2016
|
+
<colgroup>
|
2017
|
+
<col width="150px" class="parameters_name">
|
2018
|
+
<col class="parameters_description">
|
2019
|
+
<col width="200px" class="parameters_annotations">
|
2020
|
+
</colgroup>
|
2021
|
+
<tbody>
|
2022
|
+
<tr>
|
2023
|
+
<td class="parameter_name"><p>info</p></td>
|
2024
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
2025
|
+
<td class="parameter_annotations"> </td>
|
2026
|
+
</tr>
|
2027
|
+
<tr>
|
2028
|
+
<td class="parameter_name"><p>attribute</p></td>
|
2029
|
+
<td class="parameter_description"><p>a file attribute key.</p></td>
|
2030
|
+
<td class="parameter_annotations"> </td>
|
2031
|
+
</tr>
|
2032
|
+
<tr>
|
2033
|
+
<td class="parameter_name"><p>attr_value</p></td>
|
2034
|
+
<td class="parameter_description"><p>a signed 32-bit integer</p></td>
|
2035
|
+
<td class="parameter_annotations"> </td>
|
2036
|
+
</tr>
|
2037
|
+
</tbody>
|
2038
|
+
</table></div>
|
2039
|
+
</div>
|
2040
|
+
</div>
|
2041
|
+
<hr>
|
2042
|
+
<div class="refsect2">
|
2043
|
+
<a name="g-file-info-set-attribute-uint64"></a><h3>g_file_info_set_attribute_uint64 ()</h3>
|
2044
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2045
|
+
g_file_info_set_attribute_uint64 (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
|
2046
|
+
<em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>,
|
2047
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#guint64"><span class="type">guint64</span></a> attr_value</code></em>);</pre>
|
2048
|
+
<p>Sets the <em class="parameter"><code>attribute</code></em>
|
2049
|
+
to contain the given <em class="parameter"><code>attr_value</code></em>
|
2050
|
+
,
|
2051
|
+
if possible.</p>
|
2052
|
+
<div class="refsect3">
|
2053
|
+
<a name="id-1.4.2.4.9.30.5"></a><h4>Parameters</h4>
|
2054
|
+
<div class="informaltable"><table width="100%" border="0">
|
2055
|
+
<colgroup>
|
2056
|
+
<col width="150px" class="parameters_name">
|
2057
|
+
<col class="parameters_description">
|
2058
|
+
<col width="200px" class="parameters_annotations">
|
2059
|
+
</colgroup>
|
2060
|
+
<tbody>
|
2061
|
+
<tr>
|
2062
|
+
<td class="parameter_name"><p>info</p></td>
|
2063
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
2064
|
+
<td class="parameter_annotations"> </td>
|
2065
|
+
</tr>
|
2066
|
+
<tr>
|
2067
|
+
<td class="parameter_name"><p>attribute</p></td>
|
2068
|
+
<td class="parameter_description"><p>a file attribute key.</p></td>
|
2069
|
+
<td class="parameter_annotations"> </td>
|
2070
|
+
</tr>
|
2071
|
+
<tr>
|
2072
|
+
<td class="parameter_name"><p>attr_value</p></td>
|
2073
|
+
<td class="parameter_description"><p>an unsigned 64-bit integer.</p></td>
|
2074
|
+
<td class="parameter_annotations"> </td>
|
2075
|
+
</tr>
|
2076
|
+
</tbody>
|
2077
|
+
</table></div>
|
2078
|
+
</div>
|
2079
|
+
</div>
|
2080
|
+
<hr>
|
2081
|
+
<div class="refsect2">
|
2082
|
+
<a name="g-file-info-set-attribute-int64"></a><h3>g_file_info_set_attribute_int64 ()</h3>
|
2083
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2084
|
+
g_file_info_set_attribute_int64 (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
|
2085
|
+
<em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>,
|
2086
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gint64"><span class="type">gint64</span></a> attr_value</code></em>);</pre>
|
2087
|
+
<p>Sets the <em class="parameter"><code>attribute</code></em>
|
2088
|
+
to contain the given <em class="parameter"><code>attr_value</code></em>
|
2089
|
+
,
|
2090
|
+
if possible.</p>
|
2091
|
+
<div class="refsect3">
|
2092
|
+
<a name="id-1.4.2.4.9.31.5"></a><h4>Parameters</h4>
|
2093
|
+
<div class="informaltable"><table width="100%" border="0">
|
2094
|
+
<colgroup>
|
2095
|
+
<col width="150px" class="parameters_name">
|
2096
|
+
<col class="parameters_description">
|
2097
|
+
<col width="200px" class="parameters_annotations">
|
2098
|
+
</colgroup>
|
2099
|
+
<tbody>
|
2100
|
+
<tr>
|
2101
|
+
<td class="parameter_name"><p>info</p></td>
|
2102
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
2103
|
+
<td class="parameter_annotations"> </td>
|
2104
|
+
</tr>
|
2105
|
+
<tr>
|
2106
|
+
<td class="parameter_name"><p>attribute</p></td>
|
2107
|
+
<td class="parameter_description"><p>attribute name to set.</p></td>
|
2108
|
+
<td class="parameter_annotations"> </td>
|
2109
|
+
</tr>
|
2110
|
+
<tr>
|
2111
|
+
<td class="parameter_name"><p>attr_value</p></td>
|
2112
|
+
<td class="parameter_description"><p>int64 value to set attribute to.</p></td>
|
2113
|
+
<td class="parameter_annotations"> </td>
|
2114
|
+
</tr>
|
2115
|
+
</tbody>
|
2116
|
+
</table></div>
|
2117
|
+
</div>
|
2118
|
+
</div>
|
2119
|
+
<hr>
|
2120
|
+
<div class="refsect2">
|
2121
|
+
<a name="g-file-info-set-attribute-object"></a><h3>g_file_info_set_attribute_object ()</h3>
|
2122
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2123
|
+
g_file_info_set_attribute_object (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
|
2124
|
+
<em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>,
|
2125
|
+
<em class="parameter"><code><a href="../gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *attr_value</code></em>);</pre>
|
2126
|
+
<p>Sets the <em class="parameter"><code>attribute</code></em>
|
2127
|
+
to contain the given <em class="parameter"><code>attr_value</code></em>
|
2128
|
+
,
|
2129
|
+
if possible.</p>
|
2130
|
+
<div class="refsect3">
|
2131
|
+
<a name="id-1.4.2.4.9.32.5"></a><h4>Parameters</h4>
|
2132
|
+
<div class="informaltable"><table width="100%" border="0">
|
2133
|
+
<colgroup>
|
2134
|
+
<col width="150px" class="parameters_name">
|
2135
|
+
<col class="parameters_description">
|
2136
|
+
<col width="200px" class="parameters_annotations">
|
2137
|
+
</colgroup>
|
2138
|
+
<tbody>
|
2139
|
+
<tr>
|
2140
|
+
<td class="parameter_name"><p>info</p></td>
|
2141
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
2142
|
+
<td class="parameter_annotations"> </td>
|
2143
|
+
</tr>
|
2144
|
+
<tr>
|
2145
|
+
<td class="parameter_name"><p>attribute</p></td>
|
2146
|
+
<td class="parameter_description"><p>a file attribute key.</p></td>
|
2147
|
+
<td class="parameter_annotations"> </td>
|
2148
|
+
</tr>
|
2149
|
+
<tr>
|
2150
|
+
<td class="parameter_name"><p>attr_value</p></td>
|
2151
|
+
<td class="parameter_description"><p>a <a href="../gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a>.</p></td>
|
2152
|
+
<td class="parameter_annotations"> </td>
|
2153
|
+
</tr>
|
2154
|
+
</tbody>
|
2155
|
+
</table></div>
|
2156
|
+
</div>
|
2157
|
+
</div>
|
2158
|
+
<hr>
|
2159
|
+
<div class="refsect2">
|
2160
|
+
<a name="g-file-info-clear-status"></a><h3>g_file_info_clear_status ()</h3>
|
2161
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2162
|
+
g_file_info_clear_status (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>);</pre>
|
2163
|
+
<p>Clears the status information from <em class="parameter"><code>info</code></em>
|
2164
|
+
.</p>
|
2165
|
+
<div class="refsect3">
|
2166
|
+
<a name="id-1.4.2.4.9.33.5"></a><h4>Parameters</h4>
|
2167
|
+
<div class="informaltable"><table width="100%" border="0">
|
2168
|
+
<colgroup>
|
2169
|
+
<col width="150px" class="parameters_name">
|
2170
|
+
<col class="parameters_description">
|
2171
|
+
<col width="200px" class="parameters_annotations">
|
2172
|
+
</colgroup>
|
2173
|
+
<tbody><tr>
|
2174
|
+
<td class="parameter_name"><p>info</p></td>
|
2175
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
2176
|
+
<td class="parameter_annotations"> </td>
|
2177
|
+
</tr></tbody>
|
2178
|
+
</table></div>
|
2179
|
+
</div>
|
2180
|
+
</div>
|
2181
|
+
<hr>
|
2182
|
+
<div class="refsect2">
|
2183
|
+
<a name="g-file-info-get-file-type"></a><h3>g_file_info_get_file_type ()</h3>
|
2184
|
+
<pre class="programlisting"><a class="link" href="GFileInfo.html#GFileType" title="enum GFileType"><span class="returnvalue">GFileType</span></a>
|
2185
|
+
g_file_info_get_file_type (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>);</pre>
|
2186
|
+
<p>Gets a file's type (whether it is a regular file, symlink, etc).
|
2187
|
+
This is different from the file's content type, see <a class="link" href="GFileInfo.html#g-file-info-get-content-type" title="g_file_info_get_content_type ()"><code class="function">g_file_info_get_content_type()</code></a>.</p>
|
2188
|
+
<div class="refsect3">
|
2189
|
+
<a name="id-1.4.2.4.9.34.5"></a><h4>Parameters</h4>
|
2190
|
+
<div class="informaltable"><table width="100%" border="0">
|
2191
|
+
<colgroup>
|
2192
|
+
<col width="150px" class="parameters_name">
|
2193
|
+
<col class="parameters_description">
|
2194
|
+
<col width="200px" class="parameters_annotations">
|
2195
|
+
</colgroup>
|
2196
|
+
<tbody><tr>
|
2197
|
+
<td class="parameter_name"><p>info</p></td>
|
2198
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
2199
|
+
<td class="parameter_annotations"> </td>
|
2200
|
+
</tr></tbody>
|
2201
|
+
</table></div>
|
2202
|
+
</div>
|
2203
|
+
<div class="refsect3">
|
2204
|
+
<a name="id-1.4.2.4.9.34.6"></a><h4>Returns</h4>
|
2205
|
+
<p> a <a class="link" href="GFileInfo.html#GFileType" title="enum GFileType"><span class="type">GFileType</span></a> for the given file.</p>
|
2206
|
+
<p></p>
|
2207
|
+
</div>
|
2208
|
+
</div>
|
2209
|
+
<hr>
|
2210
|
+
<div class="refsect2">
|
2211
|
+
<a name="g-file-info-get-is-hidden"></a><h3>g_file_info_get_is_hidden ()</h3>
|
2212
|
+
<pre class="programlisting"><a href="../glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
2213
|
+
g_file_info_get_is_hidden (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>);</pre>
|
2214
|
+
<p>Checks if a file is hidden.</p>
|
2215
|
+
<div class="refsect3">
|
2216
|
+
<a name="id-1.4.2.4.9.35.5"></a><h4>Parameters</h4>
|
2217
|
+
<div class="informaltable"><table width="100%" border="0">
|
2218
|
+
<colgroup>
|
2219
|
+
<col width="150px" class="parameters_name">
|
2220
|
+
<col class="parameters_description">
|
2221
|
+
<col width="200px" class="parameters_annotations">
|
2222
|
+
</colgroup>
|
2223
|
+
<tbody><tr>
|
2224
|
+
<td class="parameter_name"><p>info</p></td>
|
2225
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
2226
|
+
<td class="parameter_annotations"> </td>
|
2227
|
+
</tr></tbody>
|
2228
|
+
</table></div>
|
2229
|
+
</div>
|
2230
|
+
<div class="refsect3">
|
2231
|
+
<a name="id-1.4.2.4.9.35.6"></a><h4>Returns</h4>
|
2232
|
+
<p> <a href="../glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the file is a hidden file, <a href="../glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
|
2233
|
+
<p></p>
|
2234
|
+
</div>
|
2235
|
+
</div>
|
2236
|
+
<hr>
|
2237
|
+
<div class="refsect2">
|
2238
|
+
<a name="g-file-info-get-is-backup"></a><h3>g_file_info_get_is_backup ()</h3>
|
2239
|
+
<pre class="programlisting"><a href="../glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
2240
|
+
g_file_info_get_is_backup (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>);</pre>
|
2241
|
+
<p>Checks if a file is a backup file.</p>
|
2242
|
+
<div class="refsect3">
|
2243
|
+
<a name="id-1.4.2.4.9.36.5"></a><h4>Parameters</h4>
|
2244
|
+
<div class="informaltable"><table width="100%" border="0">
|
2245
|
+
<colgroup>
|
2246
|
+
<col width="150px" class="parameters_name">
|
2247
|
+
<col class="parameters_description">
|
2248
|
+
<col width="200px" class="parameters_annotations">
|
2249
|
+
</colgroup>
|
2250
|
+
<tbody><tr>
|
2251
|
+
<td class="parameter_name"><p>info</p></td>
|
2252
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
2253
|
+
<td class="parameter_annotations"> </td>
|
2254
|
+
</tr></tbody>
|
2255
|
+
</table></div>
|
2256
|
+
</div>
|
2257
|
+
<div class="refsect3">
|
2258
|
+
<a name="id-1.4.2.4.9.36.6"></a><h4>Returns</h4>
|
2259
|
+
<p> <a href="../glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if file is a backup file, <a href="../glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
|
2260
|
+
<p></p>
|
2261
|
+
</div>
|
2262
|
+
</div>
|
2263
|
+
<hr>
|
2264
|
+
<div class="refsect2">
|
2265
|
+
<a name="g-file-info-get-is-symlink"></a><h3>g_file_info_get_is_symlink ()</h3>
|
2266
|
+
<pre class="programlisting"><a href="../glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
2267
|
+
g_file_info_get_is_symlink (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>);</pre>
|
2268
|
+
<p>Checks if a file is a symlink.</p>
|
2269
|
+
<div class="refsect3">
|
2270
|
+
<a name="id-1.4.2.4.9.37.5"></a><h4>Parameters</h4>
|
2271
|
+
<div class="informaltable"><table width="100%" border="0">
|
2272
|
+
<colgroup>
|
2273
|
+
<col width="150px" class="parameters_name">
|
2274
|
+
<col class="parameters_description">
|
2275
|
+
<col width="200px" class="parameters_annotations">
|
2276
|
+
</colgroup>
|
2277
|
+
<tbody><tr>
|
2278
|
+
<td class="parameter_name"><p>info</p></td>
|
2279
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
2280
|
+
<td class="parameter_annotations"> </td>
|
2281
|
+
</tr></tbody>
|
2282
|
+
</table></div>
|
2283
|
+
</div>
|
2284
|
+
<div class="refsect3">
|
2285
|
+
<a name="id-1.4.2.4.9.37.6"></a><h4>Returns</h4>
|
2286
|
+
<p> <a href="../glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the given <em class="parameter"><code>info</code></em>
|
2287
|
+
is a symlink.</p>
|
2288
|
+
<p></p>
|
2289
|
+
</div>
|
2290
|
+
</div>
|
2291
|
+
<hr>
|
2292
|
+
<div class="refsect2">
|
2293
|
+
<a name="g-file-info-get-name"></a><h3>g_file_info_get_name ()</h3>
|
2294
|
+
<pre class="programlisting">const <span class="returnvalue">char</span> *
|
2295
|
+
g_file_info_get_name (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>);</pre>
|
2296
|
+
<p>Gets the name for a file.</p>
|
2297
|
+
<div class="refsect3">
|
2298
|
+
<a name="id-1.4.2.4.9.38.5"></a><h4>Parameters</h4>
|
2299
|
+
<div class="informaltable"><table width="100%" border="0">
|
2300
|
+
<colgroup>
|
2301
|
+
<col width="150px" class="parameters_name">
|
2302
|
+
<col class="parameters_description">
|
2303
|
+
<col width="200px" class="parameters_annotations">
|
2304
|
+
</colgroup>
|
2305
|
+
<tbody><tr>
|
2306
|
+
<td class="parameter_name"><p>info</p></td>
|
2307
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
2308
|
+
<td class="parameter_annotations"> </td>
|
2309
|
+
</tr></tbody>
|
2310
|
+
</table></div>
|
2311
|
+
</div>
|
2312
|
+
<div class="refsect3">
|
2313
|
+
<a name="id-1.4.2.4.9.38.6"></a><h4>Returns</h4>
|
2314
|
+
<p> a string containing the file name.</p>
|
2315
|
+
<p></p>
|
2316
|
+
</div>
|
2317
|
+
</div>
|
2318
|
+
<hr>
|
2319
|
+
<div class="refsect2">
|
2320
|
+
<a name="g-file-info-get-display-name"></a><h3>g_file_info_get_display_name ()</h3>
|
2321
|
+
<pre class="programlisting">const <span class="returnvalue">char</span> *
|
2322
|
+
g_file_info_get_display_name (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>);</pre>
|
2323
|
+
<p>Gets a display name for a file.</p>
|
2324
|
+
<div class="refsect3">
|
2325
|
+
<a name="id-1.4.2.4.9.39.5"></a><h4>Parameters</h4>
|
2326
|
+
<div class="informaltable"><table width="100%" border="0">
|
2327
|
+
<colgroup>
|
2328
|
+
<col width="150px" class="parameters_name">
|
2329
|
+
<col class="parameters_description">
|
2330
|
+
<col width="200px" class="parameters_annotations">
|
2331
|
+
</colgroup>
|
2332
|
+
<tbody><tr>
|
2333
|
+
<td class="parameter_name"><p>info</p></td>
|
2334
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
2335
|
+
<td class="parameter_annotations"> </td>
|
2336
|
+
</tr></tbody>
|
2337
|
+
</table></div>
|
2338
|
+
</div>
|
2339
|
+
<div class="refsect3">
|
2340
|
+
<a name="id-1.4.2.4.9.39.6"></a><h4>Returns</h4>
|
2341
|
+
<p> a string containing the display name.</p>
|
2342
|
+
<p></p>
|
2343
|
+
</div>
|
2344
|
+
</div>
|
2345
|
+
<hr>
|
2346
|
+
<div class="refsect2">
|
2347
|
+
<a name="g-file-info-get-edit-name"></a><h3>g_file_info_get_edit_name ()</h3>
|
2348
|
+
<pre class="programlisting">const <span class="returnvalue">char</span> *
|
2349
|
+
g_file_info_get_edit_name (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>);</pre>
|
2350
|
+
<p>Gets the edit name for a file.</p>
|
2351
|
+
<div class="refsect3">
|
2352
|
+
<a name="id-1.4.2.4.9.40.5"></a><h4>Parameters</h4>
|
2353
|
+
<div class="informaltable"><table width="100%" border="0">
|
2354
|
+
<colgroup>
|
2355
|
+
<col width="150px" class="parameters_name">
|
2356
|
+
<col class="parameters_description">
|
2357
|
+
<col width="200px" class="parameters_annotations">
|
2358
|
+
</colgroup>
|
2359
|
+
<tbody><tr>
|
2360
|
+
<td class="parameter_name"><p>info</p></td>
|
2361
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
2362
|
+
<td class="parameter_annotations"> </td>
|
2363
|
+
</tr></tbody>
|
2364
|
+
</table></div>
|
2365
|
+
</div>
|
2366
|
+
<div class="refsect3">
|
2367
|
+
<a name="id-1.4.2.4.9.40.6"></a><h4>Returns</h4>
|
2368
|
+
<p> a string containing the edit name.</p>
|
2369
|
+
<p></p>
|
2370
|
+
</div>
|
2371
|
+
</div>
|
2372
|
+
<hr>
|
2373
|
+
<div class="refsect2">
|
2374
|
+
<a name="g-file-info-get-icon"></a><h3>g_file_info_get_icon ()</h3>
|
2375
|
+
<pre class="programlisting"><a class="link" href="GIcon.html" title="GIcon"><span class="returnvalue">GIcon</span></a> *
|
2376
|
+
g_file_info_get_icon (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>);</pre>
|
2377
|
+
<p>Gets the icon for a file.</p>
|
2378
|
+
<div class="refsect3">
|
2379
|
+
<a name="id-1.4.2.4.9.41.5"></a><h4>Parameters</h4>
|
2380
|
+
<div class="informaltable"><table width="100%" border="0">
|
2381
|
+
<colgroup>
|
2382
|
+
<col width="150px" class="parameters_name">
|
2383
|
+
<col class="parameters_description">
|
2384
|
+
<col width="200px" class="parameters_annotations">
|
2385
|
+
</colgroup>
|
2386
|
+
<tbody><tr>
|
2387
|
+
<td class="parameter_name"><p>info</p></td>
|
2388
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
2389
|
+
<td class="parameter_annotations"> </td>
|
2390
|
+
</tr></tbody>
|
2391
|
+
</table></div>
|
2392
|
+
</div>
|
2393
|
+
<div class="refsect3">
|
2394
|
+
<a name="id-1.4.2.4.9.41.6"></a><h4>Returns</h4>
|
2395
|
+
<p> <a class="link" href="GIcon.html" title="GIcon"><span class="type">GIcon</span></a> for the given <em class="parameter"><code>info</code></em>
|
2396
|
+
. </p>
|
2397
|
+
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
|
2398
|
+
</div>
|
2399
|
+
</div>
|
2400
|
+
<hr>
|
2401
|
+
<div class="refsect2">
|
2402
|
+
<a name="g-file-info-get-symbolic-icon"></a><h3>g_file_info_get_symbolic_icon ()</h3>
|
2403
|
+
<pre class="programlisting"><a class="link" href="GIcon.html" title="GIcon"><span class="returnvalue">GIcon</span></a> *
|
2404
|
+
g_file_info_get_symbolic_icon (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>);</pre>
|
2405
|
+
<p>Gets the symbolic icon for a file.</p>
|
2406
|
+
<div class="refsect3">
|
2407
|
+
<a name="id-1.4.2.4.9.42.5"></a><h4>Parameters</h4>
|
2408
|
+
<div class="informaltable"><table width="100%" border="0">
|
2409
|
+
<colgroup>
|
2410
|
+
<col width="150px" class="parameters_name">
|
2411
|
+
<col class="parameters_description">
|
2412
|
+
<col width="200px" class="parameters_annotations">
|
2413
|
+
</colgroup>
|
2414
|
+
<tbody><tr>
|
2415
|
+
<td class="parameter_name"><p>info</p></td>
|
2416
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
2417
|
+
<td class="parameter_annotations"> </td>
|
2418
|
+
</tr></tbody>
|
2419
|
+
</table></div>
|
2420
|
+
</div>
|
2421
|
+
<div class="refsect3">
|
2422
|
+
<a name="id-1.4.2.4.9.42.6"></a><h4>Returns</h4>
|
2423
|
+
<p> <a class="link" href="GIcon.html" title="GIcon"><span class="type">GIcon</span></a> for the given <em class="parameter"><code>info</code></em>
|
2424
|
+
. </p>
|
2425
|
+
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
|
2426
|
+
</div>
|
2427
|
+
<p class="since">Since 2.34</p>
|
2428
|
+
</div>
|
2429
|
+
<hr>
|
2430
|
+
<div class="refsect2">
|
2431
|
+
<a name="g-file-info-get-content-type"></a><h3>g_file_info_get_content_type ()</h3>
|
2432
|
+
<pre class="programlisting">const <span class="returnvalue">char</span> *
|
2433
|
+
g_file_info_get_content_type (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>);</pre>
|
2434
|
+
<p>Gets the file's content type.</p>
|
2435
|
+
<div class="refsect3">
|
2436
|
+
<a name="id-1.4.2.4.9.43.5"></a><h4>Parameters</h4>
|
2437
|
+
<div class="informaltable"><table width="100%" border="0">
|
2438
|
+
<colgroup>
|
2439
|
+
<col width="150px" class="parameters_name">
|
2440
|
+
<col class="parameters_description">
|
2441
|
+
<col width="200px" class="parameters_annotations">
|
2442
|
+
</colgroup>
|
2443
|
+
<tbody><tr>
|
2444
|
+
<td class="parameter_name"><p>info</p></td>
|
2445
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
2446
|
+
<td class="parameter_annotations"> </td>
|
2447
|
+
</tr></tbody>
|
2448
|
+
</table></div>
|
2449
|
+
</div>
|
2450
|
+
<div class="refsect3">
|
2451
|
+
<a name="id-1.4.2.4.9.43.6"></a><h4>Returns</h4>
|
2452
|
+
<p> a string containing the file's content type.</p>
|
2453
|
+
<p></p>
|
2454
|
+
</div>
|
2455
|
+
</div>
|
2456
|
+
<hr>
|
2457
|
+
<div class="refsect2">
|
2458
|
+
<a name="g-file-info-get-size"></a><h3>g_file_info_get_size ()</h3>
|
2459
|
+
<pre class="programlisting"><a href="../glib/glib-Basic-Types.html#goffset"><span class="returnvalue">goffset</span></a>
|
2460
|
+
g_file_info_get_size (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>);</pre>
|
2461
|
+
<p>Gets the file's size.</p>
|
2462
|
+
<div class="refsect3">
|
2463
|
+
<a name="id-1.4.2.4.9.44.5"></a><h4>Parameters</h4>
|
2464
|
+
<div class="informaltable"><table width="100%" border="0">
|
2465
|
+
<colgroup>
|
2466
|
+
<col width="150px" class="parameters_name">
|
2467
|
+
<col class="parameters_description">
|
2468
|
+
<col width="200px" class="parameters_annotations">
|
2469
|
+
</colgroup>
|
2470
|
+
<tbody><tr>
|
2471
|
+
<td class="parameter_name"><p>info</p></td>
|
2472
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
2473
|
+
<td class="parameter_annotations"> </td>
|
2474
|
+
</tr></tbody>
|
2475
|
+
</table></div>
|
2476
|
+
</div>
|
2477
|
+
<div class="refsect3">
|
2478
|
+
<a name="id-1.4.2.4.9.44.6"></a><h4>Returns</h4>
|
2479
|
+
<p> a <a href="../glib/glib-Basic-Types.html#goffset"><span class="type">goffset</span></a> containing the file's size.</p>
|
2480
|
+
<p></p>
|
2481
|
+
</div>
|
2482
|
+
</div>
|
2483
|
+
<hr>
|
2484
|
+
<div class="refsect2">
|
2485
|
+
<a name="g-file-info-get-modification-time"></a><h3>g_file_info_get_modification_time ()</h3>
|
2486
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2487
|
+
g_file_info_get_modification_time (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
|
2488
|
+
<em class="parameter"><code><a href="../glib/glib-Date-and-Time-Functions.html#GTimeVal"><span class="type">GTimeVal</span></a> *result</code></em>);</pre>
|
2489
|
+
<p>Gets the modification time of the current <em class="parameter"><code>info</code></em>
|
2490
|
+
and sets it
|
2491
|
+
in <em class="parameter"><code>result</code></em>
|
2492
|
+
.</p>
|
2493
|
+
<div class="refsect3">
|
2494
|
+
<a name="id-1.4.2.4.9.45.5"></a><h4>Parameters</h4>
|
2495
|
+
<div class="informaltable"><table width="100%" border="0">
|
2496
|
+
<colgroup>
|
2497
|
+
<col width="150px" class="parameters_name">
|
2498
|
+
<col class="parameters_description">
|
2499
|
+
<col width="200px" class="parameters_annotations">
|
2500
|
+
</colgroup>
|
2501
|
+
<tbody>
|
2502
|
+
<tr>
|
2503
|
+
<td class="parameter_name"><p>info</p></td>
|
2504
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
2505
|
+
<td class="parameter_annotations"> </td>
|
2506
|
+
</tr>
|
2507
|
+
<tr>
|
2508
|
+
<td class="parameter_name"><p>result</p></td>
|
2509
|
+
<td class="parameter_description"><p> a <a href="../glib/glib-Date-and-Time-Functions.html#GTimeVal"><span class="type">GTimeVal</span></a>. </p></td>
|
2510
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Out parameter, where caller must allocate storage."><span class="acronym">out caller-allocates</span></acronym>]</span></td>
|
2511
|
+
</tr>
|
2512
|
+
</tbody>
|
2513
|
+
</table></div>
|
2514
|
+
</div>
|
2515
|
+
</div>
|
2516
|
+
<hr>
|
2517
|
+
<div class="refsect2">
|
2518
|
+
<a name="g-file-info-get-symlink-target"></a><h3>g_file_info_get_symlink_target ()</h3>
|
2519
|
+
<pre class="programlisting">const <span class="returnvalue">char</span> *
|
2520
|
+
g_file_info_get_symlink_target (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>);</pre>
|
2521
|
+
<p>Gets the symlink target for a given <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p>
|
2522
|
+
<div class="refsect3">
|
2523
|
+
<a name="id-1.4.2.4.9.46.5"></a><h4>Parameters</h4>
|
2524
|
+
<div class="informaltable"><table width="100%" border="0">
|
2525
|
+
<colgroup>
|
2526
|
+
<col width="150px" class="parameters_name">
|
2527
|
+
<col class="parameters_description">
|
2528
|
+
<col width="200px" class="parameters_annotations">
|
2529
|
+
</colgroup>
|
2530
|
+
<tbody><tr>
|
2531
|
+
<td class="parameter_name"><p>info</p></td>
|
2532
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
2533
|
+
<td class="parameter_annotations"> </td>
|
2534
|
+
</tr></tbody>
|
2535
|
+
</table></div>
|
2536
|
+
</div>
|
2537
|
+
<div class="refsect3">
|
2538
|
+
<a name="id-1.4.2.4.9.46.6"></a><h4>Returns</h4>
|
2539
|
+
<p> a string containing the symlink target.</p>
|
2540
|
+
<p></p>
|
2541
|
+
</div>
|
2542
|
+
</div>
|
2543
|
+
<hr>
|
2544
|
+
<div class="refsect2">
|
2545
|
+
<a name="g-file-info-get-etag"></a><h3>g_file_info_get_etag ()</h3>
|
2546
|
+
<pre class="programlisting">const <span class="returnvalue">char</span> *
|
2547
|
+
g_file_info_get_etag (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>);</pre>
|
2548
|
+
<p>Gets the <a class="link" href="GFile.html#gfile-etag" title="Entity Tags">entity tag</a> for a given
|
2549
|
+
<a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>. See <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-ETAG-VALUE:CAPS" title="G_FILE_ATTRIBUTE_ETAG_VALUE"><code class="literal">G_FILE_ATTRIBUTE_ETAG_VALUE</code></a>.</p>
|
2550
|
+
<div class="refsect3">
|
2551
|
+
<a name="id-1.4.2.4.9.47.5"></a><h4>Parameters</h4>
|
2552
|
+
<div class="informaltable"><table width="100%" border="0">
|
2553
|
+
<colgroup>
|
2554
|
+
<col width="150px" class="parameters_name">
|
2555
|
+
<col class="parameters_description">
|
2556
|
+
<col width="200px" class="parameters_annotations">
|
2557
|
+
</colgroup>
|
2558
|
+
<tbody><tr>
|
2559
|
+
<td class="parameter_name"><p>info</p></td>
|
2560
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
2561
|
+
<td class="parameter_annotations"> </td>
|
2562
|
+
</tr></tbody>
|
2563
|
+
</table></div>
|
2564
|
+
</div>
|
2565
|
+
<div class="refsect3">
|
2566
|
+
<a name="id-1.4.2.4.9.47.6"></a><h4>Returns</h4>
|
2567
|
+
<p> a string containing the value of the "etag:value" attribute.</p>
|
2568
|
+
<p></p>
|
2569
|
+
</div>
|
2570
|
+
</div>
|
2571
|
+
<hr>
|
2572
|
+
<div class="refsect2">
|
2573
|
+
<a name="g-file-info-get-sort-order"></a><h3>g_file_info_get_sort_order ()</h3>
|
2574
|
+
<pre class="programlisting"><a href="../glib/glib-Basic-Types.html#gint32"><span class="returnvalue">gint32</span></a>
|
2575
|
+
g_file_info_get_sort_order (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>);</pre>
|
2576
|
+
<p>Gets the value of the sort_order attribute from the <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
|
2577
|
+
See <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-SORT-ORDER:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_SORT_ORDER"><code class="literal">G_FILE_ATTRIBUTE_STANDARD_SORT_ORDER</code></a>.</p>
|
2578
|
+
<div class="refsect3">
|
2579
|
+
<a name="id-1.4.2.4.9.48.5"></a><h4>Parameters</h4>
|
2580
|
+
<div class="informaltable"><table width="100%" border="0">
|
2581
|
+
<colgroup>
|
2582
|
+
<col width="150px" class="parameters_name">
|
2583
|
+
<col class="parameters_description">
|
2584
|
+
<col width="200px" class="parameters_annotations">
|
2585
|
+
</colgroup>
|
2586
|
+
<tbody><tr>
|
2587
|
+
<td class="parameter_name"><p>info</p></td>
|
2588
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
2589
|
+
<td class="parameter_annotations"> </td>
|
2590
|
+
</tr></tbody>
|
2591
|
+
</table></div>
|
2592
|
+
</div>
|
2593
|
+
<div class="refsect3">
|
2594
|
+
<a name="id-1.4.2.4.9.48.6"></a><h4>Returns</h4>
|
2595
|
+
<p> a <a href="../glib/glib-Basic-Types.html#gint32"><span class="type">gint32</span></a> containing the value of the "standard::sort_order" attribute.</p>
|
2596
|
+
<p></p>
|
2597
|
+
</div>
|
2598
|
+
</div>
|
2599
|
+
<hr>
|
2600
|
+
<div class="refsect2">
|
2601
|
+
<a name="g-file-info-get-deletion-date"></a><h3>g_file_info_get_deletion_date ()</h3>
|
2602
|
+
<pre class="programlisting"><a href="../glib/glib-GDateTime.html#GDateTime"><span class="returnvalue">GDateTime</span></a> *
|
2603
|
+
g_file_info_get_deletion_date (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>);</pre>
|
2604
|
+
<p>Returns the <a href="../glib/glib-GDateTime.html#GDateTime"><span class="type">GDateTime</span></a> representing the deletion date of the file, as
|
2605
|
+
available in G_FILE_ATTRIBUTE_TRASH_DELETION_DATE. If the
|
2606
|
+
G_FILE_ATTRIBUTE_TRASH_DELETION_DATE attribute is unset, <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> is returned.</p>
|
2607
|
+
<div class="refsect3">
|
2608
|
+
<a name="id-1.4.2.4.9.49.5"></a><h4>Parameters</h4>
|
2609
|
+
<div class="informaltable"><table width="100%" border="0">
|
2610
|
+
<colgroup>
|
2611
|
+
<col width="150px" class="parameters_name">
|
2612
|
+
<col class="parameters_description">
|
2613
|
+
<col width="200px" class="parameters_annotations">
|
2614
|
+
</colgroup>
|
2615
|
+
<tbody><tr>
|
2616
|
+
<td class="parameter_name"><p>info</p></td>
|
2617
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
2618
|
+
<td class="parameter_annotations"> </td>
|
2619
|
+
</tr></tbody>
|
2620
|
+
</table></div>
|
2621
|
+
</div>
|
2622
|
+
<div class="refsect3">
|
2623
|
+
<a name="id-1.4.2.4.9.49.6"></a><h4>Returns</h4>
|
2624
|
+
<p> a <a href="../glib/glib-GDateTime.html#GDateTime"><span class="type">GDateTime</span></a>, or <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</p>
|
2625
|
+
<p></p>
|
2626
|
+
</div>
|
2627
|
+
<p class="since">Since 2.36</p>
|
2628
|
+
</div>
|
2629
|
+
<hr>
|
2630
|
+
<div class="refsect2">
|
2631
|
+
<a name="g-file-info-set-attribute-mask"></a><h3>g_file_info_set_attribute_mask ()</h3>
|
2632
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2633
|
+
g_file_info_set_attribute_mask (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
|
2634
|
+
<em class="parameter"><code><a class="link" href="GFileInfo.html#GFileAttributeMatcher"><span class="type">GFileAttributeMatcher</span></a> *mask</code></em>);</pre>
|
2635
|
+
<p>Sets <em class="parameter"><code>mask</code></em>
|
2636
|
+
on <em class="parameter"><code>info</code></em>
|
2637
|
+
to match specific attribute types.</p>
|
2638
|
+
<div class="refsect3">
|
2639
|
+
<a name="id-1.4.2.4.9.50.5"></a><h4>Parameters</h4>
|
2640
|
+
<div class="informaltable"><table width="100%" border="0">
|
2641
|
+
<colgroup>
|
2642
|
+
<col width="150px" class="parameters_name">
|
2643
|
+
<col class="parameters_description">
|
2644
|
+
<col width="200px" class="parameters_annotations">
|
2645
|
+
</colgroup>
|
2646
|
+
<tbody>
|
2647
|
+
<tr>
|
2648
|
+
<td class="parameter_name"><p>info</p></td>
|
2649
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
2650
|
+
<td class="parameter_annotations"> </td>
|
2651
|
+
</tr>
|
2652
|
+
<tr>
|
2653
|
+
<td class="parameter_name"><p>mask</p></td>
|
2654
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html#GFileAttributeMatcher"><span class="type">GFileAttributeMatcher</span></a>.</p></td>
|
2655
|
+
<td class="parameter_annotations"> </td>
|
2656
|
+
</tr>
|
2657
|
+
</tbody>
|
2658
|
+
</table></div>
|
2659
|
+
</div>
|
2660
|
+
</div>
|
2661
|
+
<hr>
|
2662
|
+
<div class="refsect2">
|
2663
|
+
<a name="g-file-info-unset-attribute-mask"></a><h3>g_file_info_unset_attribute_mask ()</h3>
|
2664
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2665
|
+
g_file_info_unset_attribute_mask (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>);</pre>
|
2666
|
+
<p>Unsets a mask set by <a class="link" href="GFileInfo.html#g-file-info-set-attribute-mask" title="g_file_info_set_attribute_mask ()"><code class="function">g_file_info_set_attribute_mask()</code></a>, if one
|
2667
|
+
is set.</p>
|
2668
|
+
<div class="refsect3">
|
2669
|
+
<a name="id-1.4.2.4.9.51.5"></a><h4>Parameters</h4>
|
2670
|
+
<div class="informaltable"><table width="100%" border="0">
|
2671
|
+
<colgroup>
|
2672
|
+
<col width="150px" class="parameters_name">
|
2673
|
+
<col class="parameters_description">
|
2674
|
+
<col width="200px" class="parameters_annotations">
|
2675
|
+
</colgroup>
|
2676
|
+
<tbody><tr>
|
2677
|
+
<td class="parameter_name"><p>info</p></td>
|
2678
|
+
<td class="parameter_description"><p><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
2679
|
+
<td class="parameter_annotations"> </td>
|
2680
|
+
</tr></tbody>
|
2681
|
+
</table></div>
|
2682
|
+
</div>
|
2683
|
+
</div>
|
2684
|
+
<hr>
|
2685
|
+
<div class="refsect2">
|
2686
|
+
<a name="g-file-info-set-file-type"></a><h3>g_file_info_set_file_type ()</h3>
|
2687
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2688
|
+
g_file_info_set_file_type (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
|
2689
|
+
<em class="parameter"><code><a class="link" href="GFileInfo.html#GFileType" title="enum GFileType"><span class="type">GFileType</span></a> type</code></em>);</pre>
|
2690
|
+
<p>Sets the file type in a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> to <em class="parameter"><code>type</code></em>
|
2691
|
+
.
|
2692
|
+
See <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-TYPE:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_TYPE"><code class="literal">G_FILE_ATTRIBUTE_STANDARD_TYPE</code></a>.</p>
|
2693
|
+
<div class="refsect3">
|
2694
|
+
<a name="id-1.4.2.4.9.52.5"></a><h4>Parameters</h4>
|
2695
|
+
<div class="informaltable"><table width="100%" border="0">
|
2696
|
+
<colgroup>
|
2697
|
+
<col width="150px" class="parameters_name">
|
2698
|
+
<col class="parameters_description">
|
2699
|
+
<col width="200px" class="parameters_annotations">
|
2700
|
+
</colgroup>
|
2701
|
+
<tbody>
|
2702
|
+
<tr>
|
2703
|
+
<td class="parameter_name"><p>info</p></td>
|
2704
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
2705
|
+
<td class="parameter_annotations"> </td>
|
2706
|
+
</tr>
|
2707
|
+
<tr>
|
2708
|
+
<td class="parameter_name"><p>type</p></td>
|
2709
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html#GFileType" title="enum GFileType"><span class="type">GFileType</span></a>.</p></td>
|
2710
|
+
<td class="parameter_annotations"> </td>
|
2711
|
+
</tr>
|
2712
|
+
</tbody>
|
2713
|
+
</table></div>
|
2714
|
+
</div>
|
2715
|
+
</div>
|
2716
|
+
<hr>
|
2717
|
+
<div class="refsect2">
|
2718
|
+
<a name="g-file-info-set-is-hidden"></a><h3>g_file_info_set_is_hidden ()</h3>
|
2719
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2720
|
+
g_file_info_set_is_hidden (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
|
2721
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> is_hidden</code></em>);</pre>
|
2722
|
+
<p>Sets the "is_hidden" attribute in a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> according to <em class="parameter"><code>is_hidden</code></em>
|
2723
|
+
.
|
2724
|
+
See <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-IS-HIDDEN:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_IS_HIDDEN"><code class="literal">G_FILE_ATTRIBUTE_STANDARD_IS_HIDDEN</code></a>.</p>
|
2725
|
+
<div class="refsect3">
|
2726
|
+
<a name="id-1.4.2.4.9.53.5"></a><h4>Parameters</h4>
|
2727
|
+
<div class="informaltable"><table width="100%" border="0">
|
2728
|
+
<colgroup>
|
2729
|
+
<col width="150px" class="parameters_name">
|
2730
|
+
<col class="parameters_description">
|
2731
|
+
<col width="200px" class="parameters_annotations">
|
2732
|
+
</colgroup>
|
2733
|
+
<tbody>
|
2734
|
+
<tr>
|
2735
|
+
<td class="parameter_name"><p>info</p></td>
|
2736
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
2737
|
+
<td class="parameter_annotations"> </td>
|
2738
|
+
</tr>
|
2739
|
+
<tr>
|
2740
|
+
<td class="parameter_name"><p>is_hidden</p></td>
|
2741
|
+
<td class="parameter_description"><p>a <a href="../glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>.</p></td>
|
2742
|
+
<td class="parameter_annotations"> </td>
|
2743
|
+
</tr>
|
2744
|
+
</tbody>
|
2745
|
+
</table></div>
|
2746
|
+
</div>
|
2747
|
+
</div>
|
2748
|
+
<hr>
|
2749
|
+
<div class="refsect2">
|
2750
|
+
<a name="g-file-info-set-is-symlink"></a><h3>g_file_info_set_is_symlink ()</h3>
|
2751
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2752
|
+
g_file_info_set_is_symlink (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
|
2753
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> is_symlink</code></em>);</pre>
|
2754
|
+
<p>Sets the "is_symlink" attribute in a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> according to <em class="parameter"><code>is_symlink</code></em>
|
2755
|
+
.
|
2756
|
+
See <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-IS-SYMLINK:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_IS_SYMLINK"><code class="literal">G_FILE_ATTRIBUTE_STANDARD_IS_SYMLINK</code></a>.</p>
|
2757
|
+
<div class="refsect3">
|
2758
|
+
<a name="id-1.4.2.4.9.54.5"></a><h4>Parameters</h4>
|
2759
|
+
<div class="informaltable"><table width="100%" border="0">
|
2760
|
+
<colgroup>
|
2761
|
+
<col width="150px" class="parameters_name">
|
2762
|
+
<col class="parameters_description">
|
2763
|
+
<col width="200px" class="parameters_annotations">
|
2764
|
+
</colgroup>
|
2765
|
+
<tbody>
|
2766
|
+
<tr>
|
2767
|
+
<td class="parameter_name"><p>info</p></td>
|
2768
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
2769
|
+
<td class="parameter_annotations"> </td>
|
2770
|
+
</tr>
|
2771
|
+
<tr>
|
2772
|
+
<td class="parameter_name"><p>is_symlink</p></td>
|
2773
|
+
<td class="parameter_description"><p>a <a href="../glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>.</p></td>
|
2774
|
+
<td class="parameter_annotations"> </td>
|
2775
|
+
</tr>
|
2776
|
+
</tbody>
|
2777
|
+
</table></div>
|
2778
|
+
</div>
|
2779
|
+
</div>
|
2780
|
+
<hr>
|
2781
|
+
<div class="refsect2">
|
2782
|
+
<a name="g-file-info-set-name"></a><h3>g_file_info_set_name ()</h3>
|
2783
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2784
|
+
g_file_info_set_name (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
|
2785
|
+
<em class="parameter"><code>const <span class="type">char</span> *name</code></em>);</pre>
|
2786
|
+
<p>Sets the name attribute for the current <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
|
2787
|
+
See <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-NAME:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_NAME"><code class="literal">G_FILE_ATTRIBUTE_STANDARD_NAME</code></a>.</p>
|
2788
|
+
<div class="refsect3">
|
2789
|
+
<a name="id-1.4.2.4.9.55.5"></a><h4>Parameters</h4>
|
2790
|
+
<div class="informaltable"><table width="100%" border="0">
|
2791
|
+
<colgroup>
|
2792
|
+
<col width="150px" class="parameters_name">
|
2793
|
+
<col class="parameters_description">
|
2794
|
+
<col width="200px" class="parameters_annotations">
|
2795
|
+
</colgroup>
|
2796
|
+
<tbody>
|
2797
|
+
<tr>
|
2798
|
+
<td class="parameter_name"><p>info</p></td>
|
2799
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
2800
|
+
<td class="parameter_annotations"> </td>
|
2801
|
+
</tr>
|
2802
|
+
<tr>
|
2803
|
+
<td class="parameter_name"><p>name</p></td>
|
2804
|
+
<td class="parameter_description"><p>a string containing a name.</p></td>
|
2805
|
+
<td class="parameter_annotations"> </td>
|
2806
|
+
</tr>
|
2807
|
+
</tbody>
|
2808
|
+
</table></div>
|
2809
|
+
</div>
|
2810
|
+
</div>
|
2811
|
+
<hr>
|
2812
|
+
<div class="refsect2">
|
2813
|
+
<a name="g-file-info-set-display-name"></a><h3>g_file_info_set_display_name ()</h3>
|
2814
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2815
|
+
g_file_info_set_display_name (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
|
2816
|
+
<em class="parameter"><code>const <span class="type">char</span> *display_name</code></em>);</pre>
|
2817
|
+
<p>Sets the display name for the current <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
|
2818
|
+
See <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-DISPLAY-NAME:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_DISPLAY_NAME"><code class="literal">G_FILE_ATTRIBUTE_STANDARD_DISPLAY_NAME</code></a>.</p>
|
2819
|
+
<div class="refsect3">
|
2820
|
+
<a name="id-1.4.2.4.9.56.5"></a><h4>Parameters</h4>
|
2821
|
+
<div class="informaltable"><table width="100%" border="0">
|
2822
|
+
<colgroup>
|
2823
|
+
<col width="150px" class="parameters_name">
|
2824
|
+
<col class="parameters_description">
|
2825
|
+
<col width="200px" class="parameters_annotations">
|
2826
|
+
</colgroup>
|
2827
|
+
<tbody>
|
2828
|
+
<tr>
|
2829
|
+
<td class="parameter_name"><p>info</p></td>
|
2830
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
2831
|
+
<td class="parameter_annotations"> </td>
|
2832
|
+
</tr>
|
2833
|
+
<tr>
|
2834
|
+
<td class="parameter_name"><p>display_name</p></td>
|
2835
|
+
<td class="parameter_description"><p>a string containing a display name.</p></td>
|
2836
|
+
<td class="parameter_annotations"> </td>
|
2837
|
+
</tr>
|
2838
|
+
</tbody>
|
2839
|
+
</table></div>
|
2840
|
+
</div>
|
2841
|
+
</div>
|
2842
|
+
<hr>
|
2843
|
+
<div class="refsect2">
|
2844
|
+
<a name="g-file-info-set-edit-name"></a><h3>g_file_info_set_edit_name ()</h3>
|
2845
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2846
|
+
g_file_info_set_edit_name (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
|
2847
|
+
<em class="parameter"><code>const <span class="type">char</span> *edit_name</code></em>);</pre>
|
2848
|
+
<p>Sets the edit name for the current file.
|
2849
|
+
See <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-EDIT-NAME:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_EDIT_NAME"><code class="literal">G_FILE_ATTRIBUTE_STANDARD_EDIT_NAME</code></a>.</p>
|
2850
|
+
<div class="refsect3">
|
2851
|
+
<a name="id-1.4.2.4.9.57.5"></a><h4>Parameters</h4>
|
2852
|
+
<div class="informaltable"><table width="100%" border="0">
|
2853
|
+
<colgroup>
|
2854
|
+
<col width="150px" class="parameters_name">
|
2855
|
+
<col class="parameters_description">
|
2856
|
+
<col width="200px" class="parameters_annotations">
|
2857
|
+
</colgroup>
|
2858
|
+
<tbody>
|
2859
|
+
<tr>
|
2860
|
+
<td class="parameter_name"><p>info</p></td>
|
2861
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
2862
|
+
<td class="parameter_annotations"> </td>
|
2863
|
+
</tr>
|
2864
|
+
<tr>
|
2865
|
+
<td class="parameter_name"><p>edit_name</p></td>
|
2866
|
+
<td class="parameter_description"><p>a string containing an edit name.</p></td>
|
2867
|
+
<td class="parameter_annotations"> </td>
|
2868
|
+
</tr>
|
2869
|
+
</tbody>
|
2870
|
+
</table></div>
|
2871
|
+
</div>
|
2872
|
+
</div>
|
2873
|
+
<hr>
|
2874
|
+
<div class="refsect2">
|
2875
|
+
<a name="g-file-info-set-icon"></a><h3>g_file_info_set_icon ()</h3>
|
2876
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2877
|
+
g_file_info_set_icon (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
|
2878
|
+
<em class="parameter"><code><a class="link" href="GIcon.html" title="GIcon"><span class="type">GIcon</span></a> *icon</code></em>);</pre>
|
2879
|
+
<p>Sets the icon for a given <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
|
2880
|
+
See <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-ICON:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_ICON"><code class="literal">G_FILE_ATTRIBUTE_STANDARD_ICON</code></a>.</p>
|
2881
|
+
<div class="refsect3">
|
2882
|
+
<a name="id-1.4.2.4.9.58.5"></a><h4>Parameters</h4>
|
2883
|
+
<div class="informaltable"><table width="100%" border="0">
|
2884
|
+
<colgroup>
|
2885
|
+
<col width="150px" class="parameters_name">
|
2886
|
+
<col class="parameters_description">
|
2887
|
+
<col width="200px" class="parameters_annotations">
|
2888
|
+
</colgroup>
|
2889
|
+
<tbody>
|
2890
|
+
<tr>
|
2891
|
+
<td class="parameter_name"><p>info</p></td>
|
2892
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
2893
|
+
<td class="parameter_annotations"> </td>
|
2894
|
+
</tr>
|
2895
|
+
<tr>
|
2896
|
+
<td class="parameter_name"><p>icon</p></td>
|
2897
|
+
<td class="parameter_description"><p>a <a class="link" href="GIcon.html" title="GIcon"><span class="type">GIcon</span></a>.</p></td>
|
2898
|
+
<td class="parameter_annotations"> </td>
|
2899
|
+
</tr>
|
2900
|
+
</tbody>
|
2901
|
+
</table></div>
|
2902
|
+
</div>
|
2903
|
+
</div>
|
2904
|
+
<hr>
|
2905
|
+
<div class="refsect2">
|
2906
|
+
<a name="g-file-info-set-symbolic-icon"></a><h3>g_file_info_set_symbolic_icon ()</h3>
|
2907
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2908
|
+
g_file_info_set_symbolic_icon (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
|
2909
|
+
<em class="parameter"><code><a class="link" href="GIcon.html" title="GIcon"><span class="type">GIcon</span></a> *icon</code></em>);</pre>
|
2910
|
+
<p>Sets the symbolic icon for a given <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
|
2911
|
+
See <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-SYMBOLIC-ICON:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_SYMBOLIC_ICON"><code class="literal">G_FILE_ATTRIBUTE_STANDARD_SYMBOLIC_ICON</code></a>.</p>
|
2912
|
+
<div class="refsect3">
|
2913
|
+
<a name="id-1.4.2.4.9.59.5"></a><h4>Parameters</h4>
|
2914
|
+
<div class="informaltable"><table width="100%" border="0">
|
2915
|
+
<colgroup>
|
2916
|
+
<col width="150px" class="parameters_name">
|
2917
|
+
<col class="parameters_description">
|
2918
|
+
<col width="200px" class="parameters_annotations">
|
2919
|
+
</colgroup>
|
2920
|
+
<tbody>
|
2921
|
+
<tr>
|
2922
|
+
<td class="parameter_name"><p>info</p></td>
|
2923
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
2924
|
+
<td class="parameter_annotations"> </td>
|
2925
|
+
</tr>
|
2926
|
+
<tr>
|
2927
|
+
<td class="parameter_name"><p>icon</p></td>
|
2928
|
+
<td class="parameter_description"><p>a <a class="link" href="GIcon.html" title="GIcon"><span class="type">GIcon</span></a>.</p></td>
|
2929
|
+
<td class="parameter_annotations"> </td>
|
2930
|
+
</tr>
|
2931
|
+
</tbody>
|
2932
|
+
</table></div>
|
2933
|
+
</div>
|
2934
|
+
<p class="since">Since 2.34</p>
|
2935
|
+
</div>
|
2936
|
+
<hr>
|
2937
|
+
<div class="refsect2">
|
2938
|
+
<a name="g-file-info-set-content-type"></a><h3>g_file_info_set_content_type ()</h3>
|
2939
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2940
|
+
g_file_info_set_content_type (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
|
2941
|
+
<em class="parameter"><code>const <span class="type">char</span> *content_type</code></em>);</pre>
|
2942
|
+
<p>Sets the content type attribute for a given <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.
|
2943
|
+
See <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-CONTENT-TYPE:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_CONTENT_TYPE"><code class="literal">G_FILE_ATTRIBUTE_STANDARD_CONTENT_TYPE</code></a>.</p>
|
2944
|
+
<div class="refsect3">
|
2945
|
+
<a name="id-1.4.2.4.9.60.5"></a><h4>Parameters</h4>
|
2946
|
+
<div class="informaltable"><table width="100%" border="0">
|
2947
|
+
<colgroup>
|
2948
|
+
<col width="150px" class="parameters_name">
|
2949
|
+
<col class="parameters_description">
|
2950
|
+
<col width="200px" class="parameters_annotations">
|
2951
|
+
</colgroup>
|
2952
|
+
<tbody>
|
2953
|
+
<tr>
|
2954
|
+
<td class="parameter_name"><p>info</p></td>
|
2955
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
2956
|
+
<td class="parameter_annotations"> </td>
|
2957
|
+
</tr>
|
2958
|
+
<tr>
|
2959
|
+
<td class="parameter_name"><p>content_type</p></td>
|
2960
|
+
<td class="parameter_description"><p>a content type. See <a class="link" href="gio-GContentType.html" title="GContentType">GContentType</a></p></td>
|
2961
|
+
<td class="parameter_annotations"> </td>
|
2962
|
+
</tr>
|
2963
|
+
</tbody>
|
2964
|
+
</table></div>
|
2965
|
+
</div>
|
2966
|
+
</div>
|
2967
|
+
<hr>
|
2968
|
+
<div class="refsect2">
|
2969
|
+
<a name="g-file-info-set-size"></a><h3>g_file_info_set_size ()</h3>
|
2970
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2971
|
+
g_file_info_set_size (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
|
2972
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#goffset"><span class="type">goffset</span></a> size</code></em>);</pre>
|
2973
|
+
<p>Sets the <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-SIZE:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_SIZE"><code class="literal">G_FILE_ATTRIBUTE_STANDARD_SIZE</code></a> attribute in the file info
|
2974
|
+
to the given size.</p>
|
2975
|
+
<div class="refsect3">
|
2976
|
+
<a name="id-1.4.2.4.9.61.5"></a><h4>Parameters</h4>
|
2977
|
+
<div class="informaltable"><table width="100%" border="0">
|
2978
|
+
<colgroup>
|
2979
|
+
<col width="150px" class="parameters_name">
|
2980
|
+
<col class="parameters_description">
|
2981
|
+
<col width="200px" class="parameters_annotations">
|
2982
|
+
</colgroup>
|
2983
|
+
<tbody>
|
2984
|
+
<tr>
|
2985
|
+
<td class="parameter_name"><p>info</p></td>
|
2986
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
2987
|
+
<td class="parameter_annotations"> </td>
|
2988
|
+
</tr>
|
2989
|
+
<tr>
|
2990
|
+
<td class="parameter_name"><p>size</p></td>
|
2991
|
+
<td class="parameter_description"><p>a <a href="../glib/glib-Basic-Types.html#goffset"><span class="type">goffset</span></a> containing the file's size.</p></td>
|
2992
|
+
<td class="parameter_annotations"> </td>
|
2993
|
+
</tr>
|
2994
|
+
</tbody>
|
2995
|
+
</table></div>
|
2996
|
+
</div>
|
2997
|
+
</div>
|
2998
|
+
<hr>
|
2999
|
+
<div class="refsect2">
|
3000
|
+
<a name="g-file-info-set-modification-time"></a><h3>g_file_info_set_modification_time ()</h3>
|
3001
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
3002
|
+
g_file_info_set_modification_time (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
|
3003
|
+
<em class="parameter"><code><a href="../glib/glib-Date-and-Time-Functions.html#GTimeVal"><span class="type">GTimeVal</span></a> *mtime</code></em>);</pre>
|
3004
|
+
<p>Sets the <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-TIME-MODIFIED:CAPS" title="G_FILE_ATTRIBUTE_TIME_MODIFIED"><code class="literal">G_FILE_ATTRIBUTE_TIME_MODIFIED</code></a> attribute in the file
|
3005
|
+
info to the given time value.</p>
|
3006
|
+
<div class="refsect3">
|
3007
|
+
<a name="id-1.4.2.4.9.62.5"></a><h4>Parameters</h4>
|
3008
|
+
<div class="informaltable"><table width="100%" border="0">
|
3009
|
+
<colgroup>
|
3010
|
+
<col width="150px" class="parameters_name">
|
3011
|
+
<col class="parameters_description">
|
3012
|
+
<col width="200px" class="parameters_annotations">
|
3013
|
+
</colgroup>
|
3014
|
+
<tbody>
|
3015
|
+
<tr>
|
3016
|
+
<td class="parameter_name"><p>info</p></td>
|
3017
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
3018
|
+
<td class="parameter_annotations"> </td>
|
3019
|
+
</tr>
|
3020
|
+
<tr>
|
3021
|
+
<td class="parameter_name"><p>mtime</p></td>
|
3022
|
+
<td class="parameter_description"><p>a <a href="../glib/glib-Date-and-Time-Functions.html#GTimeVal"><span class="type">GTimeVal</span></a>.</p></td>
|
3023
|
+
<td class="parameter_annotations"> </td>
|
3024
|
+
</tr>
|
3025
|
+
</tbody>
|
3026
|
+
</table></div>
|
3027
|
+
</div>
|
3028
|
+
</div>
|
3029
|
+
<hr>
|
3030
|
+
<div class="refsect2">
|
3031
|
+
<a name="g-file-info-set-symlink-target"></a><h3>g_file_info_set_symlink_target ()</h3>
|
3032
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
3033
|
+
g_file_info_set_symlink_target (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
|
3034
|
+
<em class="parameter"><code>const <span class="type">char</span> *symlink_target</code></em>);</pre>
|
3035
|
+
<p>Sets the <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-SYMLINK-TARGET:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_SYMLINK_TARGET"><code class="literal">G_FILE_ATTRIBUTE_STANDARD_SYMLINK_TARGET</code></a> attribute in the file info
|
3036
|
+
to the given symlink target.</p>
|
3037
|
+
<div class="refsect3">
|
3038
|
+
<a name="id-1.4.2.4.9.63.5"></a><h4>Parameters</h4>
|
3039
|
+
<div class="informaltable"><table width="100%" border="0">
|
3040
|
+
<colgroup>
|
3041
|
+
<col width="150px" class="parameters_name">
|
3042
|
+
<col class="parameters_description">
|
3043
|
+
<col width="200px" class="parameters_annotations">
|
3044
|
+
</colgroup>
|
3045
|
+
<tbody>
|
3046
|
+
<tr>
|
3047
|
+
<td class="parameter_name"><p>info</p></td>
|
3048
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
3049
|
+
<td class="parameter_annotations"> </td>
|
3050
|
+
</tr>
|
3051
|
+
<tr>
|
3052
|
+
<td class="parameter_name"><p>symlink_target</p></td>
|
3053
|
+
<td class="parameter_description"><p>a static string containing a path to a symlink target.</p></td>
|
3054
|
+
<td class="parameter_annotations"> </td>
|
3055
|
+
</tr>
|
3056
|
+
</tbody>
|
3057
|
+
</table></div>
|
3058
|
+
</div>
|
3059
|
+
</div>
|
3060
|
+
<hr>
|
3061
|
+
<div class="refsect2">
|
3062
|
+
<a name="g-file-info-set-sort-order"></a><h3>g_file_info_set_sort_order ()</h3>
|
3063
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
3064
|
+
g_file_info_set_sort_order (<em class="parameter"><code><a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a> *info</code></em>,
|
3065
|
+
<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gint32"><span class="type">gint32</span></a> sort_order</code></em>);</pre>
|
3066
|
+
<p>Sets the sort order attribute in the file info structure. See
|
3067
|
+
<a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-SORT-ORDER:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_SORT_ORDER"><code class="literal">G_FILE_ATTRIBUTE_STANDARD_SORT_ORDER</code></a>.</p>
|
3068
|
+
<div class="refsect3">
|
3069
|
+
<a name="id-1.4.2.4.9.64.5"></a><h4>Parameters</h4>
|
3070
|
+
<div class="informaltable"><table width="100%" border="0">
|
3071
|
+
<colgroup>
|
3072
|
+
<col width="150px" class="parameters_name">
|
3073
|
+
<col class="parameters_description">
|
3074
|
+
<col width="200px" class="parameters_annotations">
|
3075
|
+
</colgroup>
|
3076
|
+
<tbody>
|
3077
|
+
<tr>
|
3078
|
+
<td class="parameter_name"><p>info</p></td>
|
3079
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html" title="GFileInfo"><span class="type">GFileInfo</span></a>.</p></td>
|
3080
|
+
<td class="parameter_annotations"> </td>
|
3081
|
+
</tr>
|
3082
|
+
<tr>
|
3083
|
+
<td class="parameter_name"><p>sort_order</p></td>
|
3084
|
+
<td class="parameter_description"><p>a sort order integer.</p></td>
|
3085
|
+
<td class="parameter_annotations"> </td>
|
3086
|
+
</tr>
|
3087
|
+
</tbody>
|
3088
|
+
</table></div>
|
3089
|
+
</div>
|
3090
|
+
</div>
|
3091
|
+
<hr>
|
3092
|
+
<div class="refsect2">
|
3093
|
+
<a name="g-file-attribute-matcher-new"></a><h3>g_file_attribute_matcher_new ()</h3>
|
3094
|
+
<pre class="programlisting"><a class="link" href="GFileInfo.html#GFileAttributeMatcher"><span class="returnvalue">GFileAttributeMatcher</span></a> *
|
3095
|
+
g_file_attribute_matcher_new (<em class="parameter"><code>const <span class="type">char</span> *attributes</code></em>);</pre>
|
3096
|
+
<p>Creates a new file attribute matcher, which matches attributes
|
3097
|
+
against a given string. <a href="GFileInfo.html#GFileAttributeMatcher"><span class="type">GFileAttributeMatchers</span></a> are reference
|
3098
|
+
counted structures, and are created with a reference count of 1. If
|
3099
|
+
the number of references falls to 0, the <a class="link" href="GFileInfo.html#GFileAttributeMatcher"><span class="type">GFileAttributeMatcher</span></a> is
|
3100
|
+
automatically destroyed.</p>
|
3101
|
+
<p>The <em class="parameter"><code>attribute</code></em>
|
3102
|
+
string should be formatted with specific keys separated
|
3103
|
+
from namespaces with a double colon. Several "namespace::key" strings may be
|
3104
|
+
concatenated with a single comma (e.g. "standard::type,standard::is-hidden").
|
3105
|
+
The wildcard "*" may be used to match all keys and namespaces, or
|
3106
|
+
"namespace::*" will match all keys in a given namespace.</p>
|
3107
|
+
<div class="refsect3">
|
3108
|
+
<a name="id-1.4.2.4.9.65.6"></a><h4>Examples of file attribute matcher strings and results</h4>
|
3109
|
+
<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
|
3110
|
+
<li class="listitem"><p><code class="literal">"*"</code>: matches all attributes.</p></li>
|
3111
|
+
<li class="listitem"><p><code class="literal">"standard::is-hidden"</code>: matches only the key is-hidden in the
|
3112
|
+
standard namespace.</p></li>
|
3113
|
+
<li class="listitem"><p><code class="literal">"standard::type,unix::*"</code>: matches the type key in the standard
|
3114
|
+
namespace and all keys in the unix namespace.</p></li>
|
3115
|
+
</ul></div>
|
3116
|
+
</div>
|
3117
|
+
<div class="refsect3">
|
3118
|
+
<a name="id-1.4.2.4.9.65.7"></a><h4>Parameters</h4>
|
3119
|
+
<div class="informaltable"><table width="100%" border="0">
|
3120
|
+
<colgroup>
|
3121
|
+
<col width="150px" class="parameters_name">
|
3122
|
+
<col class="parameters_description">
|
3123
|
+
<col width="200px" class="parameters_annotations">
|
3124
|
+
</colgroup>
|
3125
|
+
<tbody><tr>
|
3126
|
+
<td class="parameter_name"><p>attributes</p></td>
|
3127
|
+
<td class="parameter_description"><p>an attribute string to match.</p></td>
|
3128
|
+
<td class="parameter_annotations"> </td>
|
3129
|
+
</tr></tbody>
|
3130
|
+
</table></div>
|
3131
|
+
</div>
|
3132
|
+
<div class="refsect3">
|
3133
|
+
<a name="id-1.4.2.4.9.65.8"></a><h4>Returns</h4>
|
3134
|
+
<p> a <a class="link" href="GFileInfo.html#GFileAttributeMatcher"><span class="type">GFileAttributeMatcher</span></a></p>
|
3135
|
+
<p></p>
|
3136
|
+
</div>
|
3137
|
+
</div>
|
3138
|
+
<hr>
|
3139
|
+
<div class="refsect2">
|
3140
|
+
<a name="g-file-attribute-matcher-ref"></a><h3>g_file_attribute_matcher_ref ()</h3>
|
3141
|
+
<pre class="programlisting"><a class="link" href="GFileInfo.html#GFileAttributeMatcher"><span class="returnvalue">GFileAttributeMatcher</span></a> *
|
3142
|
+
g_file_attribute_matcher_ref (<em class="parameter"><code><a class="link" href="GFileInfo.html#GFileAttributeMatcher"><span class="type">GFileAttributeMatcher</span></a> *matcher</code></em>);</pre>
|
3143
|
+
<p>References a file attribute matcher.</p>
|
3144
|
+
<div class="refsect3">
|
3145
|
+
<a name="id-1.4.2.4.9.66.5"></a><h4>Parameters</h4>
|
3146
|
+
<div class="informaltable"><table width="100%" border="0">
|
3147
|
+
<colgroup>
|
3148
|
+
<col width="150px" class="parameters_name">
|
3149
|
+
<col class="parameters_description">
|
3150
|
+
<col width="200px" class="parameters_annotations">
|
3151
|
+
</colgroup>
|
3152
|
+
<tbody><tr>
|
3153
|
+
<td class="parameter_name"><p>matcher</p></td>
|
3154
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html#GFileAttributeMatcher"><span class="type">GFileAttributeMatcher</span></a>.</p></td>
|
3155
|
+
<td class="parameter_annotations"> </td>
|
3156
|
+
</tr></tbody>
|
3157
|
+
</table></div>
|
3158
|
+
</div>
|
3159
|
+
<div class="refsect3">
|
3160
|
+
<a name="id-1.4.2.4.9.66.6"></a><h4>Returns</h4>
|
3161
|
+
<p> a <a class="link" href="GFileInfo.html#GFileAttributeMatcher"><span class="type">GFileAttributeMatcher</span></a>.</p>
|
3162
|
+
<p></p>
|
3163
|
+
</div>
|
3164
|
+
</div>
|
3165
|
+
<hr>
|
3166
|
+
<div class="refsect2">
|
3167
|
+
<a name="g-file-attribute-matcher-subtract"></a><h3>g_file_attribute_matcher_subtract ()</h3>
|
3168
|
+
<pre class="programlisting"><a class="link" href="GFileInfo.html#GFileAttributeMatcher"><span class="returnvalue">GFileAttributeMatcher</span></a> *
|
3169
|
+
g_file_attribute_matcher_subtract (<em class="parameter"><code><a class="link" href="GFileInfo.html#GFileAttributeMatcher"><span class="type">GFileAttributeMatcher</span></a> *matcher</code></em>,
|
3170
|
+
<em class="parameter"><code><a class="link" href="GFileInfo.html#GFileAttributeMatcher"><span class="type">GFileAttributeMatcher</span></a> *subtract</code></em>);</pre>
|
3171
|
+
<p>Subtracts all attributes of <em class="parameter"><code>subtract</code></em>
|
3172
|
+
from <em class="parameter"><code>matcher</code></em>
|
3173
|
+
and returns
|
3174
|
+
a matcher that supports those attributes.</p>
|
3175
|
+
<p>Note that currently it is not possible to remove a single
|
3176
|
+
attribute when the <em class="parameter"><code>matcher</code></em>
|
3177
|
+
matches the whole namespace - or remove
|
3178
|
+
a namespace or attribute when the matcher matches everything. This
|
3179
|
+
is a limitation of the current implementation, but may be fixed
|
3180
|
+
in the future.</p>
|
3181
|
+
<div class="refsect3">
|
3182
|
+
<a name="id-1.4.2.4.9.67.6"></a><h4>Parameters</h4>
|
3183
|
+
<div class="informaltable"><table width="100%" border="0">
|
3184
|
+
<colgroup>
|
3185
|
+
<col width="150px" class="parameters_name">
|
3186
|
+
<col class="parameters_description">
|
3187
|
+
<col width="200px" class="parameters_annotations">
|
3188
|
+
</colgroup>
|
3189
|
+
<tbody>
|
3190
|
+
<tr>
|
3191
|
+
<td class="parameter_name"><p>matcher</p></td>
|
3192
|
+
<td class="parameter_description"><p>Matcher to subtract from </p></td>
|
3193
|
+
<td class="parameter_annotations"> </td>
|
3194
|
+
</tr>
|
3195
|
+
<tr>
|
3196
|
+
<td class="parameter_name"><p>subtract</p></td>
|
3197
|
+
<td class="parameter_description"><p>The matcher to subtract</p></td>
|
3198
|
+
<td class="parameter_annotations"> </td>
|
3199
|
+
</tr>
|
3200
|
+
</tbody>
|
3201
|
+
</table></div>
|
3202
|
+
</div>
|
3203
|
+
<div class="refsect3">
|
3204
|
+
<a name="id-1.4.2.4.9.67.7"></a><h4>Returns</h4>
|
3205
|
+
<p> A file attribute matcher matching all attributes of
|
3206
|
+
<em class="parameter"><code>matcher</code></em>
|
3207
|
+
that are not matched by <em class="parameter"><code>subtract</code></em>
|
3208
|
+
</p>
|
3209
|
+
<p></p>
|
3210
|
+
</div>
|
3211
|
+
</div>
|
3212
|
+
<hr>
|
3213
|
+
<div class="refsect2">
|
3214
|
+
<a name="g-file-attribute-matcher-unref"></a><h3>g_file_attribute_matcher_unref ()</h3>
|
3215
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
3216
|
+
g_file_attribute_matcher_unref (<em class="parameter"><code><a class="link" href="GFileInfo.html#GFileAttributeMatcher"><span class="type">GFileAttributeMatcher</span></a> *matcher</code></em>);</pre>
|
3217
|
+
<p>Unreferences <em class="parameter"><code>matcher</code></em>
|
3218
|
+
. If the reference count falls below 1,
|
3219
|
+
the <em class="parameter"><code>matcher</code></em>
|
3220
|
+
is automatically freed.</p>
|
3221
|
+
<div class="refsect3">
|
3222
|
+
<a name="id-1.4.2.4.9.68.5"></a><h4>Parameters</h4>
|
3223
|
+
<div class="informaltable"><table width="100%" border="0">
|
3224
|
+
<colgroup>
|
3225
|
+
<col width="150px" class="parameters_name">
|
3226
|
+
<col class="parameters_description">
|
3227
|
+
<col width="200px" class="parameters_annotations">
|
3228
|
+
</colgroup>
|
3229
|
+
<tbody><tr>
|
3230
|
+
<td class="parameter_name"><p>matcher</p></td>
|
3231
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html#GFileAttributeMatcher"><span class="type">GFileAttributeMatcher</span></a>.</p></td>
|
3232
|
+
<td class="parameter_annotations"> </td>
|
3233
|
+
</tr></tbody>
|
3234
|
+
</table></div>
|
3235
|
+
</div>
|
3236
|
+
</div>
|
3237
|
+
<hr>
|
3238
|
+
<div class="refsect2">
|
3239
|
+
<a name="g-file-attribute-matcher-matches"></a><h3>g_file_attribute_matcher_matches ()</h3>
|
3240
|
+
<pre class="programlisting"><a href="../glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
3241
|
+
g_file_attribute_matcher_matches (<em class="parameter"><code><a class="link" href="GFileInfo.html#GFileAttributeMatcher"><span class="type">GFileAttributeMatcher</span></a> *matcher</code></em>,
|
3242
|
+
<em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>);</pre>
|
3243
|
+
<p>Checks if an attribute will be matched by an attribute matcher. If
|
3244
|
+
the matcher was created with the "*" matching string, this function
|
3245
|
+
will always return <a href="../glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>.</p>
|
3246
|
+
<div class="refsect3">
|
3247
|
+
<a name="id-1.4.2.4.9.69.5"></a><h4>Parameters</h4>
|
3248
|
+
<div class="informaltable"><table width="100%" border="0">
|
3249
|
+
<colgroup>
|
3250
|
+
<col width="150px" class="parameters_name">
|
3251
|
+
<col class="parameters_description">
|
3252
|
+
<col width="200px" class="parameters_annotations">
|
3253
|
+
</colgroup>
|
3254
|
+
<tbody>
|
3255
|
+
<tr>
|
3256
|
+
<td class="parameter_name"><p>matcher</p></td>
|
3257
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html#GFileAttributeMatcher"><span class="type">GFileAttributeMatcher</span></a>.</p></td>
|
3258
|
+
<td class="parameter_annotations"> </td>
|
3259
|
+
</tr>
|
3260
|
+
<tr>
|
3261
|
+
<td class="parameter_name"><p>attribute</p></td>
|
3262
|
+
<td class="parameter_description"><p>a file attribute key.</p></td>
|
3263
|
+
<td class="parameter_annotations"> </td>
|
3264
|
+
</tr>
|
3265
|
+
</tbody>
|
3266
|
+
</table></div>
|
3267
|
+
</div>
|
3268
|
+
<div class="refsect3">
|
3269
|
+
<a name="id-1.4.2.4.9.69.6"></a><h4>Returns</h4>
|
3270
|
+
<p> <a href="../glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>attribute</code></em>
|
3271
|
+
matches <em class="parameter"><code>matcher</code></em>
|
3272
|
+
. <a href="../glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
|
3273
|
+
<p></p>
|
3274
|
+
</div>
|
3275
|
+
</div>
|
3276
|
+
<hr>
|
3277
|
+
<div class="refsect2">
|
3278
|
+
<a name="g-file-attribute-matcher-matches-only"></a><h3>g_file_attribute_matcher_matches_only ()</h3>
|
3279
|
+
<pre class="programlisting"><a href="../glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
3280
|
+
g_file_attribute_matcher_matches_only (<em class="parameter"><code><a class="link" href="GFileInfo.html#GFileAttributeMatcher"><span class="type">GFileAttributeMatcher</span></a> *matcher</code></em>,
|
3281
|
+
<em class="parameter"><code>const <span class="type">char</span> *attribute</code></em>);</pre>
|
3282
|
+
<p>Checks if a attribute matcher only matches a given attribute. Always
|
3283
|
+
returns <a href="../glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if "*" was used when creating the matcher.</p>
|
3284
|
+
<div class="refsect3">
|
3285
|
+
<a name="id-1.4.2.4.9.70.5"></a><h4>Parameters</h4>
|
3286
|
+
<div class="informaltable"><table width="100%" border="0">
|
3287
|
+
<colgroup>
|
3288
|
+
<col width="150px" class="parameters_name">
|
3289
|
+
<col class="parameters_description">
|
3290
|
+
<col width="200px" class="parameters_annotations">
|
3291
|
+
</colgroup>
|
3292
|
+
<tbody>
|
3293
|
+
<tr>
|
3294
|
+
<td class="parameter_name"><p>matcher</p></td>
|
3295
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html#GFileAttributeMatcher"><span class="type">GFileAttributeMatcher</span></a>.</p></td>
|
3296
|
+
<td class="parameter_annotations"> </td>
|
3297
|
+
</tr>
|
3298
|
+
<tr>
|
3299
|
+
<td class="parameter_name"><p>attribute</p></td>
|
3300
|
+
<td class="parameter_description"><p>a file attribute key.</p></td>
|
3301
|
+
<td class="parameter_annotations"> </td>
|
3302
|
+
</tr>
|
3303
|
+
</tbody>
|
3304
|
+
</table></div>
|
3305
|
+
</div>
|
3306
|
+
<div class="refsect3">
|
3307
|
+
<a name="id-1.4.2.4.9.70.6"></a><h4>Returns</h4>
|
3308
|
+
<p> <a href="../glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the matcher only matches <em class="parameter"><code>attribute</code></em>
|
3309
|
+
. <a href="../glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
|
3310
|
+
<p></p>
|
3311
|
+
</div>
|
3312
|
+
</div>
|
3313
|
+
<hr>
|
3314
|
+
<div class="refsect2">
|
3315
|
+
<a name="g-file-attribute-matcher-enumerate-namespace"></a><h3>g_file_attribute_matcher_enumerate_namespace ()</h3>
|
3316
|
+
<pre class="programlisting"><a href="../glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
3317
|
+
g_file_attribute_matcher_enumerate_namespace
|
3318
|
+
(<em class="parameter"><code><a class="link" href="GFileInfo.html#GFileAttributeMatcher"><span class="type">GFileAttributeMatcher</span></a> *matcher</code></em>,
|
3319
|
+
<em class="parameter"><code>const <span class="type">char</span> *ns</code></em>);</pre>
|
3320
|
+
<p>Checks if the matcher will match all of the keys in a given namespace.
|
3321
|
+
This will always return <a href="../glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if a wildcard character is in use (e.g. if
|
3322
|
+
matcher was created with "standard::*" and <em class="parameter"><code>ns</code></em>
|
3323
|
+
is "standard", or if matcher was created
|
3324
|
+
using "*" and namespace is anything.)</p>
|
3325
|
+
<p>TODO: this is awkwardly worded.</p>
|
3326
|
+
<div class="refsect3">
|
3327
|
+
<a name="id-1.4.2.4.9.71.6"></a><h4>Parameters</h4>
|
3328
|
+
<div class="informaltable"><table width="100%" border="0">
|
3329
|
+
<colgroup>
|
3330
|
+
<col width="150px" class="parameters_name">
|
3331
|
+
<col class="parameters_description">
|
3332
|
+
<col width="200px" class="parameters_annotations">
|
3333
|
+
</colgroup>
|
3334
|
+
<tbody>
|
3335
|
+
<tr>
|
3336
|
+
<td class="parameter_name"><p>matcher</p></td>
|
3337
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html#GFileAttributeMatcher"><span class="type">GFileAttributeMatcher</span></a>.</p></td>
|
3338
|
+
<td class="parameter_annotations"> </td>
|
3339
|
+
</tr>
|
3340
|
+
<tr>
|
3341
|
+
<td class="parameter_name"><p>ns</p></td>
|
3342
|
+
<td class="parameter_description"><p>a string containing a file attribute namespace.</p></td>
|
3343
|
+
<td class="parameter_annotations"> </td>
|
3344
|
+
</tr>
|
3345
|
+
</tbody>
|
3346
|
+
</table></div>
|
3347
|
+
</div>
|
3348
|
+
<div class="refsect3">
|
3349
|
+
<a name="id-1.4.2.4.9.71.7"></a><h4>Returns</h4>
|
3350
|
+
<p> <a href="../glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the matcher matches all of the entries
|
3351
|
+
in the given <em class="parameter"><code>ns</code></em>
|
3352
|
+
, <a href="../glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
|
3353
|
+
<p></p>
|
3354
|
+
</div>
|
3355
|
+
</div>
|
3356
|
+
<hr>
|
3357
|
+
<div class="refsect2">
|
3358
|
+
<a name="g-file-attribute-matcher-enumerate-next"></a><h3>g_file_attribute_matcher_enumerate_next ()</h3>
|
3359
|
+
<pre class="programlisting">const <span class="returnvalue">char</span> *
|
3360
|
+
g_file_attribute_matcher_enumerate_next
|
3361
|
+
(<em class="parameter"><code><a class="link" href="GFileInfo.html#GFileAttributeMatcher"><span class="type">GFileAttributeMatcher</span></a> *matcher</code></em>);</pre>
|
3362
|
+
<p>Gets the next matched attribute from a <a class="link" href="GFileInfo.html#GFileAttributeMatcher"><span class="type">GFileAttributeMatcher</span></a>.</p>
|
3363
|
+
<div class="refsect3">
|
3364
|
+
<a name="id-1.4.2.4.9.72.5"></a><h4>Parameters</h4>
|
3365
|
+
<div class="informaltable"><table width="100%" border="0">
|
3366
|
+
<colgroup>
|
3367
|
+
<col width="150px" class="parameters_name">
|
3368
|
+
<col class="parameters_description">
|
3369
|
+
<col width="200px" class="parameters_annotations">
|
3370
|
+
</colgroup>
|
3371
|
+
<tbody><tr>
|
3372
|
+
<td class="parameter_name"><p>matcher</p></td>
|
3373
|
+
<td class="parameter_description"><p>a <a class="link" href="GFileInfo.html#GFileAttributeMatcher"><span class="type">GFileAttributeMatcher</span></a>.</p></td>
|
3374
|
+
<td class="parameter_annotations"> </td>
|
3375
|
+
</tr></tbody>
|
3376
|
+
</table></div>
|
3377
|
+
</div>
|
3378
|
+
<div class="refsect3">
|
3379
|
+
<a name="id-1.4.2.4.9.72.6"></a><h4>Returns</h4>
|
3380
|
+
<p> a string containing the next attribute or <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if
|
3381
|
+
no more attribute exist.</p>
|
3382
|
+
<p></p>
|
3383
|
+
</div>
|
3384
|
+
</div>
|
3385
|
+
<hr>
|
3386
|
+
<div class="refsect2">
|
3387
|
+
<a name="g-file-attribute-matcher-to-string"></a><h3>g_file_attribute_matcher_to_string ()</h3>
|
3388
|
+
<pre class="programlisting"><span class="returnvalue">char</span> *
|
3389
|
+
g_file_attribute_matcher_to_string (<em class="parameter"><code><a class="link" href="GFileInfo.html#GFileAttributeMatcher"><span class="type">GFileAttributeMatcher</span></a> *matcher</code></em>);</pre>
|
3390
|
+
<p>Prints what the matcher is matching against. The format will be
|
3391
|
+
equal to the format passed to <a class="link" href="GFileInfo.html#g-file-attribute-matcher-new" title="g_file_attribute_matcher_new ()"><code class="function">g_file_attribute_matcher_new()</code></a>.
|
3392
|
+
The output however, might not be identical, as the matcher may
|
3393
|
+
decide to use a different order or omit needless parts.</p>
|
3394
|
+
<div class="refsect3">
|
3395
|
+
<a name="id-1.4.2.4.9.73.5"></a><h4>Parameters</h4>
|
3396
|
+
<div class="informaltable"><table width="100%" border="0">
|
3397
|
+
<colgroup>
|
3398
|
+
<col width="150px" class="parameters_name">
|
3399
|
+
<col class="parameters_description">
|
3400
|
+
<col width="200px" class="parameters_annotations">
|
3401
|
+
</colgroup>
|
3402
|
+
<tbody><tr>
|
3403
|
+
<td class="parameter_name"><p>matcher</p></td>
|
3404
|
+
<td class="parameter_description"><p> a <a class="link" href="GFileInfo.html#GFileAttributeMatcher"><span class="type">GFileAttributeMatcher</span></a>. </p></td>
|
3405
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
3406
|
+
</tr></tbody>
|
3407
|
+
</table></div>
|
3408
|
+
</div>
|
3409
|
+
<div class="refsect3">
|
3410
|
+
<a name="id-1.4.2.4.9.73.6"></a><h4>Returns</h4>
|
3411
|
+
<p> a string describing the attributes the matcher matches
|
3412
|
+
against or <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if <em class="parameter"><code>matcher</code></em>
|
3413
|
+
was <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</p>
|
3414
|
+
<p></p>
|
3415
|
+
</div>
|
3416
|
+
<p class="since">Since 2.32</p>
|
3417
|
+
</div>
|
3418
|
+
</div>
|
3419
|
+
<div class="refsect1">
|
3420
|
+
<a name="GFileInfo.other_details"></a><h2>Types and Values</h2>
|
3421
|
+
<div class="refsect2">
|
3422
|
+
<a name="GFileAttributeMatcher-struct"></a><h3>GFileAttributeMatcher</h3>
|
3423
|
+
<pre class="programlisting">typedef struct _GFileAttributeMatcher GFileAttributeMatcher;</pre>
|
3424
|
+
<p>Determines if a string matches a file attribute.</p>
|
3425
|
+
</div>
|
3426
|
+
<hr>
|
3427
|
+
<div class="refsect2">
|
3428
|
+
<a name="GFileType"></a><h3>enum GFileType</h3>
|
3429
|
+
<p>Indicates the file's on-disk type.</p>
|
3430
|
+
<div class="refsect3">
|
3431
|
+
<a name="id-1.4.2.4.10.3.4"></a><h4>Members</h4>
|
3432
|
+
<div class="informaltable"><table width="100%" border="0">
|
3433
|
+
<colgroup>
|
3434
|
+
<col width="300px" class="enum_members_name">
|
3435
|
+
<col class="enum_members_description">
|
3436
|
+
<col width="200px" class="enum_members_annotations">
|
3437
|
+
</colgroup>
|
3438
|
+
<tbody>
|
3439
|
+
<tr>
|
3440
|
+
<td class="enum_member_name"><p><a name="G-FILE-TYPE-UNKNOWN:CAPS"></a>G_FILE_TYPE_UNKNOWN</p></td>
|
3441
|
+
<td class="enum_member_description">
|
3442
|
+
<p>File's type is unknown.</p>
|
3443
|
+
</td>
|
3444
|
+
<td class="enum_member_annotations"> </td>
|
3445
|
+
</tr>
|
3446
|
+
<tr>
|
3447
|
+
<td class="enum_member_name"><p><a name="G-FILE-TYPE-REGULAR:CAPS"></a>G_FILE_TYPE_REGULAR</p></td>
|
3448
|
+
<td class="enum_member_description">
|
3449
|
+
<p>File handle represents a regular file.</p>
|
3450
|
+
</td>
|
3451
|
+
<td class="enum_member_annotations"> </td>
|
3452
|
+
</tr>
|
3453
|
+
<tr>
|
3454
|
+
<td class="enum_member_name"><p><a name="G-FILE-TYPE-DIRECTORY:CAPS"></a>G_FILE_TYPE_DIRECTORY</p></td>
|
3455
|
+
<td class="enum_member_description">
|
3456
|
+
<p>File handle represents a directory.</p>
|
3457
|
+
</td>
|
3458
|
+
<td class="enum_member_annotations"> </td>
|
3459
|
+
</tr>
|
3460
|
+
<tr>
|
3461
|
+
<td class="enum_member_name"><p><a name="G-FILE-TYPE-SYMBOLIC-LINK:CAPS"></a>G_FILE_TYPE_SYMBOLIC_LINK</p></td>
|
3462
|
+
<td class="enum_member_description">
|
3463
|
+
<p>File handle represents a symbolic link
|
3464
|
+
(Unix systems).</p>
|
3465
|
+
</td>
|
3466
|
+
<td class="enum_member_annotations"> </td>
|
3467
|
+
</tr>
|
3468
|
+
<tr>
|
3469
|
+
<td class="enum_member_name"><p><a name="G-FILE-TYPE-SPECIAL:CAPS"></a>G_FILE_TYPE_SPECIAL</p></td>
|
3470
|
+
<td class="enum_member_description">
|
3471
|
+
<p>File is a "special" file, such as a socket, fifo,
|
3472
|
+
block device, or character device.</p>
|
3473
|
+
</td>
|
3474
|
+
<td class="enum_member_annotations"> </td>
|
3475
|
+
</tr>
|
3476
|
+
<tr>
|
3477
|
+
<td class="enum_member_name"><p><a name="G-FILE-TYPE-SHORTCUT:CAPS"></a>G_FILE_TYPE_SHORTCUT</p></td>
|
3478
|
+
<td class="enum_member_description">
|
3479
|
+
<p>File is a shortcut (Windows systems).</p>
|
3480
|
+
</td>
|
3481
|
+
<td class="enum_member_annotations"> </td>
|
3482
|
+
</tr>
|
3483
|
+
<tr>
|
3484
|
+
<td class="enum_member_name"><p><a name="G-FILE-TYPE-MOUNTABLE:CAPS"></a>G_FILE_TYPE_MOUNTABLE</p></td>
|
3485
|
+
<td class="enum_member_description">
|
3486
|
+
<p>File is a mountable location.</p>
|
3487
|
+
</td>
|
3488
|
+
<td class="enum_member_annotations"> </td>
|
3489
|
+
</tr>
|
3490
|
+
</tbody>
|
3491
|
+
</table></div>
|
3492
|
+
</div>
|
3493
|
+
</div>
|
3494
|
+
<hr>
|
3495
|
+
<div class="refsect2">
|
3496
|
+
<a name="GFileInfo-struct"></a><h3>GFileInfo</h3>
|
3497
|
+
<pre class="programlisting">typedef struct _GFileInfo GFileInfo;</pre>
|
3498
|
+
<p>Stores information about a file system object referenced by a <a class="link" href="GFile.html" title="GFile"><span class="type">GFile</span></a>.</p>
|
3499
|
+
</div>
|
3500
|
+
<hr>
|
3501
|
+
<div class="refsect2">
|
3502
|
+
<a name="G-FILE-ATTRIBUTE-STANDARD-TYPE:CAPS"></a><h3>G_FILE_ATTRIBUTE_STANDARD_TYPE</h3>
|
3503
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_STANDARD_TYPE "standard::type" /* uint32 (GFileType) */
|
3504
|
+
</pre>
|
3505
|
+
<p>A key in the "standard" namespace for storing file types.
|
3506
|
+
Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT32:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_UINT32</code></a>.
|
3507
|
+
The value for this key should contain a <a class="link" href="GFileInfo.html#GFileType" title="enum GFileType"><span class="type">GFileType</span></a>.</p>
|
3508
|
+
</div>
|
3509
|
+
<hr>
|
3510
|
+
<div class="refsect2">
|
3511
|
+
<a name="G-FILE-ATTRIBUTE-STANDARD-IS-HIDDEN:CAPS"></a><h3>G_FILE_ATTRIBUTE_STANDARD_IS_HIDDEN</h3>
|
3512
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_STANDARD_IS_HIDDEN "standard::is-hidden" /* boolean */
|
3513
|
+
</pre>
|
3514
|
+
<p>A key in the "standard" namespace for checking if a file is hidden.
|
3515
|
+
Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BOOLEAN:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BOOLEAN</code></a>.</p>
|
3516
|
+
</div>
|
3517
|
+
<hr>
|
3518
|
+
<div class="refsect2">
|
3519
|
+
<a name="G-FILE-ATTRIBUTE-STANDARD-IS-BACKUP:CAPS"></a><h3>G_FILE_ATTRIBUTE_STANDARD_IS_BACKUP</h3>
|
3520
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_STANDARD_IS_BACKUP "standard::is-backup" /* boolean */
|
3521
|
+
</pre>
|
3522
|
+
<p>A key in the "standard" namespace for checking if a file is a backup file.
|
3523
|
+
Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BOOLEAN:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BOOLEAN</code></a>.</p>
|
3524
|
+
</div>
|
3525
|
+
<hr>
|
3526
|
+
<div class="refsect2">
|
3527
|
+
<a name="G-FILE-ATTRIBUTE-STANDARD-IS-SYMLINK:CAPS"></a><h3>G_FILE_ATTRIBUTE_STANDARD_IS_SYMLINK</h3>
|
3528
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_STANDARD_IS_SYMLINK "standard::is-symlink" /* boolean */
|
3529
|
+
</pre>
|
3530
|
+
<p>A key in the "standard" namespace for checking if the file is a symlink.
|
3531
|
+
Typically the actual type is something else, if we followed the symlink
|
3532
|
+
to get the type.
|
3533
|
+
Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BOOLEAN:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BOOLEAN</code></a>.</p>
|
3534
|
+
</div>
|
3535
|
+
<hr>
|
3536
|
+
<div class="refsect2">
|
3537
|
+
<a name="G-FILE-ATTRIBUTE-STANDARD-IS-VIRTUAL:CAPS"></a><h3>G_FILE_ATTRIBUTE_STANDARD_IS_VIRTUAL</h3>
|
3538
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_STANDARD_IS_VIRTUAL "standard::is-virtual" /* boolean */
|
3539
|
+
</pre>
|
3540
|
+
<p>A key in the "standard" namespace for checking if a file is virtual.
|
3541
|
+
Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BOOLEAN:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BOOLEAN</code></a>.</p>
|
3542
|
+
</div>
|
3543
|
+
<hr>
|
3544
|
+
<div class="refsect2">
|
3545
|
+
<a name="G-FILE-ATTRIBUTE-STANDARD-NAME:CAPS"></a><h3>G_FILE_ATTRIBUTE_STANDARD_NAME</h3>
|
3546
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_STANDARD_NAME "standard::name" /* byte string */
|
3547
|
+
</pre>
|
3548
|
+
<p>A key in the "standard" namespace for getting the name of the file.
|
3549
|
+
The name is the on-disk filename which may not be in any known encoding,
|
3550
|
+
and can thus not be generally displayed as is.
|
3551
|
+
Use <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-DISPLAY-NAME:CAPS" title="G_FILE_ATTRIBUTE_STANDARD_DISPLAY_NAME"><span class="type">G_FILE_ATTRIBUTE_STANDARD_DISPLAY_NAME</span></a> if you need to display the
|
3552
|
+
name in a user interface.
|
3553
|
+
Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BYTE-STRING:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BYTE_STRING</code></a>.</p>
|
3554
|
+
</div>
|
3555
|
+
<hr>
|
3556
|
+
<div class="refsect2">
|
3557
|
+
<a name="G-FILE-ATTRIBUTE-STANDARD-DISPLAY-NAME:CAPS"></a><h3>G_FILE_ATTRIBUTE_STANDARD_DISPLAY_NAME</h3>
|
3558
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_STANDARD_DISPLAY_NAME "standard::display-name" /* string */
|
3559
|
+
</pre>
|
3560
|
+
<p>A key in the "standard" namespace for getting the display name of the file.
|
3561
|
+
A display name is guaranteed to be in UTF8 and can thus be displayed in
|
3562
|
+
the UI.
|
3563
|
+
Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-STRING:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_STRING</code></a>.</p>
|
3564
|
+
</div>
|
3565
|
+
<hr>
|
3566
|
+
<div class="refsect2">
|
3567
|
+
<a name="G-FILE-ATTRIBUTE-STANDARD-EDIT-NAME:CAPS"></a><h3>G_FILE_ATTRIBUTE_STANDARD_EDIT_NAME</h3>
|
3568
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_STANDARD_EDIT_NAME "standard::edit-name" /* string */
|
3569
|
+
</pre>
|
3570
|
+
<p>A key in the "standard" namespace for edit name of the file.
|
3571
|
+
An edit name is similar to the display name, but it is meant to be
|
3572
|
+
used when you want to rename the file in the UI. The display name
|
3573
|
+
might contain information you don't want in the new filename (such as
|
3574
|
+
"(invalid unicode)" if the filename was in an invalid encoding).</p>
|
3575
|
+
<p>Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-STRING:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_STRING</code></a>.</p>
|
3576
|
+
</div>
|
3577
|
+
<hr>
|
3578
|
+
<div class="refsect2">
|
3579
|
+
<a name="G-FILE-ATTRIBUTE-STANDARD-COPY-NAME:CAPS"></a><h3>G_FILE_ATTRIBUTE_STANDARD_COPY_NAME</h3>
|
3580
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_STANDARD_COPY_NAME "standard::copy-name" /* string */
|
3581
|
+
</pre>
|
3582
|
+
<p>A key in the "standard" namespace for getting the copy name of the file.
|
3583
|
+
The copy name is an optional version of the name. If available it's always
|
3584
|
+
in UTF8, and corresponds directly to the original filename (only transcoded to
|
3585
|
+
UTF8). This is useful if you want to copy the file to another filesystem that
|
3586
|
+
might have a different encoding. If the filename is not a valid string in the
|
3587
|
+
encoding selected for the filesystem it is in then the copy name will not be set.</p>
|
3588
|
+
<p>Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-STRING:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_STRING</code></a>.</p>
|
3589
|
+
</div>
|
3590
|
+
<hr>
|
3591
|
+
<div class="refsect2">
|
3592
|
+
<a name="G-FILE-ATTRIBUTE-STANDARD-ICON:CAPS"></a><h3>G_FILE_ATTRIBUTE_STANDARD_ICON</h3>
|
3593
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_STANDARD_ICON "standard::icon" /* object (GIcon) */
|
3594
|
+
</pre>
|
3595
|
+
<p>A key in the "standard" namespace for getting the icon for the file.
|
3596
|
+
Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-OBJECT:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_OBJECT</code></a>.
|
3597
|
+
The value for this key should contain a <a class="link" href="GIcon.html" title="GIcon"><span class="type">GIcon</span></a>.</p>
|
3598
|
+
</div>
|
3599
|
+
<hr>
|
3600
|
+
<div class="refsect2">
|
3601
|
+
<a name="G-FILE-ATTRIBUTE-STANDARD-SYMBOLIC-ICON:CAPS"></a><h3>G_FILE_ATTRIBUTE_STANDARD_SYMBOLIC_ICON</h3>
|
3602
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_STANDARD_SYMBOLIC_ICON "standard::symbolic-icon" /* object (GIcon) */
|
3603
|
+
</pre>
|
3604
|
+
<p>A key in the "standard" namespace for getting the symbolic icon for the file.
|
3605
|
+
Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-OBJECT:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_OBJECT</code></a>.
|
3606
|
+
The value for this key should contain a <a class="link" href="GIcon.html" title="GIcon"><span class="type">GIcon</span></a>.</p>
|
3607
|
+
<p class="since">Since 2.34</p>
|
3608
|
+
</div>
|
3609
|
+
<hr>
|
3610
|
+
<div class="refsect2">
|
3611
|
+
<a name="G-FILE-ATTRIBUTE-STANDARD-CONTENT-TYPE:CAPS"></a><h3>G_FILE_ATTRIBUTE_STANDARD_CONTENT_TYPE</h3>
|
3612
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_STANDARD_CONTENT_TYPE "standard::content-type" /* string */
|
3613
|
+
</pre>
|
3614
|
+
<p>A key in the "standard" namespace for getting the content type of the file.
|
3615
|
+
Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-STRING:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_STRING</code></a>.
|
3616
|
+
The value for this key should contain a valid content type.</p>
|
3617
|
+
</div>
|
3618
|
+
<hr>
|
3619
|
+
<div class="refsect2">
|
3620
|
+
<a name="G-FILE-ATTRIBUTE-STANDARD-FAST-CONTENT-TYPE:CAPS"></a><h3>G_FILE_ATTRIBUTE_STANDARD_FAST_CONTENT_TYPE</h3>
|
3621
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_STANDARD_FAST_CONTENT_TYPE "standard::fast-content-type" /* string */
|
3622
|
+
</pre>
|
3623
|
+
<p>A key in the "standard" namespace for getting the fast content type.
|
3624
|
+
The fast content type isn't as reliable as the regular one, as it
|
3625
|
+
only uses the filename to guess it, but it is faster to calculate than the
|
3626
|
+
regular content type.
|
3627
|
+
Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-STRING:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_STRING</code></a>.</p>
|
3628
|
+
</div>
|
3629
|
+
<hr>
|
3630
|
+
<div class="refsect2">
|
3631
|
+
<a name="G-FILE-ATTRIBUTE-STANDARD-SIZE:CAPS"></a><h3>G_FILE_ATTRIBUTE_STANDARD_SIZE</h3>
|
3632
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_STANDARD_SIZE "standard::size" /* uint64 */
|
3633
|
+
</pre>
|
3634
|
+
<p>A key in the "standard" namespace for getting the file's size (in bytes).
|
3635
|
+
Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT64:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_UINT64</code></a>.</p>
|
3636
|
+
</div>
|
3637
|
+
<hr>
|
3638
|
+
<div class="refsect2">
|
3639
|
+
<a name="G-FILE-ATTRIBUTE-STANDARD-ALLOCATED-SIZE:CAPS"></a><h3>G_FILE_ATTRIBUTE_STANDARD_ALLOCATED_SIZE</h3>
|
3640
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_STANDARD_ALLOCATED_SIZE "standard::allocated-size" /* uint64 */
|
3641
|
+
</pre>
|
3642
|
+
<p>A key in the "standard" namespace for getting the amount of disk space
|
3643
|
+
that is consumed by the file (in bytes). This will generally be larger
|
3644
|
+
than the file size (due to block size overhead) but can occasionally be
|
3645
|
+
smaller (for example, for sparse files).
|
3646
|
+
Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT64:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_UINT64</code></a>.</p>
|
3647
|
+
<p class="since">Since 2.20</p>
|
3648
|
+
</div>
|
3649
|
+
<hr>
|
3650
|
+
<div class="refsect2">
|
3651
|
+
<a name="G-FILE-ATTRIBUTE-STANDARD-SYMLINK-TARGET:CAPS"></a><h3>G_FILE_ATTRIBUTE_STANDARD_SYMLINK_TARGET</h3>
|
3652
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_STANDARD_SYMLINK_TARGET "standard::symlink-target" /* byte string */
|
3653
|
+
</pre>
|
3654
|
+
<p>A key in the "standard" namespace for getting the symlink target, if the file
|
3655
|
+
is a symlink. Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is
|
3656
|
+
<a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BYTE-STRING:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BYTE_STRING</code></a>.</p>
|
3657
|
+
</div>
|
3658
|
+
<hr>
|
3659
|
+
<div class="refsect2">
|
3660
|
+
<a name="G-FILE-ATTRIBUTE-STANDARD-TARGET-URI:CAPS"></a><h3>G_FILE_ATTRIBUTE_STANDARD_TARGET_URI</h3>
|
3661
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_STANDARD_TARGET_URI "standard::target-uri" /* string */
|
3662
|
+
</pre>
|
3663
|
+
<p>A key in the "standard" namespace for getting the target URI for the file, in
|
3664
|
+
the case of <a class="link" href="GFileInfo.html#G-FILE-TYPE-SHORTCUT:CAPS"><code class="literal">G_FILE_TYPE_SHORTCUT</code></a> or <a class="link" href="GFileInfo.html#G-FILE-TYPE-MOUNTABLE:CAPS"><code class="literal">G_FILE_TYPE_MOUNTABLE</code></a> files.
|
3665
|
+
Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-STRING:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_STRING</code></a>.</p>
|
3666
|
+
</div>
|
3667
|
+
<hr>
|
3668
|
+
<div class="refsect2">
|
3669
|
+
<a name="G-FILE-ATTRIBUTE-STANDARD-SORT-ORDER:CAPS"></a><h3>G_FILE_ATTRIBUTE_STANDARD_SORT_ORDER</h3>
|
3670
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_STANDARD_SORT_ORDER "standard::sort-order" /* int32 */
|
3671
|
+
</pre>
|
3672
|
+
<p>A key in the "standard" namespace for setting the sort order of a file.
|
3673
|
+
Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-INT32:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_INT32</code></a>.
|
3674
|
+
An example use would be in file managers, which would use this key
|
3675
|
+
to set the order files are displayed. Files with smaller sort order
|
3676
|
+
should be sorted first, and files without sort order as if sort order
|
3677
|
+
was zero.</p>
|
3678
|
+
</div>
|
3679
|
+
<hr>
|
3680
|
+
<div class="refsect2">
|
3681
|
+
<a name="G-FILE-ATTRIBUTE-ETAG-VALUE:CAPS"></a><h3>G_FILE_ATTRIBUTE_ETAG_VALUE</h3>
|
3682
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_ETAG_VALUE "etag::value" /* string */
|
3683
|
+
</pre>
|
3684
|
+
<p>A key in the "etag" namespace for getting the value of the file's
|
3685
|
+
entity tag. Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is
|
3686
|
+
<a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-STRING:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_STRING</code></a>.</p>
|
3687
|
+
</div>
|
3688
|
+
<hr>
|
3689
|
+
<div class="refsect2">
|
3690
|
+
<a name="G-FILE-ATTRIBUTE-ID-FILE:CAPS"></a><h3>G_FILE_ATTRIBUTE_ID_FILE</h3>
|
3691
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_ID_FILE "id::file" /* string */
|
3692
|
+
</pre>
|
3693
|
+
<p>A key in the "id" namespace for getting a file identifier.
|
3694
|
+
Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-STRING:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_STRING</code></a>.
|
3695
|
+
An example use would be during listing files, to avoid recursive
|
3696
|
+
directory scanning.</p>
|
3697
|
+
</div>
|
3698
|
+
<hr>
|
3699
|
+
<div class="refsect2">
|
3700
|
+
<a name="G-FILE-ATTRIBUTE-ID-FILESYSTEM:CAPS"></a><h3>G_FILE_ATTRIBUTE_ID_FILESYSTEM</h3>
|
3701
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_ID_FILESYSTEM "id::filesystem" /* string */
|
3702
|
+
</pre>
|
3703
|
+
<p>A key in the "id" namespace for getting the file system identifier.
|
3704
|
+
Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-STRING:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_STRING</code></a>.
|
3705
|
+
An example use would be during drag and drop to see if the source
|
3706
|
+
and target are on the same filesystem (default to move) or not (default
|
3707
|
+
to copy).</p>
|
3708
|
+
</div>
|
3709
|
+
<hr>
|
3710
|
+
<div class="refsect2">
|
3711
|
+
<a name="G-FILE-ATTRIBUTE-ACCESS-CAN-READ:CAPS"></a><h3>G_FILE_ATTRIBUTE_ACCESS_CAN_READ</h3>
|
3712
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_ACCESS_CAN_READ "access::can-read" /* boolean */
|
3713
|
+
</pre>
|
3714
|
+
<p>A key in the "access" namespace for getting read privileges.
|
3715
|
+
Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BOOLEAN:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BOOLEAN</code></a>.
|
3716
|
+
This attribute will be <a href="../glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the user is able to read the file.</p>
|
3717
|
+
</div>
|
3718
|
+
<hr>
|
3719
|
+
<div class="refsect2">
|
3720
|
+
<a name="G-FILE-ATTRIBUTE-ACCESS-CAN-WRITE:CAPS"></a><h3>G_FILE_ATTRIBUTE_ACCESS_CAN_WRITE</h3>
|
3721
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_ACCESS_CAN_WRITE "access::can-write" /* boolean */
|
3722
|
+
</pre>
|
3723
|
+
<p>A key in the "access" namespace for getting write privileges.
|
3724
|
+
Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BOOLEAN:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BOOLEAN</code></a>.
|
3725
|
+
This attribute will be <a href="../glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the user is able to write to the file.</p>
|
3726
|
+
</div>
|
3727
|
+
<hr>
|
3728
|
+
<div class="refsect2">
|
3729
|
+
<a name="G-FILE-ATTRIBUTE-ACCESS-CAN-EXECUTE:CAPS"></a><h3>G_FILE_ATTRIBUTE_ACCESS_CAN_EXECUTE</h3>
|
3730
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_ACCESS_CAN_EXECUTE "access::can-execute" /* boolean */
|
3731
|
+
</pre>
|
3732
|
+
<p>A key in the "access" namespace for getting execution privileges.
|
3733
|
+
Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BOOLEAN:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BOOLEAN</code></a>.
|
3734
|
+
This attribute will be <a href="../glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the user is able to execute the file.</p>
|
3735
|
+
</div>
|
3736
|
+
<hr>
|
3737
|
+
<div class="refsect2">
|
3738
|
+
<a name="G-FILE-ATTRIBUTE-ACCESS-CAN-DELETE:CAPS"></a><h3>G_FILE_ATTRIBUTE_ACCESS_CAN_DELETE</h3>
|
3739
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_ACCESS_CAN_DELETE "access::can-delete" /* boolean */
|
3740
|
+
</pre>
|
3741
|
+
<p>A key in the "access" namespace for checking deletion privileges.
|
3742
|
+
Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BOOLEAN:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BOOLEAN</code></a>.
|
3743
|
+
This attribute will be <a href="../glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the user is able to delete the file.</p>
|
3744
|
+
</div>
|
3745
|
+
<hr>
|
3746
|
+
<div class="refsect2">
|
3747
|
+
<a name="G-FILE-ATTRIBUTE-ACCESS-CAN-TRASH:CAPS"></a><h3>G_FILE_ATTRIBUTE_ACCESS_CAN_TRASH</h3>
|
3748
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_ACCESS_CAN_TRASH "access::can-trash" /* boolean */
|
3749
|
+
</pre>
|
3750
|
+
<p>A key in the "access" namespace for checking trashing privileges.
|
3751
|
+
Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BOOLEAN:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BOOLEAN</code></a>.
|
3752
|
+
This attribute will be <a href="../glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the user is able to move the file to
|
3753
|
+
the trash.</p>
|
3754
|
+
</div>
|
3755
|
+
<hr>
|
3756
|
+
<div class="refsect2">
|
3757
|
+
<a name="G-FILE-ATTRIBUTE-ACCESS-CAN-RENAME:CAPS"></a><h3>G_FILE_ATTRIBUTE_ACCESS_CAN_RENAME</h3>
|
3758
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_ACCESS_CAN_RENAME "access::can-rename" /* boolean */
|
3759
|
+
</pre>
|
3760
|
+
<p>A key in the "access" namespace for checking renaming privileges.
|
3761
|
+
Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BOOLEAN:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BOOLEAN</code></a>.
|
3762
|
+
This attribute will be <a href="../glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the user is able to rename the file.</p>
|
3763
|
+
</div>
|
3764
|
+
<hr>
|
3765
|
+
<div class="refsect2">
|
3766
|
+
<a name="G-FILE-ATTRIBUTE-MOUNTABLE-CAN-MOUNT:CAPS"></a><h3>G_FILE_ATTRIBUTE_MOUNTABLE_CAN_MOUNT</h3>
|
3767
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_MOUNTABLE_CAN_MOUNT "mountable::can-mount" /* boolean */
|
3768
|
+
</pre>
|
3769
|
+
<p>A key in the "mountable" namespace for checking if a file (of type G_FILE_TYPE_MOUNTABLE) is mountable.
|
3770
|
+
Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BOOLEAN:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BOOLEAN</code></a>.</p>
|
3771
|
+
</div>
|
3772
|
+
<hr>
|
3773
|
+
<div class="refsect2">
|
3774
|
+
<a name="G-FILE-ATTRIBUTE-MOUNTABLE-CAN-UNMOUNT:CAPS"></a><h3>G_FILE_ATTRIBUTE_MOUNTABLE_CAN_UNMOUNT</h3>
|
3775
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_MOUNTABLE_CAN_UNMOUNT "mountable::can-unmount" /* boolean */
|
3776
|
+
</pre>
|
3777
|
+
<p>A key in the "mountable" namespace for checking if a file (of type G_FILE_TYPE_MOUNTABLE) is unmountable.
|
3778
|
+
Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BOOLEAN:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BOOLEAN</code></a>.</p>
|
3779
|
+
</div>
|
3780
|
+
<hr>
|
3781
|
+
<div class="refsect2">
|
3782
|
+
<a name="G-FILE-ATTRIBUTE-MOUNTABLE-CAN-EJECT:CAPS"></a><h3>G_FILE_ATTRIBUTE_MOUNTABLE_CAN_EJECT</h3>
|
3783
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_MOUNTABLE_CAN_EJECT "mountable::can-eject" /* boolean */
|
3784
|
+
</pre>
|
3785
|
+
<p>A key in the "mountable" namespace for checking if a file (of type G_FILE_TYPE_MOUNTABLE) can be ejected.
|
3786
|
+
Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BOOLEAN:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BOOLEAN</code></a>.</p>
|
3787
|
+
</div>
|
3788
|
+
<hr>
|
3789
|
+
<div class="refsect2">
|
3790
|
+
<a name="G-FILE-ATTRIBUTE-MOUNTABLE-UNIX-DEVICE:CAPS"></a><h3>G_FILE_ATTRIBUTE_MOUNTABLE_UNIX_DEVICE</h3>
|
3791
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_MOUNTABLE_UNIX_DEVICE "mountable::unix-device" /* uint32 */
|
3792
|
+
</pre>
|
3793
|
+
<p>A key in the "mountable" namespace for getting the unix device.
|
3794
|
+
Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT32:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_UINT32</code></a>.</p>
|
3795
|
+
</div>
|
3796
|
+
<hr>
|
3797
|
+
<div class="refsect2">
|
3798
|
+
<a name="G-FILE-ATTRIBUTE-MOUNTABLE-UNIX-DEVICE-FILE:CAPS"></a><h3>G_FILE_ATTRIBUTE_MOUNTABLE_UNIX_DEVICE_FILE</h3>
|
3799
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_MOUNTABLE_UNIX_DEVICE_FILE "mountable::unix-device-file" /* string */
|
3800
|
+
</pre>
|
3801
|
+
<p>A key in the "mountable" namespace for getting the unix device file.
|
3802
|
+
Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-STRING:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_STRING</code></a>.</p>
|
3803
|
+
<p class="since">Since 2.22</p>
|
3804
|
+
</div>
|
3805
|
+
<hr>
|
3806
|
+
<div class="refsect2">
|
3807
|
+
<a name="G-FILE-ATTRIBUTE-MOUNTABLE-HAL-UDI:CAPS"></a><h3>G_FILE_ATTRIBUTE_MOUNTABLE_HAL_UDI</h3>
|
3808
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_MOUNTABLE_HAL_UDI "mountable::hal-udi" /* string */
|
3809
|
+
</pre>
|
3810
|
+
<p>A key in the "mountable" namespace for getting the HAL UDI for the mountable
|
3811
|
+
file. Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-STRING:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_STRING</code></a>.</p>
|
3812
|
+
</div>
|
3813
|
+
<hr>
|
3814
|
+
<div class="refsect2">
|
3815
|
+
<a name="G-FILE-ATTRIBUTE-MOUNTABLE-CAN-POLL:CAPS"></a><h3>G_FILE_ATTRIBUTE_MOUNTABLE_CAN_POLL</h3>
|
3816
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_MOUNTABLE_CAN_POLL "mountable::can-poll" /* boolean */
|
3817
|
+
</pre>
|
3818
|
+
<p>A key in the "mountable" namespace for checking if a file (of type G_FILE_TYPE_MOUNTABLE) can be polled.
|
3819
|
+
Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BOOLEAN:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BOOLEAN</code></a>.</p>
|
3820
|
+
<p class="since">Since 2.22</p>
|
3821
|
+
</div>
|
3822
|
+
<hr>
|
3823
|
+
<div class="refsect2">
|
3824
|
+
<a name="G-FILE-ATTRIBUTE-MOUNTABLE-IS-MEDIA-CHECK-AUTOMATIC:CAPS"></a><h3>G_FILE_ATTRIBUTE_MOUNTABLE_IS_MEDIA_CHECK_AUTOMATIC</h3>
|
3825
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_MOUNTABLE_IS_MEDIA_CHECK_AUTOMATIC "mountable::is-media-check-automatic" /* boolean */
|
3826
|
+
</pre>
|
3827
|
+
<p>A key in the "mountable" namespace for checking if a file (of type G_FILE_TYPE_MOUNTABLE)
|
3828
|
+
is automatically polled for media.
|
3829
|
+
Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BOOLEAN:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BOOLEAN</code></a>.</p>
|
3830
|
+
<p class="since">Since 2.22</p>
|
3831
|
+
</div>
|
3832
|
+
<hr>
|
3833
|
+
<div class="refsect2">
|
3834
|
+
<a name="G-FILE-ATTRIBUTE-MOUNTABLE-CAN-START:CAPS"></a><h3>G_FILE_ATTRIBUTE_MOUNTABLE_CAN_START</h3>
|
3835
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_MOUNTABLE_CAN_START "mountable::can-start" /* boolean */
|
3836
|
+
</pre>
|
3837
|
+
<p>A key in the "mountable" namespace for checking if a file (of type G_FILE_TYPE_MOUNTABLE) can be started.
|
3838
|
+
Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BOOLEAN:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BOOLEAN</code></a>.</p>
|
3839
|
+
<p class="since">Since 2.22</p>
|
3840
|
+
</div>
|
3841
|
+
<hr>
|
3842
|
+
<div class="refsect2">
|
3843
|
+
<a name="G-FILE-ATTRIBUTE-MOUNTABLE-CAN-START-DEGRADED:CAPS"></a><h3>G_FILE_ATTRIBUTE_MOUNTABLE_CAN_START_DEGRADED</h3>
|
3844
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_MOUNTABLE_CAN_START_DEGRADED "mountable::can-start-degraded" /* boolean */
|
3845
|
+
</pre>
|
3846
|
+
<p>A key in the "mountable" namespace for checking if a file (of type G_FILE_TYPE_MOUNTABLE) can be started
|
3847
|
+
degraded.
|
3848
|
+
Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BOOLEAN:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BOOLEAN</code></a>.</p>
|
3849
|
+
<p class="since">Since 2.22</p>
|
3850
|
+
</div>
|
3851
|
+
<hr>
|
3852
|
+
<div class="refsect2">
|
3853
|
+
<a name="G-FILE-ATTRIBUTE-MOUNTABLE-CAN-STOP:CAPS"></a><h3>G_FILE_ATTRIBUTE_MOUNTABLE_CAN_STOP</h3>
|
3854
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_MOUNTABLE_CAN_STOP "mountable::can-stop" /* boolean */
|
3855
|
+
</pre>
|
3856
|
+
<p>A key in the "mountable" namespace for checking if a file (of type G_FILE_TYPE_MOUNTABLE) can be stopped.
|
3857
|
+
Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BOOLEAN:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BOOLEAN</code></a>.</p>
|
3858
|
+
<p class="since">Since 2.22</p>
|
3859
|
+
</div>
|
3860
|
+
<hr>
|
3861
|
+
<div class="refsect2">
|
3862
|
+
<a name="G-FILE-ATTRIBUTE-MOUNTABLE-START-STOP-TYPE:CAPS"></a><h3>G_FILE_ATTRIBUTE_MOUNTABLE_START_STOP_TYPE</h3>
|
3863
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_MOUNTABLE_START_STOP_TYPE "mountable::start-stop-type" /* uint32 (GDriveStartStopType) */
|
3864
|
+
</pre>
|
3865
|
+
<p>A key in the "mountable" namespace for getting the <a class="link" href="GDrive.html#GDriveStartStopType" title="enum GDriveStartStopType"><span class="type">GDriveStartStopType</span></a>.
|
3866
|
+
Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT32:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_UINT32</code></a>.</p>
|
3867
|
+
<p class="since">Since 2.22</p>
|
3868
|
+
</div>
|
3869
|
+
<hr>
|
3870
|
+
<div class="refsect2">
|
3871
|
+
<a name="G-FILE-ATTRIBUTE-TIME-MODIFIED:CAPS"></a><h3>G_FILE_ATTRIBUTE_TIME_MODIFIED</h3>
|
3872
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_TIME_MODIFIED "time::modified" /* uint64 */
|
3873
|
+
</pre>
|
3874
|
+
<p>A key in the "time" namespace for getting the time the file was last
|
3875
|
+
modified. Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is
|
3876
|
+
<a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT64:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_UINT64</code></a>, and contains the UNIX time since the
|
3877
|
+
file was modified.</p>
|
3878
|
+
</div>
|
3879
|
+
<hr>
|
3880
|
+
<div class="refsect2">
|
3881
|
+
<a name="G-FILE-ATTRIBUTE-TIME-MODIFIED-USEC:CAPS"></a><h3>G_FILE_ATTRIBUTE_TIME_MODIFIED_USEC</h3>
|
3882
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_TIME_MODIFIED_USEC "time::modified-usec" /* uint32 */
|
3883
|
+
</pre>
|
3884
|
+
<p>A key in the "time" namespace for getting the miliseconds of the time
|
3885
|
+
the file was last modified. This should be used in conjunction with
|
3886
|
+
<a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-TIME-MODIFIED:CAPS" title="G_FILE_ATTRIBUTE_TIME_MODIFIED"><span class="type">G_FILE_ATTRIBUTE_TIME_MODIFIED</span></a>. Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is
|
3887
|
+
<a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT32:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_UINT32</code></a>.</p>
|
3888
|
+
</div>
|
3889
|
+
<hr>
|
3890
|
+
<div class="refsect2">
|
3891
|
+
<a name="G-FILE-ATTRIBUTE-TIME-ACCESS:CAPS"></a><h3>G_FILE_ATTRIBUTE_TIME_ACCESS</h3>
|
3892
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_TIME_ACCESS "time::access" /* uint64 */
|
3893
|
+
</pre>
|
3894
|
+
<p>A key in the "time" namespace for getting the time the file was last
|
3895
|
+
accessed. Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is
|
3896
|
+
<a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT64:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_UINT64</code></a>, and contains the UNIX time since the
|
3897
|
+
file was last accessed.</p>
|
3898
|
+
</div>
|
3899
|
+
<hr>
|
3900
|
+
<div class="refsect2">
|
3901
|
+
<a name="G-FILE-ATTRIBUTE-TIME-ACCESS-USEC:CAPS"></a><h3>G_FILE_ATTRIBUTE_TIME_ACCESS_USEC</h3>
|
3902
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_TIME_ACCESS_USEC "time::access-usec" /* uint32 */
|
3903
|
+
</pre>
|
3904
|
+
<p>A key in the "time" namespace for getting the microseconds of the time
|
3905
|
+
the file was last accessed. This should be used in conjunction with
|
3906
|
+
<a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-TIME-ACCESS:CAPS" title="G_FILE_ATTRIBUTE_TIME_ACCESS"><span class="type">G_FILE_ATTRIBUTE_TIME_ACCESS</span></a>. Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is
|
3907
|
+
<a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT32:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_UINT32</code></a>.</p>
|
3908
|
+
</div>
|
3909
|
+
<hr>
|
3910
|
+
<div class="refsect2">
|
3911
|
+
<a name="G-FILE-ATTRIBUTE-TIME-CHANGED:CAPS"></a><h3>G_FILE_ATTRIBUTE_TIME_CHANGED</h3>
|
3912
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_TIME_CHANGED "time::changed" /* uint64 */
|
3913
|
+
</pre>
|
3914
|
+
<p>A key in the "time" namespace for getting the time the file was last
|
3915
|
+
changed. Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT64:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_UINT64</code></a>,
|
3916
|
+
and contains the UNIX time since the file was last changed.</p>
|
3917
|
+
<p>This corresponds to the traditional UNIX ctime.</p>
|
3918
|
+
</div>
|
3919
|
+
<hr>
|
3920
|
+
<div class="refsect2">
|
3921
|
+
<a name="G-FILE-ATTRIBUTE-TIME-CHANGED-USEC:CAPS"></a><h3>G_FILE_ATTRIBUTE_TIME_CHANGED_USEC</h3>
|
3922
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_TIME_CHANGED_USEC "time::changed-usec" /* uint32 */
|
3923
|
+
</pre>
|
3924
|
+
<p>A key in the "time" namespace for getting the microseconds of the time
|
3925
|
+
the file was last changed. This should be used in conjunction with
|
3926
|
+
<a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-TIME-CHANGED:CAPS" title="G_FILE_ATTRIBUTE_TIME_CHANGED"><span class="type">G_FILE_ATTRIBUTE_TIME_CHANGED</span></a>. Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is
|
3927
|
+
<a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT32:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_UINT32</code></a>.</p>
|
3928
|
+
</div>
|
3929
|
+
<hr>
|
3930
|
+
<div class="refsect2">
|
3931
|
+
<a name="G-FILE-ATTRIBUTE-TIME-CREATED:CAPS"></a><h3>G_FILE_ATTRIBUTE_TIME_CREATED</h3>
|
3932
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_TIME_CREATED "time::created" /* uint64 */
|
3933
|
+
</pre>
|
3934
|
+
<p>A key in the "time" namespace for getting the time the file was created.
|
3935
|
+
Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT64:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_UINT64</code></a>,
|
3936
|
+
and contains the UNIX time since the file was created.</p>
|
3937
|
+
<p>This corresponds to the NTFS ctime.</p>
|
3938
|
+
</div>
|
3939
|
+
<hr>
|
3940
|
+
<div class="refsect2">
|
3941
|
+
<a name="G-FILE-ATTRIBUTE-TIME-CREATED-USEC:CAPS"></a><h3>G_FILE_ATTRIBUTE_TIME_CREATED_USEC</h3>
|
3942
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_TIME_CREATED_USEC "time::created-usec" /* uint32 */
|
3943
|
+
</pre>
|
3944
|
+
<p>A key in the "time" namespace for getting the microseconds of the time
|
3945
|
+
the file was created. This should be used in conjunction with
|
3946
|
+
<a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-TIME-CREATED:CAPS" title="G_FILE_ATTRIBUTE_TIME_CREATED"><span class="type">G_FILE_ATTRIBUTE_TIME_CREATED</span></a>. Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is
|
3947
|
+
<a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT32:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_UINT32</code></a>.</p>
|
3948
|
+
</div>
|
3949
|
+
<hr>
|
3950
|
+
<div class="refsect2">
|
3951
|
+
<a name="G-FILE-ATTRIBUTE-UNIX-DEVICE:CAPS"></a><h3>G_FILE_ATTRIBUTE_UNIX_DEVICE</h3>
|
3952
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_UNIX_DEVICE "unix::device" /* uint32 */
|
3953
|
+
</pre>
|
3954
|
+
<p>A key in the "unix" namespace for getting the device id of the device the
|
3955
|
+
file is located on (see <code class="function">stat()</code> documentation). This attribute is only
|
3956
|
+
available for UNIX file systems. Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is
|
3957
|
+
<a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT32:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_UINT32</code></a>.</p>
|
3958
|
+
</div>
|
3959
|
+
<hr>
|
3960
|
+
<div class="refsect2">
|
3961
|
+
<a name="G-FILE-ATTRIBUTE-UNIX-INODE:CAPS"></a><h3>G_FILE_ATTRIBUTE_UNIX_INODE</h3>
|
3962
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_UNIX_INODE "unix::inode" /* uint64 */
|
3963
|
+
</pre>
|
3964
|
+
<p>A key in the "unix" namespace for getting the inode of the file.
|
3965
|
+
This attribute is only available for UNIX file systems. Corresponding
|
3966
|
+
<a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT64:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_UINT64</code></a>.</p>
|
3967
|
+
</div>
|
3968
|
+
<hr>
|
3969
|
+
<div class="refsect2">
|
3970
|
+
<a name="G-FILE-ATTRIBUTE-UNIX-MODE:CAPS"></a><h3>G_FILE_ATTRIBUTE_UNIX_MODE</h3>
|
3971
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_UNIX_MODE "unix::mode" /* uint32 */
|
3972
|
+
</pre>
|
3973
|
+
<p>A key in the "unix" namespace for getting the mode of the file
|
3974
|
+
(e.g. whether the file is a regular file, symlink, etc). See <code class="function">lstat()</code>
|
3975
|
+
documentation. This attribute is only available for UNIX file systems.
|
3976
|
+
Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT32:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_UINT32</code></a>.</p>
|
3977
|
+
</div>
|
3978
|
+
<hr>
|
3979
|
+
<div class="refsect2">
|
3980
|
+
<a name="G-FILE-ATTRIBUTE-UNIX-NLINK:CAPS"></a><h3>G_FILE_ATTRIBUTE_UNIX_NLINK</h3>
|
3981
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_UNIX_NLINK "unix::nlink" /* uint32 */
|
3982
|
+
</pre>
|
3983
|
+
<p>A key in the "unix" namespace for getting the number of hard links
|
3984
|
+
for a file. See <code class="function">lstat()</code> documentation. This attribute is only available
|
3985
|
+
for UNIX file systems. Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is
|
3986
|
+
<a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT32:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_UINT32</code></a>.</p>
|
3987
|
+
</div>
|
3988
|
+
<hr>
|
3989
|
+
<div class="refsect2">
|
3990
|
+
<a name="G-FILE-ATTRIBUTE-UNIX-UID:CAPS"></a><h3>G_FILE_ATTRIBUTE_UNIX_UID</h3>
|
3991
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_UNIX_UID "unix::uid" /* uint32 */
|
3992
|
+
</pre>
|
3993
|
+
<p>A key in the "unix" namespace for getting the user ID for the file.
|
3994
|
+
This attribute is only available for UNIX file systems.
|
3995
|
+
Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT32:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_UINT32</code></a>.</p>
|
3996
|
+
</div>
|
3997
|
+
<hr>
|
3998
|
+
<div class="refsect2">
|
3999
|
+
<a name="G-FILE-ATTRIBUTE-UNIX-GID:CAPS"></a><h3>G_FILE_ATTRIBUTE_UNIX_GID</h3>
|
4000
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_UNIX_GID "unix::gid" /* uint32 */
|
4001
|
+
</pre>
|
4002
|
+
<p>A key in the "unix" namespace for getting the group ID for the file.
|
4003
|
+
This attribute is only available for UNIX file systems.
|
4004
|
+
Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT32:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_UINT32</code></a>.</p>
|
4005
|
+
</div>
|
4006
|
+
<hr>
|
4007
|
+
<div class="refsect2">
|
4008
|
+
<a name="G-FILE-ATTRIBUTE-UNIX-RDEV:CAPS"></a><h3>G_FILE_ATTRIBUTE_UNIX_RDEV</h3>
|
4009
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_UNIX_RDEV "unix::rdev" /* uint32 */
|
4010
|
+
</pre>
|
4011
|
+
<p>A key in the "unix" namespace for getting the device ID for the file
|
4012
|
+
(if it is a special file). See <code class="function">lstat()</code> documentation. This attribute
|
4013
|
+
is only available for UNIX file systems. Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a>
|
4014
|
+
is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT32:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_UINT32</code></a>.</p>
|
4015
|
+
</div>
|
4016
|
+
<hr>
|
4017
|
+
<div class="refsect2">
|
4018
|
+
<a name="G-FILE-ATTRIBUTE-UNIX-BLOCK-SIZE:CAPS"></a><h3>G_FILE_ATTRIBUTE_UNIX_BLOCK_SIZE</h3>
|
4019
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_UNIX_BLOCK_SIZE "unix::block-size" /* uint32 */
|
4020
|
+
</pre>
|
4021
|
+
<p>A key in the "unix" namespace for getting the block size for the file
|
4022
|
+
system. This attribute is only available for UNIX file systems.
|
4023
|
+
Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT32:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_UINT32</code></a>.</p>
|
4024
|
+
</div>
|
4025
|
+
<hr>
|
4026
|
+
<div class="refsect2">
|
4027
|
+
<a name="G-FILE-ATTRIBUTE-UNIX-BLOCKS:CAPS"></a><h3>G_FILE_ATTRIBUTE_UNIX_BLOCKS</h3>
|
4028
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_UNIX_BLOCKS "unix::blocks" /* uint64 */
|
4029
|
+
</pre>
|
4030
|
+
<p>A key in the "unix" namespace for getting the number of blocks allocated
|
4031
|
+
for the file. This attribute is only available for UNIX file systems.
|
4032
|
+
Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT64:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_UINT64</code></a>.</p>
|
4033
|
+
</div>
|
4034
|
+
<hr>
|
4035
|
+
<div class="refsect2">
|
4036
|
+
<a name="G-FILE-ATTRIBUTE-UNIX-IS-MOUNTPOINT:CAPS"></a><h3>G_FILE_ATTRIBUTE_UNIX_IS_MOUNTPOINT</h3>
|
4037
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_UNIX_IS_MOUNTPOINT "unix::is-mountpoint" /* boolean */
|
4038
|
+
</pre>
|
4039
|
+
<p>A key in the "unix" namespace for checking if the file represents a
|
4040
|
+
UNIX mount point. This attribute is <a href="../glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the file is a UNIX mount
|
4041
|
+
point. This attribute is only available for UNIX file systems.
|
4042
|
+
Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BOOLEAN:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BOOLEAN</code></a>.</p>
|
4043
|
+
</div>
|
4044
|
+
<hr>
|
4045
|
+
<div class="refsect2">
|
4046
|
+
<a name="G-FILE-ATTRIBUTE-DOS-IS-ARCHIVE:CAPS"></a><h3>G_FILE_ATTRIBUTE_DOS_IS_ARCHIVE</h3>
|
4047
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_DOS_IS_ARCHIVE "dos::is-archive" /* boolean */
|
4048
|
+
</pre>
|
4049
|
+
<p>A key in the "dos" namespace for checking if the file's archive flag
|
4050
|
+
is set. This attribute is <a href="../glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the archive flag is set. This attribute
|
4051
|
+
is only available for DOS file systems. Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a>
|
4052
|
+
is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BOOLEAN:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BOOLEAN</code></a>.</p>
|
4053
|
+
</div>
|
4054
|
+
<hr>
|
4055
|
+
<div class="refsect2">
|
4056
|
+
<a name="G-FILE-ATTRIBUTE-DOS-IS-SYSTEM:CAPS"></a><h3>G_FILE_ATTRIBUTE_DOS_IS_SYSTEM</h3>
|
4057
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_DOS_IS_SYSTEM "dos::is-system" /* boolean */
|
4058
|
+
</pre>
|
4059
|
+
<p>A key in the "dos" namespace for checking if the file's backup flag
|
4060
|
+
is set. This attribute is <a href="../glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the backup flag is set. This attribute
|
4061
|
+
is only available for DOS file systems. Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a>
|
4062
|
+
is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BOOLEAN:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BOOLEAN</code></a>.</p>
|
4063
|
+
</div>
|
4064
|
+
<hr>
|
4065
|
+
<div class="refsect2">
|
4066
|
+
<a name="G-FILE-ATTRIBUTE-OWNER-USER:CAPS"></a><h3>G_FILE_ATTRIBUTE_OWNER_USER</h3>
|
4067
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_OWNER_USER "owner::user" /* string */
|
4068
|
+
</pre>
|
4069
|
+
<p>A key in the "owner" namespace for getting the user name of the
|
4070
|
+
file's owner. Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is
|
4071
|
+
<a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-STRING:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_STRING</code></a>.</p>
|
4072
|
+
</div>
|
4073
|
+
<hr>
|
4074
|
+
<div class="refsect2">
|
4075
|
+
<a name="G-FILE-ATTRIBUTE-OWNER-USER-REAL:CAPS"></a><h3>G_FILE_ATTRIBUTE_OWNER_USER_REAL</h3>
|
4076
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_OWNER_USER_REAL "owner::user-real" /* string */
|
4077
|
+
</pre>
|
4078
|
+
<p>A key in the "owner" namespace for getting the real name of the
|
4079
|
+
user that owns the file. Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is
|
4080
|
+
<a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-STRING:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_STRING</code></a>.</p>
|
4081
|
+
</div>
|
4082
|
+
<hr>
|
4083
|
+
<div class="refsect2">
|
4084
|
+
<a name="G-FILE-ATTRIBUTE-OWNER-GROUP:CAPS"></a><h3>G_FILE_ATTRIBUTE_OWNER_GROUP</h3>
|
4085
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_OWNER_GROUP "owner::group" /* string */
|
4086
|
+
</pre>
|
4087
|
+
<p>A key in the "owner" namespace for getting the file owner's group.
|
4088
|
+
Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-STRING:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_STRING</code></a>.</p>
|
4089
|
+
</div>
|
4090
|
+
<hr>
|
4091
|
+
<div class="refsect2">
|
4092
|
+
<a name="G-FILE-ATTRIBUTE-THUMBNAIL-PATH:CAPS"></a><h3>G_FILE_ATTRIBUTE_THUMBNAIL_PATH</h3>
|
4093
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_THUMBNAIL_PATH "thumbnail::path" /* bytestring */
|
4094
|
+
</pre>
|
4095
|
+
<p>A key in the "thumbnail" namespace for getting the path to the thumbnail
|
4096
|
+
image. Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is
|
4097
|
+
<a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BYTE-STRING:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BYTE_STRING</code></a>.</p>
|
4098
|
+
</div>
|
4099
|
+
<hr>
|
4100
|
+
<div class="refsect2">
|
4101
|
+
<a name="G-FILE-ATTRIBUTE-THUMBNAILING-FAILED:CAPS"></a><h3>G_FILE_ATTRIBUTE_THUMBNAILING_FAILED</h3>
|
4102
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_THUMBNAILING_FAILED "thumbnail::failed" /* boolean */
|
4103
|
+
</pre>
|
4104
|
+
<p>A key in the "thumbnail" namespace for checking if thumbnailing failed.
|
4105
|
+
This attribute is <a href="../glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if thumbnailing failed. Corresponding
|
4106
|
+
<a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BOOLEAN:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BOOLEAN</code></a>.</p>
|
4107
|
+
</div>
|
4108
|
+
<hr>
|
4109
|
+
<div class="refsect2">
|
4110
|
+
<a name="G-FILE-ATTRIBUTE-THUMBNAIL-IS-VALID:CAPS"></a><h3>G_FILE_ATTRIBUTE_THUMBNAIL_IS_VALID</h3>
|
4111
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_THUMBNAIL_IS_VALID "thumbnail::is-valid" /* boolean */
|
4112
|
+
</pre>
|
4113
|
+
<p>A key in the "thumbnail" namespace for checking whether the thumbnail is outdated.
|
4114
|
+
This attribute is <a href="../glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the thumbnail is up-to-date with the file it represents,
|
4115
|
+
and <a href="../glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if the file has been modified since the thumbnail was generated.</p>
|
4116
|
+
<p>If <a class="link" href="GFileInfo.html#G-FILE-ATTRIBUTE-THUMBNAILING-FAILED:CAPS" title="G_FILE_ATTRIBUTE_THUMBNAILING_FAILED"><code class="literal">G_FILE_ATTRIBUTE_THUMBNAILING_FAILED</code></a> is <a href="../glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> and this attribute is <a href="../glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>,
|
4117
|
+
it indicates that thumbnailing may be attempted again and may succeed.</p>
|
4118
|
+
<p>Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BOOLEAN:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BOOLEAN</code></a>.</p>
|
4119
|
+
<p class="since">Since 2.40</p>
|
4120
|
+
</div>
|
4121
|
+
<hr>
|
4122
|
+
<div class="refsect2">
|
4123
|
+
<a name="G-FILE-ATTRIBUTE-PREVIEW-ICON:CAPS"></a><h3>G_FILE_ATTRIBUTE_PREVIEW_ICON</h3>
|
4124
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_PREVIEW_ICON "preview::icon" /* object (GIcon) */
|
4125
|
+
</pre>
|
4126
|
+
<p>A key in the "preview" namespace for getting a <a class="link" href="GIcon.html" title="GIcon"><span class="type">GIcon</span></a> that can be
|
4127
|
+
used to get preview of the file. For example, it may be a low
|
4128
|
+
resolution thumbnail without metadata. Corresponding
|
4129
|
+
<a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-OBJECT:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_OBJECT</code></a>. The value
|
4130
|
+
for this key should contain a <a class="link" href="GIcon.html" title="GIcon"><span class="type">GIcon</span></a>.</p>
|
4131
|
+
<p class="since">Since 2.20</p>
|
4132
|
+
</div>
|
4133
|
+
<hr>
|
4134
|
+
<div class="refsect2">
|
4135
|
+
<a name="G-FILE-ATTRIBUTE-FILESYSTEM-SIZE:CAPS"></a><h3>G_FILE_ATTRIBUTE_FILESYSTEM_SIZE</h3>
|
4136
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_FILESYSTEM_SIZE "filesystem::size" /* uint64 */
|
4137
|
+
</pre>
|
4138
|
+
<p>A key in the "filesystem" namespace for getting the total size (in bytes) of the file system,
|
4139
|
+
used in <a class="link" href="GFile.html#g-file-query-filesystem-info" title="g_file_query_filesystem_info ()"><code class="function">g_file_query_filesystem_info()</code></a>. Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a>
|
4140
|
+
is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT64:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_UINT64</code></a>.</p>
|
4141
|
+
</div>
|
4142
|
+
<hr>
|
4143
|
+
<div class="refsect2">
|
4144
|
+
<a name="G-FILE-ATTRIBUTE-FILESYSTEM-FREE:CAPS"></a><h3>G_FILE_ATTRIBUTE_FILESYSTEM_FREE</h3>
|
4145
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_FILESYSTEM_FREE "filesystem::free" /* uint64 */
|
4146
|
+
</pre>
|
4147
|
+
<p>A key in the "filesystem" namespace for getting the number of bytes of free space left on the
|
4148
|
+
file system. Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is
|
4149
|
+
<a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT64:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_UINT64</code></a>.</p>
|
4150
|
+
</div>
|
4151
|
+
<hr>
|
4152
|
+
<div class="refsect2">
|
4153
|
+
<a name="G-FILE-ATTRIBUTE-FILESYSTEM-USED:CAPS"></a><h3>G_FILE_ATTRIBUTE_FILESYSTEM_USED</h3>
|
4154
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_FILESYSTEM_USED "filesystem::used" /* uint64 */
|
4155
|
+
</pre>
|
4156
|
+
<p>A key in the "filesystem" namespace for getting the number of bytes of used on the
|
4157
|
+
file system. Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is
|
4158
|
+
<a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT64:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_UINT64</code></a>.</p>
|
4159
|
+
<p class="since">Since 2.32</p>
|
4160
|
+
</div>
|
4161
|
+
<hr>
|
4162
|
+
<div class="refsect2">
|
4163
|
+
<a name="G-FILE-ATTRIBUTE-FILESYSTEM-TYPE:CAPS"></a><h3>G_FILE_ATTRIBUTE_FILESYSTEM_TYPE</h3>
|
4164
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_FILESYSTEM_TYPE "filesystem::type" /* string */
|
4165
|
+
</pre>
|
4166
|
+
<p>A key in the "filesystem" namespace for getting the file system's type.
|
4167
|
+
Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-STRING:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_STRING</code></a>.</p>
|
4168
|
+
</div>
|
4169
|
+
<hr>
|
4170
|
+
<div class="refsect2">
|
4171
|
+
<a name="G-FILE-ATTRIBUTE-FILESYSTEM-READONLY:CAPS"></a><h3>G_FILE_ATTRIBUTE_FILESYSTEM_READONLY</h3>
|
4172
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_FILESYSTEM_READONLY "filesystem::readonly" /* boolean */
|
4173
|
+
</pre>
|
4174
|
+
<p>A key in the "filesystem" namespace for checking if the file system
|
4175
|
+
is read only. Is set to <a href="../glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the file system is read only.
|
4176
|
+
Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BOOLEAN:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BOOLEAN</code></a>.</p>
|
4177
|
+
</div>
|
4178
|
+
<hr>
|
4179
|
+
<div class="refsect2">
|
4180
|
+
<a name="G-FILE-ATTRIBUTE-GVFS-BACKEND:CAPS"></a><h3>G_FILE_ATTRIBUTE_GVFS_BACKEND</h3>
|
4181
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_GVFS_BACKEND "gvfs::backend" /* string */
|
4182
|
+
</pre>
|
4183
|
+
<p>A key in the "gvfs" namespace that gets the name of the current
|
4184
|
+
GVFS backend in use. Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is
|
4185
|
+
<a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-STRING:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_STRING</code></a>.</p>
|
4186
|
+
</div>
|
4187
|
+
<hr>
|
4188
|
+
<div class="refsect2">
|
4189
|
+
<a name="G-FILE-ATTRIBUTE-SELINUX-CONTEXT:CAPS"></a><h3>G_FILE_ATTRIBUTE_SELINUX_CONTEXT</h3>
|
4190
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_SELINUX_CONTEXT "selinux::context" /* string */
|
4191
|
+
</pre>
|
4192
|
+
<p>A key in the "selinux" namespace for getting the file's SELinux
|
4193
|
+
context. Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is
|
4194
|
+
<a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-STRING:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_STRING</code></a>. Note that this attribute is only
|
4195
|
+
available if GLib has been built with SELinux support.</p>
|
4196
|
+
</div>
|
4197
|
+
<hr>
|
4198
|
+
<div class="refsect2">
|
4199
|
+
<a name="G-FILE-ATTRIBUTE-TRASH-ITEM-COUNT:CAPS"></a><h3>G_FILE_ATTRIBUTE_TRASH_ITEM_COUNT</h3>
|
4200
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_TRASH_ITEM_COUNT "trash::item-count" /* uint32 */
|
4201
|
+
</pre>
|
4202
|
+
<p>A key in the "trash" namespace. When requested against
|
4203
|
+
"trash:///" returns the number of (toplevel) items in the trash folder.
|
4204
|
+
Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT32:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_UINT32</code></a>.</p>
|
4205
|
+
</div>
|
4206
|
+
<hr>
|
4207
|
+
<div class="refsect2">
|
4208
|
+
<a name="G-FILE-ATTRIBUTE-TRASH-DELETION-DATE:CAPS"></a><h3>G_FILE_ATTRIBUTE_TRASH_DELETION_DATE</h3>
|
4209
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_TRASH_DELETION_DATE "trash::deletion-date" /* string */
|
4210
|
+
</pre>
|
4211
|
+
<p>A key in the "trash" namespace. When requested against
|
4212
|
+
items in "trash:///", will return the date and time when the file
|
4213
|
+
was trashed. The format of the returned string is YYYY-MM-DDThh:mm:ss.
|
4214
|
+
Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-STRING:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_STRING</code></a>.</p>
|
4215
|
+
<p class="since">Since 2.24.</p>
|
4216
|
+
</div>
|
4217
|
+
<hr>
|
4218
|
+
<div class="refsect2">
|
4219
|
+
<a name="G-FILE-ATTRIBUTE-TRASH-ORIG-PATH:CAPS"></a><h3>G_FILE_ATTRIBUTE_TRASH_ORIG_PATH</h3>
|
4220
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_TRASH_ORIG_PATH "trash::orig-path" /* byte string */
|
4221
|
+
</pre>
|
4222
|
+
<p>A key in the "trash" namespace. When requested against
|
4223
|
+
items in "trash:///", will return the original path to the file before it
|
4224
|
+
was trashed. Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is
|
4225
|
+
<a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BYTE-STRING:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_BYTE_STRING</code></a>.</p>
|
4226
|
+
<p class="since">Since 2.24.</p>
|
4227
|
+
</div>
|
4228
|
+
<hr>
|
4229
|
+
<div class="refsect2">
|
4230
|
+
<a name="G-FILE-ATTRIBUTE-FILESYSTEM-USE-PREVIEW:CAPS"></a><h3>G_FILE_ATTRIBUTE_FILESYSTEM_USE_PREVIEW</h3>
|
4231
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_FILESYSTEM_USE_PREVIEW "filesystem::use-preview" /* uint32 (GFilesystemPreviewType) */
|
4232
|
+
</pre>
|
4233
|
+
<p>A key in the "filesystem" namespace for hinting a file manager
|
4234
|
+
application whether it should preview (e.g. thumbnail) files on the
|
4235
|
+
file system. The value for this key contain a
|
4236
|
+
<a class="link" href="GFile.html#GFilesystemPreviewType" title="enum GFilesystemPreviewType"><span class="type">GFilesystemPreviewType</span></a>.</p>
|
4237
|
+
</div>
|
4238
|
+
<hr>
|
4239
|
+
<div class="refsect2">
|
4240
|
+
<a name="G-FILE-ATTRIBUTE-STANDARD-DESCRIPTION:CAPS"></a><h3>G_FILE_ATTRIBUTE_STANDARD_DESCRIPTION</h3>
|
4241
|
+
<pre class="programlisting">#define G_FILE_ATTRIBUTE_STANDARD_DESCRIPTION "standard::description" /* string */
|
4242
|
+
</pre>
|
4243
|
+
<p>A key in the "standard" namespace for getting the description of the file.
|
4244
|
+
The description is a utf8 string that describes the file, generally containing
|
4245
|
+
the filename, but can also contain furter information. Example descriptions
|
4246
|
+
could be "filename (on hostname)" for a remote file or "filename (in trash)"
|
4247
|
+
for a file in the trash. This is useful for instance as the window title
|
4248
|
+
when displaying a directory or for a bookmarks menu.</p>
|
4249
|
+
<p>Corresponding <a class="link" href="gio-GFileAttribute.html#GFileAttributeType" title="enum GFileAttributeType"><span class="type">GFileAttributeType</span></a> is <a class="link" href="gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-STRING:CAPS"><code class="literal">G_FILE_ATTRIBUTE_TYPE_STRING</code></a>.</p>
|
4250
|
+
</div>
|
4251
|
+
</div>
|
4252
|
+
<div class="refsect1">
|
4253
|
+
<a name="GFileInfo.see-also"></a><h2>See Also</h2>
|
4254
|
+
<p><a class="link" href="GFile.html" title="GFile"><span class="type">GFile</span></a>, <a class="link" href="gio-GFileAttribute.html" title="GFileAttribute">GFileAttribute</a></p>
|
4255
|
+
</div>
|
4256
|
+
</div>
|
4257
|
+
<div class="footer">
|
4258
|
+
<hr>
|
4259
|
+
Generated by GTK-Doc V1.21.1</div>
|
4260
|
+
</body>
|
4261
|
+
</html>
|