/src/rauc/subprojects/glib-2.76.5/glib/gmem.h
Line | Count | Source (jump to first uncovered line) |
1 | | /* GLIB - Library of useful routines for C programming |
2 | | * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald |
3 | | * |
4 | | * SPDX-License-Identifier: LGPL-2.1-or-later |
5 | | * |
6 | | * This library is free software; you can redistribute it and/or |
7 | | * modify it under the terms of the GNU Lesser General Public |
8 | | * License as published by the Free Software Foundation; either |
9 | | * version 2.1 of the License, or (at your option) any later version. |
10 | | * |
11 | | * This library is distributed in the hope that it will be useful, |
12 | | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 | | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
14 | | * Lesser General Public License for more details. |
15 | | * |
16 | | * You should have received a copy of the GNU Lesser General Public |
17 | | * License along with this library; if not, see <http://www.gnu.org/licenses/>. |
18 | | */ |
19 | | |
20 | | /* |
21 | | * Modified by the GLib Team and others 1997-2000. See the AUTHORS |
22 | | * file for a list of people on the GLib Team. See the ChangeLog |
23 | | * files for a list of changes. These files are distributed with |
24 | | * GLib at ftp://ftp.gtk.org/pub/gtk/. |
25 | | */ |
26 | | |
27 | | #ifndef __G_MEM_H__ |
28 | | #define __G_MEM_H__ |
29 | | |
30 | | #if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) |
31 | | #error "Only <glib.h> can be included directly." |
32 | | #endif |
33 | | |
34 | | #include <glib/gutils.h> |
35 | | #include <glib/glib-typeof.h> |
36 | | |
37 | | G_BEGIN_DECLS |
38 | | |
39 | | /** |
40 | | * GMemVTable: |
41 | | * @malloc: function to use for allocating memory. |
42 | | * @realloc: function to use for reallocating memory. |
43 | | * @free: function to use to free memory. |
44 | | * @calloc: function to use for allocating zero-filled memory. |
45 | | * @try_malloc: function to use for allocating memory without a default error handler. |
46 | | * @try_realloc: function to use for reallocating memory without a default error handler. |
47 | | * |
48 | | * A set of functions used to perform memory allocation. The same #GMemVTable must |
49 | | * be used for all allocations in the same program; a call to g_mem_set_vtable(), |
50 | | * if it exists, should be prior to any use of GLib. |
51 | | * |
52 | | * This functions related to this has been deprecated in 2.46, and no longer work. |
53 | | */ |
54 | | typedef struct _GMemVTable GMemVTable; |
55 | | |
56 | | |
57 | | #if GLIB_SIZEOF_VOID_P > GLIB_SIZEOF_LONG |
58 | | /** |
59 | | * G_MEM_ALIGN: |
60 | | * |
61 | | * Indicates the number of bytes to which memory will be aligned on the |
62 | | * current platform. |
63 | | */ |
64 | | # define G_MEM_ALIGN GLIB_SIZEOF_VOID_P |
65 | | #else /* GLIB_SIZEOF_VOID_P <= GLIB_SIZEOF_LONG */ |
66 | | # define G_MEM_ALIGN GLIB_SIZEOF_LONG |
67 | | #endif /* GLIB_SIZEOF_VOID_P <= GLIB_SIZEOF_LONG */ |
68 | | |
69 | | |
70 | | /* Memory allocation functions |
71 | | */ |
72 | | |
73 | | GLIB_AVAILABLE_IN_ALL |
74 | | void g_free (gpointer mem); |
75 | | GLIB_AVAILABLE_IN_2_76 |
76 | | void g_free_sized (gpointer mem, |
77 | | size_t size); |
78 | | |
79 | | GLIB_AVAILABLE_IN_2_34 |
80 | | void g_clear_pointer (gpointer *pp, |
81 | | GDestroyNotify destroy); |
82 | | |
83 | | GLIB_AVAILABLE_IN_ALL |
84 | | gpointer g_malloc (gsize n_bytes) G_GNUC_MALLOC G_GNUC_ALLOC_SIZE(1); |
85 | | GLIB_AVAILABLE_IN_ALL |
86 | | gpointer g_malloc0 (gsize n_bytes) G_GNUC_MALLOC G_GNUC_ALLOC_SIZE(1); |
87 | | GLIB_AVAILABLE_IN_ALL |
88 | | gpointer g_realloc (gpointer mem, |
89 | | gsize n_bytes) G_GNUC_WARN_UNUSED_RESULT; |
90 | | GLIB_AVAILABLE_IN_ALL |
91 | | gpointer g_try_malloc (gsize n_bytes) G_GNUC_MALLOC G_GNUC_ALLOC_SIZE(1); |
92 | | GLIB_AVAILABLE_IN_ALL |
93 | | gpointer g_try_malloc0 (gsize n_bytes) G_GNUC_MALLOC G_GNUC_ALLOC_SIZE(1); |
94 | | GLIB_AVAILABLE_IN_ALL |
95 | | gpointer g_try_realloc (gpointer mem, |
96 | | gsize n_bytes) G_GNUC_WARN_UNUSED_RESULT; |
97 | | |
98 | | GLIB_AVAILABLE_IN_ALL |
99 | | gpointer g_malloc_n (gsize n_blocks, |
100 | | gsize n_block_bytes) G_GNUC_MALLOC G_GNUC_ALLOC_SIZE2(1,2); |
101 | | GLIB_AVAILABLE_IN_ALL |
102 | | gpointer g_malloc0_n (gsize n_blocks, |
103 | | gsize n_block_bytes) G_GNUC_MALLOC G_GNUC_ALLOC_SIZE2(1,2); |
104 | | GLIB_AVAILABLE_IN_ALL |
105 | | gpointer g_realloc_n (gpointer mem, |
106 | | gsize n_blocks, |
107 | | gsize n_block_bytes) G_GNUC_WARN_UNUSED_RESULT; |
108 | | GLIB_AVAILABLE_IN_ALL |
109 | | gpointer g_try_malloc_n (gsize n_blocks, |
110 | | gsize n_block_bytes) G_GNUC_MALLOC G_GNUC_ALLOC_SIZE2(1,2); |
111 | | GLIB_AVAILABLE_IN_ALL |
112 | | gpointer g_try_malloc0_n (gsize n_blocks, |
113 | | gsize n_block_bytes) G_GNUC_MALLOC G_GNUC_ALLOC_SIZE2(1,2); |
114 | | GLIB_AVAILABLE_IN_ALL |
115 | | gpointer g_try_realloc_n (gpointer mem, |
116 | | gsize n_blocks, |
117 | | gsize n_block_bytes) G_GNUC_WARN_UNUSED_RESULT; |
118 | | |
119 | | GLIB_AVAILABLE_IN_2_72 |
120 | | gpointer g_aligned_alloc (gsize n_blocks, |
121 | | gsize n_block_bytes, |
122 | | gsize alignment) G_GNUC_WARN_UNUSED_RESULT G_GNUC_ALLOC_SIZE2(1,2); |
123 | | GLIB_AVAILABLE_IN_2_72 |
124 | | gpointer g_aligned_alloc0 (gsize n_blocks, |
125 | | gsize n_block_bytes, |
126 | | gsize alignment) G_GNUC_WARN_UNUSED_RESULT G_GNUC_ALLOC_SIZE2(1,2); |
127 | | GLIB_AVAILABLE_IN_2_72 |
128 | | void g_aligned_free (gpointer mem); |
129 | | GLIB_AVAILABLE_IN_2_76 |
130 | | void g_aligned_free_sized (gpointer mem, |
131 | | size_t alignment, |
132 | | size_t size); |
133 | | |
134 | | #if defined(glib_typeof) && GLIB_VERSION_MAX_ALLOWED >= GLIB_VERSION_2_58 |
135 | | #define g_clear_pointer(pp, destroy) \ |
136 | 28.2k | G_STMT_START \ |
137 | 28.2k | { \ |
138 | 28.2k | G_STATIC_ASSERT (sizeof *(pp) == sizeof (gpointer)); \ |
139 | 28.2k | glib_typeof ((pp)) _pp = (pp); \ |
140 | 28.2k | glib_typeof (*(pp)) _ptr = *_pp; \ |
141 | 28.2k | *_pp = NULL; \ |
142 | 28.2k | if (_ptr) \ |
143 | 28.2k | (destroy) (_ptr); \ |
144 | 28.2k | } \ |
145 | 28.2k | G_STMT_END \ |
146 | 0 | GLIB_AVAILABLE_MACRO_IN_2_34 |
147 | | #else /* __GNUC__ */ |
148 | | #define g_clear_pointer(pp, destroy) \ |
149 | | G_STMT_START { \ |
150 | | G_STATIC_ASSERT (sizeof *(pp) == sizeof (gpointer)); \ |
151 | | /* Only one access, please; work around type aliasing */ \ |
152 | | union { char *in; gpointer *out; } _pp; \ |
153 | | gpointer _p; \ |
154 | | /* This assignment is needed to avoid a gcc warning */ \ |
155 | | GDestroyNotify _destroy = (GDestroyNotify) (destroy); \ |
156 | | \ |
157 | | _pp.in = (char *) (pp); \ |
158 | | _p = *_pp.out; \ |
159 | | if (_p) \ |
160 | | { \ |
161 | | *_pp.out = NULL; \ |
162 | | _destroy (_p); \ |
163 | | } \ |
164 | | } G_STMT_END \ |
165 | | GLIB_AVAILABLE_MACRO_IN_2_34 |
166 | | #endif /* __GNUC__ */ |
167 | | |
168 | | /** |
169 | | * g_steal_pointer: |
170 | | * @pp: (not nullable): a pointer to a pointer |
171 | | * |
172 | | * Sets @pp to %NULL, returning the value that was there before. |
173 | | * |
174 | | * Conceptually, this transfers the ownership of the pointer from the |
175 | | * referenced variable to the "caller" of the macro (ie: "steals" the |
176 | | * reference). |
177 | | * |
178 | | * The return value will be properly typed, according to the type of |
179 | | * @pp. |
180 | | * |
181 | | * This can be very useful when combined with g_autoptr() to prevent the |
182 | | * return value of a function from being automatically freed. Consider |
183 | | * the following example (which only works on GCC and clang): |
184 | | * |
185 | | * |[ |
186 | | * GObject * |
187 | | * create_object (void) |
188 | | * { |
189 | | * g_autoptr(GObject) obj = g_object_new (G_TYPE_OBJECT, NULL); |
190 | | * |
191 | | * if (early_error_case) |
192 | | * return NULL; |
193 | | * |
194 | | * return g_steal_pointer (&obj); |
195 | | * } |
196 | | * ]| |
197 | | * |
198 | | * It can also be used in similar ways for 'out' parameters and is |
199 | | * particularly useful for dealing with optional out parameters: |
200 | | * |
201 | | * |[ |
202 | | * gboolean |
203 | | * get_object (GObject **obj_out) |
204 | | * { |
205 | | * g_autoptr(GObject) obj = g_object_new (G_TYPE_OBJECT, NULL); |
206 | | * |
207 | | * if (early_error_case) |
208 | | * return FALSE; |
209 | | * |
210 | | * if (obj_out) |
211 | | * *obj_out = g_steal_pointer (&obj); |
212 | | * |
213 | | * return TRUE; |
214 | | * } |
215 | | * ]| |
216 | | * |
217 | | * In the above example, the object will be automatically freed in the |
218 | | * early error case and also in the case that %NULL was given for |
219 | | * @obj_out. |
220 | | * |
221 | | * Since: 2.44 |
222 | | */ |
223 | | GLIB_AVAILABLE_STATIC_INLINE_IN_2_44 |
224 | | static inline gpointer |
225 | | g_steal_pointer (gpointer pp) |
226 | 195k | { |
227 | 195k | gpointer *ptr = (gpointer *) pp; |
228 | 195k | gpointer ref; |
229 | | |
230 | 195k | ref = *ptr; |
231 | 195k | *ptr = NULL; |
232 | | |
233 | 195k | return ref; |
234 | 195k | } manifest.c:g_steal_pointer Line | Count | Source | 226 | 16.0k | { | 227 | 16.0k | gpointer *ptr = (gpointer *) pp; | 228 | 16.0k | gpointer ref; | 229 | | | 230 | 16.0k | ref = *ptr; | 231 | 16.0k | *ptr = NULL; | 232 | | | 233 | 16.0k | return ref; | 234 | 16.0k | } |
Line | Count | Source | 226 | 8.92k | { | 227 | 8.92k | gpointer *ptr = (gpointer *) pp; | 228 | 8.92k | gpointer ref; | 229 | | | 230 | 8.92k | ref = *ptr; | 231 | 8.92k | *ptr = NULL; | 232 | | | 233 | 8.92k | return ref; | 234 | 8.92k | } |
Unexecuted instantiation: checksum.c:g_steal_pointer Unexecuted instantiation: context.c:g_steal_pointer Unexecuted instantiation: event_log.c:g_steal_pointer Unexecuted instantiation: signature.c:g_steal_pointer Unexecuted instantiation: status_file.c:g_steal_pointer Unexecuted instantiation: bootchooser.c:g_steal_pointer Unexecuted instantiation: barebox.c:g_steal_pointer Unexecuted instantiation: custom.c:g_steal_pointer Unexecuted instantiation: efi.c:g_steal_pointer Unexecuted instantiation: grub.c:g_steal_pointer Unexecuted instantiation: uboot.c:g_steal_pointer Unexecuted instantiation: config_file.c:g_steal_pointer Unexecuted instantiation: install.c:g_steal_pointer Unexecuted instantiation: mark.c:g_steal_pointer Unexecuted instantiation: mount.c:g_steal_pointer Unexecuted instantiation: service.c:g_steal_pointer Unexecuted instantiation: shell.c:g_steal_pointer Unexecuted instantiation: slot.c:g_steal_pointer Unexecuted instantiation: update_handler.c:g_steal_pointer Unexecuted instantiation: update_utils.c:g_steal_pointer Unexecuted instantiation: rauc-installer-generated.c:g_steal_pointer Unexecuted instantiation: artifacts.c:g_steal_pointer Line | Count | Source | 226 | 4.87k | { | 227 | 4.87k | gpointer *ptr = (gpointer *) pp; | 228 | 4.87k | gpointer ref; | 229 | | | 230 | 4.87k | ref = *ptr; | 231 | 4.87k | *ptr = NULL; | 232 | | | 233 | 4.87k | return ref; | 234 | 4.87k | } |
Unexecuted instantiation: crypt.c:g_steal_pointer Unexecuted instantiation: dm.c:g_steal_pointer Unexecuted instantiation: emmc.c:g_steal_pointer Unexecuted instantiation: hash_index.c:g_steal_pointer Unexecuted instantiation: mbr.c:g_steal_pointer Unexecuted instantiation: stats.c:g_steal_pointer Unexecuted instantiation: verity_hash.c:g_steal_pointer Line | Count | Source | 226 | 3.45k | { | 227 | 3.45k | gpointer *ptr = (gpointer *) pp; | 228 | 3.45k | gpointer ref; | 229 | | | 230 | 3.45k | ref = *ptr; | 231 | 3.45k | *ptr = NULL; | 232 | | | 233 | 3.45k | return ref; | 234 | 3.45k | } |
Unexecuted instantiation: gbytes.c:g_steal_pointer Unexecuted instantiation: gchecksum.c:g_steal_pointer Unexecuted instantiation: gdataset.c:g_steal_pointer Unexecuted instantiation: gdatetime.c:g_steal_pointer Unexecuted instantiation: gdir.c:g_steal_pointer Unexecuted instantiation: genviron.c:g_steal_pointer Unexecuted instantiation: gerror.c:g_steal_pointer Unexecuted instantiation: gfileutils.c:g_steal_pointer Unexecuted instantiation: ggettext.c:g_steal_pointer Line | Count | Source | 226 | 5.00k | { | 227 | 5.00k | gpointer *ptr = (gpointer *) pp; | 228 | 5.00k | gpointer ref; | 229 | | | 230 | 5.00k | ref = *ptr; | 231 | 5.00k | *ptr = NULL; | 232 | | | 233 | 5.00k | return ref; | 234 | 5.00k | } |
gkeyfile.c:g_steal_pointer Line | Count | Source | 226 | 157k | { | 227 | 157k | gpointer *ptr = (gpointer *) pp; | 228 | 157k | gpointer ref; | 229 | | | 230 | 157k | ref = *ptr; | 231 | 157k | *ptr = NULL; | 232 | | | 233 | 157k | return ref; | 234 | 157k | } |
Unexecuted instantiation: glib-init.c:g_steal_pointer Unexecuted instantiation: glist.c:g_steal_pointer Unexecuted instantiation: gmain.c:g_steal_pointer Unexecuted instantiation: gmappedfile.c:g_steal_pointer Unexecuted instantiation: gmem.c:g_steal_pointer Unexecuted instantiation: gmessages.c:g_steal_pointer Unexecuted instantiation: gpattern.c:g_steal_pointer Unexecuted instantiation: gpoll.c:g_steal_pointer Unexecuted instantiation: gqsort.c:g_steal_pointer Unexecuted instantiation: gquark.c:g_steal_pointer Unexecuted instantiation: gqueue.c:g_steal_pointer Unexecuted instantiation: grefcount.c:g_steal_pointer Unexecuted instantiation: gregex.c:g_steal_pointer Unexecuted instantiation: gshell.c:g_steal_pointer Unexecuted instantiation: gslice.c:g_steal_pointer Unexecuted instantiation: gslist.c:g_steal_pointer Unexecuted instantiation: gstdio.c:g_steal_pointer Unexecuted instantiation: gstrfuncs.c:g_steal_pointer Unexecuted instantiation: gstring.c:g_steal_pointer Unexecuted instantiation: gtestutils.c:g_steal_pointer gthread.c:g_steal_pointer Line | Count | Source | 226 | 2 | { | 227 | 2 | gpointer *ptr = (gpointer *) pp; | 228 | 2 | gpointer ref; | 229 | | | 230 | 2 | ref = *ptr; | 231 | 2 | *ptr = NULL; | 232 | | | 233 | 2 | return ref; | 234 | 2 | } |
Unexecuted instantiation: gtimer.c:g_steal_pointer Unexecuted instantiation: gtimezone.c:g_steal_pointer Unexecuted instantiation: gtranslit.c:g_steal_pointer Unexecuted instantiation: guniprop.c:g_steal_pointer Unexecuted instantiation: gutf8.c:g_steal_pointer Unexecuted instantiation: gunidecomp.c:g_steal_pointer Unexecuted instantiation: guri.c:g_steal_pointer Line | Count | Source | 226 | 1 | { | 227 | 1 | gpointer *ptr = (gpointer *) pp; | 228 | 1 | gpointer ref; | 229 | | | 230 | 1 | ref = *ptr; | 231 | 1 | *ptr = NULL; | 232 | | | 233 | 1 | return ref; | 234 | 1 | } |
Unexecuted instantiation: guuid.c:g_steal_pointer Unexecuted instantiation: gvariant.c:g_steal_pointer Unexecuted instantiation: gvariant-core.c:g_steal_pointer Unexecuted instantiation: gvariant-serialiser.c:g_steal_pointer Unexecuted instantiation: gvarianttypeinfo.c:g_steal_pointer Unexecuted instantiation: gvarianttype.c:g_steal_pointer Unexecuted instantiation: gwakeup.c:g_steal_pointer Unexecuted instantiation: gprintf.c:g_steal_pointer Unexecuted instantiation: glib-unix.c:g_steal_pointer Unexecuted instantiation: gspawn.c:g_steal_pointer Unexecuted instantiation: giounix.c:g_steal_pointer Unexecuted instantiation: gthread-posix.c:g_steal_pointer Unexecuted instantiation: garcbox.c:g_steal_pointer Unexecuted instantiation: gbitlock.c:g_steal_pointer Unexecuted instantiation: gcharset.c:g_steal_pointer Unexecuted instantiation: gconvert.c:g_steal_pointer Unexecuted instantiation: gdate.c:g_steal_pointer Unexecuted instantiation: ghostutils.c:g_steal_pointer Unexecuted instantiation: giochannel.c:g_steal_pointer Unexecuted instantiation: grand.c:g_steal_pointer Unexecuted instantiation: grcbox.c:g_steal_pointer Unexecuted instantiation: gasyncinitable.c:g_steal_pointer Unexecuted instantiation: gasyncresult.c:g_steal_pointer Unexecuted instantiation: gdatainputstream.c:g_steal_pointer Unexecuted instantiation: gfile.c:g_steal_pointer Unexecuted instantiation: gfileattribute.c:g_steal_pointer Unexecuted instantiation: gfileinfo.c:g_steal_pointer Unexecuted instantiation: gfileinputstream.c:g_steal_pointer Unexecuted instantiation: gfileoutputstream.c:g_steal_pointer Unexecuted instantiation: gicon.c:g_steal_pointer Unexecuted instantiation: ginitable.c:g_steal_pointer Unexecuted instantiation: ginputstream.c:g_steal_pointer Unexecuted instantiation: gioerror.c:g_steal_pointer Unexecuted instantiation: giostream.c:g_steal_pointer Unexecuted instantiation: goutputstream.c:g_steal_pointer Unexecuted instantiation: gpollableinputstream.c:g_steal_pointer Unexecuted instantiation: gpollableoutputstream.c:g_steal_pointer Unexecuted instantiation: gpollfilemonitor.c:g_steal_pointer Unexecuted instantiation: gresource.c:g_steal_pointer Unexecuted instantiation: gseekable.c:g_steal_pointer Unexecuted instantiation: gsimpleasyncresult.c:g_steal_pointer Unexecuted instantiation: gsubprocesslauncher.c:g_steal_pointer Unexecuted instantiation: gsubprocess.c:g_steal_pointer Unexecuted instantiation: gtask.c:g_steal_pointer Unexecuted instantiation: gthemedicon.c:g_steal_pointer Unexecuted instantiation: gunixfdlist.c:g_steal_pointer Unexecuted instantiation: gvfs.c:g_steal_pointer Unexecuted instantiation: gzlibdecompressor.c:g_steal_pointer Unexecuted instantiation: gdesktopappinfo.c:g_steal_pointer Unexecuted instantiation: gcontenttype.c:g_steal_pointer Unexecuted instantiation: gfiledescriptorbased.c:g_steal_pointer Unexecuted instantiation: gunixmounts.c:g_steal_pointer Unexecuted instantiation: gunixinputstream.c:g_steal_pointer Unexecuted instantiation: gunixoutputstream.c:g_steal_pointer Unexecuted instantiation: gdbusutils.c:g_steal_pointer Unexecuted instantiation: gdbuserror.c:g_steal_pointer Unexecuted instantiation: gdbusconnection.c:g_steal_pointer Unexecuted instantiation: gdbusmessage.c:g_steal_pointer Unexecuted instantiation: gdbusnameowning.c:g_steal_pointer Unexecuted instantiation: gdbusproxy.c:g_steal_pointer Unexecuted instantiation: gdbusprivate.c:g_steal_pointer Unexecuted instantiation: gdbusintrospection.c:g_steal_pointer Unexecuted instantiation: gdbusmethodinvocation.c:g_steal_pointer Unexecuted instantiation: gdbusinterface.c:g_steal_pointer Unexecuted instantiation: gdbusinterfaceskeleton.c:g_steal_pointer Unexecuted instantiation: gdbusobject.c:g_steal_pointer Unexecuted instantiation: gdbusobjectskeleton.c:g_steal_pointer Unexecuted instantiation: gdocumentportal.c:g_steal_pointer Unexecuted instantiation: glocalfile.c:g_steal_pointer Unexecuted instantiation: glocalfileenumerator.c:g_steal_pointer Unexecuted instantiation: glocalfileinfo.c:g_steal_pointer Unexecuted instantiation: glocalfileinputstream.c:g_steal_pointer Unexecuted instantiation: glocalfilemonitor.c:g_steal_pointer Unexecuted instantiation: glocalfileoutputstream.c:g_steal_pointer Unexecuted instantiation: glocalfileiostream.c:g_steal_pointer Unexecuted instantiation: glocalvfs.c:g_steal_pointer Unexecuted instantiation: thumbnail-verify.c:g_steal_pointer Unexecuted instantiation: gvdb-reader.c:g_steal_pointer Unexecuted instantiation: gioenumtypes.c:g_steal_pointer Unexecuted instantiation: xdp-dbus.c:g_steal_pointer Unexecuted instantiation: gappinfo.c:g_steal_pointer Unexecuted instantiation: gbufferedinputstream.c:g_steal_pointer Unexecuted instantiation: gbytesicon.c:g_steal_pointer Unexecuted instantiation: gcancellable.c:g_steal_pointer Unexecuted instantiation: gcontextspecificgroup.c:g_steal_pointer Unexecuted instantiation: gconverter.c:g_steal_pointer Unexecuted instantiation: gconverterinputstream.c:g_steal_pointer Unexecuted instantiation: gdummyfile.c:g_steal_pointer Unexecuted instantiation: gemblem.c:g_steal_pointer Unexecuted instantiation: gemblemedicon.c:g_steal_pointer Unexecuted instantiation: gfileenumerator.c:g_steal_pointer Unexecuted instantiation: gfileicon.c:g_steal_pointer Unexecuted instantiation: gfilemonitor.c:g_steal_pointer Unexecuted instantiation: gfileiostream.c:g_steal_pointer Unexecuted instantiation: gfilterinputstream.c:g_steal_pointer giomodule.c:g_steal_pointer Line | Count | Source | 226 | 2 | { | 227 | 2 | gpointer *ptr = (gpointer *) pp; | 228 | 2 | gpointer ref; | 229 | | | 230 | 2 | ref = *ptr; | 231 | 2 | *ptr = NULL; | 232 | | | 233 | 2 | return ref; | 234 | 2 | } |
Unexecuted instantiation: giomodule-priv.c:g_steal_pointer Unexecuted instantiation: gioscheduler.c:g_steal_pointer Unexecuted instantiation: gloadableicon.c:g_steal_pointer Unexecuted instantiation: gmarshal-internal.c:g_steal_pointer Unexecuted instantiation: gmemorymonitor.c:g_steal_pointer Unexecuted instantiation: gmemorymonitordbus.c:g_steal_pointer Unexecuted instantiation: gmemoryinputstream.c:g_steal_pointer Unexecuted instantiation: gmemoryoutputstream.c:g_steal_pointer Unexecuted instantiation: gnativevolumemonitor.c:g_steal_pointer Unexecuted instantiation: gnetworkmonitor.c:g_steal_pointer Unexecuted instantiation: gnetworkmonitorbase.c:g_steal_pointer Unexecuted instantiation: gpollableutils.c:g_steal_pointer Unexecuted instantiation: gpowerprofilemonitor.c:g_steal_pointer Unexecuted instantiation: gpowerprofilemonitordbus.c:g_steal_pointer Unexecuted instantiation: gproxy.c:g_steal_pointer Unexecuted instantiation: gproxyresolver.c:g_steal_pointer Unexecuted instantiation: gresourcefile.c:g_steal_pointer Unexecuted instantiation: gsocket.c:g_steal_pointer Unexecuted instantiation: gsocketaddress.c:g_steal_pointer Unexecuted instantiation: gsocketaddressenumerator.c:g_steal_pointer Unexecuted instantiation: gsocketconnectable.c:g_steal_pointer Unexecuted instantiation: gsocketconnection.c:g_steal_pointer Unexecuted instantiation: gsocketcontrolmessage.c:g_steal_pointer Unexecuted instantiation: gsocketinputstream.c:g_steal_pointer Unexecuted instantiation: gsocketoutputstream.c:g_steal_pointer Unexecuted instantiation: gtcpconnection.c:g_steal_pointer Unexecuted instantiation: gtlsbackend.c:g_steal_pointer Unexecuted instantiation: gtlsdatabase.c:g_steal_pointer Unexecuted instantiation: gtlsinteraction.c:g_steal_pointer Unexecuted instantiation: gtlspassword.c:g_steal_pointer Unexecuted instantiation: gunionvolumemonitor.c:g_steal_pointer Unexecuted instantiation: gunixconnection.c:g_steal_pointer Unexecuted instantiation: gunixcredentialsmessage.c:g_steal_pointer Unexecuted instantiation: gunixsocketaddress.c:g_steal_pointer Unexecuted instantiation: gvolumemonitor.c:g_steal_pointer Unexecuted instantiation: giounix-private.c:g_steal_pointer Unexecuted instantiation: gunixfdmessage.c:g_steal_pointer Unexecuted instantiation: gunixvolumemonitor.c:g_steal_pointer Unexecuted instantiation: gfdonotificationbackend.c:g_steal_pointer Unexecuted instantiation: ggtknotificationbackend.c:g_steal_pointer Unexecuted instantiation: gnetworkmonitornetlink.c:g_steal_pointer Unexecuted instantiation: gnetworkmonitornm.c:g_steal_pointer Unexecuted instantiation: gapplication.c:g_steal_pointer Unexecuted instantiation: gapplicationcommandline.c:g_steal_pointer Unexecuted instantiation: gapplicationimpl-dbus.c:g_steal_pointer Unexecuted instantiation: gactiongroup.c:g_steal_pointer Unexecuted instantiation: gactionmap.c:g_steal_pointer Unexecuted instantiation: gsimpleactiongroup.c:g_steal_pointer Unexecuted instantiation: gremoteactiongroup.c:g_steal_pointer Unexecuted instantiation: gactiongroupexporter.c:g_steal_pointer Unexecuted instantiation: gdbusactiongroup.c:g_steal_pointer Unexecuted instantiation: gaction.c:g_steal_pointer Unexecuted instantiation: gsimpleaction.c:g_steal_pointer Unexecuted instantiation: gnotification.c:g_steal_pointer Unexecuted instantiation: gnotificationbackend.c:g_steal_pointer Unexecuted instantiation: gkeyfilesettingsbackend.c:g_steal_pointer Unexecuted instantiation: gmemorysettingsbackend.c:g_steal_pointer Unexecuted instantiation: gnullsettingsbackend.c:g_steal_pointer Unexecuted instantiation: gsettingsbackend.c:g_steal_pointer Unexecuted instantiation: gsettings.c:g_steal_pointer Unexecuted instantiation: gdbusaddress.c:g_steal_pointer Unexecuted instantiation: gdbusauthobserver.c:g_steal_pointer Unexecuted instantiation: gdbusauth.c:g_steal_pointer Unexecuted instantiation: gdbusauthmechanism.c:g_steal_pointer Unexecuted instantiation: gdbusauthmechanismanon.c:g_steal_pointer Unexecuted instantiation: gdbusauthmechanismexternal.c:g_steal_pointer Unexecuted instantiation: gdbusauthmechanismsha1.c:g_steal_pointer Unexecuted instantiation: gdbusnamewatching.c:g_steal_pointer Unexecuted instantiation: gopenuriportal.c:g_steal_pointer Unexecuted instantiation: gmemorymonitorportal.c:g_steal_pointer Unexecuted instantiation: gnetworkmonitorportal.c:g_steal_pointer Unexecuted instantiation: gpowerprofilemonitorportal.c:g_steal_pointer Unexecuted instantiation: gproxyresolverportal.c:g_steal_pointer Unexecuted instantiation: gtrashportal.c:g_steal_pointer Unexecuted instantiation: gportalsupport.c:g_steal_pointer Unexecuted instantiation: gportalnotificationbackend.c:g_steal_pointer Unexecuted instantiation: gsandbox.c:g_steal_pointer Unexecuted instantiation: ghttpproxy.c:g_steal_pointer Unexecuted instantiation: gsocks4proxy.c:g_steal_pointer Unexecuted instantiation: gsocks4aproxy.c:g_steal_pointer Unexecuted instantiation: gsocks5proxy.c:g_steal_pointer Unexecuted instantiation: ginotifyfilemonitor.c:g_steal_pointer Unexecuted instantiation: gcredentials.c:g_steal_pointer Unexecuted instantiation: gdatagrambased.c:g_steal_pointer Unexecuted instantiation: gdataoutputstream.c:g_steal_pointer Unexecuted instantiation: gdebugcontroller.c:g_steal_pointer Unexecuted instantiation: gdebugcontrollerdbus.c:g_steal_pointer Unexecuted instantiation: gdrive.c:g_steal_pointer Unexecuted instantiation: gdummyproxyresolver.c:g_steal_pointer Unexecuted instantiation: gdummytlsbackend.c:g_steal_pointer Unexecuted instantiation: gfilteroutputstream.c:g_steal_pointer Unexecuted instantiation: ginetaddress.c:g_steal_pointer Unexecuted instantiation: ginetaddressmask.c:g_steal_pointer Unexecuted instantiation: ginetsocketaddress.c:g_steal_pointer Unexecuted instantiation: gmount.c:g_steal_pointer Unexecuted instantiation: gnativesocketaddress.c:g_steal_pointer Unexecuted instantiation: gnetworkaddress.c:g_steal_pointer Unexecuted instantiation: gnetworking.c:g_steal_pointer Unexecuted instantiation: gproxyaddress.c:g_steal_pointer Unexecuted instantiation: gproxyaddressenumerator.c:g_steal_pointer Unexecuted instantiation: gresolver.c:g_steal_pointer Unexecuted instantiation: gsimplepermission.c:g_steal_pointer Unexecuted instantiation: gsocketclient.c:g_steal_pointer Unexecuted instantiation: gsrvtarget.c:g_steal_pointer Unexecuted instantiation: gtcpwrapperconnection.c:g_steal_pointer Unexecuted instantiation: gthreadedresolver.c:g_steal_pointer Unexecuted instantiation: gtlscertificate.c:g_steal_pointer Unexecuted instantiation: gtlsclientconnection.c:g_steal_pointer Unexecuted instantiation: gtlsconnection.c:g_steal_pointer Unexecuted instantiation: gtlsfiledatabase.c:g_steal_pointer Unexecuted instantiation: gtlsserverconnection.c:g_steal_pointer Unexecuted instantiation: gdtlsconnection.c:g_steal_pointer Unexecuted instantiation: gdtlsclientconnection.c:g_steal_pointer Unexecuted instantiation: gdtlsserverconnection.c:g_steal_pointer Unexecuted instantiation: gvolume.c:g_steal_pointer Unexecuted instantiation: gunixmount.c:g_steal_pointer Unexecuted instantiation: gunixvolume.c:g_steal_pointer Unexecuted instantiation: gdelayedsettingsbackend.c:g_steal_pointer Unexecuted instantiation: gsettingsschema.c:g_steal_pointer Unexecuted instantiation: gsettings-mapping.c:g_steal_pointer Unexecuted instantiation: inotify-sub.c:g_steal_pointer Unexecuted instantiation: inotify-helper.c:g_steal_pointer Unexecuted instantiation: gnetworkservice.c:g_steal_pointer Unexecuted instantiation: gpermission.c:g_steal_pointer Unexecuted instantiation: inotify-path.c:g_steal_pointer Unexecuted instantiation: inotify-missing.c:g_steal_pointer Unexecuted instantiation: inotify-kernel.c:g_steal_pointer Unexecuted instantiation: gboxed.c:g_steal_pointer Unexecuted instantiation: gclosure.c:g_steal_pointer Unexecuted instantiation: genums.c:g_steal_pointer Unexecuted instantiation: gmarshal.c:g_steal_pointer Unexecuted instantiation: gobject.c:g_steal_pointer Unexecuted instantiation: gparam.c:g_steal_pointer Unexecuted instantiation: gparamspecs.c:g_steal_pointer Unexecuted instantiation: gsignal.c:g_steal_pointer Unexecuted instantiation: gsourceclosure.c:g_steal_pointer Unexecuted instantiation: gtype.c:g_steal_pointer Unexecuted instantiation: gtypemodule.c:g_steal_pointer Unexecuted instantiation: gtypeplugin.c:g_steal_pointer Unexecuted instantiation: gvalue.c:g_steal_pointer Unexecuted instantiation: gvaluearray.c:g_steal_pointer Unexecuted instantiation: gvaluetransform.c:g_steal_pointer Unexecuted instantiation: gvaluetypes.c:g_steal_pointer Unexecuted instantiation: gatomicarray.c:g_steal_pointer Unexecuted instantiation: gmodule.c:g_steal_pointer Unexecuted instantiation: gmodule-deprecated.c:g_steal_pointer Unexecuted instantiation: gbase64.c:g_steal_pointer Unexecuted instantiation: gbookmarkfile.c:g_steal_pointer Unexecuted instantiation: ghook.c:g_steal_pointer Unexecuted instantiation: glib-private.c:g_steal_pointer Unexecuted instantiation: gmarkup.c:g_steal_pointer Unexecuted instantiation: goption.c:g_steal_pointer Unexecuted instantiation: gscanner.c:g_steal_pointer Unexecuted instantiation: gsequence.c:g_steal_pointer Unexecuted instantiation: gthreadpool.c:g_steal_pointer Unexecuted instantiation: gtree.c:g_steal_pointer Unexecuted instantiation: gunicollate.c:g_steal_pointer Unexecuted instantiation: gvariant-parser.c:g_steal_pointer Unexecuted instantiation: gasyncqueue.c:g_steal_pointer |
235 | | |
236 | | /* type safety */ |
237 | | #if defined(glib_typeof) && GLIB_VERSION_MAX_ALLOWED >= GLIB_VERSION_2_58 |
238 | 195k | #define g_steal_pointer(pp) ((glib_typeof (*pp)) (g_steal_pointer) (pp)) |
239 | | #else /* __GNUC__ */ |
240 | | /* This version does not depend on gcc extensions, but gcc does not warn |
241 | | * about incompatible-pointer-types: */ |
242 | | #define g_steal_pointer(pp) \ |
243 | | (0 ? (*(pp)) : (g_steal_pointer) (pp)) |
244 | | #endif /* __GNUC__ */ |
245 | | |
246 | | /* Optimise: avoid the call to the (slower) _n function if we can |
247 | | * determine at compile-time that no overflow happens. |
248 | | */ |
249 | | #if defined (__GNUC__) && (__GNUC__ >= 2) && defined (__OPTIMIZE__) |
250 | | # define _G_NEW(struct_type, n_structs, func) \ |
251 | 4.09M | (struct_type *) (G_GNUC_EXTENSION ({ \ |
252 | 4.09M | gsize __n = (gsize) (n_structs); \ |
253 | 4.09M | gsize __s = sizeof (struct_type); \ |
254 | 4.09M | gpointer __p; \ |
255 | 4.09M | if (__s == 1) \ |
256 | 4.09M | __p = g_##func (__n); \ |
257 | 4.09M | else if (__builtin_constant_p (__n) && \ |
258 | 144k | (__s == 0 || __n <= G_MAXSIZE / __s)) \ |
259 | 144k | __p = g_##func (__n * __s); \ |
260 | 144k | else \ |
261 | 144k | __p = g_##func##_n (__n, __s); \ |
262 | 4.09M | __p; \ |
263 | 4.09M | })) |
264 | | # define _G_RENEW(struct_type, mem, n_structs, func) \ |
265 | 7.17k | (struct_type *) (G_GNUC_EXTENSION ({ \ |
266 | 7.17k | gsize __n = (gsize) (n_structs); \ |
267 | 7.17k | gsize __s = sizeof (struct_type); \ |
268 | 7.17k | gpointer __p = (gpointer) (mem); \ |
269 | 7.17k | if (__s == 1) \ |
270 | 7.17k | __p = g_##func (__p, __n); \ |
271 | 7.17k | else if (__builtin_constant_p (__n) && \ |
272 | 7.17k | (__s == 0 || __n <= G_MAXSIZE / __s)) \ |
273 | 7.17k | __p = g_##func (__p, __n * __s); \ |
274 | 7.17k | else \ |
275 | 7.17k | __p = g_##func##_n (__p, __n, __s); \ |
276 | 7.17k | __p; \ |
277 | 7.17k | })) |
278 | | |
279 | | #else |
280 | | |
281 | | /* Unoptimised version: always call the _n() function. */ |
282 | | |
283 | | #define _G_NEW(struct_type, n_structs, func) \ |
284 | | ((struct_type *) g_##func##_n ((n_structs), sizeof (struct_type))) |
285 | | #define _G_RENEW(struct_type, mem, n_structs, func) \ |
286 | | ((struct_type *) g_##func##_n (mem, (n_structs), sizeof (struct_type))) |
287 | | |
288 | | #endif |
289 | | |
290 | | /** |
291 | | * g_new: |
292 | | * @struct_type: the type of the elements to allocate |
293 | | * @n_structs: the number of elements to allocate |
294 | | * |
295 | | * Allocates @n_structs elements of type @struct_type. |
296 | | * The returned pointer is cast to a pointer to the given type. |
297 | | * If @n_structs is 0 it returns %NULL. |
298 | | * Care is taken to avoid overflow when calculating the size of the allocated block. |
299 | | * |
300 | | * Since the returned pointer is already casted to the right type, |
301 | | * it is normally unnecessary to cast it explicitly, and doing |
302 | | * so might hide memory allocation errors. |
303 | | * |
304 | | * Returns: a pointer to the allocated memory, cast to a pointer to @struct_type |
305 | | */ |
306 | 4.01M | #define g_new(struct_type, n_structs) _G_NEW (struct_type, n_structs, malloc) |
307 | | /** |
308 | | * g_new0: |
309 | | * @struct_type: the type of the elements to allocate. |
310 | | * @n_structs: the number of elements to allocate. |
311 | | * |
312 | | * Allocates @n_structs elements of type @struct_type, initialized to 0's. |
313 | | * The returned pointer is cast to a pointer to the given type. |
314 | | * If @n_structs is 0 it returns %NULL. |
315 | | * Care is taken to avoid overflow when calculating the size of the allocated block. |
316 | | * |
317 | | * Since the returned pointer is already casted to the right type, |
318 | | * it is normally unnecessary to cast it explicitly, and doing |
319 | | * so might hide memory allocation errors. |
320 | | * |
321 | | * Returns: a pointer to the allocated memory, cast to a pointer to @struct_type. |
322 | | */ |
323 | 79.5k | #define g_new0(struct_type, n_structs) _G_NEW (struct_type, n_structs, malloc0) |
324 | | /** |
325 | | * g_renew: |
326 | | * @struct_type: the type of the elements to allocate |
327 | | * @mem: the currently allocated memory |
328 | | * @n_structs: the number of elements to allocate |
329 | | * |
330 | | * Reallocates the memory pointed to by @mem, so that it now has space for |
331 | | * @n_structs elements of type @struct_type. It returns the new address of |
332 | | * the memory, which may have been moved. |
333 | | * Care is taken to avoid overflow when calculating the size of the allocated block. |
334 | | * |
335 | | * Returns: a pointer to the new allocated memory, cast to a pointer to @struct_type |
336 | | */ |
337 | 7.17k | #define g_renew(struct_type, mem, n_structs) _G_RENEW (struct_type, mem, n_structs, realloc) |
338 | | /** |
339 | | * g_try_new: |
340 | | * @struct_type: the type of the elements to allocate |
341 | | * @n_structs: the number of elements to allocate |
342 | | * |
343 | | * Attempts to allocate @n_structs elements of type @struct_type, and returns |
344 | | * %NULL on failure. Contrast with g_new(), which aborts the program on failure. |
345 | | * The returned pointer is cast to a pointer to the given type. |
346 | | * The function returns %NULL when @n_structs is 0 of if an overflow occurs. |
347 | | * |
348 | | * Since: 2.8 |
349 | | * Returns: a pointer to the allocated memory, cast to a pointer to @struct_type |
350 | | */ |
351 | | #define g_try_new(struct_type, n_structs) _G_NEW (struct_type, n_structs, try_malloc) |
352 | | /** |
353 | | * g_try_new0: |
354 | | * @struct_type: the type of the elements to allocate |
355 | | * @n_structs: the number of elements to allocate |
356 | | * |
357 | | * Attempts to allocate @n_structs elements of type @struct_type, initialized |
358 | | * to 0's, and returns %NULL on failure. Contrast with g_new0(), which aborts |
359 | | * the program on failure. |
360 | | * The returned pointer is cast to a pointer to the given type. |
361 | | * The function returns %NULL when @n_structs is 0 or if an overflow occurs. |
362 | | * |
363 | | * Since: 2.8 |
364 | | * Returns: a pointer to the allocated memory, cast to a pointer to @struct_type |
365 | | */ |
366 | | #define g_try_new0(struct_type, n_structs) _G_NEW (struct_type, n_structs, try_malloc0) |
367 | | /** |
368 | | * g_try_renew: |
369 | | * @struct_type: the type of the elements to allocate |
370 | | * @mem: the currently allocated memory |
371 | | * @n_structs: the number of elements to allocate |
372 | | * |
373 | | * Attempts to reallocate the memory pointed to by @mem, so that it now has |
374 | | * space for @n_structs elements of type @struct_type, and returns %NULL on |
375 | | * failure. Contrast with g_renew(), which aborts the program on failure. |
376 | | * It returns the new address of the memory, which may have been moved. |
377 | | * The function returns %NULL if an overflow occurs. |
378 | | * |
379 | | * Since: 2.8 |
380 | | * Returns: a pointer to the new allocated memory, cast to a pointer to @struct_type |
381 | | */ |
382 | | #define g_try_renew(struct_type, mem, n_structs) _G_RENEW (struct_type, mem, n_structs, try_realloc) |
383 | | |
384 | | |
385 | | /* Memory allocation virtualization for debugging purposes |
386 | | * g_mem_set_vtable() has to be the very first GLib function called |
387 | | * if being used |
388 | | */ |
389 | | struct _GMemVTable { |
390 | | gpointer (*malloc) (gsize n_bytes); |
391 | | gpointer (*realloc) (gpointer mem, |
392 | | gsize n_bytes); |
393 | | void (*free) (gpointer mem); |
394 | | /* optional; set to NULL if not used ! */ |
395 | | gpointer (*calloc) (gsize n_blocks, |
396 | | gsize n_block_bytes); |
397 | | gpointer (*try_malloc) (gsize n_bytes); |
398 | | gpointer (*try_realloc) (gpointer mem, |
399 | | gsize n_bytes); |
400 | | }; |
401 | | GLIB_DEPRECATED_IN_2_46 |
402 | | void g_mem_set_vtable (GMemVTable *vtable); |
403 | | GLIB_DEPRECATED_IN_2_46 |
404 | | gboolean g_mem_is_system_malloc (void); |
405 | | |
406 | | GLIB_VAR gboolean g_mem_gc_friendly; |
407 | | |
408 | | /* Memory profiler and checker, has to be enabled via g_mem_set_vtable() |
409 | | */ |
410 | | GLIB_VAR GMemVTable *glib_mem_profiler_table; |
411 | | GLIB_DEPRECATED_IN_2_46 |
412 | | void g_mem_profile (void); |
413 | | |
414 | | G_END_DECLS |
415 | | |
416 | | #endif /* __G_MEM_H__ */ |