summaryrefslogtreecommitdiff
path: root/docs/reference/gio/gio-sections.txt
blob: 891d7f5dbc0ed214b59a78d42ffafef6a0133d1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
<SECTION>
<FILE>gvfs</FILE>
<TITLE>GVfs</TITLE>
GVfs
G_VFS_EXTENSION_POINT_NAME
g_vfs_get_file_for_path
g_vfs_get_file_for_uri
g_vfs_parse_name
g_vfs_get_default
g_vfs_get_local
g_vfs_is_active
g_vfs_get_supported_uri_schemes
<SUBSECTION Standard>
GVfsClass
G_VFS
G_IS_VFS
G_TYPE_VFS
G_VFS_CLASS
G_IS_VFS_CLASS
G_VFS_GET_CLASS
<SUBSECTION Private>
g_vfs_get_type
</SECTION>

<SECTION>
<FILE>gfile</FILE>
<TITLE>GFile</TITLE>
GFile
GFileIface
GFileQueryInfoFlags
GFileCreateFlags
GFileCopyFlags
GFileMonitorFlags
GFilesystemPreviewType
GFileProgressCallback
GFileReadMoreCallback
g_file_new_for_path
g_file_new_for_uri
g_file_new_for_commandline_arg
g_file_parse_name
g_file_dup
g_file_hash
g_file_equal
g_file_get_basename
g_file_get_path
g_file_get_uri
g_file_get_parse_name
g_file_get_parent
g_file_get_child
g_file_get_child_for_display_name
g_file_has_prefix
g_file_get_relative_path
g_file_resolve_relative_path
g_file_is_native
g_file_has_uri_scheme
g_file_get_uri_scheme
g_file_read
g_file_read_async
g_file_read_finish
g_file_append_to
g_file_create
g_file_replace
g_file_append_to_async
g_file_append_to_finish
g_file_create_async
g_file_create_finish
g_file_replace_async
g_file_replace_finish
g_file_query_info
g_file_query_info_async
g_file_query_info_finish
g_file_query_exists
g_file_query_file_type
g_file_query_filesystem_info
g_file_query_filesystem_info_async
g_file_query_filesystem_info_finish
g_file_query_default_handler
g_file_find_enclosing_mount
g_file_find_enclosing_mount_async
g_file_find_enclosing_mount_finish
g_file_enumerate_children
g_file_enumerate_children_async
g_file_enumerate_children_finish
g_file_set_display_name
g_file_set_display_name_async
g_file_set_display_name_finish
g_file_delete
g_file_trash
g_file_copy
g_file_copy_async
g_file_copy_finish
g_file_move
g_file_make_directory
g_file_make_directory_with_parents
g_file_make_symbolic_link
g_file_query_settable_attributes
g_file_query_writable_namespaces
g_file_set_attribute
g_file_set_attributes_from_info
g_file_set_attributes_async
g_file_set_attributes_finish
g_file_set_attribute_string
g_file_set_attribute_byte_string
g_file_set_attribute_uint32
g_file_set_attribute_int32
g_file_set_attribute_uint64
g_file_set_attribute_int64
g_file_mount_mountable
g_file_mount_mountable_finish
g_file_unmount_mountable
g_file_unmount_mountable_finish
g_file_eject_mountable
g_file_eject_mountable_finish
g_file_mount_enclosing_volume
g_file_mount_enclosing_volume_finish
g_file_monitor_directory
g_file_monitor_file
g_file_monitor
g_file_load_contents
g_file_load_contents_async
g_file_load_contents_finish
g_file_load_partial_contents_async
g_file_load_partial_contents_finish
g_file_replace_contents
g_file_replace_contents_async
g_file_replace_contents_finish
g_file_copy_attributes
<SUBSECTION Standard>
G_FILE
G_IS_FILE
G_TYPE_FILE
G_FILE_GET_IFACE
<SUBSECTION Private>
g_file_get_type
</SECTION>

<SECTION>
<FILE>gfileenumerator</FILE>
<TITLE>GFileEnumerator</TITLE>
GFileEnumerator
g_file_enumerator_next_file
g_file_enumerator_close
g_file_enumerator_next_files_async
g_file_enumerator_next_files_finish
g_file_enumerator_close_async
g_file_enumerator_close_finish
g_file_enumerator_is_closed
g_file_enumerator_has_pending
g_file_enumerator_set_pending
g_file_enumerator_get_container
<SUBSECTION Standard>
GFileEnumeratorClass
G_FILE_ENUMERATOR
G_IS_FILE_ENUMERATOR
G_TYPE_FILE_ENUMERATOR
G_FILE_ENUMERATOR_CLASS
G_IS_FILE_ENUMERATOR_CLASS
G_FILE_ENUMERATOR_GET_CLASS
<SUBSECTION Private>
g_file_enumerator_get_type
GFileEnumeratorPrivate
</SECTION>

