Bug 580450 – Reference counting and boxed types for arrays
[platform/upstream/glib.git] / docs / reference / glib / glib-sections.txt
1 <INCLUDE>glib.h</INCLUDE>
2
3 <SECTION>
4 <TITLE>Basic Types</TITLE>
5 <FILE>types</FILE>
6 gboolean
7 gpointer
8 gconstpointer
9 gchar
10 guchar
11
12 <SUBSECTION>
13 gint
14 guint
15 gshort
16 gushort
17 glong
18 gulong
19
20 <SUBSECTION>
21 gint8
22 guint8
23 gint16
24 guint16
25 gint32
26 guint32
27
28 <SUBSECTION>
29 G_HAVE_GINT64
30 gint64
31 guint64
32 G_GINT64_CONSTANT
33 G_GUINT64_CONSTANT
34
35 <SUBSECTION>
36 gfloat
37 gdouble
38
39 <SUBSECTION>
40 gsize
41 gssize
42 goffset
43 G_GOFFSET_CONSTANT
44
45 <SUBSECTION Private>
46 GLIB_SIZEOF_VOID_P
47 GLIB_SIZEOF_LONG
48 GLIB_SIZEOF_SIZE_T
49 </SECTION>
50
51 <SECTION>
52 <TITLE>Limits of Basic Types</TITLE>
53 <FILE>limits</FILE>
54 G_MININT
55 G_MAXINT
56 G_MAXUINT
57
58 <SUBSECTION>
59 G_MINSHORT
60 G_MAXSHORT
61 G_MAXUSHORT
62
63 <SUBSECTION>
64 G_MINLONG
65 G_MAXLONG
66 G_MAXULONG
67
68 <SUBSECTION>
69 G_MININT8
70 G_MAXINT8
71 G_MAXUINT8
72
73 <SUBSECTION>
74 G_MININT16
75 G_MAXINT16
76 G_MAXUINT16
77
78 <SUBSECTION>
79 G_MININT32
80 G_MAXINT32
81 G_MAXUINT32
82
83 <SUBSECTION>
84 G_MININT64
85 G_MAXINT64
86 G_MAXUINT64
87
88 <SUBSECTION>
89 G_MAXSIZE
90 G_MINSSIZE
91 G_MAXSSIZE
92
93 <SUBSECTION>
94 G_MINOFFSET
95 G_MAXOFFSET
96
97 <SUBSECTION>
98 G_MINFLOAT
99 G_MAXFLOAT
100
101 <SUBSECTION>
102 G_MINDOUBLE
103 G_MAXDOUBLE
104 </SECTION>
105
106 <SECTION>
107 <TITLE>Version Information</TITLE>
108 <FILE>version</FILE>
109 glib_major_version
110 glib_minor_version
111 glib_micro_version
112 glib_binary_age
113 glib_interface_age
114 glib_check_version
115
116 <SUBSECTION>
117 GLIB_MAJOR_VERSION
118 GLIB_MINOR_VERSION
119 GLIB_MICRO_VERSION
120 GLIB_CHECK_VERSION
121 </SECTION>
122
123 <SECTION>
124 <TITLE>Standard Macros</TITLE>
125 <FILE>macros</FILE>
126 <SUBSECTION>
127 G_OS_WIN32
128 G_OS_BEOS
129 G_OS_UNIX
130
131 <SUBSECTION>
132 G_DIR_SEPARATOR
133 G_DIR_SEPARATOR_S
134 G_IS_DIR_SEPARATOR
135 G_SEARCHPATH_SEPARATOR
136 G_SEARCHPATH_SEPARATOR_S
137
138 <SUBSECTION>
139 TRUE
140 FALSE
141
142 <SUBSECTION>
143 NULL
144
145 <SUBSECTION>
146 MIN
147 MAX
148
149 <SUBSECTION>
150 ABS
151 CLAMP
152
153 <SUBSECTION>
154 G_STRUCT_MEMBER
155 G_STRUCT_MEMBER_P
156 G_STRUCT_OFFSET
157
158 <SUBSECTION>
159 G_MEM_ALIGN
160
161 <SUBSECTION>
162 G_CONST_RETURN
163
164 </SECTION>
165
166 <SECTION>
167 <TITLE>Type Conversion Macros</TITLE>
168 <FILE>type_conversion</FILE>
169 GINT_TO_POINTER
170 GPOINTER_TO_INT
171
172 <SUBSECTION>
173 GUINT_TO_POINTER
174 GPOINTER_TO_UINT
175 GSIZE_TO_POINTER
176 GPOINTER_TO_SIZE
177 </SECTION>
178
179 <SECTION>
180 <TITLE>Byte Order Macros</TITLE>
181 <FILE>byte_order</FILE>
182 G_BYTE_ORDER
183 G_LITTLE_ENDIAN
184 G_BIG_ENDIAN
185 G_PDP_ENDIAN
186
187 <SUBSECTION>
188 g_htonl
189 g_htons
190 g_ntohl
191 g_ntohs
192
193 <SUBSECTION>
194 GINT_FROM_BE
195 GINT_FROM_LE
196 GINT_TO_BE
197 GINT_TO_LE
198
199 <SUBSECTION>
200 GUINT_FROM_BE
201 GUINT_FROM_LE
202 GUINT_TO_BE
203 GUINT_TO_LE
204
205 <SUBSECTION>
206 GLONG_FROM_BE
207 GLONG_FROM_LE
208 GLONG_TO_BE
209 GLONG_TO_LE
210
211 <SUBSECTION>
212 GULONG_FROM_BE
213 GULONG_FROM_LE
214 GULONG_TO_BE
215 GULONG_TO_LE
216
217 <SUBSECTION>
218 GINT16_FROM_BE
219 GINT16_FROM_LE
220 GINT16_TO_BE
221 GINT16_TO_LE
222
223 <SUBSECTION>
224 GUINT16_FROM_BE
225 GUINT16_FROM_LE
226 GUINT16_TO_BE
227 GUINT16_TO_LE
228
229 <SUBSECTION>
230 GINT32_FROM_BE
231 GINT32_FROM_LE
232 GINT32_TO_BE
233 GINT32_TO_LE
234
235 <SUBSECTION>
236 GUINT32_FROM_BE
237 GUINT32_FROM_LE
238 GUINT32_TO_BE
239 GUINT32_TO_LE
240
241 <SUBSECTION>
242 GINT64_FROM_BE
243 GINT64_FROM_LE
244 GINT64_TO_BE
245 GINT64_TO_LE
246
247 <SUBSECTION>
248 GUINT64_FROM_BE
249 GUINT64_FROM_LE
250 GUINT64_TO_BE
251 GUINT64_TO_LE
252
253 <SUBSECTION>
254 GUINT16_SWAP_BE_PDP
255 GUINT16_SWAP_LE_BE
256 GUINT16_SWAP_LE_PDP
257
258 <SUBSECTION>
259 GUINT32_SWAP_BE_PDP
260 GUINT32_SWAP_LE_BE
261 GUINT32_SWAP_LE_PDP
262
263 <SUBSECTION>
264 GUINT64_SWAP_LE_BE
265
266 <SUBSECTION Private>
267 GUINT16_SWAP_LE_BE_CONSTANT
268 GUINT32_SWAP_LE_BE_CONSTANT
269 GUINT64_SWAP_LE_BE_CONSTANT
270 GUINT16_SWAP_LE_BE_IA32
271 GUINT32_SWAP_LE_BE_IA32
272 GUINT64_SWAP_LE_BE_IA32
273 GUINT16_SWAP_LE_BE_IA64
274 GUINT32_SWAP_LE_BE_IA64
275 GUINT64_SWAP_LE_BE_IA64
276 GUINT32_SWAP_LE_BE_X86_64
277 GUINT64_SWAP_LE_BE_X86_64
278
279 </SECTION>
280
281 <SECTION>
282 <TITLE>Numerical Definitions</TITLE>
283 <FILE>numerical</FILE>
284 G_IEEE754_FLOAT_BIAS
285 G_IEEE754_DOUBLE_BIAS
286 GFloatIEEE754
287 GDoubleIEEE754
288
289 <SUBSECTION>
290 <SUBSECTION>
291 G_E
292 G_LN2
293 G_LN10
294 G_PI
295 G_PI_2
296 G_PI_4
297 G_SQRT2
298 G_LOG_2_BASE_10
299 </SECTION>
300
301 <SECTION>
302 <TITLE>Miscellaneous Macros</TITLE>
303 <FILE>macros_misc</FILE>
304 G_INLINE_FUNC
305
306 <SUBSECTION>
307 G_STMT_START
308 G_STMT_END
309
310 <SUBSECTION>
311 G_BEGIN_DECLS
312 G_END_DECLS
313
314 <SUBSECTION>
315 G_N_ELEMENTS
316
317 <SUBSECTION>
318 G_VA_COPY
319
320 <SUBSECTION>
321 G_STRINGIFY
322 G_PASTE
323 G_PASTE_ARGS
324 G_STATIC_ASSERT
325
326 <SUBSECTION>
327 G_GNUC_EXTENSION
328 G_GNUC_CONST
329 G_GNUC_PURE
330 G_GNUC_MALLOC
331 G_GNUC_ALLOC_SIZE
332 G_GNUC_ALLOC_SIZE2
333 G_GNUC_DEPRECATED
334 G_GNUC_NORETURN
335 G_GNUC_UNUSED
336 G_GNUC_PRINTF
337 G_GNUC_SCANF
338 G_GNUC_FORMAT
339 G_GNUC_NULL_TERMINATED
340 G_GNUC_WARN_UNUSED_RESULT
341 G_GNUC_FUNCTION
342 G_GNUC_PRETTY_FUNCTION
343 G_GNUC_NO_INSTRUMENT
344 G_HAVE_GNUC_VISIBILITY
345 G_GNUC_INTERNAL
346 G_GNUC_MAY_ALIAS
347
348 <SUBSECTION>
349 G_LIKELY
350 G_UNLIKELY
351
352 <SUBSECTION>
353 G_STRLOC
354 G_STRFUNC
355
356 <SUBSECTION>
357 G_GINT16_MODIFIER
358 G_GINT16_FORMAT
359 G_GUINT16_FORMAT
360 G_GINT32_MODIFIER
361 G_GINT32_FORMAT
362 G_GUINT32_FORMAT
363 G_GINT64_MODIFIER
364 G_GINT64_FORMAT
365 G_GUINT64_FORMAT
366 G_GSIZE_MODIFIER
367 G_GSIZE_FORMAT
368 G_GSSIZE_FORMAT
369 G_GOFFSET_MODIFIER
370 G_GOFFSET_FORMAT
371
372 <SUBSECTION Private>
373 GLIB_VAR
374 G_STRINGIFY_ARG
375 G_HAVE_INLINE
376 G_CAN_INLINE
377 inline
378 G_HAVE___INLINE
379 G_HAVE___INLINE__
380 G_HAVE_GNUC_VARARGS
381 G_HAVE_ISO_VARARGS
382 G_HAVE_GROWING_STACK
383 </SECTION>
384
385 <SECTION>
386 <TITLE>Error Reporting</TITLE>
387 <FILE>error_reporting</FILE>
388 GError
389 g_error_new
390 g_error_new_literal
391 g_error_free
392 g_error_copy
393 g_error_matches
394 g_set_error
395 g_set_error_literal
396 g_propagate_error
397 g_clear_error
398 g_prefix_error
399 g_propagate_prefixed_error
400 </SECTION>
401
402 <SECTION>
403 <TITLE>The Main Event Loop</TITLE>
404 <FILE>main</FILE>
405 GMainLoop
406 g_main_loop_new
407 g_main_loop_ref
408 g_main_loop_unref
409 g_main_loop_run
410 g_main_loop_quit
411 g_main_loop_is_running
412 g_main_loop_get_context
413 g_main_new
414 g_main_destroy
415 g_main_run
416 g_main_quit
417 g_main_is_running
418
419 <SUBSECTION>
420 G_PRIORITY_HIGH
421 G_PRIORITY_DEFAULT
422 G_PRIORITY_HIGH_IDLE
423 G_PRIORITY_DEFAULT_IDLE
424 G_PRIORITY_LOW
425
426 <SUBSECTION>
427 GMainContext
428 g_main_context_new
429 g_main_context_ref
430 g_main_context_unref
431 g_main_context_default
432 g_main_context_iteration
433 g_main_iteration
434 g_main_context_pending
435 g_main_pending
436 g_main_context_find_source_by_id
437 g_main_context_find_source_by_user_data
438 g_main_context_find_source_by_funcs_user_data
439 g_main_context_wakeup
440 g_main_context_acquire
441 g_main_context_release
442 g_main_context_is_owner
443 g_main_context_wait
444 g_main_context_prepare
445 g_main_context_query
446 g_main_context_check
447 g_main_context_dispatch
448 g_main_context_set_poll_func
449 g_main_context_get_poll_func
450 GPollFunc
451 g_main_context_add_poll
452 g_main_context_remove_poll
453 g_main_depth
454 g_main_current_source
455 g_main_set_poll_func
456
457 <SUBSECTION>
458 g_timeout_source_new
459 g_timeout_source_new_seconds
460 g_timeout_add
461 g_timeout_add_full
462 g_timeout_add_seconds
463 g_timeout_add_seconds_full
464
465 <SUBSECTION>
466 g_idle_source_new
467 g_idle_add
468 g_idle_add_full
469 g_idle_remove_by_data
470
471 <SUBSECTION>
472 GPid
473 GChildWatchFunc
474 g_child_watch_source_new
475 g_child_watch_add
476 g_child_watch_add_full
477
478 <SUBSECTION>
479 GPollFD
480 g_poll
481
482 <SUBSECTION>
483 GSource
484 GSourceDummyMarshal
485 GSourceFuncs
486 GSourceCallbackFuncs
487 g_source_new
488 g_source_ref
489 g_source_unref
490 g_source_set_funcs
491 g_source_attach
492 g_source_destroy
493 g_source_is_destroyed
494 g_source_set_priority
495 g_source_get_priority
496 g_source_set_can_recurse
497 g_source_get_can_recurse
498 g_source_get_id
499 g_source_get_context
500 g_source_set_callback
501 GSourceFunc
502 g_source_set_callback_indirect
503 g_source_add_poll
504 g_source_remove_poll
505 g_source_get_current_time
506 g_source_remove
507 g_source_remove_by_funcs_user_data
508 g_source_remove_by_user_data
509
510 <SUBSECTION Private>
511 GLIB_HAVE_SYS_POLL_H
512 GLIB_HAVE_ALLOCA_H
513 alloca
514 GLIB_SYSDEF_POLLERR
515 GLIB_SYSDEF_POLLHUP
516 GLIB_SYSDEF_POLLIN
517 GLIB_SYSDEF_POLLNVAL
518 GLIB_SYSDEF_POLLOUT
519 GLIB_SYSDEF_POLLPRI
520 G_WIN32_MSG_HANDLE
521 g_idle_funcs
522 g_timeout_funcs
523 g_child_watch_funcs
524 </SECTION>
525
526 <SECTION>
527 <TITLE>Threads</TITLE>
528 <FILE>threads</FILE>
529 <SUBSECTION>
530 G_THREADS_ENABLED
531 G_THREADS_IMPL_POSIX
532 G_THREADS_IMPL_NONE
533
534 <SUBSECTION>
535 G_THREAD_ERROR
536 GThreadError
537
538 <SUBSECTION>
539 GThreadFunctions
540 g_thread_init
541 g_thread_supported
542 g_thread_get_initialized
543
544 <SUBSECTION>
545 GThreadFunc
546 GThreadPriority
547 GThread
548 g_thread_create
549 g_thread_create_full
550 g_thread_self
551 g_thread_join
552 g_thread_set_priority
553 g_thread_yield
554 g_thread_exit
555 g_thread_foreach
556
557 <SUBSECTION>
558 GMutex
559 g_mutex_new
560 g_mutex_lock
561 g_mutex_trylock
562 g_mutex_unlock
563 g_mutex_free
564
565 <SUBSECTION>
566 GStaticMutex
567 G_STATIC_MUTEX_INIT
568 g_static_mutex_init
569 g_static_mutex_lock
570 g_static_mutex_trylock
571 g_static_mutex_unlock
572 g_static_mutex_get_mutex
573 g_static_mutex_free
574
575 <SUBSECTION>
576 G_LOCK_DEFINE
577 G_LOCK_DEFINE_STATIC
578 G_LOCK_EXTERN
579 G_LOCK
580 G_TRYLOCK
581 G_UNLOCK
582
583 <SUBSECTION>
584 GStaticRecMutex
585 G_STATIC_REC_MUTEX_INIT
586 g_static_rec_mutex_init
587 g_static_rec_mutex_lock
588 g_static_rec_mutex_trylock
589 g_static_rec_mutex_unlock
590 g_static_rec_mutex_lock_full
591 g_static_rec_mutex_unlock_full
592 g_static_rec_mutex_free
593
594 <SUBSECTION>
595 GStaticRWLock
596 G_STATIC_RW_LOCK_INIT
597 g_static_rw_lock_init
598 g_static_rw_lock_reader_lock
599 g_static_rw_lock_reader_trylock
600 g_static_rw_lock_reader_unlock
601 g_static_rw_lock_writer_lock
602 g_static_rw_lock_writer_trylock
603 g_static_rw_lock_writer_unlock
604 g_static_rw_lock_free
605
606 <SUBSECTION>
607 GCond
608 g_cond_new
609 g_cond_signal
610 g_cond_broadcast
611 g_cond_wait
612 g_cond_timed_wait
613 g_cond_free
614
615 <SUBSECTION>
616 GPrivate
617 g_private_new
618 g_private_get
619 g_private_set
620
621 <SUBSECTION>
622 GStaticPrivate
623 G_STATIC_PRIVATE_INIT
624 g_static_private_init
625 g_static_private_get
626 g_static_private_set
627 g_static_private_free
628
629 <SUBSECTION>
630 GOnce
631 GOnceStatus
632 G_ONCE_INIT
633 g_once
634 g_once_init_enter
635 g_once_init_leave
636
637 <SUBSECTION Private>
638 G_THREAD_ECF
639 G_THREAD_CF
640 G_THREAD_UF
641 g_static_mutex_get_mutex_impl
642 g_static_mutex_get_mutex_impl_shortcut
643 G_MUTEX_DEBUG_MAGIC
644 g_thread_init_with_errorcheck_mutexes
645 G_LOCK_NAME
646 glib_dummy_decl
647 GSystemThread
648 g_thread_use_default_impl
649 g_threads_got_initialized
650 g_thread_functions_for_glib_use
651 g_thread_init_glib
652 g_thread_error_quark
653 g_once_impl
654 g_once_init_enter_impl
655 atexit
656 g_system_thread_assign
657 g_system_thread_equal
658 g_system_thread_equal_simple
659 </SECTION>
660
661 <SECTION>
662 <TITLE>Thread Pools</TITLE>
663 <FILE>thread_pools</FILE>
664 GThreadPool
665 g_thread_pool_new
666 g_thread_pool_push
667 g_thread_pool_set_max_threads
668 g_thread_pool_get_max_threads
669 g_thread_pool_get_num_threads
670 g_thread_pool_unprocessed
671 g_thread_pool_free
672 g_thread_pool_set_max_unused_threads
673 g_thread_pool_get_max_unused_threads
674 g_thread_pool_get_num_unused_threads
675 g_thread_pool_stop_unused_threads
676 g_thread_pool_set_sort_function
677 g_thread_pool_set_max_idle_time
678 g_thread_pool_get_max_idle_time
679 </SECTION>
680
681 <SECTION>
682 <TITLE>Asynchronous Queues</TITLE>
683 <FILE>async_queues</FILE>
684 GAsyncQueue
685 g_async_queue_new
686 g_async_queue_new_full
687 g_async_queue_ref
688 g_async_queue_unref
689 g_async_queue_push
690 g_async_queue_push_sorted
691 g_async_queue_pop
692 g_async_queue_try_pop
693 g_async_queue_timed_pop
694 g_async_queue_length
695 g_async_queue_sort
696
697 <SUBSECTION>
698 g_async_queue_lock
699 g_async_queue_unlock
700 g_async_queue_ref_unlocked
701 g_async_queue_unref_and_unlock
702 g_async_queue_push_unlocked
703 g_async_queue_push_sorted_unlocked
704 g_async_queue_pop_unlocked
705 g_async_queue_try_pop_unlocked
706 g_async_queue_timed_pop_unlocked
707 g_async_queue_length_unlocked
708 g_async_queue_sort_unlocked
709 </SECTION>
710
711 <SECTION>
712 <TITLE>Atomic Operations</TITLE>
713 <FILE>atomic_operations</FILE>g
714 g_atomic_int_get
715 g_atomic_int_set
716 g_atomic_int_add
717 g_atomic_int_exchange_and_add
718 g_atomic_int_compare_and_exchange
719 g_atomic_pointer_get
720 g_atomic_pointer_set
721 g_atomic_pointer_compare_and_exchange
722 g_atomic_int_inc
723 g_atomic_int_dec_and_test
724 </SECTION>
725
726 <SECTION>
727 <TITLE>IO Channels</TITLE>
728 <FILE>iochannels</FILE>
729 GIOChannel
730
731 <SUBSECTION>
732 g_io_channel_unix_new
733 g_io_channel_unix_get_fd
734 g_io_channel_win32_new_fd
735 g_io_channel_win32_new_socket
736 g_io_channel_win32_new_messages
737
738 <SUBSECTION>
739 g_io_channel_init
740
741 <SUBSECTION>
742 g_io_channel_new_file
743 g_io_channel_read_chars
744 g_io_channel_read_unichar
745 g_io_channel_read_line
746 g_io_channel_read_line_string
747 g_io_channel_read_to_end
748 g_io_channel_write_chars
749 g_io_channel_write_unichar
750 g_io_channel_flush
751 g_io_channel_seek_position
752 GSeekType
753 g_io_channel_shutdown
754
755 <SUBSECTION>
756 GIOStatus
757 GIOChannelError
758 G_IO_CHANNEL_ERROR
759 g_io_channel_error_from_errno
760
761 <SUBSECTION>
762 g_io_channel_ref
763 g_io_channel_unref
764
765 <SUBSECTION>
766 g_io_create_watch
767 g_io_add_watch
768 g_io_add_watch_full
769 GIOCondition
770 GIOFunc
771
772 <SUBSECTION>
773 GIOFuncs
774
775 <SUBSECTION>
776 g_io_channel_get_buffer_size
777 g_io_channel_set_buffer_size
778 g_io_channel_get_buffer_condition
779 g_io_channel_get_flags
780 g_io_channel_set_flags
781 GIOFlags
782 g_io_channel_get_line_term
783 g_io_channel_set_line_term
784 g_io_channel_get_buffered
785 g_io_channel_set_buffered
786 g_io_channel_get_encoding
787 g_io_channel_set_encoding
788 g_io_channel_get_close_on_unref
789 g_io_channel_set_close_on_unref
790
791 <SUBSECTION Private>
792 g_io_channel_win32_poll
793 g_io_channel_win32_make_pollfd
794 g_io_channel_win32_get_fd
795  
796 <SUBSECTION>
797 g_io_channel_read
798 GIOError
799 g_io_channel_write
800 g_io_channel_seek
801 g_io_channel_close
802
803 <SUBSECTION Private>
804 g_io_channel_error_quark
805 g_io_watch_funcs
806 </SECTION>
807
808 <SECTION>
809 <TITLE>Memory Allocation</TITLE>
810 <FILE>memory</FILE>
811 g_new
812 g_new0
813 g_renew
814 g_try_new
815 g_try_new0
816 g_try_renew
817
818 <SUBSECTION>
819 g_malloc
820 g_malloc0
821 g_realloc
822 g_try_malloc
823 g_try_malloc0
824 g_try_realloc
825
826 <SUBSECTION>
827 g_free
828 g_mem_gc_friendly
829
830 <SUBSECTION>
831 g_alloca
832 g_newa
833
834 <SUBSECTION>
835 g_memmove
836 g_memdup
837
838 <SUBSECTION>
839 GMemVTable
840 g_mem_set_vtable
841 g_mem_is_system_malloc
842
843 <SUBSECTION>
844 glib_mem_profiler_table
845 g_mem_profile
846 </SECTION>
847
848 <SECTION>
849 <TITLE>Warnings and Assertions</TITLE>
850 <FILE>warnings</FILE>
851 g_print
852 g_set_print_handler
853 GPrintFunc
854
855 <SUBSECTION>
856 g_printerr
857 g_set_printerr_handler
858
859 <SUBSECTION>
860 g_return_if_fail
861 g_return_val_if_fail
862 g_return_if_reached
863 g_return_val_if_reached
864 g_warn_if_fail
865 g_warn_if_reached
866
867 <SUBSECTION>
868 g_on_error_query
869 g_on_error_stack_trace
870
871 <SUBSECTION>
872 G_BREAKPOINT
873
874 <SUBSECTION Private>
875 g_return_if_fail_warning
876 g_assert_warning
877 g_warn_message
878 </SECTION>
879
880 <SECTION>
881 <TITLE>Glob-style pattern matching</TITLE>
882 <FILE>patterns</FILE>
883 GPatternSpec
884 g_pattern_spec_new
885 g_pattern_spec_free
886 g_pattern_spec_equal
887 g_pattern_match
888 g_pattern_match_string
889 g_pattern_match_simple
890 </SECTION>
891
892 <SECTION>
893 <TITLE>Perl-compatible regular expressions</TITLE>
894 <FILE>gregex</FILE>
895 GRegexError
896 G_REGEX_ERROR
897 GRegexCompileFlags
898 GRegexMatchFlags
899 GRegex
900 GRegexEvalCallback
901 g_regex_new
902 g_regex_ref
903 g_regex_unref
904 g_regex_get_pattern
905 g_regex_get_max_backref
906 g_regex_get_capture_count
907 g_regex_get_string_number
908 g_regex_escape_string
909 g_regex_match_simple
910 g_regex_match
911 g_regex_match_full
912 g_regex_match_all
913 g_regex_match_all_full
914 g_regex_split_simple
915 g_regex_split
916 g_regex_split_full
917 g_regex_replace
918 g_regex_replace_literal
919 g_regex_replace_eval
920 g_regex_check_replacement
921 GMatchInfo
922 g_match_info_get_regex
923 g_match_info_get_string
924 g_match_info_free
925 g_match_info_matches
926 g_match_info_next
927 g_match_info_get_match_count
928 g_match_info_is_partial_match
929 g_match_info_expand_references
930 g_match_info_fetch
931 g_match_info_fetch_pos
932 g_match_info_fetch_named
933 g_match_info_fetch_named_pos
934 g_match_info_fetch_all
935 <SUBSECTION Private>
936 g_regex_error_quark
937 </SECTION>
938
939 <SECTION>
940 <TITLE>Message Logging</TITLE>
941 <FILE>messages</FILE>
942 G_LOG_DOMAIN
943 G_LOG_FATAL_MASK
944 G_LOG_LEVEL_USER_SHIFT
945 GLogFunc
946 GLogLevelFlags
947
948 <SUBSECTION>
949 g_log
950 g_logv
951 g_message
952 g_warning
953 g_critical
954 g_error
955 g_debug
956
957 <SUBSECTION>
958 g_log_set_handler
959 g_log_remove_handler
960 g_log_set_always_fatal
961 g_log_set_fatal_mask
962 g_log_default_handler
963 g_log_set_default_handler
964 </SECTION>
965
966 <SECTION>
967 <TITLE>Timers</TITLE>
968 <FILE>timers</FILE>
969 GTimer
970 g_timer_new
971 g_timer_start
972 g_timer_stop
973 g_timer_continue
974 g_timer_elapsed
975 g_timer_reset
976 g_timer_destroy
977 </SECTION>
978
979 <SECTION>
980 <TITLE>Spawning Processes</TITLE>
981 <FILE>spawn</FILE>
982 GSpawnError
983 G_SPAWN_ERROR
984 GSpawnFlags
985 GSpawnChildSetupFunc
986 g_spawn_async_with_pipes
987 g_spawn_async
988 g_spawn_sync
989 g_spawn_command_line_async
990 g_spawn_command_line_sync
991 g_spawn_close_pid
992 <SUBSECTION Private>
993 g_spawn_error_quark
994 </SECTION>
995
996 <SECTION>
997 <TITLE>Simple XML Subset Parser</TITLE>
998 <FILE>markup</FILE>
999 GMarkupError
1000 G_MARKUP_ERROR
1001 GMarkupParseFlags
1002 GMarkupParseContext
1003 GMarkupParser
1004 g_markup_escape_text
1005 g_markup_printf_escaped
1006 g_markup_vprintf_escaped
1007 g_markup_parse_context_end_parse
1008 g_markup_parse_context_free
1009 g_markup_parse_context_get_position
1010 g_markup_parse_context_get_element
1011 g_markup_parse_context_get_element_stack
1012 g_markup_parse_context_get_user_data
1013 g_markup_parse_context_new
1014 g_markup_parse_context_parse
1015 g_markup_parse_context_push
1016 g_markup_parse_context_pop
1017 <SUBSECTION>
1018 GMarkupCollectType
1019 g_markup_collect_attributes
1020 <SUBSECTION Private>
1021 g_markup_error_quark
1022 </SECTION>
1023
1024
1025 <SECTION>
1026 <TITLE>Shell-related Utilities</TITLE>
1027 <FILE>shell</FILE>
1028 GShellError
1029 G_SHELL_ERROR
1030 g_shell_parse_argv
1031 g_shell_quote
1032 g_shell_unquote
1033 <SUBSECTION Private>
1034 g_shell_error_quark
1035 </SECTION>
1036
1037
1038 <SECTION>
1039 <TITLE>Commandline option parser</TITLE>
1040 <FILE>option</FILE>
1041 GOptionError
1042 G_OPTION_ERROR
1043 GOptionArgFunc
1044 GOptionContext
1045 g_option_context_new
1046 g_option_context_set_summary
1047 g_option_context_get_summary
1048 g_option_context_set_description
1049 g_option_context_get_description
1050 GTranslateFunc
1051 g_option_context_set_translate_func
1052 g_option_context_set_translation_domain
1053 g_option_context_free
1054 g_option_context_parse
1055 g_option_context_set_help_enabled
1056 g_option_context_get_help_enabled
1057 g_option_context_set_ignore_unknown_options
1058 g_option_context_get_ignore_unknown_options
1059 g_option_context_get_help
1060 GOptionArg
1061 GOptionFlags
1062 G_OPTION_REMAINING
1063 GOptionEntry
1064 g_option_context_add_main_entries
1065 GOptionGroup
1066 g_option_context_add_group
1067 g_option_context_set_main_group
1068 g_option_context_get_main_group
1069 g_option_group_new
1070 g_option_group_free
1071 g_option_group_add_entries
1072 GOptionParseFunc
1073 g_option_group_set_parse_hooks
1074 GOptionErrorFunc
1075 g_option_group_set_error_hook
1076 g_option_group_set_translate_func
1077 g_option_group_set_translation_domain
1078 <SUBSECTION Private>
1079 g_option_error_quark
1080 </SECTION>
1081
1082
1083 <SECTION>
1084 <TITLE>File Utilities</TITLE>
1085 <FILE>fileutils</FILE>
1086 <INCLUDE>glib.h,glib/gstdio.h</INCLUDE>
1087 GFileError
1088 G_FILE_ERROR
1089 GFileTest
1090 g_file_error_from_errno
1091 g_file_get_contents
1092 g_file_set_contents
1093 g_file_test
1094 g_mkstemp
1095 g_file_open_tmp
1096 g_file_read_link
1097 g_mkdir_with_parents
1098
1099 <SUBSECTION>
1100 GDir
1101 g_dir_open
1102 g_dir_read_name
1103 g_dir_rewind
1104 g_dir_close
1105
1106 <SUBSECTION>
1107 GMappedFile
1108 g_mapped_file_new
1109 g_mapped_file_free
1110 g_mapped_file_get_length
1111 g_mapped_file_get_contents
1112
1113 <SUBSECTION>
1114 g_open
1115 g_rename
1116 g_mkdir
1117 g_stat
1118 g_lstat
1119 g_unlink
1120 g_remove
1121 g_rmdir
1122 g_fopen
1123 g_freopen
1124 g_chmod
1125 g_access
1126 g_creat
1127 g_chdir
1128 g_utime
1129
1130 <SUBSECTION Private>
1131 g_file_error_quark
1132 </SECTION>
1133
1134
1135 <SECTION>
1136 <TITLE>String Utility Functions</TITLE>
1137 <FILE>string_utils</FILE>
1138 <INCLUDE>glib.h,glib/gprintf.h</INCLUDE>
1139 g_strdup
1140 g_strndup
1141 g_strdupv
1142 g_strnfill
1143 g_stpcpy
1144 g_strstr_len
1145 g_strrstr
1146 g_strrstr_len
1147 g_str_has_prefix
1148 g_str_has_suffix
1149 g_strcmp0
1150
1151 <SUBSECTION>
1152 g_strlcpy
1153 g_strlcat
1154
1155 <SUBSECTION>
1156 g_strdup_printf
1157 g_strdup_vprintf
1158 g_printf
1159 g_vprintf
1160 g_fprintf
1161 g_vfprintf
1162 g_sprintf
1163 g_vsprintf
1164 g_snprintf
1165 g_vsnprintf
1166 g_vasprintf
1167 g_printf_string_upper_bound
1168
1169 <SUBSECTION>
1170 g_ascii_isalnum
1171 g_ascii_isalpha
1172 g_ascii_iscntrl
1173 g_ascii_isdigit
1174 g_ascii_isgraph
1175 g_ascii_islower
1176 g_ascii_isprint
1177 g_ascii_ispunct
1178 g_ascii_isspace
1179 g_ascii_isupper
1180 g_ascii_isxdigit
1181
1182 <SUBSECTION>
1183 g_ascii_digit_value
1184 g_ascii_xdigit_value
1185
1186 <SUBSECTION>
1187 g_ascii_strcasecmp
1188 g_ascii_strncasecmp
1189
1190 <SUBSECTION>
1191 g_ascii_strup
1192 g_ascii_strdown
1193
1194 <SUBSECTION>
1195 g_ascii_tolower
1196 g_ascii_toupper
1197
1198 <SUBSECTION>
1199 g_string_ascii_up
1200 g_string_ascii_down
1201
1202 <SUBSECTION>
1203 g_strup
1204 g_strdown
1205
1206 <SUBSECTION>
1207 g_strcasecmp
1208 g_strncasecmp
1209
1210 <SUBSECTION>
1211 g_strreverse
1212
1213 <SUBSECTION>
1214 g_ascii_strtoll
1215 g_ascii_strtoull
1216 G_ASCII_DTOSTR_BUF_SIZE
1217 g_ascii_strtod
1218 g_ascii_dtostr
1219 g_ascii_formatd
1220 g_strtod
1221
1222 <SUBSECTION>
1223 g_strchug
1224 g_strchomp
1225 g_strstrip
1226
1227 <SUBSECTION>
1228 g_strdelimit
1229 G_STR_DELIMITERS
1230 g_strescape
1231 g_strcompress
1232 g_strcanon
1233 g_strsplit
1234 g_strsplit_set
1235 g_strfreev
1236 g_strconcat
1237 g_strjoin
1238 g_strjoinv
1239 g_strv_length
1240
1241 <SUBSECTION>
1242 g_strerror
1243 g_strsignal
1244
1245 <SUBSECTION Private>
1246 GAsciiType
1247 </SECTION>
1248
1249 <SECTION>
1250 <TITLE>Date and Time Functions</TITLE>
1251 <FILE>date</FILE>
1252 G_USEC_PER_SEC
1253 GTimeVal
1254 g_get_current_time
1255 g_usleep
1256 g_time_val_add
1257 g_time_val_from_iso8601
1258 g_time_val_to_iso8601
1259
1260 <SUBSECTION>
1261 GDate
1262 GTime
1263 GDateDMY
1264 GDateDay
1265 GDateMonth
1266 GDateYear
1267 GDateWeekday
1268
1269 <SUBSECTION>
1270 G_DATE_BAD_DAY
1271 G_DATE_BAD_JULIAN
1272 G_DATE_BAD_YEAR
1273
1274 <SUBSECTION>
1275 g_date_new
1276 g_date_new_dmy
1277 g_date_new_julian
1278 g_date_clear
1279 g_date_free
1280
1281 <SUBSECTION>
1282 g_date_set_day
1283 g_date_set_month
1284 g_date_set_year
1285 g_date_set_dmy
1286 g_date_set_julian
1287 g_date_set_time
1288 g_date_set_time_t
1289 g_date_set_time_val
1290 g_date_set_parse
1291
1292 <SUBSECTION>
1293 g_date_add_days
1294 g_date_subtract_days
1295 g_date_add_months
1296 g_date_subtract_months
1297 g_date_add_years
1298 g_date_subtract_years
1299 g_date_days_between
1300 g_date_compare
1301 g_date_clamp
1302 g_date_order
1303
1304 <SUBSECTION>
1305 g_date_get_day
1306 g_date_get_month
1307 g_date_get_year
1308 g_date_get_julian
1309 g_date_get_weekday
1310 g_date_get_day_of_year
1311
1312 <SUBSECTION>
1313 g_date_get_days_in_month
1314 g_date_is_first_of_month
1315 g_date_is_last_of_month
1316 g_date_is_leap_year
1317 g_date_get_monday_week_of_year
1318 g_date_get_monday_weeks_in_year
1319 g_date_get_sunday_week_of_year
1320 g_date_get_sunday_weeks_in_year
1321 g_date_get_iso8601_week_of_year
1322
1323 <SUBSECTION>
1324 g_date_strftime
1325 g_date_to_struct_tm
1326
1327 <SUBSECTION>
1328 g_date_valid
1329 g_date_valid_day
1330 g_date_valid_month
1331 g_date_valid_year
1332 g_date_valid_dmy
1333 g_date_valid_julian
1334 g_date_valid_weekday
1335
1336 <SUBSECTION Private>
1337 g_date_weekday
1338 g_date_month
1339 g_date_year
1340 g_date_day
1341 g_date_julian
1342 g_date_day_of_year
1343 g_date_monday_week_of_year
1344 g_date_sunday_week_of_year
1345 g_date_days_in_month
1346 g_date_monday_weeks_in_year
1347 g_date_sunday_weeks_in_year
1348 tm
1349 </SECTION>
1350
1351 <SECTION>
1352 <TITLE>Hook Functions</TITLE>
1353 <FILE>hooks</FILE>
1354 GHookList
1355 GHookFinalizeFunc
1356 GHook
1357 GHookFunc
1358 GHookCheckFunc
1359
1360 <SUBSECTION>
1361 g_hook_list_init
1362 g_hook_list_invoke
1363 g_hook_list_invoke_check
1364 g_hook_list_marshal
1365 GHookMarshaller
1366 g_hook_list_marshal_check
1367 GHookCheckMarshaller
1368 g_hook_list_clear
1369
1370 <SUBSECTION>
1371 g_hook_alloc
1372 g_hook_append
1373 g_hook_prepend
1374 g_hook_insert_before
1375 g_hook_insert_sorted
1376 GHookCompareFunc
1377 g_hook_compare_ids
1378
1379 <SUBSECTION>
1380 g_hook_get
1381 g_hook_find
1382 GHookFindFunc
1383 g_hook_find_data
1384 g_hook_find_func
1385 g_hook_find_func_data
1386
1387 <SUBSECTION>
1388 g_hook_first_valid
1389 g_hook_next_valid
1390
1391 GHookFlagMask
1392 G_HOOK_FLAGS
1393 G_HOOK_FLAG_USER_SHIFT
1394
1395 <SUBSECTION>
1396 G_HOOK
1397 G_HOOK_IS_VALID
1398 G_HOOK_ACTIVE
1399 G_HOOK_IN_CALL
1400 G_HOOK_IS_UNLINKED
1401
1402 <SUBSECTION>
1403 g_hook_ref
1404 g_hook_unref
1405
1406 g_hook_free
1407 g_hook_destroy
1408 g_hook_destroy_link
1409 </SECTION>
1410
1411 <SECTION>
1412 <TITLE>Miscellaneous Utility Functions</TITLE>
1413 <FILE>misc_utils</FILE>
1414 g_get_application_name
1415 g_set_application_name
1416 g_get_prgname
1417 g_set_prgname
1418 g_getenv
1419 g_setenv
1420 g_unsetenv
1421 g_listenv
1422 g_get_user_name
1423 g_get_real_name
1424 g_get_user_cache_dir
1425 g_get_user_data_dir
1426 g_get_user_config_dir
1427 GUserDirectory
1428 g_get_user_special_dir
1429 g_get_system_data_dirs
1430 g_get_system_config_dirs
1431
1432 <SUBSECTION>
1433 g_get_host_name
1434 g_get_home_dir
1435 g_get_tmp_dir
1436 g_get_current_dir
1437 g_basename
1438 g_dirname
1439 g_path_is_absolute
1440 g_path_skip_root
1441 g_path_get_basename
1442 g_path_get_dirname
1443 g_build_filename
1444 g_build_filenamev
1445 g_build_path
1446 g_build_pathv
1447 g_format_size_for_display
1448
1449 <SUBSECTION>
1450 g_find_program_in_path
1451
1452 <SUBSECTION>
1453 g_bit_nth_lsf
1454 g_bit_nth_msf
1455 g_bit_storage
1456
1457 <SUBSECTION>
1458 g_spaced_primes_closest
1459
1460 <SUBSECTION>
1461 g_atexit
1462
1463 <SUBSECTION>
1464 g_parse_debug_string
1465 GDebugKey
1466
1467 <SUBSECTION>
1468 GVoidFunc
1469 GFreeFunc
1470
1471 <SUBSECTION>
1472 g_qsort_with_data
1473
1474 <SUBSECTION>
1475 g_nullify_pointer
1476
1477 <SUBSECTION Private>
1478 G_NATIVE_ATEXIT
1479 g_ATEXIT
1480 g_win32_get_system_data_dirs_for_module
1481 ATEXIT
1482
1483 </SECTION>
1484
1485 <SECTION>
1486 <TITLE>Lexical Scanner</TITLE>
1487 <FILE>scanner</FILE>
1488 GScanner
1489 GScannerConfig
1490 g_scanner_new
1491 g_scanner_destroy
1492
1493 <SUBSECTION>
1494 g_scanner_input_file
1495 g_scanner_sync_file_offset
1496 g_scanner_input_text
1497 g_scanner_peek_next_token
1498 g_scanner_get_next_token
1499 g_scanner_eof
1500
1501 <SUBSECTION>
1502 g_scanner_cur_line
1503 g_scanner_cur_position
1504 g_scanner_cur_token
1505 g_scanner_cur_value
1506
1507 <SUBSECTION>
1508 g_scanner_set_scope
1509 g_scanner_scope_add_symbol
1510 g_scanner_scope_foreach_symbol
1511 g_scanner_scope_lookup_symbol
1512 g_scanner_scope_remove_symbol
1513 g_scanner_add_symbol
1514 g_scanner_remove_symbol
1515 g_scanner_foreach_symbol
1516
1517 <SUBSECTION>
1518 g_scanner_freeze_symbol_table
1519 g_scanner_thaw_symbol_table
1520 g_scanner_lookup_symbol
1521
1522 <SUBSECTION>
1523 g_scanner_warn
1524 g_scanner_error
1525 g_scanner_unexp_token
1526 GScannerMsgFunc
1527
1528 <SUBSECTION>
1529 G_CSET_a_2_z
1530 G_CSET_A_2_Z
1531 G_CSET_DIGITS
1532 G_CSET_LATINC
1533 G_CSET_LATINS
1534 GTokenType
1535 GTokenValue
1536 GErrorType
1537
1538 </SECTION>
1539
1540 <SECTION>
1541 <TITLE>Key-value file parser</TITLE>
1542 <FILE>keyfile</FILE>
1543 GKeyFile
1544 G_KEY_FILE_ERROR
1545 GKeyFileError
1546 GKeyFileFlags
1547
1548 <SUBSECTION>
1549 g_key_file_new
1550 g_key_file_free
1551 g_key_file_set_list_separator
1552 g_key_file_load_from_file
1553 g_key_file_load_from_data
1554 g_key_file_load_from_data_dirs
1555 g_key_file_load_from_dirs
1556 g_key_file_to_data
1557 g_key_file_get_start_group
1558 g_key_file_get_groups
1559 g_key_file_get_keys
1560 g_key_file_has_group
1561 g_key_file_has_key
1562
1563 <SUBSECTION>
1564 g_key_file_get_value
1565 g_key_file_get_string
1566 g_key_file_get_locale_string
1567 g_key_file_get_boolean
1568 g_key_file_get_integer
1569 g_key_file_get_double
1570 g_key_file_get_string_list
1571 g_key_file_get_locale_string_list
1572 g_key_file_get_boolean_list
1573 g_key_file_get_integer_list
1574 g_key_file_get_double_list
1575 g_key_file_get_comment
1576
1577 <SUBSECTION>
1578 g_key_file_set_value
1579 g_key_file_set_string
1580 g_key_file_set_locale_string
1581 g_key_file_set_boolean
1582 g_key_file_set_integer
1583 g_key_file_set_double
1584 g_key_file_set_string_list
1585 g_key_file_set_locale_string_list
1586 g_key_file_set_boolean_list
1587 g_key_file_set_integer_list
1588 g_key_file_set_double_list
1589 g_key_file_set_comment
1590 g_key_file_remove_group
1591 g_key_file_remove_key
1592 g_key_file_remove_comment
1593
1594 <SUBSECTION>
1595 G_KEY_FILE_DESKTOP_GROUP
1596 G_KEY_FILE_DESKTOP_KEY_TYPE
1597 G_KEY_FILE_DESKTOP_KEY_VERSION
1598 G_KEY_FILE_DESKTOP_KEY_NAME
1599 G_KEY_FILE_DESKTOP_KEY_GENERIC_NAME
1600 G_KEY_FILE_DESKTOP_KEY_NO_DISPLAY
1601 G_KEY_FILE_DESKTOP_KEY_COMMENT
1602 G_KEY_FILE_DESKTOP_KEY_ICON
1603 G_KEY_FILE_DESKTOP_KEY_HIDDEN
1604 G_KEY_FILE_DESKTOP_KEY_ONLY_SHOW_IN
1605 G_KEY_FILE_DESKTOP_KEY_NOT_SHOW_IN
1606 G_KEY_FILE_DESKTOP_KEY_TRY_EXEC
1607 G_KEY_FILE_DESKTOP_KEY_EXEC
1608 G_KEY_FILE_DESKTOP_KEY_PATH
1609 G_KEY_FILE_DESKTOP_KEY_TERMINAL
1610 G_KEY_FILE_DESKTOP_KEY_MIME_TYPE
1611 G_KEY_FILE_DESKTOP_KEY_CATEGORIES
1612 G_KEY_FILE_DESKTOP_KEY_STARTUP_NOTIFY
1613 G_KEY_FILE_DESKTOP_KEY_STARTUP_WM_CLASS
1614 G_KEY_FILE_DESKTOP_KEY_URL
1615 G_KEY_FILE_DESKTOP_TYPE_APPLICATION
1616 G_KEY_FILE_DESKTOP_TYPE_LINK
1617 G_KEY_FILE_DESKTOP_TYPE_DIRECTORY
1618
1619 <SUBSECTION Private>
1620 g_key_file_error_quark
1621 </SECTION>
1622
1623 <SECTION>
1624 <TITLE>Bookmark file parser</TITLE>
1625 <FILE>bookmarkfile</FILE>
1626 GBookmarkFile
1627 G_BOOKMARK_FILE_ERROR
1628 GBookmarkFileError
1629 g_bookmark_file_new
1630 g_bookmark_file_free
1631 g_bookmark_file_load_from_file
1632 g_bookmark_file_load_from_data
1633 g_bookmark_file_load_from_data_dirs
1634 g_bookmark_file_to_data
1635 g_bookmark_file_to_file
1636 g_bookmark_file_has_item
1637 g_bookmark_file_has_group
1638 g_bookmark_file_has_application
1639 g_bookmark_file_get_size
1640 g_bookmark_file_get_uris G_GNUC_MALLOC
1641
1642 <SUBSECTION>
1643 g_bookmark_file_get_title
1644 g_bookmark_file_get_description
1645 g_bookmark_file_get_mime_type
1646 g_bookmark_file_get_is_private
1647 g_bookmark_file_get_icon
1648 g_bookmark_file_get_added
1649 g_bookmark_file_get_modified
1650 g_bookmark_file_get_visited
1651 g_bookmark_file_get_groups
1652 g_bookmark_file_get_applications
1653 g_bookmark_file_get_app_info
1654
1655 <SUBSECTION>
1656 g_bookmark_file_set_title
1657 g_bookmark_file_set_description
1658 g_bookmark_file_set_mime_type
1659 g_bookmark_file_set_is_private
1660 g_bookmark_file_set_icon
1661 g_bookmark_file_set_added
1662 g_bookmark_file_set_groups
1663 g_bookmark_file_set_modified
1664 g_bookmark_file_set_visited
1665 g_bookmark_file_set_app_info
1666 g_bookmark_file_add_group
1667 g_bookmark_file_add_application
1668 g_bookmark_file_remove_group
1669 g_bookmark_file_remove_application
1670 g_bookmark_file_remove_item
1671 g_bookmark_file_move_item
1672
1673 <SUBSECTION Private>
1674 g_bookmark_file_error_quark
1675 </SECTION>
1676
1677 <SECTION>
1678 <TITLE>Dynamic Loading of Modules</TITLE>
1679 <FILE>modules</FILE>
1680 <INCLUDE>gmodule.h</INCLUDE>
1681 GModule
1682 g_module_supported
1683 g_module_build_path
1684 g_module_open
1685 GModuleFlags
1686 g_module_symbol
1687 g_module_name
1688 g_module_make_resident
1689 g_module_close
1690 g_module_error
1691 <SUBSECTION>
1692 GModuleCheckInit
1693 GModuleUnload
1694 G_MODULE_SUFFIX
1695 G_MODULE_EXPORT
1696 G_MODULE_IMPORT
1697 </SECTION>
1698
1699 <SECTION>
1700 <TITLE>Automatic String Completion</TITLE>
1701 <FILE>completion</FILE>
1702 GCompletion
1703 g_completion_new
1704 GCompletionFunc
1705 g_completion_add_items
1706 g_completion_remove_items
1707 g_completion_clear_items
1708 g_completion_complete
1709 g_completion_complete_utf8
1710 g_completion_set_compare
1711 GCompletionStrncmpFunc
1712 g_completion_free
1713 </SECTION>
1714
1715 <SECTION>
1716 <TITLE>Windows Compatibility Functions</TITLE>
1717 <FILE>windows</FILE>
1718 MAXPATHLEN
1719
1720 g_win32_error_message
1721 g_win32_getlocale
1722 g_win32_get_package_installation_directory
1723 g_win32_get_package_installation_directory_of_module
1724 g_win32_get_package_installation_subdirectory
1725 g_win32_get_windows_version
1726 g_win32_locale_filename_from_utf8
1727 G_WIN32_DLLMAIN_FOR_DLL_NAME
1728 G_WIN32_HAVE_WIDECHAR_API
1729 G_WIN32_IS_NT_BASED
1730
1731 <SUBSECTION Private>
1732 g_win32_ftruncate
1733
1734 </SECTION>
1735
1736 # Data Structures
1737
1738 <SECTION>
1739 <TITLE>Memory Chunks</TITLE>
1740 <FILE>memory_chunks</FILE>
1741 GMemChunk
1742 G_ALLOC_AND_FREE
1743 G_ALLOC_ONLY
1744
1745 <SUBSECTION>
1746 g_mem_chunk_new
1747 g_mem_chunk_alloc
1748 g_mem_chunk_alloc0
1749 g_mem_chunk_free
1750 g_mem_chunk_destroy
1751
1752 <SUBSECTION>
1753 g_mem_chunk_create
1754 g_chunk_new
1755 g_chunk_new0
1756 g_chunk_free
1757
1758 <SUBSECTION>
1759 g_mem_chunk_reset
1760 g_mem_chunk_clean
1761 g_blow_chunks
1762
1763 <SUBSECTION>
1764 g_mem_chunk_info
1765 g_mem_chunk_print
1766
1767 </SECTION>
1768
1769 <SECTION>
1770 <TITLE>Memory Slices</TITLE>
1771 <FILE>memory_slices</FILE>
1772 g_slice_alloc
1773 g_slice_alloc0
1774 g_slice_copy
1775 g_slice_free1
1776 g_slice_free_chain_with_offset
1777
1778 <SUBSECTION>
1779 g_slice_new
1780 g_slice_new0
1781 g_slice_dup
1782 g_slice_free
1783 g_slice_free_chain
1784
1785 <SUBSECTION Private>
1786 GSliceConfig
1787 g_slice_set_config
1788 g_slice_get_config
1789 g_slice_get_config_state
1790 </SECTION>
1791
1792 <SECTION>
1793 <TITLE>Doubly-Linked Lists</TITLE>
1794 <FILE>linked_lists_double</FILE>
1795 GList
1796
1797 <SUBSECTION>
1798 g_list_append
1799 g_list_prepend
1800 g_list_insert
1801 g_list_insert_before
1802 g_list_insert_sorted
1803 g_list_remove
1804 g_list_remove_link
1805 g_list_delete_link
1806 g_list_remove_all
1807 g_list_free
1808
1809 <SUBSECTION>
1810 g_list_alloc
1811 g_list_free_1
1812 g_list_free1
1813
1814 <SUBSECTION>
1815 g_list_length
1816 g_list_copy
1817 g_list_reverse
1818 g_list_sort
1819 GCompareFunc
1820 g_list_insert_sorted_with_data
1821 g_list_sort_with_data
1822 GCompareDataFunc
1823 g_list_concat
1824 g_list_foreach
1825 GFunc
1826
1827 <SUBSECTION>
1828 g_list_first
1829 g_list_last
1830 g_list_previous
1831 g_list_next
1832 g_list_nth
1833 g_list_nth_data
1834 g_list_nth_prev
1835
1836 <SUBSECTION>
1837 g_list_find
1838 g_list_find_custom
1839 g_list_position
1840 g_list_index
1841
1842 <SUBSECTION>
1843 g_list_push_allocator
1844 g_list_pop_allocator
1845 </SECTION>
1846
1847 <SECTION>
1848 <TITLE>Singly-Linked Lists</TITLE>
1849 <FILE>linked_lists_single</FILE>
1850 GSList
1851
1852 <SUBSECTION>
1853 g_slist_alloc
1854 g_slist_append
1855 g_slist_prepend
1856 g_slist_insert
1857 g_slist_insert_before
1858 g_slist_insert_sorted
1859 g_slist_remove
1860 g_slist_remove_link
1861 g_slist_delete_link
1862 g_slist_remove_all
1863 g_slist_free
1864 g_slist_free_1
1865 g_slist_free1
1866
1867 <SUBSECTION>
1868 g_slist_length
1869 g_slist_copy
1870 g_slist_reverse
1871 g_slist_insert_sorted_with_data
1872 g_slist_sort
1873 g_slist_sort_with_data
1874 g_slist_concat
1875 g_slist_foreach
1876
1877 <SUBSECTION>
1878 g_slist_last
1879 g_slist_next
1880 g_slist_nth
1881 g_slist_nth_data
1882
1883 <SUBSECTION>
1884 g_slist_find
1885 g_slist_find_custom
1886 g_slist_position
1887 g_slist_index
1888
1889 <SUBSECTION>
1890 g_slist_push_allocator
1891 g_slist_pop_allocator
1892 </SECTION>
1893
1894 <SECTION>
1895 <TITLE>Double-ended Queues</TITLE>
1896 <FILE>queue</FILE>
1897
1898 GQueue
1899 g_queue_new
1900 g_queue_free
1901 G_QUEUE_INIT
1902 g_queue_init
1903 g_queue_clear
1904 g_queue_is_empty
1905 g_queue_get_length
1906 g_queue_reverse
1907 g_queue_copy
1908 g_queue_foreach
1909 g_queue_find
1910 g_queue_find_custom
1911 g_queue_sort
1912 g_queue_push_head
1913 g_queue_push_tail
1914 g_queue_push_nth
1915 g_queue_pop_head
1916 g_queue_pop_tail
1917 g_queue_pop_nth
1918 g_queue_peek_head
1919 g_queue_peek_tail
1920 g_queue_peek_nth
1921 g_queue_index
1922 g_queue_remove
1923 g_queue_remove_all
1924 g_queue_insert_before
1925 g_queue_insert_after
1926 g_queue_insert_sorted
1927 g_queue_push_head_link
1928 g_queue_push_tail_link
1929 g_queue_push_nth_link
1930 g_queue_pop_head_link
1931 g_queue_pop_tail_link
1932 g_queue_pop_nth_link
1933 g_queue_peek_head_link
1934 g_queue_peek_tail_link
1935 g_queue_peek_nth_link
1936 g_queue_link_index
1937 g_queue_unlink
1938 g_queue_delete_link
1939 </SECTION>
1940
1941 <SECTION>
1942 <TITLE>Sequences</TITLE>
1943 <FILE>sequence</FILE>
1944
1945 GSequence
1946 GSequenceIter
1947 GSequenceIterCompareFunc
1948
1949 <SUBSECTION>
1950 g_sequence_new
1951 g_sequence_free
1952 g_sequence_get_length
1953 g_sequence_foreach
1954 g_sequence_foreach_range
1955 g_sequence_sort
1956 g_sequence_sort_iter
1957
1958 <SUBSECTION>
1959 g_sequence_get_begin_iter
1960 g_sequence_get_end_iter
1961 g_sequence_get_iter_at_pos
1962 g_sequence_append
1963 g_sequence_prepend
1964 g_sequence_insert_before
1965 g_sequence_move
1966 g_sequence_swap
1967 g_sequence_insert_sorted
1968 g_sequence_insert_sorted_iter
1969 g_sequence_sort_changed
1970 g_sequence_sort_changed_iter
1971 g_sequence_remove
1972 g_sequence_remove_range
1973 g_sequence_move_range
1974 g_sequence_search
1975 g_sequence_search_iter
1976
1977 <SUBSECTION>
1978 g_sequence_get
1979 g_sequence_set
1980
1981 <SUBSECTION>
1982 g_sequence_iter_is_begin
1983 g_sequence_iter_is_end
1984 g_sequence_iter_next
1985 g_sequence_iter_prev
1986 g_sequence_iter_get_position
1987 g_sequence_iter_move
1988 g_sequence_iter_get_sequence
1989
1990 <SUBSECTION>
1991 g_sequence_iter_compare
1992 g_sequence_range_get_midpoint
1993 </SECTION>
1994
1995 <SECTION>
1996 <TITLE>Trash Stacks</TITLE>
1997 <FILE>trash_stack</FILE>
1998 GTrashStack
1999
2000 g_trash_stack_push
2001 g_trash_stack_pop
2002 g_trash_stack_peek
2003 g_trash_stack_height
2004 </SECTION>
2005
2006 <SECTION>
2007 <TITLE>Hash Tables</TITLE>
2008 <FILE>hash_tables</FILE>
2009 GHashTable
2010 g_hash_table_new
2011 g_hash_table_new_full
2012 GHashFunc
2013 GEqualFunc
2014 g_hash_table_insert
2015 g_hash_table_replace
2016 g_hash_table_size
2017 g_hash_table_lookup
2018 g_hash_table_lookup_extended
2019 g_hash_table_foreach
2020 g_hash_table_find
2021 GHFunc
2022 g_hash_table_remove
2023 g_hash_table_steal
2024 g_hash_table_foreach_remove
2025 g_hash_table_foreach_steal
2026 g_hash_table_remove_all
2027 g_hash_table_steal_all
2028 g_hash_table_get_keys
2029 g_hash_table_get_values
2030 GHRFunc
2031 g_hash_table_freeze
2032 g_hash_table_thaw
2033 g_hash_table_destroy
2034 g_hash_table_ref
2035 g_hash_table_unref
2036 GHashTableIter
2037 g_hash_table_iter_init
2038 g_hash_table_iter_next
2039 g_hash_table_iter_get_hash_table
2040 g_hash_table_iter_remove
2041 g_hash_table_iter_steal
2042
2043 <SUBSECTION>
2044 g_direct_equal
2045 g_direct_hash
2046 g_int_equal
2047 g_int_hash
2048 g_int64_equal
2049 g_int64_hash
2050 g_double_equal
2051 g_double_hash
2052 g_str_equal
2053 g_str_hash
2054
2055 </SECTION>
2056
2057 <SECTION>
2058 <TITLE>Strings</TITLE>
2059 <FILE>strings</FILE>
2060 GString
2061 g_string_new
2062 g_string_new_len
2063 g_string_sized_new
2064 g_string_assign
2065 g_string_sprintf
2066 g_string_sprintfa
2067 g_string_vprintf
2068 g_string_append_vprintf
2069 g_string_printf
2070 g_string_append_printf
2071 g_string_append
2072 g_string_append_c
2073 g_string_append_unichar
2074 g_string_append_len
2075 g_string_append_uri_escaped
2076 g_string_prepend
2077 g_string_prepend_c
2078 g_string_prepend_unichar
2079 g_string_prepend_len
2080 g_string_insert
2081 g_string_insert_c
2082 g_string_insert_unichar
2083 g_string_insert_len
2084 g_string_overwrite
2085 g_string_overwrite_len
2086 g_string_erase
2087 g_string_truncate
2088 g_string_set_size
2089 g_string_free
2090
2091 <SUBSECTION>
2092 g_string_up
2093 g_string_down
2094
2095 <SUBSECTION>
2096 g_string_hash
2097 g_string_equal
2098
2099 </SECTION>
2100
2101 <SECTION>
2102 <TITLE>String Chunks</TITLE>
2103 <FILE>string_chunks</FILE>
2104 GStringChunk
2105 g_string_chunk_new
2106 g_string_chunk_insert
2107 g_string_chunk_insert_const
2108 g_string_chunk_insert_len
2109 g_string_chunk_clear
2110 g_string_chunk_free
2111
2112 </SECTION>
2113
2114 <SECTION>
2115 <TITLE>Arrays</TITLE>
2116 <FILE>arrays</FILE>
2117 GArray
2118 g_array_new
2119 g_array_sized_new
2120 g_array_ref
2121 g_array_unref
2122 g_array_get_element_size
2123 g_array_append_val
2124 g_array_append_vals
2125 g_array_prepend_val
2126 g_array_prepend_vals
2127 g_array_insert_val
2128 g_array_insert_vals
2129 g_array_remove_index
2130 g_array_remove_index_fast
2131 g_array_remove_range
2132 g_array_sort
2133 g_array_sort_with_data
2134 g_array_index
2135 g_array_set_size
2136 g_array_free
2137 </SECTION>
2138
2139 <SECTION>
2140 <TITLE>Pointer Arrays</TITLE>
2141 <FILE>arrays_pointer</FILE>
2142 GPtrArray
2143 g_ptr_array_new
2144 g_ptr_array_sized_new
2145 g_ptr_array_new_with_free_func
2146 g_ptr_array_set_free_func
2147 g_ptr_array_ref
2148 g_ptr_array_unref
2149 g_ptr_array_add
2150 g_ptr_array_remove
2151 g_ptr_array_remove_index
2152 g_ptr_array_remove_fast
2153 g_ptr_array_remove_index_fast
2154 g_ptr_array_remove_range
2155 g_ptr_array_sort
2156 g_ptr_array_sort_with_data
2157 g_ptr_array_set_size
2158 g_ptr_array_index
2159 g_ptr_array_free
2160 g_ptr_array_foreach
2161
2162 </SECTION>
2163
2164 <SECTION>
2165 <TITLE>Byte Arrays</TITLE>
2166 <FILE>arrays_byte</FILE>
2167 GByteArray
2168 g_byte_array_new
2169 g_byte_array_sized_new
2170 g_byte_array_ref
2171 g_byte_array_unref
2172 g_byte_array_append
2173 g_byte_array_prepend
2174 g_byte_array_remove_index
2175 g_byte_array_remove_index_fast
2176 g_byte_array_remove_range
2177 g_byte_array_sort
2178 g_byte_array_sort_with_data
2179 g_byte_array_set_size
2180 g_byte_array_free
2181
2182 </SECTION>
2183
2184 <SECTION>
2185 <TITLE>Balanced Binary Trees</TITLE>
2186 <FILE>trees-binary</FILE>
2187 GTree
2188 g_tree_new
2189 g_tree_new_with_data
2190 g_tree_new_full
2191 g_tree_insert
2192 g_tree_replace
2193 g_tree_nnodes
2194 g_tree_height
2195 g_tree_lookup
2196 g_tree_lookup_extended
2197 g_tree_foreach
2198 g_tree_traverse
2199 GTraverseFunc
2200 GTraverseType
2201 g_tree_search
2202 g_tree_remove
2203 g_tree_steal
2204 g_tree_destroy
2205 </SECTION>
2206
2207 <SECTION>
2208 <TITLE>N-ary Trees</TITLE>
2209 <FILE>trees-nary</FILE>
2210 GNode
2211 g_node_new
2212 g_node_copy
2213 GCopyFunc
2214 g_node_copy_deep
2215
2216 <SUBSECTION>
2217 g_node_insert
2218 g_node_insert_before
2219 g_node_insert_after
2220 g_node_append
2221 g_node_prepend
2222
2223 <SUBSECTION>
2224 g_node_insert_data
2225 g_node_insert_data_before
2226 g_node_append_data
2227 g_node_prepend_data
2228
2229 <SUBSECTION>
2230 g_node_reverse_children
2231 g_node_traverse
2232 GTraverseFlags
2233 GNodeTraverseFunc
2234 g_node_children_foreach
2235 GNodeForeachFunc
2236
2237 <SUBSECTION>
2238 g_node_get_root
2239 g_node_find
2240 g_node_find_child
2241 g_node_child_index
2242 g_node_child_position
2243 g_node_first_child
2244 g_node_last_child
2245 g_node_nth_child
2246 g_node_first_sibling
2247 g_node_next_sibling
2248 g_node_prev_sibling
2249 g_node_last_sibling
2250
2251 <SUBSECTION>
2252 G_NODE_IS_LEAF
2253 G_NODE_IS_ROOT
2254 g_node_depth
2255 g_node_n_nodes
2256 g_node_n_children
2257 g_node_is_ancestor
2258 g_node_max_height
2259
2260 <SUBSECTION>
2261 g_node_unlink
2262 g_node_destroy
2263
2264 <SUBSECTION>
2265 g_node_push_allocator
2266 g_node_pop_allocator
2267 </SECTION>
2268
2269
2270 <SECTION>
2271 <TITLE>Quarks</TITLE>
2272 <FILE>quarks</FILE>
2273 GQuark
2274 g_quark_from_string
2275 g_quark_from_static_string
2276 g_quark_to_string
2277 g_quark_try_string
2278 g_intern_string
2279 g_intern_static_string
2280 </SECTION>
2281
2282 <SECTION>
2283 <TITLE>Keyed Data Lists</TITLE>
2284 <FILE>datalist</FILE>
2285 GData
2286 g_datalist_init
2287
2288 <SUBSECTION>
2289 g_datalist_id_set_data
2290 g_datalist_id_set_data_full
2291 g_datalist_id_get_data
2292 g_datalist_id_remove_data
2293 g_datalist_id_remove_no_notify
2294
2295 <SUBSECTION>
2296 g_datalist_set_data
2297 g_datalist_set_data_full
2298 g_datalist_get_data
2299 g_datalist_remove_data
2300 g_datalist_remove_no_notify
2301
2302 <SUBSECTION>
2303 g_datalist_foreach
2304 g_datalist_clear
2305 g_datalist_set_flags
2306 g_datalist_unset_flags
2307 g_datalist_get_flags
2308 G_DATALIST_FLAGS_MASK
2309 </SECTION>
2310
2311
2312 <SECTION>
2313 <TITLE>Datasets</TITLE>
2314 <FILE>datasets</FILE>
2315 g_dataset_id_set_data
2316 g_dataset_id_set_data_full
2317 GDestroyNotify
2318 g_dataset_id_get_data
2319 g_dataset_id_remove_data
2320 g_dataset_id_remove_no_notify
2321
2322 <SUBSECTION>
2323 g_dataset_set_data
2324 g_dataset_set_data_full
2325 g_dataset_get_data
2326 g_dataset_remove_data
2327 g_dataset_remove_no_notify
2328
2329 <SUBSECTION>
2330 g_dataset_foreach
2331 GDataForeachFunc
2332 g_dataset_destroy
2333
2334 </SECTION>
2335
2336 <SECTION>
2337 <TITLE>Relations and Tuples</TITLE>
2338 <FILE>relations</FILE>
2339 GRelation
2340 g_relation_new
2341 g_relation_index
2342 g_relation_insert
2343 g_relation_exists
2344 g_relation_count
2345 g_relation_select
2346 g_relation_delete
2347 g_relation_destroy
2348
2349 <SUBSECTION>
2350 g_relation_print
2351
2352 <SUBSECTION>
2353 GTuples
2354 g_tuples_destroy
2355 g_tuples_index
2356 </SECTION>
2357
2358 <SECTION>
2359 <TITLE>Caches</TITLE>
2360 <FILE>caches</FILE>
2361 GCache
2362 g_cache_new
2363 g_cache_insert
2364 g_cache_remove
2365 g_cache_destroy
2366
2367 <SUBSECTION>
2368 g_cache_key_foreach
2369 g_cache_value_foreach
2370
2371 <SUBSECTION>
2372 GCacheDestroyFunc
2373 GCacheDupFunc
2374 GCacheNewFunc
2375 </SECTION>
2376
2377 <SECTION>
2378 <TITLE>Memory Allocators</TITLE>
2379 <FILE>allocators</FILE>
2380 GAllocator
2381 g_allocator_new
2382 g_allocator_free
2383
2384 <SUBSECTION Private>
2385 G_ALLOCATOR_LIST
2386 G_ALLOCATOR_NODE
2387 G_ALLOCATOR_SLIST
2388 </SECTION>
2389
2390 <SECTION>
2391 <TITLE>Random Numbers</TITLE>
2392 <FILE>random_numbers</FILE>
2393 GRand
2394 g_rand_new_with_seed
2395 g_rand_new_with_seed_array
2396 g_rand_new
2397 g_rand_copy
2398 g_rand_free
2399 g_rand_set_seed
2400 g_rand_set_seed_array
2401 g_rand_boolean
2402 g_rand_int
2403 g_rand_int_range
2404 g_rand_double
2405 g_rand_double_range
2406 g_random_set_seed
2407 g_random_boolean
2408 g_random_int
2409 g_random_int_range
2410 g_random_double
2411 g_random_double_range
2412 </SECTION>
2413
2414 <SECTION>
2415 <TITLE>Character Set Conversion</TITLE>
2416 <FILE>conversions</FILE>
2417 g_convert
2418 g_convert_with_fallback
2419 GIConv
2420 g_convert_with_iconv
2421 G_CONVERT_ERROR
2422 g_iconv_open
2423 g_iconv
2424 g_iconv_close
2425 g_locale_to_utf8
2426 g_filename_to_utf8
2427 g_filename_from_utf8
2428 g_filename_from_uri
2429 g_filename_to_uri
2430 g_get_filename_charsets
2431 g_filename_display_name
2432 g_filename_display_basename
2433 g_uri_list_extract_uris
2434 g_locale_from_utf8
2435 GConvertError
2436
2437 <SUBSECTION>
2438 g_get_charset
2439
2440 <SUBSECTION Private>
2441 g_convert_error_quark
2442 </SECTION>
2443
2444 <SECTION>
2445 <TITLE>Unicode Manipulation</TITLE>
2446 <FILE>unicode</FILE>
2447 gunichar
2448 gunichar2
2449
2450 <SUBSECTION>
2451 g_unichar_validate
2452 g_unichar_isalnum
2453 g_unichar_isalpha
2454 g_unichar_iscntrl
2455 g_unichar_isdefined
2456 g_unichar_isdigit
2457 g_unichar_isgraph
2458 g_unichar_islower
2459 g_unichar_ismark
2460 g_unichar_isprint
2461 g_unichar_ispunct
2462 g_unichar_isspace
2463 g_unichar_istitle
2464 g_unichar_isupper
2465 g_unichar_isxdigit
2466 g_unichar_iswide
2467 g_unichar_iswide_cjk
2468 g_unichar_iszerowidth
2469 g_unichar_toupper
2470 g_unichar_tolower
2471 g_unichar_totitle
2472 g_unichar_digit_value
2473 g_unichar_xdigit_value
2474 GUnicodeType
2475 g_unichar_type
2476 GUnicodeBreakType
2477 g_unichar_break_type
2478 g_unichar_combining_class
2479 g_unicode_canonical_ordering
2480 g_unicode_canonical_decomposition
2481 g_unichar_get_mirror_char
2482 GUnicodeScript
2483 g_unichar_get_script
2484
2485 <SUBSECTION>
2486 g_utf8_next_char
2487 g_utf8_get_char
2488 g_utf8_get_char_validated
2489 g_utf8_offset_to_pointer
2490 g_utf8_pointer_to_offset
2491 g_utf8_prev_char
2492 g_utf8_find_next_char
2493 g_utf8_find_prev_char
2494 g_utf8_strlen
2495 g_utf8_strncpy
2496 g_utf8_strchr
2497 g_utf8_strrchr
2498 g_utf8_strreverse
2499 g_utf8_validate
2500
2501 <SUBSECTION>
2502 g_utf8_strup
2503 g_utf8_strdown
2504 g_utf8_casefold
2505 g_utf8_normalize
2506 GNormalizeMode
2507 g_utf8_collate
2508 g_utf8_collate_key
2509 g_utf8_collate_key_for_filename
2510
2511 <SUBSECTION>
2512 g_utf8_to_utf16
2513 g_utf8_to_ucs4
2514 g_utf8_to_ucs4_fast
2515 g_utf16_to_ucs4
2516 g_utf16_to_utf8
2517 g_ucs4_to_utf16
2518 g_ucs4_to_utf8
2519 g_unichar_to_utf8
2520 </SECTION>
2521
2522 <SECTION>
2523 <TITLE>I18N</TITLE>
2524 <FILE>i18n</FILE>
2525 <INCLUDE>glib.h,glib/gi18n.h</INCLUDE>
2526 Q_
2527 C_
2528 N_
2529 NC_
2530 g_dgettext
2531 g_dngettext
2532 g_dpgettext
2533 g_dpgettext2
2534 g_strip_context
2535 <SUBSECTION>
2536 g_get_language_names
2537 </SECTION>
2538
2539 <SECTION>
2540 <TITLE>Base64 Encoding</TITLE>
2541 <FILE>base64</FILE>
2542 g_base64_encode_step
2543 g_base64_encode_close
2544 g_base64_encode
2545 g_base64_decode_step
2546 g_base64_decode
2547 g_base64_decode_inplace
2548 </SECTION>
2549
2550 <SECTION>
2551 <TITLE>URI Functions</TITLE>
2552 <FILE>gurifuncs</FILE>
2553 G_URI_RESERVED_CHARS_ALLOWED_IN_PATH
2554 G_URI_RESERVED_CHARS_ALLOWED_IN_PATH_ELEMENT
2555 G_URI_RESERVED_CHARS_ALLOWED_IN_USERINFO
2556 G_URI_RESERVED_CHARS_GENERIC_DELIMITERS
2557 G_URI_RESERVED_CHARS_SUBCOMPONENT_DELIMITERS
2558 g_uri_parse_scheme
2559 g_uri_escape_string
2560 g_uri_unescape_string
2561 g_uri_unescape_segment
2562 </SECTION>
2563
2564 <SECTION>
2565 <TITLE>Data Checksums</TITLE>
2566 <FILE>checksum</FILE>
2567 GChecksumType
2568 g_checksum_type_get_length
2569 GChecksum
2570 g_checksum_new
2571 g_checksum_copy
2572 g_checksum_free
2573 g_checksum_reset
2574 g_checksum_update
2575 g_checksum_get_string
2576 g_checksum_get_digest
2577 <SUBSECTION>
2578 g_compute_checksum_for_data
2579 g_compute_checksum_for_string
2580 </SECTION>
2581
2582 <SECTION>
2583 <TITLE>Testing</TITLE>
2584 <FILE>testing</FILE>
2585 g_test_minimized_result
2586 g_test_maximized_result
2587 g_test_init
2588 g_test_quick
2589 g_test_slow
2590 g_test_thorough
2591 g_test_perf
2592 g_test_verbose
2593 g_test_quiet
2594 g_test_run
2595 g_test_add_func
2596 g_test_add_data_func
2597 g_test_add
2598
2599 g_test_message
2600 g_test_bug_base
2601 g_test_bug
2602
2603 g_test_timer_start
2604 g_test_timer_elapsed
2605 g_test_timer_last
2606
2607 g_test_queue_free
2608 g_test_queue_destroy
2609 g_test_queue_unref
2610
2611 GTestTrapFlags
2612 g_test_trap_fork
2613 g_test_trap_has_passed
2614 g_test_trap_reached_timeout
2615 g_test_trap_assert_passed
2616 g_test_trap_assert_failed
2617 g_test_trap_assert_stdout
2618 g_test_trap_assert_stdout_unmatched
2619 g_test_trap_assert_stderr
2620 g_test_trap_assert_stderr_unmatched
2621
2622 g_test_rand_bit
2623 g_test_rand_int
2624 g_test_rand_int_range
2625 g_test_rand_double
2626 g_test_rand_double_range
2627
2628 g_assert
2629 g_assert_not_reached
2630 g_assert_cmpstr
2631 g_assert_cmpint
2632 g_assert_cmpuint
2633 g_assert_cmphex
2634 g_assert_cmpfloat
2635 g_assert_no_error
2636 g_assert_error
2637
2638 GTestCase
2639 GTestSuite
2640 g_test_create_case
2641 g_test_create_suite
2642 g_test_get_root
2643 g_test_suite_add
2644 g_test_suite_add_suite
2645 g_test_run_suite
2646
2647 <SUBSECTION Private>
2648 g_test_trap_assertions
2649 g_assertion_message
2650 g_assertion_message_expr
2651 g_assertion_message_cmpstr
2652 g_assertion_message_cmpnum
2653 g_assertion_message_error
2654
2655 g_test_add_vtable
2656 GTestConfig
2657 g_test_config_vars
2658 GTestLogType
2659 GTestLogMsg
2660 GTestLogBuffer
2661
2662 g_test_log_type_name
2663 g_test_log_buffer_new
2664 g_test_log_buffer_free
2665 g_test_log_buffer_push
2666 g_test_log_buffer_pop
2667 g_test_log_msg_free
2668 </SECTION>
2669
2670
2671 <SECTION>
2672 <FILE>ghostutils</FILE>
2673 <TITLE>Hostname Utilities</TITLE>
2674 g_hostname_to_ascii
2675 g_hostname_to_unicode
2676 <SUBSECTION>
2677 g_hostname_is_non_ascii
2678 g_hostname_is_ascii_encoded
2679 <SUBSECTION>
2680 g_hostname_is_ip_address
2681 </SECTION>