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