<SECTION>
<FILE>gfileinfo</FILE>
<TITLE>GFileInfo</TITLE>
GFileAttributeMatcher
GFileType
GFileInfo
G_FILE_ATTRIBUTE_STANDARD_TYPE
G_FILE_ATTRIBUTE_STANDARD_IS_HIDDEN
G_FILE_ATTRIBUTE_STANDARD_IS_BACKUP
G_FILE_ATTRIBUTE_STANDARD_IS_SYMLINK
G_FILE_ATTRIBUTE_STANDARD_IS_VIRTUAL
G_FILE_ATTRIBUTE_STANDARD_NAME
G_FILE_ATTRIBUTE_STANDARD_DISPLAY_NAME
G_FILE_ATTRIBUTE_STANDARD_EDIT_NAME
G_FILE_ATTRIBUTE_STANDARD_COPY_NAME
G_FILE_ATTRIBUTE_STANDARD_ICON
G_FILE_ATTRIBUTE_STANDARD_CONTENT_TYPE
G_FILE_ATTRIBUTE_STANDARD_FAST_CONTENT_TYPE
G_FILE_ATTRIBUTE_STANDARD_SIZE
G_FILE_ATTRIBUTE_STANDARD_SYMLINK_TARGET
G_FILE_ATTRIBUTE_STANDARD_TARGET_URI
G_FILE_ATTRIBUTE_STANDARD_SORT_ORDER
G_FILE_ATTRIBUTE_ETAG_VALUE
G_FILE_ATTRIBUTE_ID_FILE
G_FILE_ATTRIBUTE_ID_FILESYSTEM
G_FILE_ATTRIBUTE_ACCESS_CAN_READ
G_FILE_ATTRIBUTE_ACCESS_CAN_WRITE
G_FILE_ATTRIBUTE_ACCESS_CAN_EXECUTE
G_FILE_ATTRIBUTE_ACCESS_CAN_DELETE
G_FILE_ATTRIBUTE_ACCESS_CAN_TRASH
G_FILE_ATTRIBUTE_ACCESS_CAN_RENAME
G_FILE_ATTRIBUTE_MOUNTABLE_CAN_MOUNT
G_FILE_ATTRIBUTE_MOUNTABLE_CAN_UNMOUNT
G_FILE_ATTRIBUTE_MOUNTABLE_CAN_EJECT
G_FILE_ATTRIBUTE_MOUNTABLE_UNIX_DEVICE
G_FILE_ATTRIBUTE_MOUNTABLE_HAL_UDI
G_FILE_ATTRIBUTE_TIME_MODIFIED
G_FILE_ATTRIBUTE_TIME_MODIFIED_USEC
G_FILE_ATTRIBUTE_TIME_ACCESS
G_FILE_ATTRIBUTE_TIME_ACCESS_USEC
G_FILE_ATTRIBUTE_TIME_CHANGED
G_FILE_ATTRIBUTE_TIME_CHANGED_USEC
G_FILE_ATTRIBUTE_TIME_CREATED
G_FILE_ATTRIBUTE_TIME_CREATED_USEC
G_FILE_ATTRIBUTE_UNIX_DEVICE
G_FILE_ATTRIBUTE_UNIX_INODE
G_FILE_ATTRIBUTE_UNIX_MODE
G_FILE_ATTRIBUTE_UNIX_NLINK
G_FILE_ATTRIBUTE_UNIX_UID
G_FILE_ATTRIBUTE_UNIX_GID
G_FILE_ATTRIBUTE_UNIX_RDEV
G_FILE_ATTRIBUTE_UNIX_BLOCK_SIZE
G_FILE_ATTRIBUTE_UNIX_BLOCKS
G_FILE_ATTRIBUTE_UNIX_IS_MOUNTPOINT
G_FILE_ATTRIBUTE_DOS_IS_ARCHIVE
G_FILE_ATTRIBUTE_DOS_IS_SYSTEM
G_FILE_ATTRIBUTE_OWNER_USER
G_FILE_ATTRIBUTE_OWNER_USER_REAL
G_FILE_ATTRIBUTE_OWNER_GROUP
G_FILE_ATTRIBUTE_THUMBNAIL_PATH
G_FILE_ATTRIBUTE_THUMBNAILING_FAILED
G_FILE_ATTRIBUTE_FILESYSTEM_SIZE
G_FILE_ATTRIBUTE_FILESYSTEM_FREE
G_FILE_ATTRIBUTE_FILESYSTEM_TYPE
G_FILE_ATTRIBUTE_FILESYSTEM_READONLY
G_FILE_ATTRIBUTE_GVFS_BACKEND
G_FILE_ATTRIBUTE_SELINUX_CONTEXT
G_FILE_ATTRIBUTE_TRASH_ITEM_COUNT
G_FILE_ATTRIBUTE_FILESYSTEM_USE_PREVIEW
G_FILE_ATTRIBUTE_STANDARD_DESCRIPTION
g_file_info_new
g_file_info_dup
g_file_info_copy_into
g_file_info_has_attribute
g_file_info_list_attributes
g_file_info_get_attribute_type
g_file_info_remove_attribute
g_file_info_get_attribute_as_string
g_file_info_get_attribute_data
g_file_info_get_attribute_status
g_file_info_get_attribute_string
g_file_info_get_attribute_byte_string
g_file_info_get_attribute_boolean
g_file_info_get_attribute_uint32
g_file_info_get_attribute_int32
g_file_info_get_attribute_uint64
g_file_info_get_attribute_int64
g_file_info_get_attribute_object
g_file_info_set_attribute
g_file_info_set_attribute_string
g_file_info_set_attribute_byte_string
g_file_info_set_attribute_boolean
g_file_info_set_attribute_uint32
g_file_info_set_attribute_int32
g_file_info_set_attribute_uint64
g_file_info_set_attribute_int64
g_file_info_set_attribute_object
g_file_info_clear_status
g_file_info_get_file_type
g_file_info_get_is_hidden
g_file_info_get_is_backup
g_file_info_get_is_symlink
g_file_info_get_name
g_file_info_get_display_name
g_file_info_get_edit_name
g_file_info_get_icon
g_file_info_get_content_type
g_file_info_get_size
g_file_info_get_modification_time
g_file_info_get_symlink_target
g_file_info_get_etag
g_file_info_get_sort_order
g_file_info_set_attribute_mask
g_file_info_unset_attribute_mask
g_file_info_set_file_type
g_file_info_set_is_hidden
g_file_info_set_is_symlink
g_file_info_set_name
g_file_info_set_display_name
g_file_info_set_edit_name
g_file_info_set_icon
g_file_info_set_content_type
g_file_info_set_size
g_file_info_set_modification_time
g_file_info_set_symlink_target
g_file_info_set_sort_order
g_file_attribute_matcher_new
g_file_attribute_matcher_ref
g_file_attribute_matcher_unref
g_file_attribute_matcher_matches
g_file_attribute_matcher_matches_only
g_file_attribute_matcher_enumerate_namespace
g_file_attribute_matcher_enumerate_next
<SUBSECTION Standard>
GFileInfoClass
G_FILE_INFO
G_IS_FILE_INFO
G_TYPE_FILE_INFO
G_FILE_INFO_CLASS
G_IS_FILE_INFO_CLASS
G_FILE_INFO_GET_CLASS
<SUBSECTION Private>
g_file_info_get_type
</SECTION>

