gio2 0.90.3-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (856) hide show
  1. data/ChangeLog +60 -0
  2. data/README +34 -0
  3. data/Rakefile +76 -0
  4. data/ext/gio2/depend +5 -0
  5. data/ext/gio2/extconf.rb +91 -0
  6. data/ext/gio2/gappinfo.c +318 -0
  7. data/ext/gio2/gapplaunchcontext.c +79 -0
  8. data/ext/gio2/gasyncinitable.c +244 -0
  9. data/ext/gio2/gasyncresult.c +39 -0
  10. data/ext/gio2/gbufferedinputstream.c +184 -0
  11. data/ext/gio2/gbufferedoutputstream.c +82 -0
  12. data/ext/gio2/gcancellable.c +177 -0
  13. data/ext/gio2/gcharsetconverter.c +72 -0
  14. data/ext/gio2/gcontenttype.c +135 -0
  15. data/ext/gio2/gconverter.c +117 -0
  16. data/ext/gio2/gconverterinputstream.c +48 -0
  17. data/ext/gio2/gconverteroutputstream.c +48 -0
  18. data/ext/gio2/gdatainputstream.c +341 -0
  19. data/ext/gio2/gdataoutputstream.c +202 -0
  20. data/ext/gio2/gdesktopappinfo.c +90 -0
  21. data/ext/gio2/gdrive.c +267 -0
  22. data/ext/gio2/gemblem.c +71 -0
  23. data/ext/gio2/gemblemedicon.c +63 -0
  24. data/ext/gio2/gfile.c +2058 -0
  25. data/ext/gio2/gfileattribute.c +263 -0
  26. data/ext/gio2/gfileattributematcher.c +90 -0
  27. data/ext/gio2/gfiledescriptorbased.c +42 -0
  28. data/ext/gio2/gfileenumerator.c +167 -0
  29. data/ext/gio2/gfileicon.c +46 -0
  30. data/ext/gio2/gfileinfo.c +641 -0
  31. data/ext/gio2/gfileinputstream.c +92 -0
  32. data/ext/gio2/gfileiostream.c +98 -0
  33. data/ext/gio2/gfilemonitor.c +63 -0
  34. data/ext/gio2/gfilenamecompleter.c +72 -0
  35. data/ext/gio2/gfileoutputstream.c +100 -0
  36. data/ext/gio2/gfilterinputstream.c +56 -0
  37. data/ext/gio2/gfilteroutputstream.c +56 -0
  38. data/ext/gio2/gicon.c +69 -0
  39. data/ext/gio2/ginetaddress.c +188 -0
  40. data/ext/gio2/ginetsocketaddress.c +54 -0
  41. data/ext/gio2/ginitable.c +195 -0
  42. data/ext/gio2/ginputstream.c +341 -0
  43. data/ext/gio2/gio2.c +120 -0
  44. data/ext/gio2/gio2.def +2 -0
  45. data/ext/gio2/gio2.h +343 -0
  46. data/ext/gio2/gioerror.c +67 -0
  47. data/ext/gio2/giomodule.c +63 -0
  48. data/ext/gio2/gioscheduler.c +195 -0
  49. data/ext/gio2/giostream.c +129 -0
  50. data/ext/gio2/gloadableicon.c +91 -0
  51. data/ext/gio2/gmemoryinputstream.c +65 -0
  52. data/ext/gio2/gmemoryoutputstream.c +65 -0
  53. data/ext/gio2/gmount.c +283 -0
  54. data/ext/gio2/gmountoperation.c +168 -0
  55. data/ext/gio2/gnetworkaddress.c +71 -0
  56. data/ext/gio2/gnetworkservice.c +64 -0
  57. data/ext/gio2/goutputstream.c +343 -0
  58. data/ext/gio2/gresolver.c +230 -0
  59. data/ext/gio2/gseekable.c +89 -0
  60. data/ext/gio2/gsimpleasyncresult.c +153 -0
  61. data/ext/gio2/gsocket.c +451 -0
  62. data/ext/gio2/gsocketaddress.c +45 -0
  63. data/ext/gio2/gsocketclient.c +273 -0
  64. data/ext/gio2/gsocketconnectable.c +97 -0
  65. data/ext/gio2/gsocketconnection.c +82 -0
  66. data/ext/gio2/gsocketcontrolmessage.c +82 -0
  67. data/ext/gio2/gsocketlistener.c +239 -0
  68. data/ext/gio2/gsocketservice.c +64 -0
  69. data/ext/gio2/gsrvtarget.c +77 -0
  70. data/ext/gio2/gtcpconnection.c +48 -0
  71. data/ext/gio2/gthemedicon.c +86 -0
  72. data/ext/gio2/gthreadedsocketservice.c +39 -0
  73. data/ext/gio2/gunixconnection.c +69 -0
  74. data/ext/gio2/gunixfdlist.c +112 -0
  75. data/ext/gio2/gunixfdmessage.c +81 -0
  76. data/ext/gio2/gunixinputstream.c +73 -0
  77. data/ext/gio2/gunixmounts.c +346 -0
  78. data/ext/gio2/gunixoutputstream.c +73 -0
  79. data/ext/gio2/gunixsocketaddress.c +79 -0
  80. data/ext/gio2/gvfs.c +84 -0
  81. data/ext/gio2/gvolume.c +191 -0
  82. data/ext/gio2/gvolumemonitor.c +77 -0
  83. data/ext/gio2/gzlibcompressor.c +47 -0
  84. data/ext/gio2/gzlibdecompressor.c +43 -0
  85. data/ext/gio2/util.c +323 -0
  86. data/extconf.rb +49 -0
  87. data/lib/1.8/gio2.so +0 -0
  88. data/lib/1.9/gio2.so +0 -0
  89. data/lib/gio2.rb +141 -0
  90. data/vendor/local/bin/envsubst.exe +0 -0
  91. data/vendor/local/bin/gettext.exe +0 -0
  92. data/vendor/local/bin/gettext.sh +123 -0
  93. data/vendor/local/bin/glib-genmarshal.exe +0 -0
  94. data/vendor/local/bin/glib-gettextize +188 -0
  95. data/vendor/local/bin/glib-mkenums +537 -0
  96. data/vendor/local/bin/gobject-query.exe +0 -0
  97. data/vendor/local/bin/gspawn-win32-helper-console.exe +0 -0
  98. data/vendor/local/bin/gspawn-win32-helper.exe +0 -0
  99. data/vendor/local/bin/intl.dll +0 -0
  100. data/vendor/local/bin/libasprintf-0.dll +0 -0
  101. data/vendor/local/bin/libgcc_s_dw2-1.dll +0 -0
  102. data/vendor/local/bin/libgio-2.0-0.dll +0 -0
  103. data/vendor/local/bin/libglib-2.0-0.dll +0 -0
  104. data/vendor/local/bin/libgmodule-2.0-0.dll +0 -0
  105. data/vendor/local/bin/libgobject-2.0-0.dll +0 -0
  106. data/vendor/local/bin/libgthread-2.0-0.dll +0 -0
  107. data/vendor/local/bin/ngettext.exe +0 -0
  108. data/vendor/local/include/autosprintf.h +66 -0
  109. data/vendor/local/include/glib-2.0/gio/gappinfo.h +236 -0
  110. data/vendor/local/include/glib-2.0/gio/gasyncinitable.h +119 -0
  111. data/vendor/local/include/glib-2.0/gio/gasyncresult.h +73 -0
  112. data/vendor/local/include/glib-2.0/gio/gbufferedinputstream.h +123 -0
  113. data/vendor/local/include/glib-2.0/gio/gbufferedoutputstream.h +81 -0
  114. data/vendor/local/include/glib-2.0/gio/gcancellable.h +103 -0
  115. data/vendor/local/include/glib-2.0/gio/gcharsetconverter.h +60 -0
  116. data/vendor/local/include/glib-2.0/gio/gcontenttype.h +57 -0
  117. data/vendor/local/include/glib-2.0/gio/gconverter.h +95 -0
  118. data/vendor/local/include/glib-2.0/gio/gconverterinputstream.h +79 -0
  119. data/vendor/local/include/glib-2.0/gio/gconverteroutputstream.h +79 -0
  120. data/vendor/local/include/glib-2.0/gio/gcredentials.h +76 -0
  121. data/vendor/local/include/glib-2.0/gio/gdatainputstream.h +150 -0
  122. data/vendor/local/include/glib-2.0/gio/gdataoutputstream.h +115 -0
  123. data/vendor/local/include/glib-2.0/gio/gdbusaddress.h +58 -0
  124. data/vendor/local/include/glib-2.0/gio/gdbusauthobserver.h +46 -0
  125. data/vendor/local/include/glib-2.0/gio/gdbusconnection.h +562 -0
  126. data/vendor/local/include/glib-2.0/gio/gdbuserror.h +100 -0
  127. data/vendor/local/include/glib-2.0/gio/gdbusintrospection.h +286 -0
  128. data/vendor/local/include/glib-2.0/gio/gdbusmessage.h +149 -0
  129. data/vendor/local/include/glib-2.0/gio/gdbusmethodinvocation.h +73 -0
  130. data/vendor/local/include/glib-2.0/gio/gdbusnameowning.h +112 -0
  131. data/vendor/local/include/glib-2.0/gio/gdbusnamewatching.h +94 -0
  132. data/vendor/local/include/glib-2.0/gio/gdbusproxy.h +167 -0
  133. data/vendor/local/include/glib-2.0/gio/gdbusserver.h +54 -0
  134. data/vendor/local/include/glib-2.0/gio/gdbusutils.h +44 -0
  135. data/vendor/local/include/glib-2.0/gio/gdrive.h +225 -0
  136. data/vendor/local/include/glib-2.0/gio/gemblem.h +58 -0
  137. data/vendor/local/include/glib-2.0/gio/gemblemedicon.h +62 -0
  138. data/vendor/local/include/glib-2.0/gio/gfile.h +1017 -0
  139. data/vendor/local/include/glib-2.0/gio/gfileattribute.h +77 -0
  140. data/vendor/local/include/glib-2.0/gio/gfileenumerator.h +132 -0
  141. data/vendor/local/include/glib-2.0/gio/gfileicon.h +56 -0
  142. data/vendor/local/include/glib-2.0/gio/gfileinfo.h +952 -0
  143. data/vendor/local/include/glib-2.0/gio/gfileinputstream.h +112 -0
  144. data/vendor/local/include/glib-2.0/gio/gfileiostream.h +118 -0
  145. data/vendor/local/include/glib-2.0/gio/gfilemonitor.h +95 -0
  146. data/vendor/local/include/glib-2.0/gio/gfilenamecompleter.h +76 -0
  147. data/vendor/local/include/glib-2.0/gio/gfileoutputstream.h +119 -0
  148. data/vendor/local/include/glib-2.0/gio/gfilterinputstream.h +76 -0
  149. data/vendor/local/include/glib-2.0/gio/gfilteroutputstream.h +76 -0
  150. data/vendor/local/include/glib-2.0/gio/gicon.h +91 -0
  151. data/vendor/local/include/glib-2.0/gio/ginetaddress.h +103 -0
  152. data/vendor/local/include/glib-2.0/gio/ginetsocketaddress.h +69 -0
  153. data/vendor/local/include/glib-2.0/gio/ginitable.h +96 -0
  154. data/vendor/local/include/glib-2.0/gio/ginputstream.h +172 -0
  155. data/vendor/local/include/glib-2.0/gio/gio.h +122 -0
  156. data/vendor/local/include/glib-2.0/gio/gioenums.h +1221 -0
  157. data/vendor/local/include/glib-2.0/gio/gioenumtypes.h +121 -0
  158. data/vendor/local/include/glib-2.0/gio/gioerror.h +52 -0
  159. data/vendor/local/include/glib-2.0/gio/giomodule.h +132 -0
  160. data/vendor/local/include/glib-2.0/gio/gioscheduler.h +52 -0
  161. data/vendor/local/include/glib-2.0/gio/giostream.h +112 -0
  162. data/vendor/local/include/glib-2.0/gio/giotypes.h +375 -0
  163. data/vendor/local/include/glib-2.0/gio/gloadableicon.h +97 -0
  164. data/vendor/local/include/glib-2.0/gio/gmemoryinputstream.h +82 -0
  165. data/vendor/local/include/glib-2.0/gio/gmemoryoutputstream.h +98 -0
  166. data/vendor/local/include/glib-2.0/gio/gmount.h +242 -0
  167. data/vendor/local/include/glib-2.0/gio/gmountoperation.h +123 -0
  168. data/vendor/local/include/glib-2.0/gio/gnativevolumemonitor.h +62 -0
  169. data/vendor/local/include/glib-2.0/gio/gnetworkaddress.h +73 -0
  170. data/vendor/local/include/glib-2.0/gio/gnetworkservice.h +71 -0
  171. data/vendor/local/include/glib-2.0/gio/goutputstream.h +207 -0
  172. data/vendor/local/include/glib-2.0/gio/gpermission.h +118 -0
  173. data/vendor/local/include/glib-2.0/gio/gproxy.h +123 -0
  174. data/vendor/local/include/glib-2.0/gio/gproxyaddress.h +76 -0
  175. data/vendor/local/include/glib-2.0/gio/gproxyaddressenumerator.h +75 -0
  176. data/vendor/local/include/glib-2.0/gio/gproxyresolver.h +96 -0
  177. data/vendor/local/include/glib-2.0/gio/gresolver.h +167 -0
  178. data/vendor/local/include/glib-2.0/gio/gseekable.h +99 -0
  179. data/vendor/local/include/glib-2.0/gio/gsettings.h +258 -0
  180. data/vendor/local/include/glib-2.0/gio/gsettingsbackend.h +138 -0
  181. data/vendor/local/include/glib-2.0/gio/gsimpleasyncresult.h +125 -0
  182. data/vendor/local/include/glib-2.0/gio/gsimplepermission.h +45 -0
  183. data/vendor/local/include/glib-2.0/gio/gsocket.h +194 -0
  184. data/vendor/local/include/glib-2.0/gio/gsocketaddress.h +79 -0
  185. data/vendor/local/include/glib-2.0/gio/gsocketaddressenumerator.h +89 -0
  186. data/vendor/local/include/glib-2.0/gio/gsocketclient.h +152 -0
  187. data/vendor/local/include/glib-2.0/gio/gsocketconnectable.h +74 -0
  188. data/vendor/local/include/glib-2.0/gio/gsocketconnection.h +91 -0
  189. data/vendor/local/include/glib-2.0/gio/gsocketcontrolmessage.h +105 -0
  190. data/vendor/local/include/glib-2.0/gio/gsocketlistener.h +138 -0
  191. data/vendor/local/include/glib-2.0/gio/gsocketservice.h +88 -0
  192. data/vendor/local/include/glib-2.0/gio/gsrvtarget.h +52 -0
  193. data/vendor/local/include/glib-2.0/gio/gtcpconnection.h +68 -0
  194. data/vendor/local/include/glib-2.0/gio/gthemedicon.h +63 -0
  195. data/vendor/local/include/glib-2.0/gio/gthreadedsocketservice.h +81 -0
  196. data/vendor/local/include/glib-2.0/gio/gvfs.h +125 -0
  197. data/vendor/local/include/glib-2.0/gio/gvolume.h +211 -0
  198. data/vendor/local/include/glib-2.0/gio/gvolumemonitor.h +150 -0
  199. data/vendor/local/include/glib-2.0/gio/gzlibcompressor.h +60 -0
  200. data/vendor/local/include/glib-2.0/gio/gzlibdecompressor.h +57 -0
  201. data/vendor/local/include/glib-2.0/glib-object.h +42 -0
  202. data/vendor/local/include/glib-2.0/glib.h +99 -0
  203. data/vendor/local/include/glib-2.0/glib/galloca.h +110 -0
  204. data/vendor/local/include/glib-2.0/glib/garray.h +179 -0
  205. data/vendor/local/include/glib-2.0/glib/gasyncqueue.h +120 -0
  206. data/vendor/local/include/glib-2.0/glib/gatomic.h +105 -0
  207. data/vendor/local/include/glib-2.0/glib/gbacktrace.h +68 -0
  208. data/vendor/local/include/glib-2.0/glib/gbase64.h +57 -0
  209. data/vendor/local/include/glib-2.0/glib/gbitlock.h +43 -0
  210. data/vendor/local/include/glib-2.0/glib/gbookmarkfile.h +215 -0
  211. data/vendor/local/include/glib-2.0/glib/gcache.h +69 -0
  212. data/vendor/local/include/glib-2.0/glib/gchecksum.h +86 -0
  213. data/vendor/local/include/glib-2.0/glib/gcompletion.h +81 -0
  214. data/vendor/local/include/glib-2.0/glib/gconvert.h +162 -0
  215. data/vendor/local/include/glib-2.0/glib/gdataset.h +122 -0
  216. data/vendor/local/include/glib-2.0/glib/gdate.h +263 -0
  217. data/vendor/local/include/glib-2.0/glib/gdatetime.h +217 -0
  218. data/vendor/local/include/glib-2.0/glib/gdir.h +52 -0
  219. data/vendor/local/include/glib-2.0/glib/gerror.h +98 -0
  220. data/vendor/local/include/glib-2.0/glib/gfileutils.h +128 -0
  221. data/vendor/local/include/glib-2.0/glib/ghash.h +166 -0
  222. data/vendor/local/include/glib-2.0/glib/ghook.h +181 -0
  223. data/vendor/local/include/glib-2.0/glib/ghostutils.h +40 -0
  224. data/vendor/local/include/glib-2.0/glib/gi18n-lib.h +38 -0
  225. data/vendor/local/include/glib-2.0/glib/gi18n.h +34 -0
  226. data/vendor/local/include/glib-2.0/glib/giochannel.h +366 -0
  227. data/vendor/local/include/glib-2.0/glib/gkeyfile.h +266 -0
  228. data/vendor/local/include/glib-2.0/glib/glist.h +120 -0
  229. data/vendor/local/include/glib-2.0/glib/gmacros.h +284 -0
  230. data/vendor/local/include/glib-2.0/glib/gmain.h +531 -0
  231. data/vendor/local/include/glib-2.0/glib/gmappedfile.h +49 -0
  232. data/vendor/local/include/glib-2.0/glib/gmarkup.h +163 -0
  233. data/vendor/local/include/glib-2.0/glib/gmem.h +309 -0
  234. data/vendor/local/include/glib-2.0/glib/gmessages.h +343 -0
  235. data/vendor/local/include/glib-2.0/glib/gnode.h +290 -0
  236. data/vendor/local/include/glib-2.0/glib/goption.h +370 -0
  237. data/vendor/local/include/glib-2.0/glib/gpattern.h +49 -0
  238. data/vendor/local/include/glib-2.0/glib/gpoll.h +117 -0
  239. data/vendor/local/include/glib-2.0/glib/gprimes.h +51 -0
  240. data/vendor/local/include/glib-2.0/glib/gprintf.h +52 -0
  241. data/vendor/local/include/glib-2.0/glib/gqsort.h +46 -0
  242. data/vendor/local/include/glib-2.0/glib/gquark.h +52 -0
  243. data/vendor/local/include/glib-2.0/glib/gqueue.h +127 -0
  244. data/vendor/local/include/glib-2.0/glib/grand.h +85 -0
  245. data/vendor/local/include/glib-2.0/glib/gregex.h +471 -0
  246. data/vendor/local/include/glib-2.0/glib/grel.h +101 -0
  247. data/vendor/local/include/glib-2.0/glib/gscanner.h +278 -0
  248. data/vendor/local/include/glib-2.0/glib/gsequence.h +128 -0
  249. data/vendor/local/include/glib-2.0/glib/gshell.h +55 -0
  250. data/vendor/local/include/glib-2.0/glib/gslice.h +86 -0
  251. data/vendor/local/include/glib-2.0/glib/gslist.h +114 -0
  252. data/vendor/local/include/glib-2.0/glib/gspawn.h +139 -0
  253. data/vendor/local/include/glib-2.0/glib/gstdio.h +147 -0
  254. data/vendor/local/include/glib-2.0/glib/gstrfuncs.h +269 -0
  255. data/vendor/local/include/glib-2.0/glib/gstring.h +178 -0
  256. data/vendor/local/include/glib-2.0/glib/gtestutils.h +297 -0
  257. data/vendor/local/include/glib-2.0/glib/gthread.h +407 -0
  258. data/vendor/local/include/glib-2.0/glib/gthreadpool.h +114 -0
  259. data/vendor/local/include/glib-2.0/glib/gtimer.h +65 -0
  260. data/vendor/local/include/glib-2.0/glib/gtimezone.h +44 -0
  261. data/vendor/local/include/glib-2.0/glib/gtree.h +91 -0
  262. data/vendor/local/include/glib-2.0/glib/gtypes.h +451 -0
  263. data/vendor/local/include/glib-2.0/glib/gunicode.h +421 -0
  264. data/vendor/local/include/glib-2.0/glib/gurifuncs.h +81 -0
  265. data/vendor/local/include/glib-2.0/glib/gutils.h +490 -0
  266. data/vendor/local/include/glib-2.0/glib/gvariant.h +248 -0
  267. data/vendor/local/include/glib-2.0/glib/gvarianttype.h +334 -0
  268. data/vendor/local/include/glib-2.0/glib/gwin32.h +114 -0
  269. data/vendor/local/include/glib-2.0/gmodule.h +101 -0
  270. data/vendor/local/include/glib-2.0/gobject/gbinding.h +136 -0
  271. data/vendor/local/include/glib-2.0/gobject/gboxed.h +248 -0
  272. data/vendor/local/include/glib-2.0/gobject/gclosure.h +251 -0
  273. data/vendor/local/include/glib-2.0/gobject/genums.h +261 -0
  274. data/vendor/local/include/glib-2.0/gobject/gmarshal.h +186 -0
  275. data/vendor/local/include/glib-2.0/gobject/gobject.h +567 -0
  276. data/vendor/local/include/glib-2.0/gobject/gobjectnotifyqueue.c +193 -0
  277. data/vendor/local/include/glib-2.0/gobject/gparam.h +415 -0
  278. data/vendor/local/include/glib-2.0/gobject/gparamspecs.h +1137 -0
  279. data/vendor/local/include/glib-2.0/gobject/gsignal.h +509 -0
  280. data/vendor/local/include/glib-2.0/gobject/gsourceclosure.h +51 -0
  281. data/vendor/local/include/glib-2.0/gobject/gtype.h +1736 -0
  282. data/vendor/local/include/glib-2.0/gobject/gtypemodule.h +263 -0
  283. data/vendor/local/include/glib-2.0/gobject/gtypeplugin.h +134 -0
  284. data/vendor/local/include/glib-2.0/gobject/gvalue.h +159 -0
  285. data/vendor/local/include/glib-2.0/gobject/gvaluearray.h +77 -0
  286. data/vendor/local/include/glib-2.0/gobject/gvaluecollector.h +227 -0
  287. data/vendor/local/include/glib-2.0/gobject/gvaluetypes.h +260 -0
  288. data/vendor/local/include/libintl.h +464 -0
  289. data/vendor/local/lib/GNU.Gettext.dll +0 -0
  290. data/vendor/local/lib/gio-2.0.def +1143 -0
  291. data/vendor/local/lib/gio-2.0.lib +0 -0
  292. data/vendor/local/lib/glib-2.0.def +1452 -0
  293. data/vendor/local/lib/glib-2.0.lib +0 -0
  294. data/vendor/local/lib/glib-2.0/include/glibconfig.h +284 -0
  295. data/vendor/local/lib/gmodule-2.0.def +11 -0
  296. data/vendor/local/lib/gmodule-2.0.lib +0 -0
  297. data/vendor/local/lib/gobject-2.0.def +370 -0
  298. data/vendor/local/lib/gobject-2.0.lib +0 -0
  299. data/vendor/local/lib/gthread-2.0.def +3 -0
  300. data/vendor/local/lib/gthread-2.0.lib +0 -0
  301. data/vendor/local/lib/intl.lib +0 -0
  302. data/vendor/local/lib/libasprintf.dll.a +0 -0
  303. data/vendor/local/lib/libgio-2.0.dll.a +0 -0
  304. data/vendor/local/lib/libglib-2.0.dll.a +0 -0
  305. data/vendor/local/lib/libgmodule-2.0.dll.a +0 -0
  306. data/vendor/local/lib/libgobject-2.0.dll.a +0 -0
  307. data/vendor/local/lib/libgthread-2.0.dll.a +0 -0
  308. data/vendor/local/lib/libintl.def +31 -0
  309. data/vendor/local/lib/libintl.dll.a +0 -0
  310. data/vendor/local/lib/pkgconfig/gio-2.0.pc +15 -0
  311. data/vendor/local/lib/pkgconfig/gio-windows-2.0.pc +11 -0
  312. data/vendor/local/lib/pkgconfig/glib-2.0.pc +15 -0
  313. data/vendor/local/lib/pkgconfig/gmodule-2.0.pc +14 -0
  314. data/vendor/local/lib/pkgconfig/gmodule-no-export-2.0.pc +14 -0
  315. data/vendor/local/lib/pkgconfig/gobject-2.0.pc +11 -0
  316. data/vendor/local/lib/pkgconfig/gthread-2.0.pc +11 -0
  317. data/vendor/local/manifest/gettext-runtime-dev_0.18.1.1-2_win32.mft +81 -0
  318. data/vendor/local/manifest/gettext-runtime_0.18.1.1-2_win32.mft +3 -0
  319. data/vendor/local/manifest/glib-dev_2.24.2-2_win32.mft +491 -0
  320. data/vendor/local/manifest/glib-dev_2.26.0-2_win32.mft +570 -0
  321. data/vendor/local/manifest/glib_2.24.2-2_win32.mft +101 -0
  322. data/vendor/local/manifest/glib_2.26.0-2_win32.mft +102 -0
  323. data/vendor/local/share/aclocal/glib-2.0.m4 +211 -0
  324. data/vendor/local/share/aclocal/glib-gettext.m4 +432 -0
  325. data/vendor/local/share/doc/gettext/bind_textdomain_codeset.3.html +165 -0
  326. data/vendor/local/share/doc/gettext/bindtextdomain.3.html +160 -0
  327. data/vendor/local/share/doc/gettext/csharpdoc/GNU_Gettext.html +8 -0
  328. data/vendor/local/share/doc/gettext/csharpdoc/GNU_Gettext_GettextResourceManager.html +305 -0
  329. data/vendor/local/share/doc/gettext/csharpdoc/GNU_Gettext_GettextResourceSet.html +356 -0
  330. data/vendor/local/share/doc/gettext/csharpdoc/begin.html +11 -0
  331. data/vendor/local/share/doc/gettext/csharpdoc/index.html +10 -0
  332. data/vendor/local/share/doc/gettext/csharpdoc/namespaces.html +6 -0
  333. data/vendor/local/share/doc/gettext/envsubst.1.html +213 -0
  334. data/vendor/local/share/doc/gettext/gettext.1.html +266 -0
  335. data/vendor/local/share/doc/gettext/gettext.3.html +186 -0
  336. data/vendor/local/share/doc/gettext/ngettext.1.html +280 -0
  337. data/vendor/local/share/doc/gettext/ngettext.3.html +143 -0
  338. data/vendor/local/share/doc/gettext/textdomain.3.html +150 -0
  339. data/vendor/local/share/doc/glib-2.24.2/COPYING +482 -0
  340. data/vendor/local/share/doc/glib-2.26.0/COPYING +482 -0
  341. data/vendor/local/share/doc/glib-dev-2.24.2/COPYING +482 -0
  342. data/vendor/local/share/doc/glib-dev-2.26.0/COPYING +482 -0
  343. data/vendor/local/share/doc/libasprintf/autosprintf_all.html +174 -0
  344. data/vendor/local/share/glib-2.0/gdb/glib.py +249 -0
  345. data/vendor/local/share/glib-2.0/gdb/gobject.py +305 -0
  346. data/vendor/local/share/glib-2.0/gettext/mkinstalldirs +111 -0
  347. data/vendor/local/share/glib-2.0/gettext/po/Makefile.in.in +279 -0
  348. data/vendor/local/share/glib-2.0/schemas/gschema.dtd +60 -0
  349. data/vendor/local/share/gtk-doc/html/gio/GAppInfo.html +1403 -0
  350. data/vendor/local/share/gtk-doc/html/gio/GAsyncInitable.html +733 -0
  351. data/vendor/local/share/gtk-doc/html/gio/GAsyncResult.html +343 -0
  352. data/vendor/local/share/gtk-doc/html/gio/GBufferedInputStream.html +563 -0
  353. data/vendor/local/share/gtk-doc/html/gio/GBufferedOutputStream.html +291 -0
  354. data/vendor/local/share/gtk-doc/html/gio/GCancellable.html +620 -0
  355. data/vendor/local/share/gtk-doc/html/gio/GCharsetConverter.html +245 -0
  356. data/vendor/local/share/gtk-doc/html/gio/GConverter.html +423 -0
  357. data/vendor/local/share/gtk-doc/html/gio/GCredentials.html +398 -0
  358. data/vendor/local/share/gtk-doc/html/gio/GDBusAuthObserver.html +254 -0
  359. data/vendor/local/share/gtk-doc/html/gio/GDBusConnection.html +6211 -0
  360. data/vendor/local/share/gtk-doc/html/gio/GDBusMessage.html +1833 -0
  361. data/vendor/local/share/gtk-doc/html/gio/GDBusMethodInvocation.html +618 -0
  362. data/vendor/local/share/gtk-doc/html/gio/GDBusProxy.html +2050 -0
  363. data/vendor/local/share/gtk-doc/html/gio/GDBusServer.html +1124 -0
  364. data/vendor/local/share/gtk-doc/html/gio/GDataInputStream.html +1215 -0
  365. data/vendor/local/share/gtk-doc/html/gio/GDataOutputStream.html +540 -0
  366. data/vendor/local/share/gtk-doc/html/gio/GDrive.html +1416 -0
  367. data/vendor/local/share/gtk-doc/html/gio/GEmblem.html +272 -0
  368. data/vendor/local/share/gtk-doc/html/gio/GEmblemedIcon.html +206 -0
  369. data/vendor/local/share/gtk-doc/html/gio/GFile.html +7462 -0
  370. data/vendor/local/share/gtk-doc/html/gio/GFileDescriptorBased.html +120 -0
  371. data/vendor/local/share/gtk-doc/html/gio/GFileEnumerator.html +516 -0
  372. data/vendor/local/share/gtk-doc/html/gio/GFileIOStream.html +312 -0
  373. data/vendor/local/share/gtk-doc/html/gio/GFileIcon.html +155 -0
  374. data/vendor/local/share/gtk-doc/html/gio/GFileInfo.html +3144 -0
  375. data/vendor/local/share/gtk-doc/html/gio/GFileInputStream.html +262 -0
  376. data/vendor/local/share/gtk-doc/html/gio/GFileMonitor.html +353 -0
  377. data/vendor/local/share/gtk-doc/html/gio/GFileOutputStream.html +301 -0
  378. data/vendor/local/share/gtk-doc/html/gio/GFilenameCompleter.html +217 -0
  379. data/vendor/local/share/gtk-doc/html/gio/GFilterInputStream.html +188 -0
  380. data/vendor/local/share/gtk-doc/html/gio/GFilterOutputStream.html +189 -0
  381. data/vendor/local/share/gtk-doc/html/gio/GIOModule.html +261 -0
  382. data/vendor/local/share/gtk-doc/html/gio/GIOStream.html +479 -0
  383. data/vendor/local/share/gtk-doc/html/gio/GIcon.html +331 -0
  384. data/vendor/local/share/gtk-doc/html/gio/GInetAddress.html +717 -0
  385. data/vendor/local/share/gtk-doc/html/gio/GInetSocketAddress.html +196 -0
  386. data/vendor/local/share/gtk-doc/html/gio/GInitable.html +388 -0
  387. data/vendor/local/share/gtk-doc/html/gio/GInputStream.html +808 -0
  388. data/vendor/local/share/gtk-doc/html/gio/GLoadableIcon.html +301 -0
  389. data/vendor/local/share/gtk-doc/html/gio/GMemoryInputStream.html +185 -0
  390. data/vendor/local/share/gtk-doc/html/gio/GMemoryOutputStream.html +393 -0
  391. data/vendor/local/share/gtk-doc/html/gio/GMount.html +1465 -0
  392. data/vendor/local/share/gtk-doc/html/gio/GMountOperation.html +848 -0
  393. data/vendor/local/share/gtk-doc/html/gio/GNetworkAddress.html +343 -0
  394. data/vendor/local/share/gtk-doc/html/gio/GNetworkService.html +311 -0
  395. data/vendor/local/share/gtk-doc/html/gio/GOutputStream.html +1012 -0
  396. data/vendor/local/share/gtk-doc/html/gio/GPermission.html +560 -0
  397. data/vendor/local/share/gtk-doc/html/gio/GProxy.html +312 -0
  398. data/vendor/local/share/gtk-doc/html/gio/GProxyAddress.html +348 -0
  399. data/vendor/local/share/gtk-doc/html/gio/GProxyResolver.html +301 -0
  400. data/vendor/local/share/gtk-doc/html/gio/GResolver.html +787 -0
  401. data/vendor/local/share/gtk-doc/html/gio/GSeekable.html +350 -0
  402. data/vendor/local/share/gtk-doc/html/gio/GSettings.html +2424 -0
  403. data/vendor/local/share/gtk-doc/html/gio/GSettingsBackend.html +609 -0
  404. data/vendor/local/share/gtk-doc/html/gio/GSimpleAsyncResult.html +1193 -0
  405. data/vendor/local/share/gtk-doc/html/gio/GSimplePermission.html +107 -0
  406. data/vendor/local/share/gtk-doc/html/gio/GSocket.html +2438 -0
  407. data/vendor/local/share/gtk-doc/html/gio/GSocketAddress.html +297 -0
  408. data/vendor/local/share/gtk-doc/html/gio/GSocketClient.html +1292 -0
  409. data/vendor/local/share/gtk-doc/html/gio/GSocketConnectable.html +513 -0
  410. data/vendor/local/share/gtk-doc/html/gio/GSocketConnection.html +337 -0
  411. data/vendor/local/share/gtk-doc/html/gio/GSocketControlMessage.html +275 -0
  412. data/vendor/local/share/gtk-doc/html/gio/GSocketListener.html +745 -0
  413. data/vendor/local/share/gtk-doc/html/gio/GSocketService.html +258 -0
  414. data/vendor/local/share/gtk-doc/html/gio/GTcpConnection.html +165 -0
  415. data/vendor/local/share/gtk-doc/html/gio/GThemedIcon.html +377 -0
  416. data/vendor/local/share/gtk-doc/html/gio/GThreadedSocketService.html +197 -0
  417. data/vendor/local/share/gtk-doc/html/gio/GUnixConnection.html +298 -0
  418. data/vendor/local/share/gtk-doc/html/gio/GUnixCredentialsMessage.html +222 -0
  419. data/vendor/local/share/gtk-doc/html/gio/GUnixFDList.html +389 -0
  420. data/vendor/local/share/gtk-doc/html/gio/GUnixFDMessage.html +288 -0
  421. data/vendor/local/share/gtk-doc/html/gio/GUnixInputStream.html +237 -0
  422. data/vendor/local/share/gtk-doc/html/gio/GUnixOutputStream.html +237 -0
  423. data/vendor/local/share/gtk-doc/html/gio/GUnixSocketAddress.html +491 -0
  424. data/vendor/local/share/gtk-doc/html/gio/GVfs.html +274 -0
  425. data/vendor/local/share/gtk-doc/html/gio/GVolume.html +1028 -0
  426. data/vendor/local/share/gtk-doc/html/gio/GVolumeMonitor.html +705 -0
  427. data/vendor/local/share/gtk-doc/html/gio/GZlibCompressor.html +252 -0
  428. data/vendor/local/share/gtk-doc/html/gio/GZlibDecompressor.html +170 -0
  429. data/vendor/local/share/gtk-doc/html/gio/annotation-glossary.html +65 -0
  430. data/vendor/local/share/gtk-doc/html/gio/api-index-2-18.html +153 -0
  431. data/vendor/local/share/gtk-doc/html/gio/api-index-2-20.html +155 -0
  432. data/vendor/local/share/gtk-doc/html/gio/api-index-2-22.html +1084 -0
  433. data/vendor/local/share/gtk-doc/html/gio/api-index-2-24.html +223 -0
  434. data/vendor/local/share/gtk-doc/html/gio/api-index-2-26.html +1598 -0
  435. data/vendor/local/share/gtk-doc/html/gio/api-index-deprecated.html +112 -0
  436. data/vendor/local/share/gtk-doc/html/gio/api-index-full.html +6250 -0
  437. data/vendor/local/share/gtk-doc/html/gio/async.html +44 -0
  438. data/vendor/local/share/gtk-doc/html/gio/ch01.html +207 -0
  439. data/vendor/local/share/gtk-doc/html/gio/ch02.html +50 -0
  440. data/vendor/local/share/gtk-doc/html/gio/ch03.html +180 -0
  441. data/vendor/local/share/gtk-doc/html/gio/ch19.html +75 -0
  442. data/vendor/local/share/gtk-doc/html/gio/ch20.html +217 -0
  443. data/vendor/local/share/gtk-doc/html/gio/ch20s02.html +41 -0
  444. data/vendor/local/share/gtk-doc/html/gio/ch20s03.html +39 -0
  445. data/vendor/local/share/gtk-doc/html/gio/ch24.html +75 -0
  446. data/vendor/local/share/gtk-doc/html/gio/ch25.html +217 -0
  447. data/vendor/local/share/gtk-doc/html/gio/ch25s02.html +41 -0
  448. data/vendor/local/share/gtk-doc/html/gio/ch25s03.html +39 -0
  449. data/vendor/local/share/gtk-doc/html/gio/ch26.html +57 -0
  450. data/vendor/local/share/gtk-doc/html/gio/ch26s02.html +59 -0
  451. data/vendor/local/share/gtk-doc/html/gio/ch26s03.html +159 -0
  452. data/vendor/local/share/gtk-doc/html/gio/ch26s04.html +46 -0
  453. data/vendor/local/share/gtk-doc/html/gio/ch26s05.html +48 -0
  454. data/vendor/local/share/gtk-doc/html/gio/ch26s06.html +277 -0
  455. data/vendor/local/share/gtk-doc/html/gio/ch26s07.html +95 -0
  456. data/vendor/local/share/gtk-doc/html/gio/ch27.html +70 -0
  457. data/vendor/local/share/gtk-doc/html/gio/ch27s02.html +130 -0
  458. data/vendor/local/share/gtk-doc/html/gio/ch27s03.html +202 -0
  459. data/vendor/local/share/gtk-doc/html/gio/ch27s04.html +96 -0
  460. data/vendor/local/share/gtk-doc/html/gio/ch27s05.html +823 -0
  461. data/vendor/local/share/gtk-doc/html/gio/ch27s06.html +828 -0
  462. data/vendor/local/share/gtk-doc/html/gio/conversion.html +44 -0
  463. data/vendor/local/share/gtk-doc/html/gio/extending-gio.html +109 -0
  464. data/vendor/local/share/gtk-doc/html/gio/extending.html +41 -0
  465. data/vendor/local/share/gtk-doc/html/gio/failable_initialization.html +38 -0
  466. data/vendor/local/share/gtk-doc/html/gio/file_mon.html +33 -0
  467. data/vendor/local/share/gtk-doc/html/gio/file_ops.html +50 -0
  468. data/vendor/local/share/gtk-doc/html/gio/gdbus-convenience.html +41 -0
  469. data/vendor/local/share/gtk-doc/html/gio/gdbus-lowlevel.html +59 -0
  470. data/vendor/local/share/gtk-doc/html/gio/gdbus.html +243 -0
  471. data/vendor/local/share/gtk-doc/html/gio/gio-D-Bus-Addresses.html +316 -0
  472. data/vendor/local/share/gtk-doc/html/gio/gio-D-Bus-Introspection-Data.html +1117 -0
  473. data/vendor/local/share/gtk-doc/html/gio/gio-D-Bus-Utilities.html +216 -0
  474. data/vendor/local/share/gtk-doc/html/gio/gio-Desktop-file-based-GAppInfo.html +339 -0
  475. data/vendor/local/share/gtk-doc/html/gio/gio-Extension-Points.html +473 -0
  476. data/vendor/local/share/gtk-doc/html/gio/gio-GContentType.html +391 -0
  477. data/vendor/local/share/gtk-doc/html/gio/gio-GConverterInputstream.html +159 -0
  478. data/vendor/local/share/gtk-doc/html/gio/gio-GConverterOutputstream.html +159 -0
  479. data/vendor/local/share/gtk-doc/html/gio/gio-GDBusError.html +908 -0
  480. data/vendor/local/share/gtk-doc/html/gio/gio-GFileAttribute.html +933 -0
  481. data/vendor/local/share/gtk-doc/html/gio/gio-GIOError.html +409 -0
  482. data/vendor/local/share/gtk-doc/html/gio/gio-GIOScheduler.html +297 -0
  483. data/vendor/local/share/gtk-doc/html/gio/gio-GSrvTarget.html +313 -0
  484. data/vendor/local/share/gtk-doc/html/gio/gio-Owning-Bus-Names.html +736 -0
  485. data/vendor/local/share/gtk-doc/html/gio/gio-Unix-Mounts.html +909 -0
  486. data/vendor/local/share/gtk-doc/html/gio/gio-Watching-Bus-Names.html +666 -0
  487. data/vendor/local/share/gtk-doc/html/gio/gio-hierarchy.html +123 -0
  488. data/vendor/local/share/gtk-doc/html/gio/gio-querymodules.html +53 -0
  489. data/vendor/local/share/gtk-doc/html/gio/gio.devhelp +1736 -0
  490. data/vendor/local/share/gtk-doc/html/gio/gio.devhelp2 +2006 -0
  491. data/vendor/local/share/gtk-doc/html/gio/glib-compile-schemas.html +102 -0
  492. data/vendor/local/share/gtk-doc/html/gio/gvfs-overview.png +0 -0
  493. data/vendor/local/share/gtk-doc/html/gio/highlevel-socket.html +53 -0
  494. data/vendor/local/share/gtk-doc/html/gio/home.png +0 -0
  495. data/vendor/local/share/gtk-doc/html/gio/icons.html +50 -0
  496. data/vendor/local/share/gtk-doc/html/gio/index.html +435 -0
  497. data/vendor/local/share/gtk-doc/html/gio/index.sgml +2513 -0
  498. data/vendor/local/share/gtk-doc/html/gio/left.png +0 -0
  499. data/vendor/local/share/gtk-doc/html/gio/migrating.html +62 -0
  500. data/vendor/local/share/gtk-doc/html/gio/networking.html +69 -0
  501. data/vendor/local/share/gtk-doc/html/gio/permissions.html +39 -0
  502. data/vendor/local/share/gtk-doc/html/gio/pt01.html +39 -0
  503. data/vendor/local/share/gtk-doc/html/gio/pt02.html +390 -0
  504. data/vendor/local/share/gtk-doc/html/gio/resolver.html +50 -0
  505. data/vendor/local/share/gtk-doc/html/gio/right.png +0 -0
  506. data/vendor/local/share/gtk-doc/html/gio/settings.html +38 -0
  507. data/vendor/local/share/gtk-doc/html/gio/streaming.html +92 -0
  508. data/vendor/local/share/gtk-doc/html/gio/style.css +265 -0
  509. data/vendor/local/share/gtk-doc/html/gio/tools.html +44 -0
  510. data/vendor/local/share/gtk-doc/html/gio/types.html +41 -0
  511. data/vendor/local/share/gtk-doc/html/gio/up.png +0 -0
  512. data/vendor/local/share/gtk-doc/html/gio/utils.html +33 -0
  513. data/vendor/local/share/gtk-doc/html/gio/volume_mon.html +47 -0
  514. data/vendor/local/share/gtk-doc/html/glib/annotation-glossary.html +77 -0
  515. data/vendor/local/share/gtk-doc/html/glib/api-index-2-10.html +180 -0
  516. data/vendor/local/share/gtk-doc/html/glib/api-index-2-12.html +312 -0
  517. data/vendor/local/share/gtk-doc/html/glib/api-index-2-14.html +559 -0
  518. data/vendor/local/share/gtk-doc/html/glib/api-index-2-16.html +362 -0
  519. data/vendor/local/share/gtk-doc/html/glib/api-index-2-18.html +102 -0
  520. data/vendor/local/share/gtk-doc/html/glib/api-index-2-2.html +124 -0
  521. data/vendor/local/share/gtk-doc/html/glib/api-index-2-20.html +83 -0
  522. data/vendor/local/share/gtk-doc/html/glib/api-index-2-22.html +194 -0
  523. data/vendor/local/share/gtk-doc/html/glib/api-index-2-24.html +420 -0
  524. data/vendor/local/share/gtk-doc/html/glib/api-index-2-26.html +359 -0
  525. data/vendor/local/share/gtk-doc/html/glib/api-index-2-4.html +396 -0
  526. data/vendor/local/share/gtk-doc/html/glib/api-index-2-6.html +417 -0
  527. data/vendor/local/share/gtk-doc/html/glib/api-index-2-8.html +158 -0
  528. data/vendor/local/share/gtk-doc/html/glib/api-index-deprecated.html +419 -0
  529. data/vendor/local/share/gtk-doc/html/glib/api-index-full.html +8214 -0
  530. data/vendor/local/share/gtk-doc/html/glib/file-name-encodings.png +0 -0
  531. data/vendor/local/share/gtk-doc/html/glib/glib-Arrays.html +893 -0
  532. data/vendor/local/share/gtk-doc/html/glib/glib-Asynchronous-Queues.html +818 -0
  533. data/vendor/local/share/gtk-doc/html/glib/glib-Atomic-Operations.html +414 -0
  534. data/vendor/local/share/gtk-doc/html/glib/glib-Automatic-String-Completion.html +466 -0
  535. data/vendor/local/share/gtk-doc/html/glib/glib-Balanced-Binary-Trees.html +802 -0
  536. data/vendor/local/share/gtk-doc/html/glib/glib-Base64-Encoding.html +372 -0
  537. data/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html +500 -0
  538. data/vendor/local/share/gtk-doc/html/glib/glib-Bookmark-file-parser.html +2056 -0
  539. data/vendor/local/share/gtk-doc/html/glib/glib-Byte-Arrays.html +560 -0
  540. data/vendor/local/share/gtk-doc/html/glib/glib-Byte-Order-Macros.html +1686 -0
  541. data/vendor/local/share/gtk-doc/html/glib/glib-Caches.html +398 -0
  542. data/vendor/local/share/gtk-doc/html/glib/glib-Character-Set-Conversion.html +1094 -0
  543. data/vendor/local/share/gtk-doc/html/glib/glib-Commandline-option-parser.html +1671 -0
  544. data/vendor/local/share/gtk-doc/html/glib/glib-Data-Checksums.html +460 -0
  545. data/vendor/local/share/gtk-doc/html/glib/glib-Datasets.html +528 -0
  546. data/vendor/local/share/gtk-doc/html/glib/glib-Date-and-Time-Functions.html +2045 -0
  547. data/vendor/local/share/gtk-doc/html/glib/glib-Double-ended-Queues.html +1278 -0
  548. data/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html +1406 -0
  549. data/vendor/local/share/gtk-doc/html/glib/glib-Dynamic-Loading-of-Modules.html +548 -0
  550. data/vendor/local/share/gtk-doc/html/glib/glib-Error-Reporting.html +1026 -0
  551. data/vendor/local/share/gtk-doc/html/glib/glib-File-Utilities.html +1852 -0
  552. data/vendor/local/share/gtk-doc/html/glib/glib-GDateTime.html +2201 -0
  553. data/vendor/local/share/gtk-doc/html/glib/glib-GTimeZone.html +239 -0
  554. data/vendor/local/share/gtk-doc/html/glib/glib-GVariant.html +4278 -0
  555. data/vendor/local/share/gtk-doc/html/glib/glib-GVariantType.html +1864 -0
  556. data/vendor/local/share/gtk-doc/html/glib/glib-Glob-style-pattern-matching.html +295 -0
  557. data/vendor/local/share/gtk-doc/html/glib/glib-Hash-Tables.html +1512 -0
  558. data/vendor/local/share/gtk-doc/html/glib/glib-Hook-Functions.html +1367 -0
  559. data/vendor/local/share/gtk-doc/html/glib/glib-Hostname-Utilities.html +229 -0
  560. data/vendor/local/share/gtk-doc/html/glib/glib-I18N.html +692 -0
  561. data/vendor/local/share/gtk-doc/html/glib/glib-IO-Channels.html +2196 -0
  562. data/vendor/local/share/gtk-doc/html/glib/glib-Key-value-file-parser.html +2740 -0
  563. data/vendor/local/share/gtk-doc/html/glib/glib-Keyed-Data-Lists.html +612 -0
  564. data/vendor/local/share/gtk-doc/html/glib/glib-Lexical-Scanner.html +1451 -0
  565. data/vendor/local/share/gtk-doc/html/glib/glib-Limits-of-Basic-Types.html +389 -0
  566. data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Allocation.html +1033 -0
  567. data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Allocators.html +141 -0
  568. data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Chunks.html +706 -0
  569. data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Slices.html +510 -0
  570. data/vendor/local/share/gtk-doc/html/glib/glib-Message-Logging.html +748 -0
  571. data/vendor/local/share/gtk-doc/html/glib/glib-Miscellaneous-Macros.html +1105 -0
  572. data/vendor/local/share/gtk-doc/html/glib/glib-Miscellaneous-Utility-Functions.html +1552 -0
  573. data/vendor/local/share/gtk-doc/html/glib/glib-N-ary-Trees.html +1468 -0
  574. data/vendor/local/share/gtk-doc/html/glib/glib-Numerical-Definitions.html +194 -0
  575. data/vendor/local/share/gtk-doc/html/glib/glib-Perl-compatible-regular-expressions.html +2745 -0
  576. data/vendor/local/share/gtk-doc/html/glib/glib-Pointer-Arrays.html +752 -0
  577. data/vendor/local/share/gtk-doc/html/glib/glib-Quarks.html +269 -0
  578. data/vendor/local/share/gtk-doc/html/glib/glib-Random-Numbers.html +578 -0
  579. data/vendor/local/share/gtk-doc/html/glib/glib-Relations-and-Tuples.html +532 -0
  580. data/vendor/local/share/gtk-doc/html/glib/glib-Sequences.html +1353 -0
  581. data/vendor/local/share/gtk-doc/html/glib/glib-Shell-related-Utilities.html +238 -0
  582. data/vendor/local/share/gtk-doc/html/glib/glib-Simple-XML-Subset-Parser.html +1282 -0
  583. data/vendor/local/share/gtk-doc/html/glib/glib-Singly-Linked-Lists.html +1213 -0
  584. data/vendor/local/share/gtk-doc/html/glib/glib-Spawning-Processes.html +924 -0
  585. data/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html +470 -0
  586. data/vendor/local/share/gtk-doc/html/glib/glib-String-Chunks.html +301 -0
  587. data/vendor/local/share/gtk-doc/html/glib/glib-String-Utility-Functions.html +2960 -0
  588. data/vendor/local/share/gtk-doc/html/glib/glib-Strings.html +1291 -0
  589. data/vendor/local/share/gtk-doc/html/glib/glib-Testing.html +1805 -0
  590. data/vendor/local/share/gtk-doc/html/glib/glib-The-Main-Event-Loop.html +3478 -0
  591. data/vendor/local/share/gtk-doc/html/glib/glib-Thread-Pools.html +606 -0
  592. data/vendor/local/share/gtk-doc/html/glib/glib-Threads.html +3411 -0
  593. data/vendor/local/share/gtk-doc/html/glib/glib-Timers.html +245 -0
  594. data/vendor/local/share/gtk-doc/html/glib/glib-Trash-Stacks.html +188 -0
  595. data/vendor/local/share/gtk-doc/html/glib/glib-Type-Conversion-Macros.html +263 -0
  596. data/vendor/local/share/gtk-doc/html/glib/glib-URI-Functions.html +400 -0
  597. data/vendor/local/share/gtk-doc/html/glib/glib-Unicode-Manipulation.html +3448 -0
  598. data/vendor/local/share/gtk-doc/html/glib/glib-Version-Information.html +253 -0
  599. data/vendor/local/share/gtk-doc/html/glib/glib-Warnings-and-Assertions.html +438 -0
  600. data/vendor/local/share/gtk-doc/html/glib/glib-Windows-Compatibility-Functions.html +476 -0
  601. data/vendor/local/share/gtk-doc/html/glib/glib-building.html +466 -0
  602. data/vendor/local/share/gtk-doc/html/glib/glib-changes.html +159 -0
  603. data/vendor/local/share/gtk-doc/html/glib/glib-compiling.html +118 -0
  604. data/vendor/local/share/gtk-doc/html/glib/glib-core.html +64 -0
  605. data/vendor/local/share/gtk-doc/html/glib/glib-cross-compiling.html +160 -0
  606. data/vendor/local/share/gtk-doc/html/glib/glib-data-types.html +120 -0
  607. data/vendor/local/share/gtk-doc/html/glib/glib-fundamentals.html +59 -0
  608. data/vendor/local/share/gtk-doc/html/glib/glib-gettextize.html +93 -0
  609. data/vendor/local/share/gtk-doc/html/glib/glib-regex-syntax.html +2217 -0
  610. data/vendor/local/share/gtk-doc/html/glib/glib-resources.html +121 -0
  611. data/vendor/local/share/gtk-doc/html/glib/glib-running.html +319 -0
  612. data/vendor/local/share/gtk-doc/html/glib/glib-utilities.html +118 -0
  613. data/vendor/local/share/gtk-doc/html/glib/glib.devhelp +2183 -0
  614. data/vendor/local/share/gtk-doc/html/glib/glib.devhelp2 +2671 -0
  615. data/vendor/local/share/gtk-doc/html/glib/glib.html +80 -0
  616. data/vendor/local/share/gtk-doc/html/glib/gtester-report.html +72 -0
  617. data/vendor/local/share/gtk-doc/html/glib/gtester.html +131 -0
  618. data/vendor/local/share/gtk-doc/html/glib/gvariant-format-strings.html +1288 -0
  619. data/vendor/local/share/gtk-doc/html/glib/home.png +0 -0
  620. data/vendor/local/share/gtk-doc/html/glib/index.html +344 -0
  621. data/vendor/local/share/gtk-doc/html/glib/index.sgml +2846 -0
  622. data/vendor/local/share/gtk-doc/html/glib/left.png +0 -0
  623. data/vendor/local/share/gtk-doc/html/glib/mainloop-states.gif +0 -0
  624. data/vendor/local/share/gtk-doc/html/glib/right.png +0 -0
  625. data/vendor/local/share/gtk-doc/html/glib/style.css +265 -0
  626. data/vendor/local/share/gtk-doc/html/glib/tools.html +41 -0
  627. data/vendor/local/share/gtk-doc/html/glib/up.png +0 -0
  628. data/vendor/local/share/gtk-doc/html/gobject/GBinding.html +803 -0
  629. data/vendor/local/share/gtk-doc/html/gobject/GTypeModule.html +710 -0
  630. data/vendor/local/share/gtk-doc/html/gobject/GTypePlugin.html +453 -0
  631. data/vendor/local/share/gtk-doc/html/gobject/annotation-glossary.html +47 -0
  632. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-10.html +85 -0
  633. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-12.html +55 -0
  634. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-14.html +51 -0
  635. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-18.html +46 -0
  636. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-2.html +38 -0
  637. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-22.html +46 -0
  638. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-24.html +73 -0
  639. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-26.html +201 -0
  640. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-4.html +178 -0
  641. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-6.html +42 -0
  642. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-8.html +42 -0
  643. data/vendor/local/share/gtk-doc/html/gobject/api-index-deprecated.html +50 -0
  644. data/vendor/local/share/gtk-doc/html/gobject/api-index-full.html +2721 -0
  645. data/vendor/local/share/gtk-doc/html/gobject/ch01s02.html +136 -0
  646. data/vendor/local/share/gtk-doc/html/gobject/ch06s03.html +113 -0
  647. data/vendor/local/share/gtk-doc/html/gobject/chapter-gobject.html +293 -0
  648. data/vendor/local/share/gtk-doc/html/gobject/chapter-gtype.html +263 -0
  649. data/vendor/local/share/gtk-doc/html/gobject/chapter-intro.html +92 -0
  650. data/vendor/local/share/gtk-doc/html/gobject/chapter-signal.html +214 -0
  651. data/vendor/local/share/gtk-doc/html/gobject/glib-genmarshal.html +361 -0
  652. data/vendor/local/share/gtk-doc/html/gobject/glib-mkenums.html +307 -0
  653. data/vendor/local/share/gtk-doc/html/gobject/glue.png +0 -0
  654. data/vendor/local/share/gtk-doc/html/gobject/gobject-Boxed-Types.html +417 -0
  655. data/vendor/local/share/gtk-doc/html/gobject/gobject-Closures.html +2412 -0
  656. data/vendor/local/share/gtk-doc/html/gobject/gobject-Enumeration-and-Flag-Types.html +847 -0
  657. data/vendor/local/share/gtk-doc/html/gobject/gobject-GParamSpec.html +1433 -0
  658. data/vendor/local/share/gtk-doc/html/gobject/gobject-Generic-values.html +776 -0
  659. data/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html +2741 -0
  660. data/vendor/local/share/gtk-doc/html/gobject/gobject-Standard-Parameter-and-Value-Types.html +5555 -0
  661. data/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html +2875 -0
  662. data/vendor/local/share/gtk-doc/html/gobject/gobject-Type-Information.html +4460 -0
  663. data/vendor/local/share/gtk-doc/html/gobject/gobject-Value-arrays.html +416 -0
  664. data/vendor/local/share/gtk-doc/html/gobject/gobject-Varargs-Value-Collection.html +260 -0
  665. data/vendor/local/share/gtk-doc/html/gobject/gobject-memory.html +234 -0
  666. data/vendor/local/share/gtk-doc/html/gobject/gobject-properties.html +270 -0
  667. data/vendor/local/share/gtk-doc/html/gobject/gobject-query.html +117 -0
  668. data/vendor/local/share/gtk-doc/html/gobject/gobject.devhelp +762 -0
  669. data/vendor/local/share/gtk-doc/html/gobject/gobject.devhelp2 +801 -0
  670. data/vendor/local/share/gtk-doc/html/gobject/gtype-conventions.html +143 -0
  671. data/vendor/local/share/gtk-doc/html/gobject/gtype-instantiable-classed.html +287 -0
  672. data/vendor/local/share/gtk-doc/html/gobject/gtype-non-instantiable-classed.html +316 -0
  673. data/vendor/local/share/gtk-doc/html/gobject/gtype-non-instantiable.html +76 -0
  674. data/vendor/local/share/gtk-doc/html/gobject/home.png +0 -0
  675. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-chainup.html +100 -0
  676. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-code.html +86 -0
  677. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-construction.html +113 -0
  678. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-destruction.html +122 -0
  679. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-methods.html +257 -0
  680. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject.html +283 -0
  681. data/vendor/local/share/gtk-doc/html/gobject/howto-interface-implement.html +125 -0
  682. data/vendor/local/share/gtk-doc/html/gobject/howto-interface-properties.html +167 -0
  683. data/vendor/local/share/gtk-doc/html/gobject/howto-interface.html +160 -0
  684. data/vendor/local/share/gtk-doc/html/gobject/howto-signals.html +121 -0
  685. data/vendor/local/share/gtk-doc/html/gobject/index.html +192 -0
  686. data/vendor/local/share/gtk-doc/html/gobject/index.sgml +786 -0
  687. data/vendor/local/share/gtk-doc/html/gobject/left.png +0 -0
  688. data/vendor/local/share/gtk-doc/html/gobject/pr01.html +72 -0
  689. data/vendor/local/share/gtk-doc/html/gobject/pt01.html +80 -0
  690. data/vendor/local/share/gtk-doc/html/gobject/pt02.html +66 -0
  691. data/vendor/local/share/gtk-doc/html/gobject/pt03.html +55 -0
  692. data/vendor/local/share/gtk-doc/html/gobject/right.png +0 -0
  693. data/vendor/local/share/gtk-doc/html/gobject/rn01.html +85 -0
  694. data/vendor/local/share/gtk-doc/html/gobject/rn02.html +47 -0
  695. data/vendor/local/share/gtk-doc/html/gobject/signal.html +377 -0
  696. data/vendor/local/share/gtk-doc/html/gobject/style.css +265 -0
  697. data/vendor/local/share/gtk-doc/html/gobject/tools-ginspector.html +35 -0
  698. data/vendor/local/share/gtk-doc/html/gobject/tools-gob.html +40 -0
  699. data/vendor/local/share/gtk-doc/html/gobject/tools-gtkdoc.html +63 -0
  700. data/vendor/local/share/gtk-doc/html/gobject/tools-refdb.html +55 -0
  701. data/vendor/local/share/gtk-doc/html/gobject/tools-vala.html +43 -0
  702. data/vendor/local/share/gtk-doc/html/gobject/up.png +0 -0
  703. data/vendor/local/share/locale/af/LC_MESSAGES/glib20.mo +0 -0
  704. data/vendor/local/share/locale/am/LC_MESSAGES/glib20.mo +0 -0
  705. data/vendor/local/share/locale/ar/LC_MESSAGES/glib20.mo +0 -0
  706. data/vendor/local/share/locale/as/LC_MESSAGES/glib20.mo +0 -0
  707. data/vendor/local/share/locale/ast/LC_MESSAGES/glib20.mo +0 -0
  708. data/vendor/local/share/locale/az/LC_MESSAGES/glib20.mo +0 -0
  709. data/vendor/local/share/locale/be/LC_MESSAGES/gettext-runtime.mo +0 -0
  710. data/vendor/local/share/locale/be/LC_MESSAGES/glib20.mo +0 -0
  711. data/vendor/local/share/locale/be@latin/LC_MESSAGES/glib20.mo +0 -0
  712. data/vendor/local/share/locale/bg/LC_MESSAGES/gettext-runtime.mo +0 -0
  713. data/vendor/local/share/locale/bg/LC_MESSAGES/glib20.mo +0 -0
  714. data/vendor/local/share/locale/bn/LC_MESSAGES/glib20.mo +0 -0
  715. data/vendor/local/share/locale/bn_IN/LC_MESSAGES/glib20.mo +0 -0
  716. data/vendor/local/share/locale/bs/LC_MESSAGES/glib20.mo +0 -0
  717. data/vendor/local/share/locale/ca/LC_MESSAGES/gettext-runtime.mo +0 -0
  718. data/vendor/local/share/locale/ca/LC_MESSAGES/glib20.mo +0 -0
  719. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/glib20.mo +0 -0
  720. data/vendor/local/share/locale/cs/LC_MESSAGES/gettext-runtime.mo +0 -0
  721. data/vendor/local/share/locale/cs/LC_MESSAGES/glib20.mo +0 -0
  722. data/vendor/local/share/locale/cy/LC_MESSAGES/glib20.mo +0 -0
  723. data/vendor/local/share/locale/da/LC_MESSAGES/gettext-runtime.mo +0 -0
  724. data/vendor/local/share/locale/da/LC_MESSAGES/glib20.mo +0 -0
  725. data/vendor/local/share/locale/de/LC_MESSAGES/gettext-runtime.mo +0 -0
  726. data/vendor/local/share/locale/de/LC_MESSAGES/glib20.mo +0 -0
  727. data/vendor/local/share/locale/dz/LC_MESSAGES/glib20.mo +0 -0
  728. data/vendor/local/share/locale/el/LC_MESSAGES/gettext-runtime.mo +0 -0
  729. data/vendor/local/share/locale/el/LC_MESSAGES/glib20.mo +0 -0
  730. data/vendor/local/share/locale/en@boldquot/LC_MESSAGES/gettext-runtime.mo +0 -0
  731. data/vendor/local/share/locale/en@quot/LC_MESSAGES/gettext-runtime.mo +0 -0
  732. data/vendor/local/share/locale/en@shaw/LC_MESSAGES/glib20.mo +0 -0
  733. data/vendor/local/share/locale/en_CA/LC_MESSAGES/glib20.mo +0 -0
  734. data/vendor/local/share/locale/en_GB/LC_MESSAGES/glib20.mo +0 -0
  735. data/vendor/local/share/locale/eo/LC_MESSAGES/gettext-runtime.mo +0 -0
  736. data/vendor/local/share/locale/eo/LC_MESSAGES/glib20.mo +0 -0
  737. data/vendor/local/share/locale/es/LC_MESSAGES/gettext-runtime.mo +0 -0
  738. data/vendor/local/share/locale/es/LC_MESSAGES/glib20.mo +0 -0
  739. data/vendor/local/share/locale/et/LC_MESSAGES/gettext-runtime.mo +0 -0
  740. data/vendor/local/share/locale/et/LC_MESSAGES/glib20.mo +0 -0
  741. data/vendor/local/share/locale/eu/LC_MESSAGES/glib20.mo +0 -0
  742. data/vendor/local/share/locale/fa/LC_MESSAGES/glib20.mo +0 -0
  743. data/vendor/local/share/locale/fi/LC_MESSAGES/gettext-runtime.mo +0 -0
  744. data/vendor/local/share/locale/fi/LC_MESSAGES/glib20.mo +0 -0
  745. data/vendor/local/share/locale/fr/LC_MESSAGES/gettext-runtime.mo +0 -0
  746. data/vendor/local/share/locale/fr/LC_MESSAGES/glib20.mo +0 -0
  747. data/vendor/local/share/locale/ga/LC_MESSAGES/gettext-runtime.mo +0 -0
  748. data/vendor/local/share/locale/ga/LC_MESSAGES/glib20.mo +0 -0
  749. data/vendor/local/share/locale/gl/LC_MESSAGES/gettext-runtime.mo +0 -0
  750. data/vendor/local/share/locale/gl/LC_MESSAGES/glib20.mo +0 -0
  751. data/vendor/local/share/locale/gu/LC_MESSAGES/glib20.mo +0 -0
  752. data/vendor/local/share/locale/he/LC_MESSAGES/glib20.mo +0 -0
  753. data/vendor/local/share/locale/hi/LC_MESSAGES/glib20.mo +0 -0
  754. data/vendor/local/share/locale/hr/LC_MESSAGES/glib20.mo +0 -0
  755. data/vendor/local/share/locale/hu/LC_MESSAGES/glib20.mo +0 -0
  756. data/vendor/local/share/locale/hy/LC_MESSAGES/glib20.mo +0 -0
  757. data/vendor/local/share/locale/id/LC_MESSAGES/gettext-runtime.mo +0 -0
  758. data/vendor/local/share/locale/id/LC_MESSAGES/glib20.mo +0 -0
  759. data/vendor/local/share/locale/is/LC_MESSAGES/glib20.mo +0 -0
  760. data/vendor/local/share/locale/it/LC_MESSAGES/gettext-runtime.mo +0 -0
  761. data/vendor/local/share/locale/it/LC_MESSAGES/glib20.mo +0 -0
  762. data/vendor/local/share/locale/ja/LC_MESSAGES/gettext-runtime.mo +0 -0
  763. data/vendor/local/share/locale/ja/LC_MESSAGES/glib20.mo +0 -0
  764. data/vendor/local/share/locale/ka/LC_MESSAGES/glib20.mo +0 -0
  765. data/vendor/local/share/locale/kk/LC_MESSAGES/glib20.mo +0 -0
  766. data/vendor/local/share/locale/kn/LC_MESSAGES/glib20.mo +0 -0
  767. data/vendor/local/share/locale/ko/LC_MESSAGES/gettext-runtime.mo +0 -0
  768. data/vendor/local/share/locale/ko/LC_MESSAGES/glib20.mo +0 -0
  769. data/vendor/local/share/locale/ku/LC_MESSAGES/glib20.mo +0 -0
  770. data/vendor/local/share/locale/locale.alias +77 -0
  771. data/vendor/local/share/locale/lt/LC_MESSAGES/glib20.mo +0 -0
  772. data/vendor/local/share/locale/lv/LC_MESSAGES/glib20.mo +0 -0
  773. data/vendor/local/share/locale/mai/LC_MESSAGES/glib20.mo +0 -0
  774. data/vendor/local/share/locale/mg/LC_MESSAGES/glib20.mo +0 -0
  775. data/vendor/local/share/locale/mk/LC_MESSAGES/glib20.mo +0 -0
  776. data/vendor/local/share/locale/ml/LC_MESSAGES/glib20.mo +0 -0
  777. data/vendor/local/share/locale/mn/LC_MESSAGES/glib20.mo +0 -0
  778. data/vendor/local/share/locale/mr/LC_MESSAGES/glib20.mo +0 -0
  779. data/vendor/local/share/locale/ms/LC_MESSAGES/glib20.mo +0 -0
  780. data/vendor/local/share/locale/nb/LC_MESSAGES/gettext-runtime.mo +0 -0
  781. data/vendor/local/share/locale/nb/LC_MESSAGES/glib20.mo +0 -0
  782. data/vendor/local/share/locale/nds/LC_MESSAGES/glib20.mo +0 -0
  783. data/vendor/local/share/locale/ne/LC_MESSAGES/glib20.mo +0 -0
  784. data/vendor/local/share/locale/nl/LC_MESSAGES/gettext-runtime.mo +0 -0
  785. data/vendor/local/share/locale/nl/LC_MESSAGES/glib20.mo +0 -0
  786. data/vendor/local/share/locale/nn/LC_MESSAGES/gettext-runtime.mo +0 -0
  787. data/vendor/local/share/locale/nn/LC_MESSAGES/glib20.mo +0 -0
  788. data/vendor/local/share/locale/oc/LC_MESSAGES/glib20.mo +0 -0
  789. data/vendor/local/share/locale/or/LC_MESSAGES/glib20.mo +0 -0
  790. data/vendor/local/share/locale/pa/LC_MESSAGES/glib20.mo +0 -0
  791. data/vendor/local/share/locale/pl/LC_MESSAGES/gettext-runtime.mo +0 -0
  792. data/vendor/local/share/locale/pl/LC_MESSAGES/glib20.mo +0 -0
  793. data/vendor/local/share/locale/ps/LC_MESSAGES/glib20.mo +0 -0
  794. data/vendor/local/share/locale/pt/LC_MESSAGES/gettext-runtime.mo +0 -0
  795. data/vendor/local/share/locale/pt/LC_MESSAGES/glib20.mo +0 -0
  796. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gettext-runtime.mo +0 -0
  797. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/glib20.mo +0 -0
  798. data/vendor/local/share/locale/ro/LC_MESSAGES/gettext-runtime.mo +0 -0
  799. data/vendor/local/share/locale/ro/LC_MESSAGES/glib20.mo +0 -0
  800. data/vendor/local/share/locale/ru/LC_MESSAGES/gettext-runtime.mo +0 -0
  801. data/vendor/local/share/locale/ru/LC_MESSAGES/glib20.mo +0 -0
  802. data/vendor/local/share/locale/rw/LC_MESSAGES/glib20.mo +0 -0
  803. data/vendor/local/share/locale/si/LC_MESSAGES/glib20.mo +0 -0
  804. data/vendor/local/share/locale/sk/LC_MESSAGES/gettext-runtime.mo +0 -0
  805. data/vendor/local/share/locale/sk/LC_MESSAGES/glib20.mo +0 -0
  806. data/vendor/local/share/locale/sl/LC_MESSAGES/gettext-runtime.mo +0 -0
  807. data/vendor/local/share/locale/sl/LC_MESSAGES/glib20.mo +0 -0
  808. data/vendor/local/share/locale/sq/LC_MESSAGES/glib20.mo +0 -0
  809. data/vendor/local/share/locale/sr/LC_MESSAGES/gettext-runtime.mo +0 -0
  810. data/vendor/local/share/locale/sr/LC_MESSAGES/glib20.mo +0 -0
  811. data/vendor/local/share/locale/sr@ije/LC_MESSAGES/glib20.mo +0 -0
  812. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/glib20.mo +0 -0
  813. data/vendor/local/share/locale/sv/LC_MESSAGES/gettext-runtime.mo +0 -0
  814. data/vendor/local/share/locale/sv/LC_MESSAGES/glib20.mo +0 -0
  815. data/vendor/local/share/locale/ta/LC_MESSAGES/glib20.mo +0 -0
  816. data/vendor/local/share/locale/te/LC_MESSAGES/glib20.mo +0 -0
  817. data/vendor/local/share/locale/th/LC_MESSAGES/glib20.mo +0 -0
  818. data/vendor/local/share/locale/tl/LC_MESSAGES/glib20.mo +0 -0
  819. data/vendor/local/share/locale/tr/LC_MESSAGES/gettext-runtime.mo +0 -0
  820. data/vendor/local/share/locale/tr/LC_MESSAGES/glib20.mo +0 -0
  821. data/vendor/local/share/locale/tt/LC_MESSAGES/glib20.mo +0 -0
  822. data/vendor/local/share/locale/uk/LC_MESSAGES/gettext-runtime.mo +0 -0
  823. data/vendor/local/share/locale/uk/LC_MESSAGES/glib20.mo +0 -0
  824. data/vendor/local/share/locale/vi/LC_MESSAGES/gettext-runtime.mo +0 -0
  825. data/vendor/local/share/locale/vi/LC_MESSAGES/glib20.mo +0 -0
  826. data/vendor/local/share/locale/wa/LC_MESSAGES/glib20.mo +0 -0
  827. data/vendor/local/share/locale/xh/LC_MESSAGES/glib20.mo +0 -0
  828. data/vendor/local/share/locale/yi/LC_MESSAGES/glib20.mo +0 -0
  829. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gettext-runtime.mo +0 -0
  830. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/glib20.mo +0 -0
  831. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gettext-runtime.mo +0 -0
  832. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/glib20.mo +0 -0
  833. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gettext-runtime.mo +0 -0
  834. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/glib20.mo +0 -0
  835. data/vendor/local/share/man/man1/envsubst.1 +54 -0
  836. data/vendor/local/share/man/man1/gettext.1 +69 -0
  837. data/vendor/local/share/man/man1/glib-genmarshal.1 +312 -0
  838. data/vendor/local/share/man/man1/glib-mkenums.1 +246 -0
  839. data/vendor/local/share/man/man1/gobject-query.1 +83 -0
  840. data/vendor/local/share/man/man1/ngettext.1 +68 -0
  841. data/vendor/local/share/man/man3/bind_textdomain_codeset.3 +72 -0
  842. data/vendor/local/share/man/man3/bindtextdomain.3 +69 -0
  843. data/vendor/local/share/man/man3/dcgettext.3 +1 -0
  844. data/vendor/local/share/man/man3/dcngettext.3 +1 -0
  845. data/vendor/local/share/man/man3/dgettext.3 +1 -0
  846. data/vendor/local/share/man/man3/dngettext.3 +1 -0
  847. data/vendor/local/share/man/man3/gettext.3 +99 -0
  848. data/vendor/local/share/man/man3/ngettext.3 +60 -0
  849. data/vendor/local/share/man/man3/textdomain.3 +57 -0
  850. data/vendor/local/src/tml/packaging/gettext_0.18.1.1-2_win32.log +10423 -0
  851. data/vendor/local/src/tml/packaging/gettext_0.18.1.1-2_win32.sh +457 -0
  852. data/vendor/local/src/tml/packaging/glib_2.24.2-2_win32.log +2602 -0
  853. data/vendor/local/src/tml/packaging/glib_2.24.2-2_win32.sh +290 -0
  854. data/vendor/local/src/tml/packaging/glib_2.26.0-2_win32.log +2867 -0
  855. data/vendor/local/src/tml/packaging/glib_2.26.0-2_win32.sh +64 -0
  856. metadata +952 -0
@@ -0,0 +1,2513 @@
1
+ <ONLINE href="http://library.gnome.org/devel/gio/unstable/">
2
+ <ANCHOR id="GFile" href="gio/GFile.html">
3
+ <ANCHOR id="GFile.synopsis" href="gio/GFile.html#GFile.synopsis">
4
+ <ANCHOR id="GFile.object-hierarchy" href="gio/GFile.html#GFile.object-hierarchy">
5
+ <ANCHOR id="GFile.prerequisites" href="gio/GFile.html#GFile.prerequisites">
6
+ <ANCHOR id="GFile.description" href="gio/GFile.html#GFile.description">
7
+ <ANCHOR id="GFile.details" href="gio/GFile.html#GFile.details">
8
+ <ANCHOR id="GFile-struct" href="gio/GFile.html#GFile-struct">
9
+ <ANCHOR id="GFileIface" href="gio/GFile.html#GFileIface">
10
+ <ANCHOR id="GFileQueryInfoFlags" href="gio/GFile.html#GFileQueryInfoFlags">
11
+ <ANCHOR id="G-FILE-QUERY-INFO-NONE:CAPS" href="gio/GFile.html#G-FILE-QUERY-INFO-NONE:CAPS">
12
+ <ANCHOR id="G-FILE-QUERY-INFO-NOFOLLOW-SYMLINKS:CAPS" href="gio/GFile.html#G-FILE-QUERY-INFO-NOFOLLOW-SYMLINKS:CAPS">
13
+ <ANCHOR id="GFileCreateFlags" href="gio/GFile.html#GFileCreateFlags">
14
+ <ANCHOR id="G-FILE-CREATE-NONE:CAPS" href="gio/GFile.html#G-FILE-CREATE-NONE:CAPS">
15
+ <ANCHOR id="G-FILE-CREATE-PRIVATE:CAPS" href="gio/GFile.html#G-FILE-CREATE-PRIVATE:CAPS">
16
+ <ANCHOR id="G-FILE-CREATE-REPLACE-DESTINATION:CAPS" href="gio/GFile.html#G-FILE-CREATE-REPLACE-DESTINATION:CAPS">
17
+ <ANCHOR id="GFileCopyFlags" href="gio/GFile.html#GFileCopyFlags">
18
+ <ANCHOR id="G-FILE-COPY-NONE:CAPS" href="gio/GFile.html#G-FILE-COPY-NONE:CAPS">
19
+ <ANCHOR id="G-FILE-COPY-OVERWRITE:CAPS" href="gio/GFile.html#G-FILE-COPY-OVERWRITE:CAPS">
20
+ <ANCHOR id="G-FILE-COPY-BACKUP:CAPS" href="gio/GFile.html#G-FILE-COPY-BACKUP:CAPS">
21
+ <ANCHOR id="G-FILE-COPY-NOFOLLOW-SYMLINKS:CAPS" href="gio/GFile.html#G-FILE-COPY-NOFOLLOW-SYMLINKS:CAPS">
22
+ <ANCHOR id="G-FILE-COPY-ALL-METADATA:CAPS" href="gio/GFile.html#G-FILE-COPY-ALL-METADATA:CAPS">
23
+ <ANCHOR id="G-FILE-COPY-NO-FALLBACK-FOR-MOVE:CAPS" href="gio/GFile.html#G-FILE-COPY-NO-FALLBACK-FOR-MOVE:CAPS">
24
+ <ANCHOR id="G-FILE-COPY-TARGET-DEFAULT-PERMS:CAPS" href="gio/GFile.html#G-FILE-COPY-TARGET-DEFAULT-PERMS:CAPS">
25
+ <ANCHOR id="GFileMonitorFlags" href="gio/GFile.html#GFileMonitorFlags">
26
+ <ANCHOR id="G-FILE-MONITOR-NONE:CAPS" href="gio/GFile.html#G-FILE-MONITOR-NONE:CAPS">
27
+ <ANCHOR id="G-FILE-MONITOR-WATCH-MOUNTS:CAPS" href="gio/GFile.html#G-FILE-MONITOR-WATCH-MOUNTS:CAPS">
28
+ <ANCHOR id="G-FILE-MONITOR-SEND-MOVED:CAPS" href="gio/GFile.html#G-FILE-MONITOR-SEND-MOVED:CAPS">
29
+ <ANCHOR id="GFilesystemPreviewType" href="gio/GFile.html#GFilesystemPreviewType">
30
+ <ANCHOR id="G-FILESYSTEM-PREVIEW-TYPE-IF-ALWAYS:CAPS" href="gio/GFile.html#G-FILESYSTEM-PREVIEW-TYPE-IF-ALWAYS:CAPS">
31
+ <ANCHOR id="G-FILESYSTEM-PREVIEW-TYPE-IF-LOCAL:CAPS" href="gio/GFile.html#G-FILESYSTEM-PREVIEW-TYPE-IF-LOCAL:CAPS">
32
+ <ANCHOR id="G-FILESYSTEM-PREVIEW-TYPE-NEVER:CAPS" href="gio/GFile.html#G-FILESYSTEM-PREVIEW-TYPE-NEVER:CAPS">
33
+ <ANCHOR id="GFileProgressCallback" href="gio/GFile.html#GFileProgressCallback">
34
+ <ANCHOR id="GFileReadMoreCallback" href="gio/GFile.html#GFileReadMoreCallback">
35
+ <ANCHOR id="g-file-new-for-path" href="gio/GFile.html#g-file-new-for-path">
36
+ <ANCHOR id="g-file-new-for-uri" href="gio/GFile.html#g-file-new-for-uri">
37
+ <ANCHOR id="g-file-new-for-commandline-arg" href="gio/GFile.html#g-file-new-for-commandline-arg">
38
+ <ANCHOR id="g-file-parse-name" href="gio/GFile.html#g-file-parse-name">
39
+ <ANCHOR id="g-file-dup" href="gio/GFile.html#g-file-dup">
40
+ <ANCHOR id="g-file-hash" href="gio/GFile.html#g-file-hash">
41
+ <ANCHOR id="g-file-equal" href="gio/GFile.html#g-file-equal">
42
+ <ANCHOR id="g-file-get-basename" href="gio/GFile.html#g-file-get-basename">
43
+ <ANCHOR id="g-file-get-path" href="gio/GFile.html#g-file-get-path">
44
+ <ANCHOR id="g-file-get-uri" href="gio/GFile.html#g-file-get-uri">
45
+ <ANCHOR id="g-file-get-parse-name" href="gio/GFile.html#g-file-get-parse-name">
46
+ <ANCHOR id="g-file-get-parent" href="gio/GFile.html#g-file-get-parent">
47
+ <ANCHOR id="g-file-has-parent" href="gio/GFile.html#g-file-has-parent">
48
+ <ANCHOR id="g-file-get-child" href="gio/GFile.html#g-file-get-child">
49
+ <ANCHOR id="g-file-get-child-for-display-name" href="gio/GFile.html#g-file-get-child-for-display-name">
50
+ <ANCHOR id="g-file-has-prefix" href="gio/GFile.html#g-file-has-prefix">
51
+ <ANCHOR id="g-file-get-relative-path" href="gio/GFile.html#g-file-get-relative-path">
52
+ <ANCHOR id="g-file-resolve-relative-path" href="gio/GFile.html#g-file-resolve-relative-path">
53
+ <ANCHOR id="g-file-is-native" href="gio/GFile.html#g-file-is-native">
54
+ <ANCHOR id="g-file-has-uri-scheme" href="gio/GFile.html#g-file-has-uri-scheme">
55
+ <ANCHOR id="g-file-get-uri-scheme" href="gio/GFile.html#g-file-get-uri-scheme">
56
+ <ANCHOR id="g-file-read" href="gio/GFile.html#g-file-read">
57
+ <ANCHOR id="g-file-read-async" href="gio/GFile.html#g-file-read-async">
58
+ <ANCHOR id="g-file-read-finish" href="gio/GFile.html#g-file-read-finish">
59
+ <ANCHOR id="g-file-append-to" href="gio/GFile.html#g-file-append-to">
60
+ <ANCHOR id="g-file-create" href="gio/GFile.html#g-file-create">
61
+ <ANCHOR id="g-file-replace" href="gio/GFile.html#g-file-replace">
62
+ <ANCHOR id="g-file-append-to-async" href="gio/GFile.html#g-file-append-to-async">
63
+ <ANCHOR id="g-file-append-to-finish" href="gio/GFile.html#g-file-append-to-finish">
64
+ <ANCHOR id="g-file-create-async" href="gio/GFile.html#g-file-create-async">
65
+ <ANCHOR id="g-file-create-finish" href="gio/GFile.html#g-file-create-finish">
66
+ <ANCHOR id="g-file-replace-async" href="gio/GFile.html#g-file-replace-async">
67
+ <ANCHOR id="g-file-replace-finish" href="gio/GFile.html#g-file-replace-finish">
68
+ <ANCHOR id="g-file-query-info" href="gio/GFile.html#g-file-query-info">
69
+ <ANCHOR id="g-file-query-info-async" href="gio/GFile.html#g-file-query-info-async">
70
+ <ANCHOR id="g-file-query-info-finish" href="gio/GFile.html#g-file-query-info-finish">
71
+ <ANCHOR id="g-file-query-exists" href="gio/GFile.html#g-file-query-exists">
72
+ <ANCHOR id="g-file-query-file-type" href="gio/GFile.html#g-file-query-file-type">
73
+ <ANCHOR id="g-file-query-filesystem-info" href="gio/GFile.html#g-file-query-filesystem-info">
74
+ <ANCHOR id="g-file-query-filesystem-info-async" href="gio/GFile.html#g-file-query-filesystem-info-async">
75
+ <ANCHOR id="g-file-query-filesystem-info-finish" href="gio/GFile.html#g-file-query-filesystem-info-finish">
76
+ <ANCHOR id="g-file-query-default-handler" href="gio/GFile.html#g-file-query-default-handler">
77
+ <ANCHOR id="g-file-find-enclosing-mount" href="gio/GFile.html#g-file-find-enclosing-mount">
78
+ <ANCHOR id="g-file-find-enclosing-mount-async" href="gio/GFile.html#g-file-find-enclosing-mount-async">
79
+ <ANCHOR id="g-file-find-enclosing-mount-finish" href="gio/GFile.html#g-file-find-enclosing-mount-finish">
80
+ <ANCHOR id="g-file-enumerate-children" href="gio/GFile.html#g-file-enumerate-children">
81
+ <ANCHOR id="g-file-enumerate-children-async" href="gio/GFile.html#g-file-enumerate-children-async">
82
+ <ANCHOR id="g-file-enumerate-children-finish" href="gio/GFile.html#g-file-enumerate-children-finish">
83
+ <ANCHOR id="g-file-set-display-name" href="gio/GFile.html#g-file-set-display-name">
84
+ <ANCHOR id="g-file-set-display-name-async" href="gio/GFile.html#g-file-set-display-name-async">
85
+ <ANCHOR id="g-file-set-display-name-finish" href="gio/GFile.html#g-file-set-display-name-finish">
86
+ <ANCHOR id="g-file-delete" href="gio/GFile.html#g-file-delete">
87
+ <ANCHOR id="g-file-trash" href="gio/GFile.html#g-file-trash">
88
+ <ANCHOR id="g-file-copy" href="gio/GFile.html#g-file-copy">
89
+ <ANCHOR id="g-file-copy-async" href="gio/GFile.html#g-file-copy-async">
90
+ <ANCHOR id="g-file-copy-finish" href="gio/GFile.html#g-file-copy-finish">
91
+ <ANCHOR id="g-file-move" href="gio/GFile.html#g-file-move">
92
+ <ANCHOR id="g-file-make-directory" href="gio/GFile.html#g-file-make-directory">
93
+ <ANCHOR id="g-file-make-directory-with-parents" href="gio/GFile.html#g-file-make-directory-with-parents">
94
+ <ANCHOR id="g-file-make-symbolic-link" href="gio/GFile.html#g-file-make-symbolic-link">
95
+ <ANCHOR id="g-file-query-settable-attributes" href="gio/GFile.html#g-file-query-settable-attributes">
96
+ <ANCHOR id="g-file-query-writable-namespaces" href="gio/GFile.html#g-file-query-writable-namespaces">
97
+ <ANCHOR id="g-file-set-attribute" href="gio/GFile.html#g-file-set-attribute">
98
+ <ANCHOR id="g-file-set-attributes-from-info" href="gio/GFile.html#g-file-set-attributes-from-info">
99
+ <ANCHOR id="g-file-set-attributes-async" href="gio/GFile.html#g-file-set-attributes-async">
100
+ <ANCHOR id="g-file-set-attributes-finish" href="gio/GFile.html#g-file-set-attributes-finish">
101
+ <ANCHOR id="g-file-set-attribute-string" href="gio/GFile.html#g-file-set-attribute-string">
102
+ <ANCHOR id="g-file-set-attribute-byte-string" href="gio/GFile.html#g-file-set-attribute-byte-string">
103
+ <ANCHOR id="g-file-set-attribute-uint32" href="gio/GFile.html#g-file-set-attribute-uint32">
104
+ <ANCHOR id="g-file-set-attribute-int32" href="gio/GFile.html#g-file-set-attribute-int32">
105
+ <ANCHOR id="g-file-set-attribute-uint64" href="gio/GFile.html#g-file-set-attribute-uint64">
106
+ <ANCHOR id="g-file-set-attribute-int64" href="gio/GFile.html#g-file-set-attribute-int64">
107
+ <ANCHOR id="g-file-mount-mountable" href="gio/GFile.html#g-file-mount-mountable">
108
+ <ANCHOR id="g-file-mount-mountable-finish" href="gio/GFile.html#g-file-mount-mountable-finish">
109
+ <ANCHOR id="g-file-unmount-mountable" href="gio/GFile.html#g-file-unmount-mountable">
110
+ <ANCHOR id="g-file-unmount-mountable-finish" href="gio/GFile.html#g-file-unmount-mountable-finish">
111
+ <ANCHOR id="g-file-unmount-mountable-with-operation" href="gio/GFile.html#g-file-unmount-mountable-with-operation">
112
+ <ANCHOR id="g-file-unmount-mountable-with-operation-finish" href="gio/GFile.html#g-file-unmount-mountable-with-operation-finish">
113
+ <ANCHOR id="g-file-eject-mountable" href="gio/GFile.html#g-file-eject-mountable">
114
+ <ANCHOR id="g-file-eject-mountable-finish" href="gio/GFile.html#g-file-eject-mountable-finish">
115
+ <ANCHOR id="g-file-eject-mountable-with-operation" href="gio/GFile.html#g-file-eject-mountable-with-operation">
116
+ <ANCHOR id="g-file-eject-mountable-with-operation-finish" href="gio/GFile.html#g-file-eject-mountable-with-operation-finish">
117
+ <ANCHOR id="g-file-start-mountable" href="gio/GFile.html#g-file-start-mountable">
118
+ <ANCHOR id="g-file-start-mountable-finish" href="gio/GFile.html#g-file-start-mountable-finish">
119
+ <ANCHOR id="g-file-stop-mountable" href="gio/GFile.html#g-file-stop-mountable">
120
+ <ANCHOR id="g-file-stop-mountable-finish" href="gio/GFile.html#g-file-stop-mountable-finish">
121
+ <ANCHOR id="g-file-poll-mountable" href="gio/GFile.html#g-file-poll-mountable">
122
+ <ANCHOR id="g-file-poll-mountable-finish" href="gio/GFile.html#g-file-poll-mountable-finish">
123
+ <ANCHOR id="g-file-mount-enclosing-volume" href="gio/GFile.html#g-file-mount-enclosing-volume">
124
+ <ANCHOR id="g-file-mount-enclosing-volume-finish" href="gio/GFile.html#g-file-mount-enclosing-volume-finish">
125
+ <ANCHOR id="g-file-monitor-directory" href="gio/GFile.html#g-file-monitor-directory">
126
+ <ANCHOR id="g-file-monitor-file" href="gio/GFile.html#g-file-monitor-file">
127
+ <ANCHOR id="g-file-monitor" href="gio/GFile.html#g-file-monitor">
128
+ <ANCHOR id="g-file-load-contents" href="gio/GFile.html#g-file-load-contents">
129
+ <ANCHOR id="g-file-load-contents-async" href="gio/GFile.html#g-file-load-contents-async">
130
+ <ANCHOR id="g-file-load-contents-finish" href="gio/GFile.html#g-file-load-contents-finish">
131
+ <ANCHOR id="g-file-load-partial-contents-async" href="gio/GFile.html#g-file-load-partial-contents-async">
132
+ <ANCHOR id="g-file-load-partial-contents-finish" href="gio/GFile.html#g-file-load-partial-contents-finish">
133
+ <ANCHOR id="g-file-replace-contents" href="gio/GFile.html#g-file-replace-contents">
134
+ <ANCHOR id="g-file-replace-contents-async" href="gio/GFile.html#g-file-replace-contents-async">
135
+ <ANCHOR id="g-file-replace-contents-finish" href="gio/GFile.html#g-file-replace-contents-finish">
136
+ <ANCHOR id="g-file-copy-attributes" href="gio/GFile.html#g-file-copy-attributes">
137
+ <ANCHOR id="g-file-create-readwrite" href="gio/GFile.html#g-file-create-readwrite">
138
+ <ANCHOR id="g-file-create-readwrite-async" href="gio/GFile.html#g-file-create-readwrite-async">
139
+ <ANCHOR id="g-file-create-readwrite-finish" href="gio/GFile.html#g-file-create-readwrite-finish">
140
+ <ANCHOR id="g-file-open-readwrite" href="gio/GFile.html#g-file-open-readwrite">
141
+ <ANCHOR id="g-file-open-readwrite-async" href="gio/GFile.html#g-file-open-readwrite-async">
142
+ <ANCHOR id="g-file-open-readwrite-finish" href="gio/GFile.html#g-file-open-readwrite-finish">
143
+ <ANCHOR id="g-file-replace-readwrite" href="gio/GFile.html#g-file-replace-readwrite">
144
+ <ANCHOR id="g-file-replace-readwrite-async" href="gio/GFile.html#g-file-replace-readwrite-async">
145
+ <ANCHOR id="g-file-replace-readwrite-finish" href="gio/GFile.html#g-file-replace-readwrite-finish">
146
+ <ANCHOR id="g-file-supports-thread-contexts" href="gio/GFile.html#g-file-supports-thread-contexts">
147
+ <ANCHOR id="GFile.see-also" href="gio/GFile.html#GFile.see-also">
148
+ <ANCHOR id="gio-GFileAttribute" href="gio/gio-GFileAttribute.html">
149
+ <ANCHOR id="gio-GFileAttribute.synopsis" href="gio/gio-GFileAttribute.html#gio-GFileAttribute.synopsis">
150
+ <ANCHOR id="gio-GFileAttribute.description" href="gio/gio-GFileAttribute.html#gio-GFileAttribute.description">
151
+ <ANCHOR id="gio-GFileAttribute.details" href="gio/gio-GFileAttribute.html#gio-GFileAttribute.details">
152
+ <ANCHOR id="GFileAttributeType" href="gio/gio-GFileAttribute.html#GFileAttributeType">
153
+ <ANCHOR id="G-FILE-ATTRIBUTE-TYPE-INVALID:CAPS" href="gio/gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-INVALID:CAPS">
154
+ <ANCHOR id="G-FILE-ATTRIBUTE-TYPE-STRING:CAPS" href="gio/gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-STRING:CAPS">
155
+ <ANCHOR id="G-FILE-ATTRIBUTE-TYPE-BYTE-STRING:CAPS" href="gio/gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BYTE-STRING:CAPS">
156
+ <ANCHOR id="G-FILE-ATTRIBUTE-TYPE-BOOLEAN:CAPS" href="gio/gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-BOOLEAN:CAPS">
157
+ <ANCHOR id="G-FILE-ATTRIBUTE-TYPE-UINT32:CAPS" href="gio/gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT32:CAPS">
158
+ <ANCHOR id="G-FILE-ATTRIBUTE-TYPE-INT32:CAPS" href="gio/gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-INT32:CAPS">
159
+ <ANCHOR id="G-FILE-ATTRIBUTE-TYPE-UINT64:CAPS" href="gio/gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-UINT64:CAPS">
160
+ <ANCHOR id="G-FILE-ATTRIBUTE-TYPE-INT64:CAPS" href="gio/gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-INT64:CAPS">
161
+ <ANCHOR id="G-FILE-ATTRIBUTE-TYPE-OBJECT:CAPS" href="gio/gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-OBJECT:CAPS">
162
+ <ANCHOR id="G-FILE-ATTRIBUTE-TYPE-STRINGV:CAPS" href="gio/gio-GFileAttribute.html#G-FILE-ATTRIBUTE-TYPE-STRINGV:CAPS">
163
+ <ANCHOR id="GFileAttributeInfoFlags" href="gio/gio-GFileAttribute.html#GFileAttributeInfoFlags">
164
+ <ANCHOR id="G-FILE-ATTRIBUTE-INFO-NONE:CAPS" href="gio/gio-GFileAttribute.html#G-FILE-ATTRIBUTE-INFO-NONE:CAPS">
165
+ <ANCHOR id="G-FILE-ATTRIBUTE-INFO-COPY-WITH-FILE:CAPS" href="gio/gio-GFileAttribute.html#G-FILE-ATTRIBUTE-INFO-COPY-WITH-FILE:CAPS">
166
+ <ANCHOR id="G-FILE-ATTRIBUTE-INFO-COPY-WHEN-MOVED:CAPS" href="gio/gio-GFileAttribute.html#G-FILE-ATTRIBUTE-INFO-COPY-WHEN-MOVED:CAPS">
167
+ <ANCHOR id="GFileAttributeStatus" href="gio/gio-GFileAttribute.html#GFileAttributeStatus">
168
+ <ANCHOR id="G-FILE-ATTRIBUTE-STATUS-UNSET:CAPS" href="gio/gio-GFileAttribute.html#G-FILE-ATTRIBUTE-STATUS-UNSET:CAPS">
169
+ <ANCHOR id="G-FILE-ATTRIBUTE-STATUS-SET:CAPS" href="gio/gio-GFileAttribute.html#G-FILE-ATTRIBUTE-STATUS-SET:CAPS">
170
+ <ANCHOR id="G-FILE-ATTRIBUTE-STATUS-ERROR-SETTING:CAPS" href="gio/gio-GFileAttribute.html#G-FILE-ATTRIBUTE-STATUS-ERROR-SETTING:CAPS">
171
+ <ANCHOR id="GFileAttributeInfo" href="gio/gio-GFileAttribute.html#GFileAttributeInfo">
172
+ <ANCHOR id="GFileAttributeInfoList" href="gio/gio-GFileAttribute.html#GFileAttributeInfoList">
173
+ <ANCHOR id="g-file-attribute-info-list-new" href="gio/gio-GFileAttribute.html#g-file-attribute-info-list-new">
174
+ <ANCHOR id="g-file-attribute-info-list-ref" href="gio/gio-GFileAttribute.html#g-file-attribute-info-list-ref">
175
+ <ANCHOR id="g-file-attribute-info-list-unref" href="gio/gio-GFileAttribute.html#g-file-attribute-info-list-unref">
176
+ <ANCHOR id="g-file-attribute-info-list-dup" href="gio/gio-GFileAttribute.html#g-file-attribute-info-list-dup">
177
+ <ANCHOR id="g-file-attribute-info-list-lookup" href="gio/gio-GFileAttribute.html#g-file-attribute-info-list-lookup">
178
+ <ANCHOR id="g-file-attribute-info-list-add" href="gio/gio-GFileAttribute.html#g-file-attribute-info-list-add">
179
+ <ANCHOR id="gio-GFileAttribute.see-also" href="gio/gio-GFileAttribute.html#gio-GFileAttribute.see-also">
180
+ <ANCHOR id="GFileInfo" href="gio/GFileInfo.html">
181
+ <ANCHOR id="GFileInfo.synopsis" href="gio/GFileInfo.html#GFileInfo.synopsis">
182
+ <ANCHOR id="GFileInfo.object-hierarchy" href="gio/GFileInfo.html#GFileInfo.object-hierarchy">
183
+ <ANCHOR id="GFileInfo.description" href="gio/GFileInfo.html#GFileInfo.description">
184
+ <ANCHOR id="GFileInfo.details" href="gio/GFileInfo.html#GFileInfo.details">
185
+ <ANCHOR id="GFileAttributeMatcher" href="gio/GFileInfo.html#GFileAttributeMatcher">
186
+ <ANCHOR id="GFileType" href="gio/GFileInfo.html#GFileType">
187
+ <ANCHOR id="G-FILE-TYPE-UNKNOWN:CAPS" href="gio/GFileInfo.html#G-FILE-TYPE-UNKNOWN:CAPS">
188
+ <ANCHOR id="G-FILE-TYPE-REGULAR:CAPS" href="gio/GFileInfo.html#G-FILE-TYPE-REGULAR:CAPS">
189
+ <ANCHOR id="G-FILE-TYPE-DIRECTORY:CAPS" href="gio/GFileInfo.html#G-FILE-TYPE-DIRECTORY:CAPS">
190
+ <ANCHOR id="G-FILE-TYPE-SYMBOLIC-LINK:CAPS" href="gio/GFileInfo.html#G-FILE-TYPE-SYMBOLIC-LINK:CAPS">
191
+ <ANCHOR id="G-FILE-TYPE-SPECIAL:CAPS" href="gio/GFileInfo.html#G-FILE-TYPE-SPECIAL:CAPS">
192
+ <ANCHOR id="G-FILE-TYPE-SHORTCUT:CAPS" href="gio/GFileInfo.html#G-FILE-TYPE-SHORTCUT:CAPS">
193
+ <ANCHOR id="G-FILE-TYPE-MOUNTABLE:CAPS" href="gio/GFileInfo.html#G-FILE-TYPE-MOUNTABLE:CAPS">
194
+ <ANCHOR id="GFileInfo-struct" href="gio/GFileInfo.html#GFileInfo-struct">
195
+ <ANCHOR id="G-FILE-ATTRIBUTE-STANDARD-TYPE:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-TYPE:CAPS">
196
+ <ANCHOR id="G-FILE-ATTRIBUTE-STANDARD-IS-HIDDEN:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-IS-HIDDEN:CAPS">
197
+ <ANCHOR id="G-FILE-ATTRIBUTE-STANDARD-IS-BACKUP:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-IS-BACKUP:CAPS">
198
+ <ANCHOR id="G-FILE-ATTRIBUTE-STANDARD-IS-SYMLINK:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-IS-SYMLINK:CAPS">
199
+ <ANCHOR id="G-FILE-ATTRIBUTE-STANDARD-IS-VIRTUAL:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-IS-VIRTUAL:CAPS">
200
+ <ANCHOR id="G-FILE-ATTRIBUTE-STANDARD-NAME:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-NAME:CAPS">
201
+ <ANCHOR id="G-FILE-ATTRIBUTE-STANDARD-DISPLAY-NAME:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-DISPLAY-NAME:CAPS">
202
+ <ANCHOR id="G-FILE-ATTRIBUTE-STANDARD-EDIT-NAME:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-EDIT-NAME:CAPS">
203
+ <ANCHOR id="G-FILE-ATTRIBUTE-STANDARD-COPY-NAME:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-COPY-NAME:CAPS">
204
+ <ANCHOR id="G-FILE-ATTRIBUTE-STANDARD-ICON:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-ICON:CAPS">
205
+ <ANCHOR id="G-FILE-ATTRIBUTE-STANDARD-CONTENT-TYPE:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-CONTENT-TYPE:CAPS">
206
+ <ANCHOR id="G-FILE-ATTRIBUTE-STANDARD-FAST-CONTENT-TYPE:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-FAST-CONTENT-TYPE:CAPS">
207
+ <ANCHOR id="G-FILE-ATTRIBUTE-STANDARD-SIZE:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-SIZE:CAPS">
208
+ <ANCHOR id="G-FILE-ATTRIBUTE-STANDARD-ALLOCATED-SIZE:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-ALLOCATED-SIZE:CAPS">
209
+ <ANCHOR id="G-FILE-ATTRIBUTE-STANDARD-SYMLINK-TARGET:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-SYMLINK-TARGET:CAPS">
210
+ <ANCHOR id="G-FILE-ATTRIBUTE-STANDARD-TARGET-URI:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-TARGET-URI:CAPS">
211
+ <ANCHOR id="G-FILE-ATTRIBUTE-STANDARD-SORT-ORDER:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-SORT-ORDER:CAPS">
212
+ <ANCHOR id="G-FILE-ATTRIBUTE-ETAG-VALUE:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-ETAG-VALUE:CAPS">
213
+ <ANCHOR id="G-FILE-ATTRIBUTE-ID-FILE:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-ID-FILE:CAPS">
214
+ <ANCHOR id="G-FILE-ATTRIBUTE-ID-FILESYSTEM:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-ID-FILESYSTEM:CAPS">
215
+ <ANCHOR id="G-FILE-ATTRIBUTE-ACCESS-CAN-READ:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-ACCESS-CAN-READ:CAPS">
216
+ <ANCHOR id="G-FILE-ATTRIBUTE-ACCESS-CAN-WRITE:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-ACCESS-CAN-WRITE:CAPS">
217
+ <ANCHOR id="G-FILE-ATTRIBUTE-ACCESS-CAN-EXECUTE:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-ACCESS-CAN-EXECUTE:CAPS">
218
+ <ANCHOR id="G-FILE-ATTRIBUTE-ACCESS-CAN-DELETE:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-ACCESS-CAN-DELETE:CAPS">
219
+ <ANCHOR id="G-FILE-ATTRIBUTE-ACCESS-CAN-TRASH:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-ACCESS-CAN-TRASH:CAPS">
220
+ <ANCHOR id="G-FILE-ATTRIBUTE-ACCESS-CAN-RENAME:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-ACCESS-CAN-RENAME:CAPS">
221
+ <ANCHOR id="G-FILE-ATTRIBUTE-MOUNTABLE-CAN-MOUNT:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-MOUNTABLE-CAN-MOUNT:CAPS">
222
+ <ANCHOR id="G-FILE-ATTRIBUTE-MOUNTABLE-CAN-UNMOUNT:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-MOUNTABLE-CAN-UNMOUNT:CAPS">
223
+ <ANCHOR id="G-FILE-ATTRIBUTE-MOUNTABLE-CAN-EJECT:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-MOUNTABLE-CAN-EJECT:CAPS">
224
+ <ANCHOR id="G-FILE-ATTRIBUTE-MOUNTABLE-UNIX-DEVICE:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-MOUNTABLE-UNIX-DEVICE:CAPS">
225
+ <ANCHOR id="G-FILE-ATTRIBUTE-MOUNTABLE-UNIX-DEVICE-FILE:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-MOUNTABLE-UNIX-DEVICE-FILE:CAPS">
226
+ <ANCHOR id="G-FILE-ATTRIBUTE-MOUNTABLE-HAL-UDI:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-MOUNTABLE-HAL-UDI:CAPS">
227
+ <ANCHOR id="G-FILE-ATTRIBUTE-MOUNTABLE-CAN-POLL:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-MOUNTABLE-CAN-POLL:CAPS">
228
+ <ANCHOR id="G-FILE-ATTRIBUTE-MOUNTABLE-IS-MEDIA-CHECK-AUTOMATIC:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-MOUNTABLE-IS-MEDIA-CHECK-AUTOMATIC:CAPS">
229
+ <ANCHOR id="G-FILE-ATTRIBUTE-MOUNTABLE-CAN-START:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-MOUNTABLE-CAN-START:CAPS">
230
+ <ANCHOR id="G-FILE-ATTRIBUTE-MOUNTABLE-CAN-START-DEGRADED:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-MOUNTABLE-CAN-START-DEGRADED:CAPS">
231
+ <ANCHOR id="G-FILE-ATTRIBUTE-MOUNTABLE-CAN-STOP:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-MOUNTABLE-CAN-STOP:CAPS">
232
+ <ANCHOR id="G-FILE-ATTRIBUTE-MOUNTABLE-START-STOP-TYPE:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-MOUNTABLE-START-STOP-TYPE:CAPS">
233
+ <ANCHOR id="G-FILE-ATTRIBUTE-TIME-MODIFIED:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-TIME-MODIFIED:CAPS">
234
+ <ANCHOR id="G-FILE-ATTRIBUTE-TIME-MODIFIED-USEC:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-TIME-MODIFIED-USEC:CAPS">
235
+ <ANCHOR id="G-FILE-ATTRIBUTE-TIME-ACCESS:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-TIME-ACCESS:CAPS">
236
+ <ANCHOR id="G-FILE-ATTRIBUTE-TIME-ACCESS-USEC:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-TIME-ACCESS-USEC:CAPS">
237
+ <ANCHOR id="G-FILE-ATTRIBUTE-TIME-CHANGED:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-TIME-CHANGED:CAPS">
238
+ <ANCHOR id="G-FILE-ATTRIBUTE-TIME-CHANGED-USEC:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-TIME-CHANGED-USEC:CAPS">
239
+ <ANCHOR id="G-FILE-ATTRIBUTE-TIME-CREATED:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-TIME-CREATED:CAPS">
240
+ <ANCHOR id="G-FILE-ATTRIBUTE-TIME-CREATED-USEC:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-TIME-CREATED-USEC:CAPS">
241
+ <ANCHOR id="G-FILE-ATTRIBUTE-UNIX-DEVICE:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-UNIX-DEVICE:CAPS">
242
+ <ANCHOR id="G-FILE-ATTRIBUTE-UNIX-INODE:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-UNIX-INODE:CAPS">
243
+ <ANCHOR id="G-FILE-ATTRIBUTE-UNIX-MODE:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-UNIX-MODE:CAPS">
244
+ <ANCHOR id="G-FILE-ATTRIBUTE-UNIX-NLINK:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-UNIX-NLINK:CAPS">
245
+ <ANCHOR id="G-FILE-ATTRIBUTE-UNIX-UID:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-UNIX-UID:CAPS">
246
+ <ANCHOR id="G-FILE-ATTRIBUTE-UNIX-GID:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-UNIX-GID:CAPS">
247
+ <ANCHOR id="G-FILE-ATTRIBUTE-UNIX-RDEV:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-UNIX-RDEV:CAPS">
248
+ <ANCHOR id="G-FILE-ATTRIBUTE-UNIX-BLOCK-SIZE:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-UNIX-BLOCK-SIZE:CAPS">
249
+ <ANCHOR id="G-FILE-ATTRIBUTE-UNIX-BLOCKS:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-UNIX-BLOCKS:CAPS">
250
+ <ANCHOR id="G-FILE-ATTRIBUTE-UNIX-IS-MOUNTPOINT:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-UNIX-IS-MOUNTPOINT:CAPS">
251
+ <ANCHOR id="G-FILE-ATTRIBUTE-DOS-IS-ARCHIVE:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-DOS-IS-ARCHIVE:CAPS">
252
+ <ANCHOR id="G-FILE-ATTRIBUTE-DOS-IS-SYSTEM:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-DOS-IS-SYSTEM:CAPS">
253
+ <ANCHOR id="G-FILE-ATTRIBUTE-OWNER-USER:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-OWNER-USER:CAPS">
254
+ <ANCHOR id="G-FILE-ATTRIBUTE-OWNER-USER-REAL:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-OWNER-USER-REAL:CAPS">
255
+ <ANCHOR id="G-FILE-ATTRIBUTE-OWNER-GROUP:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-OWNER-GROUP:CAPS">
256
+ <ANCHOR id="G-FILE-ATTRIBUTE-THUMBNAIL-PATH:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-THUMBNAIL-PATH:CAPS">
257
+ <ANCHOR id="G-FILE-ATTRIBUTE-THUMBNAILING-FAILED:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-THUMBNAILING-FAILED:CAPS">
258
+ <ANCHOR id="G-FILE-ATTRIBUTE-PREVIEW-ICON:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-PREVIEW-ICON:CAPS">
259
+ <ANCHOR id="G-FILE-ATTRIBUTE-FILESYSTEM-SIZE:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-FILESYSTEM-SIZE:CAPS">
260
+ <ANCHOR id="G-FILE-ATTRIBUTE-FILESYSTEM-FREE:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-FILESYSTEM-FREE:CAPS">
261
+ <ANCHOR id="G-FILE-ATTRIBUTE-FILESYSTEM-TYPE:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-FILESYSTEM-TYPE:CAPS">
262
+ <ANCHOR id="G-FILE-ATTRIBUTE-FILESYSTEM-READONLY:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-FILESYSTEM-READONLY:CAPS">
263
+ <ANCHOR id="G-FILE-ATTRIBUTE-GVFS-BACKEND:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-GVFS-BACKEND:CAPS">
264
+ <ANCHOR id="G-FILE-ATTRIBUTE-SELINUX-CONTEXT:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-SELINUX-CONTEXT:CAPS">
265
+ <ANCHOR id="G-FILE-ATTRIBUTE-TRASH-ITEM-COUNT:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-TRASH-ITEM-COUNT:CAPS">
266
+ <ANCHOR id="G-FILE-ATTRIBUTE-TRASH-DELETION-DATE:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-TRASH-DELETION-DATE:CAPS">
267
+ <ANCHOR id="G-FILE-ATTRIBUTE-TRASH-ORIG-PATH:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-TRASH-ORIG-PATH:CAPS">
268
+ <ANCHOR id="G-FILE-ATTRIBUTE-FILESYSTEM-USE-PREVIEW:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-FILESYSTEM-USE-PREVIEW:CAPS">
269
+ <ANCHOR id="G-FILE-ATTRIBUTE-STANDARD-DESCRIPTION:CAPS" href="gio/GFileInfo.html#G-FILE-ATTRIBUTE-STANDARD-DESCRIPTION:CAPS">
270
+ <ANCHOR id="g-file-info-new" href="gio/GFileInfo.html#g-file-info-new">
271
+ <ANCHOR id="g-file-info-dup" href="gio/GFileInfo.html#g-file-info-dup">
272
+ <ANCHOR id="g-file-info-copy-into" href="gio/GFileInfo.html#g-file-info-copy-into">
273
+ <ANCHOR id="g-file-info-has-attribute" href="gio/GFileInfo.html#g-file-info-has-attribute">
274
+ <ANCHOR id="g-file-info-has-namespace" href="gio/GFileInfo.html#g-file-info-has-namespace">
275
+ <ANCHOR id="g-file-info-list-attributes" href="gio/GFileInfo.html#g-file-info-list-attributes">
276
+ <ANCHOR id="g-file-info-get-attribute-type" href="gio/GFileInfo.html#g-file-info-get-attribute-type">
277
+ <ANCHOR id="g-file-info-remove-attribute" href="gio/GFileInfo.html#g-file-info-remove-attribute">
278
+ <ANCHOR id="g-file-info-get-attribute-as-string" href="gio/GFileInfo.html#g-file-info-get-attribute-as-string">
279
+ <ANCHOR id="g-file-info-get-attribute-data" href="gio/GFileInfo.html#g-file-info-get-attribute-data">
280
+ <ANCHOR id="g-file-info-get-attribute-status" href="gio/GFileInfo.html#g-file-info-get-attribute-status">
281
+ <ANCHOR id="g-file-info-get-attribute-string" href="gio/GFileInfo.html#g-file-info-get-attribute-string">
282
+ <ANCHOR id="g-file-info-get-attribute-stringv" href="gio/GFileInfo.html#g-file-info-get-attribute-stringv">
283
+ <ANCHOR id="g-file-info-get-attribute-byte-string" href="gio/GFileInfo.html#g-file-info-get-attribute-byte-string">
284
+ <ANCHOR id="g-file-info-get-attribute-boolean" href="gio/GFileInfo.html#g-file-info-get-attribute-boolean">
285
+ <ANCHOR id="g-file-info-get-attribute-uint32" href="gio/GFileInfo.html#g-file-info-get-attribute-uint32">
286
+ <ANCHOR id="g-file-info-get-attribute-int32" href="gio/GFileInfo.html#g-file-info-get-attribute-int32">
287
+ <ANCHOR id="g-file-info-get-attribute-uint64" href="gio/GFileInfo.html#g-file-info-get-attribute-uint64">
288
+ <ANCHOR id="g-file-info-get-attribute-int64" href="gio/GFileInfo.html#g-file-info-get-attribute-int64">
289
+ <ANCHOR id="g-file-info-get-attribute-object" href="gio/GFileInfo.html#g-file-info-get-attribute-object">
290
+ <ANCHOR id="g-file-info-set-attribute" href="gio/GFileInfo.html#g-file-info-set-attribute">
291
+ <ANCHOR id="g-file-info-set-attribute-status" href="gio/GFileInfo.html#g-file-info-set-attribute-status">
292
+ <ANCHOR id="g-file-info-set-attribute-string" href="gio/GFileInfo.html#g-file-info-set-attribute-string">
293
+ <ANCHOR id="g-file-info-set-attribute-stringv" href="gio/GFileInfo.html#g-file-info-set-attribute-stringv">
294
+ <ANCHOR id="g-file-info-set-attribute-byte-string" href="gio/GFileInfo.html#g-file-info-set-attribute-byte-string">
295
+ <ANCHOR id="g-file-info-set-attribute-boolean" href="gio/GFileInfo.html#g-file-info-set-attribute-boolean">
296
+ <ANCHOR id="g-file-info-set-attribute-uint32" href="gio/GFileInfo.html#g-file-info-set-attribute-uint32">
297
+ <ANCHOR id="g-file-info-set-attribute-int32" href="gio/GFileInfo.html#g-file-info-set-attribute-int32">
298
+ <ANCHOR id="g-file-info-set-attribute-uint64" href="gio/GFileInfo.html#g-file-info-set-attribute-uint64">
299
+ <ANCHOR id="g-file-info-set-attribute-int64" href="gio/GFileInfo.html#g-file-info-set-attribute-int64">
300
+ <ANCHOR id="g-file-info-set-attribute-object" href="gio/GFileInfo.html#g-file-info-set-attribute-object">
301
+ <ANCHOR id="g-file-info-clear-status" href="gio/GFileInfo.html#g-file-info-clear-status">
302
+ <ANCHOR id="g-file-info-get-file-type" href="gio/GFileInfo.html#g-file-info-get-file-type">
303
+ <ANCHOR id="g-file-info-get-is-hidden" href="gio/GFileInfo.html#g-file-info-get-is-hidden">
304
+ <ANCHOR id="g-file-info-get-is-backup" href="gio/GFileInfo.html#g-file-info-get-is-backup">
305
+ <ANCHOR id="g-file-info-get-is-symlink" href="gio/GFileInfo.html#g-file-info-get-is-symlink">
306
+ <ANCHOR id="g-file-info-get-name" href="gio/GFileInfo.html#g-file-info-get-name">
307
+ <ANCHOR id="g-file-info-get-display-name" href="gio/GFileInfo.html#g-file-info-get-display-name">
308
+ <ANCHOR id="g-file-info-get-edit-name" href="gio/GFileInfo.html#g-file-info-get-edit-name">
309
+ <ANCHOR id="g-file-info-get-icon" href="gio/GFileInfo.html#g-file-info-get-icon">
310
+ <ANCHOR id="g-file-info-get-content-type" href="gio/GFileInfo.html#g-file-info-get-content-type">
311
+ <ANCHOR id="g-file-info-get-size" href="gio/GFileInfo.html#g-file-info-get-size">
312
+ <ANCHOR id="g-file-info-get-modification-time" href="gio/GFileInfo.html#g-file-info-get-modification-time">
313
+ <ANCHOR id="g-file-info-get-symlink-target" href="gio/GFileInfo.html#g-file-info-get-symlink-target">
314
+ <ANCHOR id="g-file-info-get-etag" href="gio/GFileInfo.html#g-file-info-get-etag">
315
+ <ANCHOR id="g-file-info-get-sort-order" href="gio/GFileInfo.html#g-file-info-get-sort-order">
316
+ <ANCHOR id="g-file-info-set-attribute-mask" href="gio/GFileInfo.html#g-file-info-set-attribute-mask">
317
+ <ANCHOR id="g-file-info-unset-attribute-mask" href="gio/GFileInfo.html#g-file-info-unset-attribute-mask">
318
+ <ANCHOR id="g-file-info-set-file-type" href="gio/GFileInfo.html#g-file-info-set-file-type">
319
+ <ANCHOR id="g-file-info-set-is-hidden" href="gio/GFileInfo.html#g-file-info-set-is-hidden">
320
+ <ANCHOR id="g-file-info-set-is-symlink" href="gio/GFileInfo.html#g-file-info-set-is-symlink">
321
+ <ANCHOR id="g-file-info-set-name" href="gio/GFileInfo.html#g-file-info-set-name">
322
+ <ANCHOR id="g-file-info-set-display-name" href="gio/GFileInfo.html#g-file-info-set-display-name">
323
+ <ANCHOR id="g-file-info-set-edit-name" href="gio/GFileInfo.html#g-file-info-set-edit-name">
324
+ <ANCHOR id="g-file-info-set-icon" href="gio/GFileInfo.html#g-file-info-set-icon">
325
+ <ANCHOR id="g-file-info-set-content-type" href="gio/GFileInfo.html#g-file-info-set-content-type">
326
+ <ANCHOR id="g-file-info-set-size" href="gio/GFileInfo.html#g-file-info-set-size">
327
+ <ANCHOR id="g-file-info-set-modification-time" href="gio/GFileInfo.html#g-file-info-set-modification-time">
328
+ <ANCHOR id="g-file-info-set-symlink-target" href="gio/GFileInfo.html#g-file-info-set-symlink-target">
329
+ <ANCHOR id="g-file-info-set-sort-order" href="gio/GFileInfo.html#g-file-info-set-sort-order">
330
+ <ANCHOR id="g-file-attribute-matcher-new" href="gio/GFileInfo.html#g-file-attribute-matcher-new">
331
+ <ANCHOR id="g-file-attribute-matcher-ref" href="gio/GFileInfo.html#g-file-attribute-matcher-ref">
332
+ <ANCHOR id="g-file-attribute-matcher-unref" href="gio/GFileInfo.html#g-file-attribute-matcher-unref">
333
+ <ANCHOR id="g-file-attribute-matcher-matches" href="gio/GFileInfo.html#g-file-attribute-matcher-matches">
334
+ <ANCHOR id="g-file-attribute-matcher-matches-only" href="gio/GFileInfo.html#g-file-attribute-matcher-matches-only">
335
+ <ANCHOR id="g-file-attribute-matcher-enumerate-namespace" href="gio/GFileInfo.html#g-file-attribute-matcher-enumerate-namespace">
336
+ <ANCHOR id="g-file-attribute-matcher-enumerate-next" href="gio/GFileInfo.html#g-file-attribute-matcher-enumerate-next">
337
+ <ANCHOR id="GFileInfo.see-also" href="gio/GFileInfo.html#GFileInfo.see-also">
338
+ <ANCHOR id="GFileEnumerator" href="gio/GFileEnumerator.html">
339
+ <ANCHOR id="GFileEnumerator.synopsis" href="gio/GFileEnumerator.html#GFileEnumerator.synopsis">
340
+ <ANCHOR id="GFileEnumerator.object-hierarchy" href="gio/GFileEnumerator.html#GFileEnumerator.object-hierarchy">
341
+ <ANCHOR id="GFileEnumerator.properties" href="gio/GFileEnumerator.html#GFileEnumerator.properties">
342
+ <ANCHOR id="GFileEnumerator.description" href="gio/GFileEnumerator.html#GFileEnumerator.description">
343
+ <ANCHOR id="GFileEnumerator.details" href="gio/GFileEnumerator.html#GFileEnumerator.details">
344
+ <ANCHOR id="GFileEnumerator-struct" href="gio/GFileEnumerator.html#GFileEnumerator-struct">
345
+ <ANCHOR id="g-file-enumerator-next-file" href="gio/GFileEnumerator.html#g-file-enumerator-next-file">
346
+ <ANCHOR id="g-file-enumerator-close" href="gio/GFileEnumerator.html#g-file-enumerator-close">
347
+ <ANCHOR id="g-file-enumerator-next-files-async" href="gio/GFileEnumerator.html#g-file-enumerator-next-files-async">
348
+ <ANCHOR id="g-file-enumerator-next-files-finish" href="gio/GFileEnumerator.html#g-file-enumerator-next-files-finish">
349
+ <ANCHOR id="g-file-enumerator-close-async" href="gio/GFileEnumerator.html#g-file-enumerator-close-async">
350
+ <ANCHOR id="g-file-enumerator-close-finish" href="gio/GFileEnumerator.html#g-file-enumerator-close-finish">
351
+ <ANCHOR id="g-file-enumerator-is-closed" href="gio/GFileEnumerator.html#g-file-enumerator-is-closed">
352
+ <ANCHOR id="g-file-enumerator-has-pending" href="gio/GFileEnumerator.html#g-file-enumerator-has-pending">
353
+ <ANCHOR id="g-file-enumerator-set-pending" href="gio/GFileEnumerator.html#g-file-enumerator-set-pending">
354
+ <ANCHOR id="g-file-enumerator-get-container" href="gio/GFileEnumerator.html#g-file-enumerator-get-container">
355
+ <ANCHOR id="GFileEnumerator.property-details" href="gio/GFileEnumerator.html#GFileEnumerator.property-details">
356
+ <ANCHOR id="GFileEnumerator--container" href="gio/GFileEnumerator.html#GFileEnumerator--container">
357
+ <ANCHOR id="gio-GIOError" href="gio/gio-GIOError.html">
358
+ <ANCHOR id="gio-GIOError.synopsis" href="gio/gio-GIOError.html#gio-GIOError.synopsis">
359
+ <ANCHOR id="gio-GIOError.description" href="gio/gio-GIOError.html#gio-GIOError.description">
360
+ <ANCHOR id="gio-GIOError.details" href="gio/gio-GIOError.html#gio-GIOError.details">
361
+ <ANCHOR id="G-IO-ERROR:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR:CAPS">
362
+ <ANCHOR id="GIOErrorEnum" href="gio/gio-GIOError.html#GIOErrorEnum">
363
+ <ANCHOR id="G-IO-ERROR-FAILED:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-FAILED:CAPS">
364
+ <ANCHOR id="G-IO-ERROR-NOT-FOUND:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-NOT-FOUND:CAPS">
365
+ <ANCHOR id="G-IO-ERROR-EXISTS:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-EXISTS:CAPS">
366
+ <ANCHOR id="G-IO-ERROR-IS-DIRECTORY:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-IS-DIRECTORY:CAPS">
367
+ <ANCHOR id="G-IO-ERROR-NOT-DIRECTORY:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-NOT-DIRECTORY:CAPS">
368
+ <ANCHOR id="G-IO-ERROR-NOT-EMPTY:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-NOT-EMPTY:CAPS">
369
+ <ANCHOR id="G-IO-ERROR-NOT-REGULAR-FILE:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-NOT-REGULAR-FILE:CAPS">
370
+ <ANCHOR id="G-IO-ERROR-NOT-SYMBOLIC-LINK:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-NOT-SYMBOLIC-LINK:CAPS">
371
+ <ANCHOR id="G-IO-ERROR-NOT-MOUNTABLE-FILE:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-NOT-MOUNTABLE-FILE:CAPS">
372
+ <ANCHOR id="G-IO-ERROR-FILENAME-TOO-LONG:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-FILENAME-TOO-LONG:CAPS">
373
+ <ANCHOR id="G-IO-ERROR-INVALID-FILENAME:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-INVALID-FILENAME:CAPS">
374
+ <ANCHOR id="G-IO-ERROR-TOO-MANY-LINKS:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-TOO-MANY-LINKS:CAPS">
375
+ <ANCHOR id="G-IO-ERROR-NO-SPACE:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-NO-SPACE:CAPS">
376
+ <ANCHOR id="G-IO-ERROR-INVALID-ARGUMENT:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-INVALID-ARGUMENT:CAPS">
377
+ <ANCHOR id="G-IO-ERROR-PERMISSION-DENIED:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-PERMISSION-DENIED:CAPS">
378
+ <ANCHOR id="G-IO-ERROR-NOT-SUPPORTED:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-NOT-SUPPORTED:CAPS">
379
+ <ANCHOR id="G-IO-ERROR-NOT-MOUNTED:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-NOT-MOUNTED:CAPS">
380
+ <ANCHOR id="G-IO-ERROR-ALREADY-MOUNTED:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-ALREADY-MOUNTED:CAPS">
381
+ <ANCHOR id="G-IO-ERROR-CLOSED:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-CLOSED:CAPS">
382
+ <ANCHOR id="G-IO-ERROR-CANCELLED:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-CANCELLED:CAPS">
383
+ <ANCHOR id="G-IO-ERROR-PENDING:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-PENDING:CAPS">
384
+ <ANCHOR id="G-IO-ERROR-READ-ONLY:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-READ-ONLY:CAPS">
385
+ <ANCHOR id="G-IO-ERROR-CANT-CREATE-BACKUP:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-CANT-CREATE-BACKUP:CAPS">
386
+ <ANCHOR id="G-IO-ERROR-WRONG-ETAG:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-WRONG-ETAG:CAPS">
387
+ <ANCHOR id="G-IO-ERROR-TIMED-OUT:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-TIMED-OUT:CAPS">
388
+ <ANCHOR id="G-IO-ERROR-WOULD-RECURSE:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-WOULD-RECURSE:CAPS">
389
+ <ANCHOR id="G-IO-ERROR-BUSY:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-BUSY:CAPS">
390
+ <ANCHOR id="G-IO-ERROR-WOULD-BLOCK:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-WOULD-BLOCK:CAPS">
391
+ <ANCHOR id="G-IO-ERROR-HOST-NOT-FOUND:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-HOST-NOT-FOUND:CAPS">
392
+ <ANCHOR id="G-IO-ERROR-WOULD-MERGE:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-WOULD-MERGE:CAPS">
393
+ <ANCHOR id="G-IO-ERROR-FAILED-HANDLED:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-FAILED-HANDLED:CAPS">
394
+ <ANCHOR id="G-IO-ERROR-TOO-MANY-OPEN-FILES:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-TOO-MANY-OPEN-FILES:CAPS">
395
+ <ANCHOR id="G-IO-ERROR-NOT-INITIALIZED:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-NOT-INITIALIZED:CAPS">
396
+ <ANCHOR id="G-IO-ERROR-ADDRESS-IN-USE:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-ADDRESS-IN-USE:CAPS">
397
+ <ANCHOR id="G-IO-ERROR-PARTIAL-INPUT:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-PARTIAL-INPUT:CAPS">
398
+ <ANCHOR id="G-IO-ERROR-INVALID-DATA:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-INVALID-DATA:CAPS">
399
+ <ANCHOR id="G-IO-ERROR-DBUS-ERROR:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-DBUS-ERROR:CAPS">
400
+ <ANCHOR id="G-IO-ERROR-HOST-UNREACHABLE:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-HOST-UNREACHABLE:CAPS">
401
+ <ANCHOR id="G-IO-ERROR-NETWORK-UNREACHABLE:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-NETWORK-UNREACHABLE:CAPS">
402
+ <ANCHOR id="G-IO-ERROR-CONNECTION-REFUSED:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-CONNECTION-REFUSED:CAPS">
403
+ <ANCHOR id="G-IO-ERROR-PROXY-FAILED:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-PROXY-FAILED:CAPS">
404
+ <ANCHOR id="G-IO-ERROR-PROXY-AUTH-FAILED:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-PROXY-AUTH-FAILED:CAPS">
405
+ <ANCHOR id="G-IO-ERROR-PROXY-NEED-AUTH:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-PROXY-NEED-AUTH:CAPS">
406
+ <ANCHOR id="G-IO-ERROR-PROXY-NOT-ALLOWED:CAPS" href="gio/gio-GIOError.html#G-IO-ERROR-PROXY-NOT-ALLOWED:CAPS">
407
+ <ANCHOR id="g-io-error-from-errno" href="gio/gio-GIOError.html#g-io-error-from-errno">
408
+ <ANCHOR id="g-io-error-from-win32-error" href="gio/gio-GIOError.html#g-io-error-from-win32-error">
409
+ <ANCHOR id="GMountOperation" href="gio/GMountOperation.html">
410
+ <ANCHOR id="GMountOperation.synopsis" href="gio/GMountOperation.html#GMountOperation.synopsis">
411
+ <ANCHOR id="GMountOperation.object-hierarchy" href="gio/GMountOperation.html#GMountOperation.object-hierarchy">
412
+ <ANCHOR id="GMountOperation.properties" href="gio/GMountOperation.html#GMountOperation.properties">
413
+ <ANCHOR id="GMountOperation.signals" href="gio/GMountOperation.html#GMountOperation.signals">
414
+ <ANCHOR id="GMountOperation.description" href="gio/GMountOperation.html#GMountOperation.description">
415
+ <ANCHOR id="GMountOperation.details" href="gio/GMountOperation.html#GMountOperation.details">
416
+ <ANCHOR id="GAskPasswordFlags" href="gio/GMountOperation.html#GAskPasswordFlags">
417
+ <ANCHOR id="G-ASK-PASSWORD-NEED-PASSWORD:CAPS" href="gio/GMountOperation.html#G-ASK-PASSWORD-NEED-PASSWORD:CAPS">
418
+ <ANCHOR id="G-ASK-PASSWORD-NEED-USERNAME:CAPS" href="gio/GMountOperation.html#G-ASK-PASSWORD-NEED-USERNAME:CAPS">
419
+ <ANCHOR id="G-ASK-PASSWORD-NEED-DOMAIN:CAPS" href="gio/GMountOperation.html#G-ASK-PASSWORD-NEED-DOMAIN:CAPS">
420
+ <ANCHOR id="G-ASK-PASSWORD-SAVING-SUPPORTED:CAPS" href="gio/GMountOperation.html#G-ASK-PASSWORD-SAVING-SUPPORTED:CAPS">
421
+ <ANCHOR id="G-ASK-PASSWORD-ANONYMOUS-SUPPORTED:CAPS" href="gio/GMountOperation.html#G-ASK-PASSWORD-ANONYMOUS-SUPPORTED:CAPS">
422
+ <ANCHOR id="GPasswordSave" href="gio/GMountOperation.html#GPasswordSave">
423
+ <ANCHOR id="G-PASSWORD-SAVE-NEVER:CAPS" href="gio/GMountOperation.html#G-PASSWORD-SAVE-NEVER:CAPS">
424
+ <ANCHOR id="G-PASSWORD-SAVE-FOR-SESSION:CAPS" href="gio/GMountOperation.html#G-PASSWORD-SAVE-FOR-SESSION:CAPS">
425
+ <ANCHOR id="G-PASSWORD-SAVE-PERMANENTLY:CAPS" href="gio/GMountOperation.html#G-PASSWORD-SAVE-PERMANENTLY:CAPS">
426
+ <ANCHOR id="GMountOperation-struct" href="gio/GMountOperation.html#GMountOperation-struct">
427
+ <ANCHOR id="GMountOperationResult" href="gio/GMountOperation.html#GMountOperationResult">
428
+ <ANCHOR id="G-MOUNT-OPERATION-HANDLED:CAPS" href="gio/GMountOperation.html#G-MOUNT-OPERATION-HANDLED:CAPS">
429
+ <ANCHOR id="G-MOUNT-OPERATION-ABORTED:CAPS" href="gio/GMountOperation.html#G-MOUNT-OPERATION-ABORTED:CAPS">
430
+ <ANCHOR id="G-MOUNT-OPERATION-UNHANDLED:CAPS" href="gio/GMountOperation.html#G-MOUNT-OPERATION-UNHANDLED:CAPS">
431
+ <ANCHOR id="g-mount-operation-new" href="gio/GMountOperation.html#g-mount-operation-new">
432
+ <ANCHOR id="g-mount-operation-get-username" href="gio/GMountOperation.html#g-mount-operation-get-username">
433
+ <ANCHOR id="g-mount-operation-set-username" href="gio/GMountOperation.html#g-mount-operation-set-username">
434
+ <ANCHOR id="g-mount-operation-get-password" href="gio/GMountOperation.html#g-mount-operation-get-password">
435
+ <ANCHOR id="g-mount-operation-set-password" href="gio/GMountOperation.html#g-mount-operation-set-password">
436
+ <ANCHOR id="g-mount-operation-get-anonymous" href="gio/GMountOperation.html#g-mount-operation-get-anonymous">
437
+ <ANCHOR id="g-mount-operation-set-anonymous" href="gio/GMountOperation.html#g-mount-operation-set-anonymous">
438
+ <ANCHOR id="g-mount-operation-get-domain" href="gio/GMountOperation.html#g-mount-operation-get-domain">
439
+ <ANCHOR id="g-mount-operation-set-domain" href="gio/GMountOperation.html#g-mount-operation-set-domain">
440
+ <ANCHOR id="g-mount-operation-get-password-save" href="gio/GMountOperation.html#g-mount-operation-get-password-save">
441
+ <ANCHOR id="g-mount-operation-set-password-save" href="gio/GMountOperation.html#g-mount-operation-set-password-save">
442
+ <ANCHOR id="g-mount-operation-get-choice" href="gio/GMountOperation.html#g-mount-operation-get-choice">
443
+ <ANCHOR id="g-mount-operation-set-choice" href="gio/GMountOperation.html#g-mount-operation-set-choice">
444
+ <ANCHOR id="g-mount-operation-reply" href="gio/GMountOperation.html#g-mount-operation-reply">
445
+ <ANCHOR id="GMountOperation.property-details" href="gio/GMountOperation.html#GMountOperation.property-details">
446
+ <ANCHOR id="GMountOperation--anonymous" href="gio/GMountOperation.html#GMountOperation--anonymous">
447
+ <ANCHOR id="GMountOperation--choice" href="gio/GMountOperation.html#GMountOperation--choice">
448
+ <ANCHOR id="GMountOperation--domain" href="gio/GMountOperation.html#GMountOperation--domain">
449
+ <ANCHOR id="GMountOperation--password" href="gio/GMountOperation.html#GMountOperation--password">
450
+ <ANCHOR id="GMountOperation--password-save" href="gio/GMountOperation.html#GMountOperation--password-save">
451
+ <ANCHOR id="GMountOperation--username" href="gio/GMountOperation.html#GMountOperation--username">
452
+ <ANCHOR id="GMountOperation.signal-details" href="gio/GMountOperation.html#GMountOperation.signal-details">
453
+ <ANCHOR id="GMountOperation-aborted" href="gio/GMountOperation.html#GMountOperation-aborted">
454
+ <ANCHOR id="GMountOperation-ask-password" href="gio/GMountOperation.html#GMountOperation-ask-password">
455
+ <ANCHOR id="GMountOperation-ask-question" href="gio/GMountOperation.html#GMountOperation-ask-question">
456
+ <ANCHOR id="GMountOperation-reply" href="gio/GMountOperation.html#GMountOperation-reply">
457
+ <ANCHOR id="GMountOperation-show-processes" href="gio/GMountOperation.html#GMountOperation-show-processes">
458
+ <ANCHOR id="GFileMonitor" href="gio/GFileMonitor.html">
459
+ <ANCHOR id="GFileMonitor.synopsis" href="gio/GFileMonitor.html#GFileMonitor.synopsis">
460
+ <ANCHOR id="GFileMonitor.object-hierarchy" href="gio/GFileMonitor.html#GFileMonitor.object-hierarchy">
461
+ <ANCHOR id="GFileMonitor.properties" href="gio/GFileMonitor.html#GFileMonitor.properties">
462
+ <ANCHOR id="GFileMonitor.signals" href="gio/GFileMonitor.html#GFileMonitor.signals">
463
+ <ANCHOR id="GFileMonitor.description" href="gio/GFileMonitor.html#GFileMonitor.description">
464
+ <ANCHOR id="GFileMonitor.details" href="gio/GFileMonitor.html#GFileMonitor.details">
465
+ <ANCHOR id="GFileMonitorEvent" href="gio/GFileMonitor.html#GFileMonitorEvent">
466
+ <ANCHOR id="G-FILE-MONITOR-EVENT-CHANGED:CAPS" href="gio/GFileMonitor.html#G-FILE-MONITOR-EVENT-CHANGED:CAPS">
467
+ <ANCHOR id="G-FILE-MONITOR-EVENT-CHANGES-DONE-HINT:CAPS" href="gio/GFileMonitor.html#G-FILE-MONITOR-EVENT-CHANGES-DONE-HINT:CAPS">
468
+ <ANCHOR id="G-FILE-MONITOR-EVENT-DELETED:CAPS" href="gio/GFileMonitor.html#G-FILE-MONITOR-EVENT-DELETED:CAPS">
469
+ <ANCHOR id="G-FILE-MONITOR-EVENT-CREATED:CAPS" href="gio/GFileMonitor.html#G-FILE-MONITOR-EVENT-CREATED:CAPS">
470
+ <ANCHOR id="G-FILE-MONITOR-EVENT-ATTRIBUTE-CHANGED:CAPS" href="gio/GFileMonitor.html#G-FILE-MONITOR-EVENT-ATTRIBUTE-CHANGED:CAPS">
471
+ <ANCHOR id="G-FILE-MONITOR-EVENT-PRE-UNMOUNT:CAPS" href="gio/GFileMonitor.html#G-FILE-MONITOR-EVENT-PRE-UNMOUNT:CAPS">
472
+ <ANCHOR id="G-FILE-MONITOR-EVENT-UNMOUNTED:CAPS" href="gio/GFileMonitor.html#G-FILE-MONITOR-EVENT-UNMOUNTED:CAPS">
473
+ <ANCHOR id="G-FILE-MONITOR-EVENT-MOVED:CAPS" href="gio/GFileMonitor.html#G-FILE-MONITOR-EVENT-MOVED:CAPS">
474
+ <ANCHOR id="GFileMonitor-struct" href="gio/GFileMonitor.html#GFileMonitor-struct">
475
+ <ANCHOR id="g-file-monitor-cancel" href="gio/GFileMonitor.html#g-file-monitor-cancel">
476
+ <ANCHOR id="g-file-monitor-is-cancelled" href="gio/GFileMonitor.html#g-file-monitor-is-cancelled">
477
+ <ANCHOR id="g-file-monitor-set-rate-limit" href="gio/GFileMonitor.html#g-file-monitor-set-rate-limit">
478
+ <ANCHOR id="g-file-monitor-emit-event" href="gio/GFileMonitor.html#g-file-monitor-emit-event">
479
+ <ANCHOR id="GFileMonitor.property-details" href="gio/GFileMonitor.html#GFileMonitor.property-details">
480
+ <ANCHOR id="GFileMonitor--cancelled" href="gio/GFileMonitor.html#GFileMonitor--cancelled">
481
+ <ANCHOR id="GFileMonitor--rate-limit" href="gio/GFileMonitor.html#GFileMonitor--rate-limit">
482
+ <ANCHOR id="GFileMonitor.signal-details" href="gio/GFileMonitor.html#GFileMonitor.signal-details">
483
+ <ANCHOR id="GFileMonitor-changed" href="gio/GFileMonitor.html#GFileMonitor-changed">
484
+ <ANCHOR id="GCancellable" href="gio/GCancellable.html">
485
+ <ANCHOR id="GCancellable.synopsis" href="gio/GCancellable.html#GCancellable.synopsis">
486
+ <ANCHOR id="GCancellable.object-hierarchy" href="gio/GCancellable.html#GCancellable.object-hierarchy">
487
+ <ANCHOR id="GCancellable.signals" href="gio/GCancellable.html#GCancellable.signals">
488
+ <ANCHOR id="GCancellable.description" href="gio/GCancellable.html#GCancellable.description">
489
+ <ANCHOR id="GCancellable.details" href="gio/GCancellable.html#GCancellable.details">
490
+ <ANCHOR id="GCancellable-struct" href="gio/GCancellable.html#GCancellable-struct">
491
+ <ANCHOR id="g-cancellable-new" href="gio/GCancellable.html#g-cancellable-new">
492
+ <ANCHOR id="g-cancellable-is-cancelled" href="gio/GCancellable.html#g-cancellable-is-cancelled">
493
+ <ANCHOR id="g-cancellable-set-error-if-cancelled" href="gio/GCancellable.html#g-cancellable-set-error-if-cancelled">
494
+ <ANCHOR id="g-cancellable-get-fd" href="gio/GCancellable.html#g-cancellable-get-fd">
495
+ <ANCHOR id="g-cancellable-make-pollfd" href="gio/GCancellable.html#g-cancellable-make-pollfd">
496
+ <ANCHOR id="g-cancellable-release-fd" href="gio/GCancellable.html#g-cancellable-release-fd">
497
+ <ANCHOR id="g-cancellable-get-current" href="gio/GCancellable.html#g-cancellable-get-current">
498
+ <ANCHOR id="g-cancellable-pop-current" href="gio/GCancellable.html#g-cancellable-pop-current">
499
+ <ANCHOR id="g-cancellable-push-current" href="gio/GCancellable.html#g-cancellable-push-current">
500
+ <ANCHOR id="g-cancellable-reset" href="gio/GCancellable.html#g-cancellable-reset">
501
+ <ANCHOR id="g-cancellable-connect" href="gio/GCancellable.html#g-cancellable-connect">
502
+ <ANCHOR id="g-cancellable-disconnect" href="gio/GCancellable.html#g-cancellable-disconnect">
503
+ <ANCHOR id="g-cancellable-cancel" href="gio/GCancellable.html#g-cancellable-cancel">
504
+ <ANCHOR id="GCancellable.signal-details" href="gio/GCancellable.html#GCancellable.signal-details">
505
+ <ANCHOR id="GCancellable-cancelled" href="gio/GCancellable.html#GCancellable-cancelled">
506
+ <ANCHOR id="GAsyncResult" href="gio/GAsyncResult.html">
507
+ <ANCHOR id="GAsyncResult.synopsis" href="gio/GAsyncResult.html#GAsyncResult.synopsis">
508
+ <ANCHOR id="GAsyncResult.object-hierarchy" href="gio/GAsyncResult.html#GAsyncResult.object-hierarchy">
509
+ <ANCHOR id="GAsyncResult.prerequisites" href="gio/GAsyncResult.html#GAsyncResult.prerequisites">
510
+ <ANCHOR id="GAsyncResult.implementations" href="gio/GAsyncResult.html#GAsyncResult.implementations">
511
+ <ANCHOR id="GAsyncResult.description" href="gio/GAsyncResult.html#GAsyncResult.description">
512
+ <ANCHOR id="GAsyncResult.details" href="gio/GAsyncResult.html#GAsyncResult.details">
513
+ <ANCHOR id="GAsyncResult-struct" href="gio/GAsyncResult.html#GAsyncResult-struct">
514
+ <ANCHOR id="GAsyncResultIface" href="gio/GAsyncResult.html#GAsyncResultIface">
515
+ <ANCHOR id="GAsyncReadyCallback" href="gio/GAsyncResult.html#GAsyncReadyCallback">
516
+ <ANCHOR id="g-async-result-get-user-data" href="gio/GAsyncResult.html#g-async-result-get-user-data">
517
+ <ANCHOR id="g-async-result-get-source-object" href="gio/GAsyncResult.html#g-async-result-get-source-object">
518
+ <ANCHOR id="GAsyncResult.see-also" href="gio/GAsyncResult.html#GAsyncResult.see-also">
519
+ <ANCHOR id="gio-GIOScheduler" href="gio/gio-GIOScheduler.html">
520
+ <ANCHOR id="gio-GIOScheduler.synopsis" href="gio/gio-GIOScheduler.html#gio-GIOScheduler.synopsis">
521
+ <ANCHOR id="gio-GIOScheduler.description" href="gio/gio-GIOScheduler.html#gio-GIOScheduler.description">
522
+ <ANCHOR id="gio-GIOScheduler.details" href="gio/gio-GIOScheduler.html#gio-GIOScheduler.details">
523
+ <ANCHOR id="GIOSchedulerJob" href="gio/gio-GIOScheduler.html#GIOSchedulerJob">
524
+ <ANCHOR id="GIOSchedulerJobFunc" href="gio/gio-GIOScheduler.html#GIOSchedulerJobFunc">
525
+ <ANCHOR id="g-io-scheduler-push-job" href="gio/gio-GIOScheduler.html#g-io-scheduler-push-job">
526
+ <ANCHOR id="g-io-scheduler-cancel-all-jobs" href="gio/gio-GIOScheduler.html#g-io-scheduler-cancel-all-jobs">
527
+ <ANCHOR id="g-io-scheduler-job-send-to-mainloop" href="gio/gio-GIOScheduler.html#g-io-scheduler-job-send-to-mainloop">
528
+ <ANCHOR id="g-io-scheduler-job-send-to-mainloop-async" href="gio/gio-GIOScheduler.html#g-io-scheduler-job-send-to-mainloop-async">
529
+ <ANCHOR id="GSimpleAsyncResult" href="gio/GSimpleAsyncResult.html">
530
+ <ANCHOR id="GSimpleAsyncResult.synopsis" href="gio/GSimpleAsyncResult.html#GSimpleAsyncResult.synopsis">
531
+ <ANCHOR id="GSimpleAsyncResult.object-hierarchy" href="gio/GSimpleAsyncResult.html#GSimpleAsyncResult.object-hierarchy">
532
+ <ANCHOR id="GSimpleAsyncResult.implemented-interfaces" href="gio/GSimpleAsyncResult.html#GSimpleAsyncResult.implemented-interfaces">
533
+ <ANCHOR id="GSimpleAsyncResult.description" href="gio/GSimpleAsyncResult.html#GSimpleAsyncResult.description">
534
+ <ANCHOR id="GSimpleAsyncResult.details" href="gio/GSimpleAsyncResult.html#GSimpleAsyncResult.details">
535
+ <ANCHOR id="GSimpleAsyncResult-struct" href="gio/GSimpleAsyncResult.html#GSimpleAsyncResult-struct">
536
+ <ANCHOR id="GSimpleAsyncThreadFunc" href="gio/GSimpleAsyncResult.html#GSimpleAsyncThreadFunc">
537
+ <ANCHOR id="g-simple-async-result-new" href="gio/GSimpleAsyncResult.html#g-simple-async-result-new">
538
+ <ANCHOR id="g-simple-async-result-new-error" href="gio/GSimpleAsyncResult.html#g-simple-async-result-new-error">
539
+ <ANCHOR id="g-simple-async-result-new-from-error" href="gio/GSimpleAsyncResult.html#g-simple-async-result-new-from-error">
540
+ <ANCHOR id="g-simple-async-result-set-op-res-gpointer" href="gio/GSimpleAsyncResult.html#g-simple-async-result-set-op-res-gpointer">
541
+ <ANCHOR id="g-simple-async-result-get-op-res-gpointer" href="gio/GSimpleAsyncResult.html#g-simple-async-result-get-op-res-gpointer">
542
+ <ANCHOR id="g-simple-async-result-set-op-res-gssize" href="gio/GSimpleAsyncResult.html#g-simple-async-result-set-op-res-gssize">
543
+ <ANCHOR id="g-simple-async-result-get-op-res-gssize" href="gio/GSimpleAsyncResult.html#g-simple-async-result-get-op-res-gssize">
544
+ <ANCHOR id="g-simple-async-result-set-op-res-gboolean" href="gio/GSimpleAsyncResult.html#g-simple-async-result-set-op-res-gboolean">
545
+ <ANCHOR id="g-simple-async-result-get-op-res-gboolean" href="gio/GSimpleAsyncResult.html#g-simple-async-result-get-op-res-gboolean">
546
+ <ANCHOR id="g-simple-async-result-get-source-tag" href="gio/GSimpleAsyncResult.html#g-simple-async-result-get-source-tag">
547
+ <ANCHOR id="g-simple-async-result-is-valid" href="gio/GSimpleAsyncResult.html#g-simple-async-result-is-valid">
548
+ <ANCHOR id="g-simple-async-result-set-handle-cancellation" href="gio/GSimpleAsyncResult.html#g-simple-async-result-set-handle-cancellation">
549
+ <ANCHOR id="g-simple-async-result-complete" href="gio/GSimpleAsyncResult.html#g-simple-async-result-complete">
550
+ <ANCHOR id="g-simple-async-result-complete-in-idle" href="gio/GSimpleAsyncResult.html#g-simple-async-result-complete-in-idle">
551
+ <ANCHOR id="g-simple-async-result-run-in-thread" href="gio/GSimpleAsyncResult.html#g-simple-async-result-run-in-thread">
552
+ <ANCHOR id="g-simple-async-result-set-from-error" href="gio/GSimpleAsyncResult.html#g-simple-async-result-set-from-error">
553
+ <ANCHOR id="g-simple-async-result-propagate-error" href="gio/GSimpleAsyncResult.html#g-simple-async-result-propagate-error">
554
+ <ANCHOR id="g-simple-async-result-set-error" href="gio/GSimpleAsyncResult.html#g-simple-async-result-set-error">
555
+ <ANCHOR id="g-simple-async-result-set-error-va" href="gio/GSimpleAsyncResult.html#g-simple-async-result-set-error-va">
556
+ <ANCHOR id="g-simple-async-report-error-in-idle" href="gio/GSimpleAsyncResult.html#g-simple-async-report-error-in-idle">
557
+ <ANCHOR id="g-simple-async-report-gerror-in-idle" href="gio/GSimpleAsyncResult.html#g-simple-async-report-gerror-in-idle">
558
+ <ANCHOR id="GSimpleAsyncResult.see-also" href="gio/GSimpleAsyncResult.html#GSimpleAsyncResult.see-also">
559
+ <ANCHOR id="GConverter" href="gio/GConverter.html">
560
+ <ANCHOR id="GConverter.synopsis" href="gio/GConverter.html#GConverter.synopsis">
561
+ <ANCHOR id="GConverter.object-hierarchy" href="gio/GConverter.html#GConverter.object-hierarchy">
562
+ <ANCHOR id="GConverter.prerequisites" href="gio/GConverter.html#GConverter.prerequisites">
563
+ <ANCHOR id="GConverter.implementations" href="gio/GConverter.html#GConverter.implementations">
564
+ <ANCHOR id="GConverter.description" href="gio/GConverter.html#GConverter.description">
565
+ <ANCHOR id="GConverter.details" href="gio/GConverter.html#GConverter.details">
566
+ <ANCHOR id="GConverter-struct" href="gio/GConverter.html#GConverter-struct">
567
+ <ANCHOR id="GConverterIface" href="gio/GConverter.html#GConverterIface">
568
+ <ANCHOR id="GConverterResult" href="gio/GConverter.html#GConverterResult">
569
+ <ANCHOR id="G-CONVERTER-ERROR:CAPS" href="gio/GConverter.html#G-CONVERTER-ERROR:CAPS">
570
+ <ANCHOR id="G-CONVERTER-CONVERTED:CAPS" href="gio/GConverter.html#G-CONVERTER-CONVERTED:CAPS">
571
+ <ANCHOR id="G-CONVERTER-FINISHED:CAPS" href="gio/GConverter.html#G-CONVERTER-FINISHED:CAPS">
572
+ <ANCHOR id="G-CONVERTER-FLUSHED:CAPS" href="gio/GConverter.html#G-CONVERTER-FLUSHED:CAPS">
573
+ <ANCHOR id="GConverterFlags" href="gio/GConverter.html#GConverterFlags">
574
+ <ANCHOR id="G-CONVERTER-NO-FLAGS:CAPS" href="gio/GConverter.html#G-CONVERTER-NO-FLAGS:CAPS">
575
+ <ANCHOR id="G-CONVERTER-INPUT-AT-END:CAPS" href="gio/GConverter.html#G-CONVERTER-INPUT-AT-END:CAPS">
576
+ <ANCHOR id="G-CONVERTER-FLUSH:CAPS" href="gio/GConverter.html#G-CONVERTER-FLUSH:CAPS">
577
+ <ANCHOR id="g-converter-convert" href="gio/GConverter.html#g-converter-convert">
578
+ <ANCHOR id="g-converter-reset" href="gio/GConverter.html#g-converter-reset">
579
+ <ANCHOR id="GConverter.see-also" href="gio/GConverter.html#GConverter.see-also">
580
+ <ANCHOR id="GCharsetConverter" href="gio/GCharsetConverter.html">
581
+ <ANCHOR id="GCharsetConverter.synopsis" href="gio/GCharsetConverter.html#GCharsetConverter.synopsis">
582
+ <ANCHOR id="GCharsetConverter.object-hierarchy" href="gio/GCharsetConverter.html#GCharsetConverter.object-hierarchy">
583
+ <ANCHOR id="GCharsetConverter.implemented-interfaces" href="gio/GCharsetConverter.html#GCharsetConverter.implemented-interfaces">
584
+ <ANCHOR id="GCharsetConverter.properties" href="gio/GCharsetConverter.html#GCharsetConverter.properties">
585
+ <ANCHOR id="GCharsetConverter.description" href="gio/GCharsetConverter.html#GCharsetConverter.description">
586
+ <ANCHOR id="GCharsetConverter.details" href="gio/GCharsetConverter.html#GCharsetConverter.details">
587
+ <ANCHOR id="GCharsetConverter-struct" href="gio/GCharsetConverter.html#GCharsetConverter-struct">
588
+ <ANCHOR id="g-charset-converter-new" href="gio/GCharsetConverter.html#g-charset-converter-new">
589
+ <ANCHOR id="g-charset-converter-set-use-fallback" href="gio/GCharsetConverter.html#g-charset-converter-set-use-fallback">
590
+ <ANCHOR id="g-charset-converter-get-use-fallback" href="gio/GCharsetConverter.html#g-charset-converter-get-use-fallback">
591
+ <ANCHOR id="g-charset-converter-get-num-fallbacks" href="gio/GCharsetConverter.html#g-charset-converter-get-num-fallbacks">
592
+ <ANCHOR id="GCharsetConverter.property-details" href="gio/GCharsetConverter.html#GCharsetConverter.property-details">
593
+ <ANCHOR id="GCharsetConverter--from-charset" href="gio/GCharsetConverter.html#GCharsetConverter--from-charset">
594
+ <ANCHOR id="GCharsetConverter--to-charset" href="gio/GCharsetConverter.html#GCharsetConverter--to-charset">
595
+ <ANCHOR id="GCharsetConverter--use-fallback" href="gio/GCharsetConverter.html#GCharsetConverter--use-fallback">
596
+ <ANCHOR id="GZlibCompressor" href="gio/GZlibCompressor.html">
597
+ <ANCHOR id="GZlibCompressor.synopsis" href="gio/GZlibCompressor.html#GZlibCompressor.synopsis">
598
+ <ANCHOR id="GZlibCompressor.object-hierarchy" href="gio/GZlibCompressor.html#GZlibCompressor.object-hierarchy">
599
+ <ANCHOR id="GZlibCompressor.implemented-interfaces" href="gio/GZlibCompressor.html#GZlibCompressor.implemented-interfaces">
600
+ <ANCHOR id="GZlibCompressor.properties" href="gio/GZlibCompressor.html#GZlibCompressor.properties">
601
+ <ANCHOR id="GZlibCompressor.description" href="gio/GZlibCompressor.html#GZlibCompressor.description">
602
+ <ANCHOR id="GZlibCompressor.details" href="gio/GZlibCompressor.html#GZlibCompressor.details">
603
+ <ANCHOR id="GZlibCompressor-struct" href="gio/GZlibCompressor.html#GZlibCompressor-struct">
604
+ <ANCHOR id="GZlibCompressorFormat" href="gio/GZlibCompressor.html#GZlibCompressorFormat">
605
+ <ANCHOR id="G-ZLIB-COMPRESSOR-FORMAT-ZLIB:CAPS" href="gio/GZlibCompressor.html#G-ZLIB-COMPRESSOR-FORMAT-ZLIB:CAPS">
606
+ <ANCHOR id="G-ZLIB-COMPRESSOR-FORMAT-GZIP:CAPS" href="gio/GZlibCompressor.html#G-ZLIB-COMPRESSOR-FORMAT-GZIP:CAPS">
607
+ <ANCHOR id="G-ZLIB-COMPRESSOR-FORMAT-RAW:CAPS" href="gio/GZlibCompressor.html#G-ZLIB-COMPRESSOR-FORMAT-RAW:CAPS">
608
+ <ANCHOR id="g-zlib-compressor-new" href="gio/GZlibCompressor.html#g-zlib-compressor-new">
609
+ <ANCHOR id="g-zlib-compressor-get-file-info" href="gio/GZlibCompressor.html#g-zlib-compressor-get-file-info">
610
+ <ANCHOR id="g-zlib-compressor-set-file-info" href="gio/GZlibCompressor.html#g-zlib-compressor-set-file-info">
611
+ <ANCHOR id="GZlibCompressor.property-details" href="gio/GZlibCompressor.html#GZlibCompressor.property-details">
612
+ <ANCHOR id="GZlibCompressor--file-info" href="gio/GZlibCompressor.html#GZlibCompressor--file-info">
613
+ <ANCHOR id="GZlibCompressor--format" href="gio/GZlibCompressor.html#GZlibCompressor--format">
614
+ <ANCHOR id="GZlibCompressor--level" href="gio/GZlibCompressor.html#GZlibCompressor--level">
615
+ <ANCHOR id="GZlibDecompressor" href="gio/GZlibDecompressor.html">
616
+ <ANCHOR id="GZlibDecompressor.synopsis" href="gio/GZlibDecompressor.html#GZlibDecompressor.synopsis">
617
+ <ANCHOR id="GZlibDecompressor.object-hierarchy" href="gio/GZlibDecompressor.html#GZlibDecompressor.object-hierarchy">
618
+ <ANCHOR id="GZlibDecompressor.implemented-interfaces" href="gio/GZlibDecompressor.html#GZlibDecompressor.implemented-interfaces">
619
+ <ANCHOR id="GZlibDecompressor.properties" href="gio/GZlibDecompressor.html#GZlibDecompressor.properties">
620
+ <ANCHOR id="GZlibDecompressor.description" href="gio/GZlibDecompressor.html#GZlibDecompressor.description">
621
+ <ANCHOR id="GZlibDecompressor.details" href="gio/GZlibDecompressor.html#GZlibDecompressor.details">
622
+ <ANCHOR id="GZlibDecompressor-struct" href="gio/GZlibDecompressor.html#GZlibDecompressor-struct">
623
+ <ANCHOR id="g-zlib-decompressor-new" href="gio/GZlibDecompressor.html#g-zlib-decompressor-new">
624
+ <ANCHOR id="g-zlib-decompressor-get-file-info" href="gio/GZlibDecompressor.html#g-zlib-decompressor-get-file-info">
625
+ <ANCHOR id="GZlibDecompressor.property-details" href="gio/GZlibDecompressor.html#GZlibDecompressor.property-details">
626
+ <ANCHOR id="GZlibDecompressor--file-info" href="gio/GZlibDecompressor.html#GZlibDecompressor--file-info">
627
+ <ANCHOR id="GZlibDecompressor--format" href="gio/GZlibDecompressor.html#GZlibDecompressor--format">
628
+ <ANCHOR id="GSeekable" href="gio/GSeekable.html">
629
+ <ANCHOR id="GSeekable.synopsis" href="gio/GSeekable.html#GSeekable.synopsis">
630
+ <ANCHOR id="GSeekable.object-hierarchy" href="gio/GSeekable.html#GSeekable.object-hierarchy">
631
+ <ANCHOR id="GSeekable.prerequisites" href="gio/GSeekable.html#GSeekable.prerequisites">
632
+ <ANCHOR id="GSeekable.implementations" href="gio/GSeekable.html#GSeekable.implementations">
633
+ <ANCHOR id="GSeekable.description" href="gio/GSeekable.html#GSeekable.description">
634
+ <ANCHOR id="GSeekable.details" href="gio/GSeekable.html#GSeekable.details">
635
+ <ANCHOR id="GSeekable-struct" href="gio/GSeekable.html#GSeekable-struct">
636
+ <ANCHOR id="GSeekableIface" href="gio/GSeekable.html#GSeekableIface">
637
+ <ANCHOR id="g-seekable-tell" href="gio/GSeekable.html#g-seekable-tell">
638
+ <ANCHOR id="g-seekable-can-seek" href="gio/GSeekable.html#g-seekable-can-seek">
639
+ <ANCHOR id="g-seekable-seek" href="gio/GSeekable.html#g-seekable-seek">
640
+ <ANCHOR id="g-seekable-can-truncate" href="gio/GSeekable.html#g-seekable-can-truncate">
641
+ <ANCHOR id="g-seekable-truncate" href="gio/GSeekable.html#g-seekable-truncate">
642
+ <ANCHOR id="GSeekable.see-also" href="gio/GSeekable.html#GSeekable.see-also">
643
+ <ANCHOR id="GInputStream" href="gio/GInputStream.html">
644
+ <ANCHOR id="GInputStream.synopsis" href="gio/GInputStream.html#GInputStream.synopsis">
645
+ <ANCHOR id="GInputStream.object-hierarchy" href="gio/GInputStream.html#GInputStream.object-hierarchy">
646
+ <ANCHOR id="GInputStream.description" href="gio/GInputStream.html#GInputStream.description">
647
+ <ANCHOR id="GInputStream.details" href="gio/GInputStream.html#GInputStream.details">
648
+ <ANCHOR id="GInputStream-struct" href="gio/GInputStream.html#GInputStream-struct">
649
+ <ANCHOR id="g-input-stream-read" href="gio/GInputStream.html#g-input-stream-read">
650
+ <ANCHOR id="g-input-stream-read-all" href="gio/GInputStream.html#g-input-stream-read-all">
651
+ <ANCHOR id="g-input-stream-skip" href="gio/GInputStream.html#g-input-stream-skip">
652
+ <ANCHOR id="g-input-stream-close" href="gio/GInputStream.html#g-input-stream-close">
653
+ <ANCHOR id="g-input-stream-read-async" href="gio/GInputStream.html#g-input-stream-read-async">
654
+ <ANCHOR id="g-input-stream-read-finish" href="gio/GInputStream.html#g-input-stream-read-finish">
655
+ <ANCHOR id="g-input-stream-skip-async" href="gio/GInputStream.html#g-input-stream-skip-async">
656
+ <ANCHOR id="g-input-stream-skip-finish" href="gio/GInputStream.html#g-input-stream-skip-finish">
657
+ <ANCHOR id="g-input-stream-close-async" href="gio/GInputStream.html#g-input-stream-close-async">
658
+ <ANCHOR id="g-input-stream-close-finish" href="gio/GInputStream.html#g-input-stream-close-finish">
659
+ <ANCHOR id="g-input-stream-is-closed" href="gio/GInputStream.html#g-input-stream-is-closed">
660
+ <ANCHOR id="g-input-stream-has-pending" href="gio/GInputStream.html#g-input-stream-has-pending">
661
+ <ANCHOR id="g-input-stream-set-pending" href="gio/GInputStream.html#g-input-stream-set-pending">
662
+ <ANCHOR id="g-input-stream-clear-pending" href="gio/GInputStream.html#g-input-stream-clear-pending">
663
+ <ANCHOR id="GOutputStream" href="gio/GOutputStream.html">
664
+ <ANCHOR id="GOutputStream.synopsis" href="gio/GOutputStream.html#GOutputStream.synopsis">
665
+ <ANCHOR id="GOutputStream.object-hierarchy" href="gio/GOutputStream.html#GOutputStream.object-hierarchy">
666
+ <ANCHOR id="GOutputStream.description" href="gio/GOutputStream.html#GOutputStream.description">
667
+ <ANCHOR id="GOutputStream.details" href="gio/GOutputStream.html#GOutputStream.details">
668
+ <ANCHOR id="GOutputStreamSpliceFlags" href="gio/GOutputStream.html#GOutputStreamSpliceFlags">
669
+ <ANCHOR id="G-OUTPUT-STREAM-SPLICE-NONE:CAPS" href="gio/GOutputStream.html#G-OUTPUT-STREAM-SPLICE-NONE:CAPS">
670
+ <ANCHOR id="G-OUTPUT-STREAM-SPLICE-CLOSE-SOURCE:CAPS" href="gio/GOutputStream.html#G-OUTPUT-STREAM-SPLICE-CLOSE-SOURCE:CAPS">
671
+ <ANCHOR id="G-OUTPUT-STREAM-SPLICE-CLOSE-TARGET:CAPS" href="gio/GOutputStream.html#G-OUTPUT-STREAM-SPLICE-CLOSE-TARGET:CAPS">
672
+ <ANCHOR id="GOutputStream-struct" href="gio/GOutputStream.html#GOutputStream-struct">
673
+ <ANCHOR id="g-output-stream-write" href="gio/GOutputStream.html#g-output-stream-write">
674
+ <ANCHOR id="g-output-stream-write-all" href="gio/GOutputStream.html#g-output-stream-write-all">
675
+ <ANCHOR id="g-output-stream-splice" href="gio/GOutputStream.html#g-output-stream-splice">
676
+ <ANCHOR id="g-output-stream-flush" href="gio/GOutputStream.html#g-output-stream-flush">
677
+ <ANCHOR id="g-output-stream-close" href="gio/GOutputStream.html#g-output-stream-close">
678
+ <ANCHOR id="g-output-stream-write-async" href="gio/GOutputStream.html#g-output-stream-write-async">
679
+ <ANCHOR id="g-output-stream-write-finish" href="gio/GOutputStream.html#g-output-stream-write-finish">
680
+ <ANCHOR id="g-output-stream-splice-async" href="gio/GOutputStream.html#g-output-stream-splice-async">
681
+ <ANCHOR id="g-output-stream-splice-finish" href="gio/GOutputStream.html#g-output-stream-splice-finish">
682
+ <ANCHOR id="g-output-stream-flush-async" href="gio/GOutputStream.html#g-output-stream-flush-async">
683
+ <ANCHOR id="g-output-stream-flush-finish" href="gio/GOutputStream.html#g-output-stream-flush-finish">
684
+ <ANCHOR id="g-output-stream-close-async" href="gio/GOutputStream.html#g-output-stream-close-async">
685
+ <ANCHOR id="g-output-stream-close-finish" href="gio/GOutputStream.html#g-output-stream-close-finish">
686
+ <ANCHOR id="g-output-stream-is-closing" href="gio/GOutputStream.html#g-output-stream-is-closing">
687
+ <ANCHOR id="g-output-stream-is-closed" href="gio/GOutputStream.html#g-output-stream-is-closed">
688
+ <ANCHOR id="g-output-stream-has-pending" href="gio/GOutputStream.html#g-output-stream-has-pending">
689
+ <ANCHOR id="g-output-stream-set-pending" href="gio/GOutputStream.html#g-output-stream-set-pending">
690
+ <ANCHOR id="g-output-stream-clear-pending" href="gio/GOutputStream.html#g-output-stream-clear-pending">
691
+ <ANCHOR id="GIOStream" href="gio/GIOStream.html">
692
+ <ANCHOR id="GIOStream.synopsis" href="gio/GIOStream.html#GIOStream.synopsis">
693
+ <ANCHOR id="GIOStream.object-hierarchy" href="gio/GIOStream.html#GIOStream.object-hierarchy">
694
+ <ANCHOR id="GIOStream.properties" href="gio/GIOStream.html#GIOStream.properties">
695
+ <ANCHOR id="GIOStream.description" href="gio/GIOStream.html#GIOStream.description">
696
+ <ANCHOR id="GIOStream.details" href="gio/GIOStream.html#GIOStream.details">
697
+ <ANCHOR id="GIOStream-struct" href="gio/GIOStream.html#GIOStream-struct">
698
+ <ANCHOR id="g-io-stream-get-input-stream" href="gio/GIOStream.html#g-io-stream-get-input-stream">
699
+ <ANCHOR id="g-io-stream-get-output-stream" href="gio/GIOStream.html#g-io-stream-get-output-stream">
700
+ <ANCHOR id="g-io-stream-close" href="gio/GIOStream.html#g-io-stream-close">
701
+ <ANCHOR id="g-io-stream-close-async" href="gio/GIOStream.html#g-io-stream-close-async">
702
+ <ANCHOR id="g-io-stream-close-finish" href="gio/GIOStream.html#g-io-stream-close-finish">
703
+ <ANCHOR id="g-io-stream-is-closed" href="gio/GIOStream.html#g-io-stream-is-closed">
704
+ <ANCHOR id="g-io-stream-has-pending" href="gio/GIOStream.html#g-io-stream-has-pending">
705
+ <ANCHOR id="g-io-stream-set-pending" href="gio/GIOStream.html#g-io-stream-set-pending">
706
+ <ANCHOR id="g-io-stream-clear-pending" href="gio/GIOStream.html#g-io-stream-clear-pending">
707
+ <ANCHOR id="GIOStream.property-details" href="gio/GIOStream.html#GIOStream.property-details">
708
+ <ANCHOR id="GIOStream--closed" href="gio/GIOStream.html#GIOStream--closed">
709
+ <ANCHOR id="GIOStream--input-stream" href="gio/GIOStream.html#GIOStream--input-stream">
710
+ <ANCHOR id="GIOStream--output-stream" href="gio/GIOStream.html#GIOStream--output-stream">
711
+ <ANCHOR id="GIOStream.see-also" href="gio/GIOStream.html#GIOStream.see-also">
712
+ <ANCHOR id="GFileInputStream" href="gio/GFileInputStream.html">
713
+ <ANCHOR id="GFileInputStream.synopsis" href="gio/GFileInputStream.html#GFileInputStream.synopsis">
714
+ <ANCHOR id="GFileInputStream.object-hierarchy" href="gio/GFileInputStream.html#GFileInputStream.object-hierarchy">
715
+ <ANCHOR id="GFileInputStream.implemented-interfaces" href="gio/GFileInputStream.html#GFileInputStream.implemented-interfaces">
716
+ <ANCHOR id="GFileInputStream.description" href="gio/GFileInputStream.html#GFileInputStream.description">
717
+ <ANCHOR id="GFileInputStream.details" href="gio/GFileInputStream.html#GFileInputStream.details">
718
+ <ANCHOR id="GFileInputStream-struct" href="gio/GFileInputStream.html#GFileInputStream-struct">
719
+ <ANCHOR id="g-file-input-stream-query-info" href="gio/GFileInputStream.html#g-file-input-stream-query-info">
720
+ <ANCHOR id="g-file-input-stream-query-info-async" href="gio/GFileInputStream.html#g-file-input-stream-query-info-async">
721
+ <ANCHOR id="g-file-input-stream-query-info-finish" href="gio/GFileInputStream.html#g-file-input-stream-query-info-finish">
722
+ <ANCHOR id="GFileInputStream.see-also" href="gio/GFileInputStream.html#GFileInputStream.see-also">
723
+ <ANCHOR id="GFileOutputStream" href="gio/GFileOutputStream.html">
724
+ <ANCHOR id="GFileOutputStream.synopsis" href="gio/GFileOutputStream.html#GFileOutputStream.synopsis">
725
+ <ANCHOR id="GFileOutputStream.object-hierarchy" href="gio/GFileOutputStream.html#GFileOutputStream.object-hierarchy">
726
+ <ANCHOR id="GFileOutputStream.implemented-interfaces" href="gio/GFileOutputStream.html#GFileOutputStream.implemented-interfaces">
727
+ <ANCHOR id="GFileOutputStream.description" href="gio/GFileOutputStream.html#GFileOutputStream.description">
728
+ <ANCHOR id="GFileOutputStream.details" href="gio/GFileOutputStream.html#GFileOutputStream.details">
729
+ <ANCHOR id="GFileOutputStream-struct" href="gio/GFileOutputStream.html#GFileOutputStream-struct">
730
+ <ANCHOR id="g-file-output-stream-query-info" href="gio/GFileOutputStream.html#g-file-output-stream-query-info">
731
+ <ANCHOR id="g-file-output-stream-query-info-async" href="gio/GFileOutputStream.html#g-file-output-stream-query-info-async">
732
+ <ANCHOR id="g-file-output-stream-query-info-finish" href="gio/GFileOutputStream.html#g-file-output-stream-query-info-finish">
733
+ <ANCHOR id="g-file-output-stream-get-etag" href="gio/GFileOutputStream.html#g-file-output-stream-get-etag">
734
+ <ANCHOR id="GFileOutputStream.see-also" href="gio/GFileOutputStream.html#GFileOutputStream.see-also">
735
+ <ANCHOR id="GFileIOStream" href="gio/GFileIOStream.html">
736
+ <ANCHOR id="GFileIOStream.synopsis" href="gio/GFileIOStream.html#GFileIOStream.synopsis">
737
+ <ANCHOR id="GFileIOStream.object-hierarchy" href="gio/GFileIOStream.html#GFileIOStream.object-hierarchy">
738
+ <ANCHOR id="GFileIOStream.implemented-interfaces" href="gio/GFileIOStream.html#GFileIOStream.implemented-interfaces">
739
+ <ANCHOR id="GFileIOStream.description" href="gio/GFileIOStream.html#GFileIOStream.description">
740
+ <ANCHOR id="GFileIOStream.details" href="gio/GFileIOStream.html#GFileIOStream.details">
741
+ <ANCHOR id="GFileIOStream-struct" href="gio/GFileIOStream.html#GFileIOStream-struct">
742
+ <ANCHOR id="g-file-io-stream-get-etag" href="gio/GFileIOStream.html#g-file-io-stream-get-etag">
743
+ <ANCHOR id="g-file-io-stream-query-info" href="gio/GFileIOStream.html#g-file-io-stream-query-info">
744
+ <ANCHOR id="g-file-io-stream-query-info-async" href="gio/GFileIOStream.html#g-file-io-stream-query-info-async">
745
+ <ANCHOR id="g-file-io-stream-query-info-finish" href="gio/GFileIOStream.html#g-file-io-stream-query-info-finish">
746
+ <ANCHOR id="GFileIOStream.see-also" href="gio/GFileIOStream.html#GFileIOStream.see-also">
747
+ <ANCHOR id="GFileDescriptorBased" href="gio/GFileDescriptorBased.html">
748
+ <ANCHOR id="GFileDescriptorBased.synopsis" href="gio/GFileDescriptorBased.html#GFileDescriptorBased.synopsis">
749
+ <ANCHOR id="GFileDescriptorBased.object-hierarchy" href="gio/GFileDescriptorBased.html#GFileDescriptorBased.object-hierarchy">
750
+ <ANCHOR id="GFileDescriptorBased.prerequisites" href="gio/GFileDescriptorBased.html#GFileDescriptorBased.prerequisites">
751
+ <ANCHOR id="GFileDescriptorBased.description" href="gio/GFileDescriptorBased.html#GFileDescriptorBased.description">
752
+ <ANCHOR id="GFileDescriptorBased.details" href="gio/GFileDescriptorBased.html#GFileDescriptorBased.details">
753
+ <ANCHOR id="GFileDescriptorBased-struct" href="gio/GFileDescriptorBased.html#GFileDescriptorBased-struct">
754
+ <ANCHOR id="g-file-descriptor-based-get-fd" href="gio/GFileDescriptorBased.html#g-file-descriptor-based-get-fd">
755
+ <ANCHOR id="GFileDescriptorBased.see-also" href="gio/GFileDescriptorBased.html#GFileDescriptorBased.see-also">
756
+ <ANCHOR id="GFilterInputStream" href="gio/GFilterInputStream.html">
757
+ <ANCHOR id="GFilterInputStream.synopsis" href="gio/GFilterInputStream.html#GFilterInputStream.synopsis">
758
+ <ANCHOR id="GFilterInputStream.object-hierarchy" href="gio/GFilterInputStream.html#GFilterInputStream.object-hierarchy">
759
+ <ANCHOR id="GFilterInputStream.properties" href="gio/GFilterInputStream.html#GFilterInputStream.properties">
760
+ <ANCHOR id="GFilterInputStream.description" href="gio/GFilterInputStream.html#GFilterInputStream.description">
761
+ <ANCHOR id="GFilterInputStream.details" href="gio/GFilterInputStream.html#GFilterInputStream.details">
762
+ <ANCHOR id="GFilterInputStream-struct" href="gio/GFilterInputStream.html#GFilterInputStream-struct">
763
+ <ANCHOR id="g-filter-input-stream-get-base-stream" href="gio/GFilterInputStream.html#g-filter-input-stream-get-base-stream">
764
+ <ANCHOR id="g-filter-input-stream-get-close-base-stream" href="gio/GFilterInputStream.html#g-filter-input-stream-get-close-base-stream">
765
+ <ANCHOR id="g-filter-input-stream-set-close-base-stream" href="gio/GFilterInputStream.html#g-filter-input-stream-set-close-base-stream">
766
+ <ANCHOR id="GFilterInputStream.property-details" href="gio/GFilterInputStream.html#GFilterInputStream.property-details">
767
+ <ANCHOR id="GFilterInputStream--base-stream" href="gio/GFilterInputStream.html#GFilterInputStream--base-stream">
768
+ <ANCHOR id="GFilterInputStream--close-base-stream" href="gio/GFilterInputStream.html#GFilterInputStream--close-base-stream">
769
+ <ANCHOR id="GFilterOutputStream" href="gio/GFilterOutputStream.html">
770
+ <ANCHOR id="GFilterOutputStream.synopsis" href="gio/GFilterOutputStream.html#GFilterOutputStream.synopsis">
771
+ <ANCHOR id="GFilterOutputStream.object-hierarchy" href="gio/GFilterOutputStream.html#GFilterOutputStream.object-hierarchy">
772
+ <ANCHOR id="GFilterOutputStream.properties" href="gio/GFilterOutputStream.html#GFilterOutputStream.properties">
773
+ <ANCHOR id="GFilterOutputStream.description" href="gio/GFilterOutputStream.html#GFilterOutputStream.description">
774
+ <ANCHOR id="GFilterOutputStream.details" href="gio/GFilterOutputStream.html#GFilterOutputStream.details">
775
+ <ANCHOR id="GFilterOutputStream-struct" href="gio/GFilterOutputStream.html#GFilterOutputStream-struct">
776
+ <ANCHOR id="g-filter-output-stream-get-base-stream" href="gio/GFilterOutputStream.html#g-filter-output-stream-get-base-stream">
777
+ <ANCHOR id="g-filter-output-stream-get-close-base-stream" href="gio/GFilterOutputStream.html#g-filter-output-stream-get-close-base-stream">
778
+ <ANCHOR id="g-filter-output-stream-set-close-base-stream" href="gio/GFilterOutputStream.html#g-filter-output-stream-set-close-base-stream">
779
+ <ANCHOR id="GFilterOutputStream.property-details" href="gio/GFilterOutputStream.html#GFilterOutputStream.property-details">
780
+ <ANCHOR id="GFilterOutputStream--base-stream" href="gio/GFilterOutputStream.html#GFilterOutputStream--base-stream">
781
+ <ANCHOR id="GFilterOutputStream--close-base-stream" href="gio/GFilterOutputStream.html#GFilterOutputStream--close-base-stream">
782
+ <ANCHOR id="GMemoryInputStream" href="gio/GMemoryInputStream.html">
783
+ <ANCHOR id="GMemoryInputStream.synopsis" href="gio/GMemoryInputStream.html#GMemoryInputStream.synopsis">
784
+ <ANCHOR id="GMemoryInputStream.object-hierarchy" href="gio/GMemoryInputStream.html#GMemoryInputStream.object-hierarchy">
785
+ <ANCHOR id="GMemoryInputStream.implemented-interfaces" href="gio/GMemoryInputStream.html#GMemoryInputStream.implemented-interfaces">
786
+ <ANCHOR id="GMemoryInputStream.description" href="gio/GMemoryInputStream.html#GMemoryInputStream.description">
787
+ <ANCHOR id="GMemoryInputStream.details" href="gio/GMemoryInputStream.html#GMemoryInputStream.details">
788
+ <ANCHOR id="GMemoryInputStream-struct" href="gio/GMemoryInputStream.html#GMemoryInputStream-struct">
789
+ <ANCHOR id="g-memory-input-stream-new" href="gio/GMemoryInputStream.html#g-memory-input-stream-new">
790
+ <ANCHOR id="g-memory-input-stream-new-from-data" href="gio/GMemoryInputStream.html#g-memory-input-stream-new-from-data">
791
+ <ANCHOR id="g-memory-input-stream-add-data" href="gio/GMemoryInputStream.html#g-memory-input-stream-add-data">
792
+ <ANCHOR id="GMemoryInputStream.see-also" href="gio/GMemoryInputStream.html#GMemoryInputStream.see-also">
793
+ <ANCHOR id="GMemoryOutputStream" href="gio/GMemoryOutputStream.html">
794
+ <ANCHOR id="GMemoryOutputStream.synopsis" href="gio/GMemoryOutputStream.html#GMemoryOutputStream.synopsis">
795
+ <ANCHOR id="GMemoryOutputStream.object-hierarchy" href="gio/GMemoryOutputStream.html#GMemoryOutputStream.object-hierarchy">
796
+ <ANCHOR id="GMemoryOutputStream.implemented-interfaces" href="gio/GMemoryOutputStream.html#GMemoryOutputStream.implemented-interfaces">
797
+ <ANCHOR id="GMemoryOutputStream.properties" href="gio/GMemoryOutputStream.html#GMemoryOutputStream.properties">
798
+ <ANCHOR id="GMemoryOutputStream.description" href="gio/GMemoryOutputStream.html#GMemoryOutputStream.description">
799
+ <ANCHOR id="GMemoryOutputStream.details" href="gio/GMemoryOutputStream.html#GMemoryOutputStream.details">
800
+ <ANCHOR id="GReallocFunc" href="gio/GMemoryOutputStream.html#GReallocFunc">
801
+ <ANCHOR id="GMemoryOutputStream-struct" href="gio/GMemoryOutputStream.html#GMemoryOutputStream-struct">
802
+ <ANCHOR id="g-memory-output-stream-new" href="gio/GMemoryOutputStream.html#g-memory-output-stream-new">
803
+ <ANCHOR id="g-memory-output-stream-get-data" href="gio/GMemoryOutputStream.html#g-memory-output-stream-get-data">
804
+ <ANCHOR id="g-memory-output-stream-get-size" href="gio/GMemoryOutputStream.html#g-memory-output-stream-get-size">
805
+ <ANCHOR id="g-memory-output-stream-get-data-size" href="gio/GMemoryOutputStream.html#g-memory-output-stream-get-data-size">
806
+ <ANCHOR id="g-memory-output-stream-steal-data" href="gio/GMemoryOutputStream.html#g-memory-output-stream-steal-data">
807
+ <ANCHOR id="GMemoryOutputStream.property-details" href="gio/GMemoryOutputStream.html#GMemoryOutputStream.property-details">
808
+ <ANCHOR id="GMemoryOutputStream--data" href="gio/GMemoryOutputStream.html#GMemoryOutputStream--data">
809
+ <ANCHOR id="GMemoryOutputStream--data-size" href="gio/GMemoryOutputStream.html#GMemoryOutputStream--data-size">
810
+ <ANCHOR id="GMemoryOutputStream--destroy-function" href="gio/GMemoryOutputStream.html#GMemoryOutputStream--destroy-function">
811
+ <ANCHOR id="GMemoryOutputStream--realloc-function" href="gio/GMemoryOutputStream.html#GMemoryOutputStream--realloc-function">
812
+ <ANCHOR id="GMemoryOutputStream--size" href="gio/GMemoryOutputStream.html#GMemoryOutputStream--size">
813
+ <ANCHOR id="GMemoryOutputStream.see-also" href="gio/GMemoryOutputStream.html#GMemoryOutputStream.see-also">
814
+ <ANCHOR id="GBufferedInputStream" href="gio/GBufferedInputStream.html">
815
+ <ANCHOR id="GBufferedInputStream.synopsis" href="gio/GBufferedInputStream.html#GBufferedInputStream.synopsis">
816
+ <ANCHOR id="GBufferedInputStream.object-hierarchy" href="gio/GBufferedInputStream.html#GBufferedInputStream.object-hierarchy">
817
+ <ANCHOR id="GBufferedInputStream.properties" href="gio/GBufferedInputStream.html#GBufferedInputStream.properties">
818
+ <ANCHOR id="GBufferedInputStream.description" href="gio/GBufferedInputStream.html#GBufferedInputStream.description">
819
+ <ANCHOR id="GBufferedInputStream.details" href="gio/GBufferedInputStream.html#GBufferedInputStream.details">
820
+ <ANCHOR id="GBufferedInputStream-struct" href="gio/GBufferedInputStream.html#GBufferedInputStream-struct">
821
+ <ANCHOR id="g-buffered-input-stream-new" href="gio/GBufferedInputStream.html#g-buffered-input-stream-new">
822
+ <ANCHOR id="g-buffered-input-stream-new-sized" href="gio/GBufferedInputStream.html#g-buffered-input-stream-new-sized">
823
+ <ANCHOR id="g-buffered-input-stream-get-buffer-size" href="gio/GBufferedInputStream.html#g-buffered-input-stream-get-buffer-size">
824
+ <ANCHOR id="g-buffered-input-stream-set-buffer-size" href="gio/GBufferedInputStream.html#g-buffered-input-stream-set-buffer-size">
825
+ <ANCHOR id="g-buffered-input-stream-get-available" href="gio/GBufferedInputStream.html#g-buffered-input-stream-get-available">
826
+ <ANCHOR id="g-buffered-input-stream-peek-buffer" href="gio/GBufferedInputStream.html#g-buffered-input-stream-peek-buffer">
827
+ <ANCHOR id="g-buffered-input-stream-peek" href="gio/GBufferedInputStream.html#g-buffered-input-stream-peek">
828
+ <ANCHOR id="g-buffered-input-stream-fill" href="gio/GBufferedInputStream.html#g-buffered-input-stream-fill">
829
+ <ANCHOR id="g-buffered-input-stream-fill-async" href="gio/GBufferedInputStream.html#g-buffered-input-stream-fill-async">
830
+ <ANCHOR id="g-buffered-input-stream-fill-finish" href="gio/GBufferedInputStream.html#g-buffered-input-stream-fill-finish">
831
+ <ANCHOR id="g-buffered-input-stream-read-byte" href="gio/GBufferedInputStream.html#g-buffered-input-stream-read-byte">
832
+ <ANCHOR id="GBufferedInputStream.property-details" href="gio/GBufferedInputStream.html#GBufferedInputStream.property-details">
833
+ <ANCHOR id="GBufferedInputStream--buffer-size" href="gio/GBufferedInputStream.html#GBufferedInputStream--buffer-size">
834
+ <ANCHOR id="GBufferedInputStream.see-also" href="gio/GBufferedInputStream.html#GBufferedInputStream.see-also">
835
+ <ANCHOR id="GBufferedOutputStream" href="gio/GBufferedOutputStream.html">
836
+ <ANCHOR id="GBufferedOutputStream.synopsis" href="gio/GBufferedOutputStream.html#GBufferedOutputStream.synopsis">
837
+ <ANCHOR id="GBufferedOutputStream.object-hierarchy" href="gio/GBufferedOutputStream.html#GBufferedOutputStream.object-hierarchy">
838
+ <ANCHOR id="GBufferedOutputStream.properties" href="gio/GBufferedOutputStream.html#GBufferedOutputStream.properties">
839
+ <ANCHOR id="GBufferedOutputStream.description" href="gio/GBufferedOutputStream.html#GBufferedOutputStream.description">
840
+ <ANCHOR id="GBufferedOutputStream.details" href="gio/GBufferedOutputStream.html#GBufferedOutputStream.details">
841
+ <ANCHOR id="GBufferedOutputStream-struct" href="gio/GBufferedOutputStream.html#GBufferedOutputStream-struct">
842
+ <ANCHOR id="g-buffered-output-stream-new" href="gio/GBufferedOutputStream.html#g-buffered-output-stream-new">
843
+ <ANCHOR id="g-buffered-output-stream-new-sized" href="gio/GBufferedOutputStream.html#g-buffered-output-stream-new-sized">
844
+ <ANCHOR id="g-buffered-output-stream-get-buffer-size" href="gio/GBufferedOutputStream.html#g-buffered-output-stream-get-buffer-size">
845
+ <ANCHOR id="g-buffered-output-stream-set-buffer-size" href="gio/GBufferedOutputStream.html#g-buffered-output-stream-set-buffer-size">
846
+ <ANCHOR id="g-buffered-output-stream-get-auto-grow" href="gio/GBufferedOutputStream.html#g-buffered-output-stream-get-auto-grow">
847
+ <ANCHOR id="g-buffered-output-stream-set-auto-grow" href="gio/GBufferedOutputStream.html#g-buffered-output-stream-set-auto-grow">
848
+ <ANCHOR id="GBufferedOutputStream.property-details" href="gio/GBufferedOutputStream.html#GBufferedOutputStream.property-details">
849
+ <ANCHOR id="GBufferedOutputStream--auto-grow" href="gio/GBufferedOutputStream.html#GBufferedOutputStream--auto-grow">
850
+ <ANCHOR id="GBufferedOutputStream--buffer-size" href="gio/GBufferedOutputStream.html#GBufferedOutputStream--buffer-size">
851
+ <ANCHOR id="GBufferedOutputStream.see-also" href="gio/GBufferedOutputStream.html#GBufferedOutputStream.see-also">
852
+ <ANCHOR id="GDataInputStream" href="gio/GDataInputStream.html">
853
+ <ANCHOR id="GDataInputStream.synopsis" href="gio/GDataInputStream.html#GDataInputStream.synopsis">
854
+ <ANCHOR id="GDataInputStream.object-hierarchy" href="gio/GDataInputStream.html#GDataInputStream.object-hierarchy">
855
+ <ANCHOR id="GDataInputStream.properties" href="gio/GDataInputStream.html#GDataInputStream.properties">
856
+ <ANCHOR id="GDataInputStream.description" href="gio/GDataInputStream.html#GDataInputStream.description">
857
+ <ANCHOR id="GDataInputStream.details" href="gio/GDataInputStream.html#GDataInputStream.details">
858
+ <ANCHOR id="GDataInputStream-struct" href="gio/GDataInputStream.html#GDataInputStream-struct">
859
+ <ANCHOR id="GDataStreamByteOrder" href="gio/GDataInputStream.html#GDataStreamByteOrder">
860
+ <ANCHOR id="G-DATA-STREAM-BYTE-ORDER-BIG-ENDIAN:CAPS" href="gio/GDataInputStream.html#G-DATA-STREAM-BYTE-ORDER-BIG-ENDIAN:CAPS">
861
+ <ANCHOR id="G-DATA-STREAM-BYTE-ORDER-LITTLE-ENDIAN:CAPS" href="gio/GDataInputStream.html#G-DATA-STREAM-BYTE-ORDER-LITTLE-ENDIAN:CAPS">
862
+ <ANCHOR id="G-DATA-STREAM-BYTE-ORDER-HOST-ENDIAN:CAPS" href="gio/GDataInputStream.html#G-DATA-STREAM-BYTE-ORDER-HOST-ENDIAN:CAPS">
863
+ <ANCHOR id="GDataStreamNewlineType" href="gio/GDataInputStream.html#GDataStreamNewlineType">
864
+ <ANCHOR id="G-DATA-STREAM-NEWLINE-TYPE-LF:CAPS" href="gio/GDataInputStream.html#G-DATA-STREAM-NEWLINE-TYPE-LF:CAPS">
865
+ <ANCHOR id="G-DATA-STREAM-NEWLINE-TYPE-CR:CAPS" href="gio/GDataInputStream.html#G-DATA-STREAM-NEWLINE-TYPE-CR:CAPS">
866
+ <ANCHOR id="G-DATA-STREAM-NEWLINE-TYPE-CR-LF:CAPS" href="gio/GDataInputStream.html#G-DATA-STREAM-NEWLINE-TYPE-CR-LF:CAPS">
867
+ <ANCHOR id="G-DATA-STREAM-NEWLINE-TYPE-ANY:CAPS" href="gio/GDataInputStream.html#G-DATA-STREAM-NEWLINE-TYPE-ANY:CAPS">
868
+ <ANCHOR id="g-data-input-stream-new" href="gio/GDataInputStream.html#g-data-input-stream-new">
869
+ <ANCHOR id="g-data-input-stream-set-byte-order" href="gio/GDataInputStream.html#g-data-input-stream-set-byte-order">
870
+ <ANCHOR id="g-data-input-stream-get-byte-order" href="gio/GDataInputStream.html#g-data-input-stream-get-byte-order">
871
+ <ANCHOR id="g-data-input-stream-set-newline-type" href="gio/GDataInputStream.html#g-data-input-stream-set-newline-type">
872
+ <ANCHOR id="g-data-input-stream-get-newline-type" href="gio/GDataInputStream.html#g-data-input-stream-get-newline-type">
873
+ <ANCHOR id="g-data-input-stream-read-byte" href="gio/GDataInputStream.html#g-data-input-stream-read-byte">
874
+ <ANCHOR id="g-data-input-stream-read-int16" href="gio/GDataInputStream.html#g-data-input-stream-read-int16">
875
+ <ANCHOR id="g-data-input-stream-read-uint16" href="gio/GDataInputStream.html#g-data-input-stream-read-uint16">
876
+ <ANCHOR id="g-data-input-stream-read-int32" href="gio/GDataInputStream.html#g-data-input-stream-read-int32">
877
+ <ANCHOR id="g-data-input-stream-read-uint32" href="gio/GDataInputStream.html#g-data-input-stream-read-uint32">
878
+ <ANCHOR id="g-data-input-stream-read-int64" href="gio/GDataInputStream.html#g-data-input-stream-read-int64">
879
+ <ANCHOR id="g-data-input-stream-read-uint64" href="gio/GDataInputStream.html#g-data-input-stream-read-uint64">
880
+ <ANCHOR id="g-data-input-stream-read-line" href="gio/GDataInputStream.html#g-data-input-stream-read-line">
881
+ <ANCHOR id="g-data-input-stream-read-line-async" href="gio/GDataInputStream.html#g-data-input-stream-read-line-async">
882
+ <ANCHOR id="g-data-input-stream-read-line-finish" href="gio/GDataInputStream.html#g-data-input-stream-read-line-finish">
883
+ <ANCHOR id="g-data-input-stream-read-upto" href="gio/GDataInputStream.html#g-data-input-stream-read-upto">
884
+ <ANCHOR id="g-data-input-stream-read-upto-async" href="gio/GDataInputStream.html#g-data-input-stream-read-upto-async">
885
+ <ANCHOR id="g-data-input-stream-read-upto-finish" href="gio/GDataInputStream.html#g-data-input-stream-read-upto-finish">
886
+ <ANCHOR id="g-data-input-stream-read-until" href="gio/GDataInputStream.html#g-data-input-stream-read-until">
887
+ <ANCHOR id="g-data-input-stream-read-until-async" href="gio/GDataInputStream.html#g-data-input-stream-read-until-async">
888
+ <ANCHOR id="g-data-input-stream-read-until-finish" href="gio/GDataInputStream.html#g-data-input-stream-read-until-finish">
889
+ <ANCHOR id="GDataInputStream.property-details" href="gio/GDataInputStream.html#GDataInputStream.property-details">
890
+ <ANCHOR id="GDataInputStream--byte-order" href="gio/GDataInputStream.html#GDataInputStream--byte-order">
891
+ <ANCHOR id="GDataInputStream--newline-type" href="gio/GDataInputStream.html#GDataInputStream--newline-type">
892
+ <ANCHOR id="GDataInputStream.see-also" href="gio/GDataInputStream.html#GDataInputStream.see-also">
893
+ <ANCHOR id="GDataOutputStream" href="gio/GDataOutputStream.html">
894
+ <ANCHOR id="GDataOutputStream.synopsis" href="gio/GDataOutputStream.html#GDataOutputStream.synopsis">
895
+ <ANCHOR id="GDataOutputStream.object-hierarchy" href="gio/GDataOutputStream.html#GDataOutputStream.object-hierarchy">
896
+ <ANCHOR id="GDataOutputStream.properties" href="gio/GDataOutputStream.html#GDataOutputStream.properties">
897
+ <ANCHOR id="GDataOutputStream.description" href="gio/GDataOutputStream.html#GDataOutputStream.description">
898
+ <ANCHOR id="GDataOutputStream.details" href="gio/GDataOutputStream.html#GDataOutputStream.details">
899
+ <ANCHOR id="GDataOutputStream-struct" href="gio/GDataOutputStream.html#GDataOutputStream-struct">
900
+ <ANCHOR id="g-data-output-stream-new" href="gio/GDataOutputStream.html#g-data-output-stream-new">
901
+ <ANCHOR id="g-data-output-stream-set-byte-order" href="gio/GDataOutputStream.html#g-data-output-stream-set-byte-order">
902
+ <ANCHOR id="g-data-output-stream-get-byte-order" href="gio/GDataOutputStream.html#g-data-output-stream-get-byte-order">
903
+ <ANCHOR id="g-data-output-stream-put-byte" href="gio/GDataOutputStream.html#g-data-output-stream-put-byte">
904
+ <ANCHOR id="g-data-output-stream-put-int16" href="gio/GDataOutputStream.html#g-data-output-stream-put-int16">
905
+ <ANCHOR id="g-data-output-stream-put-uint16" href="gio/GDataOutputStream.html#g-data-output-stream-put-uint16">
906
+ <ANCHOR id="g-data-output-stream-put-int32" href="gio/GDataOutputStream.html#g-data-output-stream-put-int32">
907
+ <ANCHOR id="g-data-output-stream-put-uint32" href="gio/GDataOutputStream.html#g-data-output-stream-put-uint32">
908
+ <ANCHOR id="g-data-output-stream-put-int64" href="gio/GDataOutputStream.html#g-data-output-stream-put-int64">
909
+ <ANCHOR id="g-data-output-stream-put-uint64" href="gio/GDataOutputStream.html#g-data-output-stream-put-uint64">
910
+ <ANCHOR id="g-data-output-stream-put-string" href="gio/GDataOutputStream.html#g-data-output-stream-put-string">
911
+ <ANCHOR id="GDataOutputStream.property-details" href="gio/GDataOutputStream.html#GDataOutputStream.property-details">
912
+ <ANCHOR id="GDataOutputStream--byte-order" href="gio/GDataOutputStream.html#GDataOutputStream--byte-order">
913
+ <ANCHOR id="GDataOutputStream.see-also" href="gio/GDataOutputStream.html#GDataOutputStream.see-also">
914
+ <ANCHOR id="GUnixInputStream" href="gio/GUnixInputStream.html">
915
+ <ANCHOR id="GUnixInputStream.synopsis" href="gio/GUnixInputStream.html#GUnixInputStream.synopsis">
916
+ <ANCHOR id="GUnixInputStream.object-hierarchy" href="gio/GUnixInputStream.html#GUnixInputStream.object-hierarchy">
917
+ <ANCHOR id="GUnixInputStream.properties" href="gio/GUnixInputStream.html#GUnixInputStream.properties">
918
+ <ANCHOR id="GUnixInputStream.description" href="gio/GUnixInputStream.html#GUnixInputStream.description">
919
+ <ANCHOR id="GUnixInputStream.details" href="gio/GUnixInputStream.html#GUnixInputStream.details">
920
+ <ANCHOR id="GUnixInputStream-struct" href="gio/GUnixInputStream.html#GUnixInputStream-struct">
921
+ <ANCHOR id="g-unix-input-stream-new" href="gio/GUnixInputStream.html#g-unix-input-stream-new">
922
+ <ANCHOR id="g-unix-input-stream-set-close-fd" href="gio/GUnixInputStream.html#g-unix-input-stream-set-close-fd">
923
+ <ANCHOR id="g-unix-input-stream-get-close-fd" href="gio/GUnixInputStream.html#g-unix-input-stream-get-close-fd">
924
+ <ANCHOR id="g-unix-input-stream-get-fd" href="gio/GUnixInputStream.html#g-unix-input-stream-get-fd">
925
+ <ANCHOR id="GUnixInputStream.property-details" href="gio/GUnixInputStream.html#GUnixInputStream.property-details">
926
+ <ANCHOR id="GUnixInputStream--close-fd" href="gio/GUnixInputStream.html#GUnixInputStream--close-fd">
927
+ <ANCHOR id="GUnixInputStream--fd" href="gio/GUnixInputStream.html#GUnixInputStream--fd">
928
+ <ANCHOR id="GUnixInputStream.see-also" href="gio/GUnixInputStream.html#GUnixInputStream.see-also">
929
+ <ANCHOR id="GUnixOutputStream" href="gio/GUnixOutputStream.html">
930
+ <ANCHOR id="GUnixOutputStream.synopsis" href="gio/GUnixOutputStream.html#GUnixOutputStream.synopsis">
931
+ <ANCHOR id="GUnixOutputStream.object-hierarchy" href="gio/GUnixOutputStream.html#GUnixOutputStream.object-hierarchy">
932
+ <ANCHOR id="GUnixOutputStream.properties" href="gio/GUnixOutputStream.html#GUnixOutputStream.properties">
933
+ <ANCHOR id="GUnixOutputStream.description" href="gio/GUnixOutputStream.html#GUnixOutputStream.description">
934
+ <ANCHOR id="GUnixOutputStream.details" href="gio/GUnixOutputStream.html#GUnixOutputStream.details">
935
+ <ANCHOR id="GUnixOutputStream-struct" href="gio/GUnixOutputStream.html#GUnixOutputStream-struct">
936
+ <ANCHOR id="g-unix-output-stream-new" href="gio/GUnixOutputStream.html#g-unix-output-stream-new">
937
+ <ANCHOR id="g-unix-output-stream-set-close-fd" href="gio/GUnixOutputStream.html#g-unix-output-stream-set-close-fd">
938
+ <ANCHOR id="g-unix-output-stream-get-close-fd" href="gio/GUnixOutputStream.html#g-unix-output-stream-get-close-fd">
939
+ <ANCHOR id="g-unix-output-stream-get-fd" href="gio/GUnixOutputStream.html#g-unix-output-stream-get-fd">
940
+ <ANCHOR id="GUnixOutputStream.property-details" href="gio/GUnixOutputStream.html#GUnixOutputStream.property-details">
941
+ <ANCHOR id="GUnixOutputStream--close-fd" href="gio/GUnixOutputStream.html#GUnixOutputStream--close-fd">
942
+ <ANCHOR id="GUnixOutputStream--fd" href="gio/GUnixOutputStream.html#GUnixOutputStream--fd">
943
+ <ANCHOR id="GUnixOutputStream.see-also" href="gio/GUnixOutputStream.html#GUnixOutputStream.see-also">
944
+ <ANCHOR id="gio-GConverterInputstream" href="gio/gio-GConverterInputstream.html">
945
+ <ANCHOR id="gio-GConverterInputstream.synopsis" href="gio/gio-GConverterInputstream.html#gio-GConverterInputstream.synopsis">
946
+ <ANCHOR id="GConverterInputStream" href="gio/gio-GConverterInputstream.html#GConverterInputStream">
947
+ <ANCHOR id="gio-GConverterInputstream.object-hierarchy" href="gio/gio-GConverterInputstream.html#gio-GConverterInputstream.object-hierarchy">
948
+ <ANCHOR id="gio-GConverterInputstream.properties" href="gio/gio-GConverterInputstream.html#gio-GConverterInputstream.properties">
949
+ <ANCHOR id="gio-GConverterInputstream.description" href="gio/gio-GConverterInputstream.html#gio-GConverterInputstream.description">
950
+ <ANCHOR id="gio-GConverterInputstream.details" href="gio/gio-GConverterInputstream.html#gio-GConverterInputstream.details">
951
+ <ANCHOR id="GConverterInputStream-struct" href="gio/gio-GConverterInputstream.html#GConverterInputStream-struct">
952
+ <ANCHOR id="g-converter-input-stream-new" href="gio/gio-GConverterInputstream.html#g-converter-input-stream-new">
953
+ <ANCHOR id="g-converter-input-stream-get-converter" href="gio/gio-GConverterInputstream.html#g-converter-input-stream-get-converter">
954
+ <ANCHOR id="gio-GConverterInputstream.property-details" href="gio/gio-GConverterInputstream.html#gio-GConverterInputstream.property-details">
955
+ <ANCHOR id="GConverterInputStream--converter" href="gio/gio-GConverterInputstream.html#GConverterInputStream--converter">
956
+ <ANCHOR id="gio-GConverterInputstream.see-also" href="gio/gio-GConverterInputstream.html#gio-GConverterInputstream.see-also">
957
+ <ANCHOR id="gio-GConverterOutputstream" href="gio/gio-GConverterOutputstream.html">
958
+ <ANCHOR id="gio-GConverterOutputstream.synopsis" href="gio/gio-GConverterOutputstream.html#gio-GConverterOutputstream.synopsis">
959
+ <ANCHOR id="GConverterOutputStream" href="gio/gio-GConverterOutputstream.html#GConverterOutputStream">
960
+ <ANCHOR id="gio-GConverterOutputstream.object-hierarchy" href="gio/gio-GConverterOutputstream.html#gio-GConverterOutputstream.object-hierarchy">
961
+ <ANCHOR id="gio-GConverterOutputstream.properties" href="gio/gio-GConverterOutputstream.html#gio-GConverterOutputstream.properties">
962
+ <ANCHOR id="gio-GConverterOutputstream.description" href="gio/gio-GConverterOutputstream.html#gio-GConverterOutputstream.description">
963
+ <ANCHOR id="gio-GConverterOutputstream.details" href="gio/gio-GConverterOutputstream.html#gio-GConverterOutputstream.details">
964
+ <ANCHOR id="GConverterOutputStream-struct" href="gio/gio-GConverterOutputstream.html#GConverterOutputStream-struct">
965
+ <ANCHOR id="g-converter-output-stream-new" href="gio/gio-GConverterOutputstream.html#g-converter-output-stream-new">
966
+ <ANCHOR id="g-converter-output-stream-get-converter" href="gio/gio-GConverterOutputstream.html#g-converter-output-stream-get-converter">
967
+ <ANCHOR id="gio-GConverterOutputstream.property-details" href="gio/gio-GConverterOutputstream.html#gio-GConverterOutputstream.property-details">
968
+ <ANCHOR id="GConverterOutputStream--converter" href="gio/gio-GConverterOutputstream.html#GConverterOutputStream--converter">
969
+ <ANCHOR id="gio-GConverterOutputstream.see-also" href="gio/gio-GConverterOutputstream.html#gio-GConverterOutputstream.see-also">
970
+ <ANCHOR id="gio-GContentType" href="gio/gio-GContentType.html">
971
+ <ANCHOR id="gio-GContentType.synopsis" href="gio/gio-GContentType.html#gio-GContentType.synopsis">
972
+ <ANCHOR id="gio-GContentType.description" href="gio/gio-GContentType.html#gio-GContentType.description">
973
+ <ANCHOR id="gio-GContentType.details" href="gio/gio-GContentType.html#gio-GContentType.details">
974
+ <ANCHOR id="g-content-type-equals" href="gio/gio-GContentType.html#g-content-type-equals">
975
+ <ANCHOR id="g-content-type-is-a" href="gio/gio-GContentType.html#g-content-type-is-a">
976
+ <ANCHOR id="g-content-type-is-unknown" href="gio/gio-GContentType.html#g-content-type-is-unknown">
977
+ <ANCHOR id="g-content-type-get-description" href="gio/gio-GContentType.html#g-content-type-get-description">
978
+ <ANCHOR id="g-content-type-get-mime-type" href="gio/gio-GContentType.html#g-content-type-get-mime-type">
979
+ <ANCHOR id="g-content-type-get-icon" href="gio/gio-GContentType.html#g-content-type-get-icon">
980
+ <ANCHOR id="g-content-type-can-be-executable" href="gio/gio-GContentType.html#g-content-type-can-be-executable">
981
+ <ANCHOR id="g-content-type-from-mime-type" href="gio/gio-GContentType.html#g-content-type-from-mime-type">
982
+ <ANCHOR id="g-content-type-guess" href="gio/gio-GContentType.html#g-content-type-guess">
983
+ <ANCHOR id="g-content-type-guess-for-tree" href="gio/gio-GContentType.html#g-content-type-guess-for-tree">
984
+ <ANCHOR id="g-content-types-get-registered" href="gio/gio-GContentType.html#g-content-types-get-registered">
985
+ <ANCHOR id="GAppInfo" href="gio/GAppInfo.html">
986
+ <ANCHOR id="GAppInfo.synopsis" href="gio/GAppInfo.html#GAppInfo.synopsis">
987
+ <ANCHOR id="GAppLaunchContext" href="gio/GAppInfo.html#GAppLaunchContext">
988
+ <ANCHOR id="GAppInfo.object-hierarchy" href="gio/GAppInfo.html#GAppInfo.object-hierarchy">
989
+ <ANCHOR id="GAppInfo.prerequisites" href="gio/GAppInfo.html#GAppInfo.prerequisites">
990
+ <ANCHOR id="GAppInfo.implementations" href="gio/GAppInfo.html#GAppInfo.implementations">
991
+ <ANCHOR id="GAppInfo.description" href="gio/GAppInfo.html#GAppInfo.description">
992
+ <ANCHOR id="GAppInfo.details" href="gio/GAppInfo.html#GAppInfo.details">
993
+ <ANCHOR id="GAppInfoCreateFlags" href="gio/GAppInfo.html#GAppInfoCreateFlags">
994
+ <ANCHOR id="G-APP-INFO-CREATE-NONE:CAPS" href="gio/GAppInfo.html#G-APP-INFO-CREATE-NONE:CAPS">
995
+ <ANCHOR id="G-APP-INFO-CREATE-NEEDS-TERMINAL:CAPS" href="gio/GAppInfo.html#G-APP-INFO-CREATE-NEEDS-TERMINAL:CAPS">
996
+ <ANCHOR id="G-APP-INFO-CREATE-SUPPORTS-URIS:CAPS" href="gio/GAppInfo.html#G-APP-INFO-CREATE-SUPPORTS-URIS:CAPS">
997
+ <ANCHOR id="G-APP-INFO-CREATE-SUPPORTS-STARTUP-NOTIFICATION:CAPS" href="gio/GAppInfo.html#G-APP-INFO-CREATE-SUPPORTS-STARTUP-NOTIFICATION:CAPS">
998
+ <ANCHOR id="GAppInfo-struct" href="gio/GAppInfo.html#GAppInfo-struct">
999
+ <ANCHOR id="GAppInfoIface" href="gio/GAppInfo.html#GAppInfoIface">
1000
+ <ANCHOR id="GAppLaunchContext-struct" href="gio/GAppInfo.html#GAppLaunchContext-struct">
1001
+ <ANCHOR id="g-app-info-create-from-commandline" href="gio/GAppInfo.html#g-app-info-create-from-commandline">
1002
+ <ANCHOR id="g-app-info-dup" href="gio/GAppInfo.html#g-app-info-dup">
1003
+ <ANCHOR id="g-app-info-equal" href="gio/GAppInfo.html#g-app-info-equal">
1004
+ <ANCHOR id="g-app-info-get-id" href="gio/GAppInfo.html#g-app-info-get-id">
1005
+ <ANCHOR id="g-app-info-get-name" href="gio/GAppInfo.html#g-app-info-get-name">
1006
+ <ANCHOR id="g-app-info-get-display-name" href="gio/GAppInfo.html#g-app-info-get-display-name">
1007
+ <ANCHOR id="g-app-info-get-description" href="gio/GAppInfo.html#g-app-info-get-description">
1008
+ <ANCHOR id="g-app-info-get-executable" href="gio/GAppInfo.html#g-app-info-get-executable">
1009
+ <ANCHOR id="g-app-info-get-commandline" href="gio/GAppInfo.html#g-app-info-get-commandline">
1010
+ <ANCHOR id="g-app-info-get-icon" href="gio/GAppInfo.html#g-app-info-get-icon">
1011
+ <ANCHOR id="g-app-info-launch" href="gio/GAppInfo.html#g-app-info-launch">
1012
+ <ANCHOR id="g-app-info-supports-files" href="gio/GAppInfo.html#g-app-info-supports-files">
1013
+ <ANCHOR id="g-app-info-supports-uris" href="gio/GAppInfo.html#g-app-info-supports-uris">
1014
+ <ANCHOR id="g-app-info-launch-uris" href="gio/GAppInfo.html#g-app-info-launch-uris">
1015
+ <ANCHOR id="g-app-info-should-show" href="gio/GAppInfo.html#g-app-info-should-show">
1016
+ <ANCHOR id="g-app-info-can-delete" href="gio/GAppInfo.html#g-app-info-can-delete">
1017
+ <ANCHOR id="g-app-info-delete" href="gio/GAppInfo.html#g-app-info-delete">
1018
+ <ANCHOR id="g-app-info-reset-type-associations" href="gio/GAppInfo.html#g-app-info-reset-type-associations">
1019
+ <ANCHOR id="g-app-info-set-as-default-for-type" href="gio/GAppInfo.html#g-app-info-set-as-default-for-type">
1020
+ <ANCHOR id="g-app-info-set-as-default-for-extension" href="gio/GAppInfo.html#g-app-info-set-as-default-for-extension">
1021
+ <ANCHOR id="g-app-info-add-supports-type" href="gio/GAppInfo.html#g-app-info-add-supports-type">
1022
+ <ANCHOR id="g-app-info-can-remove-supports-type" href="gio/GAppInfo.html#g-app-info-can-remove-supports-type">
1023
+ <ANCHOR id="g-app-info-remove-supports-type" href="gio/GAppInfo.html#g-app-info-remove-supports-type">
1024
+ <ANCHOR id="g-app-info-get-all" href="gio/GAppInfo.html#g-app-info-get-all">
1025
+ <ANCHOR id="g-app-info-get-all-for-type" href="gio/GAppInfo.html#g-app-info-get-all-for-type">
1026
+ <ANCHOR id="g-app-info-get-default-for-type" href="gio/GAppInfo.html#g-app-info-get-default-for-type">
1027
+ <ANCHOR id="g-app-info-get-default-for-uri-scheme" href="gio/GAppInfo.html#g-app-info-get-default-for-uri-scheme">
1028
+ <ANCHOR id="g-app-info-launch-default-for-uri" href="gio/GAppInfo.html#g-app-info-launch-default-for-uri">
1029
+ <ANCHOR id="g-app-launch-context-get-display" href="gio/GAppInfo.html#g-app-launch-context-get-display">
1030
+ <ANCHOR id="g-app-launch-context-get-startup-notify-id" href="gio/GAppInfo.html#g-app-launch-context-get-startup-notify-id">
1031
+ <ANCHOR id="g-app-launch-context-launch-failed" href="gio/GAppInfo.html#g-app-launch-context-launch-failed">
1032
+ <ANCHOR id="g-app-launch-context-new" href="gio/GAppInfo.html#g-app-launch-context-new">
1033
+ <ANCHOR id="gio-Desktop-file-based-GAppInfo" href="gio/gio-Desktop-file-based-GAppInfo.html">
1034
+ <ANCHOR id="gio-Desktop-file-based-GAppInfo.synopsis" href="gio/gio-Desktop-file-based-GAppInfo.html#gio-Desktop-file-based-GAppInfo.synopsis">
1035
+ <ANCHOR id="GDesktopAppInfo" href="gio/gio-Desktop-file-based-GAppInfo.html#GDesktopAppInfo">
1036
+ <ANCHOR id="GDesktopAppInfoLookup" href="gio/gio-Desktop-file-based-GAppInfo.html#GDesktopAppInfoLookup">
1037
+ <ANCHOR id="gio-Desktop-file-based-GAppInfo.object-hierarchy" href="gio/gio-Desktop-file-based-GAppInfo.html#gio-Desktop-file-based-GAppInfo.object-hierarchy">
1038
+ <ANCHOR id="gio-Desktop-file-based-GAppInfo.prerequisites" href="gio/gio-Desktop-file-based-GAppInfo.html#gio-Desktop-file-based-GAppInfo.prerequisites">
1039
+ <ANCHOR id="gio-Desktop-file-based-GAppInfo.implemented-interfaces" href="gio/gio-Desktop-file-based-GAppInfo.html#gio-Desktop-file-based-GAppInfo.implemented-interfaces">
1040
+ <ANCHOR id="gio-Desktop-file-based-GAppInfo.description" href="gio/gio-Desktop-file-based-GAppInfo.html#gio-Desktop-file-based-GAppInfo.description">
1041
+ <ANCHOR id="gio-Desktop-file-based-GAppInfo.details" href="gio/gio-Desktop-file-based-GAppInfo.html#gio-Desktop-file-based-GAppInfo.details">
1042
+ <ANCHOR id="GDesktopAppInfo-struct" href="gio/gio-Desktop-file-based-GAppInfo.html#GDesktopAppInfo-struct">
1043
+ <ANCHOR id="g-desktop-app-info-new-from-filename" href="gio/gio-Desktop-file-based-GAppInfo.html#g-desktop-app-info-new-from-filename">
1044
+ <ANCHOR id="g-desktop-app-info-new-from-keyfile" href="gio/gio-Desktop-file-based-GAppInfo.html#g-desktop-app-info-new-from-keyfile">
1045
+ <ANCHOR id="g-desktop-app-info-new" href="gio/gio-Desktop-file-based-GAppInfo.html#g-desktop-app-info-new">
1046
+ <ANCHOR id="g-desktop-app-info-get-filename" href="gio/gio-Desktop-file-based-GAppInfo.html#g-desktop-app-info-get-filename">
1047
+ <ANCHOR id="g-desktop-app-info-get-is-hidden" href="gio/gio-Desktop-file-based-GAppInfo.html#g-desktop-app-info-get-is-hidden">
1048
+ <ANCHOR id="g-desktop-app-info-set-desktop-env" href="gio/gio-Desktop-file-based-GAppInfo.html#g-desktop-app-info-set-desktop-env">
1049
+ <ANCHOR id="GDesktopAppInfoLookup-struct" href="gio/gio-Desktop-file-based-GAppInfo.html#GDesktopAppInfoLookup-struct">
1050
+ <ANCHOR id="G-DESKTOP-APP-INFO-LOOKUP-EXTENSION-POINT-NAME:CAPS" href="gio/gio-Desktop-file-based-GAppInfo.html#G-DESKTOP-APP-INFO-LOOKUP-EXTENSION-POINT-NAME:CAPS">
1051
+ <ANCHOR id="g-desktop-app-info-lookup-get-default-for-uri-scheme" href="gio/gio-Desktop-file-based-GAppInfo.html#g-desktop-app-info-lookup-get-default-for-uri-scheme">
1052
+ <ANCHOR id="GVolumeMonitor" href="gio/GVolumeMonitor.html">
1053
+ <ANCHOR id="GVolumeMonitor.synopsis" href="gio/GVolumeMonitor.html#GVolumeMonitor.synopsis">
1054
+ <ANCHOR id="GVolumeMonitor.object-hierarchy" href="gio/GVolumeMonitor.html#GVolumeMonitor.object-hierarchy">
1055
+ <ANCHOR id="GVolumeMonitor.signals" href="gio/GVolumeMonitor.html#GVolumeMonitor.signals">
1056
+ <ANCHOR id="GVolumeMonitor.description" href="gio/GVolumeMonitor.html#GVolumeMonitor.description">
1057
+ <ANCHOR id="GVolumeMonitor.details" href="gio/GVolumeMonitor.html#GVolumeMonitor.details">
1058
+ <ANCHOR id="GVolumeMonitor-struct" href="gio/GVolumeMonitor.html#GVolumeMonitor-struct">
1059
+ <ANCHOR id="G-VOLUME-MONITOR-EXTENSION-POINT-NAME:CAPS" href="gio/GVolumeMonitor.html#G-VOLUME-MONITOR-EXTENSION-POINT-NAME:CAPS">
1060
+ <ANCHOR id="g-volume-monitor-get" href="gio/GVolumeMonitor.html#g-volume-monitor-get">
1061
+ <ANCHOR id="g-volume-monitor-get-connected-drives" href="gio/GVolumeMonitor.html#g-volume-monitor-get-connected-drives">
1062
+ <ANCHOR id="g-volume-monitor-get-volumes" href="gio/GVolumeMonitor.html#g-volume-monitor-get-volumes">
1063
+ <ANCHOR id="g-volume-monitor-get-mounts" href="gio/GVolumeMonitor.html#g-volume-monitor-get-mounts">
1064
+ <ANCHOR id="g-volume-monitor-adopt-orphan-mount" href="gio/GVolumeMonitor.html#g-volume-monitor-adopt-orphan-mount">
1065
+ <ANCHOR id="g-volume-monitor-get-mount-for-uuid" href="gio/GVolumeMonitor.html#g-volume-monitor-get-mount-for-uuid">
1066
+ <ANCHOR id="g-volume-monitor-get-volume-for-uuid" href="gio/GVolumeMonitor.html#g-volume-monitor-get-volume-for-uuid">
1067
+ <ANCHOR id="GVolumeMonitor.signal-details" href="gio/GVolumeMonitor.html#GVolumeMonitor.signal-details">
1068
+ <ANCHOR id="GVolumeMonitor-drive-changed" href="gio/GVolumeMonitor.html#GVolumeMonitor-drive-changed">
1069
+ <ANCHOR id="GVolumeMonitor-drive-connected" href="gio/GVolumeMonitor.html#GVolumeMonitor-drive-connected">
1070
+ <ANCHOR id="GVolumeMonitor-drive-disconnected" href="gio/GVolumeMonitor.html#GVolumeMonitor-drive-disconnected">
1071
+ <ANCHOR id="GVolumeMonitor-drive-eject-button" href="gio/GVolumeMonitor.html#GVolumeMonitor-drive-eject-button">
1072
+ <ANCHOR id="GVolumeMonitor-drive-stop-button" href="gio/GVolumeMonitor.html#GVolumeMonitor-drive-stop-button">
1073
+ <ANCHOR id="GVolumeMonitor-mount-added" href="gio/GVolumeMonitor.html#GVolumeMonitor-mount-added">
1074
+ <ANCHOR id="GVolumeMonitor-mount-changed" href="gio/GVolumeMonitor.html#GVolumeMonitor-mount-changed">
1075
+ <ANCHOR id="GVolumeMonitor-mount-pre-unmount" href="gio/GVolumeMonitor.html#GVolumeMonitor-mount-pre-unmount">
1076
+ <ANCHOR id="GVolumeMonitor-mount-removed" href="gio/GVolumeMonitor.html#GVolumeMonitor-mount-removed">
1077
+ <ANCHOR id="GVolumeMonitor-volume-added" href="gio/GVolumeMonitor.html#GVolumeMonitor-volume-added">
1078
+ <ANCHOR id="GVolumeMonitor-volume-changed" href="gio/GVolumeMonitor.html#GVolumeMonitor-volume-changed">
1079
+ <ANCHOR id="GVolumeMonitor-volume-removed" href="gio/GVolumeMonitor.html#GVolumeMonitor-volume-removed">
1080
+ <ANCHOR id="GVolumeMonitor.see-also" href="gio/GVolumeMonitor.html#GVolumeMonitor.see-also">
1081
+ <ANCHOR id="GVolume" href="gio/GVolume.html">
1082
+ <ANCHOR id="GVolume.synopsis" href="gio/GVolume.html#GVolume.synopsis">
1083
+ <ANCHOR id="GVolume.object-hierarchy" href="gio/GVolume.html#GVolume.object-hierarchy">
1084
+ <ANCHOR id="GVolume.prerequisites" href="gio/GVolume.html#GVolume.prerequisites">
1085
+ <ANCHOR id="GVolume.signals" href="gio/GVolume.html#GVolume.signals">
1086
+ <ANCHOR id="GVolume.description" href="gio/GVolume.html#GVolume.description">
1087
+ <ANCHOR id="GVolume.details" href="gio/GVolume.html#GVolume.details">
1088
+ <ANCHOR id="GVolume-struct" href="gio/GVolume.html#GVolume-struct">
1089
+ <ANCHOR id="GVolumeIface" href="gio/GVolume.html#GVolumeIface">
1090
+ <ANCHOR id="g-volume-get-name" href="gio/GVolume.html#g-volume-get-name">
1091
+ <ANCHOR id="g-volume-get-uuid" href="gio/GVolume.html#g-volume-get-uuid">
1092
+ <ANCHOR id="g-volume-get-icon" href="gio/GVolume.html#g-volume-get-icon">
1093
+ <ANCHOR id="g-volume-get-drive" href="gio/GVolume.html#g-volume-get-drive">
1094
+ <ANCHOR id="g-volume-get-mount" href="gio/GVolume.html#g-volume-get-mount">
1095
+ <ANCHOR id="g-volume-can-mount" href="gio/GVolume.html#g-volume-can-mount">
1096
+ <ANCHOR id="g-volume-should-automount" href="gio/GVolume.html#g-volume-should-automount">
1097
+ <ANCHOR id="g-volume-get-activation-root" href="gio/GVolume.html#g-volume-get-activation-root">
1098
+ <ANCHOR id="g-volume-mount" href="gio/GVolume.html#g-volume-mount">
1099
+ <ANCHOR id="g-volume-mount-finish" href="gio/GVolume.html#g-volume-mount-finish">
1100
+ <ANCHOR id="g-volume-can-eject" href="gio/GVolume.html#g-volume-can-eject">
1101
+ <ANCHOR id="g-volume-eject" href="gio/GVolume.html#g-volume-eject">
1102
+ <ANCHOR id="g-volume-eject-finish" href="gio/GVolume.html#g-volume-eject-finish">
1103
+ <ANCHOR id="g-volume-eject-with-operation" href="gio/GVolume.html#g-volume-eject-with-operation">
1104
+ <ANCHOR id="g-volume-eject-with-operation-finish" href="gio/GVolume.html#g-volume-eject-with-operation-finish">
1105
+ <ANCHOR id="G-VOLUME-IDENTIFIER-KIND-HAL-UDI:CAPS" href="gio/GVolume.html#G-VOLUME-IDENTIFIER-KIND-HAL-UDI:CAPS">
1106
+ <ANCHOR id="G-VOLUME-IDENTIFIER-KIND-LABEL:CAPS" href="gio/GVolume.html#G-VOLUME-IDENTIFIER-KIND-LABEL:CAPS">
1107
+ <ANCHOR id="G-VOLUME-IDENTIFIER-KIND-NFS-MOUNT:CAPS" href="gio/GVolume.html#G-VOLUME-IDENTIFIER-KIND-NFS-MOUNT:CAPS">
1108
+ <ANCHOR id="G-VOLUME-IDENTIFIER-KIND-UNIX-DEVICE:CAPS" href="gio/GVolume.html#G-VOLUME-IDENTIFIER-KIND-UNIX-DEVICE:CAPS">
1109
+ <ANCHOR id="G-VOLUME-IDENTIFIER-KIND-UUID:CAPS" href="gio/GVolume.html#G-VOLUME-IDENTIFIER-KIND-UUID:CAPS">
1110
+ <ANCHOR id="g-volume-enumerate-identifiers" href="gio/GVolume.html#g-volume-enumerate-identifiers">
1111
+ <ANCHOR id="g-volume-get-identifier" href="gio/GVolume.html#g-volume-get-identifier">
1112
+ <ANCHOR id="GVolume.signal-details" href="gio/GVolume.html#GVolume.signal-details">
1113
+ <ANCHOR id="GVolume-changed" href="gio/GVolume.html#GVolume-changed">
1114
+ <ANCHOR id="GVolume-removed" href="gio/GVolume.html#GVolume-removed">
1115
+ <ANCHOR id="GMount" href="gio/GMount.html">
1116
+ <ANCHOR id="GMount.synopsis" href="gio/GMount.html#GMount.synopsis">
1117
+ <ANCHOR id="GMount.object-hierarchy" href="gio/GMount.html#GMount.object-hierarchy">
1118
+ <ANCHOR id="GMount.prerequisites" href="gio/GMount.html#GMount.prerequisites">
1119
+ <ANCHOR id="GMount.signals" href="gio/GMount.html#GMount.signals">
1120
+ <ANCHOR id="GMount.description" href="gio/GMount.html#GMount.description">
1121
+ <ANCHOR id="GMount.details" href="gio/GMount.html#GMount.details">
1122
+ <ANCHOR id="GMount-struct" href="gio/GMount.html#GMount-struct">
1123
+ <ANCHOR id="GMountIface" href="gio/GMount.html#GMountIface">
1124
+ <ANCHOR id="g-mount-get-name" href="gio/GMount.html#g-mount-get-name">
1125
+ <ANCHOR id="g-mount-get-uuid" href="gio/GMount.html#g-mount-get-uuid">
1126
+ <ANCHOR id="g-mount-get-icon" href="gio/GMount.html#g-mount-get-icon">
1127
+ <ANCHOR id="g-mount-get-drive" href="gio/GMount.html#g-mount-get-drive">
1128
+ <ANCHOR id="g-mount-get-root" href="gio/GMount.html#g-mount-get-root">
1129
+ <ANCHOR id="g-mount-get-volume" href="gio/GMount.html#g-mount-get-volume">
1130
+ <ANCHOR id="g-mount-get-default-location" href="gio/GMount.html#g-mount-get-default-location">
1131
+ <ANCHOR id="g-mount-can-unmount" href="gio/GMount.html#g-mount-can-unmount">
1132
+ <ANCHOR id="GMountMountFlags" href="gio/GMount.html#GMountMountFlags">
1133
+ <ANCHOR id="G-MOUNT-MOUNT-NONE:CAPS" href="gio/GMount.html#G-MOUNT-MOUNT-NONE:CAPS">
1134
+ <ANCHOR id="GMountUnmountFlags" href="gio/GMount.html#GMountUnmountFlags">
1135
+ <ANCHOR id="G-MOUNT-UNMOUNT-NONE:CAPS" href="gio/GMount.html#G-MOUNT-UNMOUNT-NONE:CAPS">
1136
+ <ANCHOR id="G-MOUNT-UNMOUNT-FORCE:CAPS" href="gio/GMount.html#G-MOUNT-UNMOUNT-FORCE:CAPS">
1137
+ <ANCHOR id="g-mount-unmount" href="gio/GMount.html#g-mount-unmount">
1138
+ <ANCHOR id="g-mount-unmount-finish" href="gio/GMount.html#g-mount-unmount-finish">
1139
+ <ANCHOR id="g-mount-unmount-with-operation" href="gio/GMount.html#g-mount-unmount-with-operation">
1140
+ <ANCHOR id="g-mount-unmount-with-operation-finish" href="gio/GMount.html#g-mount-unmount-with-operation-finish">
1141
+ <ANCHOR id="g-mount-remount" href="gio/GMount.html#g-mount-remount">
1142
+ <ANCHOR id="g-mount-remount-finish" href="gio/GMount.html#g-mount-remount-finish">
1143
+ <ANCHOR id="g-mount-can-eject" href="gio/GMount.html#g-mount-can-eject">
1144
+ <ANCHOR id="g-mount-eject" href="gio/GMount.html#g-mount-eject">
1145
+ <ANCHOR id="g-mount-eject-finish" href="gio/GMount.html#g-mount-eject-finish">
1146
+ <ANCHOR id="g-mount-eject-with-operation" href="gio/GMount.html#g-mount-eject-with-operation">
1147
+ <ANCHOR id="g-mount-eject-with-operation-finish" href="gio/GMount.html#g-mount-eject-with-operation-finish">
1148
+ <ANCHOR id="g-mount-guess-content-type" href="gio/GMount.html#g-mount-guess-content-type">
1149
+ <ANCHOR id="g-mount-guess-content-type-finish" href="gio/GMount.html#g-mount-guess-content-type-finish">
1150
+ <ANCHOR id="g-mount-guess-content-type-sync" href="gio/GMount.html#g-mount-guess-content-type-sync">
1151
+ <ANCHOR id="g-mount-is-shadowed" href="gio/GMount.html#g-mount-is-shadowed">
1152
+ <ANCHOR id="g-mount-shadow" href="gio/GMount.html#g-mount-shadow">
1153
+ <ANCHOR id="g-mount-unshadow" href="gio/GMount.html#g-mount-unshadow">
1154
+ <ANCHOR id="GMount.signal-details" href="gio/GMount.html#GMount.signal-details">
1155
+ <ANCHOR id="GMount-changed" href="gio/GMount.html#GMount-changed">
1156
+ <ANCHOR id="GMount-pre-unmount" href="gio/GMount.html#GMount-pre-unmount">
1157
+ <ANCHOR id="GMount-unmounted" href="gio/GMount.html#GMount-unmounted">
1158
+ <ANCHOR id="GDrive" href="gio/GDrive.html">
1159
+ <ANCHOR id="GDrive.synopsis" href="gio/GDrive.html#GDrive.synopsis">
1160
+ <ANCHOR id="GDrive.object-hierarchy" href="gio/GDrive.html#GDrive.object-hierarchy">
1161
+ <ANCHOR id="GDrive.prerequisites" href="gio/GDrive.html#GDrive.prerequisites">
1162
+ <ANCHOR id="GDrive.signals" href="gio/GDrive.html#GDrive.signals">
1163
+ <ANCHOR id="GDrive.description" href="gio/GDrive.html#GDrive.description">
1164
+ <ANCHOR id="GDrive.details" href="gio/GDrive.html#GDrive.details">
1165
+ <ANCHOR id="GDrive-struct" href="gio/GDrive.html#GDrive-struct">
1166
+ <ANCHOR id="GDriveIface" href="gio/GDrive.html#GDriveIface">
1167
+ <ANCHOR id="GDriveStartFlags" href="gio/GDrive.html#GDriveStartFlags">
1168
+ <ANCHOR id="G-DRIVE-START-NONE:CAPS" href="gio/GDrive.html#G-DRIVE-START-NONE:CAPS">
1169
+ <ANCHOR id="GDriveStartStopType" href="gio/GDrive.html#GDriveStartStopType">
1170
+ <ANCHOR id="G-DRIVE-START-STOP-TYPE-UNKNOWN:CAPS" href="gio/GDrive.html#G-DRIVE-START-STOP-TYPE-UNKNOWN:CAPS">
1171
+ <ANCHOR id="G-DRIVE-START-STOP-TYPE-SHUTDOWN:CAPS" href="gio/GDrive.html#G-DRIVE-START-STOP-TYPE-SHUTDOWN:CAPS">
1172
+ <ANCHOR id="G-DRIVE-START-STOP-TYPE-NETWORK:CAPS" href="gio/GDrive.html#G-DRIVE-START-STOP-TYPE-NETWORK:CAPS">
1173
+ <ANCHOR id="G-DRIVE-START-STOP-TYPE-MULTIDISK:CAPS" href="gio/GDrive.html#G-DRIVE-START-STOP-TYPE-MULTIDISK:CAPS">
1174
+ <ANCHOR id="G-DRIVE-START-STOP-TYPE-PASSWORD:CAPS" href="gio/GDrive.html#G-DRIVE-START-STOP-TYPE-PASSWORD:CAPS">
1175
+ <ANCHOR id="g-drive-get-name" href="gio/GDrive.html#g-drive-get-name">
1176
+ <ANCHOR id="g-drive-get-icon" href="gio/GDrive.html#g-drive-get-icon">
1177
+ <ANCHOR id="g-drive-has-volumes" href="gio/GDrive.html#g-drive-has-volumes">
1178
+ <ANCHOR id="g-drive-get-volumes" href="gio/GDrive.html#g-drive-get-volumes">
1179
+ <ANCHOR id="g-drive-can-eject" href="gio/GDrive.html#g-drive-can-eject">
1180
+ <ANCHOR id="g-drive-get-start-stop-type" href="gio/GDrive.html#g-drive-get-start-stop-type">
1181
+ <ANCHOR id="g-drive-can-start" href="gio/GDrive.html#g-drive-can-start">
1182
+ <ANCHOR id="g-drive-can-start-degraded" href="gio/GDrive.html#g-drive-can-start-degraded">
1183
+ <ANCHOR id="g-drive-can-stop" href="gio/GDrive.html#g-drive-can-stop">
1184
+ <ANCHOR id="g-drive-can-poll-for-media" href="gio/GDrive.html#g-drive-can-poll-for-media">
1185
+ <ANCHOR id="g-drive-poll-for-media" href="gio/GDrive.html#g-drive-poll-for-media">
1186
+ <ANCHOR id="g-drive-poll-for-media-finish" href="gio/GDrive.html#g-drive-poll-for-media-finish">
1187
+ <ANCHOR id="g-drive-has-media" href="gio/GDrive.html#g-drive-has-media">
1188
+ <ANCHOR id="g-drive-is-media-check-automatic" href="gio/GDrive.html#g-drive-is-media-check-automatic">
1189
+ <ANCHOR id="g-drive-is-media-removable" href="gio/GDrive.html#g-drive-is-media-removable">
1190
+ <ANCHOR id="g-drive-eject" href="gio/GDrive.html#g-drive-eject">
1191
+ <ANCHOR id="g-drive-eject-finish" href="gio/GDrive.html#g-drive-eject-finish">
1192
+ <ANCHOR id="g-drive-eject-with-operation" href="gio/GDrive.html#g-drive-eject-with-operation">
1193
+ <ANCHOR id="g-drive-eject-with-operation-finish" href="gio/GDrive.html#g-drive-eject-with-operation-finish">
1194
+ <ANCHOR id="g-drive-start" href="gio/GDrive.html#g-drive-start">
1195
+ <ANCHOR id="g-drive-start-finish" href="gio/GDrive.html#g-drive-start-finish">
1196
+ <ANCHOR id="g-drive-stop" href="gio/GDrive.html#g-drive-stop">
1197
+ <ANCHOR id="g-drive-stop-finish" href="gio/GDrive.html#g-drive-stop-finish">
1198
+ <ANCHOR id="g-drive-enumerate-identifiers" href="gio/GDrive.html#g-drive-enumerate-identifiers">
1199
+ <ANCHOR id="g-drive-get-identifier" href="gio/GDrive.html#g-drive-get-identifier">
1200
+ <ANCHOR id="GDrive.signal-details" href="gio/GDrive.html#GDrive.signal-details">
1201
+ <ANCHOR id="GDrive-changed" href="gio/GDrive.html#GDrive-changed">
1202
+ <ANCHOR id="GDrive-disconnected" href="gio/GDrive.html#GDrive-disconnected">
1203
+ <ANCHOR id="GDrive-eject-button" href="gio/GDrive.html#GDrive-eject-button">
1204
+ <ANCHOR id="GDrive-stop-button" href="gio/GDrive.html#GDrive-stop-button">
1205
+ <ANCHOR id="gio-Unix-Mounts" href="gio/gio-Unix-Mounts.html">
1206
+ <ANCHOR id="gio-Unix-Mounts.synopsis" href="gio/gio-Unix-Mounts.html#gio-Unix-Mounts.synopsis">
1207
+ <ANCHOR id="GUnixMountMonitor" href="gio/gio-Unix-Mounts.html#GUnixMountMonitor">
1208
+ <ANCHOR id="gio-Unix-Mounts.object-hierarchy" href="gio/gio-Unix-Mounts.html#gio-Unix-Mounts.object-hierarchy">
1209
+ <ANCHOR id="gio-Unix-Mounts.signals" href="gio/gio-Unix-Mounts.html#gio-Unix-Mounts.signals">
1210
+ <ANCHOR id="gio-Unix-Mounts.description" href="gio/gio-Unix-Mounts.html#gio-Unix-Mounts.description">
1211
+ <ANCHOR id="gio-Unix-Mounts.details" href="gio/gio-Unix-Mounts.html#gio-Unix-Mounts.details">
1212
+ <ANCHOR id="GUnixMountPoint" href="gio/gio-Unix-Mounts.html#GUnixMountPoint">
1213
+ <ANCHOR id="GUnixMountEntry" href="gio/gio-Unix-Mounts.html#GUnixMountEntry">
1214
+ <ANCHOR id="GUnixMountMonitor-struct" href="gio/gio-Unix-Mounts.html#GUnixMountMonitor-struct">
1215
+ <ANCHOR id="g-unix-mount-free" href="gio/gio-Unix-Mounts.html#g-unix-mount-free">
1216
+ <ANCHOR id="g-unix-mount-compare" href="gio/gio-Unix-Mounts.html#g-unix-mount-compare">
1217
+ <ANCHOR id="g-unix-mount-get-mount-path" href="gio/gio-Unix-Mounts.html#g-unix-mount-get-mount-path">
1218
+ <ANCHOR id="g-unix-mount-get-device-path" href="gio/gio-Unix-Mounts.html#g-unix-mount-get-device-path">
1219
+ <ANCHOR id="g-unix-mount-get-fs-type" href="gio/gio-Unix-Mounts.html#g-unix-mount-get-fs-type">
1220
+ <ANCHOR id="g-unix-mount-is-readonly" href="gio/gio-Unix-Mounts.html#g-unix-mount-is-readonly">
1221
+ <ANCHOR id="g-unix-mount-is-system-internal" href="gio/gio-Unix-Mounts.html#g-unix-mount-is-system-internal">
1222
+ <ANCHOR id="g-unix-mount-guess-icon" href="gio/gio-Unix-Mounts.html#g-unix-mount-guess-icon">
1223
+ <ANCHOR id="g-unix-mount-guess-name" href="gio/gio-Unix-Mounts.html#g-unix-mount-guess-name">
1224
+ <ANCHOR id="g-unix-mount-guess-can-eject" href="gio/gio-Unix-Mounts.html#g-unix-mount-guess-can-eject">
1225
+ <ANCHOR id="g-unix-mount-guess-should-display" href="gio/gio-Unix-Mounts.html#g-unix-mount-guess-should-display">
1226
+ <ANCHOR id="g-unix-mount-point-free" href="gio/gio-Unix-Mounts.html#g-unix-mount-point-free">
1227
+ <ANCHOR id="g-unix-mount-point-compare" href="gio/gio-Unix-Mounts.html#g-unix-mount-point-compare">
1228
+ <ANCHOR id="g-unix-mount-point-get-mount-path" href="gio/gio-Unix-Mounts.html#g-unix-mount-point-get-mount-path">
1229
+ <ANCHOR id="g-unix-mount-point-get-device-path" href="gio/gio-Unix-Mounts.html#g-unix-mount-point-get-device-path">
1230
+ <ANCHOR id="g-unix-mount-point-get-fs-type" href="gio/gio-Unix-Mounts.html#g-unix-mount-point-get-fs-type">
1231
+ <ANCHOR id="g-unix-mount-point-is-readonly" href="gio/gio-Unix-Mounts.html#g-unix-mount-point-is-readonly">
1232
+ <ANCHOR id="g-unix-mount-point-is-user-mountable" href="gio/gio-Unix-Mounts.html#g-unix-mount-point-is-user-mountable">
1233
+ <ANCHOR id="g-unix-mount-point-is-loopback" href="gio/gio-Unix-Mounts.html#g-unix-mount-point-is-loopback">
1234
+ <ANCHOR id="g-unix-mount-point-guess-icon" href="gio/gio-Unix-Mounts.html#g-unix-mount-point-guess-icon">
1235
+ <ANCHOR id="g-unix-mount-point-guess-name" href="gio/gio-Unix-Mounts.html#g-unix-mount-point-guess-name">
1236
+ <ANCHOR id="g-unix-mount-point-guess-can-eject" href="gio/gio-Unix-Mounts.html#g-unix-mount-point-guess-can-eject">
1237
+ <ANCHOR id="g-unix-mount-points-get" href="gio/gio-Unix-Mounts.html#g-unix-mount-points-get">
1238
+ <ANCHOR id="g-unix-mounts-get" href="gio/gio-Unix-Mounts.html#g-unix-mounts-get">
1239
+ <ANCHOR id="g-unix-mount-at" href="gio/gio-Unix-Mounts.html#g-unix-mount-at">
1240
+ <ANCHOR id="g-unix-mounts-changed-since" href="gio/gio-Unix-Mounts.html#g-unix-mounts-changed-since">
1241
+ <ANCHOR id="g-unix-mount-points-changed-since" href="gio/gio-Unix-Mounts.html#g-unix-mount-points-changed-since">
1242
+ <ANCHOR id="g-unix-mount-monitor-new" href="gio/gio-Unix-Mounts.html#g-unix-mount-monitor-new">
1243
+ <ANCHOR id="g-unix-mount-monitor-set-rate-limit" href="gio/gio-Unix-Mounts.html#g-unix-mount-monitor-set-rate-limit">
1244
+ <ANCHOR id="g-unix-is-mount-path-system-internal" href="gio/gio-Unix-Mounts.html#g-unix-is-mount-path-system-internal">
1245
+ <ANCHOR id="gio-Unix-Mounts.signal-details" href="gio/gio-Unix-Mounts.html#gio-Unix-Mounts.signal-details">
1246
+ <ANCHOR id="GUnixMountMonitor-mountpoints-changed" href="gio/gio-Unix-Mounts.html#GUnixMountMonitor-mountpoints-changed">
1247
+ <ANCHOR id="GUnixMountMonitor-mounts-changed" href="gio/gio-Unix-Mounts.html#GUnixMountMonitor-mounts-changed">
1248
+ <ANCHOR id="GIcon" href="gio/GIcon.html">
1249
+ <ANCHOR id="GIcon.synopsis" href="gio/GIcon.html#GIcon.synopsis">
1250
+ <ANCHOR id="GIcon.object-hierarchy" href="gio/GIcon.html#GIcon.object-hierarchy">
1251
+ <ANCHOR id="GIcon.prerequisites" href="gio/GIcon.html#GIcon.prerequisites">
1252
+ <ANCHOR id="GIcon.derived-interfaces" href="gio/GIcon.html#GIcon.derived-interfaces">
1253
+ <ANCHOR id="GIcon.implementations" href="gio/GIcon.html#GIcon.implementations">
1254
+ <ANCHOR id="GIcon.description" href="gio/GIcon.html#GIcon.description">
1255
+ <ANCHOR id="GIcon.details" href="gio/GIcon.html#GIcon.details">
1256
+ <ANCHOR id="GIcon-struct" href="gio/GIcon.html#GIcon-struct">
1257
+ <ANCHOR id="GIconIface" href="gio/GIcon.html#GIconIface">
1258
+ <ANCHOR id="g-icon-hash" href="gio/GIcon.html#g-icon-hash">
1259
+ <ANCHOR id="g-icon-equal" href="gio/GIcon.html#g-icon-equal">
1260
+ <ANCHOR id="g-icon-to-string" href="gio/GIcon.html#g-icon-to-string">
1261
+ <ANCHOR id="g-icon-new-for-string" href="gio/GIcon.html#g-icon-new-for-string">
1262
+ <ANCHOR id="GFileIcon" href="gio/GFileIcon.html">
1263
+ <ANCHOR id="GFileIcon.synopsis" href="gio/GFileIcon.html#GFileIcon.synopsis">
1264
+ <ANCHOR id="GFileIcon.object-hierarchy" href="gio/GFileIcon.html#GFileIcon.object-hierarchy">
1265
+ <ANCHOR id="GFileIcon.implemented-interfaces" href="gio/GFileIcon.html#GFileIcon.implemented-interfaces">
1266
+ <ANCHOR id="GFileIcon.properties" href="gio/GFileIcon.html#GFileIcon.properties">
1267
+ <ANCHOR id="GFileIcon.description" href="gio/GFileIcon.html#GFileIcon.description">
1268
+ <ANCHOR id="GFileIcon.details" href="gio/GFileIcon.html#GFileIcon.details">
1269
+ <ANCHOR id="GFileIcon-struct" href="gio/GFileIcon.html#GFileIcon-struct">
1270
+ <ANCHOR id="g-file-icon-new" href="gio/GFileIcon.html#g-file-icon-new">
1271
+ <ANCHOR id="g-file-icon-get-file" href="gio/GFileIcon.html#g-file-icon-get-file">
1272
+ <ANCHOR id="GFileIcon.property-details" href="gio/GFileIcon.html#GFileIcon.property-details">
1273
+ <ANCHOR id="GFileIcon--file" href="gio/GFileIcon.html#GFileIcon--file">
1274
+ <ANCHOR id="GFileIcon.see-also" href="gio/GFileIcon.html#GFileIcon.see-also">
1275
+ <ANCHOR id="GLoadableIcon" href="gio/GLoadableIcon.html">
1276
+ <ANCHOR id="GLoadableIcon.synopsis" href="gio/GLoadableIcon.html#GLoadableIcon.synopsis">
1277
+ <ANCHOR id="GLoadableIcon.object-hierarchy" href="gio/GLoadableIcon.html#GLoadableIcon.object-hierarchy">
1278
+ <ANCHOR id="GLoadableIcon.prerequisites" href="gio/GLoadableIcon.html#GLoadableIcon.prerequisites">
1279
+ <ANCHOR id="GLoadableIcon.implementations" href="gio/GLoadableIcon.html#GLoadableIcon.implementations">
1280
+ <ANCHOR id="GLoadableIcon.description" href="gio/GLoadableIcon.html#GLoadableIcon.description">
1281
+ <ANCHOR id="GLoadableIcon.details" href="gio/GLoadableIcon.html#GLoadableIcon.details">
1282
+ <ANCHOR id="GLoadableIcon-struct" href="gio/GLoadableIcon.html#GLoadableIcon-struct">
1283
+ <ANCHOR id="GLoadableIconIface" href="gio/GLoadableIcon.html#GLoadableIconIface">
1284
+ <ANCHOR id="g-loadable-icon-load" href="gio/GLoadableIcon.html#g-loadable-icon-load">
1285
+ <ANCHOR id="g-loadable-icon-load-async" href="gio/GLoadableIcon.html#g-loadable-icon-load-async">
1286
+ <ANCHOR id="g-loadable-icon-load-finish" href="gio/GLoadableIcon.html#g-loadable-icon-load-finish">
1287
+ <ANCHOR id="GLoadableIcon.see-also" href="gio/GLoadableIcon.html#GLoadableIcon.see-also">
1288
+ <ANCHOR id="GThemedIcon" href="gio/GThemedIcon.html">
1289
+ <ANCHOR id="GThemedIcon.synopsis" href="gio/GThemedIcon.html#GThemedIcon.synopsis">
1290
+ <ANCHOR id="GThemedIcon.object-hierarchy" href="gio/GThemedIcon.html#GThemedIcon.object-hierarchy">
1291
+ <ANCHOR id="GThemedIcon.implemented-interfaces" href="gio/GThemedIcon.html#GThemedIcon.implemented-interfaces">
1292
+ <ANCHOR id="GThemedIcon.properties" href="gio/GThemedIcon.html#GThemedIcon.properties">
1293
+ <ANCHOR id="GThemedIcon.description" href="gio/GThemedIcon.html#GThemedIcon.description">
1294
+ <ANCHOR id="GThemedIcon.details" href="gio/GThemedIcon.html#GThemedIcon.details">
1295
+ <ANCHOR id="GThemedIcon-struct" href="gio/GThemedIcon.html#GThemedIcon-struct">
1296
+ <ANCHOR id="g-themed-icon-new" href="gio/GThemedIcon.html#g-themed-icon-new">
1297
+ <ANCHOR id="g-themed-icon-new-from-names" href="gio/GThemedIcon.html#g-themed-icon-new-from-names">
1298
+ <ANCHOR id="g-themed-icon-new-with-default-fallbacks" href="gio/GThemedIcon.html#g-themed-icon-new-with-default-fallbacks">
1299
+ <ANCHOR id="g-themed-icon-prepend-name" href="gio/GThemedIcon.html#g-themed-icon-prepend-name">
1300
+ <ANCHOR id="g-themed-icon-append-name" href="gio/GThemedIcon.html#g-themed-icon-append-name">
1301
+ <ANCHOR id="g-themed-icon-get-names" href="gio/GThemedIcon.html#g-themed-icon-get-names">
1302
+ <ANCHOR id="GThemedIcon.property-details" href="gio/GThemedIcon.html#GThemedIcon.property-details">
1303
+ <ANCHOR id="GThemedIcon--name" href="gio/GThemedIcon.html#GThemedIcon--name">
1304
+ <ANCHOR id="GThemedIcon--names" href="gio/GThemedIcon.html#GThemedIcon--names">
1305
+ <ANCHOR id="GThemedIcon--use-default-fallbacks" href="gio/GThemedIcon.html#GThemedIcon--use-default-fallbacks">
1306
+ <ANCHOR id="GThemedIcon.see-also" href="gio/GThemedIcon.html#GThemedIcon.see-also">
1307
+ <ANCHOR id="GEmblemedIcon" href="gio/GEmblemedIcon.html">
1308
+ <ANCHOR id="GEmblemedIcon.synopsis" href="gio/GEmblemedIcon.html#GEmblemedIcon.synopsis">
1309
+ <ANCHOR id="GEmblemedIcon.object-hierarchy" href="gio/GEmblemedIcon.html#GEmblemedIcon.object-hierarchy">
1310
+ <ANCHOR id="GEmblemedIcon.implemented-interfaces" href="gio/GEmblemedIcon.html#GEmblemedIcon.implemented-interfaces">
1311
+ <ANCHOR id="GEmblemedIcon.description" href="gio/GEmblemedIcon.html#GEmblemedIcon.description">
1312
+ <ANCHOR id="GEmblemedIcon.details" href="gio/GEmblemedIcon.html#GEmblemedIcon.details">
1313
+ <ANCHOR id="GEmblemedIcon-struct" href="gio/GEmblemedIcon.html#GEmblemedIcon-struct">
1314
+ <ANCHOR id="g-emblemed-icon-new" href="gio/GEmblemedIcon.html#g-emblemed-icon-new">
1315
+ <ANCHOR id="g-emblemed-icon-get-icon" href="gio/GEmblemedIcon.html#g-emblemed-icon-get-icon">
1316
+ <ANCHOR id="g-emblemed-icon-get-emblems" href="gio/GEmblemedIcon.html#g-emblemed-icon-get-emblems">
1317
+ <ANCHOR id="g-emblemed-icon-add-emblem" href="gio/GEmblemedIcon.html#g-emblemed-icon-add-emblem">
1318
+ <ANCHOR id="GEmblemedIcon.see-also" href="gio/GEmblemedIcon.html#GEmblemedIcon.see-also">
1319
+ <ANCHOR id="GEmblem" href="gio/GEmblem.html">
1320
+ <ANCHOR id="GEmblem.synopsis" href="gio/GEmblem.html#GEmblem.synopsis">
1321
+ <ANCHOR id="GEmblem.object-hierarchy" href="gio/GEmblem.html#GEmblem.object-hierarchy">
1322
+ <ANCHOR id="GEmblem.implemented-interfaces" href="gio/GEmblem.html#GEmblem.implemented-interfaces">
1323
+ <ANCHOR id="GEmblem.properties" href="gio/GEmblem.html#GEmblem.properties">
1324
+ <ANCHOR id="GEmblem.description" href="gio/GEmblem.html#GEmblem.description">
1325
+ <ANCHOR id="GEmblem.details" href="gio/GEmblem.html#GEmblem.details">
1326
+ <ANCHOR id="GEmblem-struct" href="gio/GEmblem.html#GEmblem-struct">
1327
+ <ANCHOR id="GEmblemOrigin" href="gio/GEmblem.html#GEmblemOrigin">
1328
+ <ANCHOR id="G-EMBLEM-ORIGIN-UNKNOWN:CAPS" href="gio/GEmblem.html#G-EMBLEM-ORIGIN-UNKNOWN:CAPS">
1329
+ <ANCHOR id="G-EMBLEM-ORIGIN-DEVICE:CAPS" href="gio/GEmblem.html#G-EMBLEM-ORIGIN-DEVICE:CAPS">
1330
+ <ANCHOR id="G-EMBLEM-ORIGIN-LIVEMETADATA:CAPS" href="gio/GEmblem.html#G-EMBLEM-ORIGIN-LIVEMETADATA:CAPS">
1331
+ <ANCHOR id="G-EMBLEM-ORIGIN-TAG:CAPS" href="gio/GEmblem.html#G-EMBLEM-ORIGIN-TAG:CAPS">
1332
+ <ANCHOR id="g-emblem-new" href="gio/GEmblem.html#g-emblem-new">
1333
+ <ANCHOR id="g-emblem-new-with-origin" href="gio/GEmblem.html#g-emblem-new-with-origin">
1334
+ <ANCHOR id="g-emblem-get-icon" href="gio/GEmblem.html#g-emblem-get-icon">
1335
+ <ANCHOR id="g-emblem-get-origin" href="gio/GEmblem.html#g-emblem-get-origin">
1336
+ <ANCHOR id="GEmblem.property-details" href="gio/GEmblem.html#GEmblem.property-details">
1337
+ <ANCHOR id="GEmblem--icon" href="gio/GEmblem.html#GEmblem--icon">
1338
+ <ANCHOR id="GEmblem--origin" href="gio/GEmblem.html#GEmblem--origin">
1339
+ <ANCHOR id="GEmblem.see-also" href="gio/GEmblem.html#GEmblem.see-also">
1340
+ <ANCHOR id="GInitable" href="gio/GInitable.html">
1341
+ <ANCHOR id="GInitable.synopsis" href="gio/GInitable.html#GInitable.synopsis">
1342
+ <ANCHOR id="GInitable.object-hierarchy" href="gio/GInitable.html#GInitable.object-hierarchy">
1343
+ <ANCHOR id="GInitable.prerequisites" href="gio/GInitable.html#GInitable.prerequisites">
1344
+ <ANCHOR id="GInitable.implementations" href="gio/GInitable.html#GInitable.implementations">
1345
+ <ANCHOR id="GInitable.description" href="gio/GInitable.html#GInitable.description">
1346
+ <ANCHOR id="GInitable.details" href="gio/GInitable.html#GInitable.details">
1347
+ <ANCHOR id="GInitable-struct" href="gio/GInitable.html#GInitable-struct">
1348
+ <ANCHOR id="GInitableIface" href="gio/GInitable.html#GInitableIface">
1349
+ <ANCHOR id="g-initable-init" href="gio/GInitable.html#g-initable-init">
1350
+ <ANCHOR id="g-initable-new" href="gio/GInitable.html#g-initable-new">
1351
+ <ANCHOR id="g-initable-new-valist" href="gio/GInitable.html#g-initable-new-valist">
1352
+ <ANCHOR id="g-initable-newv" href="gio/GInitable.html#g-initable-newv">
1353
+ <ANCHOR id="GInitable.see-also" href="gio/GInitable.html#GInitable.see-also">
1354
+ <ANCHOR id="GAsyncInitable" href="gio/GAsyncInitable.html">
1355
+ <ANCHOR id="GAsyncInitable.synopsis" href="gio/GAsyncInitable.html#GAsyncInitable.synopsis">
1356
+ <ANCHOR id="GAsyncInitable.object-hierarchy" href="gio/GAsyncInitable.html#GAsyncInitable.object-hierarchy">
1357
+ <ANCHOR id="GAsyncInitable.prerequisites" href="gio/GAsyncInitable.html#GAsyncInitable.prerequisites">
1358
+ <ANCHOR id="GAsyncInitable.implementations" href="gio/GAsyncInitable.html#GAsyncInitable.implementations">
1359
+ <ANCHOR id="GAsyncInitable.description" href="gio/GAsyncInitable.html#GAsyncInitable.description">
1360
+ <ANCHOR id="GAsyncInitable.details" href="gio/GAsyncInitable.html#GAsyncInitable.details">
1361
+ <ANCHOR id="GAsyncInitable-struct" href="gio/GAsyncInitable.html#GAsyncInitable-struct">
1362
+ <ANCHOR id="GAsyncInitableIface" href="gio/GAsyncInitable.html#GAsyncInitableIface">
1363
+ <ANCHOR id="g-async-initable-init-async" href="gio/GAsyncInitable.html#g-async-initable-init-async">
1364
+ <ANCHOR id="g-async-initable-init-finish" href="gio/GAsyncInitable.html#g-async-initable-init-finish">
1365
+ <ANCHOR id="g-async-initable-new-async" href="gio/GAsyncInitable.html#g-async-initable-new-async">
1366
+ <ANCHOR id="g-async-initable-new-finish" href="gio/GAsyncInitable.html#g-async-initable-new-finish">
1367
+ <ANCHOR id="g-async-initable-new-valist-async" href="gio/GAsyncInitable.html#g-async-initable-new-valist-async">
1368
+ <ANCHOR id="g-async-initable-newv-async" href="gio/GAsyncInitable.html#g-async-initable-newv-async">
1369
+ <ANCHOR id="GAsyncInitable.see-also" href="gio/GAsyncInitable.html#GAsyncInitable.see-also">
1370
+ <ANCHOR id="GSocket" href="gio/GSocket.html">
1371
+ <ANCHOR id="GSocket.synopsis" href="gio/GSocket.html#GSocket.synopsis">
1372
+ <ANCHOR id="GSocket.object-hierarchy" href="gio/GSocket.html#GSocket.object-hierarchy">
1373
+ <ANCHOR id="GSocket.implemented-interfaces" href="gio/GSocket.html#GSocket.implemented-interfaces">
1374
+ <ANCHOR id="GSocket.properties" href="gio/GSocket.html#GSocket.properties">
1375
+ <ANCHOR id="GSocket.description" href="gio/GSocket.html#GSocket.description">
1376
+ <ANCHOR id="GSocket.details" href="gio/GSocket.html#GSocket.details">
1377
+ <ANCHOR id="GSocket-struct" href="gio/GSocket.html#GSocket-struct">
1378
+ <ANCHOR id="GSocketSourceFunc" href="gio/GSocket.html#GSocketSourceFunc">
1379
+ <ANCHOR id="GSocketType" href="gio/GSocket.html#GSocketType">
1380
+ <ANCHOR id="G-SOCKET-TYPE-INVALID:CAPS" href="gio/GSocket.html#G-SOCKET-TYPE-INVALID:CAPS">
1381
+ <ANCHOR id="G-SOCKET-TYPE-STREAM:CAPS" href="gio/GSocket.html#G-SOCKET-TYPE-STREAM:CAPS">
1382
+ <ANCHOR id="G-SOCKET-TYPE-DATAGRAM:CAPS" href="gio/GSocket.html#G-SOCKET-TYPE-DATAGRAM:CAPS">
1383
+ <ANCHOR id="G-SOCKET-TYPE-SEQPACKET:CAPS" href="gio/GSocket.html#G-SOCKET-TYPE-SEQPACKET:CAPS">
1384
+ <ANCHOR id="GSocketProtocol" href="gio/GSocket.html#GSocketProtocol">
1385
+ <ANCHOR id="G-SOCKET-PROTOCOL-UNKNOWN:CAPS" href="gio/GSocket.html#G-SOCKET-PROTOCOL-UNKNOWN:CAPS">
1386
+ <ANCHOR id="G-SOCKET-PROTOCOL-DEFAULT:CAPS" href="gio/GSocket.html#G-SOCKET-PROTOCOL-DEFAULT:CAPS">
1387
+ <ANCHOR id="G-SOCKET-PROTOCOL-TCP:CAPS" href="gio/GSocket.html#G-SOCKET-PROTOCOL-TCP:CAPS">
1388
+ <ANCHOR id="G-SOCKET-PROTOCOL-UDP:CAPS" href="gio/GSocket.html#G-SOCKET-PROTOCOL-UDP:CAPS">
1389
+ <ANCHOR id="G-SOCKET-PROTOCOL-SCTP:CAPS" href="gio/GSocket.html#G-SOCKET-PROTOCOL-SCTP:CAPS">
1390
+ <ANCHOR id="GSocketMsgFlags" href="gio/GSocket.html#GSocketMsgFlags">
1391
+ <ANCHOR id="G-SOCKET-MSG-NONE:CAPS" href="gio/GSocket.html#G-SOCKET-MSG-NONE:CAPS">
1392
+ <ANCHOR id="G-SOCKET-MSG-OOB:CAPS" href="gio/GSocket.html#G-SOCKET-MSG-OOB:CAPS">
1393
+ <ANCHOR id="G-SOCKET-MSG-PEEK:CAPS" href="gio/GSocket.html#G-SOCKET-MSG-PEEK:CAPS">
1394
+ <ANCHOR id="G-SOCKET-MSG-DONTROUTE:CAPS" href="gio/GSocket.html#G-SOCKET-MSG-DONTROUTE:CAPS">
1395
+ <ANCHOR id="GInputVector" href="gio/GSocket.html#GInputVector">
1396
+ <ANCHOR id="GOutputVector" href="gio/GSocket.html#GOutputVector">
1397
+ <ANCHOR id="g-socket-new" href="gio/GSocket.html#g-socket-new">
1398
+ <ANCHOR id="g-socket-new-from-fd" href="gio/GSocket.html#g-socket-new-from-fd">
1399
+ <ANCHOR id="g-socket-bind" href="gio/GSocket.html#g-socket-bind">
1400
+ <ANCHOR id="g-socket-listen" href="gio/GSocket.html#g-socket-listen">
1401
+ <ANCHOR id="g-socket-accept" href="gio/GSocket.html#g-socket-accept">
1402
+ <ANCHOR id="g-socket-connect" href="gio/GSocket.html#g-socket-connect">
1403
+ <ANCHOR id="g-socket-check-connect-result" href="gio/GSocket.html#g-socket-check-connect-result">
1404
+ <ANCHOR id="g-socket-receive" href="gio/GSocket.html#g-socket-receive">
1405
+ <ANCHOR id="g-socket-receive-from" href="gio/GSocket.html#g-socket-receive-from">
1406
+ <ANCHOR id="g-socket-receive-message" href="gio/GSocket.html#g-socket-receive-message">
1407
+ <ANCHOR id="g-socket-receive-with-blocking" href="gio/GSocket.html#g-socket-receive-with-blocking">
1408
+ <ANCHOR id="g-socket-send" href="gio/GSocket.html#g-socket-send">
1409
+ <ANCHOR id="g-socket-send-to" href="gio/GSocket.html#g-socket-send-to">
1410
+ <ANCHOR id="g-socket-send-message" href="gio/GSocket.html#g-socket-send-message">
1411
+ <ANCHOR id="g-socket-send-with-blocking" href="gio/GSocket.html#g-socket-send-with-blocking">
1412
+ <ANCHOR id="g-socket-close" href="gio/GSocket.html#g-socket-close">
1413
+ <ANCHOR id="g-socket-is-closed" href="gio/GSocket.html#g-socket-is-closed">
1414
+ <ANCHOR id="g-socket-shutdown" href="gio/GSocket.html#g-socket-shutdown">
1415
+ <ANCHOR id="g-socket-is-connected" href="gio/GSocket.html#g-socket-is-connected">
1416
+ <ANCHOR id="g-socket-create-source" href="gio/GSocket.html#g-socket-create-source">
1417
+ <ANCHOR id="g-socket-condition-check" href="gio/GSocket.html#g-socket-condition-check">
1418
+ <ANCHOR id="g-socket-condition-wait" href="gio/GSocket.html#g-socket-condition-wait">
1419
+ <ANCHOR id="g-socket-set-listen-backlog" href="gio/GSocket.html#g-socket-set-listen-backlog">
1420
+ <ANCHOR id="g-socket-get-listen-backlog" href="gio/GSocket.html#g-socket-get-listen-backlog">
1421
+ <ANCHOR id="g-socket-get-blocking" href="gio/GSocket.html#g-socket-get-blocking">
1422
+ <ANCHOR id="g-socket-set-blocking" href="gio/GSocket.html#g-socket-set-blocking">
1423
+ <ANCHOR id="g-socket-get-keepalive" href="gio/GSocket.html#g-socket-get-keepalive">
1424
+ <ANCHOR id="g-socket-set-keepalive" href="gio/GSocket.html#g-socket-set-keepalive">
1425
+ <ANCHOR id="g-socket-get-timeout" href="gio/GSocket.html#g-socket-get-timeout">
1426
+ <ANCHOR id="g-socket-set-timeout" href="gio/GSocket.html#g-socket-set-timeout">
1427
+ <ANCHOR id="g-socket-get-family" href="gio/GSocket.html#g-socket-get-family">
1428
+ <ANCHOR id="g-socket-get-fd" href="gio/GSocket.html#g-socket-get-fd">
1429
+ <ANCHOR id="g-socket-get-local-address" href="gio/GSocket.html#g-socket-get-local-address">
1430
+ <ANCHOR id="g-socket-get-protocol" href="gio/GSocket.html#g-socket-get-protocol">
1431
+ <ANCHOR id="g-socket-get-remote-address" href="gio/GSocket.html#g-socket-get-remote-address">
1432
+ <ANCHOR id="g-socket-get-socket-type" href="gio/GSocket.html#g-socket-get-socket-type">
1433
+ <ANCHOR id="g-socket-speaks-ipv4" href="gio/GSocket.html#g-socket-speaks-ipv4">
1434
+ <ANCHOR id="g-socket-get-credentials" href="gio/GSocket.html#g-socket-get-credentials">
1435
+ <ANCHOR id="GSocket.property-details" href="gio/GSocket.html#GSocket.property-details">
1436
+ <ANCHOR id="GSocket--blocking" href="gio/GSocket.html#GSocket--blocking">
1437
+ <ANCHOR id="GSocket--family" href="gio/GSocket.html#GSocket--family">
1438
+ <ANCHOR id="GSocket--fd" href="gio/GSocket.html#GSocket--fd">
1439
+ <ANCHOR id="GSocket--keepalive" href="gio/GSocket.html#GSocket--keepalive">
1440
+ <ANCHOR id="GSocket--listen-backlog" href="gio/GSocket.html#GSocket--listen-backlog">
1441
+ <ANCHOR id="GSocket--local-address" href="gio/GSocket.html#GSocket--local-address">
1442
+ <ANCHOR id="GSocket--protocol" href="gio/GSocket.html#GSocket--protocol">
1443
+ <ANCHOR id="GSocket--remote-address" href="gio/GSocket.html#GSocket--remote-address">
1444
+ <ANCHOR id="GSocket--timeout" href="gio/GSocket.html#GSocket--timeout">
1445
+ <ANCHOR id="GSocket--type" href="gio/GSocket.html#GSocket--type">
1446
+ <ANCHOR id="GSocket.see-also" href="gio/GSocket.html#GSocket.see-also">
1447
+ <ANCHOR id="GInetAddress" href="gio/GInetAddress.html">
1448
+ <ANCHOR id="GInetAddress.synopsis" href="gio/GInetAddress.html#GInetAddress.synopsis">
1449
+ <ANCHOR id="GInetAddress.object-hierarchy" href="gio/GInetAddress.html#GInetAddress.object-hierarchy">
1450
+ <ANCHOR id="GInetAddress.properties" href="gio/GInetAddress.html#GInetAddress.properties">
1451
+ <ANCHOR id="GInetAddress.description" href="gio/GInetAddress.html#GInetAddress.description">
1452
+ <ANCHOR id="GInetAddress.details" href="gio/GInetAddress.html#GInetAddress.details">
1453
+ <ANCHOR id="GInetAddress-struct" href="gio/GInetAddress.html#GInetAddress-struct">
1454
+ <ANCHOR id="g-inet-address-new-from-string" href="gio/GInetAddress.html#g-inet-address-new-from-string">
1455
+ <ANCHOR id="g-inet-address-new-from-bytes" href="gio/GInetAddress.html#g-inet-address-new-from-bytes">
1456
+ <ANCHOR id="g-inet-address-new-any" href="gio/GInetAddress.html#g-inet-address-new-any">
1457
+ <ANCHOR id="g-inet-address-new-loopback" href="gio/GInetAddress.html#g-inet-address-new-loopback">
1458
+ <ANCHOR id="g-inet-address-to-bytes" href="gio/GInetAddress.html#g-inet-address-to-bytes">
1459
+ <ANCHOR id="g-inet-address-get-native-size" href="gio/GInetAddress.html#g-inet-address-get-native-size">
1460
+ <ANCHOR id="g-inet-address-to-string" href="gio/GInetAddress.html#g-inet-address-to-string">
1461
+ <ANCHOR id="g-inet-address-get-family" href="gio/GInetAddress.html#g-inet-address-get-family">
1462
+ <ANCHOR id="g-inet-address-get-is-any" href="gio/GInetAddress.html#g-inet-address-get-is-any">
1463
+ <ANCHOR id="g-inet-address-get-is-loopback" href="gio/GInetAddress.html#g-inet-address-get-is-loopback">
1464
+ <ANCHOR id="g-inet-address-get-is-link-local" href="gio/GInetAddress.html#g-inet-address-get-is-link-local">
1465
+ <ANCHOR id="g-inet-address-get-is-site-local" href="gio/GInetAddress.html#g-inet-address-get-is-site-local">
1466
+ <ANCHOR id="g-inet-address-get-is-multicast" href="gio/GInetAddress.html#g-inet-address-get-is-multicast">
1467
+ <ANCHOR id="g-inet-address-get-is-mc-link-local" href="gio/GInetAddress.html#g-inet-address-get-is-mc-link-local">
1468
+ <ANCHOR id="g-inet-address-get-is-mc-node-local" href="gio/GInetAddress.html#g-inet-address-get-is-mc-node-local">
1469
+ <ANCHOR id="g-inet-address-get-is-mc-site-local" href="gio/GInetAddress.html#g-inet-address-get-is-mc-site-local">
1470
+ <ANCHOR id="g-inet-address-get-is-mc-org-local" href="gio/GInetAddress.html#g-inet-address-get-is-mc-org-local">
1471
+ <ANCHOR id="g-inet-address-get-is-mc-global" href="gio/GInetAddress.html#g-inet-address-get-is-mc-global">
1472
+ <ANCHOR id="GInetAddress.property-details" href="gio/GInetAddress.html#GInetAddress.property-details">
1473
+ <ANCHOR id="GInetAddress--bytes" href="gio/GInetAddress.html#GInetAddress--bytes">
1474
+ <ANCHOR id="GInetAddress--family" href="gio/GInetAddress.html#GInetAddress--family">
1475
+ <ANCHOR id="GInetAddress--is-any" href="gio/GInetAddress.html#GInetAddress--is-any">
1476
+ <ANCHOR id="GInetAddress--is-link-local" href="gio/GInetAddress.html#GInetAddress--is-link-local">
1477
+ <ANCHOR id="GInetAddress--is-loopback" href="gio/GInetAddress.html#GInetAddress--is-loopback">
1478
+ <ANCHOR id="GInetAddress--is-mc-global" href="gio/GInetAddress.html#GInetAddress--is-mc-global">
1479
+ <ANCHOR id="GInetAddress--is-mc-link-local" href="gio/GInetAddress.html#GInetAddress--is-mc-link-local">
1480
+ <ANCHOR id="GInetAddress--is-mc-node-local" href="gio/GInetAddress.html#GInetAddress--is-mc-node-local">
1481
+ <ANCHOR id="GInetAddress--is-mc-org-local" href="gio/GInetAddress.html#GInetAddress--is-mc-org-local">
1482
+ <ANCHOR id="GInetAddress--is-mc-site-local" href="gio/GInetAddress.html#GInetAddress--is-mc-site-local">
1483
+ <ANCHOR id="GInetAddress--is-multicast" href="gio/GInetAddress.html#GInetAddress--is-multicast">
1484
+ <ANCHOR id="GInetAddress--is-site-local" href="gio/GInetAddress.html#GInetAddress--is-site-local">
1485
+ <ANCHOR id="GSocketAddress" href="gio/GSocketAddress.html">
1486
+ <ANCHOR id="GSocketAddress.synopsis" href="gio/GSocketAddress.html#GSocketAddress.synopsis">
1487
+ <ANCHOR id="GSocketAddress.object-hierarchy" href="gio/GSocketAddress.html#GSocketAddress.object-hierarchy">
1488
+ <ANCHOR id="GSocketAddress.implemented-interfaces" href="gio/GSocketAddress.html#GSocketAddress.implemented-interfaces">
1489
+ <ANCHOR id="GSocketAddress.properties" href="gio/GSocketAddress.html#GSocketAddress.properties">
1490
+ <ANCHOR id="GSocketAddress.description" href="gio/GSocketAddress.html#GSocketAddress.description">
1491
+ <ANCHOR id="GSocketAddress.details" href="gio/GSocketAddress.html#GSocketAddress.details">
1492
+ <ANCHOR id="GSocketAddress-struct" href="gio/GSocketAddress.html#GSocketAddress-struct">
1493
+ <ANCHOR id="GSocketFamily" href="gio/GSocketAddress.html#GSocketFamily">
1494
+ <ANCHOR id="G-SOCKET-FAMILY-INVALID:CAPS" href="gio/GSocketAddress.html#G-SOCKET-FAMILY-INVALID:CAPS">
1495
+ <ANCHOR id="G-SOCKET-FAMILY-UNIX:CAPS" href="gio/GSocketAddress.html#G-SOCKET-FAMILY-UNIX:CAPS">
1496
+ <ANCHOR id="G-SOCKET-FAMILY-IPV4:CAPS" href="gio/GSocketAddress.html#G-SOCKET-FAMILY-IPV4:CAPS">
1497
+ <ANCHOR id="G-SOCKET-FAMILY-IPV6:CAPS" href="gio/GSocketAddress.html#G-SOCKET-FAMILY-IPV6:CAPS">
1498
+ <ANCHOR id="g-socket-address-new-from-native" href="gio/GSocketAddress.html#g-socket-address-new-from-native">
1499
+ <ANCHOR id="g-socket-address-get-family" href="gio/GSocketAddress.html#g-socket-address-get-family">
1500
+ <ANCHOR id="g-socket-address-to-native" href="gio/GSocketAddress.html#g-socket-address-to-native">
1501
+ <ANCHOR id="g-socket-address-get-native-size" href="gio/GSocketAddress.html#g-socket-address-get-native-size">
1502
+ <ANCHOR id="GSocketAddress.property-details" href="gio/GSocketAddress.html#GSocketAddress.property-details">
1503
+ <ANCHOR id="GSocketAddress--family" href="gio/GSocketAddress.html#GSocketAddress--family">
1504
+ <ANCHOR id="GInetSocketAddress" href="gio/GInetSocketAddress.html">
1505
+ <ANCHOR id="GInetSocketAddress.synopsis" href="gio/GInetSocketAddress.html#GInetSocketAddress.synopsis">
1506
+ <ANCHOR id="GInetSocketAddress.object-hierarchy" href="gio/GInetSocketAddress.html#GInetSocketAddress.object-hierarchy">
1507
+ <ANCHOR id="GInetSocketAddress.implemented-interfaces" href="gio/GInetSocketAddress.html#GInetSocketAddress.implemented-interfaces">
1508
+ <ANCHOR id="GInetSocketAddress.properties" href="gio/GInetSocketAddress.html#GInetSocketAddress.properties">
1509
+ <ANCHOR id="GInetSocketAddress.description" href="gio/GInetSocketAddress.html#GInetSocketAddress.description">
1510
+ <ANCHOR id="GInetSocketAddress.details" href="gio/GInetSocketAddress.html#GInetSocketAddress.details">
1511
+ <ANCHOR id="GInetSocketAddress-struct" href="gio/GInetSocketAddress.html#GInetSocketAddress-struct">
1512
+ <ANCHOR id="g-inet-socket-address-new" href="gio/GInetSocketAddress.html#g-inet-socket-address-new">
1513
+ <ANCHOR id="g-inet-socket-address-get-address" href="gio/GInetSocketAddress.html#g-inet-socket-address-get-address">
1514
+ <ANCHOR id="g-inet-socket-address-get-port" href="gio/GInetSocketAddress.html#g-inet-socket-address-get-port">
1515
+ <ANCHOR id="GInetSocketAddress.property-details" href="gio/GInetSocketAddress.html#GInetSocketAddress.property-details">
1516
+ <ANCHOR id="GInetSocketAddress--address" href="gio/GInetSocketAddress.html#GInetSocketAddress--address">
1517
+ <ANCHOR id="GInetSocketAddress--port" href="gio/GInetSocketAddress.html#GInetSocketAddress--port">
1518
+ <ANCHOR id="GUnixSocketAddress" href="gio/GUnixSocketAddress.html">
1519
+ <ANCHOR id="GUnixSocketAddress.synopsis" href="gio/GUnixSocketAddress.html#GUnixSocketAddress.synopsis">
1520
+ <ANCHOR id="GUnixSocketAddress.object-hierarchy" href="gio/GUnixSocketAddress.html#GUnixSocketAddress.object-hierarchy">
1521
+ <ANCHOR id="GUnixSocketAddress.implemented-interfaces" href="gio/GUnixSocketAddress.html#GUnixSocketAddress.implemented-interfaces">
1522
+ <ANCHOR id="GUnixSocketAddress.properties" href="gio/GUnixSocketAddress.html#GUnixSocketAddress.properties">
1523
+ <ANCHOR id="GUnixSocketAddress.description" href="gio/GUnixSocketAddress.html#GUnixSocketAddress.description">
1524
+ <ANCHOR id="GUnixSocketAddress.details" href="gio/GUnixSocketAddress.html#GUnixSocketAddress.details">
1525
+ <ANCHOR id="GUnixSocketAddress-struct" href="gio/GUnixSocketAddress.html#GUnixSocketAddress-struct">
1526
+ <ANCHOR id="GUnixSocketAddressType" href="gio/GUnixSocketAddress.html#GUnixSocketAddressType">
1527
+ <ANCHOR id="G-UNIX-SOCKET-ADDRESS-INVALID:CAPS" href="gio/GUnixSocketAddress.html#G-UNIX-SOCKET-ADDRESS-INVALID:CAPS">
1528
+ <ANCHOR id="G-UNIX-SOCKET-ADDRESS-ANONYMOUS:CAPS" href="gio/GUnixSocketAddress.html#G-UNIX-SOCKET-ADDRESS-ANONYMOUS:CAPS">
1529
+ <ANCHOR id="G-UNIX-SOCKET-ADDRESS-PATH:CAPS" href="gio/GUnixSocketAddress.html#G-UNIX-SOCKET-ADDRESS-PATH:CAPS">
1530
+ <ANCHOR id="G-UNIX-SOCKET-ADDRESS-ABSTRACT:CAPS" href="gio/GUnixSocketAddress.html#G-UNIX-SOCKET-ADDRESS-ABSTRACT:CAPS">
1531
+ <ANCHOR id="G-UNIX-SOCKET-ADDRESS-ABSTRACT-PADDED:CAPS" href="gio/GUnixSocketAddress.html#G-UNIX-SOCKET-ADDRESS-ABSTRACT-PADDED:CAPS">
1532
+ <ANCHOR id="g-unix-socket-address-new" href="gio/GUnixSocketAddress.html#g-unix-socket-address-new">
1533
+ <ANCHOR id="g-unix-socket-address-new-abstract" href="gio/GUnixSocketAddress.html#g-unix-socket-address-new-abstract">
1534
+ <ANCHOR id="g-unix-socket-address-new-with-type" href="gio/GUnixSocketAddress.html#g-unix-socket-address-new-with-type">
1535
+ <ANCHOR id="g-unix-socket-address-get-is-abstract" href="gio/GUnixSocketAddress.html#g-unix-socket-address-get-is-abstract">
1536
+ <ANCHOR id="g-unix-socket-address-get-address-type" href="gio/GUnixSocketAddress.html#g-unix-socket-address-get-address-type">
1537
+ <ANCHOR id="g-unix-socket-address-get-path" href="gio/GUnixSocketAddress.html#g-unix-socket-address-get-path">
1538
+ <ANCHOR id="g-unix-socket-address-get-path-len" href="gio/GUnixSocketAddress.html#g-unix-socket-address-get-path-len">
1539
+ <ANCHOR id="g-unix-socket-address-abstract-names-supported" href="gio/GUnixSocketAddress.html#g-unix-socket-address-abstract-names-supported">
1540
+ <ANCHOR id="GUnixSocketAddress.property-details" href="gio/GUnixSocketAddress.html#GUnixSocketAddress.property-details">
1541
+ <ANCHOR id="GUnixSocketAddress--abstract" href="gio/GUnixSocketAddress.html#GUnixSocketAddress--abstract">
1542
+ <ANCHOR id="GUnixSocketAddress--address-type" href="gio/GUnixSocketAddress.html#GUnixSocketAddress--address-type">
1543
+ <ANCHOR id="GUnixSocketAddress--path" href="gio/GUnixSocketAddress.html#GUnixSocketAddress--path">
1544
+ <ANCHOR id="GUnixSocketAddress--path-as-array" href="gio/GUnixSocketAddress.html#GUnixSocketAddress--path-as-array">
1545
+ <ANCHOR id="GSocketControlMessage" href="gio/GSocketControlMessage.html">
1546
+ <ANCHOR id="GSocketControlMessage.synopsis" href="gio/GSocketControlMessage.html#GSocketControlMessage.synopsis">
1547
+ <ANCHOR id="GSocketControlMessage.object-hierarchy" href="gio/GSocketControlMessage.html#GSocketControlMessage.object-hierarchy">
1548
+ <ANCHOR id="GSocketControlMessage.description" href="gio/GSocketControlMessage.html#GSocketControlMessage.description">
1549
+ <ANCHOR id="GSocketControlMessage.details" href="gio/GSocketControlMessage.html#GSocketControlMessage.details">
1550
+ <ANCHOR id="GSocketControlMessage-struct" href="gio/GSocketControlMessage.html#GSocketControlMessage-struct">
1551
+ <ANCHOR id="g-socket-control-message-deserialize" href="gio/GSocketControlMessage.html#g-socket-control-message-deserialize">
1552
+ <ANCHOR id="g-socket-control-message-get-level" href="gio/GSocketControlMessage.html#g-socket-control-message-get-level">
1553
+ <ANCHOR id="g-socket-control-message-get-msg-type" href="gio/GSocketControlMessage.html#g-socket-control-message-get-msg-type">
1554
+ <ANCHOR id="g-socket-control-message-get-size" href="gio/GSocketControlMessage.html#g-socket-control-message-get-size">
1555
+ <ANCHOR id="g-socket-control-message-serialize" href="gio/GSocketControlMessage.html#g-socket-control-message-serialize">
1556
+ <ANCHOR id="GSocketControlMessage.see-also" href="gio/GSocketControlMessage.html#GSocketControlMessage.see-also">
1557
+ <ANCHOR id="GUnixFDList" href="gio/GUnixFDList.html">
1558
+ <ANCHOR id="GUnixFDList.synopsis" href="gio/GUnixFDList.html#GUnixFDList.synopsis">
1559
+ <ANCHOR id="GUnixFDList.object-hierarchy" href="gio/GUnixFDList.html#GUnixFDList.object-hierarchy">
1560
+ <ANCHOR id="GUnixFDList.description" href="gio/GUnixFDList.html#GUnixFDList.description">
1561
+ <ANCHOR id="GUnixFDList.details" href="gio/GUnixFDList.html#GUnixFDList.details">
1562
+ <ANCHOR id="GUnixFDList-struct" href="gio/GUnixFDList.html#GUnixFDList-struct">
1563
+ <ANCHOR id="g-unix-fd-list-new-from-array" href="gio/GUnixFDList.html#g-unix-fd-list-new-from-array">
1564
+ <ANCHOR id="g-unix-fd-list-new" href="gio/GUnixFDList.html#g-unix-fd-list-new">
1565
+ <ANCHOR id="g-unix-fd-list-get-length" href="gio/GUnixFDList.html#g-unix-fd-list-get-length">
1566
+ <ANCHOR id="g-unix-fd-list-get" href="gio/GUnixFDList.html#g-unix-fd-list-get">
1567
+ <ANCHOR id="g-unix-fd-list-peek-fds" href="gio/GUnixFDList.html#g-unix-fd-list-peek-fds">
1568
+ <ANCHOR id="g-unix-fd-list-steal-fds" href="gio/GUnixFDList.html#g-unix-fd-list-steal-fds">
1569
+ <ANCHOR id="g-unix-fd-list-append" href="gio/GUnixFDList.html#g-unix-fd-list-append">
1570
+ <ANCHOR id="GUnixFDList.see-also" href="gio/GUnixFDList.html#GUnixFDList.see-also">
1571
+ <ANCHOR id="GUnixFDMessage" href="gio/GUnixFDMessage.html">
1572
+ <ANCHOR id="GUnixFDMessage.synopsis" href="gio/GUnixFDMessage.html#GUnixFDMessage.synopsis">
1573
+ <ANCHOR id="GUnixFDMessage.object-hierarchy" href="gio/GUnixFDMessage.html#GUnixFDMessage.object-hierarchy">
1574
+ <ANCHOR id="GUnixFDMessage.properties" href="gio/GUnixFDMessage.html#GUnixFDMessage.properties">
1575
+ <ANCHOR id="GUnixFDMessage.description" href="gio/GUnixFDMessage.html#GUnixFDMessage.description">
1576
+ <ANCHOR id="GUnixFDMessage.details" href="gio/GUnixFDMessage.html#GUnixFDMessage.details">
1577
+ <ANCHOR id="GUnixFDMessage-struct" href="gio/GUnixFDMessage.html#GUnixFDMessage-struct">
1578
+ <ANCHOR id="g-unix-fd-message-new-with-fd-list" href="gio/GUnixFDMessage.html#g-unix-fd-message-new-with-fd-list">
1579
+ <ANCHOR id="g-unix-fd-message-new" href="gio/GUnixFDMessage.html#g-unix-fd-message-new">
1580
+ <ANCHOR id="g-unix-fd-message-get-fd-list" href="gio/GUnixFDMessage.html#g-unix-fd-message-get-fd-list">
1581
+ <ANCHOR id="g-unix-fd-message-append-fd" href="gio/GUnixFDMessage.html#g-unix-fd-message-append-fd">
1582
+ <ANCHOR id="g-unix-fd-message-steal-fds" href="gio/GUnixFDMessage.html#g-unix-fd-message-steal-fds">
1583
+ <ANCHOR id="GUnixFDMessage.property-details" href="gio/GUnixFDMessage.html#GUnixFDMessage.property-details">
1584
+ <ANCHOR id="GUnixFDMessage--fd-list" href="gio/GUnixFDMessage.html#GUnixFDMessage--fd-list">
1585
+ <ANCHOR id="GUnixFDMessage.see-also" href="gio/GUnixFDMessage.html#GUnixFDMessage.see-also">
1586
+ <ANCHOR id="GCredentials" href="gio/GCredentials.html">
1587
+ <ANCHOR id="GCredentials.synopsis" href="gio/GCredentials.html#GCredentials.synopsis">
1588
+ <ANCHOR id="GCredentials.object-hierarchy" href="gio/GCredentials.html#GCredentials.object-hierarchy">
1589
+ <ANCHOR id="GCredentials.description" href="gio/GCredentials.html#GCredentials.description">
1590
+ <ANCHOR id="GCredentials.details" href="gio/GCredentials.html#GCredentials.details">
1591
+ <ANCHOR id="GCredentials-struct" href="gio/GCredentials.html#GCredentials-struct">
1592
+ <ANCHOR id="GCredentialsType" href="gio/GCredentials.html#GCredentialsType">
1593
+ <ANCHOR id="G-CREDENTIALS-TYPE-INVALID:CAPS" href="gio/GCredentials.html#G-CREDENTIALS-TYPE-INVALID:CAPS">
1594
+ <ANCHOR id="G-CREDENTIALS-TYPE-LINUX-UCRED:CAPS" href="gio/GCredentials.html#G-CREDENTIALS-TYPE-LINUX-UCRED:CAPS">
1595
+ <ANCHOR id="G-CREDENTIALS-TYPE-FREEBSD-CMSGCRED:CAPS" href="gio/GCredentials.html#G-CREDENTIALS-TYPE-FREEBSD-CMSGCRED:CAPS">
1596
+ <ANCHOR id="g-credentials-new" href="gio/GCredentials.html#g-credentials-new">
1597
+ <ANCHOR id="g-credentials-to-string" href="gio/GCredentials.html#g-credentials-to-string">
1598
+ <ANCHOR id="g-credentials-get-native" href="gio/GCredentials.html#g-credentials-get-native">
1599
+ <ANCHOR id="g-credentials-set-native" href="gio/GCredentials.html#g-credentials-set-native">
1600
+ <ANCHOR id="g-credentials-is-same-user" href="gio/GCredentials.html#g-credentials-is-same-user">
1601
+ <ANCHOR id="g-credentials-get-unix-user" href="gio/GCredentials.html#g-credentials-get-unix-user">
1602
+ <ANCHOR id="g-credentials-set-unix-user" href="gio/GCredentials.html#g-credentials-set-unix-user">
1603
+ <ANCHOR id="GUnixCredentialsMessage" href="gio/GUnixCredentialsMessage.html">
1604
+ <ANCHOR id="GUnixCredentialsMessage.synopsis" href="gio/GUnixCredentialsMessage.html#GUnixCredentialsMessage.synopsis">
1605
+ <ANCHOR id="GUnixCredentialsMessage.object-hierarchy" href="gio/GUnixCredentialsMessage.html#GUnixCredentialsMessage.object-hierarchy">
1606
+ <ANCHOR id="GUnixCredentialsMessage.properties" href="gio/GUnixCredentialsMessage.html#GUnixCredentialsMessage.properties">
1607
+ <ANCHOR id="GUnixCredentialsMessage.description" href="gio/GUnixCredentialsMessage.html#GUnixCredentialsMessage.description">
1608
+ <ANCHOR id="GUnixCredentialsMessage.details" href="gio/GUnixCredentialsMessage.html#GUnixCredentialsMessage.details">
1609
+ <ANCHOR id="GUnixCredentialsMessage-struct" href="gio/GUnixCredentialsMessage.html#GUnixCredentialsMessage-struct">
1610
+ <ANCHOR id="GUnixCredentialsMessageClass" href="gio/GUnixCredentialsMessage.html#GUnixCredentialsMessageClass">
1611
+ <ANCHOR id="g-unix-credentials-message-new" href="gio/GUnixCredentialsMessage.html#g-unix-credentials-message-new">
1612
+ <ANCHOR id="g-unix-credentials-message-new-with-credentials" href="gio/GUnixCredentialsMessage.html#g-unix-credentials-message-new-with-credentials">
1613
+ <ANCHOR id="g-unix-credentials-message-get-credentials" href="gio/GUnixCredentialsMessage.html#g-unix-credentials-message-get-credentials">
1614
+ <ANCHOR id="g-unix-credentials-message-is-supported" href="gio/GUnixCredentialsMessage.html#g-unix-credentials-message-is-supported">
1615
+ <ANCHOR id="GUnixCredentialsMessage.property-details" href="gio/GUnixCredentialsMessage.html#GUnixCredentialsMessage.property-details">
1616
+ <ANCHOR id="GUnixCredentialsMessage--credentials" href="gio/GUnixCredentialsMessage.html#GUnixCredentialsMessage--credentials">
1617
+ <ANCHOR id="GUnixCredentialsMessage.see-also" href="gio/GUnixCredentialsMessage.html#GUnixCredentialsMessage.see-also">
1618
+ <ANCHOR id="GProxy" href="gio/GProxy.html">
1619
+ <ANCHOR id="GProxy.synopsis" href="gio/GProxy.html#GProxy.synopsis">
1620
+ <ANCHOR id="GProxy.object-hierarchy" href="gio/GProxy.html#GProxy.object-hierarchy">
1621
+ <ANCHOR id="GProxy.prerequisites" href="gio/GProxy.html#GProxy.prerequisites">
1622
+ <ANCHOR id="GProxy.description" href="gio/GProxy.html#GProxy.description">
1623
+ <ANCHOR id="GProxy.details" href="gio/GProxy.html#GProxy.details">
1624
+ <ANCHOR id="GProxy-struct" href="gio/GProxy.html#GProxy-struct">
1625
+ <ANCHOR id="G-PROXY-EXTENSION-POINT-NAME:CAPS" href="gio/GProxy.html#G-PROXY-EXTENSION-POINT-NAME:CAPS">
1626
+ <ANCHOR id="g-proxy-connect" href="gio/GProxy.html#g-proxy-connect">
1627
+ <ANCHOR id="g-proxy-connect-async" href="gio/GProxy.html#g-proxy-connect-async">
1628
+ <ANCHOR id="g-proxy-connect-finish" href="gio/GProxy.html#g-proxy-connect-finish">
1629
+ <ANCHOR id="g-proxy-get-default-for-protocol" href="gio/GProxy.html#g-proxy-get-default-for-protocol">
1630
+ <ANCHOR id="g-proxy-supports-hostname" href="gio/GProxy.html#g-proxy-supports-hostname">
1631
+ <ANCHOR id="GProxyAddress" href="gio/GProxyAddress.html">
1632
+ <ANCHOR id="GProxyAddress.synopsis" href="gio/GProxyAddress.html#GProxyAddress.synopsis">
1633
+ <ANCHOR id="GProxyAddress.object-hierarchy" href="gio/GProxyAddress.html#GProxyAddress.object-hierarchy">
1634
+ <ANCHOR id="GProxyAddress.implemented-interfaces" href="gio/GProxyAddress.html#GProxyAddress.implemented-interfaces">
1635
+ <ANCHOR id="GProxyAddress.properties" href="gio/GProxyAddress.html#GProxyAddress.properties">
1636
+ <ANCHOR id="GProxyAddress.description" href="gio/GProxyAddress.html#GProxyAddress.description">
1637
+ <ANCHOR id="GProxyAddress.details" href="gio/GProxyAddress.html#GProxyAddress.details">
1638
+ <ANCHOR id="GProxyAddress-struct" href="gio/GProxyAddress.html#GProxyAddress-struct">
1639
+ <ANCHOR id="GProxyAddressClass" href="gio/GProxyAddress.html#GProxyAddressClass">
1640
+ <ANCHOR id="g-proxy-address-get-destination-hostname" href="gio/GProxyAddress.html#g-proxy-address-get-destination-hostname">
1641
+ <ANCHOR id="g-proxy-address-get-destination-port" href="gio/GProxyAddress.html#g-proxy-address-get-destination-port">
1642
+ <ANCHOR id="g-proxy-address-get-password" href="gio/GProxyAddress.html#g-proxy-address-get-password">
1643
+ <ANCHOR id="g-proxy-address-get-protocol" href="gio/GProxyAddress.html#g-proxy-address-get-protocol">
1644
+ <ANCHOR id="g-proxy-address-get-username" href="gio/GProxyAddress.html#g-proxy-address-get-username">
1645
+ <ANCHOR id="g-proxy-address-new" href="gio/GProxyAddress.html#g-proxy-address-new">
1646
+ <ANCHOR id="GProxyAddress.property-details" href="gio/GProxyAddress.html#GProxyAddress.property-details">
1647
+ <ANCHOR id="GProxyAddress--destination-hostname" href="gio/GProxyAddress.html#GProxyAddress--destination-hostname">
1648
+ <ANCHOR id="GProxyAddress--destination-port" href="gio/GProxyAddress.html#GProxyAddress--destination-port">
1649
+ <ANCHOR id="GProxyAddress--password" href="gio/GProxyAddress.html#GProxyAddress--password">
1650
+ <ANCHOR id="GProxyAddress--protocol" href="gio/GProxyAddress.html#GProxyAddress--protocol">
1651
+ <ANCHOR id="GProxyAddress--username" href="gio/GProxyAddress.html#GProxyAddress--username">
1652
+ <ANCHOR id="GSocketClient" href="gio/GSocketClient.html">
1653
+ <ANCHOR id="GSocketClient.synopsis" href="gio/GSocketClient.html#GSocketClient.synopsis">
1654
+ <ANCHOR id="GSocketClient.object-hierarchy" href="gio/GSocketClient.html#GSocketClient.object-hierarchy">
1655
+ <ANCHOR id="GSocketClient.properties" href="gio/GSocketClient.html#GSocketClient.properties">
1656
+ <ANCHOR id="GSocketClient.description" href="gio/GSocketClient.html#GSocketClient.description">
1657
+ <ANCHOR id="GSocketClient.details" href="gio/GSocketClient.html#GSocketClient.details">
1658
+ <ANCHOR id="GSocketClient-struct" href="gio/GSocketClient.html#GSocketClient-struct">
1659
+ <ANCHOR id="g-socket-client-add-application-proxy" href="gio/GSocketClient.html#g-socket-client-add-application-proxy">
1660
+ <ANCHOR id="g-socket-client-new" href="gio/GSocketClient.html#g-socket-client-new">
1661
+ <ANCHOR id="g-socket-client-connect" href="gio/GSocketClient.html#g-socket-client-connect">
1662
+ <ANCHOR id="g-socket-client-connect-async" href="gio/GSocketClient.html#g-socket-client-connect-async">
1663
+ <ANCHOR id="g-socket-client-connect-finish" href="gio/GSocketClient.html#g-socket-client-connect-finish">
1664
+ <ANCHOR id="g-socket-client-connect-to-host" href="gio/GSocketClient.html#g-socket-client-connect-to-host">
1665
+ <ANCHOR id="g-socket-client-connect-to-host-async" href="gio/GSocketClient.html#g-socket-client-connect-to-host-async">
1666
+ <ANCHOR id="g-socket-client-connect-to-host-finish" href="gio/GSocketClient.html#g-socket-client-connect-to-host-finish">
1667
+ <ANCHOR id="g-socket-client-connect-to-service" href="gio/GSocketClient.html#g-socket-client-connect-to-service">
1668
+ <ANCHOR id="g-socket-client-connect-to-service-async" href="gio/GSocketClient.html#g-socket-client-connect-to-service-async">
1669
+ <ANCHOR id="g-socket-client-connect-to-service-finish" href="gio/GSocketClient.html#g-socket-client-connect-to-service-finish">
1670
+ <ANCHOR id="g-socket-client-connect-to-uri" href="gio/GSocketClient.html#g-socket-client-connect-to-uri">
1671
+ <ANCHOR id="g-socket-client-connect-to-uri-async" href="gio/GSocketClient.html#g-socket-client-connect-to-uri-async">
1672
+ <ANCHOR id="g-socket-client-connect-to-uri-finish" href="gio/GSocketClient.html#g-socket-client-connect-to-uri-finish">
1673
+ <ANCHOR id="g-socket-client-set-family" href="gio/GSocketClient.html#g-socket-client-set-family">
1674
+ <ANCHOR id="g-socket-client-set-local-address" href="gio/GSocketClient.html#g-socket-client-set-local-address">
1675
+ <ANCHOR id="g-socket-client-set-protocol" href="gio/GSocketClient.html#g-socket-client-set-protocol">
1676
+ <ANCHOR id="g-socket-client-set-socket-type" href="gio/GSocketClient.html#g-socket-client-set-socket-type">
1677
+ <ANCHOR id="g-socket-client-set-timeout" href="gio/GSocketClient.html#g-socket-client-set-timeout">
1678
+ <ANCHOR id="g-socket-client-get-family" href="gio/GSocketClient.html#g-socket-client-get-family">
1679
+ <ANCHOR id="g-socket-client-get-local-address" href="gio/GSocketClient.html#g-socket-client-get-local-address">
1680
+ <ANCHOR id="g-socket-client-get-protocol" href="gio/GSocketClient.html#g-socket-client-get-protocol">
1681
+ <ANCHOR id="g-socket-client-get-socket-type" href="gio/GSocketClient.html#g-socket-client-get-socket-type">
1682
+ <ANCHOR id="g-socket-client-get-timeout" href="gio/GSocketClient.html#g-socket-client-get-timeout">
1683
+ <ANCHOR id="g-socket-client-get-enable-proxy" href="gio/GSocketClient.html#g-socket-client-get-enable-proxy">
1684
+ <ANCHOR id="g-socket-client-set-enable-proxy" href="gio/GSocketClient.html#g-socket-client-set-enable-proxy">
1685
+ <ANCHOR id="GSocketClient.property-details" href="gio/GSocketClient.html#GSocketClient.property-details">
1686
+ <ANCHOR id="GSocketClient--enable-proxy" href="gio/GSocketClient.html#GSocketClient--enable-proxy">
1687
+ <ANCHOR id="GSocketClient--family" href="gio/GSocketClient.html#GSocketClient--family">
1688
+ <ANCHOR id="GSocketClient--local-address" href="gio/GSocketClient.html#GSocketClient--local-address">
1689
+ <ANCHOR id="GSocketClient--protocol" href="gio/GSocketClient.html#GSocketClient--protocol">
1690
+ <ANCHOR id="GSocketClient--timeout" href="gio/GSocketClient.html#GSocketClient--timeout">
1691
+ <ANCHOR id="GSocketClient--type" href="gio/GSocketClient.html#GSocketClient--type">
1692
+ <ANCHOR id="GSocketClient.see-also" href="gio/GSocketClient.html#GSocketClient.see-also">
1693
+ <ANCHOR id="GSocketConnection" href="gio/GSocketConnection.html">
1694
+ <ANCHOR id="GSocketConnection.synopsis" href="gio/GSocketConnection.html#GSocketConnection.synopsis">
1695
+ <ANCHOR id="GSocketConnection.object-hierarchy" href="gio/GSocketConnection.html#GSocketConnection.object-hierarchy">
1696
+ <ANCHOR id="GSocketConnection.properties" href="gio/GSocketConnection.html#GSocketConnection.properties">
1697
+ <ANCHOR id="GSocketConnection.description" href="gio/GSocketConnection.html#GSocketConnection.description">
1698
+ <ANCHOR id="GSocketConnection.details" href="gio/GSocketConnection.html#GSocketConnection.details">
1699
+ <ANCHOR id="GSocketConnection-struct" href="gio/GSocketConnection.html#GSocketConnection-struct">
1700
+ <ANCHOR id="g-socket-connection-get-local-address" href="gio/GSocketConnection.html#g-socket-connection-get-local-address">
1701
+ <ANCHOR id="g-socket-connection-get-remote-address" href="gio/GSocketConnection.html#g-socket-connection-get-remote-address">
1702
+ <ANCHOR id="g-socket-connection-get-socket" href="gio/GSocketConnection.html#g-socket-connection-get-socket">
1703
+ <ANCHOR id="g-socket-connection-factory-create-connection" href="gio/GSocketConnection.html#g-socket-connection-factory-create-connection">
1704
+ <ANCHOR id="g-socket-connection-factory-lookup-type" href="gio/GSocketConnection.html#g-socket-connection-factory-lookup-type">
1705
+ <ANCHOR id="g-socket-connection-factory-register-type" href="gio/GSocketConnection.html#g-socket-connection-factory-register-type">
1706
+ <ANCHOR id="GSocketConnection.property-details" href="gio/GSocketConnection.html#GSocketConnection.property-details">
1707
+ <ANCHOR id="GSocketConnection--socket" href="gio/GSocketConnection.html#GSocketConnection--socket">
1708
+ <ANCHOR id="GSocketConnection.see-also" href="gio/GSocketConnection.html#GSocketConnection.see-also">
1709
+ <ANCHOR id="GUnixConnection" href="gio/GUnixConnection.html">
1710
+ <ANCHOR id="GUnixConnection.synopsis" href="gio/GUnixConnection.html#GUnixConnection.synopsis">
1711
+ <ANCHOR id="GUnixConnection.object-hierarchy" href="gio/GUnixConnection.html#GUnixConnection.object-hierarchy">
1712
+ <ANCHOR id="GUnixConnection.description" href="gio/GUnixConnection.html#GUnixConnection.description">
1713
+ <ANCHOR id="GUnixConnection.details" href="gio/GUnixConnection.html#GUnixConnection.details">
1714
+ <ANCHOR id="GUnixConnection-struct" href="gio/GUnixConnection.html#GUnixConnection-struct">
1715
+ <ANCHOR id="g-unix-connection-receive-fd" href="gio/GUnixConnection.html#g-unix-connection-receive-fd">
1716
+ <ANCHOR id="g-unix-connection-send-fd" href="gio/GUnixConnection.html#g-unix-connection-send-fd">
1717
+ <ANCHOR id="g-unix-connection-receive-credentials" href="gio/GUnixConnection.html#g-unix-connection-receive-credentials">
1718
+ <ANCHOR id="g-unix-connection-send-credentials" href="gio/GUnixConnection.html#g-unix-connection-send-credentials">
1719
+ <ANCHOR id="GUnixConnection.see-also" href="gio/GUnixConnection.html#GUnixConnection.see-also">
1720
+ <ANCHOR id="GTcpConnection" href="gio/GTcpConnection.html">
1721
+ <ANCHOR id="GTcpConnection.synopsis" href="gio/GTcpConnection.html#GTcpConnection.synopsis">
1722
+ <ANCHOR id="GTcpConnection.object-hierarchy" href="gio/GTcpConnection.html#GTcpConnection.object-hierarchy">
1723
+ <ANCHOR id="GTcpConnection.properties" href="gio/GTcpConnection.html#GTcpConnection.properties">
1724
+ <ANCHOR id="GTcpConnection.description" href="gio/GTcpConnection.html#GTcpConnection.description">
1725
+ <ANCHOR id="GTcpConnection.details" href="gio/GTcpConnection.html#GTcpConnection.details">
1726
+ <ANCHOR id="GTcpConnection-struct" href="gio/GTcpConnection.html#GTcpConnection-struct">
1727
+ <ANCHOR id="g-tcp-connection-set-graceful-disconnect" href="gio/GTcpConnection.html#g-tcp-connection-set-graceful-disconnect">
1728
+ <ANCHOR id="g-tcp-connection-get-graceful-disconnect" href="gio/GTcpConnection.html#g-tcp-connection-get-graceful-disconnect">
1729
+ <ANCHOR id="GTcpConnection.property-details" href="gio/GTcpConnection.html#GTcpConnection.property-details">
1730
+ <ANCHOR id="GTcpConnection--graceful-disconnect" href="gio/GTcpConnection.html#GTcpConnection--graceful-disconnect">
1731
+ <ANCHOR id="GTcpConnection.see-also" href="gio/GTcpConnection.html#GTcpConnection.see-also">
1732
+ <ANCHOR id="GSocketListener" href="gio/GSocketListener.html">
1733
+ <ANCHOR id="GSocketListener.synopsis" href="gio/GSocketListener.html#GSocketListener.synopsis">
1734
+ <ANCHOR id="GSocketListener.object-hierarchy" href="gio/GSocketListener.html#GSocketListener.object-hierarchy">
1735
+ <ANCHOR id="GSocketListener.properties" href="gio/GSocketListener.html#GSocketListener.properties">
1736
+ <ANCHOR id="GSocketListener.description" href="gio/GSocketListener.html#GSocketListener.description">
1737
+ <ANCHOR id="GSocketListener.details" href="gio/GSocketListener.html#GSocketListener.details">
1738
+ <ANCHOR id="GSocketListener-struct" href="gio/GSocketListener.html#GSocketListener-struct">
1739
+ <ANCHOR id="g-socket-listener-new" href="gio/GSocketListener.html#g-socket-listener-new">
1740
+ <ANCHOR id="g-socket-listener-add-socket" href="gio/GSocketListener.html#g-socket-listener-add-socket">
1741
+ <ANCHOR id="g-socket-listener-add-address" href="gio/GSocketListener.html#g-socket-listener-add-address">
1742
+ <ANCHOR id="g-socket-listener-add-inet-port" href="gio/GSocketListener.html#g-socket-listener-add-inet-port">
1743
+ <ANCHOR id="g-socket-listener-add-any-inet-port" href="gio/GSocketListener.html#g-socket-listener-add-any-inet-port">
1744
+ <ANCHOR id="g-socket-listener-accept" href="gio/GSocketListener.html#g-socket-listener-accept">
1745
+ <ANCHOR id="g-socket-listener-accept-async" href="gio/GSocketListener.html#g-socket-listener-accept-async">
1746
+ <ANCHOR id="g-socket-listener-accept-finish" href="gio/GSocketListener.html#g-socket-listener-accept-finish">
1747
+ <ANCHOR id="g-socket-listener-accept-socket" href="gio/GSocketListener.html#g-socket-listener-accept-socket">
1748
+ <ANCHOR id="g-socket-listener-accept-socket-async" href="gio/GSocketListener.html#g-socket-listener-accept-socket-async">
1749
+ <ANCHOR id="g-socket-listener-accept-socket-finish" href="gio/GSocketListener.html#g-socket-listener-accept-socket-finish">
1750
+ <ANCHOR id="g-socket-listener-close" href="gio/GSocketListener.html#g-socket-listener-close">
1751
+ <ANCHOR id="g-socket-listener-set-backlog" href="gio/GSocketListener.html#g-socket-listener-set-backlog">
1752
+ <ANCHOR id="GSocketListener.property-details" href="gio/GSocketListener.html#GSocketListener.property-details">
1753
+ <ANCHOR id="GSocketListener--listen-backlog" href="gio/GSocketListener.html#GSocketListener--listen-backlog">
1754
+ <ANCHOR id="GSocketListener.see-also" href="gio/GSocketListener.html#GSocketListener.see-also">
1755
+ <ANCHOR id="GSocketService" href="gio/GSocketService.html">
1756
+ <ANCHOR id="GSocketService.synopsis" href="gio/GSocketService.html#GSocketService.synopsis">
1757
+ <ANCHOR id="GSocketService.object-hierarchy" href="gio/GSocketService.html#GSocketService.object-hierarchy">
1758
+ <ANCHOR id="GSocketService.signals" href="gio/GSocketService.html#GSocketService.signals">
1759
+ <ANCHOR id="GSocketService.description" href="gio/GSocketService.html#GSocketService.description">
1760
+ <ANCHOR id="GSocketService.details" href="gio/GSocketService.html#GSocketService.details">
1761
+ <ANCHOR id="GSocketService-struct" href="gio/GSocketService.html#GSocketService-struct">
1762
+ <ANCHOR id="g-socket-service-new" href="gio/GSocketService.html#g-socket-service-new">
1763
+ <ANCHOR id="g-socket-service-start" href="gio/GSocketService.html#g-socket-service-start">
1764
+ <ANCHOR id="g-socket-service-stop" href="gio/GSocketService.html#g-socket-service-stop">
1765
+ <ANCHOR id="g-socket-service-is-active" href="gio/GSocketService.html#g-socket-service-is-active">
1766
+ <ANCHOR id="GSocketService.signal-details" href="gio/GSocketService.html#GSocketService.signal-details">
1767
+ <ANCHOR id="GSocketService-incoming" href="gio/GSocketService.html#GSocketService-incoming">
1768
+ <ANCHOR id="GSocketService.see-also" href="gio/GSocketService.html#GSocketService.see-also">
1769
+ <ANCHOR id="GThreadedSocketService" href="gio/GThreadedSocketService.html">
1770
+ <ANCHOR id="GThreadedSocketService.synopsis" href="gio/GThreadedSocketService.html#GThreadedSocketService.synopsis">
1771
+ <ANCHOR id="GThreadedSocketService.object-hierarchy" href="gio/GThreadedSocketService.html#GThreadedSocketService.object-hierarchy">
1772
+ <ANCHOR id="GThreadedSocketService.properties" href="gio/GThreadedSocketService.html#GThreadedSocketService.properties">
1773
+ <ANCHOR id="GThreadedSocketService.signals" href="gio/GThreadedSocketService.html#GThreadedSocketService.signals">
1774
+ <ANCHOR id="GThreadedSocketService.description" href="gio/GThreadedSocketService.html#GThreadedSocketService.description">
1775
+ <ANCHOR id="GThreadedSocketService.details" href="gio/GThreadedSocketService.html#GThreadedSocketService.details">
1776
+ <ANCHOR id="GThreadedSocketService-struct" href="gio/GThreadedSocketService.html#GThreadedSocketService-struct">
1777
+ <ANCHOR id="g-threaded-socket-service-new" href="gio/GThreadedSocketService.html#g-threaded-socket-service-new">
1778
+ <ANCHOR id="GThreadedSocketService.property-details" href="gio/GThreadedSocketService.html#GThreadedSocketService.property-details">
1779
+ <ANCHOR id="GThreadedSocketService--max-threads" href="gio/GThreadedSocketService.html#GThreadedSocketService--max-threads">
1780
+ <ANCHOR id="GThreadedSocketService.signal-details" href="gio/GThreadedSocketService.html#GThreadedSocketService.signal-details">
1781
+ <ANCHOR id="GThreadedSocketService-run" href="gio/GThreadedSocketService.html#GThreadedSocketService-run">
1782
+ <ANCHOR id="GThreadedSocketService.see-also" href="gio/GThreadedSocketService.html#GThreadedSocketService.see-also">
1783
+ <ANCHOR id="GResolver" href="gio/GResolver.html">
1784
+ <ANCHOR id="GResolver.synopsis" href="gio/GResolver.html#GResolver.synopsis">
1785
+ <ANCHOR id="GResolver.object-hierarchy" href="gio/GResolver.html#GResolver.object-hierarchy">
1786
+ <ANCHOR id="GResolver.signals" href="gio/GResolver.html#GResolver.signals">
1787
+ <ANCHOR id="GResolver.description" href="gio/GResolver.html#GResolver.description">
1788
+ <ANCHOR id="GResolver.details" href="gio/GResolver.html#GResolver.details">
1789
+ <ANCHOR id="GResolver-struct" href="gio/GResolver.html#GResolver-struct">
1790
+ <ANCHOR id="g-resolver-get-default" href="gio/GResolver.html#g-resolver-get-default">
1791
+ <ANCHOR id="g-resolver-set-default" href="gio/GResolver.html#g-resolver-set-default">
1792
+ <ANCHOR id="g-resolver-lookup-by-name" href="gio/GResolver.html#g-resolver-lookup-by-name">
1793
+ <ANCHOR id="g-resolver-lookup-by-name-async" href="gio/GResolver.html#g-resolver-lookup-by-name-async">
1794
+ <ANCHOR id="g-resolver-lookup-by-name-finish" href="gio/GResolver.html#g-resolver-lookup-by-name-finish">
1795
+ <ANCHOR id="g-resolver-free-addresses" href="gio/GResolver.html#g-resolver-free-addresses">
1796
+ <ANCHOR id="g-resolver-lookup-by-address" href="gio/GResolver.html#g-resolver-lookup-by-address">
1797
+ <ANCHOR id="g-resolver-lookup-by-address-async" href="gio/GResolver.html#g-resolver-lookup-by-address-async">
1798
+ <ANCHOR id="g-resolver-lookup-by-address-finish" href="gio/GResolver.html#g-resolver-lookup-by-address-finish">
1799
+ <ANCHOR id="g-resolver-lookup-service" href="gio/GResolver.html#g-resolver-lookup-service">
1800
+ <ANCHOR id="g-resolver-lookup-service-async" href="gio/GResolver.html#g-resolver-lookup-service-async">
1801
+ <ANCHOR id="g-resolver-lookup-service-finish" href="gio/GResolver.html#g-resolver-lookup-service-finish">
1802
+ <ANCHOR id="g-resolver-free-targets" href="gio/GResolver.html#g-resolver-free-targets">
1803
+ <ANCHOR id="G-RESOLVER-ERROR:CAPS" href="gio/GResolver.html#G-RESOLVER-ERROR:CAPS">
1804
+ <ANCHOR id="GResolverError" href="gio/GResolver.html#GResolverError">
1805
+ <ANCHOR id="G-RESOLVER-ERROR-NOT-FOUND:CAPS" href="gio/GResolver.html#G-RESOLVER-ERROR-NOT-FOUND:CAPS">
1806
+ <ANCHOR id="G-RESOLVER-ERROR-TEMPORARY-FAILURE:CAPS" href="gio/GResolver.html#G-RESOLVER-ERROR-TEMPORARY-FAILURE:CAPS">
1807
+ <ANCHOR id="G-RESOLVER-ERROR-INTERNAL:CAPS" href="gio/GResolver.html#G-RESOLVER-ERROR-INTERNAL:CAPS">
1808
+ <ANCHOR id="GResolver.signal-details" href="gio/GResolver.html#GResolver.signal-details">
1809
+ <ANCHOR id="GResolver-reload" href="gio/GResolver.html#GResolver-reload">
1810
+ <ANCHOR id="GProxyResolver" href="gio/GProxyResolver.html">
1811
+ <ANCHOR id="GProxyResolver.synopsis" href="gio/GProxyResolver.html#GProxyResolver.synopsis">
1812
+ <ANCHOR id="GProxyResolver.object-hierarchy" href="gio/GProxyResolver.html#GProxyResolver.object-hierarchy">
1813
+ <ANCHOR id="GProxyResolver.prerequisites" href="gio/GProxyResolver.html#GProxyResolver.prerequisites">
1814
+ <ANCHOR id="GProxyResolver.description" href="gio/GProxyResolver.html#GProxyResolver.description">
1815
+ <ANCHOR id="GProxyResolver.details" href="gio/GProxyResolver.html#GProxyResolver.details">
1816
+ <ANCHOR id="GProxyResolver-struct" href="gio/GProxyResolver.html#GProxyResolver-struct">
1817
+ <ANCHOR id="G-PROXY-RESOLVER-EXTENSION-POINT-NAME:CAPS" href="gio/GProxyResolver.html#G-PROXY-RESOLVER-EXTENSION-POINT-NAME:CAPS">
1818
+ <ANCHOR id="g-proxy-resolver-get-default" href="gio/GProxyResolver.html#g-proxy-resolver-get-default">
1819
+ <ANCHOR id="g-proxy-resolver-is-supported" href="gio/GProxyResolver.html#g-proxy-resolver-is-supported">
1820
+ <ANCHOR id="g-proxy-resolver-lookup" href="gio/GProxyResolver.html#g-proxy-resolver-lookup">
1821
+ <ANCHOR id="g-proxy-resolver-lookup-async" href="gio/GProxyResolver.html#g-proxy-resolver-lookup-async">
1822
+ <ANCHOR id="g-proxy-resolver-lookup-finish" href="gio/GProxyResolver.html#g-proxy-resolver-lookup-finish">
1823
+ <ANCHOR id="GSocketConnectable" href="gio/GSocketConnectable.html">
1824
+ <ANCHOR id="GSocketConnectable.synopsis" href="gio/GSocketConnectable.html#GSocketConnectable.synopsis">
1825
+ <ANCHOR id="GSocketAddressEnumerator" href="gio/GSocketConnectable.html#GSocketAddressEnumerator">
1826
+ <ANCHOR id="GProxyAddressEnumerator" href="gio/GSocketConnectable.html#GProxyAddressEnumerator">
1827
+ <ANCHOR id="GSocketConnectable.object-hierarchy" href="gio/GSocketConnectable.html#GSocketConnectable.object-hierarchy">
1828
+ <ANCHOR id="GSocketConnectable.prerequisites" href="gio/GSocketConnectable.html#GSocketConnectable.prerequisites">
1829
+ <ANCHOR id="GSocketConnectable.implementations" href="gio/GSocketConnectable.html#GSocketConnectable.implementations">
1830
+ <ANCHOR id="GSocketConnectable.properties" href="gio/GSocketConnectable.html#GSocketConnectable.properties">
1831
+ <ANCHOR id="GSocketConnectable.description" href="gio/GSocketConnectable.html#GSocketConnectable.description">
1832
+ <ANCHOR id="GSocketConnectable.details" href="gio/GSocketConnectable.html#GSocketConnectable.details">
1833
+ <ANCHOR id="GSocketConnectable-struct" href="gio/GSocketConnectable.html#GSocketConnectable-struct">
1834
+ <ANCHOR id="GSocketConnectableIface" href="gio/GSocketConnectable.html#GSocketConnectableIface">
1835
+ <ANCHOR id="g-socket-connectable-enumerate" href="gio/GSocketConnectable.html#g-socket-connectable-enumerate">
1836
+ <ANCHOR id="g-socket-connectable-proxy-enumerate" href="gio/GSocketConnectable.html#g-socket-connectable-proxy-enumerate">
1837
+ <ANCHOR id="GSocketAddressEnumerator-struct" href="gio/GSocketConnectable.html#GSocketAddressEnumerator-struct">
1838
+ <ANCHOR id="g-socket-address-enumerator-next" href="gio/GSocketConnectable.html#g-socket-address-enumerator-next">
1839
+ <ANCHOR id="g-socket-address-enumerator-next-async" href="gio/GSocketConnectable.html#g-socket-address-enumerator-next-async">
1840
+ <ANCHOR id="g-socket-address-enumerator-next-finish" href="gio/GSocketConnectable.html#g-socket-address-enumerator-next-finish">
1841
+ <ANCHOR id="GProxyAddressEnumerator-struct" href="gio/GSocketConnectable.html#GProxyAddressEnumerator-struct">
1842
+ <ANCHOR id="GSocketConnectable.property-details" href="gio/GSocketConnectable.html#GSocketConnectable.property-details">
1843
+ <ANCHOR id="GProxyAddressEnumerator--connectable" href="gio/GSocketConnectable.html#GProxyAddressEnumerator--connectable">
1844
+ <ANCHOR id="GProxyAddressEnumerator--uri" href="gio/GSocketConnectable.html#GProxyAddressEnumerator--uri">
1845
+ <ANCHOR id="GNetworkAddress" href="gio/GNetworkAddress.html">
1846
+ <ANCHOR id="GNetworkAddress.synopsis" href="gio/GNetworkAddress.html#GNetworkAddress.synopsis">
1847
+ <ANCHOR id="GNetworkAddress.object-hierarchy" href="gio/GNetworkAddress.html#GNetworkAddress.object-hierarchy">
1848
+ <ANCHOR id="GNetworkAddress.implemented-interfaces" href="gio/GNetworkAddress.html#GNetworkAddress.implemented-interfaces">
1849
+ <ANCHOR id="GNetworkAddress.properties" href="gio/GNetworkAddress.html#GNetworkAddress.properties">
1850
+ <ANCHOR id="GNetworkAddress.description" href="gio/GNetworkAddress.html#GNetworkAddress.description">
1851
+ <ANCHOR id="GNetworkAddress.details" href="gio/GNetworkAddress.html#GNetworkAddress.details">
1852
+ <ANCHOR id="GNetworkAddress-struct" href="gio/GNetworkAddress.html#GNetworkAddress-struct">
1853
+ <ANCHOR id="g-network-address-new" href="gio/GNetworkAddress.html#g-network-address-new">
1854
+ <ANCHOR id="g-network-address-get-hostname" href="gio/GNetworkAddress.html#g-network-address-get-hostname">
1855
+ <ANCHOR id="g-network-address-get-port" href="gio/GNetworkAddress.html#g-network-address-get-port">
1856
+ <ANCHOR id="g-network-address-get-scheme" href="gio/GNetworkAddress.html#g-network-address-get-scheme">
1857
+ <ANCHOR id="g-network-address-parse" href="gio/GNetworkAddress.html#g-network-address-parse">
1858
+ <ANCHOR id="g-network-address-parse-uri" href="gio/GNetworkAddress.html#g-network-address-parse-uri">
1859
+ <ANCHOR id="GNetworkAddress.property-details" href="gio/GNetworkAddress.html#GNetworkAddress.property-details">
1860
+ <ANCHOR id="GNetworkAddress--hostname" href="gio/GNetworkAddress.html#GNetworkAddress--hostname">
1861
+ <ANCHOR id="GNetworkAddress--port" href="gio/GNetworkAddress.html#GNetworkAddress--port">
1862
+ <ANCHOR id="GNetworkAddress--scheme" href="gio/GNetworkAddress.html#GNetworkAddress--scheme">
1863
+ <ANCHOR id="GNetworkService" href="gio/GNetworkService.html">
1864
+ <ANCHOR id="GNetworkService.synopsis" href="gio/GNetworkService.html#GNetworkService.synopsis">
1865
+ <ANCHOR id="GNetworkService.object-hierarchy" href="gio/GNetworkService.html#GNetworkService.object-hierarchy">
1866
+ <ANCHOR id="GNetworkService.implemented-interfaces" href="gio/GNetworkService.html#GNetworkService.implemented-interfaces">
1867
+ <ANCHOR id="GNetworkService.properties" href="gio/GNetworkService.html#GNetworkService.properties">
1868
+ <ANCHOR id="GNetworkService.description" href="gio/GNetworkService.html#GNetworkService.description">
1869
+ <ANCHOR id="GNetworkService.details" href="gio/GNetworkService.html#GNetworkService.details">
1870
+ <ANCHOR id="GNetworkService-struct" href="gio/GNetworkService.html#GNetworkService-struct">
1871
+ <ANCHOR id="g-network-service-new" href="gio/GNetworkService.html#g-network-service-new">
1872
+ <ANCHOR id="g-network-service-get-service" href="gio/GNetworkService.html#g-network-service-get-service">
1873
+ <ANCHOR id="g-network-service-get-protocol" href="gio/GNetworkService.html#g-network-service-get-protocol">
1874
+ <ANCHOR id="g-network-service-get-domain" href="gio/GNetworkService.html#g-network-service-get-domain">
1875
+ <ANCHOR id="g-network-service-get-scheme" href="gio/GNetworkService.html#g-network-service-get-scheme">
1876
+ <ANCHOR id="g-network-service-set-scheme" href="gio/GNetworkService.html#g-network-service-set-scheme">
1877
+ <ANCHOR id="GNetworkService.property-details" href="gio/GNetworkService.html#GNetworkService.property-details">
1878
+ <ANCHOR id="GNetworkService--domain" href="gio/GNetworkService.html#GNetworkService--domain">
1879
+ <ANCHOR id="GNetworkService--protocol" href="gio/GNetworkService.html#GNetworkService--protocol">
1880
+ <ANCHOR id="GNetworkService--scheme" href="gio/GNetworkService.html#GNetworkService--scheme">
1881
+ <ANCHOR id="GNetworkService--service" href="gio/GNetworkService.html#GNetworkService--service">
1882
+ <ANCHOR id="gio-GSrvTarget" href="gio/gio-GSrvTarget.html">
1883
+ <ANCHOR id="gio-GSrvTarget.synopsis" href="gio/gio-GSrvTarget.html#gio-GSrvTarget.synopsis">
1884
+ <ANCHOR id="gio-GSrvTarget.description" href="gio/gio-GSrvTarget.html#gio-GSrvTarget.description">
1885
+ <ANCHOR id="gio-GSrvTarget.details" href="gio/gio-GSrvTarget.html#gio-GSrvTarget.details">
1886
+ <ANCHOR id="GSrvTarget" href="gio/gio-GSrvTarget.html#GSrvTarget">
1887
+ <ANCHOR id="g-srv-target-new" href="gio/gio-GSrvTarget.html#g-srv-target-new">
1888
+ <ANCHOR id="g-srv-target-copy" href="gio/gio-GSrvTarget.html#g-srv-target-copy">
1889
+ <ANCHOR id="g-srv-target-free" href="gio/gio-GSrvTarget.html#g-srv-target-free">
1890
+ <ANCHOR id="g-srv-target-get-hostname" href="gio/gio-GSrvTarget.html#g-srv-target-get-hostname">
1891
+ <ANCHOR id="g-srv-target-get-port" href="gio/gio-GSrvTarget.html#g-srv-target-get-port">
1892
+ <ANCHOR id="g-srv-target-get-priority" href="gio/gio-GSrvTarget.html#g-srv-target-get-priority">
1893
+ <ANCHOR id="g-srv-target-get-weight" href="gio/gio-GSrvTarget.html#g-srv-target-get-weight">
1894
+ <ANCHOR id="g-srv-target-list-sort" href="gio/gio-GSrvTarget.html#g-srv-target-list-sort">
1895
+ <ANCHOR id="gio-D-Bus-Utilities" href="gio/gio-D-Bus-Utilities.html">
1896
+ <ANCHOR id="gio-D-Bus-Utilities.synopsis" href="gio/gio-D-Bus-Utilities.html#gio-D-Bus-Utilities.synopsis">
1897
+ <ANCHOR id="gio-D-Bus-Utilities.description" href="gio/gio-D-Bus-Utilities.html#gio-D-Bus-Utilities.description">
1898
+ <ANCHOR id="gio-D-Bus-Utilities.details" href="gio/gio-D-Bus-Utilities.html#gio-D-Bus-Utilities.details">
1899
+ <ANCHOR id="g-dbus-generate-guid" href="gio/gio-D-Bus-Utilities.html#g-dbus-generate-guid">
1900
+ <ANCHOR id="g-dbus-is-guid" href="gio/gio-D-Bus-Utilities.html#g-dbus-is-guid">
1901
+ <ANCHOR id="g-dbus-is-name" href="gio/gio-D-Bus-Utilities.html#g-dbus-is-name">
1902
+ <ANCHOR id="g-dbus-is-unique-name" href="gio/gio-D-Bus-Utilities.html#g-dbus-is-unique-name">
1903
+ <ANCHOR id="g-dbus-is-member-name" href="gio/gio-D-Bus-Utilities.html#g-dbus-is-member-name">
1904
+ <ANCHOR id="g-dbus-is-interface-name" href="gio/gio-D-Bus-Utilities.html#g-dbus-is-interface-name">
1905
+ <ANCHOR id="gio-D-Bus-Addresses" href="gio/gio-D-Bus-Addresses.html">
1906
+ <ANCHOR id="gio-D-Bus-Addresses.synopsis" href="gio/gio-D-Bus-Addresses.html#gio-D-Bus-Addresses.synopsis">
1907
+ <ANCHOR id="gio-D-Bus-Addresses.description" href="gio/gio-D-Bus-Addresses.html#gio-D-Bus-Addresses.description">
1908
+ <ANCHOR id="gio-D-Bus-Addresses.details" href="gio/gio-D-Bus-Addresses.html#gio-D-Bus-Addresses.details">
1909
+ <ANCHOR id="g-dbus-is-address" href="gio/gio-D-Bus-Addresses.html#g-dbus-is-address">
1910
+ <ANCHOR id="g-dbus-is-supported-address" href="gio/gio-D-Bus-Addresses.html#g-dbus-is-supported-address">
1911
+ <ANCHOR id="g-dbus-address-get-stream" href="gio/gio-D-Bus-Addresses.html#g-dbus-address-get-stream">
1912
+ <ANCHOR id="g-dbus-address-get-stream-finish" href="gio/gio-D-Bus-Addresses.html#g-dbus-address-get-stream-finish">
1913
+ <ANCHOR id="g-dbus-address-get-stream-sync" href="gio/gio-D-Bus-Addresses.html#g-dbus-address-get-stream-sync">
1914
+ <ANCHOR id="g-dbus-address-get-for-bus-sync" href="gio/gio-D-Bus-Addresses.html#g-dbus-address-get-for-bus-sync">
1915
+ <ANCHOR id="gio-D-Bus-Introspection-Data" href="gio/gio-D-Bus-Introspection-Data.html">
1916
+ <ANCHOR id="gio-D-Bus-Introspection-Data.synopsis" href="gio/gio-D-Bus-Introspection-Data.html#gio-D-Bus-Introspection-Data.synopsis">
1917
+ <ANCHOR id="gio-D-Bus-Introspection-Data.description" href="gio/gio-D-Bus-Introspection-Data.html#gio-D-Bus-Introspection-Data.description">
1918
+ <ANCHOR id="gio-D-Bus-Introspection-Data.details" href="gio/gio-D-Bus-Introspection-Data.html#gio-D-Bus-Introspection-Data.details">
1919
+ <ANCHOR id="GDBusAnnotationInfo" href="gio/gio-D-Bus-Introspection-Data.html#GDBusAnnotationInfo">
1920
+ <ANCHOR id="GDBusArgInfo" href="gio/gio-D-Bus-Introspection-Data.html#GDBusArgInfo">
1921
+ <ANCHOR id="GDBusMethodInfo" href="gio/gio-D-Bus-Introspection-Data.html#GDBusMethodInfo">
1922
+ <ANCHOR id="GDBusSignalInfo" href="gio/gio-D-Bus-Introspection-Data.html#GDBusSignalInfo">
1923
+ <ANCHOR id="GDBusPropertyInfoFlags" href="gio/gio-D-Bus-Introspection-Data.html#GDBusPropertyInfoFlags">
1924
+ <ANCHOR id="G-DBUS-PROPERTY-INFO-FLAGS-NONE:CAPS" href="gio/gio-D-Bus-Introspection-Data.html#G-DBUS-PROPERTY-INFO-FLAGS-NONE:CAPS">
1925
+ <ANCHOR id="G-DBUS-PROPERTY-INFO-FLAGS-READABLE:CAPS" href="gio/gio-D-Bus-Introspection-Data.html#G-DBUS-PROPERTY-INFO-FLAGS-READABLE:CAPS">
1926
+ <ANCHOR id="G-DBUS-PROPERTY-INFO-FLAGS-WRITABLE:CAPS" href="gio/gio-D-Bus-Introspection-Data.html#G-DBUS-PROPERTY-INFO-FLAGS-WRITABLE:CAPS">
1927
+ <ANCHOR id="GDBusPropertyInfo" href="gio/gio-D-Bus-Introspection-Data.html#GDBusPropertyInfo">
1928
+ <ANCHOR id="GDBusInterfaceInfo" href="gio/gio-D-Bus-Introspection-Data.html#GDBusInterfaceInfo">
1929
+ <ANCHOR id="GDBusNodeInfo" href="gio/gio-D-Bus-Introspection-Data.html#GDBusNodeInfo">
1930
+ <ANCHOR id="g-dbus-annotation-info-lookup" href="gio/gio-D-Bus-Introspection-Data.html#g-dbus-annotation-info-lookup">
1931
+ <ANCHOR id="g-dbus-interface-info-lookup-method" href="gio/gio-D-Bus-Introspection-Data.html#g-dbus-interface-info-lookup-method">
1932
+ <ANCHOR id="g-dbus-interface-info-lookup-signal" href="gio/gio-D-Bus-Introspection-Data.html#g-dbus-interface-info-lookup-signal">
1933
+ <ANCHOR id="g-dbus-interface-info-lookup-property" href="gio/gio-D-Bus-Introspection-Data.html#g-dbus-interface-info-lookup-property">
1934
+ <ANCHOR id="g-dbus-interface-info-generate-xml" href="gio/gio-D-Bus-Introspection-Data.html#g-dbus-interface-info-generate-xml">
1935
+ <ANCHOR id="g-dbus-node-info-new-for-xml" href="gio/gio-D-Bus-Introspection-Data.html#g-dbus-node-info-new-for-xml">
1936
+ <ANCHOR id="g-dbus-node-info-lookup-interface" href="gio/gio-D-Bus-Introspection-Data.html#g-dbus-node-info-lookup-interface">
1937
+ <ANCHOR id="g-dbus-node-info-generate-xml" href="gio/gio-D-Bus-Introspection-Data.html#g-dbus-node-info-generate-xml">
1938
+ <ANCHOR id="G-TYPE-DBUS-NODE-INFO:CAPS" href="gio/gio-D-Bus-Introspection-Data.html#G-TYPE-DBUS-NODE-INFO:CAPS">
1939
+ <ANCHOR id="G-TYPE-DBUS-INTERFACE-INFO:CAPS" href="gio/gio-D-Bus-Introspection-Data.html#G-TYPE-DBUS-INTERFACE-INFO:CAPS">
1940
+ <ANCHOR id="G-TYPE-DBUS-METHOD-INFO:CAPS" href="gio/gio-D-Bus-Introspection-Data.html#G-TYPE-DBUS-METHOD-INFO:CAPS">
1941
+ <ANCHOR id="G-TYPE-DBUS-SIGNAL-INFO:CAPS" href="gio/gio-D-Bus-Introspection-Data.html#G-TYPE-DBUS-SIGNAL-INFO:CAPS">
1942
+ <ANCHOR id="G-TYPE-DBUS-PROPERTY-INFO:CAPS" href="gio/gio-D-Bus-Introspection-Data.html#G-TYPE-DBUS-PROPERTY-INFO:CAPS">
1943
+ <ANCHOR id="G-TYPE-DBUS-ARG-INFO:CAPS" href="gio/gio-D-Bus-Introspection-Data.html#G-TYPE-DBUS-ARG-INFO:CAPS">
1944
+ <ANCHOR id="G-TYPE-DBUS-ANNOTATION-INFO:CAPS" href="gio/gio-D-Bus-Introspection-Data.html#G-TYPE-DBUS-ANNOTATION-INFO:CAPS">
1945
+ <ANCHOR id="g-dbus-node-info-ref" href="gio/gio-D-Bus-Introspection-Data.html#g-dbus-node-info-ref">
1946
+ <ANCHOR id="g-dbus-interface-info-ref" href="gio/gio-D-Bus-Introspection-Data.html#g-dbus-interface-info-ref">
1947
+ <ANCHOR id="g-dbus-method-info-ref" href="gio/gio-D-Bus-Introspection-Data.html#g-dbus-method-info-ref">
1948
+ <ANCHOR id="g-dbus-signal-info-ref" href="gio/gio-D-Bus-Introspection-Data.html#g-dbus-signal-info-ref">
1949
+ <ANCHOR id="g-dbus-property-info-ref" href="gio/gio-D-Bus-Introspection-Data.html#g-dbus-property-info-ref">
1950
+ <ANCHOR id="g-dbus-arg-info-ref" href="gio/gio-D-Bus-Introspection-Data.html#g-dbus-arg-info-ref">
1951
+ <ANCHOR id="g-dbus-annotation-info-ref" href="gio/gio-D-Bus-Introspection-Data.html#g-dbus-annotation-info-ref">
1952
+ <ANCHOR id="g-dbus-node-info-unref" href="gio/gio-D-Bus-Introspection-Data.html#g-dbus-node-info-unref">
1953
+ <ANCHOR id="g-dbus-interface-info-unref" href="gio/gio-D-Bus-Introspection-Data.html#g-dbus-interface-info-unref">
1954
+ <ANCHOR id="g-dbus-method-info-unref" href="gio/gio-D-Bus-Introspection-Data.html#g-dbus-method-info-unref">
1955
+ <ANCHOR id="g-dbus-signal-info-unref" href="gio/gio-D-Bus-Introspection-Data.html#g-dbus-signal-info-unref">
1956
+ <ANCHOR id="g-dbus-property-info-unref" href="gio/gio-D-Bus-Introspection-Data.html#g-dbus-property-info-unref">
1957
+ <ANCHOR id="g-dbus-arg-info-unref" href="gio/gio-D-Bus-Introspection-Data.html#g-dbus-arg-info-unref">
1958
+ <ANCHOR id="g-dbus-annotation-info-unref" href="gio/gio-D-Bus-Introspection-Data.html#g-dbus-annotation-info-unref">
1959
+ <ANCHOR id="gio-GDBusError" href="gio/gio-GDBusError.html">
1960
+ <ANCHOR id="gio-GDBusError.synopsis" href="gio/gio-GDBusError.html#gio-GDBusError.synopsis">
1961
+ <ANCHOR id="gio-GDBusError.description" href="gio/gio-GDBusError.html#gio-GDBusError.description">
1962
+ <ANCHOR id="gio-GDBusError.details" href="gio/gio-GDBusError.html#gio-GDBusError.details">
1963
+ <ANCHOR id="GDBusError" href="gio/gio-GDBusError.html#GDBusError">
1964
+ <ANCHOR id="G-DBUS-ERROR-FAILED:CAPS" href="gio/gio-GDBusError.html#G-DBUS-ERROR-FAILED:CAPS">
1965
+ <ANCHOR id="G-DBUS-ERROR-NO-MEMORY:CAPS" href="gio/gio-GDBusError.html#G-DBUS-ERROR-NO-MEMORY:CAPS">
1966
+ <ANCHOR id="G-DBUS-ERROR-SERVICE-UNKNOWN:CAPS" href="gio/gio-GDBusError.html#G-DBUS-ERROR-SERVICE-UNKNOWN:CAPS">
1967
+ <ANCHOR id="G-DBUS-ERROR-NAME-HAS-NO-OWNER:CAPS" href="gio/gio-GDBusError.html#G-DBUS-ERROR-NAME-HAS-NO-OWNER:CAPS">
1968
+ <ANCHOR id="G-DBUS-ERROR-NO-REPLY:CAPS" href="gio/gio-GDBusError.html#G-DBUS-ERROR-NO-REPLY:CAPS">
1969
+ <ANCHOR id="G-DBUS-ERROR-IO-ERROR:CAPS" href="gio/gio-GDBusError.html#G-DBUS-ERROR-IO-ERROR:CAPS">
1970
+ <ANCHOR id="G-DBUS-ERROR-BAD-ADDRESS:CAPS" href="gio/gio-GDBusError.html#G-DBUS-ERROR-BAD-ADDRESS:CAPS">
1971
+ <ANCHOR id="G-DBUS-ERROR-NOT-SUPPORTED:CAPS" href="gio/gio-GDBusError.html#G-DBUS-ERROR-NOT-SUPPORTED:CAPS">
1972
+ <ANCHOR id="G-DBUS-ERROR-LIMITS-EXCEEDED:CAPS" href="gio/gio-GDBusError.html#G-DBUS-ERROR-LIMITS-EXCEEDED:CAPS">
1973
+ <ANCHOR id="G-DBUS-ERROR-ACCESS-DENIED:CAPS" href="gio/gio-GDBusError.html#G-DBUS-ERROR-ACCESS-DENIED:CAPS">
1974
+ <ANCHOR id="G-DBUS-ERROR-AUTH-FAILED:CAPS" href="gio/gio-GDBusError.html#G-DBUS-ERROR-AUTH-FAILED:CAPS">
1975
+ <ANCHOR id="G-DBUS-ERROR-NO-SERVER:CAPS" href="gio/gio-GDBusError.html#G-DBUS-ERROR-NO-SERVER:CAPS">
1976
+ <ANCHOR id="G-DBUS-ERROR-TIMEOUT:CAPS" href="gio/gio-GDBusError.html#G-DBUS-ERROR-TIMEOUT:CAPS">
1977
+ <ANCHOR id="G-DBUS-ERROR-NO-NETWORK:CAPS" href="gio/gio-GDBusError.html#G-DBUS-ERROR-NO-NETWORK:CAPS">
1978
+ <ANCHOR id="G-DBUS-ERROR-ADDRESS-IN-USE:CAPS" href="gio/gio-GDBusError.html#G-DBUS-ERROR-ADDRESS-IN-USE:CAPS">
1979
+ <ANCHOR id="G-DBUS-ERROR-DISCONNECTED:CAPS" href="gio/gio-GDBusError.html#G-DBUS-ERROR-DISCONNECTED:CAPS">
1980
+ <ANCHOR id="G-DBUS-ERROR-INVALID-ARGS:CAPS" href="gio/gio-GDBusError.html#G-DBUS-ERROR-INVALID-ARGS:CAPS">
1981
+ <ANCHOR id="G-DBUS-ERROR-FILE-NOT-FOUND:CAPS" href="gio/gio-GDBusError.html#G-DBUS-ERROR-FILE-NOT-FOUND:CAPS">
1982
+ <ANCHOR id="G-DBUS-ERROR-FILE-EXISTS:CAPS" href="gio/gio-GDBusError.html#G-DBUS-ERROR-FILE-EXISTS:CAPS">
1983
+ <ANCHOR id="G-DBUS-ERROR-UNKNOWN-METHOD:CAPS" href="gio/gio-GDBusError.html#G-DBUS-ERROR-UNKNOWN-METHOD:CAPS">
1984
+ <ANCHOR id="G-DBUS-ERROR-TIMED-OUT:CAPS" href="gio/gio-GDBusError.html#G-DBUS-ERROR-TIMED-OUT:CAPS">
1985
+ <ANCHOR id="G-DBUS-ERROR-MATCH-RULE-NOT-FOUND:CAPS" href="gio/gio-GDBusError.html#G-DBUS-ERROR-MATCH-RULE-NOT-FOUND:CAPS">
1986
+ <ANCHOR id="G-DBUS-ERROR-MATCH-RULE-INVALID:CAPS" href="gio/gio-GDBusError.html#G-DBUS-ERROR-MATCH-RULE-INVALID:CAPS">
1987
+ <ANCHOR id="G-DBUS-ERROR-SPAWN-EXEC-FAILED:CAPS" href="gio/gio-GDBusError.html#G-DBUS-ERROR-SPAWN-EXEC-FAILED:CAPS">
1988
+ <ANCHOR id="G-DBUS-ERROR-SPAWN-FORK-FAILED:CAPS" href="gio/gio-GDBusError.html#G-DBUS-ERROR-SPAWN-FORK-FAILED:CAPS">
1989
+ <ANCHOR id="G-DBUS-ERROR-SPAWN-CHILD-EXITED:CAPS" href="gio/gio-GDBusError.html#G-DBUS-ERROR-SPAWN-CHILD-EXITED:CAPS">
1990
+ <ANCHOR id="G-DBUS-ERROR-SPAWN-CHILD-SIGNALED:CAPS" href="gio/gio-GDBusError.html#G-DBUS-ERROR-SPAWN-CHILD-SIGNALED:CAPS">
1991
+ <ANCHOR id="G-DBUS-ERROR-SPAWN-FAILED:CAPS" href="gio/gio-GDBusError.html#G-DBUS-ERROR-SPAWN-FAILED:CAPS">
1992
+ <ANCHOR id="G-DBUS-ERROR-SPAWN-SETUP-FAILED:CAPS" href="gio/gio-GDBusError.html#G-DBUS-ERROR-SPAWN-SETUP-FAILED:CAPS">
1993
+ <ANCHOR id="G-DBUS-ERROR-SPAWN-CONFIG-INVALID:CAPS" href="gio/gio-GDBusError.html#G-DBUS-ERROR-SPAWN-CONFIG-INVALID:CAPS">
1994
+ <ANCHOR id="G-DBUS-ERROR-SPAWN-SERVICE-INVALID:CAPS" href="gio/gio-GDBusError.html#G-DBUS-ERROR-SPAWN-SERVICE-INVALID:CAPS">
1995
+ <ANCHOR id="G-DBUS-ERROR-SPAWN-SERVICE-NOT-FOUND:CAPS" href="gio/gio-GDBusError.html#G-DBUS-ERROR-SPAWN-SERVICE-NOT-FOUND:CAPS">
1996
+ <ANCHOR id="G-DBUS-ERROR-SPAWN-PERMISSIONS-INVALID:CAPS" href="gio/gio-GDBusError.html#G-DBUS-ERROR-SPAWN-PERMISSIONS-INVALID:CAPS">
1997
+ <ANCHOR id="G-DBUS-ERROR-SPAWN-FILE-INVALID:CAPS" href="gio/gio-GDBusError.html#G-DBUS-ERROR-SPAWN-FILE-INVALID:CAPS">
1998
+ <ANCHOR id="G-DBUS-ERROR-SPAWN-NO-MEMORY:CAPS" href="gio/gio-GDBusError.html#G-DBUS-ERROR-SPAWN-NO-MEMORY:CAPS">
1999
+ <ANCHOR id="G-DBUS-ERROR-UNIX-PROCESS-ID-UNKNOWN:CAPS" href="gio/gio-GDBusError.html#G-DBUS-ERROR-UNIX-PROCESS-ID-UNKNOWN:CAPS">
2000
+ <ANCHOR id="G-DBUS-ERROR-INVALID-SIGNATURE:CAPS" href="gio/gio-GDBusError.html#G-DBUS-ERROR-INVALID-SIGNATURE:CAPS">
2001
+ <ANCHOR id="G-DBUS-ERROR-INVALID-FILE-CONTENT:CAPS" href="gio/gio-GDBusError.html#G-DBUS-ERROR-INVALID-FILE-CONTENT:CAPS">
2002
+ <ANCHOR id="G-DBUS-ERROR-SELINUX-SECURITY-CONTEXT-UNKNOWN:CAPS" href="gio/gio-GDBusError.html#G-DBUS-ERROR-SELINUX-SECURITY-CONTEXT-UNKNOWN:CAPS">
2003
+ <ANCHOR id="G-DBUS-ERROR-ADT-AUDIT-DATA-UNKNOWN:CAPS" href="gio/gio-GDBusError.html#G-DBUS-ERROR-ADT-AUDIT-DATA-UNKNOWN:CAPS">
2004
+ <ANCHOR id="G-DBUS-ERROR-OBJECT-PATH-IN-USE:CAPS" href="gio/gio-GDBusError.html#G-DBUS-ERROR-OBJECT-PATH-IN-USE:CAPS">
2005
+ <ANCHOR id="G-DBUS-ERROR:CAPS" href="gio/gio-GDBusError.html#G-DBUS-ERROR:CAPS">
2006
+ <ANCHOR id="g-dbus-error-is-remote-error" href="gio/gio-GDBusError.html#g-dbus-error-is-remote-error">
2007
+ <ANCHOR id="g-dbus-error-get-remote-error" href="gio/gio-GDBusError.html#g-dbus-error-get-remote-error">
2008
+ <ANCHOR id="g-dbus-error-strip-remote-error" href="gio/gio-GDBusError.html#g-dbus-error-strip-remote-error">
2009
+ <ANCHOR id="GDBusErrorEntry" href="gio/gio-GDBusError.html#GDBusErrorEntry">
2010
+ <ANCHOR id="g-dbus-error-register-error-domain" href="gio/gio-GDBusError.html#g-dbus-error-register-error-domain">
2011
+ <ANCHOR id="g-dbus-error-register-error" href="gio/gio-GDBusError.html#g-dbus-error-register-error">
2012
+ <ANCHOR id="g-dbus-error-unregister-error" href="gio/gio-GDBusError.html#g-dbus-error-unregister-error">
2013
+ <ANCHOR id="g-dbus-error-new-for-dbus-error" href="gio/gio-GDBusError.html#g-dbus-error-new-for-dbus-error">
2014
+ <ANCHOR id="g-dbus-error-set-dbus-error" href="gio/gio-GDBusError.html#g-dbus-error-set-dbus-error">
2015
+ <ANCHOR id="g-dbus-error-set-dbus-error-valist" href="gio/gio-GDBusError.html#g-dbus-error-set-dbus-error-valist">
2016
+ <ANCHOR id="g-dbus-error-encode-gerror" href="gio/gio-GDBusError.html#g-dbus-error-encode-gerror">
2017
+ <ANCHOR id="GDBusMessage" href="gio/GDBusMessage.html">
2018
+ <ANCHOR id="GDBusMessage.synopsis" href="gio/GDBusMessage.html#GDBusMessage.synopsis">
2019
+ <ANCHOR id="GDBusMessage.object-hierarchy" href="gio/GDBusMessage.html#GDBusMessage.object-hierarchy">
2020
+ <ANCHOR id="GDBusMessage.properties" href="gio/GDBusMessage.html#GDBusMessage.properties">
2021
+ <ANCHOR id="GDBusMessage.description" href="gio/GDBusMessage.html#GDBusMessage.description">
2022
+ <ANCHOR id="GDBusMessage.details" href="gio/GDBusMessage.html#GDBusMessage.details">
2023
+ <ANCHOR id="GDBusMessage-struct" href="gio/GDBusMessage.html#GDBusMessage-struct">
2024
+ <ANCHOR id="GDBusMessageType" href="gio/GDBusMessage.html#GDBusMessageType">
2025
+ <ANCHOR id="G-DBUS-MESSAGE-TYPE-INVALID:CAPS" href="gio/GDBusMessage.html#G-DBUS-MESSAGE-TYPE-INVALID:CAPS">
2026
+ <ANCHOR id="G-DBUS-MESSAGE-TYPE-METHOD-CALL:CAPS" href="gio/GDBusMessage.html#G-DBUS-MESSAGE-TYPE-METHOD-CALL:CAPS">
2027
+ <ANCHOR id="G-DBUS-MESSAGE-TYPE-METHOD-RETURN:CAPS" href="gio/GDBusMessage.html#G-DBUS-MESSAGE-TYPE-METHOD-RETURN:CAPS">
2028
+ <ANCHOR id="G-DBUS-MESSAGE-TYPE-ERROR:CAPS" href="gio/GDBusMessage.html#G-DBUS-MESSAGE-TYPE-ERROR:CAPS">
2029
+ <ANCHOR id="G-DBUS-MESSAGE-TYPE-SIGNAL:CAPS" href="gio/GDBusMessage.html#G-DBUS-MESSAGE-TYPE-SIGNAL:CAPS">
2030
+ <ANCHOR id="GDBusMessageFlags" href="gio/GDBusMessage.html#GDBusMessageFlags">
2031
+ <ANCHOR id="G-DBUS-MESSAGE-FLAGS-NONE:CAPS" href="gio/GDBusMessage.html#G-DBUS-MESSAGE-FLAGS-NONE:CAPS">
2032
+ <ANCHOR id="G-DBUS-MESSAGE-FLAGS-NO-REPLY-EXPECTED:CAPS" href="gio/GDBusMessage.html#G-DBUS-MESSAGE-FLAGS-NO-REPLY-EXPECTED:CAPS">
2033
+ <ANCHOR id="G-DBUS-MESSAGE-FLAGS-NO-AUTO-START:CAPS" href="gio/GDBusMessage.html#G-DBUS-MESSAGE-FLAGS-NO-AUTO-START:CAPS">
2034
+ <ANCHOR id="GDBusMessageHeaderField" href="gio/GDBusMessage.html#GDBusMessageHeaderField">
2035
+ <ANCHOR id="G-DBUS-MESSAGE-HEADER-FIELD-INVALID:CAPS" href="gio/GDBusMessage.html#G-DBUS-MESSAGE-HEADER-FIELD-INVALID:CAPS">
2036
+ <ANCHOR id="G-DBUS-MESSAGE-HEADER-FIELD-PATH:CAPS" href="gio/GDBusMessage.html#G-DBUS-MESSAGE-HEADER-FIELD-PATH:CAPS">
2037
+ <ANCHOR id="G-DBUS-MESSAGE-HEADER-FIELD-INTERFACE:CAPS" href="gio/GDBusMessage.html#G-DBUS-MESSAGE-HEADER-FIELD-INTERFACE:CAPS">
2038
+ <ANCHOR id="G-DBUS-MESSAGE-HEADER-FIELD-MEMBER:CAPS" href="gio/GDBusMessage.html#G-DBUS-MESSAGE-HEADER-FIELD-MEMBER:CAPS">
2039
+ <ANCHOR id="G-DBUS-MESSAGE-HEADER-FIELD-ERROR-NAME:CAPS" href="gio/GDBusMessage.html#G-DBUS-MESSAGE-HEADER-FIELD-ERROR-NAME:CAPS">
2040
+ <ANCHOR id="G-DBUS-MESSAGE-HEADER-FIELD-REPLY-SERIAL:CAPS" href="gio/GDBusMessage.html#G-DBUS-MESSAGE-HEADER-FIELD-REPLY-SERIAL:CAPS">
2041
+ <ANCHOR id="G-DBUS-MESSAGE-HEADER-FIELD-DESTINATION:CAPS" href="gio/GDBusMessage.html#G-DBUS-MESSAGE-HEADER-FIELD-DESTINATION:CAPS">
2042
+ <ANCHOR id="G-DBUS-MESSAGE-HEADER-FIELD-SENDER:CAPS" href="gio/GDBusMessage.html#G-DBUS-MESSAGE-HEADER-FIELD-SENDER:CAPS">
2043
+ <ANCHOR id="G-DBUS-MESSAGE-HEADER-FIELD-SIGNATURE:CAPS" href="gio/GDBusMessage.html#G-DBUS-MESSAGE-HEADER-FIELD-SIGNATURE:CAPS">
2044
+ <ANCHOR id="G-DBUS-MESSAGE-HEADER-FIELD-NUM-UNIX-FDS:CAPS" href="gio/GDBusMessage.html#G-DBUS-MESSAGE-HEADER-FIELD-NUM-UNIX-FDS:CAPS">
2045
+ <ANCHOR id="GDBusMessageByteOrder" href="gio/GDBusMessage.html#GDBusMessageByteOrder">
2046
+ <ANCHOR id="G-DBUS-MESSAGE-BYTE-ORDER-BIG-ENDIAN:CAPS" href="gio/GDBusMessage.html#G-DBUS-MESSAGE-BYTE-ORDER-BIG-ENDIAN:CAPS">
2047
+ <ANCHOR id="G-DBUS-MESSAGE-BYTE-ORDER-LITTLE-ENDIAN:CAPS" href="gio/GDBusMessage.html#G-DBUS-MESSAGE-BYTE-ORDER-LITTLE-ENDIAN:CAPS">
2048
+ <ANCHOR id="g-dbus-message-new" href="gio/GDBusMessage.html#g-dbus-message-new">
2049
+ <ANCHOR id="g-dbus-message-new-signal" href="gio/GDBusMessage.html#g-dbus-message-new-signal">
2050
+ <ANCHOR id="g-dbus-message-new-method-call" href="gio/GDBusMessage.html#g-dbus-message-new-method-call">
2051
+ <ANCHOR id="g-dbus-message-new-method-reply" href="gio/GDBusMessage.html#g-dbus-message-new-method-reply">
2052
+ <ANCHOR id="g-dbus-message-new-method-error" href="gio/GDBusMessage.html#g-dbus-message-new-method-error">
2053
+ <ANCHOR id="g-dbus-message-new-method-error-valist" href="gio/GDBusMessage.html#g-dbus-message-new-method-error-valist">
2054
+ <ANCHOR id="g-dbus-message-new-method-error-literal" href="gio/GDBusMessage.html#g-dbus-message-new-method-error-literal">
2055
+ <ANCHOR id="g-dbus-message-print" href="gio/GDBusMessage.html#g-dbus-message-print">
2056
+ <ANCHOR id="g-dbus-message-get-locked" href="gio/GDBusMessage.html#g-dbus-message-get-locked">
2057
+ <ANCHOR id="g-dbus-message-lock" href="gio/GDBusMessage.html#g-dbus-message-lock">
2058
+ <ANCHOR id="g-dbus-message-copy" href="gio/GDBusMessage.html#g-dbus-message-copy">
2059
+ <ANCHOR id="g-dbus-message-get-byte-order" href="gio/GDBusMessage.html#g-dbus-message-get-byte-order">
2060
+ <ANCHOR id="g-dbus-message-set-byte-order" href="gio/GDBusMessage.html#g-dbus-message-set-byte-order">
2061
+ <ANCHOR id="g-dbus-message-get-message-type" href="gio/GDBusMessage.html#g-dbus-message-get-message-type">
2062
+ <ANCHOR id="g-dbus-message-set-message-type" href="gio/GDBusMessage.html#g-dbus-message-set-message-type">
2063
+ <ANCHOR id="g-dbus-message-get-serial" href="gio/GDBusMessage.html#g-dbus-message-get-serial">
2064
+ <ANCHOR id="g-dbus-message-set-serial" href="gio/GDBusMessage.html#g-dbus-message-set-serial">
2065
+ <ANCHOR id="g-dbus-message-get-flags" href="gio/GDBusMessage.html#g-dbus-message-get-flags">
2066
+ <ANCHOR id="g-dbus-message-set-flags" href="gio/GDBusMessage.html#g-dbus-message-set-flags">
2067
+ <ANCHOR id="g-dbus-message-get-body" href="gio/GDBusMessage.html#g-dbus-message-get-body">
2068
+ <ANCHOR id="g-dbus-message-set-body" href="gio/GDBusMessage.html#g-dbus-message-set-body">
2069
+ <ANCHOR id="g-dbus-message-get-unix-fd-list" href="gio/GDBusMessage.html#g-dbus-message-get-unix-fd-list">
2070
+ <ANCHOR id="g-dbus-message-set-unix-fd-list" href="gio/GDBusMessage.html#g-dbus-message-set-unix-fd-list">
2071
+ <ANCHOR id="g-dbus-message-get-num-unix-fds" href="gio/GDBusMessage.html#g-dbus-message-get-num-unix-fds">
2072
+ <ANCHOR id="g-dbus-message-set-num-unix-fds" href="gio/GDBusMessage.html#g-dbus-message-set-num-unix-fds">
2073
+ <ANCHOR id="g-dbus-message-get-header-fields" href="gio/GDBusMessage.html#g-dbus-message-get-header-fields">
2074
+ <ANCHOR id="g-dbus-message-get-header" href="gio/GDBusMessage.html#g-dbus-message-get-header">
2075
+ <ANCHOR id="g-dbus-message-set-header" href="gio/GDBusMessage.html#g-dbus-message-set-header">
2076
+ <ANCHOR id="g-dbus-message-get-destination" href="gio/GDBusMessage.html#g-dbus-message-get-destination">
2077
+ <ANCHOR id="g-dbus-message-set-destination" href="gio/GDBusMessage.html#g-dbus-message-set-destination">
2078
+ <ANCHOR id="g-dbus-message-get-error-name" href="gio/GDBusMessage.html#g-dbus-message-get-error-name">
2079
+ <ANCHOR id="g-dbus-message-set-error-name" href="gio/GDBusMessage.html#g-dbus-message-set-error-name">
2080
+ <ANCHOR id="g-dbus-message-get-interface" href="gio/GDBusMessage.html#g-dbus-message-get-interface">
2081
+ <ANCHOR id="g-dbus-message-set-interface" href="gio/GDBusMessage.html#g-dbus-message-set-interface">
2082
+ <ANCHOR id="g-dbus-message-get-member" href="gio/GDBusMessage.html#g-dbus-message-get-member">
2083
+ <ANCHOR id="g-dbus-message-set-member" href="gio/GDBusMessage.html#g-dbus-message-set-member">
2084
+ <ANCHOR id="g-dbus-message-get-path" href="gio/GDBusMessage.html#g-dbus-message-get-path">
2085
+ <ANCHOR id="g-dbus-message-set-path" href="gio/GDBusMessage.html#g-dbus-message-set-path">
2086
+ <ANCHOR id="g-dbus-message-get-reply-serial" href="gio/GDBusMessage.html#g-dbus-message-get-reply-serial">
2087
+ <ANCHOR id="g-dbus-message-set-reply-serial" href="gio/GDBusMessage.html#g-dbus-message-set-reply-serial">
2088
+ <ANCHOR id="g-dbus-message-get-sender" href="gio/GDBusMessage.html#g-dbus-message-get-sender">
2089
+ <ANCHOR id="g-dbus-message-set-sender" href="gio/GDBusMessage.html#g-dbus-message-set-sender">
2090
+ <ANCHOR id="g-dbus-message-get-signature" href="gio/GDBusMessage.html#g-dbus-message-get-signature">
2091
+ <ANCHOR id="g-dbus-message-set-signature" href="gio/GDBusMessage.html#g-dbus-message-set-signature">
2092
+ <ANCHOR id="g-dbus-message-get-arg0" href="gio/GDBusMessage.html#g-dbus-message-get-arg0">
2093
+ <ANCHOR id="g-dbus-message-to-blob" href="gio/GDBusMessage.html#g-dbus-message-to-blob">
2094
+ <ANCHOR id="g-dbus-message-bytes-needed" href="gio/GDBusMessage.html#g-dbus-message-bytes-needed">
2095
+ <ANCHOR id="g-dbus-message-new-from-blob" href="gio/GDBusMessage.html#g-dbus-message-new-from-blob">
2096
+ <ANCHOR id="g-dbus-message-to-gerror" href="gio/GDBusMessage.html#g-dbus-message-to-gerror">
2097
+ <ANCHOR id="GDBusMessage.property-details" href="gio/GDBusMessage.html#GDBusMessage.property-details">
2098
+ <ANCHOR id="GDBusMessage--locked" href="gio/GDBusMessage.html#GDBusMessage--locked">
2099
+ <ANCHOR id="GDBusConnection" href="gio/GDBusConnection.html">
2100
+ <ANCHOR id="GDBusConnection.synopsis" href="gio/GDBusConnection.html#GDBusConnection.synopsis">
2101
+ <ANCHOR id="GDBusConnection.object-hierarchy" href="gio/GDBusConnection.html#GDBusConnection.object-hierarchy">
2102
+ <ANCHOR id="GDBusConnection.implemented-interfaces" href="gio/GDBusConnection.html#GDBusConnection.implemented-interfaces">
2103
+ <ANCHOR id="GDBusConnection.properties" href="gio/GDBusConnection.html#GDBusConnection.properties">
2104
+ <ANCHOR id="GDBusConnection.signals" href="gio/GDBusConnection.html#GDBusConnection.signals">
2105
+ <ANCHOR id="GDBusConnection.description" href="gio/GDBusConnection.html#GDBusConnection.description">
2106
+ <ANCHOR id="GDBusConnection.details" href="gio/GDBusConnection.html#GDBusConnection.details">
2107
+ <ANCHOR id="GBusType" href="gio/GDBusConnection.html#GBusType">
2108
+ <ANCHOR id="G-BUS-TYPE-STARTER:CAPS" href="gio/GDBusConnection.html#G-BUS-TYPE-STARTER:CAPS">
2109
+ <ANCHOR id="G-BUS-TYPE-NONE:CAPS" href="gio/GDBusConnection.html#G-BUS-TYPE-NONE:CAPS">
2110
+ <ANCHOR id="G-BUS-TYPE-SYSTEM:CAPS" href="gio/GDBusConnection.html#G-BUS-TYPE-SYSTEM:CAPS">
2111
+ <ANCHOR id="G-BUS-TYPE-SESSION:CAPS" href="gio/GDBusConnection.html#G-BUS-TYPE-SESSION:CAPS">
2112
+ <ANCHOR id="g-bus-get" href="gio/GDBusConnection.html#g-bus-get">
2113
+ <ANCHOR id="g-bus-get-finish" href="gio/GDBusConnection.html#g-bus-get-finish">
2114
+ <ANCHOR id="g-bus-get-sync" href="gio/GDBusConnection.html#g-bus-get-sync">
2115
+ <ANCHOR id="GDBusConnection-struct" href="gio/GDBusConnection.html#GDBusConnection-struct">
2116
+ <ANCHOR id="GDBusConnectionFlags" href="gio/GDBusConnection.html#GDBusConnectionFlags">
2117
+ <ANCHOR id="G-DBUS-CONNECTION-FLAGS-NONE:CAPS" href="gio/GDBusConnection.html#G-DBUS-CONNECTION-FLAGS-NONE:CAPS">
2118
+ <ANCHOR id="G-DBUS-CONNECTION-FLAGS-AUTHENTICATION-CLIENT:CAPS" href="gio/GDBusConnection.html#G-DBUS-CONNECTION-FLAGS-AUTHENTICATION-CLIENT:CAPS">
2119
+ <ANCHOR id="G-DBUS-CONNECTION-FLAGS-AUTHENTICATION-SERVER:CAPS" href="gio/GDBusConnection.html#G-DBUS-CONNECTION-FLAGS-AUTHENTICATION-SERVER:CAPS">
2120
+ <ANCHOR id="G-DBUS-CONNECTION-FLAGS-AUTHENTICATION-ALLOW-ANONYMOUS:CAPS" href="gio/GDBusConnection.html#G-DBUS-CONNECTION-FLAGS-AUTHENTICATION-ALLOW-ANONYMOUS:CAPS">
2121
+ <ANCHOR id="G-DBUS-CONNECTION-FLAGS-MESSAGE-BUS-CONNECTION:CAPS" href="gio/GDBusConnection.html#G-DBUS-CONNECTION-FLAGS-MESSAGE-BUS-CONNECTION:CAPS">
2122
+ <ANCHOR id="G-DBUS-CONNECTION-FLAGS-DELAY-MESSAGE-PROCESSING:CAPS" href="gio/GDBusConnection.html#G-DBUS-CONNECTION-FLAGS-DELAY-MESSAGE-PROCESSING:CAPS">
2123
+ <ANCHOR id="g-dbus-connection-new" href="gio/GDBusConnection.html#g-dbus-connection-new">
2124
+ <ANCHOR id="g-dbus-connection-new-finish" href="gio/GDBusConnection.html#g-dbus-connection-new-finish">
2125
+ <ANCHOR id="g-dbus-connection-new-sync" href="gio/GDBusConnection.html#g-dbus-connection-new-sync">
2126
+ <ANCHOR id="g-dbus-connection-new-for-address" href="gio/GDBusConnection.html#g-dbus-connection-new-for-address">
2127
+ <ANCHOR id="g-dbus-connection-new-for-address-finish" href="gio/GDBusConnection.html#g-dbus-connection-new-for-address-finish">
2128
+ <ANCHOR id="g-dbus-connection-new-for-address-sync" href="gio/GDBusConnection.html#g-dbus-connection-new-for-address-sync">
2129
+ <ANCHOR id="g-dbus-connection-start-message-processing" href="gio/GDBusConnection.html#g-dbus-connection-start-message-processing">
2130
+ <ANCHOR id="g-dbus-connection-close" href="gio/GDBusConnection.html#g-dbus-connection-close">
2131
+ <ANCHOR id="g-dbus-connection-close-finish" href="gio/GDBusConnection.html#g-dbus-connection-close-finish">
2132
+ <ANCHOR id="g-dbus-connection-close-sync" href="gio/GDBusConnection.html#g-dbus-connection-close-sync">
2133
+ <ANCHOR id="g-dbus-connection-is-closed" href="gio/GDBusConnection.html#g-dbus-connection-is-closed">
2134
+ <ANCHOR id="g-dbus-connection-flush" href="gio/GDBusConnection.html#g-dbus-connection-flush">
2135
+ <ANCHOR id="g-dbus-connection-flush-finish" href="gio/GDBusConnection.html#g-dbus-connection-flush-finish">
2136
+ <ANCHOR id="g-dbus-connection-flush-sync" href="gio/GDBusConnection.html#g-dbus-connection-flush-sync">
2137
+ <ANCHOR id="g-dbus-connection-get-exit-on-close" href="gio/GDBusConnection.html#g-dbus-connection-get-exit-on-close">
2138
+ <ANCHOR id="g-dbus-connection-set-exit-on-close" href="gio/GDBusConnection.html#g-dbus-connection-set-exit-on-close">
2139
+ <ANCHOR id="g-dbus-connection-get-stream" href="gio/GDBusConnection.html#g-dbus-connection-get-stream">
2140
+ <ANCHOR id="g-dbus-connection-get-guid" href="gio/GDBusConnection.html#g-dbus-connection-get-guid">
2141
+ <ANCHOR id="g-dbus-connection-get-unique-name" href="gio/GDBusConnection.html#g-dbus-connection-get-unique-name">
2142
+ <ANCHOR id="GDBusCapabilityFlags" href="gio/GDBusConnection.html#GDBusCapabilityFlags">
2143
+ <ANCHOR id="G-DBUS-CAPABILITY-FLAGS-NONE:CAPS" href="gio/GDBusConnection.html#G-DBUS-CAPABILITY-FLAGS-NONE:CAPS">
2144
+ <ANCHOR id="G-DBUS-CAPABILITY-FLAGS-UNIX-FD-PASSING:CAPS" href="gio/GDBusConnection.html#G-DBUS-CAPABILITY-FLAGS-UNIX-FD-PASSING:CAPS">
2145
+ <ANCHOR id="g-dbus-connection-get-capabilities" href="gio/GDBusConnection.html#g-dbus-connection-get-capabilities">
2146
+ <ANCHOR id="g-dbus-connection-get-peer-credentials" href="gio/GDBusConnection.html#g-dbus-connection-get-peer-credentials">
2147
+ <ANCHOR id="GDBusCallFlags" href="gio/GDBusConnection.html#GDBusCallFlags">
2148
+ <ANCHOR id="G-DBUS-CALL-FLAGS-NONE:CAPS" href="gio/GDBusConnection.html#G-DBUS-CALL-FLAGS-NONE:CAPS">
2149
+ <ANCHOR id="G-DBUS-CALL-FLAGS-NO-AUTO-START:CAPS" href="gio/GDBusConnection.html#G-DBUS-CALL-FLAGS-NO-AUTO-START:CAPS">
2150
+ <ANCHOR id="g-dbus-connection-call" href="gio/GDBusConnection.html#g-dbus-connection-call">
2151
+ <ANCHOR id="g-dbus-connection-call-finish" href="gio/GDBusConnection.html#g-dbus-connection-call-finish">
2152
+ <ANCHOR id="g-dbus-connection-call-sync" href="gio/GDBusConnection.html#g-dbus-connection-call-sync">
2153
+ <ANCHOR id="g-dbus-connection-emit-signal" href="gio/GDBusConnection.html#g-dbus-connection-emit-signal">
2154
+ <ANCHOR id="GDBusSignalFlags" href="gio/GDBusConnection.html#GDBusSignalFlags">
2155
+ <ANCHOR id="G-DBUS-SIGNAL-FLAGS-NONE:CAPS" href="gio/GDBusConnection.html#G-DBUS-SIGNAL-FLAGS-NONE:CAPS">
2156
+ <ANCHOR id="GDBusSignalCallback" href="gio/GDBusConnection.html#GDBusSignalCallback">
2157
+ <ANCHOR id="g-dbus-connection-signal-subscribe" href="gio/GDBusConnection.html#g-dbus-connection-signal-subscribe">
2158
+ <ANCHOR id="g-dbus-connection-signal-unsubscribe" href="gio/GDBusConnection.html#g-dbus-connection-signal-unsubscribe">
2159
+ <ANCHOR id="GDBusSendMessageFlags" href="gio/GDBusConnection.html#GDBusSendMessageFlags">
2160
+ <ANCHOR id="G-DBUS-SEND-MESSAGE-FLAGS-NONE:CAPS" href="gio/GDBusConnection.html#G-DBUS-SEND-MESSAGE-FLAGS-NONE:CAPS">
2161
+ <ANCHOR id="G-DBUS-SEND-MESSAGE-FLAGS-PRESERVE-SERIAL:CAPS" href="gio/GDBusConnection.html#G-DBUS-SEND-MESSAGE-FLAGS-PRESERVE-SERIAL:CAPS">
2162
+ <ANCHOR id="g-dbus-connection-send-message" href="gio/GDBusConnection.html#g-dbus-connection-send-message">
2163
+ <ANCHOR id="g-dbus-connection-send-message-with-reply" href="gio/GDBusConnection.html#g-dbus-connection-send-message-with-reply">
2164
+ <ANCHOR id="g-dbus-connection-send-message-with-reply-finish" href="gio/GDBusConnection.html#g-dbus-connection-send-message-with-reply-finish">
2165
+ <ANCHOR id="g-dbus-connection-send-message-with-reply-sync" href="gio/GDBusConnection.html#g-dbus-connection-send-message-with-reply-sync">
2166
+ <ANCHOR id="GDBusMessageFilterFunction" href="gio/GDBusConnection.html#GDBusMessageFilterFunction">
2167
+ <ANCHOR id="g-dbus-connection-add-filter" href="gio/GDBusConnection.html#g-dbus-connection-add-filter">
2168
+ <ANCHOR id="g-dbus-connection-remove-filter" href="gio/GDBusConnection.html#g-dbus-connection-remove-filter">
2169
+ <ANCHOR id="GDBusInterfaceVTable" href="gio/GDBusConnection.html#GDBusInterfaceVTable">
2170
+ <ANCHOR id="GDBusInterfaceMethodCallFunc" href="gio/GDBusConnection.html#GDBusInterfaceMethodCallFunc">
2171
+ <ANCHOR id="GDBusInterfaceGetPropertyFunc" href="gio/GDBusConnection.html#GDBusInterfaceGetPropertyFunc">
2172
+ <ANCHOR id="GDBusInterfaceSetPropertyFunc" href="gio/GDBusConnection.html#GDBusInterfaceSetPropertyFunc">
2173
+ <ANCHOR id="g-dbus-connection-register-object" href="gio/GDBusConnection.html#g-dbus-connection-register-object">
2174
+ <ANCHOR id="g-dbus-connection-unregister-object" href="gio/GDBusConnection.html#g-dbus-connection-unregister-object">
2175
+ <ANCHOR id="GDBusSubtreeVTable" href="gio/GDBusConnection.html#GDBusSubtreeVTable">
2176
+ <ANCHOR id="GDBusSubtreeEnumerateFunc" href="gio/GDBusConnection.html#GDBusSubtreeEnumerateFunc">
2177
+ <ANCHOR id="GDBusSubtreeIntrospectFunc" href="gio/GDBusConnection.html#GDBusSubtreeIntrospectFunc">
2178
+ <ANCHOR id="GDBusSubtreeDispatchFunc" href="gio/GDBusConnection.html#GDBusSubtreeDispatchFunc">
2179
+ <ANCHOR id="GDBusSubtreeFlags" href="gio/GDBusConnection.html#GDBusSubtreeFlags">
2180
+ <ANCHOR id="G-DBUS-SUBTREE-FLAGS-NONE:CAPS" href="gio/GDBusConnection.html#G-DBUS-SUBTREE-FLAGS-NONE:CAPS">
2181
+ <ANCHOR id="G-DBUS-SUBTREE-FLAGS-DISPATCH-TO-UNENUMERATED-NODES:CAPS" href="gio/GDBusConnection.html#G-DBUS-SUBTREE-FLAGS-DISPATCH-TO-UNENUMERATED-NODES:CAPS">
2182
+ <ANCHOR id="g-dbus-connection-register-subtree" href="gio/GDBusConnection.html#g-dbus-connection-register-subtree">
2183
+ <ANCHOR id="g-dbus-connection-unregister-subtree" href="gio/GDBusConnection.html#g-dbus-connection-unregister-subtree">
2184
+ <ANCHOR id="GDBusConnection.property-details" href="gio/GDBusConnection.html#GDBusConnection.property-details">
2185
+ <ANCHOR id="GDBusConnection--address" href="gio/GDBusConnection.html#GDBusConnection--address">
2186
+ <ANCHOR id="GDBusConnection--authentication-observer" href="gio/GDBusConnection.html#GDBusConnection--authentication-observer">
2187
+ <ANCHOR id="GDBusConnection--capabilities" href="gio/GDBusConnection.html#GDBusConnection--capabilities">
2188
+ <ANCHOR id="GDBusConnection--closed" href="gio/GDBusConnection.html#GDBusConnection--closed">
2189
+ <ANCHOR id="GDBusConnection--exit-on-close" href="gio/GDBusConnection.html#GDBusConnection--exit-on-close">
2190
+ <ANCHOR id="GDBusConnection--flags" href="gio/GDBusConnection.html#GDBusConnection--flags">
2191
+ <ANCHOR id="GDBusConnection--guid" href="gio/GDBusConnection.html#GDBusConnection--guid">
2192
+ <ANCHOR id="GDBusConnection--stream" href="gio/GDBusConnection.html#GDBusConnection--stream">
2193
+ <ANCHOR id="GDBusConnection--unique-name" href="gio/GDBusConnection.html#GDBusConnection--unique-name">
2194
+ <ANCHOR id="GDBusConnection.signal-details" href="gio/GDBusConnection.html#GDBusConnection.signal-details">
2195
+ <ANCHOR id="GDBusConnection-closed" href="gio/GDBusConnection.html#GDBusConnection-closed">
2196
+ <ANCHOR id="GDBusMethodInvocation" href="gio/GDBusMethodInvocation.html">
2197
+ <ANCHOR id="GDBusMethodInvocation.synopsis" href="gio/GDBusMethodInvocation.html#GDBusMethodInvocation.synopsis">
2198
+ <ANCHOR id="GDBusMethodInvocation.object-hierarchy" href="gio/GDBusMethodInvocation.html#GDBusMethodInvocation.object-hierarchy">
2199
+ <ANCHOR id="GDBusMethodInvocation.description" href="gio/GDBusMethodInvocation.html#GDBusMethodInvocation.description">
2200
+ <ANCHOR id="GDBusMethodInvocation.details" href="gio/GDBusMethodInvocation.html#GDBusMethodInvocation.details">
2201
+ <ANCHOR id="GDBusMethodInvocation-struct" href="gio/GDBusMethodInvocation.html#GDBusMethodInvocation-struct">
2202
+ <ANCHOR id="g-dbus-method-invocation-get-sender" href="gio/GDBusMethodInvocation.html#g-dbus-method-invocation-get-sender">
2203
+ <ANCHOR id="g-dbus-method-invocation-get-object-path" href="gio/GDBusMethodInvocation.html#g-dbus-method-invocation-get-object-path">
2204
+ <ANCHOR id="g-dbus-method-invocation-get-interface-name" href="gio/GDBusMethodInvocation.html#g-dbus-method-invocation-get-interface-name">
2205
+ <ANCHOR id="g-dbus-method-invocation-get-method-name" href="gio/GDBusMethodInvocation.html#g-dbus-method-invocation-get-method-name">
2206
+ <ANCHOR id="g-dbus-method-invocation-get-method-info" href="gio/GDBusMethodInvocation.html#g-dbus-method-invocation-get-method-info">
2207
+ <ANCHOR id="g-dbus-method-invocation-get-connection" href="gio/GDBusMethodInvocation.html#g-dbus-method-invocation-get-connection">
2208
+ <ANCHOR id="g-dbus-method-invocation-get-message" href="gio/GDBusMethodInvocation.html#g-dbus-method-invocation-get-message">
2209
+ <ANCHOR id="g-dbus-method-invocation-get-parameters" href="gio/GDBusMethodInvocation.html#g-dbus-method-invocation-get-parameters">
2210
+ <ANCHOR id="g-dbus-method-invocation-get-user-data" href="gio/GDBusMethodInvocation.html#g-dbus-method-invocation-get-user-data">
2211
+ <ANCHOR id="g-dbus-method-invocation-return-value" href="gio/GDBusMethodInvocation.html#g-dbus-method-invocation-return-value">
2212
+ <ANCHOR id="g-dbus-method-invocation-return-error" href="gio/GDBusMethodInvocation.html#g-dbus-method-invocation-return-error">
2213
+ <ANCHOR id="g-dbus-method-invocation-return-error-valist" href="gio/GDBusMethodInvocation.html#g-dbus-method-invocation-return-error-valist">
2214
+ <ANCHOR id="g-dbus-method-invocation-return-error-literal" href="gio/GDBusMethodInvocation.html#g-dbus-method-invocation-return-error-literal">
2215
+ <ANCHOR id="g-dbus-method-invocation-return-gerror" href="gio/GDBusMethodInvocation.html#g-dbus-method-invocation-return-gerror">
2216
+ <ANCHOR id="g-dbus-method-invocation-return-dbus-error" href="gio/GDBusMethodInvocation.html#g-dbus-method-invocation-return-dbus-error">
2217
+ <ANCHOR id="GDBusServer" href="gio/GDBusServer.html">
2218
+ <ANCHOR id="GDBusServer.synopsis" href="gio/GDBusServer.html#GDBusServer.synopsis">
2219
+ <ANCHOR id="GDBusServer.object-hierarchy" href="gio/GDBusServer.html#GDBusServer.object-hierarchy">
2220
+ <ANCHOR id="GDBusServer.implemented-interfaces" href="gio/GDBusServer.html#GDBusServer.implemented-interfaces">
2221
+ <ANCHOR id="GDBusServer.properties" href="gio/GDBusServer.html#GDBusServer.properties">
2222
+ <ANCHOR id="GDBusServer.signals" href="gio/GDBusServer.html#GDBusServer.signals">
2223
+ <ANCHOR id="GDBusServer.description" href="gio/GDBusServer.html#GDBusServer.description">
2224
+ <ANCHOR id="GDBusServer.details" href="gio/GDBusServer.html#GDBusServer.details">
2225
+ <ANCHOR id="GDBusServer-struct" href="gio/GDBusServer.html#GDBusServer-struct">
2226
+ <ANCHOR id="GDBusServerFlags" href="gio/GDBusServer.html#GDBusServerFlags">
2227
+ <ANCHOR id="G-DBUS-SERVER-FLAGS-NONE:CAPS" href="gio/GDBusServer.html#G-DBUS-SERVER-FLAGS-NONE:CAPS">
2228
+ <ANCHOR id="G-DBUS-SERVER-FLAGS-RUN-IN-THREAD:CAPS" href="gio/GDBusServer.html#G-DBUS-SERVER-FLAGS-RUN-IN-THREAD:CAPS">
2229
+ <ANCHOR id="G-DBUS-SERVER-FLAGS-AUTHENTICATION-ALLOW-ANONYMOUS:CAPS" href="gio/GDBusServer.html#G-DBUS-SERVER-FLAGS-AUTHENTICATION-ALLOW-ANONYMOUS:CAPS">
2230
+ <ANCHOR id="g-dbus-server-new-sync" href="gio/GDBusServer.html#g-dbus-server-new-sync">
2231
+ <ANCHOR id="g-dbus-server-start" href="gio/GDBusServer.html#g-dbus-server-start">
2232
+ <ANCHOR id="g-dbus-server-stop" href="gio/GDBusServer.html#g-dbus-server-stop">
2233
+ <ANCHOR id="g-dbus-server-is-active" href="gio/GDBusServer.html#g-dbus-server-is-active">
2234
+ <ANCHOR id="g-dbus-server-get-guid" href="gio/GDBusServer.html#g-dbus-server-get-guid">
2235
+ <ANCHOR id="g-dbus-server-get-flags" href="gio/GDBusServer.html#g-dbus-server-get-flags">
2236
+ <ANCHOR id="g-dbus-server-get-client-address" href="gio/GDBusServer.html#g-dbus-server-get-client-address">
2237
+ <ANCHOR id="GDBusServer.property-details" href="gio/GDBusServer.html#GDBusServer.property-details">
2238
+ <ANCHOR id="GDBusServer--active" href="gio/GDBusServer.html#GDBusServer--active">
2239
+ <ANCHOR id="GDBusServer--address" href="gio/GDBusServer.html#GDBusServer--address">
2240
+ <ANCHOR id="GDBusServer--authentication-observer" href="gio/GDBusServer.html#GDBusServer--authentication-observer">
2241
+ <ANCHOR id="GDBusServer--client-address" href="gio/GDBusServer.html#GDBusServer--client-address">
2242
+ <ANCHOR id="GDBusServer--flags" href="gio/GDBusServer.html#GDBusServer--flags">
2243
+ <ANCHOR id="GDBusServer--guid" href="gio/GDBusServer.html#GDBusServer--guid">
2244
+ <ANCHOR id="GDBusServer.signal-details" href="gio/GDBusServer.html#GDBusServer.signal-details">
2245
+ <ANCHOR id="GDBusServer-new-connection" href="gio/GDBusServer.html#GDBusServer-new-connection">
2246
+ <ANCHOR id="GDBusAuthObserver" href="gio/GDBusAuthObserver.html">
2247
+ <ANCHOR id="GDBusAuthObserver.synopsis" href="gio/GDBusAuthObserver.html#GDBusAuthObserver.synopsis">
2248
+ <ANCHOR id="GDBusAuthObserver.object-hierarchy" href="gio/GDBusAuthObserver.html#GDBusAuthObserver.object-hierarchy">
2249
+ <ANCHOR id="GDBusAuthObserver.signals" href="gio/GDBusAuthObserver.html#GDBusAuthObserver.signals">
2250
+ <ANCHOR id="GDBusAuthObserver.description" href="gio/GDBusAuthObserver.html#GDBusAuthObserver.description">
2251
+ <ANCHOR id="GDBusAuthObserver.details" href="gio/GDBusAuthObserver.html#GDBusAuthObserver.details">
2252
+ <ANCHOR id="GDBusAuthObserver-struct" href="gio/GDBusAuthObserver.html#GDBusAuthObserver-struct">
2253
+ <ANCHOR id="g-dbus-auth-observer-new" href="gio/GDBusAuthObserver.html#g-dbus-auth-observer-new">
2254
+ <ANCHOR id="g-dbus-auth-observer-authorize-authenticated-peer" href="gio/GDBusAuthObserver.html#g-dbus-auth-observer-authorize-authenticated-peer">
2255
+ <ANCHOR id="GDBusAuthObserver.signal-details" href="gio/GDBusAuthObserver.html#GDBusAuthObserver.signal-details">
2256
+ <ANCHOR id="GDBusAuthObserver-authorize-authenticated-peer" href="gio/GDBusAuthObserver.html#GDBusAuthObserver-authorize-authenticated-peer">
2257
+ <ANCHOR id="gio-Owning-Bus-Names" href="gio/gio-Owning-Bus-Names.html">
2258
+ <ANCHOR id="gio-Owning-Bus-Names.synopsis" href="gio/gio-Owning-Bus-Names.html#gio-Owning-Bus-Names.synopsis">
2259
+ <ANCHOR id="gio-Owning-Bus-Names.description" href="gio/gio-Owning-Bus-Names.html#gio-Owning-Bus-Names.description">
2260
+ <ANCHOR id="gio-Owning-Bus-Names.details" href="gio/gio-Owning-Bus-Names.html#gio-Owning-Bus-Names.details">
2261
+ <ANCHOR id="GBusAcquiredCallback" href="gio/gio-Owning-Bus-Names.html#GBusAcquiredCallback">
2262
+ <ANCHOR id="GBusNameAcquiredCallback" href="gio/gio-Owning-Bus-Names.html#GBusNameAcquiredCallback">
2263
+ <ANCHOR id="GBusNameLostCallback" href="gio/gio-Owning-Bus-Names.html#GBusNameLostCallback">
2264
+ <ANCHOR id="GBusNameOwnerFlags" href="gio/gio-Owning-Bus-Names.html#GBusNameOwnerFlags">
2265
+ <ANCHOR id="G-BUS-NAME-OWNER-FLAGS-NONE:CAPS" href="gio/gio-Owning-Bus-Names.html#G-BUS-NAME-OWNER-FLAGS-NONE:CAPS">
2266
+ <ANCHOR id="G-BUS-NAME-OWNER-FLAGS-ALLOW-REPLACEMENT:CAPS" href="gio/gio-Owning-Bus-Names.html#G-BUS-NAME-OWNER-FLAGS-ALLOW-REPLACEMENT:CAPS">
2267
+ <ANCHOR id="G-BUS-NAME-OWNER-FLAGS-REPLACE:CAPS" href="gio/gio-Owning-Bus-Names.html#G-BUS-NAME-OWNER-FLAGS-REPLACE:CAPS">
2268
+ <ANCHOR id="g-bus-own-name" href="gio/gio-Owning-Bus-Names.html#g-bus-own-name">
2269
+ <ANCHOR id="g-bus-own-name-on-connection" href="gio/gio-Owning-Bus-Names.html#g-bus-own-name-on-connection">
2270
+ <ANCHOR id="g-bus-unown-name" href="gio/gio-Owning-Bus-Names.html#g-bus-unown-name">
2271
+ <ANCHOR id="g-bus-own-name-with-closures" href="gio/gio-Owning-Bus-Names.html#g-bus-own-name-with-closures">
2272
+ <ANCHOR id="g-bus-own-name-on-connection-with-closures" href="gio/gio-Owning-Bus-Names.html#g-bus-own-name-on-connection-with-closures">
2273
+ <ANCHOR id="gio-Watching-Bus-Names" href="gio/gio-Watching-Bus-Names.html">
2274
+ <ANCHOR id="gio-Watching-Bus-Names.synopsis" href="gio/gio-Watching-Bus-Names.html#gio-Watching-Bus-Names.synopsis">
2275
+ <ANCHOR id="gio-Watching-Bus-Names.description" href="gio/gio-Watching-Bus-Names.html#gio-Watching-Bus-Names.description">
2276
+ <ANCHOR id="gio-Watching-Bus-Names.details" href="gio/gio-Watching-Bus-Names.html#gio-Watching-Bus-Names.details">
2277
+ <ANCHOR id="GBusNameAppearedCallback" href="gio/gio-Watching-Bus-Names.html#GBusNameAppearedCallback">
2278
+ <ANCHOR id="GBusNameVanishedCallback" href="gio/gio-Watching-Bus-Names.html#GBusNameVanishedCallback">
2279
+ <ANCHOR id="GBusNameWatcherFlags" href="gio/gio-Watching-Bus-Names.html#GBusNameWatcherFlags">
2280
+ <ANCHOR id="G-BUS-NAME-WATCHER-FLAGS-NONE:CAPS" href="gio/gio-Watching-Bus-Names.html#G-BUS-NAME-WATCHER-FLAGS-NONE:CAPS">
2281
+ <ANCHOR id="G-BUS-NAME-WATCHER-FLAGS-AUTO-START:CAPS" href="gio/gio-Watching-Bus-Names.html#G-BUS-NAME-WATCHER-FLAGS-AUTO-START:CAPS">
2282
+ <ANCHOR id="g-bus-watch-name" href="gio/gio-Watching-Bus-Names.html#g-bus-watch-name">
2283
+ <ANCHOR id="g-bus-watch-name-on-connection" href="gio/gio-Watching-Bus-Names.html#g-bus-watch-name-on-connection">
2284
+ <ANCHOR id="g-bus-unwatch-name" href="gio/gio-Watching-Bus-Names.html#g-bus-unwatch-name">
2285
+ <ANCHOR id="g-bus-watch-name-with-closures" href="gio/gio-Watching-Bus-Names.html#g-bus-watch-name-with-closures">
2286
+ <ANCHOR id="g-bus-watch-name-on-connection-with-closures" href="gio/gio-Watching-Bus-Names.html#g-bus-watch-name-on-connection-with-closures">
2287
+ <ANCHOR id="GDBusProxy" href="gio/GDBusProxy.html">
2288
+ <ANCHOR id="GDBusProxy.synopsis" href="gio/GDBusProxy.html#GDBusProxy.synopsis">
2289
+ <ANCHOR id="GDBusProxy.object-hierarchy" href="gio/GDBusProxy.html#GDBusProxy.object-hierarchy">
2290
+ <ANCHOR id="GDBusProxy.implemented-interfaces" href="gio/GDBusProxy.html#GDBusProxy.implemented-interfaces">
2291
+ <ANCHOR id="GDBusProxy.properties" href="gio/GDBusProxy.html#GDBusProxy.properties">
2292
+ <ANCHOR id="GDBusProxy.signals" href="gio/GDBusProxy.html#GDBusProxy.signals">
2293
+ <ANCHOR id="GDBusProxy.description" href="gio/GDBusProxy.html#GDBusProxy.description">
2294
+ <ANCHOR id="GDBusProxy.details" href="gio/GDBusProxy.html#GDBusProxy.details">
2295
+ <ANCHOR id="GDBusProxyFlags" href="gio/GDBusProxy.html#GDBusProxyFlags">
2296
+ <ANCHOR id="G-DBUS-PROXY-FLAGS-NONE:CAPS" href="gio/GDBusProxy.html#G-DBUS-PROXY-FLAGS-NONE:CAPS">
2297
+ <ANCHOR id="G-DBUS-PROXY-FLAGS-DO-NOT-LOAD-PROPERTIES:CAPS" href="gio/GDBusProxy.html#G-DBUS-PROXY-FLAGS-DO-NOT-LOAD-PROPERTIES:CAPS">
2298
+ <ANCHOR id="G-DBUS-PROXY-FLAGS-DO-NOT-CONNECT-SIGNALS:CAPS" href="gio/GDBusProxy.html#G-DBUS-PROXY-FLAGS-DO-NOT-CONNECT-SIGNALS:CAPS">
2299
+ <ANCHOR id="G-DBUS-PROXY-FLAGS-DO-NOT-AUTO-START:CAPS" href="gio/GDBusProxy.html#G-DBUS-PROXY-FLAGS-DO-NOT-AUTO-START:CAPS">
2300
+ <ANCHOR id="GDBusProxy-struct" href="gio/GDBusProxy.html#GDBusProxy-struct">
2301
+ <ANCHOR id="GDBusProxyClass" href="gio/GDBusProxy.html#GDBusProxyClass">
2302
+ <ANCHOR id="g-dbus-proxy-new" href="gio/GDBusProxy.html#g-dbus-proxy-new">
2303
+ <ANCHOR id="g-dbus-proxy-new-finish" href="gio/GDBusProxy.html#g-dbus-proxy-new-finish">
2304
+ <ANCHOR id="g-dbus-proxy-new-sync" href="gio/GDBusProxy.html#g-dbus-proxy-new-sync">
2305
+ <ANCHOR id="g-dbus-proxy-new-for-bus" href="gio/GDBusProxy.html#g-dbus-proxy-new-for-bus">
2306
+ <ANCHOR id="g-dbus-proxy-new-for-bus-finish" href="gio/GDBusProxy.html#g-dbus-proxy-new-for-bus-finish">
2307
+ <ANCHOR id="g-dbus-proxy-new-for-bus-sync" href="gio/GDBusProxy.html#g-dbus-proxy-new-for-bus-sync">
2308
+ <ANCHOR id="g-dbus-proxy-get-flags" href="gio/GDBusProxy.html#g-dbus-proxy-get-flags">
2309
+ <ANCHOR id="g-dbus-proxy-get-connection" href="gio/GDBusProxy.html#g-dbus-proxy-get-connection">
2310
+ <ANCHOR id="g-dbus-proxy-get-name" href="gio/GDBusProxy.html#g-dbus-proxy-get-name">
2311
+ <ANCHOR id="g-dbus-proxy-get-name-owner" href="gio/GDBusProxy.html#g-dbus-proxy-get-name-owner">
2312
+ <ANCHOR id="g-dbus-proxy-get-object-path" href="gio/GDBusProxy.html#g-dbus-proxy-get-object-path">
2313
+ <ANCHOR id="g-dbus-proxy-get-interface-name" href="gio/GDBusProxy.html#g-dbus-proxy-get-interface-name">
2314
+ <ANCHOR id="g-dbus-proxy-get-default-timeout" href="gio/GDBusProxy.html#g-dbus-proxy-get-default-timeout">
2315
+ <ANCHOR id="g-dbus-proxy-set-default-timeout" href="gio/GDBusProxy.html#g-dbus-proxy-set-default-timeout">
2316
+ <ANCHOR id="g-dbus-proxy-get-cached-property" href="gio/GDBusProxy.html#g-dbus-proxy-get-cached-property">
2317
+ <ANCHOR id="g-dbus-proxy-set-cached-property" href="gio/GDBusProxy.html#g-dbus-proxy-set-cached-property">
2318
+ <ANCHOR id="g-dbus-proxy-get-cached-property-names" href="gio/GDBusProxy.html#g-dbus-proxy-get-cached-property-names">
2319
+ <ANCHOR id="g-dbus-proxy-set-interface-info" href="gio/GDBusProxy.html#g-dbus-proxy-set-interface-info">
2320
+ <ANCHOR id="g-dbus-proxy-get-interface-info" href="gio/GDBusProxy.html#g-dbus-proxy-get-interface-info">
2321
+ <ANCHOR id="g-dbus-proxy-call" href="gio/GDBusProxy.html#g-dbus-proxy-call">
2322
+ <ANCHOR id="g-dbus-proxy-call-finish" href="gio/GDBusProxy.html#g-dbus-proxy-call-finish">
2323
+ <ANCHOR id="g-dbus-proxy-call-sync" href="gio/GDBusProxy.html#g-dbus-proxy-call-sync">
2324
+ <ANCHOR id="GDBusProxy.property-details" href="gio/GDBusProxy.html#GDBusProxy.property-details">
2325
+ <ANCHOR id="GDBusProxy--g-bus-type" href="gio/GDBusProxy.html#GDBusProxy--g-bus-type">
2326
+ <ANCHOR id="GDBusProxy--g-connection" href="gio/GDBusProxy.html#GDBusProxy--g-connection">
2327
+ <ANCHOR id="GDBusProxy--g-default-timeout" href="gio/GDBusProxy.html#GDBusProxy--g-default-timeout">
2328
+ <ANCHOR id="GDBusProxy--g-flags" href="gio/GDBusProxy.html#GDBusProxy--g-flags">
2329
+ <ANCHOR id="GDBusProxy--g-interface-info" href="gio/GDBusProxy.html#GDBusProxy--g-interface-info">
2330
+ <ANCHOR id="GDBusProxy--g-interface-name" href="gio/GDBusProxy.html#GDBusProxy--g-interface-name">
2331
+ <ANCHOR id="GDBusProxy--g-name" href="gio/GDBusProxy.html#GDBusProxy--g-name">
2332
+ <ANCHOR id="GDBusProxy--g-name-owner" href="gio/GDBusProxy.html#GDBusProxy--g-name-owner">
2333
+ <ANCHOR id="GDBusProxy--g-object-path" href="gio/GDBusProxy.html#GDBusProxy--g-object-path">
2334
+ <ANCHOR id="GDBusProxy.signal-details" href="gio/GDBusProxy.html#GDBusProxy.signal-details">
2335
+ <ANCHOR id="GDBusProxy-g-properties-changed" href="gio/GDBusProxy.html#GDBusProxy-g-properties-changed">
2336
+ <ANCHOR id="GDBusProxy-g-signal" href="gio/GDBusProxy.html#GDBusProxy-g-signal">
2337
+ <ANCHOR id="GFilenameCompleter" href="gio/GFilenameCompleter.html">
2338
+ <ANCHOR id="GFilenameCompleter.synopsis" href="gio/GFilenameCompleter.html#GFilenameCompleter.synopsis">
2339
+ <ANCHOR id="GFilenameCompleter.object-hierarchy" href="gio/GFilenameCompleter.html#GFilenameCompleter.object-hierarchy">
2340
+ <ANCHOR id="GFilenameCompleter.signals" href="gio/GFilenameCompleter.html#GFilenameCompleter.signals">
2341
+ <ANCHOR id="GFilenameCompleter.description" href="gio/GFilenameCompleter.html#GFilenameCompleter.description">
2342
+ <ANCHOR id="GFilenameCompleter.details" href="gio/GFilenameCompleter.html#GFilenameCompleter.details">
2343
+ <ANCHOR id="GFilenameCompleter-struct" href="gio/GFilenameCompleter.html#GFilenameCompleter-struct">
2344
+ <ANCHOR id="g-filename-completer-new" href="gio/GFilenameCompleter.html#g-filename-completer-new">
2345
+ <ANCHOR id="g-filename-completer-get-completion-suffix" href="gio/GFilenameCompleter.html#g-filename-completer-get-completion-suffix">
2346
+ <ANCHOR id="g-filename-completer-get-completions" href="gio/GFilenameCompleter.html#g-filename-completer-get-completions">
2347
+ <ANCHOR id="g-filename-completer-set-dirs-only" href="gio/GFilenameCompleter.html#g-filename-completer-set-dirs-only">
2348
+ <ANCHOR id="GFilenameCompleter.signal-details" href="gio/GFilenameCompleter.html#GFilenameCompleter.signal-details">
2349
+ <ANCHOR id="GFilenameCompleter-got-completion-data" href="gio/GFilenameCompleter.html#GFilenameCompleter-got-completion-data">
2350
+ <ANCHOR id="GSettings" href="gio/GSettings.html">
2351
+ <ANCHOR id="GSettings.synopsis" href="gio/GSettings.html#GSettings.synopsis">
2352
+ <ANCHOR id="GSettings.object-hierarchy" href="gio/GSettings.html#GSettings.object-hierarchy">
2353
+ <ANCHOR id="GSettings.properties" href="gio/GSettings.html#GSettings.properties">
2354
+ <ANCHOR id="GSettings.signals" href="gio/GSettings.html#GSettings.signals">
2355
+ <ANCHOR id="GSettings.description" href="gio/GSettings.html#GSettings.description">
2356
+ <ANCHOR id="GSettings.details" href="gio/GSettings.html#GSettings.details">
2357
+ <ANCHOR id="GSettings-struct" href="gio/GSettings.html#GSettings-struct">
2358
+ <ANCHOR id="g-settings-new" href="gio/GSettings.html#g-settings-new">
2359
+ <ANCHOR id="g-settings-new-with-path" href="gio/GSettings.html#g-settings-new-with-path">
2360
+ <ANCHOR id="g-settings-new-with-backend" href="gio/GSettings.html#g-settings-new-with-backend">
2361
+ <ANCHOR id="g-settings-new-with-backend-and-path" href="gio/GSettings.html#g-settings-new-with-backend-and-path">
2362
+ <ANCHOR id="g-settings-sync" href="gio/GSettings.html#g-settings-sync">
2363
+ <ANCHOR id="g-settings-get-value" href="gio/GSettings.html#g-settings-get-value">
2364
+ <ANCHOR id="g-settings-set-value" href="gio/GSettings.html#g-settings-set-value">
2365
+ <ANCHOR id="g-settings-is-writable" href="gio/GSettings.html#g-settings-is-writable">
2366
+ <ANCHOR id="g-settings-delay" href="gio/GSettings.html#g-settings-delay">
2367
+ <ANCHOR id="g-settings-apply" href="gio/GSettings.html#g-settings-apply">
2368
+ <ANCHOR id="g-settings-revert" href="gio/GSettings.html#g-settings-revert">
2369
+ <ANCHOR id="g-settings-get-has-unapplied" href="gio/GSettings.html#g-settings-get-has-unapplied">
2370
+ <ANCHOR id="g-settings-get-child" href="gio/GSettings.html#g-settings-get-child">
2371
+ <ANCHOR id="g-settings-reset" href="gio/GSettings.html#g-settings-reset">
2372
+ <ANCHOR id="g-settings-list-schemas" href="gio/GSettings.html#g-settings-list-schemas">
2373
+ <ANCHOR id="g-settings-get" href="gio/GSettings.html#g-settings-get">
2374
+ <ANCHOR id="g-settings-set" href="gio/GSettings.html#g-settings-set">
2375
+ <ANCHOR id="g-settings-get-boolean" href="gio/GSettings.html#g-settings-get-boolean">
2376
+ <ANCHOR id="g-settings-set-boolean" href="gio/GSettings.html#g-settings-set-boolean">
2377
+ <ANCHOR id="g-settings-get-int" href="gio/GSettings.html#g-settings-get-int">
2378
+ <ANCHOR id="g-settings-set-int" href="gio/GSettings.html#g-settings-set-int">
2379
+ <ANCHOR id="g-settings-get-double" href="gio/GSettings.html#g-settings-get-double">
2380
+ <ANCHOR id="g-settings-set-double" href="gio/GSettings.html#g-settings-set-double">
2381
+ <ANCHOR id="g-settings-get-string" href="gio/GSettings.html#g-settings-get-string">
2382
+ <ANCHOR id="g-settings-set-string" href="gio/GSettings.html#g-settings-set-string">
2383
+ <ANCHOR id="g-settings-get-strv" href="gio/GSettings.html#g-settings-get-strv">
2384
+ <ANCHOR id="g-settings-set-strv" href="gio/GSettings.html#g-settings-set-strv">
2385
+ <ANCHOR id="g-settings-get-enum" href="gio/GSettings.html#g-settings-get-enum">
2386
+ <ANCHOR id="g-settings-set-enum" href="gio/GSettings.html#g-settings-set-enum">
2387
+ <ANCHOR id="g-settings-get-flags" href="gio/GSettings.html#g-settings-get-flags">
2388
+ <ANCHOR id="g-settings-set-flags" href="gio/GSettings.html#g-settings-set-flags">
2389
+ <ANCHOR id="GSettingsGetMapping" href="gio/GSettings.html#GSettingsGetMapping">
2390
+ <ANCHOR id="g-settings-get-mapped" href="gio/GSettings.html#g-settings-get-mapped">
2391
+ <ANCHOR id="GSettingsBindFlags" href="gio/GSettings.html#GSettingsBindFlags">
2392
+ <ANCHOR id="G-SETTINGS-BIND-DEFAULT:CAPS" href="gio/GSettings.html#G-SETTINGS-BIND-DEFAULT:CAPS">
2393
+ <ANCHOR id="G-SETTINGS-BIND-GET:CAPS" href="gio/GSettings.html#G-SETTINGS-BIND-GET:CAPS">
2394
+ <ANCHOR id="G-SETTINGS-BIND-SET:CAPS" href="gio/GSettings.html#G-SETTINGS-BIND-SET:CAPS">
2395
+ <ANCHOR id="G-SETTINGS-BIND-NO-SENSITIVITY:CAPS" href="gio/GSettings.html#G-SETTINGS-BIND-NO-SENSITIVITY:CAPS">
2396
+ <ANCHOR id="G-SETTINGS-BIND-GET-NO-CHANGES:CAPS" href="gio/GSettings.html#G-SETTINGS-BIND-GET-NO-CHANGES:CAPS">
2397
+ <ANCHOR id="G-SETTINGS-BIND-INVERT-BOOLEAN:CAPS" href="gio/GSettings.html#G-SETTINGS-BIND-INVERT-BOOLEAN:CAPS">
2398
+ <ANCHOR id="g-settings-bind" href="gio/GSettings.html#g-settings-bind">
2399
+ <ANCHOR id="g-settings-bind-with-mapping" href="gio/GSettings.html#g-settings-bind-with-mapping">
2400
+ <ANCHOR id="g-settings-bind-writable" href="gio/GSettings.html#g-settings-bind-writable">
2401
+ <ANCHOR id="g-settings-unbind" href="gio/GSettings.html#g-settings-unbind">
2402
+ <ANCHOR id="GSettingsBindSetMapping" href="gio/GSettings.html#GSettingsBindSetMapping">
2403
+ <ANCHOR id="GSettingsBindGetMapping" href="gio/GSettings.html#GSettingsBindGetMapping">
2404
+ <ANCHOR id="GSettings.property-details" href="gio/GSettings.html#GSettings.property-details">
2405
+ <ANCHOR id="GSettings--backend" href="gio/GSettings.html#GSettings--backend">
2406
+ <ANCHOR id="GSettings--has-unapplied" href="gio/GSettings.html#GSettings--has-unapplied">
2407
+ <ANCHOR id="GSettings--path" href="gio/GSettings.html#GSettings--path">
2408
+ <ANCHOR id="GSettings--schema" href="gio/GSettings.html#GSettings--schema">
2409
+ <ANCHOR id="GSettings.signal-details" href="gio/GSettings.html#GSettings.signal-details">
2410
+ <ANCHOR id="GSettings-change-event" href="gio/GSettings.html#GSettings-change-event">
2411
+ <ANCHOR id="GSettings-changed" href="gio/GSettings.html#GSettings-changed">
2412
+ <ANCHOR id="GSettings-writable-change-event" href="gio/GSettings.html#GSettings-writable-change-event">
2413
+ <ANCHOR id="GSettings-writable-changed" href="gio/GSettings.html#GSettings-writable-changed">
2414
+ <ANCHOR id="GSettingsBackend" href="gio/GSettingsBackend.html">
2415
+ <ANCHOR id="GSettingsBackend.synopsis" href="gio/GSettingsBackend.html#GSettingsBackend.synopsis">
2416
+ <ANCHOR id="GSettingsBackend.object-hierarchy" href="gio/GSettingsBackend.html#GSettingsBackend.object-hierarchy">
2417
+ <ANCHOR id="GSettingsBackend.description" href="gio/GSettingsBackend.html#GSettingsBackend.description">
2418
+ <ANCHOR id="GSettingsBackend.details" href="gio/GSettingsBackend.html#GSettingsBackend.details">
2419
+ <ANCHOR id="GSettingsBackend-struct" href="gio/GSettingsBackend.html#GSettingsBackend-struct">
2420
+ <ANCHOR id="GSettingsBackendClass" href="gio/GSettingsBackend.html#GSettingsBackendClass">
2421
+ <ANCHOR id="G-SETTINGS-BACKEND-EXTENSION-POINT-NAME:CAPS" href="gio/GSettingsBackend.html#G-SETTINGS-BACKEND-EXTENSION-POINT-NAME:CAPS">
2422
+ <ANCHOR id="g-settings-backend-changed" href="gio/GSettingsBackend.html#g-settings-backend-changed">
2423
+ <ANCHOR id="g-settings-backend-path-changed" href="gio/GSettingsBackend.html#g-settings-backend-path-changed">
2424
+ <ANCHOR id="g-settings-backend-keys-changed" href="gio/GSettingsBackend.html#g-settings-backend-keys-changed">
2425
+ <ANCHOR id="g-settings-backend-path-writable-changed" href="gio/GSettingsBackend.html#g-settings-backend-path-writable-changed">
2426
+ <ANCHOR id="g-settings-backend-writable-changed" href="gio/GSettingsBackend.html#g-settings-backend-writable-changed">
2427
+ <ANCHOR id="g-settings-backend-changed-tree" href="gio/GSettingsBackend.html#g-settings-backend-changed-tree">
2428
+ <ANCHOR id="g-settings-backend-flatten-tree" href="gio/GSettingsBackend.html#g-settings-backend-flatten-tree">
2429
+ <ANCHOR id="g-keyfile-settings-backend-new" href="gio/GSettingsBackend.html#g-keyfile-settings-backend-new">
2430
+ <ANCHOR id="GSettingsBackend.see-also" href="gio/GSettingsBackend.html#GSettingsBackend.see-also">
2431
+ <ANCHOR id="GPermission" href="gio/GPermission.html">
2432
+ <ANCHOR id="GPermission.synopsis" href="gio/GPermission.html#GPermission.synopsis">
2433
+ <ANCHOR id="GPermission.object-hierarchy" href="gio/GPermission.html#GPermission.object-hierarchy">
2434
+ <ANCHOR id="GPermission.properties" href="gio/GPermission.html#GPermission.properties">
2435
+ <ANCHOR id="GPermission.description" href="gio/GPermission.html#GPermission.description">
2436
+ <ANCHOR id="GPermission.details" href="gio/GPermission.html#GPermission.details">
2437
+ <ANCHOR id="GPermission-struct" href="gio/GPermission.html#GPermission-struct">
2438
+ <ANCHOR id="g-permission-get-allowed" href="gio/GPermission.html#g-permission-get-allowed">
2439
+ <ANCHOR id="g-permission-get-can-acquire" href="gio/GPermission.html#g-permission-get-can-acquire">
2440
+ <ANCHOR id="g-permission-get-can-release" href="gio/GPermission.html#g-permission-get-can-release">
2441
+ <ANCHOR id="g-permission-acquire" href="gio/GPermission.html#g-permission-acquire">
2442
+ <ANCHOR id="g-permission-acquire-async" href="gio/GPermission.html#g-permission-acquire-async">
2443
+ <ANCHOR id="g-permission-acquire-finish" href="gio/GPermission.html#g-permission-acquire-finish">
2444
+ <ANCHOR id="g-permission-release" href="gio/GPermission.html#g-permission-release">
2445
+ <ANCHOR id="g-permission-release-async" href="gio/GPermission.html#g-permission-release-async">
2446
+ <ANCHOR id="g-permission-release-finish" href="gio/GPermission.html#g-permission-release-finish">
2447
+ <ANCHOR id="g-permission-impl-update" href="gio/GPermission.html#g-permission-impl-update">
2448
+ <ANCHOR id="GPermission.property-details" href="gio/GPermission.html#GPermission.property-details">
2449
+ <ANCHOR id="GPermission--allowed" href="gio/GPermission.html#GPermission--allowed">
2450
+ <ANCHOR id="GPermission--can-acquire" href="gio/GPermission.html#GPermission--can-acquire">
2451
+ <ANCHOR id="GPermission--can-release" href="gio/GPermission.html#GPermission--can-release">
2452
+ <ANCHOR id="GSimplePermission" href="gio/GSimplePermission.html">
2453
+ <ANCHOR id="GSimplePermission.synopsis" href="gio/GSimplePermission.html#GSimplePermission.synopsis">
2454
+ <ANCHOR id="GSimplePermission.object-hierarchy" href="gio/GSimplePermission.html#GSimplePermission.object-hierarchy">
2455
+ <ANCHOR id="GSimplePermission.description" href="gio/GSimplePermission.html#GSimplePermission.description">
2456
+ <ANCHOR id="GSimplePermission.details" href="gio/GSimplePermission.html#GSimplePermission.details">
2457
+ <ANCHOR id="GSimplePermission-struct" href="gio/GSimplePermission.html#GSimplePermission-struct">
2458
+ <ANCHOR id="g-simple-permission-new" href="gio/GSimplePermission.html#g-simple-permission-new">
2459
+ <ANCHOR id="GVfs" href="gio/GVfs.html">
2460
+ <ANCHOR id="GVfs.synopsis" href="gio/GVfs.html#GVfs.synopsis">
2461
+ <ANCHOR id="GVfs.object-hierarchy" href="gio/GVfs.html#GVfs.object-hierarchy">
2462
+ <ANCHOR id="GVfs.description" href="gio/GVfs.html#GVfs.description">
2463
+ <ANCHOR id="GVfs.details" href="gio/GVfs.html#GVfs.details">
2464
+ <ANCHOR id="GVfs-struct" href="gio/GVfs.html#GVfs-struct">
2465
+ <ANCHOR id="G-VFS-EXTENSION-POINT-NAME:CAPS" href="gio/GVfs.html#G-VFS-EXTENSION-POINT-NAME:CAPS">
2466
+ <ANCHOR id="g-vfs-get-file-for-path" href="gio/GVfs.html#g-vfs-get-file-for-path">
2467
+ <ANCHOR id="g-vfs-get-file-for-uri" href="gio/GVfs.html#g-vfs-get-file-for-uri">
2468
+ <ANCHOR id="g-vfs-parse-name" href="gio/GVfs.html#g-vfs-parse-name">
2469
+ <ANCHOR id="g-vfs-get-default" href="gio/GVfs.html#g-vfs-get-default">
2470
+ <ANCHOR id="g-vfs-get-local" href="gio/GVfs.html#g-vfs-get-local">
2471
+ <ANCHOR id="g-vfs-is-active" href="gio/GVfs.html#g-vfs-is-active">
2472
+ <ANCHOR id="g-vfs-get-supported-uri-schemes" href="gio/GVfs.html#g-vfs-get-supported-uri-schemes">
2473
+ <ANCHOR id="GIOModule" href="gio/GIOModule.html">
2474
+ <ANCHOR id="GIOModule.synopsis" href="gio/GIOModule.html#GIOModule.synopsis">
2475
+ <ANCHOR id="GIOModule.object-hierarchy" href="gio/GIOModule.html#GIOModule.object-hierarchy">
2476
+ <ANCHOR id="GIOModule.implemented-interfaces" href="gio/GIOModule.html#GIOModule.implemented-interfaces">
2477
+ <ANCHOR id="GIOModule.description" href="gio/GIOModule.html#GIOModule.description">
2478
+ <ANCHOR id="GIOModule.details" href="gio/GIOModule.html#GIOModule.details">
2479
+ <ANCHOR id="GIOModule-struct" href="gio/GIOModule.html#GIOModule-struct">
2480
+ <ANCHOR id="g-io-module-new" href="gio/GIOModule.html#g-io-module-new">
2481
+ <ANCHOR id="g-io-modules-load-all-in-directory" href="gio/GIOModule.html#g-io-modules-load-all-in-directory">
2482
+ <ANCHOR id="g-io-modules-scan-all-in-directory" href="gio/GIOModule.html#g-io-modules-scan-all-in-directory">
2483
+ <ANCHOR id="g-io-module-load" href="gio/GIOModule.html#g-io-module-load">
2484
+ <ANCHOR id="g-io-module-unload" href="gio/GIOModule.html#g-io-module-unload">
2485
+ <ANCHOR id="g-io-module-query" href="gio/GIOModule.html#g-io-module-query">
2486
+ <ANCHOR id="gio-Extension-Points" href="gio/gio-Extension-Points.html">
2487
+ <ANCHOR id="gio-Extension-Points.synopsis" href="gio/gio-Extension-Points.html#gio-Extension-Points.synopsis">
2488
+ <ANCHOR id="gio-Extension-Points.description" href="gio/gio-Extension-Points.html#gio-Extension-Points.description">
2489
+ <ANCHOR id="gio-Extension-Points.details" href="gio/gio-Extension-Points.html#gio-Extension-Points.details">
2490
+ <ANCHOR id="GIOExtension" href="gio/gio-Extension-Points.html#GIOExtension">
2491
+ <ANCHOR id="GIOExtensionPoint" href="gio/gio-Extension-Points.html#GIOExtensionPoint">
2492
+ <ANCHOR id="g-io-extension-get-name" href="gio/gio-Extension-Points.html#g-io-extension-get-name">
2493
+ <ANCHOR id="g-io-extension-get-priority" href="gio/gio-Extension-Points.html#g-io-extension-get-priority">
2494
+ <ANCHOR id="g-io-extension-get-type" href="gio/gio-Extension-Points.html#g-io-extension-get-type">
2495
+ <ANCHOR id="g-io-extension-point-get-extension-by-name" href="gio/gio-Extension-Points.html#g-io-extension-point-get-extension-by-name">
2496
+ <ANCHOR id="g-io-extension-point-get-extensions" href="gio/gio-Extension-Points.html#g-io-extension-point-get-extensions">
2497
+ <ANCHOR id="g-io-extension-point-get-required-type" href="gio/gio-Extension-Points.html#g-io-extension-point-get-required-type">
2498
+ <ANCHOR id="g-io-extension-point-implement" href="gio/gio-Extension-Points.html#g-io-extension-point-implement">
2499
+ <ANCHOR id="g-io-extension-point-lookup" href="gio/gio-Extension-Points.html#g-io-extension-point-lookup">
2500
+ <ANCHOR id="g-io-extension-point-register" href="gio/gio-Extension-Points.html#g-io-extension-point-register">
2501
+ <ANCHOR id="g-io-extension-point-set-required-type" href="gio/gio-Extension-Points.html#g-io-extension-point-set-required-type">
2502
+ <ANCHOR id="g-io-extension-ref-class" href="gio/gio-Extension-Points.html#g-io-extension-ref-class">
2503
+ <ANCHOR id="gio-Extension-Points.see-also" href="gio/gio-Extension-Points.html#gio-Extension-Points.see-also">
2504
+ <ANCHOR id="gio-querymodules" href="gio/gio-querymodules.html">
2505
+ <ANCHOR id="gsettings" href="gio/gsettings.html">
2506
+ <ANCHOR id="glib-compile-schemas" href="gio/glib-compile-schemas.html">
2507
+ <ANCHOR id="gdbus" href="gio/gdbus.html">
2508
+ <ANCHOR id="annotation-glossterm-array" href="gio/annotation-glossary.html#annotation-glossterm-array">
2509
+ <ANCHOR id="annotation-glossterm-out" href="gio/annotation-glossary.html#annotation-glossterm-out">
2510
+ <ANCHOR id="annotation-glossterm-allow-none" href="gio/annotation-glossary.html#annotation-glossterm-allow-none">
2511
+ <ANCHOR id="annotation-glossterm-element-type" href="gio/annotation-glossary.html#annotation-glossterm-element-type">
2512
+ <ANCHOR id="annotation-glossterm-transfer full" href="gio/annotation-glossary.html#annotation-glossterm-transfer full">
2513
+ <ANCHOR id="annotation-glossterm-transfer none" href="gio/annotation-glossary.html#annotation-glossterm-transfer none">