glib/gio
Colin Walters 9f1a0b57cd Ensure g_file_copy() does not temporarily expose private files
Previously, g_file_copy() would (on Unix) create files with the
default mode of 644.  For applications which might at user request
copy arbitrary private files such as ~/.ssh or /etc/shadow, a
world-readable copy would be temporarily exposed.

This patch is suboptimal in that it *only* fixes g_file_copy()
for the case where both source and destination are instances of
GLocalFile on Unix.

The reason for this is that the public GFile APIs for creating files
allow very limited control over the access permissions for the created
file; one can either say a file is "private" or not.  Fixing
this by adding e.g. g_file_create_with_attributes() would make sense,
except this would entail 8 new API calls for all the variants of
_create(), _create_async(), _replace(), _replace_async(),
_create_readwrite(), _create_readwrite_async(), _replace_readwrite(),
_replace_readwrite_async().  That can be done as a separate patch
later.

https://bugzilla.gnome.org/show_bug.cgi?id=699959
2013-06-05 19:00:20 +01:00
..
completion gsettings: implemented --version command 2013-04-03 21:35:57 -04:00
fam Rework the build system for a new tests approach 2013-05-31 23:12:15 -04:00
fen Rework the build system for a new tests approach 2013-05-31 23:12:15 -04:00
gdbus-2.0/codegen Rework the build system for a new tests approach 2013-05-31 23:12:15 -04:00
gvdb Use "Returns:" instead of the invalid "@returns" for annotating return values. 2012-11-01 14:47:25 +13:00
inotify Remove some unused inotify code 2013-06-02 20:01:56 -04:00
kqueue Rework the build system for a new tests approach 2013-05-31 23:12:15 -04:00
tests gio/tests/inet-address: fix to work on OS X 2013-06-04 09:24:47 -03:00
win32 Rework the build system for a new tests approach 2013-05-31 23:12:15 -04:00
xdgmime Rework the build system for a new tests approach 2013-05-31 23:12:15 -04:00
.gitignore Add gnetworking.h 2012-12-12 15:20:22 +01:00
ChangeLog
data-to-c.pl gio: Convert data-to-c.c to perl 2012-02-02 16:22:42 +01:00
dbus-daemon.xml Add GDBusDAaemon, an implementation of a message bus 2012-04-20 15:02:48 +02:00
gaction.c app: Document when floating variants are consumed 2013-05-13 13:45:11 +02:00
gaction.h gaction: add parser for detailed action names 2013-04-01 16:53:54 -04:00
gactiongroup.c Add missing allow-none annotations for function parameters. 2012-03-31 20:34:28 +11:00
gactiongroup.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gactiongroupexporter.c gdbusactiongroup: Add prototype for g_dbus_action_group_sync() 2012-11-02 09:03:52 -04:00
gactiongroupexporter.h Move single-include guards inside include guards 2012-12-27 23:43:14 -05:00
gactionmap.c gactionmap: don't require GActionGroup 2013-04-20 22:10:36 -04:00
gactionmap.h Move single-include guards inside include guards 2012-12-27 23:43:14 -05:00
gappinfo.c GAppLaunchContext: make it possible ot get the effective startup id 2012-11-21 21:20:25 -05:00
gappinfo.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gapplication.c GApplication: set prgname to appid for services 2013-06-05 12:50:50 -04:00
gapplication.h application: introduce methods to mark the application as busy 2013-04-04 13:13:53 -04:00
gapplicationcommandline.c Fix a doc comment mismatch 2013-02-03 13:50:36 -05:00
gapplicationcommandline.h add a missing AVAILABLE_IN_2_36 annotation 2013-01-13 13:13:03 -05:00
gapplicationimpl-dbus.c GApplication: implement fd.o application spec 2013-06-05 12:50:50 -04:00
gapplicationimpl.h application: introduce methods to mark the application as busy 2013-04-04 13:13:53 -04:00
gasynchelper.c win32: make gio stream cancellable 2012-08-20 17:10:31 +02:00
gasynchelper.h win32: use overlapped events for streams 2012-08-20 17:10:31 +02:00
gasyncinitable.c gio: Fix annotations on g_[async_]initable_new() and friends 2013-02-13 07:23:13 +01:00
gasyncinitable.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gasyncresult.c gio: deprecate gioscheduler, soft deprecate GSimpleAsyncResult 2012-10-10 10:29:36 -04:00
gasyncresult.h More doc fixes 2013-02-15 05:39:20 -05:00
gbufferedinputstream.c gio: port basic I/O classes from GSimpleAsyncResult to GTask 2012-12-18 09:07:19 -05:00
gbufferedinputstream.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gbufferedoutputstream.c gio: port basic I/O classes from GSimpleAsyncResult to GTask 2012-12-18 09:07:19 -05:00
gbufferedoutputstream.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gbytesicon.c Trivial formatting fix 2013-06-02 01:40:39 -04:00
gbytesicon.h Introduce GBytesIcon 2013-04-21 16:25:15 -04:00
gcancellable.c g_cancellable_source_new: don't use a file descriptor 2012-07-17 15:32:48 -04:00
gcancellable.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gcharsetconverter.c Drop unneeded includes 2012-07-03 21:14:41 -04:00
gcharsetconverter.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gcontenttype-win32.c Add Win32 versions of some new content type APIs 2012-10-15 19:22:50 -04:00
gcontenttype.c gcontenttype: Duplicate the string inside Mutex lock for thread-safety 2013-01-25 13:39:53 +09:00
gcontenttype.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gcontenttypeprivate.h
gconverter.c docs: Fix typo GConvertFlags → GConverterFlags 2012-02-21 01:10:54 +01:00
gconverter.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gconverterinputstream.c Bug 678332-gio/gconverterinputstream.c: Fix build 2012-06-19 16:35:26 +08:00
gconverterinputstream.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gconverteroutputstream.c gio: implement GPollableInput/OutputStream in more stream types 2012-04-17 12:33:12 -04:00
gconverteroutputstream.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gcredentials.c GCredentials: add getter/setter for the Unix process ID 2012-12-19 15:08:09 -05:00
gcredentials.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gdatainputstream.c gio: port basic I/O classes from GSimpleAsyncResult to GTask 2012-12-18 09:07:19 -05:00
gdatainputstream.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gdataoutputstream.c Make GDataOutputStream implement GSeekable 2012-04-23 10:57:12 +02:00
gdataoutputstream.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gdbus-tool.c Avoid a segfault in gdbus tool 2013-05-25 23:15:36 -04:00
gdbusactiongroup-private.h gdbusactiongroup: Add prototype for g_dbus_action_group_sync() 2012-11-02 09:03:52 -04:00
gdbusactiongroup.c Remove most use of G_GNUC_INTERNAL 2013-01-18 13:03:28 -05:00
gdbusactiongroup.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gdbusaddress.c Use 'dumb quotes' rather than `really dumb quotes' 2013-05-21 11:23:22 -03:00
gdbusaddress.h g_dbus_address_escape_value: add 2013-02-13 20:42:58 +00:00
gdbusauth.c Use 'dumb quotes' rather than `really dumb quotes' 2013-05-21 11:23:22 -03:00
gdbusauth.h Move single-include guards inside include guards 2012-12-27 23:43:14 -05:00
gdbusauthmechanism.c gio/: fully remove gioalias hacks 2010-07-07 19:53:22 -04:00
gdbusauthmechanism.h Move single-include guards inside include guards 2012-12-27 23:43:14 -05:00
gdbusauthmechanismanon.c Use 'dumb quotes' rather than `really dumb quotes' 2013-05-21 11:23:22 -03:00
gdbusauthmechanismanon.h Move single-include guards inside include guards 2012-12-27 23:43:14 -05:00
gdbusauthmechanismexternal.c gio/: fully remove gioalias hacks 2010-07-07 19:53:22 -04:00
gdbusauthmechanismexternal.h Move single-include guards inside include guards 2012-12-27 23:43:14 -05:00
gdbusauthmechanismsha1.c Use 'dumb quotes' rather than `really dumb quotes' 2013-05-21 11:23:22 -03:00
gdbusauthmechanismsha1.h Move single-include guards inside include guards 2012-12-27 23:43:14 -05:00
gdbusauthobserver.c GDBusAuthObserver: Add a way to control what authentication mechanisms to use 2012-04-14 11:52:20 -04:00
gdbusauthobserver.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gdbusconnection.c Use 'dumb quotes' rather than `really dumb quotes' 2013-05-21 11:23:22 -03:00
gdbusconnection.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gdbusdaemon.c Add G_GNUC_PRINTF on all functions with format strings 2013-01-13 12:32:40 -05:00
gdbusdaemon.h Add GDBusDAaemon, an implementation of a message bus 2012-04-20 15:02:48 +02:00
gdbuserror.c gdbus: improve documentation of the GDBusError section 2012-11-15 22:24:54 +01:00
gdbuserror.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gdbusinterface.c Add missing allow-none annotations for function parameters. 2012-03-31 20:34:28 +11:00
gdbusinterface.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gdbusinterfaceskeleton.c gio: deprecate gioscheduler, soft deprecate GSimpleAsyncResult 2012-10-10 10:29:36 -04:00
gdbusinterfaceskeleton.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gdbusintrospection.c Fix this cost -> the cost typos 2012-10-21 13:08:01 +02:00
gdbusintrospection.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gdbusmenumodel.c various: add missing cases of #include "config.h" 2012-12-06 13:30:31 -05:00
gdbusmenumodel.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gdbusmessage.c Use 'dumb quotes' rather than `really dumb quotes' 2013-05-21 11:23:22 -03:00
gdbusmessage.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gdbusmethodinvocation.c Use 'dumb quotes' rather than `really dumb quotes' 2013-05-21 11:23:22 -03:00
gdbusmethodinvocation.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gdbusnameowning.c Add missing allow-none annotations for function parameters. 2012-03-31 20:34:28 +11:00
gdbusnameowning.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gdbusnamewatching.c Add missing allow-none annotations for function parameters. 2012-03-31 20:34:28 +11:00
gdbusnamewatching.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gdbusobject.c Stop using glib-genmarshal at build time 2011-06-20 17:24:07 -04:00
gdbusobject.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gdbusobjectmanager.c Pass in NULL instead of g_cclosure_marshal_generic 2011-07-19 14:38:34 -03:00
gdbusobjectmanager.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gdbusobjectmanagerclient.c gdbusobjectmanagerclient: always connect to proxy's 'g-signal' 2013-02-09 20:34:52 +01:00
gdbusobjectmanagerclient.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gdbusobjectmanagerserver.c Add g_dbus_object_manager_server_is_exported() 2012-06-21 23:41:54 -04:00
gdbusobjectmanagerserver.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gdbusobjectproxy.c gdbus: Fix some compiler warnings 2012-11-15 08:42:36 -05:00
gdbusobjectproxy.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gdbusobjectskeleton.c gdbusobjectskeleton: Fix compiler warnings 2012-12-05 13:30:15 -05:00
gdbusobjectskeleton.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gdbusprivate.c Add g_close(), use it 2013-01-29 09:46:04 -05:00
gdbusprivate.h Move single-include guards inside include guards 2012-12-27 23:43:14 -05:00
gdbusproxy.c Use 'dumb quotes' rather than `really dumb quotes' 2013-05-21 11:23:22 -03:00
gdbusproxy.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gdbusserver.c Use 'dumb quotes' rather than `really dumb quotes' 2013-05-21 11:23:22 -03:00
gdbusserver.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gdbusutils.c g_dbus_gvariant_to_gvalue(): Add missing out annotation 2012-06-05 18:50:36 +02:00
gdbusutils.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gdelayedsettingsbackend.c GSettings: port from GStaticMutex to GMutex 2011-09-21 16:06:53 -04:00
gdelayedsettingsbackend.h Remove most use of G_GNUC_INTERNAL 2013-01-18 13:03:28 -05:00
gdesktopappinfo.c gio: fix small leak 2013-05-01 11:15:13 +10:00
gdesktopappinfo.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gdrive.c gio: port file/vfs-related classes from GSimpleAsyncResult to GTask 2012-12-18 09:07:24 -05:00
gdrive.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gdummyfile.c gio/: fully remove gioalias hacks 2010-07-07 19:53:22 -04:00
gdummyfile.h
gdummyproxyresolver.c gio: port networking classes from GSimpleAsyncResult to GTask 2012-10-10 10:29:37 -04:00
gdummyproxyresolver.h Move single-include guards inside include guards 2012-12-27 23:43:14 -05:00
gdummytlsbackend.c Revert "gtlscertificate: Add certificate-bytes and private-key-bytes props" 2012-08-21 13:30:02 +02:00
gdummytlsbackend.h Add initial TLS (SSL) support to gio 2010-11-26 15:57:11 -05:00
gemblem.c GIcon: add g_icon_[de]serialize() 2013-04-21 16:31:14 -04:00
gemblem.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gemblemedicon.c Silently handle icon being NULL 2013-05-02 21:02:37 -04:00
gemblemedicon.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gfile.c Ensure g_file_copy() does not temporarily expose private files 2013-06-05 19:00:20 +01:00
gfile.h Add async version of g_file_make_directory() 2013-04-19 21:38:13 +02:00
gfileattribute-priv.h
gfileattribute.c docs: Add 2 missing : 2013-02-04 22:35:29 -05:00
gfileattribute.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gfiledescriptorbased.c gio/: fully remove gioalias hacks 2010-07-07 19:53:22 -04:00
gfiledescriptorbased.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gfileenumerator.c gio: port file/vfs-related classes from GSimpleAsyncResult to GTask 2012-12-18 09:07:24 -05:00
gfileenumerator.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gfileicon.c GIcon: NULLify the `type' out param in the sync methods too 2013-05-28 22:59:24 +02:00
gfileicon.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gfileinfo-priv.h Add symbolic icon support to gfileinfo 2012-08-30 11:04:43 -04:00
gfileinfo.c Fix suprisingly hard-to-spot typo 2012-11-28 00:58:03 -05:00
gfileinfo.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gfileinputstream.c gio: port file/vfs-related classes from GSimpleAsyncResult to GTask 2012-12-18 09:07:24 -05:00
gfileinputstream.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gfileiostream.c gio: port file/vfs-related classes from GSimpleAsyncResult to GTask 2012-12-18 09:07:24 -05:00
gfileiostream.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gfilemonitor.c GFileMonitor: thread-safety fix for non-default-main-context monitors 2012-10-06 10:40:53 -04:00
gfilemonitor.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gfilenamecompleter.c gio/*: Use g_list_free_full() convenience function 2012-01-03 16:53:47 +01:00
gfilenamecompleter.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gfileoutputstream.c gio: port file/vfs-related classes from GSimpleAsyncResult to GTask 2012-12-18 09:07:24 -05:00
gfileoutputstream.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gfilterinputstream.c Remove some cruft from an older version of the code 2012-01-05 12:57:18 -05:00
gfilterinputstream.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gfilteroutputstream.c Remove some cruft from an older version of the code 2012-01-05 12:57:18 -05:00
gfilteroutputstream.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gicon.c icon deserialisation: fix uninitialised variable 2013-05-29 21:49:53 -04:00
gicon.h GIcon: add g_icon_[de]serialize() 2013-04-21 16:31:14 -04:00
ginetaddress.c Add gnetworking.h 2012-12-12 15:20:22 +01:00
ginetaddress.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
ginetaddressmask.c ginetaddressmask: plug leak 2012-01-01 19:01:14 +01:00
ginetaddressmask.h Move single-include guards inside include guards 2012-12-27 23:43:14 -05:00
ginetsocketaddress.c GInetSocketAddress: fix the byte order of flowinfo and scope_id 2013-01-30 16:46:02 -05:00
ginetsocketaddress.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
ginitable.c gio: Fix annotations on g_[async_]initable_new() and friends 2013-02-13 07:23:13 +01:00
ginitable.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
ginputstream.c gio: callback_data is the task not the task data. 2013-01-16 10:12:46 -05:00
ginputstream.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gio-querymodules.c gio-querymodules: Ensure we're linked to GObject 2013-01-10 22:24:00 -05:00
gio.h Introduce GBytesIcon 2013-04-21 16:25:15 -04:00
gio.rc.in Update the year in the *.rc.in files 2011-06-07 08:55:31 +08:00
gioenums.h g_dbus_connection_signal_subscribe: add path and namespace matching 2013-04-08 15:59:39 +02:00
gioenumtypes.c.template various: add missing cases of #include "config.h" 2012-12-06 13:30:31 -05:00
gioenumtypes.h.template gioenumtypes.h.template: use GLIB_AVAILABLE_IN_ALL 2013-01-13 13:05:15 -05:00
gioerror.c Added G_IO_ERROR_BROKEN_PIPE 2012-11-29 16:29:47 -03:00
gioerror.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
giomodule-priv.h giomodule: add a new "get default" function 2013-01-19 14:04:49 -05:00
giomodule.c localfile: add support for monitoring on NFS 2013-01-19 14:04:49 -05:00
giomodule.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gioscheduler.c gio: deprecate gioscheduler, soft deprecate GSimpleAsyncResult 2012-10-10 10:29:36 -04:00
gioscheduler.h Move single-include guards inside include guards 2012-12-27 23:43:14 -05:00
giostream.c gio: port basic I/O classes from GSimpleAsyncResult to GTask 2012-12-18 09:07:19 -05:00
giostream.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
giotypes.h Introduce GBytesIcon 2013-04-21 16:25:15 -04:00
gkeyfilesettingsbackend.c Drop last uses of @returns: 2011-11-21 12:02:02 -05:00
glib-compile-resources.c glib-compile-resources: avoid warnings with -Wmissing-field-initializers 2013-01-09 10:12:12 -05:00
glib-compile-schemas.c Rework the build system for a new tests approach 2013-05-31 23:12:15 -04:00
gloadableicon.c gio: port file/vfs-related classes from GSimpleAsyncResult to GTask 2012-12-18 09:07:24 -05:00
gloadableicon.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
glocaldirectorymonitor.c localfile: add support for monitoring on NFS 2013-01-19 14:04:49 -05:00
glocaldirectorymonitor.h localfile: add support for monitoring on NFS 2013-01-19 14:04:49 -05:00
glocalfile.c Ensure g_file_copy() does not temporarily expose private files 2013-06-05 19:00:20 +01:00
glocalfile.h Ensure g_file_copy() does not temporarily expose private files 2013-06-05 19:00:20 +01:00
glocalfileenumerator.c localfileenumerator: Improve non-stat'ing code 2011-11-16 17:22:17 +01:00
glocalfileenumerator.h
glocalfileinfo.c Fix compilation on Android with the bionic C library 2013-04-16 13:24:26 +02:00
glocalfileinfo.h fileinfo: mark lost+found/ root directory as hidden 2012-12-06 16:21:58 -05:00
glocalfileinputstream.c Add g_close(), use it 2013-01-29 09:46:04 -05:00
glocalfileinputstream.h gio: remove export tags from two private headers 2013-01-13 23:32:07 -05:00
glocalfileiostream.c gio/: fully remove gioalias hacks 2010-07-07 19:53:22 -04:00
glocalfileiostream.h gio: remove export tags from two private headers 2013-01-13 23:32:07 -05:00
glocalfilemonitor.c localfile: add support for monitoring on NFS 2013-01-19 14:04:49 -05:00
glocalfilemonitor.h localfile: add support for monitoring on NFS 2013-01-19 14:04:49 -05:00
glocalfileoutputstream.c Ensure g_file_copy() does not temporarily expose private files 2013-06-05 19:00:20 +01:00
glocalfileoutputstream.h Ensure g_file_copy() does not temporarily expose private files 2013-06-05 19:00:20 +01:00
glocalvfs.c gio/: fully remove gioalias hacks 2010-07-07 19:53:22 -04:00
glocalvfs.h
gmemoryinputstream.c Trivial doc comment formatting fix 2013-02-03 13:46:50 -05:00
gmemoryinputstream.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gmemoryoutputstream.c gio: port basic I/O classes from GSimpleAsyncResult to GTask 2012-12-18 09:07:19 -05:00
gmemoryoutputstream.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gmemorysettingsbackend.c Document new API 2011-02-08 10:05:00 -05:00
gmenu.c GMenu: add g_menu_item_set_icon() convenience 2013-04-22 16:12:42 -04:00
gmenu.h GMenu: add g_menu_item_set_icon() convenience 2013-04-22 16:12:42 -04:00
gmenuexporter.c gmenuexporter: fix typo in docstring 2013-02-03 09:59:07 -05:00
gmenuexporter.h Annotate API introduced for 2.32 with GLIB_AVAILABLE_IN_2_32 2012-05-26 10:13:30 -04:00
gmenumodel.c gio: hide another leaked symbol 2013-01-13 22:59:40 -05:00
gmenumodel.h GMenu: add g_menu_item_set_icon() convenience 2013-04-22 16:12:42 -04:00
gmount.c gio: port file/vfs-related classes from GSimpleAsyncResult to GTask 2012-12-18 09:07:24 -05:00
gmount.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gmountoperation.c mount-op: use gint64 instead of guint64 for time_left and bytes_left 2012-08-21 10:55:28 +02:00
gmountoperation.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gmountprivate.h
gnativevolumemonitor.c gio/: fully remove gioalias hacks 2010-07-07 19:53:22 -04:00
gnativevolumemonitor.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gnetworkaddress.c GNetworkAddress: drop cached addresses on resolver reload 2013-02-20 07:33:58 -05:00
gnetworkaddress.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gnetworking.c Add gnetworking.h 2012-12-12 15:20:22 +01:00
gnetworking.h.in Add gnetworking.h 2012-12-12 15:20:22 +01:00
gnetworking.h.win32 Add a preconfigured gio/gnetworking.h for Windows 2012-12-15 00:22:37 +08:00
gnetworkingprivate.h GNetworkAddress: drop cached addresses on resolver reload 2013-02-20 07:33:58 -05:00
gnetworkmonitor.c GNetworkMonitor: add missing apostrophe to docstring 2012-10-30 17:17:23 +00:00
gnetworkmonitor.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gnetworkmonitorbase.c GNetworkMonitorBase: implement can_reach_async 2013-02-20 07:33:58 -05:00
gnetworkmonitorbase.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gnetworkmonitornetlink.c Add g_close(), use it 2013-01-29 09:46:04 -05:00
gnetworkmonitornetlink.h add GNetworkMonitor, for... monitoring the network 2011-11-14 13:42:30 -05:00
gnetworkservice.c gio: port networking classes from GSimpleAsyncResult to GTask 2012-10-10 10:29:37 -04:00
gnetworkservice.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gnextstepsettingsbackend.c various: add missing cases of #include "config.h" 2012-12-06 13:30:31 -05:00
gnullsettingsbackend.c Document new API 2011-02-08 10:05:00 -05:00
goutputstream.c GOutputStream: Remove unused SpliceUserData struct 2013-02-19 08:47:45 -06:00
goutputstream.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gpermission.c Make GPermission more forgiving 2012-08-19 02:19:27 -04:00
gpermission.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gpollableinputstream.c Cosmetic change 2012-08-19 02:21:02 -04:00
gpollableinputstream.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gpollableoutputstream.c Cosmetic change 2012-08-19 02:21:02 -04:00
gpollableoutputstream.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gpollableutils.c gpollableutils: utility functions for pollable stream implementations 2012-04-17 12:33:12 -04:00
gpollableutils.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gpollfilemonitor.c e G_SOURCE_CONTINUE/REMOVE internally 2012-01-25 16:15:18 -05:00
gpollfilemonitor.h
gproxy.c Fix links in gio docs 2011-06-04 18:48:19 -04:00
gproxy.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gproxyaddress.c Exterminate 'the the' 2012-08-18 23:15:58 -04:00
gproxyaddress.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gproxyaddressenumerator.c GProxyAddressEnumerator: add default-port property 2013-05-05 16:50:43 -04:00
gproxyaddressenumerator.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gproxyresolver.c Add _g_io_module_get_default(), use to simplify other *_get_default()s 2011-10-04 13:20:34 -04:00
gproxyresolver.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gregistrysettingsbackend.c win32: misc warning fixes 2012-11-15 14:19:06 -05:00
gregistrysettingsbackend.h Remove most use of G_GNUC_INTERNAL 2013-01-18 13:03:28 -05:00
gremoteactiongroup.c Fix malformed GTK-Doc comment blocks: invalid parameters and tags. 2012-04-05 10:23:42 -03:00
gremoteactiongroup.h Move single-include guards inside include guards 2012-12-27 23:43:14 -05:00
gresolver.c Declare res_init() for builds against Android's Bionic 2013-05-06 16:06:48 +02:00
gresolver.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gresource-tool.c win32: prototype _glib_get_dll_directory() and _glib_get_locale_dir() 2012-11-15 14:19:05 -05:00
gresource.c Use (void) for no parameters, not () 2012-11-01 20:12:02 -04:00
gresource.h Move single-include guards inside include guards 2012-12-27 23:43:14 -05:00
gresourcefile.c build: Prototype GType accessors for private classes 2012-11-01 20:12:02 -04:00
gresourcefile.h Support resource:/// uris 2012-01-13 17:12:57 +01:00
gschema.dtd Fix up the gschema.dtd 2012-12-29 00:22:34 -05:00
gseekable.c Spelling fixes 2011-08-29 14:49:32 -04:00
gseekable.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gsettings-mapping.c gvalue: Add explicitly signed g_value_get_schar() and g_value_set_schar() 2011-09-22 20:05:38 -04:00
gsettings-mapping.h Remove most use of G_GNUC_INTERNAL 2013-01-18 13:03:28 -05:00
gsettings-tool.c gsettings: implemented --version command 2013-04-03 21:35:57 -04:00
gsettings.c Use 'dumb quotes' rather than `really dumb quotes' 2013-05-21 11:23:22 -03:00
gsettings.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gsettingsbackend.c Add missing allow-none annotations for function parameters. 2012-03-31 20:34:28 +11:00
gsettingsbackend.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gsettingsbackendinternal.h Remove most use of G_GNUC_INTERNAL 2013-01-18 13:03:28 -05:00
gsettingsschema-internal.h Remove most use of G_GNUC_INTERNAL 2013-01-18 13:03:28 -05:00
gsettingsschema.c Use 'dumb quotes' rather than `really dumb quotes' 2013-05-21 11:23:22 -03:00
gsettingsschema.h gio: GLIB_AVAILABLE_IN to more APIs 2012-11-29 14:07:27 -05:00
gsimpleaction.c app: Document when floating variants are consumed 2013-05-13 13:45:11 +02:00
gsimpleaction.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gsimpleactiongroup.c various: add missing cases of #include "config.h" 2012-12-06 13:30:31 -05:00
gsimpleactiongroup.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gsimpleasyncresult.c gio: deprecate gioscheduler, soft deprecate GSimpleAsyncResult 2012-10-10 10:29:36 -04:00
gsimpleasyncresult.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gsimplepermission.c GSimplePermission: Drop @returns syntax in doc comments 2011-11-21 11:02:30 -05:00
gsimplepermission.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gsimpleproxyresolver.c GSimpleProxyResolver: add missing include 2013-02-17 09:54:58 -05:00
gsimpleproxyresolver.h GSimpleProxyResolver: new simple GProxyResolver class 2013-02-14 10:24:14 -05:00
gsocket.c GNetworkMonitorNetlink: make the netlink socket cloexec 2013-01-23 08:48:32 -05:00
gsocket.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gsocketaddress.c GInetSocketAddress: fix the byte order of flowinfo and scope_id 2013-01-30 16:46:02 -05:00
gsocketaddress.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gsocketaddressenumerator.c gio: port networking classes from GSimpleAsyncResult to GTask 2012-10-10 10:29:37 -04:00
gsocketaddressenumerator.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gsocketclient.c GSocketClient: add missing NULL to g_object_set() call 2013-02-15 10:39:19 -05:00
gsocketclient.h Corrected some GLIB_AVAILABLE_IN_* 2013-03-25 10:16:49 +01:00
gsocketconnectable.c Fix minor typos in GSocketConnectable example code 2013-05-08 03:55:39 +03:00
gsocketconnectable.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gsocketconnection.c gio: port networking classes from GSimpleAsyncResult to GTask 2012-10-10 10:29:37 -04:00
gsocketconnection.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gsocketcontrolmessage.c Add g_type_ensure() and use it rather than playing games with volatile 2012-05-15 13:46:38 -04:00
gsocketcontrolmessage.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gsocketinputstream.c gio: port networking classes from GSimpleAsyncResult to GTask 2012-10-10 10:29:37 -04:00
gsocketinputstream.h
gsocketlistener.c gsocketlistener: set source object tag before completing the GTask 2012-12-03 15:59:06 +01:00
gsocketlistener.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gsocketoutputstream.c gio: port networking classes from GSimpleAsyncResult to GTask 2012-10-10 10:29:37 -04:00
gsocketoutputstream.h
gsocketservice.c GIO: add lots of annotations for Vala bindings 2012-01-11 15:50:08 -05:00
gsocketservice.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gsocks4aproxy.c gio: port networking classes from GSimpleAsyncResult to GTask 2012-10-10 10:29:37 -04:00
gsocks4aproxy.h Implemented SOCKSv4 and SOCKSv4a 2010-08-19 16:32:38 -04:00
gsocks4proxy.c gio/proxy: Fixed compilation warnings 2010-08-19 17:31:42 -04:00
gsocks4proxy.h Implemented SOCKSv4 and SOCKSv4a 2010-08-19 16:32:38 -04:00
gsocks5proxy.c GSocks5Proxy: don't crash if parsing negotiation reply fails 2013-05-02 18:37:25 +01:00
gsocks5proxy.h Implemented SOCKSv5 proxy support 2010-08-19 16:32:37 -04:00
gsrvtarget.c gio static fixups 2011-10-16 21:41:15 -04:00
gsrvtarget.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gtask.c gtask: free error on finalize if it's set 2013-03-26 19:19:41 +01:00
gtask.h Add G_GNUC_PRINTF on all functions with format strings 2013-01-13 12:32:40 -05:00
gtcpconnection.c gio: port networking classes from GSimpleAsyncResult to GTask 2012-10-10 10:29:37 -04:00
gtcpconnection.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gtcpwrapperconnection.c Correct gtk-doc SECTION: syntax 2011-02-01 16:18:02 -02:00
gtcpwrapperconnection.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gtestdbus.c Added examples to GTestDBus documentation 2013-03-21 16:37:21 +09:00
gtestdbus.h Move single-include guards inside include guards 2012-12-27 23:43:14 -05:00
gthemedicon.c GIcon: add g_icon_[de]serialize() 2013-04-21 16:31:14 -04:00
gthemedicon.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gthreadedresolver.c Fix compilation on Android with the bionic C library 2013-04-16 13:24:26 +02:00
gthreadedresolver.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gthreadedsocketservice.c Pass in NULL instead of g_cclosure_marshal_generic 2011-07-19 14:38:34 -03:00
gthreadedsocketservice.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gtlsbackend.c Fix malformed GTK-Doc comment blocks: remove repeated comment blocks. 2012-04-05 10:23:46 -03:00
gtlsbackend.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gtlscertificate.c Revert "gtlscertificate: Add certificate-bytes and private-key-bytes props" 2012-08-21 13:30:02 +02:00
gtlscertificate.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gtlsclientconnection.c GIO: add lots of annotations for Vala bindings 2012-01-11 15:50:08 -05:00
gtlsclientconnection.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gtlsconnection.c gio: don't quote quark names for G_DEFINE_QUARK 2012-08-28 13:16:25 -04:00
gtlsconnection.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gtlsdatabase.c gio: add missing element-type annotation 2013-01-13 20:05:17 +01:00
gtlsdatabase.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gtlsfiledatabase.c Fix tiny docs typo. 2013-03-26 10:51:48 +01:00
gtlsfiledatabase.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gtlsinteraction.c gio: port networking classes from GSimpleAsyncResult to GTask 2012-10-10 10:29:37 -04:00
gtlsinteraction.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gtlspassword.c gtlspassword.c: indentation fixes and doc clarifications 2012-01-30 09:00:36 -05:00
gtlspassword.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gtlsserverconnection.c GIO: add lots of annotations for Vala bindings 2012-01-11 15:50:08 -05:00
gtlsserverconnection.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gunionvolumemonitor.c locks: drop _INIT macros 2011-10-02 22:33:10 -04:00
gunionvolumemonitor.h
gunixconnection.c gunixconnection: added ngettext to support plural forms 2013-05-23 21:48:28 -04:00
gunixconnection.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gunixcredentialsmessage.c Add gnetworking.h 2012-12-12 15:20:22 +01:00
gunixcredentialsmessage.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gunixfdlist.c Add gnetworking.h 2012-12-12 15:20:22 +01:00
gunixfdlist.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gunixfdmessage.c Add gnetworking.h 2012-12-12 15:20:22 +01:00
gunixfdmessage.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gunixinputstream.c gio: port basic I/O classes from GSimpleAsyncResult to GTask 2012-12-18 09:07:19 -05:00
gunixinputstream.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gunixmount.c gio: port file/vfs-related classes from GSimpleAsyncResult to GTask 2012-12-18 09:07:24 -05:00
gunixmount.h
gunixmounts.c gunixmounts: remove warning on unused variable 2013-04-10 11:07:12 +01:00
gunixmounts.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gunixoutputstream.c gio: port basic I/O classes from GSimpleAsyncResult to GTask 2012-12-18 09:07:19 -05:00
gunixoutputstream.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gunixsocketaddress.c GUnixSocketAddress: fix construct parameter issue 2013-04-23 14:36:07 -04:00
gunixsocketaddress.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gunixvolume.c gio: Fix build with -Werror=format-security 2012-12-18 21:32:01 +01:00
gunixvolume.h
gunixvolumemonitor.c GUnixVolumeMonitor: Make use of new g_list_copy_deep() 2012-06-21 18:32:23 -04:00
gunixvolumemonitor.h
gvfs.c CVE-2012-3524: Hardening for being run in a setuid environment 2012-09-13 18:34:29 -04:00
gvfs.h GIcon: add g_icon_[de]serialize() 2013-04-21 16:31:14 -04:00
gvolume.c gio: port file/vfs-related classes from GSimpleAsyncResult to GTask 2012-12-18 09:07:24 -05:00
gvolume.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gvolumemonitor.c Add a lot of missing annotations 2010-09-24 18:24:41 -03:00
gvolumemonitor.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gwin32appinfo.c Drop unneeded includes 2012-07-03 21:14:41 -04:00
gwin32appinfo.h win32: hide g_win32_app_info_get_type() 2013-01-14 11:17:52 -05:00
gwin32inputstream.c Revert "gio: Add private API to create win32 streams from fds" 2012-11-15 15:33:38 +01:00
gwin32inputstream.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gwin32mount.c win32: misc warning fixes 2012-11-15 14:19:06 -05:00
gwin32mount.h
gwin32outputstream.c Revert "gio: Add private API to create win32 streams from fds" 2012-11-15 15:33:38 +01:00
gwin32outputstream.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gwin32volumemonitor.c win32: misc warning fixes 2012-11-15 14:19:06 -05:00
gwin32volumemonitor.h
gzlibcompressor.c Exterminate 'the the' 2012-08-18 23:15:58 -04:00
gzlibcompressor.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
gzlibdecompressor.c gzlibdecompressor.c: fix a comment 2011-11-29 21:43:00 +01:00
gzlibdecompressor.h various: add GLIB_AVAILABLE_IN_ALL everywhere else 2013-01-13 13:11:57 -05:00
Makefile.am Rework the build system for a new tests approach 2013-05-31 23:12:15 -04:00
makefile.msc gio/: fully remove gioalias hacks 2010-07-07 19:53:22 -04:00
strinfo.c Fix malformed GTK-Doc comment blocks: unmark non GTK-Doc comment block. 2012-04-05 10:23:40 -03:00