<SECTION>
<FILE>gfileattribute</FILE>
<TITLE>GFileAttribute</TITLE>
GFileAttributeType
GFileAttributeInfoFlags
GFileAttributeStatus
GFileAttributeInfo
GFileAttributeInfoList
g_file_attribute_info_list_new
g_file_attribute_info_list_ref
g_file_attribute_info_list_unref
g_file_attribute_info_list_dup
g_file_attribute_info_list_lookup
g_file_attribute_info_list_add
</SECTION>

<SECTION>
<FILE>gfilemonitor</FILE>
<TITLE>GFileMonitor</TITLE>
GFileMonitorEvent
GFileMonitor
g_file_monitor_cancel
g_file_monitor_is_cancelled
g_file_monitor_set_rate_limit
g_file_monitor_emit_event
<SUBSECTION Standard>
GFileMonitorClass
G_FILE_MONITOR
G_IS_FILE_MONITOR
G_TYPE_FILE_MONITOR
G_FILE_MONITOR_CLASS
G_IS_FILE_MONITOR_CLASS
G_FILE_MONITOR_GET_CLASS
<SUBSECTION Private>
g_file_monitor_get_type
GFileMonitorPrivate
</SECTION>

<SECTION>
<FILE>gicon</FILE>
<TITLE>GIcon</TITLE>
GIcon
GIconIface
g_icon_hash
g_icon_equal
<SUBSECTION Standard>
G_ICON
G_IS_ICON
G_TYPE_ICON
G_ICON_GET_IFACE
<SUBSECTION Private>
g_icon_get_type
</SECTION>

<SECTION>
<FILE>gthemedicon</FILE>
<TITLE>GThemedIcon</TITLE>
GThemedIcon
g_themed_icon_new
g_themed_icon_new_from_names
g_themed_icon_new_with_default_fallbacks
g_themed_icon_prepend_name
g_themed_icon_append_name
<SUBSECTION Standard>
GThemedIconClass
G_THEMED_ICON
G_IS_THEMED_ICON
G_TYPE_THEMED_ICON
G_THEMED_ICON_CLASS
G_IS_THEMED_ICON_CLASS
G_THEMED_ICON_GET_CLASS
<SUBSECTION Private>
g_themed_icon_get_type
</SECTION>

<SECTION>
<FILE>gloadableicon</FILE>
<TITLE>GLoadableIcon</TITLE>
GLoadableIcon
GLoadableIconIface
g_loadable_icon_load
g_loadable_icon_load_async
g_loadable_icon_load_finish
<SUBSECTION Standard>
G_LOADABLE_ICON
G_IS_LOADABLE_ICON
G_TYPE_LOADABLE_ICON
G_LOADABLE_ICON_GET_IFACE
<SUBSECTION Private>
g_loadable_icon_get_type
</SECTION>

<SECTION>
<FILE>gfileicon</FILE>
<TITLE>GFileIcon</TITLE>
GFileIcon
g_file_icon_new
g_file_icon_get_file
<SUBSECTION Standard>
GFileIconClass
G_FILE_ICON
G_IS_FILE_ICON
G_TYPE_FILE_ICON
G_FILE_ICON_CLASS
G_IS_FILE_ICON_CLASS
G_FILE_ICON_GET_CLASS
<SUBSECTION Private>
g_file_icon_get_type
</SECTION>

<SECTION>
<FILE>ginputstream</FILE>
<TITLE>GInputStream</TITLE>
GInputStream
g_input_stream_read
g_input_stream_read_all
g_input_stream_skip
g_input_stream_close
g_input_stream_read_async
g_input_stream_read_finish
g_input_stream_skip_async
g_input_stream_skip_finish
g_input_stream_close_async
g_input_stream_close_finish
g_input_stream_is_closed
g_input_stream_has_pending
g_input_stream_set_pending
g_input_stream_clear_pending
<SUBSECTION Standard>
GInputStreamClass
G_INPUT_STREAM
G_IS_INPUT_STREAM
G_TYPE_INPUT_STREAM
G_INPUT_STREAM_CLASS
G_IS_INPUT_STREAM_CLASS
G_INPUT_STREAM_GET_CLASS
<SUBSECTION Private>
g_input_stream_get_type
GInputStreamPrivate
</SECTION>

