Github User Fetcher 1.0.0
C Application with Server and GUI
|
Go to the source code of this file.
Macros | |
#define | g_slice_new(type) ((type*) g_slice_alloc (sizeof (type))) |
#define | g_slice_new0(type) ((type*) g_slice_alloc0 (sizeof (type))) |
#define | g_slice_dup(type, mem) |
#define | g_slice_free(type, mem) |
#define | g_slice_free_chain(type, mem_chain, next) |
Functions | |
G_BEGIN_DECLS GLIB_AVAILABLE_IN_ALL gpointer | g_slice_alloc (gsize block_size) G_GNUC_MALLOC G_GNUC_ALLOC_SIZE(1) |
GLIB_AVAILABLE_IN_ALL gpointer | g_slice_alloc0 (gsize block_size) G_GNUC_MALLOC G_GNUC_ALLOC_SIZE(1) |
GLIB_AVAILABLE_IN_ALL gpointer | g_slice_copy (gsize block_size, gconstpointer mem_block) G_GNUC_ALLOC_SIZE(1) |
GLIB_AVAILABLE_IN_ALL void | g_slice_free1 (gsize block_size, gpointer mem_block) |
GLIB_AVAILABLE_IN_ALL void | g_slice_free_chain_with_offset (gsize block_size, gpointer mem_chain, gsize next_offset) |
GLIB_DEPRECATED_IN_2_34 void | g_slice_set_config (GSliceConfig ckey, gint64 value) |
GLIB_DEPRECATED_IN_2_34 gint64 | g_slice_get_config (GSliceConfig ckey) |
GLIB_DEPRECATED_IN_2_34 gint64 * | g_slice_get_config_state (GSliceConfig ckey, gint64 address, guint *n_values) |
#define g_slice_dup | ( | type, | |
mem ) |
Definition at line 78 of file gslice.h.
#define g_slice_free | ( | type, | |
mem ) |
Definition at line 81 of file gslice.h.
Referenced by g_object_notify_queue_free().
#define g_slice_free_chain | ( | type, | |
mem_chain, | |||
next ) |
Definition at line 86 of file gslice.h.
#define g_slice_new | ( | type | ) | ((type*) g_slice_alloc (sizeof (type))) |
#define g_slice_new0 | ( | type | ) | ((type*) g_slice_alloc0 (sizeof (type))) |
Definition at line 62 of file gslice.h.
Referenced by g_object_notify_queue_freeze().
enum GSliceConfig |
Enumerator | |
---|---|
G_SLICE_CONFIG_ALWAYS_MALLOC | |
G_SLICE_CONFIG_BYPASS_MAGAZINES | |
G_SLICE_CONFIG_WORKING_SET_MSECS | |
G_SLICE_CONFIG_COLOR_INCREMENT | |
G_SLICE_CONFIG_CHUNK_SIZES | |
G_SLICE_CONFIG_CONTENTION_COUNTER |
G_BEGIN_DECLS GLIB_AVAILABLE_IN_ALL gpointer g_slice_alloc | ( | gsize | block_size | ) |
GLIB_AVAILABLE_IN_ALL gpointer g_slice_alloc0 | ( | gsize | block_size | ) |
GLIB_AVAILABLE_IN_ALL gpointer g_slice_copy | ( | gsize | block_size, |
gconstpointer | mem_block ) |
GLIB_AVAILABLE_IN_ALL void g_slice_free1 | ( | gsize | block_size, |
gpointer | mem_block ) |
GLIB_AVAILABLE_IN_ALL void g_slice_free_chain_with_offset | ( | gsize | block_size, |
gpointer | mem_chain, | ||
gsize | next_offset ) |
GLIB_DEPRECATED_IN_2_34 gint64 g_slice_get_config | ( | GSliceConfig | ckey | ) |
GLIB_DEPRECATED_IN_2_34 gint64 * g_slice_get_config_state | ( | GSliceConfig | ckey, |
gint64 | address, | ||
guint * | n_values ) |
GLIB_DEPRECATED_IN_2_34 void g_slice_set_config | ( | GSliceConfig | ckey, |
gint64 | value ) |