<SECTION>
<FILE>gfileinputstream</FILE>
<TITLE>GFileInputStream</TITLE>
GFileInputStream
g_file_input_stream_query_info
g_file_input_stream_query_info_async
g_file_input_stream_query_info_finish
<SUBSECTION Standard>
GFileInputStreamClass
G_FILE_INPUT_STREAM
G_IS_FILE_INPUT_STREAM
G_TYPE_FILE_INPUT_STREAM
G_FILE_INPUT_STREAM_CLASS
G_IS_FILE_INPUT_STREAM_CLASS
G_FILE_INPUT_STREAM_GET_CLASS
<SUBSECTION Private>
g_file_input_stream_get_type
GFileInputStreamPrivate
</SECTION>

<SECTION>
<FILE>gfilterinputstream</FILE>
<TITLE>GFilterInputStream</TITLE>
GFilterInputStream
g_filter_input_stream_get_base_stream
<SUBSECTION Standard>
GFilterInputStreamClass
G_FILTER_INPUT_STREAM
G_IS_FILTER_INPUT_STREAM
G_TYPE_FILTER_INPUT_STREAM
G_FILTER_INPUT_STREAM_CLASS
G_IS_FILTER_INPUT_STREAM_CLASS
G_FILTER_INPUT_STREAM_GET_CLASS
<SUBSECTION Private>
g_filter_input_stream_get_type
GFilterInputStreamPrivate
</SECTION>

<SECTION>
<FILE>gunixinputstream</FILE>
<TITLE>GUnixInputStream</TITLE>
GUnixInputStream
g_unix_input_stream_new
<SUBSECTION Standard>
GUnixInputStreamClass
G_UNIX_INPUT_STREAM
G_IS_UNIX_INPUT_STREAM
G_TYPE_UNIX_INPUT_STREAM
G_UNIX_INPUT_STREAM_CLASS
G_IS_UNIX_INPUT_STREAM_CLASS
G_UNIX_INPUT_STREAM_GET_CLASS
<SUBSECTION Private>
g_unix_input_stream_get_type
GUnixInputStreamPrivate
</SECTION>

<SECTION>
<FILE>gmemoryinputstream</FILE>
<TITLE>GMemoryInputStream</TITLE>
GMemoryInputStream
g_memory_input_stream_new
g_memory_input_stream_new_from_data
g_memory_input_stream_add_data
<SUBSECTION Standard>
GMemoryInputStreamClass
G_MEMORY_INPUT_STREAM
G_IS_MEMORY_INPUT_STREAM
G_TYPE_MEMORY_INPUT_STREAM
G_MEMORY_INPUT_STREAM_CLASS
G_IS_MEMORY_INPUT_STREAM_CLASS
G_MEMORY_INPUT_STREAM_GET_CLASS
<SUBSECTION Private>
GMemoryInputStreamPrivate
g_memory_input_stream_get_type
</SECTION>

<SECTION>
<FILE>gdatainputstream</FILE>
<TITLE>GDataInputStream</TITLE>
GDataInputStream
GDataStreamByteOrder
GDataStreamNewlineType
g_data_input_stream_new
g_data_input_stream_set_byte_order
g_data_input_stream_get_byte_order
g_data_input_stream_set_newline_type
g_data_input_stream_get_newline_type
g_data_input_stream_read_byte
g_data_input_stream_read_int16
g_data_input_stream_read_uint16
g_data_input_stream_read_int32
g_data_input_stream_read_uint32
g_data_input_stream_read_int64
g_data_input_stream_read_uint64
g_data_input_stream_read_line
g_data_input_stream_read_until
<SUBSECTION Standard>
GDataInputStreamClass
G_DATA_INPUT_STREAM
G_IS_DATA_INPUT_STREAM
G_TYPE_DATA_INPUT_STREAM
G_DATA_INPUT_STREAM_CLASS
G_IS_DATA_INPUT_STREAM_CLASS
G_DATA_INPUT_STREAM_GET_CLASS
<SUBSECTION Private>
g_data_input_stream_get_type
GDataInputStreamPrivate
</SECTION>

<SECTION>
<FILE>gbufferedinputstream</FILE>
<TITLE>GBufferedInputStream</TITLE>
GBufferedInputStream
g_buffered_input_stream_new
g_buffered_input_stream_new_sized
g_buffered_input_stream_get_buffer_size
g_buffered_input_stream_set_buffer_size
g_buffered_input_stream_get_available
g_buffered_input_stream_peek_buffer
g_buffered_input_stream_peek
g_buffered_input_stream_fill
g_buffered_input_stream_fill_async
g_buffered_input_stream_fill_finish
g_buffered_input_stream_read_byte
<SUBSECTION Standard>
GBufferedInputStreamClass
G_BUFFERED_INPUT_STREAM
G_IS_BUFFERED_INPUT_STREAM
G_TYPE_BUFFERED_INPUT_STREAM
G_BUFFERED_INPUT_STREAM_CLASS
G_IS_BUFFERED_INPUT_STREAM_CLASS
G_BUFFERED_INPUT_STREAM_GET_CLASS
<SUBSECTION Private>
g_buffered_input_stream_get_type
GBufferedInputStreamPrivate
</SECTION>

<SECTION>
<FILE>goutputstream</FILE>
<TITLE>GOutputStream</TITLE>
GOutputStreamSpliceFlags
GOutputStream
g_output_stream_write
g_output_stream_write_all
g_output_stream_splice
g_output_stream_flush
g_output_stream_close
g_output_stream_write_async
g_output_stream_write_finish
g_output_stream_splice_async
g_output_stream_splice_finish
g_output_stream_flush_async
g_output_stream_flush_finish
g_output_stream_close_async
g_output_stream_close_finish
g_output_stream_is_closed
g_output_stream_has_pending
g_output_stream_set_pending
g_output_stream_clear_pending
<SUBSECTION Standard>
GOutputStreamClass
G_OUTPUT_STREAM
G_IS_OUTPUT_STREAM
G_TYPE_OUTPUT_STREAM
G_OUTPUT_STREAM_CLASS
G_IS_OUTPUT_STREAM_CLASS
G_OUTPUT_STREAM_GET_CLASS
<SUBSECTION Private>
g_output_stream_get_type
GOutputStreamPrivate
</SECTION>

<SECTION>
<FILE>gfileoutputstream</FILE>
<TITLE>GFileOutputStream</TITLE>
GFileOutputStream
g_file_output_stream_query_info
g_file_output_stream_query_info_async
g_file_output_stream_query_info_finish
g_file_output_stream_get_etag
<SUBSECTION Standard>
GFileOutputStreamClass
G_FILE_OUTPUT_STREAM
G_IS_FILE_OUTPUT_STREAM
G_TYPE_FILE_OUTPUT_STREAM
G_FILE_OUTPUT_STREAM_CLASS
G_IS_FILE_OUTPUT_STREAM_CLASS
G_FILE_OUTPUT_STREAM_GET_CLASS
<SUBSECTION Private>
g_file_output_stream_get_type
GFileOutputStreamPrivate
</SECTION>

<SECTION>
<FILE>gfilteroutputstream</FILE>
<TITLE>GFilterOutputStream</TITLE>
GFilterOutputStream
g_filter_output_stream_get_base_stream
<SUBSECTION Standard>
GFilterOutputStreamClass
G_FILTER_OUTPUT_STREAM
G_IS_FILTER_OUTPUT_STREAM
G_TYPE_FILTER_OUTPUT_STREAM
G_FILTER_OUTPUT_STREAM_CLASS
G_IS_FILTER_OUTPUT_STREAM_CLASS
G_FILTER_OUTPUT_STREAM_GET_CLASS
<SUBSECTION Private>
g_filter_output_stream_get_type
GFilterOutputStreamPrivate
</SECTION>

<SECTION>
<FILE>gbufferedoutputstream</FILE>
<TITLE>GBufferedOutputStream</TITLE>
GBufferedOutputStream
g_buffered_output_stream_new
g_buffered_output_stream_new_sized
g_buffered_output_stream_get_buffer_size
g_buffered_output_stream_set_buffer_size
g_buffered_output_stream_get_auto_grow
g_buffered_output_stream_set_auto_grow
<SUBSECTION Standard>
GBufferedOutputStreamClass
G_BUFFERED_OUTPUT_STREAM
G_IS_BUFFERED_OUTPUT_STREAM
G_TYPE_BUFFERED_OUTPUT_STREAM
G_BUFFERED_OUTPUT_STREAM_CLASS
G_IS_BUFFERED_OUTPUT_STREAM_CLASS
G_BUFFERED_OUTPUT_STREAM_GET_CLASS
<SUBSECTION Private>
g_buffered_output_stream_get_type
GBufferedOutputStreamPrivate
</SECTION>

<SECTION>
<FILE>gmemoryoutputstream</FILE>
<TITLE>GMemoryOutputStream</TITLE>
GReallocFunc
GMemoryOutputStream
g_memory_output_stream_new
g_memory_output_stream_get_data
g_memory_output_stream_get_size
g_memory_output_stream_get_data_size
<SUBSECTION Standard>
GMemoryOutputStreamClass
G_MEMORY_OUTPUT_STREAM
G_IS_MEMORY_OUTPUT_STREAM
G_TYPE_MEMORY_OUTPUT_STREAM
G_MEMORY_OUTPUT_STREAM_CLASS
G_IS_MEMORY_OUTPUT_STREAM_CLASS
G_MEMORY_OUTPUT_STREAM_GET_CLASS
<SUBSECTION Private>
g_memory_output_stream_get_type
GMemoryOutputStreamPrivate
</SECTION>

<SECTION>
<FILE>gdataoutputstream</FILE>
<TITLE>GDataOutputStream</TITLE>
GDataOutputStream
g_data_output_stream_new
g_data_output_stream_set_byte_order
g_data_output_stream_get_byte_order
g_data_output_stream_put_byte
g_data_output_stream_put_int16
g_data_output_stream_put_uint16
g_data_output_stream_put_int32
g_data_output_stream_put_uint32
g_data_output_stream_put_int64
g_data_output_stream_put_uint64
g_data_output_stream_put_string
<SUBSECTION Standard>
GDataOutputStreamClass
G_DATA_OUTPUT_STREAM
G_IS_DATA_OUTPUT_STREAM
G_TYPE_DATA_OUTPUT_STREAM
G_DATA_OUTPUT_STREAM_CLASS
G_IS_DATA_OUTPUT_STREAM_CLASS
G_DATA_OUTPUT_STREAM_GET_CLASS
<SUBSECTION Private>
g_data_output_stream_get_type
GDataOutputStreamPrivate

</SECTION>

<SECTION>
<FILE>gunixoutputstream</FILE>
<TITLE>GUnixOutputStream</TITLE>
GUnixOutputStream
g_unix_output_stream_new
<SUBSECTION Standard>
GUnixOutputStreamClass
G_UNIX_OUTPUT_STREAM
G_IS_UNIX_OUTPUT_STREAM
G_TYPE_UNIX_OUTPUT_STREAM
G_UNIX_OUTPUT_STREAM_CLASS
G_IS_UNIX_OUTPUT_STREAM_CLASS
G_UNIX_OUTPUT_STREAM_GET_CLASS
<SUBSECTION Private>
g_unix_output_stream_get_type
GUnixOutputStreamPrivate
</SECTION>

<SECTION>
<FILE>gseekable</FILE>
<TITLE>GSeekable</TITLE>
GSeekable
GSeekableIface
g_seekable_tell
g_seekable_can_seek
g_seekable_seek
g_seekable_can_truncate
g_seekable_truncate
<SUBSECTION Standard>
G_SEEKABLE
G_IS_SEEKABLE
G_TYPE_SEEKABLE
G_SEEKABLE_GET_IFACE
<SUBSECTION Private>
g_seekable_get_type
</SECTION>

<SECTION>
<FILE>gvolumemonitor</FILE>
<TITLE>GVolumeMonitor</TITLE>
GVolumeMonitor
G_VOLUME_MONITOR_EXTENSION_POINT_NAME
g_volume_monitor_get
g_volume_monitor_get_connected_drives
g_volume_monitor_get_volumes
g_volume_monitor_get_mounts
g_volume_monitor_adopt_orphan_mount
g_volume_monitor_get_mount_for_uuid
g_volume_monitor_get_volume_for_uuid
<SUBSECTION Standard>
GVolumeMonitorClass
G_VOLUME_MONITOR
G_IS_VOLUME_MONITOR
G_TYPE_VOLUME_MONITOR
G_VOLUME_MONITOR_CLASS
G_IS_VOLUME_MONITOR_CLASS
G_VOLUME_MONITOR_GET_CLASS
<SUBSECTION Private>
g_volume_monitor_get_type
</SECTION>

<SECTION>
<FILE>gmount</FILE>
<TITLE>GMount</TITLE>
GMount
GMountIface
g_mount_get_name
g_mount_get_uuid
g_mount_get_icon
g_mount_get_drive
g_mount_get_root
g_mount_get_volume
g_mount_can_unmount
GMountMountFlags
GMountUnmountFlags
g_mount_unmount
g_mount_unmount_finish
g_mount_remount
g_mount_remount_finish
g_mount_can_eject
g_mount_eject
g_mount_eject_finish
g_mount_guess_content_type
g_mount_guess_content_type_finish
<SUBSECTION Standard>
G_IS_MOUNT
G_MOUNT
G_MOUNT_GET_IFACE
G_TYPE_MOUNT
<SUBSECTION Private>
g_mount_get_type
</SECTION>

<SECTION>
<FILE>gvolume</FILE>
<TITLE>GVolume</TITLE>
GVolume
GVolumeIface
g_volume_get_name
g_volume_get_uuid
g_volume_get_icon
g_volume_get_drive
g_volume_get_mount
g_volume_can_mount
g_volume_should_automount
g_volume_get_activation_root
g_volume_mount
g_volume_mount_finish
g_volume_can_eject
g_volume_eject
g_volume_eject_finish
G_VOLUME_IDENTIFIER_KIND_HAL_UDI
G_VOLUME_IDENTIFIER_KIND_LABEL
G_VOLUME_IDENTIFIER_KIND_NFS_MOUNT
G_VOLUME_IDENTIFIER_KIND_UNIX_DEVICE
G_VOLUME_IDENTIFIER_KIND_UUID
g_volume_enumerate_identifiers
g_volume_get_identifier
<SUBSECTION Standard>
G_VOLUME
G_IS_VOLUME
G_TYPE_VOLUME
G_VOLUME_GET_IFACE
<SUBSECTION Private>
g_volume_get_type
</SECTION>

<SECTION>
<FILE>gdrive</FILE>
<TITLE>GDrive</TITLE>
GDrive
GDriveIface
g_drive_get_name
g_drive_get_icon
g_drive_has_volumes
g_drive_get_volumes
g_drive_can_eject
g_drive_can_poll_for_media
g_drive_poll_for_media
g_drive_poll_for_media_finish
g_drive_has_media
g_drive_is_media_check_automatic
g_drive_is_media_removable
g_drive_eject
g_drive_eject_finish
g_drive_enumerate_identifiers
g_drive_get_identifier
<SUBSECTION Standard>
G_DRIVE
G_IS_DRIVE
G_TYPE_DRIVE
G_DRIVE_GET_IFACE
<SUBSECTION Private>
g_drive_get_type
</SECTION>

<SECTION>
<FILE>gcancellable</FILE>
<TITLE>GCancellable</TITLE>
GCancellable
g_cancellable_new
g_cancellable_is_cancelled
g_cancellable_set_error_if_cancelled
g_cancellable_get_fd
g_cancellable_get_current
g_cancellable_pop_current
g_cancellable_push_current
g_cancellable_reset
g_cancellable_cancel
<SUBSECTION Standard>
GCancellableClass
G_CANCELLABLE
G_IS_CANCELLABLE
G_TYPE_CANCELLABLE
G_CANCELLABLE_CLASS
G_IS_CANCELLABLE_CLASS
G_CANCELLABLE_GET_CLASS
<SUBSECTION Private>
g_cancellable_get_type
</SECTION>

<SECTION>
<FILE>gasyncresult</FILE>
<TITLE>GAsyncResult</TITLE>
GAsyncResult
GAsyncResultIface
GAsyncReadyCallback
g_async_result_get_user_data
g_async_result_get_source_object
<SUBSECTION Standard>
G_ASYNC_RESULT
G_IS_ASYNC_RESULT
G_TYPE_ASYNC_RESULT
G_ASYNC_RESULT_GET_IFACE
<SUBSECTION Private>
g_async_result_get_type
</SECTION>

<SECTION>
<FILE>gsimpleasyncresult</FILE>
<TITLE>GSimpleAsyncResult</TITLE>
GSimpleAsyncResult
GSimpleAsyncThreadFunc
g_simple_async_result_new
g_simple_async_result_new_error
g_simple_async_result_new_from_error
g_simple_async_result_set_op_res_gpointer
g_simple_async_result_get_op_res_gpointer
g_simple_async_result_set_op_res_gssize
g_simple_async_result_get_op_res_gssize
g_simple_async_result_set_op_res_gboolean
g_simple_async_result_get_op_res_gboolean
g_simple_async_result_get_source_tag
g_simple_async_result_set_handle_cancellation
g_simple_async_result_complete
g_simple_async_result_complete_in_idle
g_simple_async_result_run_in_thread
g_simple_async_result_set_from_error
g_simple_async_result_propagate_error
g_simple_async_result_set_error
g_simple_async_result_set_error_va
g_simple_async_report_error_in_idle
g_simple_async_report_gerror_in_idle
<SUBSECTION Standard>
GSimpleAsyncResultClass
G_SIMPLE_ASYNC_RESULT
G_IS_SIMPLE_ASYNC_RESULT
G_TYPE_SIMPLE_ASYNC_RESULT
G_SIMPLE_ASYNC_RESULT_CLASS
G_IS_SIMPLE_ASYNC_RESULT_CLASS
G_SIMPLE_ASYNC_RESULT_GET_CLASS
<SUBSECTION Private>
g_simple_async_result_get_type
</SECTION>

<SECTION>
<FILE>gioscheduler</FILE>
<TITLE>GIOScheduler</TITLE>
GIOSchedulerJob
GIOSchedulerJobFunc
g_io_scheduler_push_job
g_io_scheduler_cancel_all_jobs
g_io_scheduler_job_send_to_mainloop
g_io_scheduler_job_send_to_mainloop_async
</SECTION>

<SECTION>
<FILE>gioerror</FILE>
<TITLE>GIOError</TITLE>
G_IO_ERROR
GIOErrorEnum
g_io_error_from_errno
<SUBSECTION Private>
g_io_error_quark
</SECTION>

<SECTION>
<FILE>gcontenttype</FILE>
<TITLE>GContentType</TITLE>
g_content_type_equals
g_content_type_is_a
g_content_type_is_unknown
g_content_type_get_description
g_content_type_get_mime_type
g_content_type_get_icon
g_content_type_can_be_executable
g_content_type_from_mime_type
g_content_type_guess
g_content_type_guess_for_tree
g_content_types_get_registered
</SECTION>

<SECTION>
<FILE>gappinfo</FILE>
<TITLE>GAppInfo</TITLE>
GAppInfoCreateFlags
GAppInfo
GAppInfoIface
GAppLaunchContext
g_app_info_create_from_commandline
g_app_info_dup
g_app_info_equal
g_app_info_get_id
g_app_info_get_name
g_app_info_get_description
g_app_info_get_executable
g_app_info_get_icon
g_app_info_launch
g_app_info_supports_files
g_app_info_supports_uris
g_app_info_launch_uris
g_app_info_should_show
g_app_info_set_as_default_for_type
g_app_info_set_as_default_for_extension
g_app_info_add_supports_type
g_app_info_can_remove_supports_type
g_app_info_remove_supports_type
g_app_info_get_all
g_app_info_get_all_for_type
g_app_info_get_default_for_type
g_app_info_get_default_for_uri_scheme
g_app_info_launch_default_for_uri
g_app_launch_context_get_display
g_app_launch_context_get_startup_notify_id
g_app_launch_context_launch_failed
g_app_launch_context_new
<SUBSECTION Standard>
GAppLaunchContextClass
G_APP_INFO
G_IS_APP_INFO
G_TYPE_APP_INFO
G_APP_INFO_GET_IFACE
G_APP_LAUNCH_CONTEXT
G_APP_LAUNCH_CONTEXT_CLASS
G_APP_LAUNCH_CONTEXT_GET_CLASS
G_IS_APP_LAUNCH_CONTEXT
G_IS_APP_LAUNCH_CONTEXT_CLASS
G_TYPE_APP_LAUNCH_CONTEXT
<SUBSECTION Private>
g_app_info_get_type
g_app_launch_context_get_type
GAppLaunchContextPrivate
</SECTION>

<SECTION>
<FILE>gmountoperation</FILE>
<TITLE>GMountOperation</TITLE>
GAskPasswordFlags
GPasswordSave
GMountOperation
GMountOperationResult
g_mount_operation_new
g_mount_operation_get_username
g_mount_operation_set_username
g_mount_operation_get_password
g_mount_operation_set_password
g_mount_operation_get_anonymous
g_mount_operation_set_anonymous
g_mount_operation_get_domain
g_mount_operation_set_domain
g_mount_operation_get_password_save
g_mount_operation_set_password_save
g_mount_operation_get_choice
g_mount_operation_set_choice
g_mount_operation_reply
<SUBSECTION Standard>
GMountOperationClass
G_MOUNT_OPERATION
G_IS_MOUNT_OPERATION
G_TYPE_MOUNT_OPERATION
G_MOUNT_OPERATION_CLASS
G_IS_MOUNT_OPERATION_CLASS
G_MOUNT_OPERATION_GET_CLASS
<SUBSECTION Private>
g_mount_operation_get_type
GMountOperationPrivate
</SECTION>

<SECTION>
<FILE>gfilenamecompleter</FILE>
<TITLE>GFilenameCompleter</TITLE>
GFilenameCompleter
g_filename_completer_new
g_filename_completer_get_completion_suffix
g_filename_completer_get_completions
g_filename_completer_set_dirs_only
<SUBSECTION Standard>
GFilenameCompleterClass
G_FILENAME_COMPLETER
G_IS_FILENAME_COMPLETER
G_TYPE_FILENAME_COMPLETER
G_FILENAME_COMPLETER_CLASS
G_IS_FILENAME_COMPLETER_CLASS
G_FILENAME_COMPLETER_GET_CLASS
<SUBSECTION Private>
g_filename_completer_get_type
</SECTION>

<SECTION>
<FILE>gunixmounts</FILE>
<TITLE>Unix Mounts</TITLE>
GUnixMount
GUnixMountPoint
GUnixMountEntry
GUnixMountMonitor
g_unix_mount_free
g_unix_mount_compare
g_unix_mount_get_mount_path
g_unix_mount_get_device_path
g_unix_mount_get_fs_type
g_unix_mount_is_readonly
g_unix_mount_is_system_internal
g_unix_mount_guess_icon
g_unix_mount_guess_name
g_unix_mount_guess_can_eject
g_unix_mount_guess_should_display
g_unix_mount_point_free
g_unix_mount_point_compare
g_unix_mount_point_get_mount_path
g_unix_mount_point_get_device_path
g_unix_mount_point_get_fs_type
g_unix_mount_point_is_readonly
g_unix_mount_point_is_user_mountable
g_unix_mount_point_is_loopback
g_unix_mount_point_guess_icon
g_unix_mount_point_guess_name
g_unix_mount_point_guess_can_eject
g_unix_mount_points_get
g_unix_mounts_get
g_unix_mount_at
g_unix_mounts_changed_since
g_unix_mount_points_changed_since
g_unix_mount_monitor_new
g_unix_mount_monitor_set_rate_limit
g_unix_is_mount_path_system_internal
<SUBSECTION Standard>
GUnixMountClass
GUnixMountMonitorClass
G_UNIX_MOUNT_MONITOR
G_IS_UNIX_MOUNT_MONITOR
G_TYPE_UNIX_MOUNT_MONITOR
G_UNIX_MOUNT_MONITOR_CLASS
G_IS_UNIX_MOUNT_MONITOR_CLASS
G_IS_UNIX_MOUNT
G_IS_UNIX_MOUNT_CLASS
G_UNIX_MOUNT
G_UNIX_MOUNT_CLASS
G_TYPE_UNIX_MOUNT
<SUBSECTION Private>
g_unix_mount_monitor_get_type
G_IS_UNIX_VOLUME_MONITOR
G_IS_UNIX_VOLUME_MONITOR_CLASS
G_TYPE_UNIX_VOLUME_MONITOR
G_UNIX_VOLUME_MONITOR
G_UNIX_VOLUME_MONITOR_CLASS
GUnixVolume
GUnixVolumeMonitor
GUnixVolumeMonitorClass
</SECTION>

<SECTION>
<FILE>gdesktopappinfo</FILE>
<TITLE>Desktop file based GAppInfo</TITLE>
GDesktopAppInfo
g_desktop_app_info_new_from_filename
g_desktop_app_info_new_from_keyfile
g_desktop_app_info_new
g_desktop_app_info_get_is_hidden
g_desktop_app_info_set_desktop_env
GDesktopAppInfoLookup
G_DESKTOP_APP_INFO_LOOKUP_EXTENSION_POINT_NAME
g_desktop_app_info_lookup_get_default_for_uri_scheme
<SUBSECTION Standard>
GDesktopAppInfoClass
G_TYPE_DESKTOP_APP_INFO
G_DESKTOP_APP_INFO
G_DESKTOP_APP_INFO_CLASS
G_IS_DESKTOP_APP_INFO
G_IS_DESKTOP_APP_INFO_CLASS
G_DESKTOP_APP_INFO_GET_CLASS
GDesktopAppInfoLookupIface
G_DESKTOP_APP_INFO_LOOKUP
G_TYPE_DESKTOP_APP_INFO_LOOKUP
G_DESKTOP_APP_INFO_LOOKUP_GET_IFACE
G_IS_DESKTOP_APP_INFO_LOOKUP
<SUBSECTION Private>
g_desktop_app_info_get_type
g_desktop_app_info_lookup_get_type
</SECTION>

<SECTION>
<FILE>giomodule</FILE>
<TITLE>GIOModule</TITLE>
GIOModule
g_io_module_new
g_io_modules_load_all_in_directory
g_io_module_load
g_io_module_unload
<SUBSECTION Standard>
GIOModuleClass
G_IO_MODULE
G_IO_IS_MODULE
G_IO_TYPE_MODULE
G_IO_MODULE_CLASS
G_IO_IS_MODULE_CLASS
G_IO_MODULE_GET_CLASS
<SUBSECTION Private>
g_io_module_get_type
</SECTION>

<SECTION>
<FILE>extensionpoints</FILE>
<TITLE>Extension Points</TITLE>
GIOExtension
GIOExtensionPoint
g_io_extension_get_name
g_io_extension_get_priority
g_io_extension_get_type
g_io_extension_point_get_extension_by_name
g_io_extension_point_get_extensions
g_io_extension_point_get_required_type
g_io_extension_point_implement
g_io_extension_point_lookup
g_io_extension_point_register
g_io_extension_point_set_required_type
g_io_extension_ref_class
</SECTION>