Coverage Report

Created: 2025-11-16 07:45

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/work/prefix/include/glib-2.0/glib/gmacros.h
Line
Count
Source
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
/* This file must not include any other glib header file and must thus
28
 * not refer to variables from glibconfig.h
29
 */
30
31
#ifndef __G_MACROS_H__
32
#define __G_MACROS_H__
33
34
#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION)
35
#error "Only <glib.h> can be included directly."
36
#endif
37
38
/* We include stddef.h to get the system's definition of NULL
39
 */
40
#include <stddef.h>
41
42
/*
43
 * Note: Clang (but not clang-cl) defines __GNUC__ and __GNUC_MINOR__.
44
 * Both Clang 11.1 on current Arch Linux and Apple's Clang 12.0 define
45
 * __GNUC__ = 4 and __GNUC_MINOR__ = 2. So G_GNUC_CHECK_VERSION(4, 2) on
46
 * current Clang will be 1.
47
 */
48
#ifdef __GNUC__
49
#define G_GNUC_CHECK_VERSION(major, minor) \
50
    ((__GNUC__ > (major)) || \
51
     ((__GNUC__ == (major)) && \
52
      (__GNUC_MINOR__ >= (minor))))
53
#else
54
#define G_GNUC_CHECK_VERSION(major, minor) 0
55
#endif
56
57
/* Here we provide G_GNUC_EXTENSION as an alias for __extension__,
58
 * where this is valid. This allows for warningless compilation of
59
 * "long long" types even in the presence of '-ansi -pedantic'. 
60
 */
61
#if G_GNUC_CHECK_VERSION(2, 8)
62
#define G_GNUC_EXTENSION __extension__
63
#else
64
#define G_GNUC_EXTENSION
65
#endif
66
67
#if !defined (__cplusplus)
68
69
# undef G_CXX_STD_VERSION
70
# define G_CXX_STD_CHECK_VERSION(version) (0)
71
72
# if defined (__STDC_VERSION__)
73
#  define G_C_STD_VERSION __STDC_VERSION__
74
# else
75
#  define G_C_STD_VERSION 199000L
76
# endif /* defined (__STDC_VERSION__) */
77
78
# define G_C_STD_CHECK_VERSION(version) ( \
79
  ((version) >= 199000L && (version) <= G_C_STD_VERSION) || \
80
  ((version) == 89 && G_C_STD_VERSION >= 199000L) || \
81
  ((version) == 90 && G_C_STD_VERSION >= 199000L) || \
82
  ((version) == 99 && G_C_STD_VERSION >= 199901L) || \
83
  ((version) == 11 && G_C_STD_VERSION >= 201112L) || \
84
  ((version) == 17 && G_C_STD_VERSION >= 201710L) || \
85
  0)
86
87
#else /* defined (__cplusplus) */
88
89
# undef G_C_STD_VERSION
90
# define G_C_STD_CHECK_VERSION(version) (0)
91
92
# if defined (_MSVC_LANG)
93
#  define G_CXX_STD_VERSION (_MSVC_LANG > __cplusplus ? _MSVC_LANG : __cplusplus)
94
# else
95
#  define G_CXX_STD_VERSION __cplusplus
96
# endif /* defined(_MSVC_LANG) */
97
98
# define G_CXX_STD_CHECK_VERSION(version) ( \
99
  ((version) >= 199711L && (version) <= G_CXX_STD_VERSION) || \
100
  ((version) == 98 && G_CXX_STD_VERSION >= 199711L) || \
101
  ((version) == 03 && G_CXX_STD_VERSION >= 199711L) || \
102
  ((version) == 11 && G_CXX_STD_VERSION >= 201103L) || \
103
  ((version) == 14 && G_CXX_STD_VERSION >= 201402L) || \
104
  ((version) == 17 && G_CXX_STD_VERSION >= 201703L) || \
105
  ((version) == 20 && G_CXX_STD_VERSION >= 202002L) || \
106
  0)
107
108
#endif /* !defined (__cplusplus) */
109
110
/* Every compiler that we target supports inlining, but some of them may
111
 * complain about it if we don't say "__inline".  If we have C99, or if
112
 * we are using C++, then we can use "inline" directly.
113
 * Otherwise, we say "__inline" to avoid the warning.
114
 * Unfortunately Visual Studio does not define __STDC_VERSION__ (if not
115
 * using /std:cXX) so we need to check whether we are on Visual Studio 2013
116
 * or earlier to see whether we need to say "__inline" in C mode.
117
 */
118
#define G_CAN_INLINE
119
#ifdef G_C_STD_VERSION
120
# ifdef _MSC_VER
121
#  if (_MSC_VER < 1900)
122
#   define G_INLINE_DEFINE_NEEDED
123
#  endif
124
# elif !G_C_STD_CHECK_VERSION (99)
125
#  define G_INLINE_DEFINE_NEEDED
126
# endif
127
#endif
128
129
#ifdef G_INLINE_DEFINE_NEEDED
130
# undef inline
131
# define inline __inline
132
#endif
133
134
#undef G_INLINE_DEFINE_NEEDED
135
136
/**
137
 * G_INLINE_FUNC:
138
 *
139
 * This macro used to be used to conditionally define inline functions
140
 * in a compatible way before this feature was supported in all
141
 * compilers.  These days, GLib requires inlining support from the
142
 * compiler, so your GLib-using programs can safely assume that the
143
 * "inline" keyword works properly.
144
 *
145
 * Never use this macro anymore.  Just say "static inline".
146
 *
147
 * Deprecated: 2.48: Use "static inline" instead
148
 */
149
150
/* For historical reasons we need to continue to support those who
151
 * define G_IMPLEMENT_INLINES to mean "don't implement this here".
152
 */
153
#ifdef G_IMPLEMENT_INLINES
154
#  define G_INLINE_FUNC extern GLIB_DEPRECATED_MACRO_IN_2_48_FOR(static inline)
155
#  undef  G_CAN_INLINE
156
#else
157
#  define G_INLINE_FUNC static inline GLIB_DEPRECATED_MACRO_IN_2_48_FOR(static inline)
158
#endif /* G_IMPLEMENT_INLINES */
159
160
/*
161
 * Attribute support detection. Works on clang and GCC >= 5
162
 * https://clang.llvm.org/docs/LanguageExtensions.html#has-attribute
163
 * https://gcc.gnu.org/onlinedocs/cpp/_005f_005fhas_005fattribute.html
164
 */
165
166
#ifdef __has_attribute
167
#define g_macro__has_attribute __has_attribute
168
#else
169
170
/*
171
 * Fallback for GCC < 5 and other compilers not supporting __has_attribute.
172
 */
173
#define g_macro__has_attribute(x) g_macro__has_attribute_##x
174
175
#define g_macro__has_attribute___alloc_size__ G_GNUC_CHECK_VERSION (4, 3)
176
#define g_macro__has_attribute___always_inline__ G_GNUC_CHECK_VERSION (2, 0)
177
#define g_macro__has_attribute___const__ G_GNUC_CHECK_VERSION (2, 4)
178
#define g_macro__has_attribute___deprecated__ G_GNUC_CHECK_VERSION (3, 1)
179
#define g_macro__has_attribute___format__ G_GNUC_CHECK_VERSION (2, 4)
180
#define g_macro__has_attribute___format_arg__ G_GNUC_CHECK_VERSION (2, 4)
181
#define g_macro__has_attribute___malloc__ G_GNUC_CHECK_VERSION (2, 96)
182
#define g_macro__has_attribute___no_instrument_function__ G_GNUC_CHECK_VERSION (2, 4)
183
#define g_macro__has_attribute___noinline__ G_GNUC_CHECK_VERSION (2, 96)
184
#define g_macro__has_attribute___noreturn__ (G_GNUC_CHECK_VERSION (2, 8) || (0x5110 <= __SUNPRO_C))
185
#define g_macro__has_attribute___pure__ G_GNUC_CHECK_VERSION (2, 96)
186
#define g_macro__has_attribute___sentinel__ G_GNUC_CHECK_VERSION (4, 0)
187
#define g_macro__has_attribute___unused__ G_GNUC_CHECK_VERSION (2, 4)
188
#define g_macro__has_attribute___weak__ G_GNUC_CHECK_VERSION (2, 8)
189
#define g_macro__has_attribute_cleanup G_GNUC_CHECK_VERSION (3, 3)
190
#define g_macro__has_attribute_fallthrough G_GNUC_CHECK_VERSION (6, 0)
191
#define g_macro__has_attribute_may_alias G_GNUC_CHECK_VERSION (3, 3)
192
#define g_macro__has_attribute_warn_unused_result G_GNUC_CHECK_VERSION (3, 4)
193
194
#endif
195
196
/* Provide macros to feature the GCC function attribute.
197
 */
198
199
/**
200
 * G_GNUC_PURE:
201
 *
202
 * Expands to the GNU C `pure` function attribute if the compiler is gcc.
203
 * Declaring a function as `pure` enables better optimization of calls to
204
 * the function. A `pure` function has no effects except its return value
205
 * and the return value depends only on the parameters and/or global
206
 * variables.
207
 *
208
 * Place the attribute after the declaration, just before the semicolon.
209
 *
210
 * |[<!-- language="C" -->
211
 * gboolean g_type_check_value (const GValue *value) G_GNUC_PURE;
212
 * ]|
213
 *
214
 * See the [GNU C documentation](https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-pure-function-attribute) for more details.
215
 */
216
217
/**
218
 * G_GNUC_MALLOC:
219
 *
220
 * Expands to the
221
 * [GNU C `malloc` function attribute](https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-functions-that-behave-like-malloc)
222
 * if the compiler is gcc.
223
 * Declaring a function as `malloc` enables better optimization of the function,
224
 * but must only be done if the allocation behaviour of the function is fully
225
 * understood, otherwise miscompilation can result.
226
 *
227
 * A function can have the `malloc` attribute if it returns a pointer which is
228
 * guaranteed to not alias with any other pointer valid when the function
229
 * returns, and moreover no pointers to valid objects occur in any storage
230
 * addressed by the returned pointer.
231
 *
232
 * In practice, this means that `G_GNUC_MALLOC` can be used with any function
233
 * which returns unallocated or zeroed-out memory, but not with functions which
234
 * return initialised structures containing other pointers, or with functions
235
 * that reallocate memory. This definition changed in GLib 2.58 to match the
236
 * stricter definition introduced around GCC 5.
237
 *
238
 * Place the attribute after the declaration, just before the semicolon.
239
 *
240
 * |[<!-- language="C" -->
241
 * gpointer g_malloc (gsize n_bytes) G_GNUC_MALLOC G_GNUC_ALLOC_SIZE(1);
242
 * ]|
243
 *
244
 * See the
245
 * [GNU C documentation](https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-functions-that-behave-like-malloc)
246
 * for more details.
247
 *
248
 * Since: 2.6
249
 */
250
251
/**
252
 * G_GNUC_NO_INLINE:
253
 *
254
 * Expands to the GNU C `noinline` function attribute if the compiler is gcc.
255
 * If the compiler is not gcc, this macro expands to nothing.
256
 *
257
 * Declaring a function as `noinline` prevents the function from being
258
 * considered for inlining.
259
 *
260
 * This macro is provided for retro-compatibility and will be eventually
261
 * deprecated, but %G_NO_INLINE should be used instead.
262
 *
263
 * The attribute may be placed before the declaration or definition,
264
 * right before the `static` keyword.
265
 *
266
 * |[<!-- language="C" -->
267
 * G_GNUC_NO_INLINE
268
 * static int
269
 * do_not_inline_this (void)
270
 * {
271
 *   ...
272
 * }
273
 * ]|
274
 *
275
 * See the
276
 * [GNU C documentation](https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-noinline-function-attribute)
277
 * for more details.
278
 *
279
 * See also: %G_NO_INLINE, %G_ALWAYS_INLINE.
280
 *
281
 * Since: 2.58
282
 */
283
284
#if g_macro__has_attribute(__pure__)
285
#define G_GNUC_PURE __attribute__((__pure__))
286
#else
287
#define G_GNUC_PURE
288
#endif
289
290
#if g_macro__has_attribute(__malloc__)
291
#define G_GNUC_MALLOC __attribute__ ((__malloc__))
292
#else
293
#define G_GNUC_MALLOC
294
#endif
295
296
#if g_macro__has_attribute(__noinline__)
297
#define G_GNUC_NO_INLINE __attribute__ ((__noinline__)) \
298
  GLIB_AVAILABLE_MACRO_IN_2_58
299
#else
300
#define G_GNUC_NO_INLINE \
301
  GLIB_AVAILABLE_MACRO_IN_2_58
302
#endif
303
304
/**
305
 * G_GNUC_NULL_TERMINATED:
306
 *
307
 * Expands to the GNU C `sentinel` function attribute if the compiler is gcc.
308
 * This function attribute only applies to variadic functions and instructs
309
 * the compiler to check that the argument list is terminated with an
310
 * explicit %NULL.
311
 *
312
 * Place the attribute after the declaration, just before the semicolon.
313
 *
314
 * |[<!-- language="C" -->
315
 * gchar *g_strconcat (const gchar *string1,
316
 *                     ...) G_GNUC_NULL_TERMINATED;
317
 * ]|
318
 *
319
 * See the [GNU C documentation](https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-sentinel-function-attribute) for more details.
320
 *
321
 * Since: 2.8
322
 */
323
#if g_macro__has_attribute(__sentinel__)
324
#define G_GNUC_NULL_TERMINATED __attribute__((__sentinel__))
325
#else
326
#define G_GNUC_NULL_TERMINATED
327
#endif
328
329
/*
330
 * Clang feature detection: http://clang.llvm.org/docs/LanguageExtensions.html
331
 * These are not available on GCC, but since the pre-processor doesn't do
332
 * operator short-circuiting, we can't use it in a statement or we'll get:
333
 *
334
 * error: missing binary operator before token "("
335
 *
336
 * So we define it to 0 to satisfy the pre-processor.
337
 */
338
339
#ifdef __has_feature
340
#define g_macro__has_feature __has_feature
341
#else
342
#define g_macro__has_feature(x) 0
343
#endif
344
345
#ifdef __has_builtin
346
#define g_macro__has_builtin __has_builtin
347
#else
348
#define g_macro__has_builtin(x) 0
349
#endif
350
351
#ifdef __has_extension
352
#define g_macro__has_extension __has_extension
353
#else
354
#define g_macro__has_extension(x) 0
355
#endif
356
357
/**
358
 * G_GNUC_ALLOC_SIZE:
359
 * @x: the index of the argument specifying the allocation size
360
 *
361
 * Expands to the GNU C `alloc_size` function attribute if the compiler
362
 * is a new enough gcc. This attribute tells the compiler that the
363
 * function returns a pointer to memory of a size that is specified
364
 * by the @xth function parameter.
365
 *
366
 * Place the attribute after the function declaration, just before the
367
 * semicolon.
368
 *
369
 * |[<!-- language="C" -->
370
 * gpointer g_malloc (gsize n_bytes) G_GNUC_MALLOC G_GNUC_ALLOC_SIZE(1);
371
 * ]|
372
 *
373
 * See the [GNU C documentation](https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-alloc_005fsize-function-attribute) for more details.
374
 *
375
 * Since: 2.18
376
 */
377
378
/**
379
 * G_GNUC_ALLOC_SIZE2:
380
 * @x: the index of the argument specifying one factor of the allocation size
381
 * @y: the index of the argument specifying the second factor of the allocation size
382
 *
383
 * Expands to the GNU C `alloc_size` function attribute if the compiler is a
384
 * new enough gcc. This attribute tells the compiler that the function returns
385
 * a pointer to memory of a size that is specified by the product of two
386
 * function parameters.
387
 *
388
 * Place the attribute after the function declaration, just before the
389
 * semicolon.
390
 *
391
 * |[<!-- language="C" -->
392
 * gpointer g_malloc_n (gsize n_blocks,
393
 *                      gsize n_block_bytes) G_GNUC_MALLOC G_GNUC_ALLOC_SIZE2(1, 2);
394
 * ]|
395
 *
396
 * See the [GNU C documentation](https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-alloc_005fsize-function-attribute) for more details.
397
 *
398
 * Since: 2.18
399
 */
400
#if g_macro__has_attribute(__alloc_size__)
401
#define G_GNUC_ALLOC_SIZE(x) __attribute__((__alloc_size__(x)))
402
#define G_GNUC_ALLOC_SIZE2(x,y) __attribute__((__alloc_size__(x,y)))
403
#else
404
#define G_GNUC_ALLOC_SIZE(x)
405
#define G_GNUC_ALLOC_SIZE2(x,y)
406
#endif
407
408
/**
409
 * G_GNUC_PRINTF:
410
 * @format_idx: the index of the argument corresponding to the
411
 *     format string (the arguments are numbered from 1)
412
 * @arg_idx: the index of the first of the format arguments, or 0 if
413
 *     there are no format arguments
414
 *
415
 * Expands to the GNU C `format` function attribute if the compiler is gcc.
416
 * This is used for declaring functions which take a variable number of
417
 * arguments, with the same syntax as `printf()`. It allows the compiler
418
 * to type-check the arguments passed to the function.
419
 *
420
 * Place the attribute after the function declaration, just before the
421
 * semicolon.
422
 *
423
 * See the
424
 * [GNU C documentation](https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-Wformat-3288)
425
 * for more details.
426
 *
427
 * |[<!-- language="C" -->
428
 * gint g_snprintf (gchar  *string,
429
 *                  gulong       n,
430
 *                  gchar const *format,
431
 *                  ...) G_GNUC_PRINTF (3, 4);
432
 * ]|
433
 */
434
435
/**
436
 * G_GNUC_SCANF:
437
 * @format_idx: the index of the argument corresponding to
438
 *     the format string (the arguments are numbered from 1)
439
 * @arg_idx: the index of the first of the format arguments, or 0 if
440
 *     there are no format arguments
441
 *
442
 * Expands to the GNU C `format` function attribute if the compiler is gcc.
443
 * This is used for declaring functions which take a variable number of
444
 * arguments, with the same syntax as `scanf()`. It allows the compiler
445
 * to type-check the arguments passed to the function.
446
 *
447
 * |[<!-- language="C" -->
448
 * int my_scanf (MyStream *stream,
449
 *               const char *format,
450
 *               ...) G_GNUC_SCANF (2, 3);
451
 * int my_vscanf (MyStream *stream,
452
 *                const char *format,
453
 *                va_list ap) G_GNUC_SCANF (2, 0);
454
 * ]|
455
 *
456
 * See the
457
 * [GNU C documentation](https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-Wformat-3288)
458
 * for details.
459
 */
460
461
/**
462
 * G_GNUC_STRFTIME:
463
 * @format_idx: the index of the argument corresponding to
464
 *     the format string (the arguments are numbered from 1)
465
 *
466
 * Expands to the GNU C `strftime` format function attribute if the compiler
467
 * is gcc. This is used for declaring functions which take a format argument
468
 * which is passed to `strftime()` or an API implementing its formats. It allows
469
 * the compiler check the format passed to the function.
470
 *
471
 * |[<!-- language="C" -->
472
 * gsize my_strftime (MyBuffer *buffer,
473
 *                    const char *format,
474
 *                    const struct tm *tm) G_GNUC_STRFTIME (2);
475
 * ]|
476
 *
477
 * See the
478
 * [GNU C documentation](https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-Wformat-3288)
479
 * for details.
480
 *
481
 * Since: 2.60
482
 */
483
484
/**
485
 * G_GNUC_FORMAT:
486
 * @arg_idx: the index of the argument
487
 *
488
 * Expands to the GNU C `format_arg` function attribute if the compiler
489
 * is gcc. This function attribute specifies that a function takes a
490
 * format string for a `printf()`, `scanf()`, `strftime()` or `strfmon()` style
491
 * function and modifies it, so that the result can be passed to a `printf()`,
492
 * `scanf()`, `strftime()` or `strfmon()` style function (with the remaining
493
 * arguments to the format function the same as they would have been
494
 * for the unmodified string).
495
 *
496
 * Place the attribute after the function declaration, just before the
497
 * semicolon.
498
 *
499
 * See the [GNU C documentation](https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-Wformat-nonliteral-1) for more details.
500
 *
501
 * |[<!-- language="C" -->
502
 * gchar *g_dgettext (gchar *domain_name, gchar *msgid) G_GNUC_FORMAT (2);
503
 * ]|
504
 */
505
506
/**
507
 * G_GNUC_NORETURN:
508
 *
509
 * Expands to the GNU C `noreturn` function attribute if the compiler is gcc.
510
 * It is used for declaring functions which never return. It enables
511
 * optimization of the function, and avoids possible compiler warnings.
512
 *
513
 * Since 2.68, it is recommended that code uses %G_NORETURN instead of
514
 * %G_GNUC_NORETURN, as that works on more platforms and compilers (in
515
 * particular, MSVC and C++11) than %G_GNUC_NORETURN, which works with GCC and
516
 * Clang only. %G_GNUC_NORETURN continues to work, so has not been deprecated
517
 * yet.
518
 *
519
 * Place the attribute after the declaration, just before the semicolon.
520
 *
521
 * |[<!-- language="C" -->
522
 * void g_abort (void) G_GNUC_NORETURN;
523
 * ]|
524
 *
525
 * See the [GNU C documentation](https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-noreturn-function-attribute) for more details.
526
 */
527
528
/**
529
 * G_GNUC_CONST:
530
 *
531
 * Expands to the GNU C `const` function attribute if the compiler is gcc.
532
 * Declaring a function as `const` enables better optimization of calls to
533
 * the function. A `const` function doesn't examine any values except its
534
 * parameters, and has no effects except its return value.
535
 *
536
 * Place the attribute after the declaration, just before the semicolon.
537
 *
538
 * |[<!-- language="C" -->
539
 * gchar g_ascii_tolower (gchar c) G_GNUC_CONST;
540
 * ]|
541
 *
542
 * See the [GNU C documentation](https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-const-function-attribute) for more details.
543
 *
544
 * A function that has pointer arguments and examines the data pointed to
545
 * must not be declared `const`. Likewise, a function that calls a non-`const`
546
 * function usually must not be `const`. It doesn't make sense for a `const`
547
 * function to return `void`.
548
 */
549
550
/**
551
 * G_GNUC_UNUSED:
552
 *
553
 * Expands to the GNU C `unused` function attribute if the compiler is gcc.
554
 * It is used for declaring functions and arguments which may never be used.
555
 * It avoids possible compiler warnings.
556
 *
557
 * For functions, place the attribute after the declaration, just before the
558
 * semicolon. For arguments, place the attribute at the beginning of the
559
 * argument declaration.
560
 *
561
 * |[<!-- language="C" -->
562
 * void my_unused_function (G_GNUC_UNUSED gint unused_argument,
563
 *                          gint other_argument) G_GNUC_UNUSED;
564
 * ]|
565
 *
566
 * See the [GNU C documentation](https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-unused-function-attribute) for more details.
567
 */
568
569
/**
570
 * G_GNUC_NO_INSTRUMENT:
571
 *
572
 * Expands to the GNU C `no_instrument_function` function attribute if the
573
 * compiler is gcc. Functions with this attribute will not be instrumented
574
 * for profiling, when the compiler is called with the
575
 * `-finstrument-functions` option.
576
 *
577
 * Place the attribute after the declaration, just before the semicolon.
578
 *
579
 * |[<!-- language="C" -->
580
 * int do_uninteresting_things (void) G_GNUC_NO_INSTRUMENT;
581
 * ]|
582
 *
583
 * See the [GNU C documentation](https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-no_005finstrument_005ffunction-function-attribute) for more details.
584
 */
585
586
#if g_macro__has_attribute(__format__)
587
588
#if !defined (__clang__) && G_GNUC_CHECK_VERSION (4, 4)
589
#define G_GNUC_PRINTF( format_idx, arg_idx )    \
590
  __attribute__((__format__ (gnu_printf, format_idx, arg_idx)))
591
#define G_GNUC_SCANF( format_idx, arg_idx )     \
592
  __attribute__((__format__ (gnu_scanf, format_idx, arg_idx)))
593
#define G_GNUC_STRFTIME( format_idx )    \
594
  __attribute__((__format__ (gnu_strftime, format_idx, 0))) \
595
  GLIB_AVAILABLE_MACRO_IN_2_60
596
#else
597
#define G_GNUC_PRINTF( format_idx, arg_idx )    \
598
  __attribute__((__format__ (__printf__, format_idx, arg_idx)))
599
#define G_GNUC_SCANF( format_idx, arg_idx )     \
600
  __attribute__((__format__ (__scanf__, format_idx, arg_idx)))
601
#define G_GNUC_STRFTIME( format_idx )    \
602
  __attribute__((__format__ (__strftime__, format_idx, 0))) \
603
  GLIB_AVAILABLE_MACRO_IN_2_60
604
#endif
605
606
#else
607
608
#define G_GNUC_PRINTF( format_idx, arg_idx )
609
#define G_GNUC_SCANF( format_idx, arg_idx )
610
#define G_GNUC_STRFTIME( format_idx ) \
611
  GLIB_AVAILABLE_MACRO_IN_2_60
612
613
#endif
614
615
#if g_macro__has_attribute(__format_arg__)
616
#define G_GNUC_FORMAT(arg_idx) \
617
  __attribute__ ((__format_arg__ (arg_idx)))
618
#else
619
#define G_GNUC_FORMAT( arg_idx )
620
#endif
621
622
#if g_macro__has_attribute(__noreturn__)
623
#define G_GNUC_NORETURN \
624
  __attribute__ ((__noreturn__))
625
#else
626
/* NOTE: MSVC has __declspec(noreturn) but unlike GCC __attribute__,
627
 * __declspec can only be placed at the start of the function prototype
628
 * and not at the end, so we can't use it without breaking API.
629
 */
630
#define G_GNUC_NORETURN
631
#endif
632
633
#if g_macro__has_attribute(__const__)
634
#define G_GNUC_CONST \
635
  __attribute__ ((__const__))
636
#else
637
#define G_GNUC_CONST
638
#endif
639
640
#if g_macro__has_attribute(__unused__)
641
#define G_GNUC_UNUSED \
642
  __attribute__ ((__unused__))
643
#else
644
#define G_GNUC_UNUSED
645
#endif
646
647
#if g_macro__has_attribute(__no_instrument_function__)
648
#define G_GNUC_NO_INSTRUMENT \
649
  __attribute__ ((__no_instrument_function__))
650
#else
651
#define G_GNUC_NO_INSTRUMENT
652
#endif
653
654
/**
655
 * G_GNUC_FALLTHROUGH:
656
 *
657
 * Expands to the GNU C `fallthrough` statement attribute if the compiler supports it.
658
 * This allows declaring case statement to explicitly fall through in switch
659
 * statements. To enable this feature, use `-Wimplicit-fallthrough` during
660
 * compilation.
661
 *
662
 * Put the attribute right before the case statement you want to fall through
663
 * to.
664
 *
665
 * |[<!-- language="C" -->
666
 * switch (foo)
667
 *   {
668
 *     case 1:
669
 *       g_message ("it's 1");
670
 *       G_GNUC_FALLTHROUGH;
671
 *     case 2:
672
 *       g_message ("it's either 1 or 2");
673
 *       break;
674
 *   }
675
 * ]|
676
 *
677
 *
678
 * See the [GNU C documentation](https://gcc.gnu.org/onlinedocs/gcc/Statement-Attributes.html#index-fallthrough-statement-attribute) for more details.
679
 *
680
 * Since: 2.60
681
 */
682
#if g_macro__has_attribute(fallthrough)
683
#define G_GNUC_FALLTHROUGH __attribute__((fallthrough)) \
684
  GLIB_AVAILABLE_MACRO_IN_2_60
685
#else
686
#define G_GNUC_FALLTHROUGH \
687
  GLIB_AVAILABLE_MACRO_IN_2_60
688
#endif
689
690
/**
691
 * G_GNUC_DEPRECATED:
692
 *
693
 * Expands to the GNU C `deprecated` attribute if the compiler is gcc.
694
 * It can be used to mark `typedef`s, variables and functions as deprecated.
695
 * When called with the `-Wdeprecated-declarations` option,
696
 * gcc will generate warnings when deprecated interfaces are used.
697
 *
698
 * Place the attribute after the declaration, just before the semicolon.
699
 *
700
 * |[<!-- language="C" -->
701
 * int my_mistake (void) G_GNUC_DEPRECATED;
702
 * ]|
703
 *
704
 * See the [GNU C documentation](https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-deprecated-function-attribute) for more details.
705
 *
706
 * Since: 2.2
707
 */
708
#if g_macro__has_attribute(__deprecated__)
709
#define G_GNUC_DEPRECATED __attribute__((__deprecated__))
710
#else
711
#define G_GNUC_DEPRECATED
712
#endif /* __GNUC__ */
713
714
/**
715
 * G_GNUC_DEPRECATED_FOR:
716
 * @f: the intended replacement for the deprecated symbol,
717
 *     such as the name of a function
718
 *
719
 * Like %G_GNUC_DEPRECATED, but names the intended replacement for the
720
 * deprecated symbol if the version of gcc in use is new enough to support
721
 * custom deprecation messages.
722
 *
723
 * Place the attribute after the declaration, just before the semicolon.
724
 *
725
 * |[<!-- language="C" -->
726
 * int my_mistake (void) G_GNUC_DEPRECATED_FOR(my_replacement);
727
 * ]|
728
 *
729
 * See the [GNU C documentation](https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-deprecated-function-attribute) for more details.
730
 *
731
 * Note that if @f is a macro, it will be expanded in the warning message.
732
 * You can enclose it in quotes to prevent this. (The quotes will show up
733
 * in the warning, but it's better than showing the macro expansion.)
734
 *
735
 * Since: 2.26
736
 */
737
#if G_GNUC_CHECK_VERSION(4, 5) || defined(__clang__)
738
#define G_GNUC_DEPRECATED_FOR(f)                        \
739
  __attribute__((deprecated("Use " #f " instead")))     \
740
  GLIB_AVAILABLE_MACRO_IN_2_26
741
#else
742
#define G_GNUC_DEPRECATED_FOR(f)      G_GNUC_DEPRECATED \
743
  GLIB_AVAILABLE_MACRO_IN_2_26
744
#endif /* __GNUC__ */
745
746
#ifdef __ICC
747
#define G_GNUC_BEGIN_IGNORE_DEPRECATIONS                \
748
  _Pragma ("warning (push)")                            \
749
  _Pragma ("warning (disable:1478)")
750
#define G_GNUC_END_IGNORE_DEPRECATIONS      \
751
  _Pragma ("warning (pop)")
752
#elif G_GNUC_CHECK_VERSION(4, 6)
753
#define G_GNUC_BEGIN_IGNORE_DEPRECATIONS    \
754
  _Pragma ("GCC diagnostic push")     \
755
  _Pragma ("GCC diagnostic ignored \"-Wdeprecated-declarations\"")
756
#define G_GNUC_END_IGNORE_DEPRECATIONS      \
757
  _Pragma ("GCC diagnostic pop")
758
#elif defined (_MSC_VER) && (_MSC_VER >= 1500) && !defined (__clang__)
759
#define G_GNUC_BEGIN_IGNORE_DEPRECATIONS    \
760
  __pragma (warning (push))  \
761
  __pragma (warning (disable : 4996))
762
#define G_GNUC_END_IGNORE_DEPRECATIONS      \
763
  __pragma (warning (pop))
764
#elif defined (__clang__)
765
#define G_GNUC_BEGIN_IGNORE_DEPRECATIONS \
766
  _Pragma("clang diagnostic push") \
767
  _Pragma("clang diagnostic ignored \"-Wdeprecated-declarations\"")
768
#define G_GNUC_END_IGNORE_DEPRECATIONS \
769
  _Pragma("clang diagnostic pop")
770
#else
771
#define G_GNUC_BEGIN_IGNORE_DEPRECATIONS
772
#define G_GNUC_END_IGNORE_DEPRECATIONS
773
#define GLIB_CANNOT_IGNORE_DEPRECATIONS
774
#endif
775
776
/**
777
 * G_GNUC_MAY_ALIAS:
778
 *
779
 * Expands to the GNU C `may_alias` type attribute if the compiler is gcc.
780
 * Types with this attribute will not be subjected to type-based alias
781
 * analysis, but are assumed to alias with any other type, just like `char`.
782
 *
783
 * See the [GNU C documentation](https://gcc.gnu.org/onlinedocs/gcc/Common-Type-Attributes.html#index-may_005falias-type-attribute) for details.
784
 *
785
 * Since: 2.14
786
 */
787
#if g_macro__has_attribute(may_alias)
788
#define G_GNUC_MAY_ALIAS __attribute__((may_alias))
789
#else
790
#define G_GNUC_MAY_ALIAS
791
#endif
792
793
/**
794
 * G_GNUC_WARN_UNUSED_RESULT:
795
 *
796
 * Expands to the GNU C `warn_unused_result` function attribute if the compiler
797
 * is gcc. This function attribute makes the compiler emit a warning if the
798
 * result of a function call is ignored.
799
 *
800
 * Place the attribute after the declaration, just before the semicolon.
801
 *
802
 * |[<!-- language="C" -->
803
 * GList *g_list_append (GList *list,
804
 *                       gpointer data) G_GNUC_WARN_UNUSED_RESULT;
805
 * ]|
806
 *
807
 * See the [GNU C documentation](https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-warn_005funused_005fresult-function-attribute) for more details.
808
 *
809
 * Since: 2.10
810
 */
811
#if g_macro__has_attribute(warn_unused_result)
812
#define G_GNUC_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
813
#else
814
#define G_GNUC_WARN_UNUSED_RESULT
815
#endif /* __GNUC__ */
816
817
/**
818
 * G_GNUC_FUNCTION:
819
 *
820
 * Expands to "" on all modern compilers, and to  __FUNCTION__ on gcc
821
 * version 2.x. Don't use it.
822
 *
823
 * Deprecated: 2.16: Use G_STRFUNC() instead
824
 */
825
826
/**
827
 * G_GNUC_PRETTY_FUNCTION:
828
 *
829
 * Expands to "" on all modern compilers, and to __PRETTY_FUNCTION__
830
 * on gcc version 2.x. Don't use it.
831
 *
832
 * Deprecated: 2.16: Use G_STRFUNC() instead
833
 */
834
835
/* Wrap the gcc __PRETTY_FUNCTION__ and __FUNCTION__ variables with
836
 * macros, so we can refer to them as strings unconditionally.
837
 * usage not-recommended since gcc-3.0
838
 *
839
 * Mark them as deprecated since 2.26, since that’s when version macros were
840
 * introduced.
841
 */
842
#if defined (__GNUC__) && (__GNUC__ < 3)
843
#define G_GNUC_FUNCTION         __FUNCTION__ GLIB_DEPRECATED_MACRO_IN_2_26_FOR(G_STRFUNC)
844
#define G_GNUC_PRETTY_FUNCTION  __PRETTY_FUNCTION__ GLIB_DEPRECATED_MACRO_IN_2_26_FOR(G_STRFUNC)
845
#else   /* !__GNUC__ */
846
#define G_GNUC_FUNCTION         "" GLIB_DEPRECATED_MACRO_IN_2_26_FOR(G_STRFUNC)
847
#define G_GNUC_PRETTY_FUNCTION  "" GLIB_DEPRECATED_MACRO_IN_2_26_FOR(G_STRFUNC)
848
#endif  /* !__GNUC__ */
849
850
#if g_macro__has_feature(attribute_analyzer_noreturn) && defined(__clang_analyzer__)
851
#define G_ANALYZER_ANALYZING 1
852
#define G_ANALYZER_NORETURN __attribute__((analyzer_noreturn))
853
#elif defined(__COVERITY__)
854
#define G_ANALYZER_ANALYZING 1
855
#define G_ANALYZER_NORETURN __attribute__((noreturn))
856
#else
857
#define G_ANALYZER_ANALYZING 0
858
#define G_ANALYZER_NORETURN
859
#endif
860
861
#define G_STRINGIFY(macro_or_string)  G_STRINGIFY_ARG (macro_or_string)
862
#define G_STRINGIFY_ARG(contents) #contents
863
864
#ifndef __GI_SCANNER__ /* The static assert macro really confuses the introspection parser */
865
#define G_PASTE_ARGS(identifier1,identifier2) identifier1 ## identifier2
866
#define G_PASTE(identifier1,identifier2)      G_PASTE_ARGS (identifier1, identifier2)
867
#if G_CXX_STD_CHECK_VERSION (11)
868
#define G_STATIC_ASSERT(expr) static_assert (expr, "Expression evaluates to false")
869
#elif (G_C_STD_CHECK_VERSION (11) || \
870
     g_macro__has_feature(c_static_assert) || g_macro__has_extension(c_static_assert))
871
#define G_STATIC_ASSERT(expr) _Static_assert (expr, "Expression evaluates to false")
872
#else
873
#ifdef __COUNTER__
874
#define G_STATIC_ASSERT(expr) typedef char G_PASTE (_GStaticAssertCompileTimeAssertion_, __COUNTER__)[(expr) ? 1 : -1] G_GNUC_UNUSED
875
#else
876
#define G_STATIC_ASSERT(expr) typedef char G_PASTE (_GStaticAssertCompileTimeAssertion_, __LINE__)[(expr) ? 1 : -1] G_GNUC_UNUSED
877
#endif
878
#endif /* G_CXX_STD_CHECK_VERSION (11) */
879
#define G_STATIC_ASSERT_EXPR(expr) ((void) sizeof (char[(expr) ? 1 : -1]))
880
#endif /* !__GI_SCANNER__ */
881
882
/* Provide a string identifying the current code position */
883
#if defined (__GNUC__) && (__GNUC__ < 3) && !defined (G_CXX_STD_VERSION)
884
#define G_STRLOC  __FILE__ ":" G_STRINGIFY (__LINE__) ":" __PRETTY_FUNCTION__ "()"
885
#else
886
#define G_STRLOC  __FILE__ ":" G_STRINGIFY (__LINE__)
887
#endif
888
889
/* Provide a string identifying the current function, non-concatenatable */
890
#if defined (__GNUC__) && defined (G_CXX_STD_VERSION)
891
#define G_STRFUNC     ((const char*) (__PRETTY_FUNCTION__))
892
#elif G_C_STD_CHECK_VERSION (99)
893
#define G_STRFUNC     ((const char*) (__func__))
894
#elif defined (__GNUC__) || (defined(_MSC_VER) && (_MSC_VER > 1300))
895
#define G_STRFUNC     ((const char*) (__FUNCTION__))
896
#else
897
#define G_STRFUNC     ((const char*) ("???"))
898
#endif
899
900
/* Guard C code in headers, while including them from C++ */
901
#ifdef  G_CXX_STD_VERSION
902
#define G_BEGIN_DECLS  extern "C" {
903
#define G_END_DECLS    }
904
#else
905
#define G_BEGIN_DECLS
906
#define G_END_DECLS
907
#endif
908
909
/* Provide definitions for some commonly used macros.
910
 *  Some of them are only provided if they haven't already
911
 *  been defined. It is assumed that if they are already
912
 *  defined then the current definition is correct.
913
 */
914
#ifndef NULL
915
#  if G_CXX_STD_CHECK_VERSION (11)
916
#    define NULL (nullptr)
917
#  elif defined (G_CXX_STD_VERSION)
918
#    define NULL (0L)
919
#  else
920
#    define NULL ((void*) 0)
921
#  endif /* G_CXX_STD_CHECK_VERSION (11) */
922
#endif
923
924
#ifndef FALSE
925
#define FALSE (0)
926
#endif
927
928
#ifndef TRUE
929
#define TRUE  (!FALSE)
930
#endif
931
932
#undef  MAX
933
#define MAX(a, b)  (((a) > (b)) ? (a) : (b))
934
935
#undef  MIN
936
#define MIN(a, b)  (((a) < (b)) ? (a) : (b))
937
938
#undef  ABS
939
#define ABS(a)     (((a) < 0) ? -(a) : (a))
940
941
#undef  CLAMP
942
#define CLAMP(x, low, high)  (((x) > (high)) ? (high) : (((x) < (low)) ? (low) : (x)))
943
944
#define G_APPROX_VALUE(a, b, epsilon) \
945
  (((a) > (b) ? (a) - (b) : (b) - (a)) < (epsilon))
946
947
/* Count the number of elements in an array. The array must be defined
948
 * as such; using this with a dynamically allocated array will give
949
 * incorrect results.
950
 */
951
#define G_N_ELEMENTS(arr)   (sizeof (arr) / sizeof ((arr)[0]))
952
953
/* Macros by analogy to GINT_TO_POINTER, GPOINTER_TO_INT
954
 */
955
#define GPOINTER_TO_SIZE(p) ((gsize) (p))
956
#define GSIZE_TO_POINTER(s) ((gpointer) (guintptr) (gsize) (s))
957
958
/* Provide convenience macros for handling structure
959
 * fields through their offsets.
960
 */
961
962
#if G_GNUC_CHECK_VERSION(4, 0) || defined(_MSC_VER)
963
#define G_STRUCT_OFFSET(struct_type, member) \
964
      ((glong) offsetof (struct_type, member))
965
#else
966
#define G_STRUCT_OFFSET(struct_type, member)  \
967
      ((glong) ((guint8*) &((struct_type*) 0)->member))
968
#endif
969
970
#define G_STRUCT_MEMBER_P(struct_p, struct_offset)   \
971
    ((gpointer) ((guint8*) (struct_p) + (glong) (struct_offset)))
972
#define G_STRUCT_MEMBER(member_type, struct_p, struct_offset)   \
973
    (*(member_type*) G_STRUCT_MEMBER_P ((struct_p), (struct_offset)))
974
975
/* Provide simple macro statement wrappers:
976
 *   G_STMT_START { statements; } G_STMT_END;
977
 * This can be used as a single statement, like:
978
 *   if (x) G_STMT_START { ... } G_STMT_END; else ...
979
 * This intentionally does not use compiler extensions like GCC's '({...})' to
980
 * avoid portability issue or side effects when compiled with different compilers.
981
 * MSVC complains about "while(0)": C4127: "Conditional expression is constant",
982
 * so we use __pragma to avoid the warning since the use here is intentional.
983
 */
984
#if !(defined (G_STMT_START) && defined (G_STMT_END))
985
#define G_STMT_START  do
986
#if defined (_MSC_VER) && (_MSC_VER >= 1500)
987
#define G_STMT_END \
988
    __pragma(warning(push)) \
989
    __pragma(warning(disable:4127)) \
990
    while(0) \
991
    __pragma(warning(pop))
992
#else
993
#define G_STMT_END    while (0)
994
#endif
995
#endif
996
997
/* Provide G_ALIGNOF alignment macro.
998
 *
999
 * Note we cannot use the gcc __alignof__ operator here, as that returns the
1000
 * preferred alignment rather than the minimal alignment. See
1001
 * https://gitlab.gnome.org/GNOME/glib/merge_requests/538/diffs#note_390790.
1002
 */
1003
1004
/**
1005
 * G_ALIGNOF
1006
 * @type: a type-name
1007
 *
1008
 * Return the minimal alignment required by the platform ABI for values of the given
1009
 * type. The address of a variable or struct member of the given type must always be
1010
 * a multiple of this alignment. For example, most platforms require int variables
1011
 * to be aligned at a 4-byte boundary, so `G_ALIGNOF (int)` is 4 on most platforms.
1012
 *
1013
 * Note this is not necessarily the same as the value returned by GCC’s
1014
 * `__alignof__` operator, which returns the preferred alignment for a type.
1015
 * The preferred alignment may be a stricter alignment than the minimal
1016
 * alignment.
1017
 *
1018
 * Since: 2.60
1019
 */
1020
#if G_C_STD_CHECK_VERSION (11)
1021
#define G_ALIGNOF(type) _Alignof (type) \
1022
  GLIB_AVAILABLE_MACRO_IN_2_60
1023
#else
1024
#define G_ALIGNOF(type) (G_STRUCT_OFFSET (struct { char a; type b; }, b)) \
1025
  GLIB_AVAILABLE_MACRO_IN_2_60
1026
#endif
1027
1028
/**
1029
 * G_CONST_RETURN:
1030
 *
1031
 * If %G_DISABLE_CONST_RETURNS is defined, this macro expands
1032
 * to nothing. By default, the macro expands to const. The macro
1033
 * can be used in place of const for functions that return a value
1034
 * that should not be modified. The purpose of this macro is to allow
1035
 * us to turn on const for returned constant strings by default, while
1036
 * allowing programmers who find that annoying to turn it off. This macro
1037
 * should only be used for return values and for "out" parameters, it
1038
 * doesn't make sense for "in" parameters.
1039
 *
1040
 * Deprecated: 2.30: API providers should replace all existing uses with
1041
 * const and API consumers should adjust their code accordingly
1042
 */
1043
#ifdef G_DISABLE_CONST_RETURNS
1044
#define G_CONST_RETURN GLIB_DEPRECATED_MACRO_IN_2_30_FOR(const)
1045
#else
1046
#define G_CONST_RETURN const GLIB_DEPRECATED_MACRO_IN_2_30_FOR(const)
1047
#endif
1048
1049
/**
1050
 * G_NORETURN:
1051
 *
1052
 * Expands to the GNU C or MSVC `noreturn` function attribute depending on
1053
 * the compiler. It is used for declaring functions which never return.
1054
 * Enables optimization of the function, and avoids possible compiler warnings.
1055
 *
1056
 * Note that %G_NORETURN supersedes the previous %G_GNUC_NORETURN macro, which
1057
 * will eventually be deprecated. %G_NORETURN supports more platforms.
1058
 *
1059
 * Place the attribute before the function declaration as follows:
1060
 *
1061
 * |[<!-- language="C" -->
1062
 * G_NORETURN void g_abort (void);
1063
 * ]|
1064
 *
1065
 * Since: 2.68
1066
 */
1067
/* Note: We can’t annotate this with GLIB_AVAILABLE_MACRO_IN_2_68 because it’s
1068
 * used within the GLib headers in function declarations which are always
1069
 * evaluated when a header is included. This results in warnings in third party
1070
 * code which includes glib.h, even if the third party code doesn’t use the new
1071
 * macro itself. */
1072
#if G_CXX_STD_CHECK_VERSION (11)
1073
  /* Use ISO C++11 syntax when the compiler supports it.  */
1074
# define G_NORETURN [[noreturn]]
1075
#elif g_macro__has_attribute(__noreturn__)
1076
  /* For compatibility with G_NORETURN_FUNCPTR on clang, use
1077
     __attribute__((__noreturn__)), not _Noreturn.  */
1078
# define G_NORETURN __attribute__ ((__noreturn__))
1079
#elif defined (_MSC_VER) && (1200 <= _MSC_VER)
1080
  /* Use MSVC specific syntax.  */
1081
# define G_NORETURN __declspec (noreturn)
1082
  /* Use ISO C11 syntax when the compiler supports it.  */
1083
#elif G_C_STD_CHECK_VERSION (11)
1084
# define G_NORETURN _Noreturn
1085
#else
1086
# define G_NORETURN /* empty */
1087
#endif
1088
1089
/**
1090
 * G_NORETURN_FUNCPTR:
1091
 *
1092
 * Expands to the GNU C or MSVC `noreturn` function attribute depending on
1093
 * the compiler. It is used for declaring function pointers which never return.
1094
 * Enables optimization of the function, and avoids possible compiler warnings.
1095
 *
1096
 * Place the attribute before the function declaration as follows:
1097
 *
1098
 * |[<!-- language="C" -->
1099
 * G_NORETURN_FUNCPTR void (*funcptr) (void);
1100
 * ]|
1101
 *
1102
 * Note that if the function is not a function pointer, you can simply use
1103
 * the %G_NORETURN macro as follows:
1104
 *
1105
 * |[<!-- language="C" -->
1106
 * G_NORETURN void g_abort (void);
1107
 * ]|
1108
 *
1109
 * Since: 2.68
1110
 */
1111
#if g_macro__has_attribute(__noreturn__)
1112
# define G_NORETURN_FUNCPTR __attribute__ ((__noreturn__))      \
1113
  GLIB_AVAILABLE_MACRO_IN_2_68
1114
#else
1115
# define G_NORETURN_FUNCPTR /* empty */         \
1116
  GLIB_AVAILABLE_MACRO_IN_2_68
1117
#endif
1118
1119
/**
1120
 * G_ALWAYS_INLINE:
1121
 *
1122
 * Expands to the GNU C `always_inline` or MSVC `__forceinline` function
1123
 * attribute depending on the compiler. It is used for declaring functions
1124
 * as always inlined, ignoring the compiler optimization levels.
1125
 *
1126
 * The attribute may be placed before the declaration or definition,
1127
 * right before the `static` keyword.
1128
 *
1129
 * |[<!-- language="C" -->
1130
 * G_ALWAYS_INLINE
1131
 * static int
1132
 * do_inline_this (void)
1133
 * {
1134
 *   ...
1135
 * }
1136
 * ]|
1137
 *
1138
 * See the
1139
 * [GNU C documentation](https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-always_005finline-function-attribute)
1140
 * and the
1141
 * [MSVC documentation](https://docs.microsoft.com/en-us/visualstudio/misc/inline-inline-forceinline)
1142
 *
1143
 * Since: 2.74
1144
 */
1145
/* Note: We can’t annotate this with GLIB_AVAILABLE_MACRO_IN_2_74 because it’s
1146
 * used within the GLib headers in function declarations which are always
1147
 * evaluated when a header is included. This results in warnings in third party
1148
 * code which includes glib.h, even if the third party code doesn’t use the new
1149
 * macro itself. */
1150
#if g_macro__has_attribute(__always_inline__)
1151
# if G_CXX_STD_CHECK_VERSION (11)
1152
    /* Use ISO C++11 syntax when the compiler supports it. */
1153
#   define G_ALWAYS_INLINE [[gnu::always_inline]]
1154
# else
1155
#   define G_ALWAYS_INLINE __attribute__ ((__always_inline__))
1156
# endif
1157
#elif defined (_MSC_VER)
1158
  /* Use MSVC specific syntax.  */
1159
# if G_CXX_STD_CHECK_VERSION (20) && _MSC_VER >= 1927
1160
#  define G_ALWAYS_INLINE [[msvc::forceinline]]
1161
# else
1162
#  define G_ALWAYS_INLINE __forceinline
1163
# endif
1164
#else
1165
# define G_ALWAYS_INLINE /* empty */
1166
#endif
1167
1168
/**
1169
 * G_NO_INLINE:
1170
 *
1171
 * Expands to the GNU C or MSVC `noinline` function attribute
1172
 * depending on the compiler. It is used for declaring functions
1173
 * preventing from being considered for inlining.
1174
 *
1175
 * Note that %G_NO_INLINE supersedes the previous %G_GNUC_NO_INLINE
1176
 * macro, which will eventually be deprecated.
1177
 * %G_NO_INLINE supports more platforms.
1178
 *
1179
 * The attribute may be placed before the declaration or definition,
1180
 * right before the `static` keyword.
1181
 *
1182
 * |[<!-- language="C" -->
1183
 * G_NO_INLINE
1184
 * static int
1185
 * do_not_inline_this (void)
1186
 * {
1187
 *   ...
1188
 * }
1189
 * ]|
1190
 *
1191
 * Since: 2.74
1192
 */
1193
/* Note: We can’t annotate this with GLIB_AVAILABLE_MACRO_IN_2_74 because it’s
1194
 * used within the GLib headers in function declarations which are always
1195
 * evaluated when a header is included. This results in warnings in third party
1196
 * code which includes glib.h, even if the third party code doesn’t use the new
1197
 * macro itself. */
1198
#if g_macro__has_attribute(__noinline__)
1199
# if G_CXX_STD_CHECK_VERSION (11)
1200
    /* Use ISO C++11 syntax when the compiler supports it. */
1201
#   if defined (__GNUC__)
1202
#      define G_NO_INLINE [[gnu::noinline]]
1203
#   elif defined (_MSC_VER)
1204
#      if G_CXX_STD_CHECK_VERSION (20) && _MSC_VER >= 1927
1205
#        define G_NO_INLINE [[msvc::noinline]]
1206
#      else
1207
#        define G_NO_INLINE __declspec (noinline)
1208
#      endif
1209
#   endif
1210
# else
1211
#   define G_NO_INLINE __attribute__ ((__noinline__))
1212
# endif
1213
#elif defined (_MSC_VER) && (1200 <= _MSC_VER)
1214
  /* Use MSVC specific syntax.  */
1215
    /* Use ISO C++11 syntax when the compiler supports it. */
1216
# if G_CXX_STD_CHECK_VERSION (20) && _MSC_VER >= 1927
1217
#   define G_NO_INLINE [[msvc::noinline]]
1218
# else
1219
#   define G_NO_INLINE __declspec (noinline)
1220
# endif
1221
#else
1222
# define G_NO_INLINE /* empty */
1223
#endif
1224
1225
/*
1226
 * The G_LIKELY and G_UNLIKELY macros let the programmer give hints to 
1227
 * the compiler about the expected result of an expression. Some compilers
1228
 * can use this information for optimizations.
1229
 *
1230
 * The _G_BOOLEAN_EXPR macro is intended to trigger a gcc warning when
1231
 * putting assignments in g_return_if_fail ().  
1232
 */
1233
#if G_GNUC_CHECK_VERSION(2, 0) && defined(__OPTIMIZE__)
1234
#define _G_BOOLEAN_EXPR_IMPL(uniq, expr)        \
1235
 G_GNUC_EXTENSION ({                            \
1236
   int G_PASTE (_g_boolean_var_, uniq);         \
1237
   if (expr)                                    \
1238
      G_PASTE (_g_boolean_var_, uniq) = 1;      \
1239
   else                                         \
1240
      G_PASTE (_g_boolean_var_, uniq) = 0;      \
1241
   G_PASTE (_g_boolean_var_, uniq);             \
1242
})
1243
#define _G_BOOLEAN_EXPR(expr) _G_BOOLEAN_EXPR_IMPL (__COUNTER__, expr)
1244
#define G_LIKELY(expr) (__builtin_expect (_G_BOOLEAN_EXPR(expr), 1))
1245
#define G_UNLIKELY(expr) (__builtin_expect (_G_BOOLEAN_EXPR(expr), 0))
1246
#else
1247
#define G_LIKELY(expr) (expr)
1248
#define G_UNLIKELY(expr) (expr)
1249
#endif
1250
1251
#if __GNUC__ >= 4 && !defined(_WIN32) && !defined(__CYGWIN__)
1252
#define G_HAVE_GNUC_VISIBILITY 1
1253
#endif
1254
1255
/* GLIB_CANNOT_IGNORE_DEPRECATIONS is defined above for compilers that do not
1256
 * have a way to temporarily suppress deprecation warnings. In these cases,
1257
 * suppress the deprecated attribute altogether (otherwise a simple #include
1258
 * <glib.h> will emit a barrage of warnings).
1259
 */
1260
#if defined(GLIB_CANNOT_IGNORE_DEPRECATIONS)
1261
#define G_DEPRECATED
1262
#elif G_GNUC_CHECK_VERSION(3, 1) || defined(__clang__)
1263
#define G_DEPRECATED __attribute__((__deprecated__))
1264
#elif defined(_MSC_VER) && (_MSC_VER >= 1300)
1265
#define G_DEPRECATED __declspec(deprecated)
1266
#else
1267
#define G_DEPRECATED
1268
#endif
1269
1270
#if defined(GLIB_CANNOT_IGNORE_DEPRECATIONS)
1271
#define G_DEPRECATED_FOR(f) G_DEPRECATED
1272
#elif G_GNUC_CHECK_VERSION(4, 5) || defined(__clang__)
1273
#define G_DEPRECATED_FOR(f) __attribute__((__deprecated__("Use '" #f "' instead")))
1274
#elif defined(_MSC_FULL_VER) && (_MSC_FULL_VER > 140050320)
1275
#define G_DEPRECATED_FOR(f) __declspec(deprecated("is deprecated. Use '" #f "' instead"))
1276
#else
1277
#define G_DEPRECATED_FOR(f) G_DEPRECATED
1278
#endif
1279
1280
#if G_GNUC_CHECK_VERSION(4, 5) || defined(__clang__)
1281
#define G_UNAVAILABLE(maj,min) __attribute__((deprecated("Not available before " #maj "." #min)))
1282
#elif defined(_MSC_FULL_VER) && (_MSC_FULL_VER > 140050320)
1283
#define G_UNAVAILABLE(maj,min) __declspec(deprecated("is not available before " #maj "." #min))
1284
#else
1285
#define G_UNAVAILABLE(maj,min) G_DEPRECATED
1286
#endif
1287
1288
/* These macros are used to mark deprecated symbols in GLib headers,
1289
 * and thus have to be exposed in installed headers. But please
1290
 * do *not* use them in other projects. Instead, use G_DEPRECATED
1291
 * or define your own wrappers around it.
1292
 */
1293
1294
#if !defined(GLIB_DISABLE_DEPRECATION_WARNINGS) && \
1295
    (G_GNUC_CHECK_VERSION(4, 6) ||                 \
1296
     __clang_major__ > 3 || (__clang_major__ == 3 && __clang_minor__ >= 4))
1297
#define _GLIB_GNUC_DO_PRAGMA(x) _Pragma(G_STRINGIFY (x))
1298
#define GLIB_DEPRECATED_MACRO _GLIB_GNUC_DO_PRAGMA(GCC warning "Deprecated pre-processor symbol")
1299
#define GLIB_DEPRECATED_MACRO_FOR(f) \
1300
  _GLIB_GNUC_DO_PRAGMA(GCC warning G_STRINGIFY (Deprecated pre-processor symbol: replace with #f))
1301
#define GLIB_UNAVAILABLE_MACRO(maj,min) \
1302
  _GLIB_GNUC_DO_PRAGMA(GCC warning G_STRINGIFY (Not available before maj.min))
1303
#else
1304
#define GLIB_DEPRECATED_MACRO
1305
#define GLIB_DEPRECATED_MACRO_FOR(f)
1306
#define GLIB_UNAVAILABLE_MACRO(maj,min)
1307
#endif
1308
1309
#if !defined(GLIB_DISABLE_DEPRECATION_WARNINGS) && \
1310
    (G_GNUC_CHECK_VERSION(6, 1) ||                 \
1311
     (defined (__clang_major__) && (__clang_major__ > 3 || (__clang_major__ == 3 && __clang_minor__ >= 0))))
1312
#define GLIB_DEPRECATED_ENUMERATOR G_DEPRECATED
1313
#define GLIB_DEPRECATED_ENUMERATOR_FOR(f) G_DEPRECATED_FOR(f)
1314
#define GLIB_UNAVAILABLE_ENUMERATOR(maj,min) G_UNAVAILABLE(maj,min)
1315
#else
1316
#define GLIB_DEPRECATED_ENUMERATOR
1317
#define GLIB_DEPRECATED_ENUMERATOR_FOR(f)
1318
#define GLIB_UNAVAILABLE_ENUMERATOR(maj,min)
1319
#endif
1320
1321
#if !defined(GLIB_DISABLE_DEPRECATION_WARNINGS) && \
1322
    (G_GNUC_CHECK_VERSION(3, 1) ||                 \
1323
     (defined (__clang_major__) && (__clang_major__ > 3 || (__clang_major__ == 3 && __clang_minor__ >= 0))))
1324
#define GLIB_DEPRECATED_TYPE G_DEPRECATED
1325
#define GLIB_DEPRECATED_TYPE_FOR(f) G_DEPRECATED_FOR(f)
1326
#define GLIB_UNAVAILABLE_TYPE(maj,min) G_UNAVAILABLE(maj,min)
1327
#else
1328
#define GLIB_DEPRECATED_TYPE
1329
#define GLIB_DEPRECATED_TYPE_FOR(f)
1330
#define GLIB_UNAVAILABLE_TYPE(maj,min)
1331
#endif
1332
1333
#ifndef __GI_SCANNER__
1334
1335
#if g_macro__has_attribute(cleanup)
1336
1337
/* these macros are private; note that gstdio.h also uses _GLIB_CLEANUP */
1338
#define _GLIB_AUTOPTR_FUNC_NAME(TypeName) glib_autoptr_cleanup_##TypeName
1339
#define _GLIB_AUTOPTR_CLEAR_FUNC_NAME(TypeName) glib_autoptr_clear_##TypeName
1340
#define _GLIB_AUTOPTR_TYPENAME(TypeName)  TypeName##_autoptr
1341
#define _GLIB_AUTOPTR_LIST_FUNC_NAME(TypeName) glib_listautoptr_cleanup_##TypeName
1342
#define _GLIB_AUTOPTR_LIST_TYPENAME(TypeName)  TypeName##_listautoptr
1343
#define _GLIB_AUTOPTR_SLIST_FUNC_NAME(TypeName) glib_slistautoptr_cleanup_##TypeName
1344
#define _GLIB_AUTOPTR_SLIST_TYPENAME(TypeName)  TypeName##_slistautoptr
1345
#define _GLIB_AUTOPTR_QUEUE_FUNC_NAME(TypeName) glib_queueautoptr_cleanup_##TypeName
1346
#define _GLIB_AUTOPTR_QUEUE_TYPENAME(TypeName)  TypeName##_queueautoptr
1347
#define _GLIB_AUTO_FUNC_NAME(TypeName)    glib_auto_cleanup_##TypeName
1348
#define _GLIB_CLEANUP(func)               __attribute__((cleanup(func)))
1349
#define _GLIB_DEFINE_AUTOPTR_CLEANUP_FUNCS(TypeName, ParentName, cleanup) \
1350
  typedef TypeName *_GLIB_AUTOPTR_TYPENAME(TypeName);                                                           \
1351
  typedef GList *_GLIB_AUTOPTR_LIST_TYPENAME(TypeName);                                                         \
1352
  typedef GSList *_GLIB_AUTOPTR_SLIST_TYPENAME(TypeName);                                                       \
1353
  typedef GQueue *_GLIB_AUTOPTR_QUEUE_TYPENAME(TypeName);                                                       \
1354
  G_GNUC_BEGIN_IGNORE_DEPRECATIONS                                                                              \
1355
  static G_GNUC_UNUSED inline void _GLIB_AUTOPTR_CLEAR_FUNC_NAME(TypeName) (TypeName *_ptr)                     \
1356
0
    { if (_ptr) (cleanup) ((ParentName *) _ptr); }                                                              \
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GAsyncQueue(_GAsyncQueue*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GBookmarkFile(_GBookmarkFile*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GBytes(_GBytes*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GChecksum(_GChecksum*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GDateTime(_GDateTime*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GDate(_GDate*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GDir(_GDir*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GError(_GError*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GHashTable(_GHashTable*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GHmac(_GHmac*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GIOChannel(_GIOChannel*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GKeyFile(_GKeyFile*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GList(_GList*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GArray(_GArray*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GPtrArray(_GPtrArray*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GByteArray(_GByteArray*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GMainContext(_GMainContext*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GMainContextPusher(void*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GMainLoop(_GMainLoop*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GSource(_GSource*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GMappedFile(_GMappedFile*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GMarkupParseContext(_GMarkupParseContext*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GNode(_GNode*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GOptionContext(_GOptionContext*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GOptionGroup(_GOptionGroup*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GPatternSpec(_GPatternSpec*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GQueue(_GQueue*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GRand(_GRand*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GRegex(_GRegex*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GMatchInfo(_GMatchInfo*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GScanner(_GScanner*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GSequence(_GSequence*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GSList(_GSList*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GString(_GString*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GStringChunk(_GStringChunk*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GStrvBuilder(_GStrvBuilder*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GThread(_GThread*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GMutexLocker(void*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GRecMutexLocker(void*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GRWLockWriterLocker(void*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GRWLockReaderLocker(void*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GTimer(_GTimer*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GTimeZone(_GTimeZone*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GTree(_GTree*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GVariant(_GVariant*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GVariantBuilder(_GVariantBuilder*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GVariantIter(_GVariantIter*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GVariantDict(_GVariantDict*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GVariantType(_GVariantType*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GRefString(char*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GUri(_GUri*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GPathBuf(_GPathBuf*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GTypeModule(_GTypeModule*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GClosure(_GClosure*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GEnumClass(_GEnumClass*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GFlagsClass(_GFlagsClass*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GObject(_GObject*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GInitiallyUnowned(_GObject*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GParamSpec(_GParamSpec*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GTypeClass(_GTypeClass*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GDebugController(_GDebugController*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GDebugControllerDBus(_GDebugControllerDBus*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GDebugControllerDBusClass(_GDebugControllerDBusClass*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GListModel(_GListModel*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GListStore(_GListStore*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GListStoreClass(GListStoreClass*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GMemoryMonitor(_GMemoryMonitor*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GPowerProfileMonitor(_GPowerProfileMonitor*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GUnixConnection(_GUnixConnection*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GUnixCredentialsMessage(_GUnixCredentialsMessage*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GUnixFDList(_GUnixFDList*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GUnixSocketAddress(_GUnixSocketAddress*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GAction(_GAction*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GActionMap(_GActionMap*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GAppInfo(_GAppInfo*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GAppLaunchContext(_GAppLaunchContext*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GAppInfoMonitor(_GAppInfoMonitor*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GApplicationCommandLine(_GApplicationCommandLine*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GApplication(_GApplication*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GAsyncInitable(_GAsyncInitable*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GAsyncResult(_GAsyncResult*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GBufferedInputStream(_GBufferedInputStream*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GBufferedOutputStream(_GBufferedOutputStream*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GBytesIcon(_GBytesIcon*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GCancellable(_GCancellable*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GCharsetConverter(_GCharsetConverter*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GConverter(_GConverter*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GConverterInputStream(_GConverterInputStream*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GConverterOutputStream(_GConverterOutputStream*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GCredentials(_GCredentials*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GDatagramBased(_GDatagramBased*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GDataInputStream(_GDataInputStream*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GDataOutputStream(_GDataOutputStream*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GDBusActionGroup(_GDBusActionGroup*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GDBusAuthObserver(_GDBusAuthObserver*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GDBusConnection(_GDBusConnection*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GDBusInterface(_GDBusInterface*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GDBusInterfaceSkeleton(_GDBusInterfaceSkeleton*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GDBusMenuModel(_GDBusMenuModel*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GDBusMessage(_GDBusMessage*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GDBusMethodInvocation(_GDBusMethodInvocation*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GDBusNodeInfo(_GDBusNodeInfo*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GDBusObject(_GDBusObject*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GDBusObjectManagerClient(_GDBusObjectManagerClient*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GDBusObjectManager(_GDBusObjectManager*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GDBusObjectManagerServer(_GDBusObjectManagerServer*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GDBusObjectProxy(_GDBusObjectProxy*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GDBusObjectSkeleton(_GDBusObjectSkeleton*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GDBusProxy(_GDBusProxy*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GDBusServer(_GDBusServer*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GDrive(_GDrive*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GEmblemedIcon(_GEmblemedIcon*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GEmblem(_GEmblem*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GFileEnumerator(_GFileEnumerator*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GFile(_GFile*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GFileAttributeInfoList(_GFileAttributeInfoList*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GFileIcon(_GFileIcon*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GFileInfo(_GFileInfo*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GFileInputStream(_GFileInputStream*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GFileIOStream(_GFileIOStream*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GFileMonitor(_GFileMonitor*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GFilenameCompleter(_GFilenameCompleter*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GFileOutputStream(_GFileOutputStream*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GFilterInputStream(_GFilterInputStream*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GFilterOutputStream(_GFilterOutputStream*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GIcon(_GIcon*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GInetAddress(_GInetAddress*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GInetAddressMask(_GInetAddressMask*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GInetSocketAddress(_GInetSocketAddress*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GInitable(_GInitable*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GInputStream(_GInputStream*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GIOModule(_GIOModule*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GIOStream(_GIOStream*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GLoadableIcon(_GLoadableIcon*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GMemoryInputStream(_GMemoryInputStream*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GMemoryOutputStream(_GMemoryOutputStream*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GMenu(_GMenu*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GMenuItem(_GMenuItem*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GMenuModel(_GMenuModel*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GMenuAttributeIter(_GMenuAttributeIter*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GMenuLinkIter(_GMenuLinkIter*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GMount(_GMount*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GMountOperation(_GMountOperation*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GNativeVolumeMonitor(_GNativeVolumeMonitor*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GNetworkAddress(_GNetworkAddress*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GNetworkMonitor(_GNetworkMonitor*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GNetworkService(_GNetworkService*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GNotification(_GNotification*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GOutputStream(_GOutputStream*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GPermission(_GPermission*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GPollableInputStream(_GPollableInputStream*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GPollableOutputStream(_GPollableOutputStream*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GPropertyAction(_GPropertyAction*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GProxyAddressEnumerator(_GProxyAddressEnumerator*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GProxyAddress(_GProxyAddress*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GProxy(_GProxy*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GProxyResolver(_GProxyResolver*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GRemoteActionGroup(_GRemoteActionGroup*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GResolver(_GResolver*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GResource(_GResource*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GSeekable(_GSeekable*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GSettingsBackend(_GSettingsBackend*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GSettingsSchema(_GSettingsSchema*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GSettingsSchemaKey(_GSettingsSchemaKey*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GSettingsSchemaSource(_GSettingsSchemaSource*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GSettings(_GSettings*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GSimpleActionGroup(_GSimpleActionGroup*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GSimpleAction(_GSimpleAction*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GSimpleAsyncResult(_GSimpleAsyncResult*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GSimplePermission(_GSimplePermission*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GSimpleProxyResolver(_GSimpleProxyResolver*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GSocketAddressEnumerator(_GSocketAddressEnumerator*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GSocketAddress(_GSocketAddress*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GSocketClient(_GSocketClient*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GSocketConnectable(_GSocketConnectable*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GSocketConnection(_GSocketConnection*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GSocketControlMessage(_GSocketControlMessage*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GSocket(_GSocket*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GSocketListener(_GSocketListener*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GSocketService(_GSocketService*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GSubprocess(_GSubprocess*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GSubprocessLauncher(_GSubprocessLauncher*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GTask(_GTask*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GTcpConnection(_GTcpConnection*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GTcpWrapperConnection(_GTcpWrapperConnection*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GTestDBus(_GTestDBus*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GThemedIcon(_GThemedIcon*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GThreadedSocketService(_GThreadedSocketService*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GTlsBackend(_GTlsBackend*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GTlsCertificate(_GTlsCertificate*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GTlsClientConnection(_GTlsClientConnection*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GTlsConnection(_GTlsConnection*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GTlsDatabase(_GTlsDatabase*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GTlsFileDatabase(_GTlsFileDatabase*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GTlsInteraction(_GTlsInteraction*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GTlsPassword(_GTlsPassword*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GTlsServerConnection(_GTlsServerConnection*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GVfs(_GVfs*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GVolume(_GVolume*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GVolumeMonitor(_GVolumeMonitor*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GZlibCompressor(_GZlibCompressor*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_GZlibDecompressor(_GZlibDecompressor*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_PopplerDocument(_PopplerDocument*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_PopplerIndexIter(_PopplerIndexIter*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_PopplerFontInfo(_PopplerFontInfo*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_PopplerFontsIter(_PopplerFontsIter*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_PopplerLayersIter(_PopplerLayersIter*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_PopplerPSFile(_PopplerPSFile*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_PopplerPage(_PopplerPage*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_PopplerRectangle(_PopplerRectangle*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_PopplerPoint(_PopplerPoint*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_PopplerQuadrilateral(_PopplerQuadrilateral*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_PopplerColor(_PopplerColor*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_PopplerTextAttributes(_PopplerTextAttributes*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_PopplerLinkMapping(_PopplerLinkMapping*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_PopplerPageTransition(_PopplerPageTransition*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_PopplerImageMapping(_PopplerImageMapping*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_PopplerFormFieldMapping(_PopplerFormFieldMapping*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_PopplerAnnotMapping(_PopplerAnnotMapping*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_PopplerLayer(_PopplerLayer*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_PopplerAction(_PopplerAction*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_PopplerDest(_PopplerDest*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_PopplerFormField(_PopplerFormField*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_PopplerSignatureInfo(_PopplerSignatureInfo*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_PopplerSigningData(_PopplerSigningData*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_PopplerCertificateInfo(_PopplerCertificateInfo*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_PopplerAttachment(_PopplerAttachment*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_PopplerAnnot(_PopplerAnnot*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_PopplerAnnotCircle(_PopplerAnnotCircle*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_PopplerAnnotFileAttachment(_PopplerAnnotFileAttachment*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_PopplerAnnotFreeText(_PopplerAnnotFreeText*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_PopplerAnnotLine(_PopplerAnnotLine*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_PopplerAnnotMarkup(_PopplerAnnotMarkup*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_PopplerAnnotMovie(_PopplerAnnotMovie*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_PopplerAnnotScreen(_PopplerAnnotScreen*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_PopplerAnnotSquare(_PopplerAnnotSquare*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_PopplerAnnotStamp(_PopplerAnnotStamp*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_PopplerAnnotText(_PopplerAnnotText*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_PopplerAnnotTextMarkup(_PopplerAnnotTextMarkup*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_PopplerAnnotCalloutLine(_PopplerAnnotCalloutLine*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_PopplerFontDescription(_PopplerFontDescription*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_PopplerPath(_PopplerPath*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_PopplerMovie(_PopplerMovie*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_PopplerMedia(_PopplerMedia*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_PopplerStructureElement(_PopplerStructureElement*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_PopplerTextSpan(_PopplerTextSpan*)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_clear_PopplerStructureElementIter(_PopplerStructureElementIter*)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_clear_GAsyncQueue(_GAsyncQueue*)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_clear_GBookmarkFile(_GBookmarkFile*)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_clear_GBytes(_GBytes*)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_clear_GChecksum(_GChecksum*)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_clear_GDateTime(_GDateTime*)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_clear_GDate(_GDate*)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_clear_GDir(_GDir*)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_clear_GError(_GError*)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_clear_GHashTable(_GHashTable*)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_clear_GHmac(_GHmac*)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_clear_GIOChannel(_GIOChannel*)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_clear_GKeyFile(_GKeyFile*)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_clear_GList(_GList*)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_clear_GArray(_GArray*)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_clear_GPtrArray(_GPtrArray*)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_clear_GByteArray(_GByteArray*)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_clear_GMainContext(_GMainContext*)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_clear_GMainContextPusher(void*)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_clear_GMainLoop(_GMainLoop*)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_clear_GSource(_GSource*)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_clear_GMappedFile(_GMappedFile*)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_clear_GMarkupParseContext(_GMarkupParseContext*)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_clear_GNode(_GNode*)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_clear_GOptionContext(_GOptionContext*)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_clear_GOptionGroup(_GOptionGroup*)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_clear_GPatternSpec(_GPatternSpec*)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_clear_GQueue(_GQueue*)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_clear_GRand(_GRand*)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_clear_GRegex(_GRegex*)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_clear_GMatchInfo(_GMatchInfo*)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_clear_GScanner(_GScanner*)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_clear_GSequence(_GSequence*)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_clear_GSList(_GSList*)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_clear_GString(_GString*)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_clear_GStringChunk(_GStringChunk*)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_clear_GStrvBuilder(_GStrvBuilder*)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_clear_GThread(_GThread*)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_clear_GMutexLocker(void*)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_clear_GRecMutexLocker(void*)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_clear_GRWLockWriterLocker(void*)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_clear_GRWLockReaderLocker(void*)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_clear_GTimer(_GTimer*)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_clear_GTimeZone(_GTimeZone*)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_clear_GTree(_GTree*)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_clear_GVariant(_GVariant*)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_clear_GVariantBuilder(_GVariantBuilder*)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_clear_GVariantIter(_GVariantIter*)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_clear_GVariantDict(_GVariantDict*)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_clear_GVariantType(_GVariantType*)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_clear_GRefString(char*)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_clear_GUri(_GUri*)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_clear_GPathBuf(_GPathBuf*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GAsyncQueue(_GAsyncQueue*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GBookmarkFile(_GBookmarkFile*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GBytes(_GBytes*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GChecksum(_GChecksum*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GDateTime(_GDateTime*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GDate(_GDate*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GDir(_GDir*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GError(_GError*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GHashTable(_GHashTable*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GHmac(_GHmac*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GIOChannel(_GIOChannel*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GKeyFile(_GKeyFile*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GList(_GList*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GArray(_GArray*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GPtrArray(_GPtrArray*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GByteArray(_GByteArray*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GMainContext(_GMainContext*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GMainContextPusher(void*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GMainLoop(_GMainLoop*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GSource(_GSource*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GMappedFile(_GMappedFile*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GMarkupParseContext(_GMarkupParseContext*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GNode(_GNode*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GOptionContext(_GOptionContext*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GOptionGroup(_GOptionGroup*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GPatternSpec(_GPatternSpec*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GQueue(_GQueue*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GRand(_GRand*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GRegex(_GRegex*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GMatchInfo(_GMatchInfo*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GScanner(_GScanner*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GSequence(_GSequence*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GSList(_GSList*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GString(_GString*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GStringChunk(_GStringChunk*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GStrvBuilder(_GStrvBuilder*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GThread(_GThread*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GMutexLocker(void*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GRecMutexLocker(void*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GRWLockWriterLocker(void*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GRWLockReaderLocker(void*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GTimer(_GTimer*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GTimeZone(_GTimeZone*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GTree(_GTree*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GVariant(_GVariant*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GVariantBuilder(_GVariantBuilder*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GVariantIter(_GVariantIter*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GVariantDict(_GVariantDict*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GVariantType(_GVariantType*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GRefString(char*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GUri(_GUri*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GPathBuf(_GPathBuf*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GTypeModule(_GTypeModule*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GClosure(_GClosure*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GEnumClass(_GEnumClass*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GFlagsClass(_GFlagsClass*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GObject(_GObject*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GInitiallyUnowned(_GObject*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GParamSpec(_GParamSpec*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GTypeClass(_GTypeClass*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GDebugController(_GDebugController*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GDebugControllerDBus(_GDebugControllerDBus*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GDebugControllerDBusClass(_GDebugControllerDBusClass*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GListModel(_GListModel*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GListStore(_GListStore*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GListStoreClass(GListStoreClass*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GMemoryMonitor(_GMemoryMonitor*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GPowerProfileMonitor(_GPowerProfileMonitor*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GUnixConnection(_GUnixConnection*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GUnixCredentialsMessage(_GUnixCredentialsMessage*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GUnixFDList(_GUnixFDList*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GUnixSocketAddress(_GUnixSocketAddress*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GAction(_GAction*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GActionMap(_GActionMap*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GAppInfo(_GAppInfo*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GAppLaunchContext(_GAppLaunchContext*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GAppInfoMonitor(_GAppInfoMonitor*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GApplicationCommandLine(_GApplicationCommandLine*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GApplication(_GApplication*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GAsyncInitable(_GAsyncInitable*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GAsyncResult(_GAsyncResult*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GBufferedInputStream(_GBufferedInputStream*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GBufferedOutputStream(_GBufferedOutputStream*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GBytesIcon(_GBytesIcon*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GCancellable(_GCancellable*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GCharsetConverter(_GCharsetConverter*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GConverter(_GConverter*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GConverterInputStream(_GConverterInputStream*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GConverterOutputStream(_GConverterOutputStream*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GCredentials(_GCredentials*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GDatagramBased(_GDatagramBased*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GDataInputStream(_GDataInputStream*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GDataOutputStream(_GDataOutputStream*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GDBusActionGroup(_GDBusActionGroup*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GDBusAuthObserver(_GDBusAuthObserver*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GDBusConnection(_GDBusConnection*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GDBusInterface(_GDBusInterface*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GDBusInterfaceSkeleton(_GDBusInterfaceSkeleton*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GDBusMenuModel(_GDBusMenuModel*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GDBusMessage(_GDBusMessage*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GDBusMethodInvocation(_GDBusMethodInvocation*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GDBusNodeInfo(_GDBusNodeInfo*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GDBusObject(_GDBusObject*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GDBusObjectManagerClient(_GDBusObjectManagerClient*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GDBusObjectManager(_GDBusObjectManager*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GDBusObjectManagerServer(_GDBusObjectManagerServer*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GDBusObjectProxy(_GDBusObjectProxy*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GDBusObjectSkeleton(_GDBusObjectSkeleton*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GDBusProxy(_GDBusProxy*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GDBusServer(_GDBusServer*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GDrive(_GDrive*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GEmblemedIcon(_GEmblemedIcon*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GEmblem(_GEmblem*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GFileEnumerator(_GFileEnumerator*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GFile(_GFile*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GFileAttributeInfoList(_GFileAttributeInfoList*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GFileIcon(_GFileIcon*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GFileInfo(_GFileInfo*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GFileInputStream(_GFileInputStream*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GFileIOStream(_GFileIOStream*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GFileMonitor(_GFileMonitor*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GFilenameCompleter(_GFilenameCompleter*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GFileOutputStream(_GFileOutputStream*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GFilterInputStream(_GFilterInputStream*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GFilterOutputStream(_GFilterOutputStream*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GIcon(_GIcon*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GInetAddress(_GInetAddress*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GInetAddressMask(_GInetAddressMask*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GInetSocketAddress(_GInetSocketAddress*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GInitable(_GInitable*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GInputStream(_GInputStream*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GIOModule(_GIOModule*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GIOStream(_GIOStream*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GLoadableIcon(_GLoadableIcon*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GMemoryInputStream(_GMemoryInputStream*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GMemoryOutputStream(_GMemoryOutputStream*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GMenu(_GMenu*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GMenuItem(_GMenuItem*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GMenuModel(_GMenuModel*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GMenuAttributeIter(_GMenuAttributeIter*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GMenuLinkIter(_GMenuLinkIter*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GMount(_GMount*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GMountOperation(_GMountOperation*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GNativeVolumeMonitor(_GNativeVolumeMonitor*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GNetworkAddress(_GNetworkAddress*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GNetworkMonitor(_GNetworkMonitor*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GNetworkService(_GNetworkService*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GNotification(_GNotification*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GOutputStream(_GOutputStream*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GPermission(_GPermission*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GPollableInputStream(_GPollableInputStream*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GPollableOutputStream(_GPollableOutputStream*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GPropertyAction(_GPropertyAction*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GProxyAddressEnumerator(_GProxyAddressEnumerator*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GProxyAddress(_GProxyAddress*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GProxy(_GProxy*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GProxyResolver(_GProxyResolver*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GRemoteActionGroup(_GRemoteActionGroup*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GResolver(_GResolver*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GResource(_GResource*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GSeekable(_GSeekable*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GSettingsBackend(_GSettingsBackend*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GSettingsSchema(_GSettingsSchema*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GSettingsSchemaKey(_GSettingsSchemaKey*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GSettingsSchemaSource(_GSettingsSchemaSource*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GSettings(_GSettings*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GSimpleActionGroup(_GSimpleActionGroup*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GSimpleAction(_GSimpleAction*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GSimpleAsyncResult(_GSimpleAsyncResult*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GSimplePermission(_GSimplePermission*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GSimpleProxyResolver(_GSimpleProxyResolver*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GSocketAddressEnumerator(_GSocketAddressEnumerator*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GSocketAddress(_GSocketAddress*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GSocketClient(_GSocketClient*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GSocketConnectable(_GSocketConnectable*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GSocketConnection(_GSocketConnection*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GSocketControlMessage(_GSocketControlMessage*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GSocket(_GSocket*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GSocketListener(_GSocketListener*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GSocketService(_GSocketService*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GSubprocess(_GSubprocess*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GSubprocessLauncher(_GSubprocessLauncher*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GTask(_GTask*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GTcpConnection(_GTcpConnection*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GTcpWrapperConnection(_GTcpWrapperConnection*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GTestDBus(_GTestDBus*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GThemedIcon(_GThemedIcon*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GThreadedSocketService(_GThreadedSocketService*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GTlsBackend(_GTlsBackend*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GTlsCertificate(_GTlsCertificate*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GTlsClientConnection(_GTlsClientConnection*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GTlsConnection(_GTlsConnection*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GTlsDatabase(_GTlsDatabase*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GTlsFileDatabase(_GTlsFileDatabase*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GTlsInteraction(_GTlsInteraction*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GTlsPassword(_GTlsPassword*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GTlsServerConnection(_GTlsServerConnection*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GVfs(_GVfs*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GVolume(_GVolume*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GVolumeMonitor(_GVolumeMonitor*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GZlibCompressor(_GZlibCompressor*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_GZlibDecompressor(_GZlibDecompressor*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_PopplerDocument(_PopplerDocument*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_PopplerIndexIter(_PopplerIndexIter*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_PopplerFontInfo(_PopplerFontInfo*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_PopplerFontsIter(_PopplerFontsIter*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_PopplerLayersIter(_PopplerLayersIter*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_PopplerPSFile(_PopplerPSFile*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_PopplerPage(_PopplerPage*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_PopplerRectangle(_PopplerRectangle*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_PopplerPoint(_PopplerPoint*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_PopplerQuadrilateral(_PopplerQuadrilateral*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_PopplerColor(_PopplerColor*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_PopplerTextAttributes(_PopplerTextAttributes*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_PopplerLinkMapping(_PopplerLinkMapping*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_PopplerPageTransition(_PopplerPageTransition*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_PopplerImageMapping(_PopplerImageMapping*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_PopplerFormFieldMapping(_PopplerFormFieldMapping*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_PopplerAnnotMapping(_PopplerAnnotMapping*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_PopplerLayer(_PopplerLayer*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_PopplerAction(_PopplerAction*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_PopplerDest(_PopplerDest*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_PopplerFormField(_PopplerFormField*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_PopplerSignatureInfo(_PopplerSignatureInfo*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_PopplerSigningData(_PopplerSigningData*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_PopplerCertificateInfo(_PopplerCertificateInfo*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_PopplerAttachment(_PopplerAttachment*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_PopplerAnnot(_PopplerAnnot*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_PopplerAnnotCircle(_PopplerAnnotCircle*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_PopplerAnnotFileAttachment(_PopplerAnnotFileAttachment*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_PopplerAnnotFreeText(_PopplerAnnotFreeText*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_PopplerAnnotLine(_PopplerAnnotLine*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_PopplerAnnotMarkup(_PopplerAnnotMarkup*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_PopplerAnnotMovie(_PopplerAnnotMovie*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_PopplerAnnotScreen(_PopplerAnnotScreen*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_PopplerAnnotSquare(_PopplerAnnotSquare*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_PopplerAnnotStamp(_PopplerAnnotStamp*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_PopplerAnnotText(_PopplerAnnotText*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_PopplerAnnotTextMarkup(_PopplerAnnotTextMarkup*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_PopplerAnnotCalloutLine(_PopplerAnnotCalloutLine*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_PopplerFontDescription(_PopplerFontDescription*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_PopplerPath(_PopplerPath*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_PopplerMovie(_PopplerMovie*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_PopplerMedia(_PopplerMedia*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_PopplerStructureElement(_PopplerStructureElement*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_PopplerTextSpan(_PopplerTextSpan*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_clear_PopplerStructureElementIter(_PopplerStructureElementIter*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GAsyncQueue(_GAsyncQueue*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GBookmarkFile(_GBookmarkFile*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GBytes(_GBytes*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GChecksum(_GChecksum*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GDateTime(_GDateTime*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GDate(_GDate*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GDir(_GDir*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GError(_GError*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GHashTable(_GHashTable*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GHmac(_GHmac*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GIOChannel(_GIOChannel*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GKeyFile(_GKeyFile*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GList(_GList*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GArray(_GArray*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GPtrArray(_GPtrArray*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GByteArray(_GByteArray*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GMainContext(_GMainContext*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GMainContextPusher(void*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GMainLoop(_GMainLoop*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GSource(_GSource*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GMappedFile(_GMappedFile*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GMarkupParseContext(_GMarkupParseContext*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GNode(_GNode*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GOptionContext(_GOptionContext*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GOptionGroup(_GOptionGroup*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GPatternSpec(_GPatternSpec*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GQueue(_GQueue*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GRand(_GRand*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GRegex(_GRegex*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GMatchInfo(_GMatchInfo*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GScanner(_GScanner*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GSequence(_GSequence*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GSList(_GSList*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GString(_GString*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GStringChunk(_GStringChunk*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GStrvBuilder(_GStrvBuilder*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GThread(_GThread*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GMutexLocker(void*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GRecMutexLocker(void*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GRWLockWriterLocker(void*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GRWLockReaderLocker(void*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GTimer(_GTimer*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GTimeZone(_GTimeZone*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GTree(_GTree*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GVariant(_GVariant*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GVariantBuilder(_GVariantBuilder*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GVariantIter(_GVariantIter*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GVariantDict(_GVariantDict*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GVariantType(_GVariantType*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GRefString(char*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GUri(_GUri*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GPathBuf(_GPathBuf*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GTypeModule(_GTypeModule*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GClosure(_GClosure*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GEnumClass(_GEnumClass*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GFlagsClass(_GFlagsClass*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GObject(_GObject*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GInitiallyUnowned(_GObject*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GParamSpec(_GParamSpec*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GTypeClass(_GTypeClass*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GDebugController(_GDebugController*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GDebugControllerDBus(_GDebugControllerDBus*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GDebugControllerDBusClass(_GDebugControllerDBusClass*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GListModel(_GListModel*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GListStore(_GListStore*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GListStoreClass(GListStoreClass*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GMemoryMonitor(_GMemoryMonitor*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GPowerProfileMonitor(_GPowerProfileMonitor*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GUnixConnection(_GUnixConnection*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GUnixCredentialsMessage(_GUnixCredentialsMessage*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GUnixFDList(_GUnixFDList*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GUnixSocketAddress(_GUnixSocketAddress*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GAction(_GAction*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GActionMap(_GActionMap*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GAppInfo(_GAppInfo*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GAppLaunchContext(_GAppLaunchContext*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GAppInfoMonitor(_GAppInfoMonitor*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GApplicationCommandLine(_GApplicationCommandLine*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GApplication(_GApplication*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GAsyncInitable(_GAsyncInitable*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GAsyncResult(_GAsyncResult*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GBufferedInputStream(_GBufferedInputStream*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GBufferedOutputStream(_GBufferedOutputStream*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GBytesIcon(_GBytesIcon*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GCancellable(_GCancellable*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GCharsetConverter(_GCharsetConverter*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GConverter(_GConverter*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GConverterInputStream(_GConverterInputStream*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GConverterOutputStream(_GConverterOutputStream*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GCredentials(_GCredentials*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GDatagramBased(_GDatagramBased*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GDataInputStream(_GDataInputStream*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GDataOutputStream(_GDataOutputStream*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GDBusActionGroup(_GDBusActionGroup*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GDBusAuthObserver(_GDBusAuthObserver*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GDBusConnection(_GDBusConnection*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GDBusInterface(_GDBusInterface*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GDBusInterfaceSkeleton(_GDBusInterfaceSkeleton*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GDBusMenuModel(_GDBusMenuModel*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GDBusMessage(_GDBusMessage*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GDBusMethodInvocation(_GDBusMethodInvocation*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GDBusNodeInfo(_GDBusNodeInfo*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GDBusObject(_GDBusObject*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GDBusObjectManagerClient(_GDBusObjectManagerClient*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GDBusObjectManager(_GDBusObjectManager*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GDBusObjectManagerServer(_GDBusObjectManagerServer*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GDBusObjectProxy(_GDBusObjectProxy*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GDBusObjectSkeleton(_GDBusObjectSkeleton*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GDBusProxy(_GDBusProxy*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GDBusServer(_GDBusServer*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GDrive(_GDrive*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GEmblemedIcon(_GEmblemedIcon*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GEmblem(_GEmblem*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GFileEnumerator(_GFileEnumerator*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GFile(_GFile*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GFileAttributeInfoList(_GFileAttributeInfoList*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GFileIcon(_GFileIcon*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GFileInfo(_GFileInfo*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GFileInputStream(_GFileInputStream*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GFileIOStream(_GFileIOStream*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GFileMonitor(_GFileMonitor*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GFilenameCompleter(_GFilenameCompleter*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GFileOutputStream(_GFileOutputStream*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GFilterInputStream(_GFilterInputStream*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GFilterOutputStream(_GFilterOutputStream*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GIcon(_GIcon*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GInetAddress(_GInetAddress*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GInetAddressMask(_GInetAddressMask*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GInetSocketAddress(_GInetSocketAddress*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GInitable(_GInitable*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GInputStream(_GInputStream*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GIOModule(_GIOModule*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GIOStream(_GIOStream*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GLoadableIcon(_GLoadableIcon*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GMemoryInputStream(_GMemoryInputStream*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GMemoryOutputStream(_GMemoryOutputStream*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GMenu(_GMenu*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GMenuItem(_GMenuItem*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GMenuModel(_GMenuModel*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GMenuAttributeIter(_GMenuAttributeIter*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GMenuLinkIter(_GMenuLinkIter*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GMount(_GMount*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GMountOperation(_GMountOperation*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GNativeVolumeMonitor(_GNativeVolumeMonitor*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GNetworkAddress(_GNetworkAddress*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GNetworkMonitor(_GNetworkMonitor*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GNetworkService(_GNetworkService*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GNotification(_GNotification*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GOutputStream(_GOutputStream*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GPermission(_GPermission*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GPollableInputStream(_GPollableInputStream*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GPollableOutputStream(_GPollableOutputStream*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GPropertyAction(_GPropertyAction*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GProxyAddressEnumerator(_GProxyAddressEnumerator*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GProxyAddress(_GProxyAddress*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GProxy(_GProxy*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GProxyResolver(_GProxyResolver*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GRemoteActionGroup(_GRemoteActionGroup*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GResolver(_GResolver*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GResource(_GResource*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GSeekable(_GSeekable*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GSettingsBackend(_GSettingsBackend*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GSettingsSchema(_GSettingsSchema*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GSettingsSchemaKey(_GSettingsSchemaKey*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GSettingsSchemaSource(_GSettingsSchemaSource*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GSettings(_GSettings*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GSimpleActionGroup(_GSimpleActionGroup*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GSimpleAction(_GSimpleAction*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GSimpleAsyncResult(_GSimpleAsyncResult*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GSimplePermission(_GSimplePermission*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GSimpleProxyResolver(_GSimpleProxyResolver*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GSocketAddressEnumerator(_GSocketAddressEnumerator*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GSocketAddress(_GSocketAddress*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GSocketClient(_GSocketClient*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GSocketConnectable(_GSocketConnectable*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GSocketConnection(_GSocketConnection*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GSocketControlMessage(_GSocketControlMessage*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GSocket(_GSocket*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GSocketListener(_GSocketListener*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GSocketService(_GSocketService*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GSubprocess(_GSubprocess*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GSubprocessLauncher(_GSubprocessLauncher*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GTask(_GTask*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GTcpConnection(_GTcpConnection*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GTcpWrapperConnection(_GTcpWrapperConnection*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GTestDBus(_GTestDBus*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GThemedIcon(_GThemedIcon*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GThreadedSocketService(_GThreadedSocketService*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GTlsBackend(_GTlsBackend*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GTlsCertificate(_GTlsCertificate*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GTlsClientConnection(_GTlsClientConnection*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GTlsConnection(_GTlsConnection*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GTlsDatabase(_GTlsDatabase*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GTlsFileDatabase(_GTlsFileDatabase*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GTlsInteraction(_GTlsInteraction*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GTlsPassword(_GTlsPassword*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GTlsServerConnection(_GTlsServerConnection*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GVfs(_GVfs*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GVolume(_GVolume*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GVolumeMonitor(_GVolumeMonitor*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GZlibCompressor(_GZlibCompressor*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_GZlibDecompressor(_GZlibDecompressor*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_PopplerDocument(_PopplerDocument*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_PopplerIndexIter(_PopplerIndexIter*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_PopplerFontInfo(_PopplerFontInfo*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_PopplerFontsIter(_PopplerFontsIter*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_PopplerLayersIter(_PopplerLayersIter*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_PopplerPSFile(_PopplerPSFile*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_PopplerPage(_PopplerPage*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_PopplerRectangle(_PopplerRectangle*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_PopplerPoint(_PopplerPoint*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_PopplerQuadrilateral(_PopplerQuadrilateral*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_PopplerColor(_PopplerColor*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_PopplerTextAttributes(_PopplerTextAttributes*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_PopplerLinkMapping(_PopplerLinkMapping*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_PopplerPageTransition(_PopplerPageTransition*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_PopplerImageMapping(_PopplerImageMapping*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_PopplerFormFieldMapping(_PopplerFormFieldMapping*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_PopplerAnnotMapping(_PopplerAnnotMapping*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_PopplerLayer(_PopplerLayer*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_PopplerAction(_PopplerAction*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_PopplerDest(_PopplerDest*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_PopplerFormField(_PopplerFormField*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_PopplerSignatureInfo(_PopplerSignatureInfo*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_PopplerSigningData(_PopplerSigningData*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_PopplerCertificateInfo(_PopplerCertificateInfo*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_PopplerAttachment(_PopplerAttachment*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_PopplerAnnot(_PopplerAnnot*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_PopplerAnnotCircle(_PopplerAnnotCircle*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_PopplerAnnotFileAttachment(_PopplerAnnotFileAttachment*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_PopplerAnnotFreeText(_PopplerAnnotFreeText*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_PopplerAnnotLine(_PopplerAnnotLine*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_PopplerAnnotMarkup(_PopplerAnnotMarkup*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_PopplerAnnotMovie(_PopplerAnnotMovie*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_PopplerAnnotScreen(_PopplerAnnotScreen*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_PopplerAnnotSquare(_PopplerAnnotSquare*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_PopplerAnnotStamp(_PopplerAnnotStamp*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_PopplerAnnotText(_PopplerAnnotText*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_PopplerAnnotTextMarkup(_PopplerAnnotTextMarkup*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_PopplerAnnotCalloutLine(_PopplerAnnotCalloutLine*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_PopplerFontDescription(_PopplerFontDescription*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_PopplerPath(_PopplerPath*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_PopplerMovie(_PopplerMovie*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_PopplerMedia(_PopplerMedia*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_PopplerStructureElement(_PopplerStructureElement*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_PopplerTextSpan(_PopplerTextSpan*)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_clear_PopplerStructureElementIter(_PopplerStructureElementIter*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GAsyncQueue(_GAsyncQueue*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GBookmarkFile(_GBookmarkFile*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GBytes(_GBytes*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GChecksum(_GChecksum*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GDateTime(_GDateTime*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GDate(_GDate*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GDir(_GDir*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GError(_GError*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GHashTable(_GHashTable*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GHmac(_GHmac*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GIOChannel(_GIOChannel*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GKeyFile(_GKeyFile*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GList(_GList*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GArray(_GArray*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GPtrArray(_GPtrArray*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GByteArray(_GByteArray*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GMainContext(_GMainContext*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GMainContextPusher(void*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GMainLoop(_GMainLoop*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GSource(_GSource*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GMappedFile(_GMappedFile*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GMarkupParseContext(_GMarkupParseContext*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GNode(_GNode*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GOptionContext(_GOptionContext*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GOptionGroup(_GOptionGroup*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GPatternSpec(_GPatternSpec*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GQueue(_GQueue*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GRand(_GRand*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GRegex(_GRegex*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GMatchInfo(_GMatchInfo*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GScanner(_GScanner*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GSequence(_GSequence*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GSList(_GSList*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GString(_GString*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GStringChunk(_GStringChunk*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GStrvBuilder(_GStrvBuilder*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GThread(_GThread*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GMutexLocker(void*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GRecMutexLocker(void*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GRWLockWriterLocker(void*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GRWLockReaderLocker(void*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GTimer(_GTimer*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GTimeZone(_GTimeZone*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GTree(_GTree*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GVariant(_GVariant*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GVariantBuilder(_GVariantBuilder*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GVariantIter(_GVariantIter*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GVariantDict(_GVariantDict*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GVariantType(_GVariantType*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GRefString(char*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GUri(_GUri*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GPathBuf(_GPathBuf*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GTypeModule(_GTypeModule*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GClosure(_GClosure*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GEnumClass(_GEnumClass*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GFlagsClass(_GFlagsClass*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GObject(_GObject*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GInitiallyUnowned(_GObject*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GParamSpec(_GParamSpec*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GTypeClass(_GTypeClass*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GDebugController(_GDebugController*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GDebugControllerDBus(_GDebugControllerDBus*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GDebugControllerDBusClass(_GDebugControllerDBusClass*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GListModel(_GListModel*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GListStore(_GListStore*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GListStoreClass(GListStoreClass*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GMemoryMonitor(_GMemoryMonitor*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GPowerProfileMonitor(_GPowerProfileMonitor*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GUnixConnection(_GUnixConnection*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GUnixCredentialsMessage(_GUnixCredentialsMessage*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GUnixFDList(_GUnixFDList*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GUnixSocketAddress(_GUnixSocketAddress*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GAction(_GAction*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GActionMap(_GActionMap*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GAppInfo(_GAppInfo*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GAppLaunchContext(_GAppLaunchContext*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GAppInfoMonitor(_GAppInfoMonitor*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GApplicationCommandLine(_GApplicationCommandLine*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GApplication(_GApplication*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GAsyncInitable(_GAsyncInitable*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GAsyncResult(_GAsyncResult*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GBufferedInputStream(_GBufferedInputStream*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GBufferedOutputStream(_GBufferedOutputStream*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GBytesIcon(_GBytesIcon*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GCancellable(_GCancellable*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GCharsetConverter(_GCharsetConverter*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GConverter(_GConverter*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GConverterInputStream(_GConverterInputStream*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GConverterOutputStream(_GConverterOutputStream*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GCredentials(_GCredentials*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GDatagramBased(_GDatagramBased*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GDataInputStream(_GDataInputStream*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GDataOutputStream(_GDataOutputStream*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GDBusActionGroup(_GDBusActionGroup*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GDBusAuthObserver(_GDBusAuthObserver*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GDBusConnection(_GDBusConnection*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GDBusInterface(_GDBusInterface*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GDBusInterfaceSkeleton(_GDBusInterfaceSkeleton*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GDBusMenuModel(_GDBusMenuModel*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GDBusMessage(_GDBusMessage*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GDBusMethodInvocation(_GDBusMethodInvocation*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GDBusNodeInfo(_GDBusNodeInfo*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GDBusObject(_GDBusObject*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GDBusObjectManagerClient(_GDBusObjectManagerClient*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GDBusObjectManager(_GDBusObjectManager*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GDBusObjectManagerServer(_GDBusObjectManagerServer*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GDBusObjectProxy(_GDBusObjectProxy*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GDBusObjectSkeleton(_GDBusObjectSkeleton*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GDBusProxy(_GDBusProxy*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GDBusServer(_GDBusServer*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GDrive(_GDrive*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GEmblemedIcon(_GEmblemedIcon*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GEmblem(_GEmblem*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GFileEnumerator(_GFileEnumerator*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GFile(_GFile*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GFileAttributeInfoList(_GFileAttributeInfoList*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GFileIcon(_GFileIcon*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GFileInfo(_GFileInfo*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GFileInputStream(_GFileInputStream*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GFileIOStream(_GFileIOStream*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GFileMonitor(_GFileMonitor*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GFilenameCompleter(_GFilenameCompleter*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GFileOutputStream(_GFileOutputStream*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GFilterInputStream(_GFilterInputStream*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GFilterOutputStream(_GFilterOutputStream*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GIcon(_GIcon*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GInetAddress(_GInetAddress*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GInetAddressMask(_GInetAddressMask*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GInetSocketAddress(_GInetSocketAddress*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GInitable(_GInitable*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GInputStream(_GInputStream*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GIOModule(_GIOModule*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GIOStream(_GIOStream*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GLoadableIcon(_GLoadableIcon*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GMemoryInputStream(_GMemoryInputStream*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GMemoryOutputStream(_GMemoryOutputStream*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GMenu(_GMenu*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GMenuItem(_GMenuItem*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GMenuModel(_GMenuModel*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GMenuAttributeIter(_GMenuAttributeIter*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GMenuLinkIter(_GMenuLinkIter*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GMount(_GMount*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GMountOperation(_GMountOperation*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GNativeVolumeMonitor(_GNativeVolumeMonitor*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GNetworkAddress(_GNetworkAddress*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GNetworkMonitor(_GNetworkMonitor*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GNetworkService(_GNetworkService*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GNotification(_GNotification*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GOutputStream(_GOutputStream*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GPermission(_GPermission*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GPollableInputStream(_GPollableInputStream*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GPollableOutputStream(_GPollableOutputStream*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GPropertyAction(_GPropertyAction*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GProxyAddressEnumerator(_GProxyAddressEnumerator*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GProxyAddress(_GProxyAddress*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GProxy(_GProxy*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GProxyResolver(_GProxyResolver*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GRemoteActionGroup(_GRemoteActionGroup*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GResolver(_GResolver*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GResource(_GResource*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GSeekable(_GSeekable*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GSettingsBackend(_GSettingsBackend*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GSettingsSchema(_GSettingsSchema*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GSettingsSchemaKey(_GSettingsSchemaKey*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GSettingsSchemaSource(_GSettingsSchemaSource*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GSettings(_GSettings*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GSimpleActionGroup(_GSimpleActionGroup*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GSimpleAction(_GSimpleAction*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GSimpleAsyncResult(_GSimpleAsyncResult*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GSimplePermission(_GSimplePermission*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GSimpleProxyResolver(_GSimpleProxyResolver*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GSocketAddressEnumerator(_GSocketAddressEnumerator*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GSocketAddress(_GSocketAddress*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GSocketClient(_GSocketClient*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GSocketConnectable(_GSocketConnectable*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GSocketConnection(_GSocketConnection*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GSocketControlMessage(_GSocketControlMessage*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GSocket(_GSocket*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GSocketListener(_GSocketListener*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GSocketService(_GSocketService*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GSubprocess(_GSubprocess*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GSubprocessLauncher(_GSubprocessLauncher*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GTask(_GTask*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GTcpConnection(_GTcpConnection*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GTcpWrapperConnection(_GTcpWrapperConnection*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GTestDBus(_GTestDBus*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GThemedIcon(_GThemedIcon*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GThreadedSocketService(_GThreadedSocketService*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GTlsBackend(_GTlsBackend*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GTlsCertificate(_GTlsCertificate*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GTlsClientConnection(_GTlsClientConnection*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GTlsConnection(_GTlsConnection*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GTlsDatabase(_GTlsDatabase*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GTlsFileDatabase(_GTlsFileDatabase*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GTlsInteraction(_GTlsInteraction*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GTlsPassword(_GTlsPassword*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GTlsServerConnection(_GTlsServerConnection*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GVfs(_GVfs*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GVolume(_GVolume*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GVolumeMonitor(_GVolumeMonitor*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GZlibCompressor(_GZlibCompressor*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_GZlibDecompressor(_GZlibDecompressor*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_PopplerDocument(_PopplerDocument*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_PopplerIndexIter(_PopplerIndexIter*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_PopplerFontInfo(_PopplerFontInfo*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_PopplerFontsIter(_PopplerFontsIter*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_PopplerLayersIter(_PopplerLayersIter*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_PopplerPSFile(_PopplerPSFile*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_PopplerPage(_PopplerPage*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_PopplerRectangle(_PopplerRectangle*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_PopplerPoint(_PopplerPoint*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_PopplerQuadrilateral(_PopplerQuadrilateral*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_PopplerColor(_PopplerColor*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_PopplerTextAttributes(_PopplerTextAttributes*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_PopplerLinkMapping(_PopplerLinkMapping*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_PopplerPageTransition(_PopplerPageTransition*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_PopplerImageMapping(_PopplerImageMapping*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_PopplerFormFieldMapping(_PopplerFormFieldMapping*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_PopplerAnnotMapping(_PopplerAnnotMapping*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_PopplerLayer(_PopplerLayer*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_PopplerAction(_PopplerAction*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_PopplerDest(_PopplerDest*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_PopplerFormField(_PopplerFormField*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_PopplerSignatureInfo(_PopplerSignatureInfo*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_PopplerSigningData(_PopplerSigningData*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_PopplerCertificateInfo(_PopplerCertificateInfo*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_PopplerAttachment(_PopplerAttachment*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_PopplerAnnot(_PopplerAnnot*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_PopplerAnnotCircle(_PopplerAnnotCircle*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_PopplerAnnotFileAttachment(_PopplerAnnotFileAttachment*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_PopplerAnnotFreeText(_PopplerAnnotFreeText*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_PopplerAnnotLine(_PopplerAnnotLine*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_PopplerAnnotMarkup(_PopplerAnnotMarkup*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_PopplerAnnotMovie(_PopplerAnnotMovie*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_PopplerAnnotScreen(_PopplerAnnotScreen*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_PopplerAnnotSquare(_PopplerAnnotSquare*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_PopplerAnnotStamp(_PopplerAnnotStamp*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_PopplerAnnotText(_PopplerAnnotText*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_PopplerAnnotTextMarkup(_PopplerAnnotTextMarkup*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_PopplerAnnotCalloutLine(_PopplerAnnotCalloutLine*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_PopplerFontDescription(_PopplerFontDescription*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_PopplerPath(_PopplerPath*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_PopplerMovie(_PopplerMovie*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_PopplerMedia(_PopplerMedia*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_PopplerStructureElement(_PopplerStructureElement*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_PopplerTextSpan(_PopplerTextSpan*)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_clear_PopplerStructureElementIter(_PopplerStructureElementIter*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GAsyncQueue(_GAsyncQueue*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GBookmarkFile(_GBookmarkFile*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GBytes(_GBytes*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GChecksum(_GChecksum*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GDateTime(_GDateTime*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GDate(_GDate*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GDir(_GDir*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GError(_GError*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GHashTable(_GHashTable*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GHmac(_GHmac*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GIOChannel(_GIOChannel*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GKeyFile(_GKeyFile*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GList(_GList*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GArray(_GArray*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GPtrArray(_GPtrArray*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GByteArray(_GByteArray*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GMainContext(_GMainContext*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GMainContextPusher(void*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GMainLoop(_GMainLoop*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GSource(_GSource*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GMappedFile(_GMappedFile*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GMarkupParseContext(_GMarkupParseContext*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GNode(_GNode*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GOptionContext(_GOptionContext*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GOptionGroup(_GOptionGroup*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GPatternSpec(_GPatternSpec*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GQueue(_GQueue*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GRand(_GRand*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GRegex(_GRegex*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GMatchInfo(_GMatchInfo*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GScanner(_GScanner*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GSequence(_GSequence*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GSList(_GSList*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GString(_GString*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GStringChunk(_GStringChunk*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GStrvBuilder(_GStrvBuilder*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GThread(_GThread*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GMutexLocker(void*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GRecMutexLocker(void*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GRWLockWriterLocker(void*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GRWLockReaderLocker(void*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GTimer(_GTimer*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GTimeZone(_GTimeZone*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GTree(_GTree*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GVariant(_GVariant*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GVariantBuilder(_GVariantBuilder*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GVariantIter(_GVariantIter*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GVariantDict(_GVariantDict*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GVariantType(_GVariantType*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GRefString(char*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GUri(_GUri*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GPathBuf(_GPathBuf*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GTypeModule(_GTypeModule*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GClosure(_GClosure*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GEnumClass(_GEnumClass*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GFlagsClass(_GFlagsClass*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GObject(_GObject*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GInitiallyUnowned(_GObject*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GParamSpec(_GParamSpec*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GTypeClass(_GTypeClass*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GDebugController(_GDebugController*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GDebugControllerDBus(_GDebugControllerDBus*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GDebugControllerDBusClass(_GDebugControllerDBusClass*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GListModel(_GListModel*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GListStore(_GListStore*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GListStoreClass(GListStoreClass*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GMemoryMonitor(_GMemoryMonitor*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GPowerProfileMonitor(_GPowerProfileMonitor*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GUnixConnection(_GUnixConnection*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GUnixCredentialsMessage(_GUnixCredentialsMessage*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GUnixFDList(_GUnixFDList*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GUnixSocketAddress(_GUnixSocketAddress*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GAction(_GAction*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GActionMap(_GActionMap*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GAppInfo(_GAppInfo*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GAppLaunchContext(_GAppLaunchContext*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GAppInfoMonitor(_GAppInfoMonitor*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GApplicationCommandLine(_GApplicationCommandLine*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GApplication(_GApplication*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GAsyncInitable(_GAsyncInitable*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GAsyncResult(_GAsyncResult*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GBufferedInputStream(_GBufferedInputStream*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GBufferedOutputStream(_GBufferedOutputStream*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GBytesIcon(_GBytesIcon*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GCancellable(_GCancellable*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GCharsetConverter(_GCharsetConverter*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GConverter(_GConverter*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GConverterInputStream(_GConverterInputStream*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GConverterOutputStream(_GConverterOutputStream*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GCredentials(_GCredentials*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GDatagramBased(_GDatagramBased*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GDataInputStream(_GDataInputStream*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GDataOutputStream(_GDataOutputStream*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GDBusActionGroup(_GDBusActionGroup*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GDBusAuthObserver(_GDBusAuthObserver*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GDBusConnection(_GDBusConnection*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GDBusInterface(_GDBusInterface*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GDBusInterfaceSkeleton(_GDBusInterfaceSkeleton*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GDBusMenuModel(_GDBusMenuModel*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GDBusMessage(_GDBusMessage*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GDBusMethodInvocation(_GDBusMethodInvocation*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GDBusNodeInfo(_GDBusNodeInfo*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GDBusObject(_GDBusObject*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GDBusObjectManagerClient(_GDBusObjectManagerClient*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GDBusObjectManager(_GDBusObjectManager*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GDBusObjectManagerServer(_GDBusObjectManagerServer*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GDBusObjectProxy(_GDBusObjectProxy*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GDBusObjectSkeleton(_GDBusObjectSkeleton*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GDBusProxy(_GDBusProxy*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GDBusServer(_GDBusServer*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GDrive(_GDrive*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GEmblemedIcon(_GEmblemedIcon*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GEmblem(_GEmblem*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GFileEnumerator(_GFileEnumerator*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GFile(_GFile*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GFileAttributeInfoList(_GFileAttributeInfoList*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GFileIcon(_GFileIcon*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GFileInfo(_GFileInfo*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GFileInputStream(_GFileInputStream*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GFileIOStream(_GFileIOStream*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GFileMonitor(_GFileMonitor*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GFilenameCompleter(_GFilenameCompleter*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GFileOutputStream(_GFileOutputStream*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GFilterInputStream(_GFilterInputStream*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GFilterOutputStream(_GFilterOutputStream*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GIcon(_GIcon*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GInetAddress(_GInetAddress*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GInetAddressMask(_GInetAddressMask*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GInetSocketAddress(_GInetSocketAddress*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GInitable(_GInitable*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GInputStream(_GInputStream*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GIOModule(_GIOModule*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GIOStream(_GIOStream*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GLoadableIcon(_GLoadableIcon*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GMemoryInputStream(_GMemoryInputStream*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GMemoryOutputStream(_GMemoryOutputStream*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GMenu(_GMenu*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GMenuItem(_GMenuItem*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GMenuModel(_GMenuModel*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GMenuAttributeIter(_GMenuAttributeIter*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GMenuLinkIter(_GMenuLinkIter*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GMount(_GMount*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GMountOperation(_GMountOperation*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GNativeVolumeMonitor(_GNativeVolumeMonitor*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GNetworkAddress(_GNetworkAddress*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GNetworkMonitor(_GNetworkMonitor*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GNetworkService(_GNetworkService*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GNotification(_GNotification*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GOutputStream(_GOutputStream*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GPermission(_GPermission*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GPollableInputStream(_GPollableInputStream*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GPollableOutputStream(_GPollableOutputStream*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GPropertyAction(_GPropertyAction*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GProxyAddressEnumerator(_GProxyAddressEnumerator*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GProxyAddress(_GProxyAddress*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GProxy(_GProxy*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GProxyResolver(_GProxyResolver*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GRemoteActionGroup(_GRemoteActionGroup*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GResolver(_GResolver*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GResource(_GResource*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GSeekable(_GSeekable*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GSettingsBackend(_GSettingsBackend*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GSettingsSchema(_GSettingsSchema*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GSettingsSchemaKey(_GSettingsSchemaKey*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GSettingsSchemaSource(_GSettingsSchemaSource*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GSettings(_GSettings*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GSimpleActionGroup(_GSimpleActionGroup*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GSimpleAction(_GSimpleAction*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GSimpleAsyncResult(_GSimpleAsyncResult*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GSimplePermission(_GSimplePermission*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GSimpleProxyResolver(_GSimpleProxyResolver*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GSocketAddressEnumerator(_GSocketAddressEnumerator*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GSocketAddress(_GSocketAddress*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GSocketClient(_GSocketClient*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GSocketConnectable(_GSocketConnectable*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GSocketConnection(_GSocketConnection*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GSocketControlMessage(_GSocketControlMessage*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GSocket(_GSocket*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GSocketListener(_GSocketListener*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GSocketService(_GSocketService*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GSubprocess(_GSubprocess*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GSubprocessLauncher(_GSubprocessLauncher*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GTask(_GTask*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GTcpConnection(_GTcpConnection*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GTcpWrapperConnection(_GTcpWrapperConnection*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GTestDBus(_GTestDBus*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GThemedIcon(_GThemedIcon*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GThreadedSocketService(_GThreadedSocketService*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GTlsBackend(_GTlsBackend*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GTlsCertificate(_GTlsCertificate*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GTlsClientConnection(_GTlsClientConnection*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GTlsConnection(_GTlsConnection*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GTlsDatabase(_GTlsDatabase*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GTlsFileDatabase(_GTlsFileDatabase*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GTlsInteraction(_GTlsInteraction*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GTlsPassword(_GTlsPassword*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GTlsServerConnection(_GTlsServerConnection*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GVfs(_GVfs*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GVolume(_GVolume*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GVolumeMonitor(_GVolumeMonitor*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GZlibCompressor(_GZlibCompressor*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_GZlibDecompressor(_GZlibDecompressor*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_PopplerDocument(_PopplerDocument*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_PopplerIndexIter(_PopplerIndexIter*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_PopplerFontInfo(_PopplerFontInfo*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_PopplerFontsIter(_PopplerFontsIter*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_PopplerLayersIter(_PopplerLayersIter*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_PopplerPSFile(_PopplerPSFile*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_PopplerPage(_PopplerPage*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_PopplerRectangle(_PopplerRectangle*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_PopplerPoint(_PopplerPoint*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_PopplerQuadrilateral(_PopplerQuadrilateral*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_PopplerColor(_PopplerColor*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_PopplerTextAttributes(_PopplerTextAttributes*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_PopplerLinkMapping(_PopplerLinkMapping*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_PopplerPageTransition(_PopplerPageTransition*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_PopplerImageMapping(_PopplerImageMapping*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_PopplerFormFieldMapping(_PopplerFormFieldMapping*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_PopplerAnnotMapping(_PopplerAnnotMapping*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_PopplerLayer(_PopplerLayer*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_PopplerAction(_PopplerAction*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_PopplerDest(_PopplerDest*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_PopplerFormField(_PopplerFormField*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_PopplerSignatureInfo(_PopplerSignatureInfo*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_PopplerSigningData(_PopplerSigningData*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_PopplerCertificateInfo(_PopplerCertificateInfo*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_PopplerAttachment(_PopplerAttachment*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_PopplerAnnot(_PopplerAnnot*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_PopplerAnnotCircle(_PopplerAnnotCircle*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_PopplerAnnotFileAttachment(_PopplerAnnotFileAttachment*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_PopplerAnnotFreeText(_PopplerAnnotFreeText*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_PopplerAnnotLine(_PopplerAnnotLine*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_PopplerAnnotMarkup(_PopplerAnnotMarkup*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_PopplerAnnotMovie(_PopplerAnnotMovie*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_PopplerAnnotScreen(_PopplerAnnotScreen*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_PopplerAnnotSquare(_PopplerAnnotSquare*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_PopplerAnnotStamp(_PopplerAnnotStamp*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_PopplerAnnotText(_PopplerAnnotText*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_PopplerAnnotTextMarkup(_PopplerAnnotTextMarkup*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_PopplerAnnotCalloutLine(_PopplerAnnotCalloutLine*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_PopplerFontDescription(_PopplerFontDescription*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_PopplerPath(_PopplerPath*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_PopplerMovie(_PopplerMovie*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_PopplerMedia(_PopplerMedia*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_PopplerStructureElement(_PopplerStructureElement*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_PopplerTextSpan(_PopplerTextSpan*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_clear_PopplerStructureElementIter(_PopplerStructureElementIter*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GAsyncQueue(_GAsyncQueue*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GBookmarkFile(_GBookmarkFile*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GBytes(_GBytes*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GChecksum(_GChecksum*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GDateTime(_GDateTime*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GDate(_GDate*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GDir(_GDir*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GError(_GError*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GHashTable(_GHashTable*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GHmac(_GHmac*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GIOChannel(_GIOChannel*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GKeyFile(_GKeyFile*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GList(_GList*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GArray(_GArray*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GPtrArray(_GPtrArray*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GByteArray(_GByteArray*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GMainContext(_GMainContext*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GMainContextPusher(void*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GMainLoop(_GMainLoop*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GSource(_GSource*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GMappedFile(_GMappedFile*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GMarkupParseContext(_GMarkupParseContext*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GNode(_GNode*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GOptionContext(_GOptionContext*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GOptionGroup(_GOptionGroup*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GPatternSpec(_GPatternSpec*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GQueue(_GQueue*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GRand(_GRand*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GRegex(_GRegex*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GMatchInfo(_GMatchInfo*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GScanner(_GScanner*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GSequence(_GSequence*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GSList(_GSList*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GString(_GString*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GStringChunk(_GStringChunk*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GStrvBuilder(_GStrvBuilder*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GThread(_GThread*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GMutexLocker(void*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GRecMutexLocker(void*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GRWLockWriterLocker(void*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GRWLockReaderLocker(void*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GTimer(_GTimer*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GTimeZone(_GTimeZone*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GTree(_GTree*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GVariant(_GVariant*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GVariantBuilder(_GVariantBuilder*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GVariantIter(_GVariantIter*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GVariantDict(_GVariantDict*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GVariantType(_GVariantType*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GRefString(char*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GUri(_GUri*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GPathBuf(_GPathBuf*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GTypeModule(_GTypeModule*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GClosure(_GClosure*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GEnumClass(_GEnumClass*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GFlagsClass(_GFlagsClass*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GObject(_GObject*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GInitiallyUnowned(_GObject*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GParamSpec(_GParamSpec*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GTypeClass(_GTypeClass*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GDebugController(_GDebugController*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GDebugControllerDBus(_GDebugControllerDBus*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GDebugControllerDBusClass(_GDebugControllerDBusClass*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GListModel(_GListModel*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GListStore(_GListStore*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GListStoreClass(GListStoreClass*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GMemoryMonitor(_GMemoryMonitor*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GPowerProfileMonitor(_GPowerProfileMonitor*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GUnixConnection(_GUnixConnection*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GUnixCredentialsMessage(_GUnixCredentialsMessage*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GUnixFDList(_GUnixFDList*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GUnixSocketAddress(_GUnixSocketAddress*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GAction(_GAction*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GActionMap(_GActionMap*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GAppInfo(_GAppInfo*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GAppLaunchContext(_GAppLaunchContext*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GAppInfoMonitor(_GAppInfoMonitor*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GApplicationCommandLine(_GApplicationCommandLine*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GApplication(_GApplication*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GAsyncInitable(_GAsyncInitable*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GAsyncResult(_GAsyncResult*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GBufferedInputStream(_GBufferedInputStream*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GBufferedOutputStream(_GBufferedOutputStream*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GBytesIcon(_GBytesIcon*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GCancellable(_GCancellable*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GCharsetConverter(_GCharsetConverter*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GConverter(_GConverter*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GConverterInputStream(_GConverterInputStream*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GConverterOutputStream(_GConverterOutputStream*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GCredentials(_GCredentials*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GDatagramBased(_GDatagramBased*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GDataInputStream(_GDataInputStream*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GDataOutputStream(_GDataOutputStream*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GDBusActionGroup(_GDBusActionGroup*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GDBusAuthObserver(_GDBusAuthObserver*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GDBusConnection(_GDBusConnection*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GDBusInterface(_GDBusInterface*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GDBusInterfaceSkeleton(_GDBusInterfaceSkeleton*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GDBusMenuModel(_GDBusMenuModel*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GDBusMessage(_GDBusMessage*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GDBusMethodInvocation(_GDBusMethodInvocation*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GDBusNodeInfo(_GDBusNodeInfo*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GDBusObject(_GDBusObject*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GDBusObjectManagerClient(_GDBusObjectManagerClient*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GDBusObjectManager(_GDBusObjectManager*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GDBusObjectManagerServer(_GDBusObjectManagerServer*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GDBusObjectProxy(_GDBusObjectProxy*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GDBusObjectSkeleton(_GDBusObjectSkeleton*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GDBusProxy(_GDBusProxy*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GDBusServer(_GDBusServer*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GDrive(_GDrive*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GEmblemedIcon(_GEmblemedIcon*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GEmblem(_GEmblem*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GFileEnumerator(_GFileEnumerator*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GFile(_GFile*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GFileAttributeInfoList(_GFileAttributeInfoList*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GFileIcon(_GFileIcon*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GFileInfo(_GFileInfo*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GFileInputStream(_GFileInputStream*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GFileIOStream(_GFileIOStream*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GFileMonitor(_GFileMonitor*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GFilenameCompleter(_GFilenameCompleter*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GFileOutputStream(_GFileOutputStream*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GFilterInputStream(_GFilterInputStream*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GFilterOutputStream(_GFilterOutputStream*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GIcon(_GIcon*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GInetAddress(_GInetAddress*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GInetAddressMask(_GInetAddressMask*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GInetSocketAddress(_GInetSocketAddress*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GInitable(_GInitable*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GInputStream(_GInputStream*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GIOModule(_GIOModule*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GIOStream(_GIOStream*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GLoadableIcon(_GLoadableIcon*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GMemoryInputStream(_GMemoryInputStream*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GMemoryOutputStream(_GMemoryOutputStream*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GMenu(_GMenu*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GMenuItem(_GMenuItem*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GMenuModel(_GMenuModel*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GMenuAttributeIter(_GMenuAttributeIter*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GMenuLinkIter(_GMenuLinkIter*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GMount(_GMount*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GMountOperation(_GMountOperation*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GNativeVolumeMonitor(_GNativeVolumeMonitor*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GNetworkAddress(_GNetworkAddress*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GNetworkMonitor(_GNetworkMonitor*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GNetworkService(_GNetworkService*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GNotification(_GNotification*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GOutputStream(_GOutputStream*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GPermission(_GPermission*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GPollableInputStream(_GPollableInputStream*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GPollableOutputStream(_GPollableOutputStream*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GPropertyAction(_GPropertyAction*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GProxyAddressEnumerator(_GProxyAddressEnumerator*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GProxyAddress(_GProxyAddress*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GProxy(_GProxy*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GProxyResolver(_GProxyResolver*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GRemoteActionGroup(_GRemoteActionGroup*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GResolver(_GResolver*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GResource(_GResource*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GSeekable(_GSeekable*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GSettingsBackend(_GSettingsBackend*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GSettingsSchema(_GSettingsSchema*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GSettingsSchemaKey(_GSettingsSchemaKey*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GSettingsSchemaSource(_GSettingsSchemaSource*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GSettings(_GSettings*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GSimpleActionGroup(_GSimpleActionGroup*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GSimpleAction(_GSimpleAction*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GSimpleAsyncResult(_GSimpleAsyncResult*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GSimplePermission(_GSimplePermission*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GSimpleProxyResolver(_GSimpleProxyResolver*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GSocketAddressEnumerator(_GSocketAddressEnumerator*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GSocketAddress(_GSocketAddress*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GSocketClient(_GSocketClient*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GSocketConnectable(_GSocketConnectable*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GSocketConnection(_GSocketConnection*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GSocketControlMessage(_GSocketControlMessage*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GSocket(_GSocket*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GSocketListener(_GSocketListener*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GSocketService(_GSocketService*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GSubprocess(_GSubprocess*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GSubprocessLauncher(_GSubprocessLauncher*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GTask(_GTask*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GTcpConnection(_GTcpConnection*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GTcpWrapperConnection(_GTcpWrapperConnection*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GTestDBus(_GTestDBus*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GThemedIcon(_GThemedIcon*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GThreadedSocketService(_GThreadedSocketService*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GTlsBackend(_GTlsBackend*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GTlsCertificate(_GTlsCertificate*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GTlsClientConnection(_GTlsClientConnection*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GTlsConnection(_GTlsConnection*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GTlsDatabase(_GTlsDatabase*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GTlsFileDatabase(_GTlsFileDatabase*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GTlsInteraction(_GTlsInteraction*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GTlsPassword(_GTlsPassword*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GTlsServerConnection(_GTlsServerConnection*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GVfs(_GVfs*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GVolume(_GVolume*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GVolumeMonitor(_GVolumeMonitor*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GZlibCompressor(_GZlibCompressor*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_GZlibDecompressor(_GZlibDecompressor*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_PopplerDocument(_PopplerDocument*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_PopplerIndexIter(_PopplerIndexIter*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_PopplerFontInfo(_PopplerFontInfo*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_PopplerFontsIter(_PopplerFontsIter*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_PopplerLayersIter(_PopplerLayersIter*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_PopplerPSFile(_PopplerPSFile*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_PopplerPage(_PopplerPage*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_PopplerRectangle(_PopplerRectangle*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_PopplerPoint(_PopplerPoint*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_PopplerQuadrilateral(_PopplerQuadrilateral*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_PopplerColor(_PopplerColor*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_PopplerTextAttributes(_PopplerTextAttributes*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_PopplerLinkMapping(_PopplerLinkMapping*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_PopplerPageTransition(_PopplerPageTransition*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_PopplerImageMapping(_PopplerImageMapping*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_PopplerFormFieldMapping(_PopplerFormFieldMapping*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_PopplerAnnotMapping(_PopplerAnnotMapping*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_PopplerLayer(_PopplerLayer*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_PopplerAction(_PopplerAction*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_PopplerDest(_PopplerDest*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_PopplerFormField(_PopplerFormField*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_PopplerSignatureInfo(_PopplerSignatureInfo*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_PopplerSigningData(_PopplerSigningData*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_PopplerCertificateInfo(_PopplerCertificateInfo*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_PopplerAttachment(_PopplerAttachment*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_PopplerAnnot(_PopplerAnnot*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_PopplerAnnotCircle(_PopplerAnnotCircle*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_PopplerAnnotFileAttachment(_PopplerAnnotFileAttachment*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_PopplerAnnotFreeText(_PopplerAnnotFreeText*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_PopplerAnnotLine(_PopplerAnnotLine*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_PopplerAnnotMarkup(_PopplerAnnotMarkup*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_PopplerAnnotMovie(_PopplerAnnotMovie*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_PopplerAnnotScreen(_PopplerAnnotScreen*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_PopplerAnnotSquare(_PopplerAnnotSquare*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_PopplerAnnotStamp(_PopplerAnnotStamp*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_PopplerAnnotText(_PopplerAnnotText*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_PopplerAnnotTextMarkup(_PopplerAnnotTextMarkup*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_PopplerAnnotCalloutLine(_PopplerAnnotCalloutLine*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_PopplerFontDescription(_PopplerFontDescription*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_PopplerPath(_PopplerPath*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_PopplerMovie(_PopplerMovie*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_PopplerMedia(_PopplerMedia*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_PopplerStructureElement(_PopplerStructureElement*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_PopplerTextSpan(_PopplerTextSpan*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_clear_PopplerStructureElementIter(_PopplerStructureElementIter*)
1357
  static G_GNUC_UNUSED inline void _GLIB_AUTOPTR_FUNC_NAME(TypeName) (TypeName **_ptr)                          \
1358
0
    { _GLIB_AUTOPTR_CLEAR_FUNC_NAME(TypeName) (*_ptr); }                                                        \
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GAsyncQueue(_GAsyncQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GBookmarkFile(_GBookmarkFile**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GBytes(_GBytes**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GChecksum(_GChecksum**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GDateTime(_GDateTime**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GDate(_GDate**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GDir(_GDir**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GError(_GError**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GHashTable(_GHashTable**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GHmac(_GHmac**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GIOChannel(_GIOChannel**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GKeyFile(_GKeyFile**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GList(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GArray(_GArray**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GPtrArray(_GPtrArray**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GByteArray(_GByteArray**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GMainContext(_GMainContext**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GMainContextPusher(void**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GMainLoop(_GMainLoop**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GSource(_GSource**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GMappedFile(_GMappedFile**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GMarkupParseContext(_GMarkupParseContext**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GNode(_GNode**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GOptionContext(_GOptionContext**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GOptionGroup(_GOptionGroup**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GPatternSpec(_GPatternSpec**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GQueue(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GRand(_GRand**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GRegex(_GRegex**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GMatchInfo(_GMatchInfo**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GScanner(_GScanner**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GSequence(_GSequence**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GSList(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GString(_GString**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GStringChunk(_GStringChunk**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GStrvBuilder(_GStrvBuilder**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GThread(_GThread**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GMutexLocker(void**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GRecMutexLocker(void**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GRWLockWriterLocker(void**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GRWLockReaderLocker(void**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GTimer(_GTimer**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GTimeZone(_GTimeZone**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GTree(_GTree**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GVariant(_GVariant**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GVariantBuilder(_GVariantBuilder**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GVariantIter(_GVariantIter**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GVariantDict(_GVariantDict**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GVariantType(_GVariantType**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GRefString(char**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GUri(_GUri**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GPathBuf(_GPathBuf**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GTypeModule(_GTypeModule**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GClosure(_GClosure**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GEnumClass(_GEnumClass**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GFlagsClass(_GFlagsClass**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GObject(_GObject**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GInitiallyUnowned(_GObject**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GParamSpec(_GParamSpec**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GTypeClass(_GTypeClass**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GDebugController(_GDebugController**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GDebugControllerDBus(_GDebugControllerDBus**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GDebugControllerDBusClass(_GDebugControllerDBusClass**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GListModel(_GListModel**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GListStore(_GListStore**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GListStoreClass(GListStoreClass**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GMemoryMonitor(_GMemoryMonitor**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GPowerProfileMonitor(_GPowerProfileMonitor**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GUnixConnection(_GUnixConnection**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GUnixCredentialsMessage(_GUnixCredentialsMessage**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GUnixFDList(_GUnixFDList**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GUnixSocketAddress(_GUnixSocketAddress**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GAction(_GAction**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GActionMap(_GActionMap**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GAppInfo(_GAppInfo**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GAppLaunchContext(_GAppLaunchContext**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GAppInfoMonitor(_GAppInfoMonitor**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GApplicationCommandLine(_GApplicationCommandLine**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GApplication(_GApplication**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GAsyncInitable(_GAsyncInitable**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GAsyncResult(_GAsyncResult**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GBufferedInputStream(_GBufferedInputStream**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GBufferedOutputStream(_GBufferedOutputStream**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GBytesIcon(_GBytesIcon**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GCancellable(_GCancellable**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GCharsetConverter(_GCharsetConverter**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GConverter(_GConverter**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GConverterInputStream(_GConverterInputStream**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GConverterOutputStream(_GConverterOutputStream**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GCredentials(_GCredentials**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GDatagramBased(_GDatagramBased**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GDataInputStream(_GDataInputStream**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GDataOutputStream(_GDataOutputStream**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GDBusActionGroup(_GDBusActionGroup**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GDBusAuthObserver(_GDBusAuthObserver**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GDBusConnection(_GDBusConnection**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GDBusInterface(_GDBusInterface**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GDBusInterfaceSkeleton(_GDBusInterfaceSkeleton**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GDBusMenuModel(_GDBusMenuModel**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GDBusMessage(_GDBusMessage**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GDBusMethodInvocation(_GDBusMethodInvocation**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GDBusNodeInfo(_GDBusNodeInfo**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GDBusObject(_GDBusObject**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GDBusObjectManagerClient(_GDBusObjectManagerClient**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GDBusObjectManager(_GDBusObjectManager**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GDBusObjectManagerServer(_GDBusObjectManagerServer**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GDBusObjectProxy(_GDBusObjectProxy**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GDBusObjectSkeleton(_GDBusObjectSkeleton**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GDBusProxy(_GDBusProxy**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GDBusServer(_GDBusServer**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GDrive(_GDrive**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GEmblemedIcon(_GEmblemedIcon**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GEmblem(_GEmblem**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GFileEnumerator(_GFileEnumerator**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GFile(_GFile**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GFileAttributeInfoList(_GFileAttributeInfoList**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GFileIcon(_GFileIcon**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GFileInfo(_GFileInfo**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GFileInputStream(_GFileInputStream**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GFileIOStream(_GFileIOStream**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GFileMonitor(_GFileMonitor**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GFilenameCompleter(_GFilenameCompleter**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GFileOutputStream(_GFileOutputStream**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GFilterInputStream(_GFilterInputStream**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GFilterOutputStream(_GFilterOutputStream**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GIcon(_GIcon**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GInetAddress(_GInetAddress**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GInetAddressMask(_GInetAddressMask**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GInetSocketAddress(_GInetSocketAddress**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GInitable(_GInitable**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GInputStream(_GInputStream**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GIOModule(_GIOModule**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GIOStream(_GIOStream**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GLoadableIcon(_GLoadableIcon**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GMemoryInputStream(_GMemoryInputStream**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GMemoryOutputStream(_GMemoryOutputStream**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GMenu(_GMenu**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GMenuItem(_GMenuItem**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GMenuModel(_GMenuModel**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GMenuAttributeIter(_GMenuAttributeIter**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GMenuLinkIter(_GMenuLinkIter**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GMount(_GMount**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GMountOperation(_GMountOperation**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GNativeVolumeMonitor(_GNativeVolumeMonitor**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GNetworkAddress(_GNetworkAddress**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GNetworkMonitor(_GNetworkMonitor**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GNetworkService(_GNetworkService**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GNotification(_GNotification**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GOutputStream(_GOutputStream**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GPermission(_GPermission**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GPollableInputStream(_GPollableInputStream**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GPollableOutputStream(_GPollableOutputStream**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GPropertyAction(_GPropertyAction**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GProxyAddressEnumerator(_GProxyAddressEnumerator**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GProxyAddress(_GProxyAddress**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GProxy(_GProxy**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GProxyResolver(_GProxyResolver**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GRemoteActionGroup(_GRemoteActionGroup**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GResolver(_GResolver**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GResource(_GResource**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GSeekable(_GSeekable**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GSettingsBackend(_GSettingsBackend**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GSettingsSchema(_GSettingsSchema**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GSettingsSchemaKey(_GSettingsSchemaKey**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GSettingsSchemaSource(_GSettingsSchemaSource**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GSettings(_GSettings**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GSimpleActionGroup(_GSimpleActionGroup**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GSimpleAction(_GSimpleAction**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GSimpleAsyncResult(_GSimpleAsyncResult**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GSimplePermission(_GSimplePermission**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GSimpleProxyResolver(_GSimpleProxyResolver**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GSocketAddressEnumerator(_GSocketAddressEnumerator**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GSocketAddress(_GSocketAddress**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GSocketClient(_GSocketClient**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GSocketConnectable(_GSocketConnectable**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GSocketConnection(_GSocketConnection**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GSocketControlMessage(_GSocketControlMessage**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GSocket(_GSocket**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GSocketListener(_GSocketListener**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GSocketService(_GSocketService**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GSubprocess(_GSubprocess**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GSubprocessLauncher(_GSubprocessLauncher**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GTask(_GTask**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GTcpConnection(_GTcpConnection**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GTcpWrapperConnection(_GTcpWrapperConnection**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GTestDBus(_GTestDBus**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GThemedIcon(_GThemedIcon**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GThreadedSocketService(_GThreadedSocketService**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GTlsBackend(_GTlsBackend**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GTlsCertificate(_GTlsCertificate**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GTlsClientConnection(_GTlsClientConnection**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GTlsConnection(_GTlsConnection**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GTlsDatabase(_GTlsDatabase**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GTlsFileDatabase(_GTlsFileDatabase**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GTlsInteraction(_GTlsInteraction**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GTlsPassword(_GTlsPassword**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GTlsServerConnection(_GTlsServerConnection**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GVfs(_GVfs**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GVolume(_GVolume**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GVolumeMonitor(_GVolumeMonitor**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GZlibCompressor(_GZlibCompressor**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_GZlibDecompressor(_GZlibDecompressor**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_PopplerDocument(_PopplerDocument**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_PopplerIndexIter(_PopplerIndexIter**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_PopplerFontInfo(_PopplerFontInfo**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_PopplerFontsIter(_PopplerFontsIter**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_PopplerLayersIter(_PopplerLayersIter**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_PopplerPSFile(_PopplerPSFile**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_PopplerPage(_PopplerPage**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_PopplerRectangle(_PopplerRectangle**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_PopplerPoint(_PopplerPoint**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_PopplerQuadrilateral(_PopplerQuadrilateral**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_PopplerColor(_PopplerColor**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_PopplerTextAttributes(_PopplerTextAttributes**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_PopplerLinkMapping(_PopplerLinkMapping**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_PopplerPageTransition(_PopplerPageTransition**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_PopplerImageMapping(_PopplerImageMapping**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_PopplerFormFieldMapping(_PopplerFormFieldMapping**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotMapping(_PopplerAnnotMapping**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_PopplerLayer(_PopplerLayer**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_PopplerAction(_PopplerAction**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_PopplerDest(_PopplerDest**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_PopplerFormField(_PopplerFormField**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_PopplerSignatureInfo(_PopplerSignatureInfo**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_PopplerSigningData(_PopplerSigningData**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_PopplerCertificateInfo(_PopplerCertificateInfo**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_PopplerAttachment(_PopplerAttachment**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnot(_PopplerAnnot**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotCircle(_PopplerAnnotCircle**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotFileAttachment(_PopplerAnnotFileAttachment**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotFreeText(_PopplerAnnotFreeText**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotLine(_PopplerAnnotLine**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotMarkup(_PopplerAnnotMarkup**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotMovie(_PopplerAnnotMovie**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotScreen(_PopplerAnnotScreen**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotSquare(_PopplerAnnotSquare**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotStamp(_PopplerAnnotStamp**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotText(_PopplerAnnotText**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotTextMarkup(_PopplerAnnotTextMarkup**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotCalloutLine(_PopplerAnnotCalloutLine**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_PopplerFontDescription(_PopplerFontDescription**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_PopplerPath(_PopplerPath**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_PopplerMovie(_PopplerMovie**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_PopplerMedia(_PopplerMedia**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_PopplerStructureElement(_PopplerStructureElement**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_PopplerTextSpan(_PopplerTextSpan**)
Unexecuted instantiation: util_fuzzer.cc:glib_autoptr_cleanup_PopplerStructureElementIter(_PopplerStructureElementIter**)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_cleanup_GAsyncQueue(_GAsyncQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_cleanup_GBookmarkFile(_GBookmarkFile**)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_cleanup_GBytes(_GBytes**)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_cleanup_GChecksum(_GChecksum**)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_cleanup_GDateTime(_GDateTime**)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_cleanup_GDate(_GDate**)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_cleanup_GDir(_GDir**)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_cleanup_GError(_GError**)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_cleanup_GHashTable(_GHashTable**)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_cleanup_GHmac(_GHmac**)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_cleanup_GIOChannel(_GIOChannel**)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_cleanup_GKeyFile(_GKeyFile**)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_cleanup_GList(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_cleanup_GArray(_GArray**)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_cleanup_GPtrArray(_GPtrArray**)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_cleanup_GByteArray(_GByteArray**)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_cleanup_GMainContext(_GMainContext**)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_cleanup_GMainContextPusher(void**)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_cleanup_GMainLoop(_GMainLoop**)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_cleanup_GSource(_GSource**)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_cleanup_GMappedFile(_GMappedFile**)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_cleanup_GMarkupParseContext(_GMarkupParseContext**)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_cleanup_GNode(_GNode**)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_cleanup_GOptionContext(_GOptionContext**)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_cleanup_GOptionGroup(_GOptionGroup**)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_cleanup_GPatternSpec(_GPatternSpec**)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_cleanup_GQueue(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_cleanup_GRand(_GRand**)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_cleanup_GRegex(_GRegex**)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_cleanup_GMatchInfo(_GMatchInfo**)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_cleanup_GScanner(_GScanner**)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_cleanup_GSequence(_GSequence**)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_cleanup_GSList(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_cleanup_GString(_GString**)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_cleanup_GStringChunk(_GStringChunk**)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_cleanup_GStrvBuilder(_GStrvBuilder**)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_cleanup_GThread(_GThread**)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_cleanup_GMutexLocker(void**)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_cleanup_GRecMutexLocker(void**)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_cleanup_GRWLockWriterLocker(void**)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_cleanup_GRWLockReaderLocker(void**)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_cleanup_GTimer(_GTimer**)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_cleanup_GTimeZone(_GTimeZone**)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_cleanup_GTree(_GTree**)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_cleanup_GVariant(_GVariant**)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_cleanup_GVariantBuilder(_GVariantBuilder**)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_cleanup_GVariantIter(_GVariantIter**)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_cleanup_GVariantDict(_GVariantDict**)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_cleanup_GVariantType(_GVariantType**)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_cleanup_GRefString(char**)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_cleanup_GUri(_GUri**)
Unexecuted instantiation: hb-unicode.cc:glib_autoptr_cleanup_GPathBuf(_GPathBuf**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GAsyncQueue(_GAsyncQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GBookmarkFile(_GBookmarkFile**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GBytes(_GBytes**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GChecksum(_GChecksum**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GDateTime(_GDateTime**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GDate(_GDate**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GDir(_GDir**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GError(_GError**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GHashTable(_GHashTable**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GHmac(_GHmac**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GIOChannel(_GIOChannel**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GKeyFile(_GKeyFile**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GList(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GArray(_GArray**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GPtrArray(_GPtrArray**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GByteArray(_GByteArray**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GMainContext(_GMainContext**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GMainContextPusher(void**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GMainLoop(_GMainLoop**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GSource(_GSource**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GMappedFile(_GMappedFile**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GMarkupParseContext(_GMarkupParseContext**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GNode(_GNode**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GOptionContext(_GOptionContext**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GOptionGroup(_GOptionGroup**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GPatternSpec(_GPatternSpec**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GQueue(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GRand(_GRand**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GRegex(_GRegex**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GMatchInfo(_GMatchInfo**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GScanner(_GScanner**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GSequence(_GSequence**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GSList(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GString(_GString**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GStringChunk(_GStringChunk**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GStrvBuilder(_GStrvBuilder**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GThread(_GThread**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GMutexLocker(void**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GRecMutexLocker(void**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GRWLockWriterLocker(void**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GRWLockReaderLocker(void**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GTimer(_GTimer**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GTimeZone(_GTimeZone**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GTree(_GTree**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GVariant(_GVariant**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GVariantBuilder(_GVariantBuilder**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GVariantIter(_GVariantIter**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GVariantDict(_GVariantDict**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GVariantType(_GVariantType**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GRefString(char**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GUri(_GUri**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GPathBuf(_GPathBuf**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GTypeModule(_GTypeModule**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GClosure(_GClosure**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GEnumClass(_GEnumClass**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GFlagsClass(_GFlagsClass**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GObject(_GObject**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GInitiallyUnowned(_GObject**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GParamSpec(_GParamSpec**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GTypeClass(_GTypeClass**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GDebugController(_GDebugController**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GDebugControllerDBus(_GDebugControllerDBus**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GDebugControllerDBusClass(_GDebugControllerDBusClass**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GListModel(_GListModel**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GListStore(_GListStore**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GListStoreClass(GListStoreClass**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GMemoryMonitor(_GMemoryMonitor**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GPowerProfileMonitor(_GPowerProfileMonitor**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GUnixConnection(_GUnixConnection**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GUnixCredentialsMessage(_GUnixCredentialsMessage**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GUnixFDList(_GUnixFDList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GUnixSocketAddress(_GUnixSocketAddress**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GAction(_GAction**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GActionMap(_GActionMap**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GAppInfo(_GAppInfo**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GAppLaunchContext(_GAppLaunchContext**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GAppInfoMonitor(_GAppInfoMonitor**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GApplicationCommandLine(_GApplicationCommandLine**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GApplication(_GApplication**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GAsyncInitable(_GAsyncInitable**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GAsyncResult(_GAsyncResult**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GBufferedInputStream(_GBufferedInputStream**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GBufferedOutputStream(_GBufferedOutputStream**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GBytesIcon(_GBytesIcon**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GCancellable(_GCancellable**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GCharsetConverter(_GCharsetConverter**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GConverter(_GConverter**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GConverterInputStream(_GConverterInputStream**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GConverterOutputStream(_GConverterOutputStream**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GCredentials(_GCredentials**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GDatagramBased(_GDatagramBased**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GDataInputStream(_GDataInputStream**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GDataOutputStream(_GDataOutputStream**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GDBusActionGroup(_GDBusActionGroup**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GDBusAuthObserver(_GDBusAuthObserver**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GDBusConnection(_GDBusConnection**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GDBusInterface(_GDBusInterface**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GDBusInterfaceSkeleton(_GDBusInterfaceSkeleton**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GDBusMenuModel(_GDBusMenuModel**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GDBusMessage(_GDBusMessage**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GDBusMethodInvocation(_GDBusMethodInvocation**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GDBusNodeInfo(_GDBusNodeInfo**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GDBusObject(_GDBusObject**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GDBusObjectManagerClient(_GDBusObjectManagerClient**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GDBusObjectManager(_GDBusObjectManager**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GDBusObjectManagerServer(_GDBusObjectManagerServer**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GDBusObjectProxy(_GDBusObjectProxy**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GDBusObjectSkeleton(_GDBusObjectSkeleton**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GDBusProxy(_GDBusProxy**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GDBusServer(_GDBusServer**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GDrive(_GDrive**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GEmblemedIcon(_GEmblemedIcon**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GEmblem(_GEmblem**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GFileEnumerator(_GFileEnumerator**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GFile(_GFile**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GFileAttributeInfoList(_GFileAttributeInfoList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GFileIcon(_GFileIcon**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GFileInfo(_GFileInfo**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GFileInputStream(_GFileInputStream**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GFileIOStream(_GFileIOStream**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GFileMonitor(_GFileMonitor**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GFilenameCompleter(_GFilenameCompleter**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GFileOutputStream(_GFileOutputStream**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GFilterInputStream(_GFilterInputStream**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GFilterOutputStream(_GFilterOutputStream**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GIcon(_GIcon**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GInetAddress(_GInetAddress**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GInetAddressMask(_GInetAddressMask**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GInetSocketAddress(_GInetSocketAddress**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GInitable(_GInitable**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GInputStream(_GInputStream**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GIOModule(_GIOModule**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GIOStream(_GIOStream**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GLoadableIcon(_GLoadableIcon**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GMemoryInputStream(_GMemoryInputStream**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GMemoryOutputStream(_GMemoryOutputStream**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GMenu(_GMenu**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GMenuItem(_GMenuItem**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GMenuModel(_GMenuModel**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GMenuAttributeIter(_GMenuAttributeIter**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GMenuLinkIter(_GMenuLinkIter**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GMount(_GMount**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GMountOperation(_GMountOperation**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GNativeVolumeMonitor(_GNativeVolumeMonitor**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GNetworkAddress(_GNetworkAddress**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GNetworkMonitor(_GNetworkMonitor**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GNetworkService(_GNetworkService**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GNotification(_GNotification**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GOutputStream(_GOutputStream**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GPermission(_GPermission**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GPollableInputStream(_GPollableInputStream**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GPollableOutputStream(_GPollableOutputStream**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GPropertyAction(_GPropertyAction**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GProxyAddressEnumerator(_GProxyAddressEnumerator**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GProxyAddress(_GProxyAddress**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GProxy(_GProxy**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GProxyResolver(_GProxyResolver**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GRemoteActionGroup(_GRemoteActionGroup**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GResolver(_GResolver**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GResource(_GResource**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GSeekable(_GSeekable**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GSettingsBackend(_GSettingsBackend**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GSettingsSchema(_GSettingsSchema**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GSettingsSchemaKey(_GSettingsSchemaKey**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GSettingsSchemaSource(_GSettingsSchemaSource**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GSettings(_GSettings**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GSimpleActionGroup(_GSimpleActionGroup**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GSimpleAction(_GSimpleAction**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GSimpleAsyncResult(_GSimpleAsyncResult**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GSimplePermission(_GSimplePermission**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GSimpleProxyResolver(_GSimpleProxyResolver**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GSocketAddressEnumerator(_GSocketAddressEnumerator**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GSocketAddress(_GSocketAddress**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GSocketClient(_GSocketClient**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GSocketConnectable(_GSocketConnectable**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GSocketConnection(_GSocketConnection**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GSocketControlMessage(_GSocketControlMessage**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GSocket(_GSocket**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GSocketListener(_GSocketListener**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GSocketService(_GSocketService**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GSubprocess(_GSubprocess**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GSubprocessLauncher(_GSubprocessLauncher**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GTask(_GTask**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GTcpConnection(_GTcpConnection**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GTcpWrapperConnection(_GTcpWrapperConnection**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GTestDBus(_GTestDBus**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GThemedIcon(_GThemedIcon**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GThreadedSocketService(_GThreadedSocketService**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GTlsBackend(_GTlsBackend**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GTlsCertificate(_GTlsCertificate**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GTlsClientConnection(_GTlsClientConnection**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GTlsConnection(_GTlsConnection**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GTlsDatabase(_GTlsDatabase**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GTlsFileDatabase(_GTlsFileDatabase**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GTlsInteraction(_GTlsInteraction**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GTlsPassword(_GTlsPassword**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GTlsServerConnection(_GTlsServerConnection**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GVfs(_GVfs**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GVolume(_GVolume**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GVolumeMonitor(_GVolumeMonitor**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GZlibCompressor(_GZlibCompressor**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_GZlibDecompressor(_GZlibDecompressor**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_PopplerDocument(_PopplerDocument**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_PopplerIndexIter(_PopplerIndexIter**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_PopplerFontInfo(_PopplerFontInfo**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_PopplerFontsIter(_PopplerFontsIter**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_PopplerLayersIter(_PopplerLayersIter**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_PopplerPSFile(_PopplerPSFile**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_PopplerPage(_PopplerPage**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_PopplerRectangle(_PopplerRectangle**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_PopplerPoint(_PopplerPoint**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_PopplerQuadrilateral(_PopplerQuadrilateral**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_PopplerColor(_PopplerColor**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_PopplerTextAttributes(_PopplerTextAttributes**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_PopplerLinkMapping(_PopplerLinkMapping**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_PopplerPageTransition(_PopplerPageTransition**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_PopplerImageMapping(_PopplerImageMapping**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_PopplerFormFieldMapping(_PopplerFormFieldMapping**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotMapping(_PopplerAnnotMapping**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_PopplerLayer(_PopplerLayer**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_PopplerAction(_PopplerAction**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_PopplerDest(_PopplerDest**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_PopplerFormField(_PopplerFormField**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_PopplerSignatureInfo(_PopplerSignatureInfo**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_PopplerSigningData(_PopplerSigningData**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_PopplerCertificateInfo(_PopplerCertificateInfo**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_PopplerAttachment(_PopplerAttachment**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnot(_PopplerAnnot**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotCircle(_PopplerAnnotCircle**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotFileAttachment(_PopplerAnnotFileAttachment**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotFreeText(_PopplerAnnotFreeText**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotLine(_PopplerAnnotLine**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotMarkup(_PopplerAnnotMarkup**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotMovie(_PopplerAnnotMovie**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotScreen(_PopplerAnnotScreen**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotSquare(_PopplerAnnotSquare**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotStamp(_PopplerAnnotStamp**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotText(_PopplerAnnotText**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotTextMarkup(_PopplerAnnotTextMarkup**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotCalloutLine(_PopplerAnnotCalloutLine**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_PopplerFontDescription(_PopplerFontDescription**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_PopplerPath(_PopplerPath**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_PopplerMovie(_PopplerMovie**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_PopplerMedia(_PopplerMedia**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_PopplerStructureElement(_PopplerStructureElement**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_PopplerTextSpan(_PopplerTextSpan**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_autoptr_cleanup_PopplerStructureElementIter(_PopplerStructureElementIter**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GAsyncQueue(_GAsyncQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GBookmarkFile(_GBookmarkFile**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GBytes(_GBytes**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GChecksum(_GChecksum**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GDateTime(_GDateTime**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GDate(_GDate**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GDir(_GDir**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GError(_GError**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GHashTable(_GHashTable**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GHmac(_GHmac**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GIOChannel(_GIOChannel**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GKeyFile(_GKeyFile**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GList(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GArray(_GArray**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GPtrArray(_GPtrArray**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GByteArray(_GByteArray**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GMainContext(_GMainContext**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GMainContextPusher(void**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GMainLoop(_GMainLoop**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GSource(_GSource**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GMappedFile(_GMappedFile**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GMarkupParseContext(_GMarkupParseContext**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GNode(_GNode**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GOptionContext(_GOptionContext**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GOptionGroup(_GOptionGroup**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GPatternSpec(_GPatternSpec**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GQueue(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GRand(_GRand**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GRegex(_GRegex**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GMatchInfo(_GMatchInfo**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GScanner(_GScanner**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GSequence(_GSequence**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GSList(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GString(_GString**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GStringChunk(_GStringChunk**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GStrvBuilder(_GStrvBuilder**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GThread(_GThread**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GMutexLocker(void**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GRecMutexLocker(void**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GRWLockWriterLocker(void**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GRWLockReaderLocker(void**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GTimer(_GTimer**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GTimeZone(_GTimeZone**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GTree(_GTree**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GVariant(_GVariant**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GVariantBuilder(_GVariantBuilder**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GVariantIter(_GVariantIter**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GVariantDict(_GVariantDict**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GVariantType(_GVariantType**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GRefString(char**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GUri(_GUri**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GPathBuf(_GPathBuf**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GTypeModule(_GTypeModule**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GClosure(_GClosure**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GEnumClass(_GEnumClass**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GFlagsClass(_GFlagsClass**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GObject(_GObject**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GInitiallyUnowned(_GObject**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GParamSpec(_GParamSpec**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GTypeClass(_GTypeClass**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GDebugController(_GDebugController**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GDebugControllerDBus(_GDebugControllerDBus**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GDebugControllerDBusClass(_GDebugControllerDBusClass**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GListModel(_GListModel**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GListStore(_GListStore**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GListStoreClass(GListStoreClass**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GMemoryMonitor(_GMemoryMonitor**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GPowerProfileMonitor(_GPowerProfileMonitor**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GUnixConnection(_GUnixConnection**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GUnixCredentialsMessage(_GUnixCredentialsMessage**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GUnixFDList(_GUnixFDList**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GUnixSocketAddress(_GUnixSocketAddress**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GAction(_GAction**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GActionMap(_GActionMap**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GAppInfo(_GAppInfo**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GAppLaunchContext(_GAppLaunchContext**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GAppInfoMonitor(_GAppInfoMonitor**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GApplicationCommandLine(_GApplicationCommandLine**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GApplication(_GApplication**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GAsyncInitable(_GAsyncInitable**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GAsyncResult(_GAsyncResult**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GBufferedInputStream(_GBufferedInputStream**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GBufferedOutputStream(_GBufferedOutputStream**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GBytesIcon(_GBytesIcon**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GCancellable(_GCancellable**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GCharsetConverter(_GCharsetConverter**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GConverter(_GConverter**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GConverterInputStream(_GConverterInputStream**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GConverterOutputStream(_GConverterOutputStream**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GCredentials(_GCredentials**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GDatagramBased(_GDatagramBased**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GDataInputStream(_GDataInputStream**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GDataOutputStream(_GDataOutputStream**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GDBusActionGroup(_GDBusActionGroup**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GDBusAuthObserver(_GDBusAuthObserver**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GDBusConnection(_GDBusConnection**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GDBusInterface(_GDBusInterface**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GDBusInterfaceSkeleton(_GDBusInterfaceSkeleton**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GDBusMenuModel(_GDBusMenuModel**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GDBusMessage(_GDBusMessage**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GDBusMethodInvocation(_GDBusMethodInvocation**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GDBusNodeInfo(_GDBusNodeInfo**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GDBusObject(_GDBusObject**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GDBusObjectManagerClient(_GDBusObjectManagerClient**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GDBusObjectManager(_GDBusObjectManager**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GDBusObjectManagerServer(_GDBusObjectManagerServer**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GDBusObjectProxy(_GDBusObjectProxy**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GDBusObjectSkeleton(_GDBusObjectSkeleton**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GDBusProxy(_GDBusProxy**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GDBusServer(_GDBusServer**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GDrive(_GDrive**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GEmblemedIcon(_GEmblemedIcon**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GEmblem(_GEmblem**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GFileEnumerator(_GFileEnumerator**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GFile(_GFile**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GFileAttributeInfoList(_GFileAttributeInfoList**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GFileIcon(_GFileIcon**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GFileInfo(_GFileInfo**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GFileInputStream(_GFileInputStream**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GFileIOStream(_GFileIOStream**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GFileMonitor(_GFileMonitor**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GFilenameCompleter(_GFilenameCompleter**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GFileOutputStream(_GFileOutputStream**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GFilterInputStream(_GFilterInputStream**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GFilterOutputStream(_GFilterOutputStream**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GIcon(_GIcon**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GInetAddress(_GInetAddress**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GInetAddressMask(_GInetAddressMask**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GInetSocketAddress(_GInetSocketAddress**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GInitable(_GInitable**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GInputStream(_GInputStream**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GIOModule(_GIOModule**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GIOStream(_GIOStream**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GLoadableIcon(_GLoadableIcon**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GMemoryInputStream(_GMemoryInputStream**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GMemoryOutputStream(_GMemoryOutputStream**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GMenu(_GMenu**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GMenuItem(_GMenuItem**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GMenuModel(_GMenuModel**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GMenuAttributeIter(_GMenuAttributeIter**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GMenuLinkIter(_GMenuLinkIter**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GMount(_GMount**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GMountOperation(_GMountOperation**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GNativeVolumeMonitor(_GNativeVolumeMonitor**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GNetworkAddress(_GNetworkAddress**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GNetworkMonitor(_GNetworkMonitor**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GNetworkService(_GNetworkService**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GNotification(_GNotification**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GOutputStream(_GOutputStream**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GPermission(_GPermission**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GPollableInputStream(_GPollableInputStream**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GPollableOutputStream(_GPollableOutputStream**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GPropertyAction(_GPropertyAction**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GProxyAddressEnumerator(_GProxyAddressEnumerator**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GProxyAddress(_GProxyAddress**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GProxy(_GProxy**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GProxyResolver(_GProxyResolver**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GRemoteActionGroup(_GRemoteActionGroup**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GResolver(_GResolver**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GResource(_GResource**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GSeekable(_GSeekable**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GSettingsBackend(_GSettingsBackend**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GSettingsSchema(_GSettingsSchema**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GSettingsSchemaKey(_GSettingsSchemaKey**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GSettingsSchemaSource(_GSettingsSchemaSource**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GSettings(_GSettings**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GSimpleActionGroup(_GSimpleActionGroup**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GSimpleAction(_GSimpleAction**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GSimpleAsyncResult(_GSimpleAsyncResult**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GSimplePermission(_GSimplePermission**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GSimpleProxyResolver(_GSimpleProxyResolver**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GSocketAddressEnumerator(_GSocketAddressEnumerator**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GSocketAddress(_GSocketAddress**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GSocketClient(_GSocketClient**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GSocketConnectable(_GSocketConnectable**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GSocketConnection(_GSocketConnection**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GSocketControlMessage(_GSocketControlMessage**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GSocket(_GSocket**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GSocketListener(_GSocketListener**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GSocketService(_GSocketService**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GSubprocess(_GSubprocess**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GSubprocessLauncher(_GSubprocessLauncher**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GTask(_GTask**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GTcpConnection(_GTcpConnection**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GTcpWrapperConnection(_GTcpWrapperConnection**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GTestDBus(_GTestDBus**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GThemedIcon(_GThemedIcon**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GThreadedSocketService(_GThreadedSocketService**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GTlsBackend(_GTlsBackend**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GTlsCertificate(_GTlsCertificate**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GTlsClientConnection(_GTlsClientConnection**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GTlsConnection(_GTlsConnection**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GTlsDatabase(_GTlsDatabase**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GTlsFileDatabase(_GTlsFileDatabase**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GTlsInteraction(_GTlsInteraction**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GTlsPassword(_GTlsPassword**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GTlsServerConnection(_GTlsServerConnection**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GVfs(_GVfs**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GVolume(_GVolume**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GVolumeMonitor(_GVolumeMonitor**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GZlibCompressor(_GZlibCompressor**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_GZlibDecompressor(_GZlibDecompressor**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_PopplerDocument(_PopplerDocument**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_PopplerIndexIter(_PopplerIndexIter**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_PopplerFontInfo(_PopplerFontInfo**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_PopplerFontsIter(_PopplerFontsIter**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_PopplerLayersIter(_PopplerLayersIter**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_PopplerPSFile(_PopplerPSFile**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_PopplerPage(_PopplerPage**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_PopplerRectangle(_PopplerRectangle**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_PopplerPoint(_PopplerPoint**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_PopplerQuadrilateral(_PopplerQuadrilateral**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_PopplerColor(_PopplerColor**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_PopplerTextAttributes(_PopplerTextAttributes**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_PopplerLinkMapping(_PopplerLinkMapping**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_PopplerPageTransition(_PopplerPageTransition**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_PopplerImageMapping(_PopplerImageMapping**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_PopplerFormFieldMapping(_PopplerFormFieldMapping**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotMapping(_PopplerAnnotMapping**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_PopplerLayer(_PopplerLayer**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_PopplerAction(_PopplerAction**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_PopplerDest(_PopplerDest**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_PopplerFormField(_PopplerFormField**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_PopplerSignatureInfo(_PopplerSignatureInfo**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_PopplerSigningData(_PopplerSigningData**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_PopplerCertificateInfo(_PopplerCertificateInfo**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_PopplerAttachment(_PopplerAttachment**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnot(_PopplerAnnot**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotCircle(_PopplerAnnotCircle**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotFileAttachment(_PopplerAnnotFileAttachment**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotFreeText(_PopplerAnnotFreeText**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotLine(_PopplerAnnotLine**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotMarkup(_PopplerAnnotMarkup**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotMovie(_PopplerAnnotMovie**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotScreen(_PopplerAnnotScreen**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotSquare(_PopplerAnnotSquare**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotStamp(_PopplerAnnotStamp**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotText(_PopplerAnnotText**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotTextMarkup(_PopplerAnnotTextMarkup**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotCalloutLine(_PopplerAnnotCalloutLine**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_PopplerFontDescription(_PopplerFontDescription**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_PopplerPath(_PopplerPath**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_PopplerMovie(_PopplerMovie**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_PopplerMedia(_PopplerMedia**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_PopplerStructureElement(_PopplerStructureElement**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_PopplerTextSpan(_PopplerTextSpan**)
Unexecuted instantiation: label_fuzzer.cc:glib_autoptr_cleanup_PopplerStructureElementIter(_PopplerStructureElementIter**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GAsyncQueue(_GAsyncQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GBookmarkFile(_GBookmarkFile**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GBytes(_GBytes**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GChecksum(_GChecksum**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GDateTime(_GDateTime**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GDate(_GDate**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GDir(_GDir**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GError(_GError**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GHashTable(_GHashTable**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GHmac(_GHmac**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GIOChannel(_GIOChannel**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GKeyFile(_GKeyFile**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GList(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GArray(_GArray**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GPtrArray(_GPtrArray**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GByteArray(_GByteArray**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GMainContext(_GMainContext**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GMainContextPusher(void**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GMainLoop(_GMainLoop**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GSource(_GSource**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GMappedFile(_GMappedFile**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GMarkupParseContext(_GMarkupParseContext**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GNode(_GNode**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GOptionContext(_GOptionContext**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GOptionGroup(_GOptionGroup**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GPatternSpec(_GPatternSpec**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GQueue(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GRand(_GRand**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GRegex(_GRegex**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GMatchInfo(_GMatchInfo**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GScanner(_GScanner**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GSequence(_GSequence**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GSList(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GString(_GString**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GStringChunk(_GStringChunk**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GStrvBuilder(_GStrvBuilder**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GThread(_GThread**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GMutexLocker(void**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GRecMutexLocker(void**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GRWLockWriterLocker(void**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GRWLockReaderLocker(void**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GTimer(_GTimer**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GTimeZone(_GTimeZone**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GTree(_GTree**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GVariant(_GVariant**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GVariantBuilder(_GVariantBuilder**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GVariantIter(_GVariantIter**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GVariantDict(_GVariantDict**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GVariantType(_GVariantType**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GRefString(char**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GUri(_GUri**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GPathBuf(_GPathBuf**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GTypeModule(_GTypeModule**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GClosure(_GClosure**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GEnumClass(_GEnumClass**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GFlagsClass(_GFlagsClass**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GObject(_GObject**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GInitiallyUnowned(_GObject**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GParamSpec(_GParamSpec**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GTypeClass(_GTypeClass**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GDebugController(_GDebugController**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GDebugControllerDBus(_GDebugControllerDBus**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GDebugControllerDBusClass(_GDebugControllerDBusClass**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GListModel(_GListModel**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GListStore(_GListStore**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GListStoreClass(GListStoreClass**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GMemoryMonitor(_GMemoryMonitor**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GPowerProfileMonitor(_GPowerProfileMonitor**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GUnixConnection(_GUnixConnection**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GUnixCredentialsMessage(_GUnixCredentialsMessage**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GUnixFDList(_GUnixFDList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GUnixSocketAddress(_GUnixSocketAddress**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GAction(_GAction**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GActionMap(_GActionMap**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GAppInfo(_GAppInfo**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GAppLaunchContext(_GAppLaunchContext**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GAppInfoMonitor(_GAppInfoMonitor**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GApplicationCommandLine(_GApplicationCommandLine**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GApplication(_GApplication**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GAsyncInitable(_GAsyncInitable**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GAsyncResult(_GAsyncResult**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GBufferedInputStream(_GBufferedInputStream**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GBufferedOutputStream(_GBufferedOutputStream**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GBytesIcon(_GBytesIcon**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GCancellable(_GCancellable**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GCharsetConverter(_GCharsetConverter**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GConverter(_GConverter**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GConverterInputStream(_GConverterInputStream**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GConverterOutputStream(_GConverterOutputStream**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GCredentials(_GCredentials**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GDatagramBased(_GDatagramBased**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GDataInputStream(_GDataInputStream**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GDataOutputStream(_GDataOutputStream**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GDBusActionGroup(_GDBusActionGroup**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GDBusAuthObserver(_GDBusAuthObserver**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GDBusConnection(_GDBusConnection**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GDBusInterface(_GDBusInterface**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GDBusInterfaceSkeleton(_GDBusInterfaceSkeleton**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GDBusMenuModel(_GDBusMenuModel**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GDBusMessage(_GDBusMessage**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GDBusMethodInvocation(_GDBusMethodInvocation**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GDBusNodeInfo(_GDBusNodeInfo**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GDBusObject(_GDBusObject**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GDBusObjectManagerClient(_GDBusObjectManagerClient**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GDBusObjectManager(_GDBusObjectManager**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GDBusObjectManagerServer(_GDBusObjectManagerServer**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GDBusObjectProxy(_GDBusObjectProxy**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GDBusObjectSkeleton(_GDBusObjectSkeleton**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GDBusProxy(_GDBusProxy**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GDBusServer(_GDBusServer**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GDrive(_GDrive**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GEmblemedIcon(_GEmblemedIcon**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GEmblem(_GEmblem**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GFileEnumerator(_GFileEnumerator**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GFile(_GFile**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GFileAttributeInfoList(_GFileAttributeInfoList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GFileIcon(_GFileIcon**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GFileInfo(_GFileInfo**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GFileInputStream(_GFileInputStream**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GFileIOStream(_GFileIOStream**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GFileMonitor(_GFileMonitor**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GFilenameCompleter(_GFilenameCompleter**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GFileOutputStream(_GFileOutputStream**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GFilterInputStream(_GFilterInputStream**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GFilterOutputStream(_GFilterOutputStream**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GIcon(_GIcon**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GInetAddress(_GInetAddress**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GInetAddressMask(_GInetAddressMask**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GInetSocketAddress(_GInetSocketAddress**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GInitable(_GInitable**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GInputStream(_GInputStream**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GIOModule(_GIOModule**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GIOStream(_GIOStream**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GLoadableIcon(_GLoadableIcon**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GMemoryInputStream(_GMemoryInputStream**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GMemoryOutputStream(_GMemoryOutputStream**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GMenu(_GMenu**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GMenuItem(_GMenuItem**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GMenuModel(_GMenuModel**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GMenuAttributeIter(_GMenuAttributeIter**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GMenuLinkIter(_GMenuLinkIter**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GMount(_GMount**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GMountOperation(_GMountOperation**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GNativeVolumeMonitor(_GNativeVolumeMonitor**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GNetworkAddress(_GNetworkAddress**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GNetworkMonitor(_GNetworkMonitor**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GNetworkService(_GNetworkService**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GNotification(_GNotification**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GOutputStream(_GOutputStream**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GPermission(_GPermission**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GPollableInputStream(_GPollableInputStream**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GPollableOutputStream(_GPollableOutputStream**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GPropertyAction(_GPropertyAction**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GProxyAddressEnumerator(_GProxyAddressEnumerator**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GProxyAddress(_GProxyAddress**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GProxy(_GProxy**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GProxyResolver(_GProxyResolver**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GRemoteActionGroup(_GRemoteActionGroup**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GResolver(_GResolver**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GResource(_GResource**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GSeekable(_GSeekable**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GSettingsBackend(_GSettingsBackend**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GSettingsSchema(_GSettingsSchema**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GSettingsSchemaKey(_GSettingsSchemaKey**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GSettingsSchemaSource(_GSettingsSchemaSource**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GSettings(_GSettings**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GSimpleActionGroup(_GSimpleActionGroup**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GSimpleAction(_GSimpleAction**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GSimpleAsyncResult(_GSimpleAsyncResult**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GSimplePermission(_GSimplePermission**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GSimpleProxyResolver(_GSimpleProxyResolver**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GSocketAddressEnumerator(_GSocketAddressEnumerator**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GSocketAddress(_GSocketAddress**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GSocketClient(_GSocketClient**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GSocketConnectable(_GSocketConnectable**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GSocketConnection(_GSocketConnection**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GSocketControlMessage(_GSocketControlMessage**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GSocket(_GSocket**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GSocketListener(_GSocketListener**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GSocketService(_GSocketService**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GSubprocess(_GSubprocess**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GSubprocessLauncher(_GSubprocessLauncher**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GTask(_GTask**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GTcpConnection(_GTcpConnection**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GTcpWrapperConnection(_GTcpWrapperConnection**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GTestDBus(_GTestDBus**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GThemedIcon(_GThemedIcon**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GThreadedSocketService(_GThreadedSocketService**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GTlsBackend(_GTlsBackend**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GTlsCertificate(_GTlsCertificate**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GTlsClientConnection(_GTlsClientConnection**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GTlsConnection(_GTlsConnection**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GTlsDatabase(_GTlsDatabase**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GTlsFileDatabase(_GTlsFileDatabase**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GTlsInteraction(_GTlsInteraction**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GTlsPassword(_GTlsPassword**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GTlsServerConnection(_GTlsServerConnection**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GVfs(_GVfs**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GVolume(_GVolume**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GVolumeMonitor(_GVolumeMonitor**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GZlibCompressor(_GZlibCompressor**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_GZlibDecompressor(_GZlibDecompressor**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_PopplerDocument(_PopplerDocument**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_PopplerIndexIter(_PopplerIndexIter**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_PopplerFontInfo(_PopplerFontInfo**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_PopplerFontsIter(_PopplerFontsIter**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_PopplerLayersIter(_PopplerLayersIter**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_PopplerPSFile(_PopplerPSFile**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_PopplerPage(_PopplerPage**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_PopplerRectangle(_PopplerRectangle**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_PopplerPoint(_PopplerPoint**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_PopplerQuadrilateral(_PopplerQuadrilateral**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_PopplerColor(_PopplerColor**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_PopplerTextAttributes(_PopplerTextAttributes**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_PopplerLinkMapping(_PopplerLinkMapping**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_PopplerPageTransition(_PopplerPageTransition**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_PopplerImageMapping(_PopplerImageMapping**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_PopplerFormFieldMapping(_PopplerFormFieldMapping**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotMapping(_PopplerAnnotMapping**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_PopplerLayer(_PopplerLayer**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_PopplerAction(_PopplerAction**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_PopplerDest(_PopplerDest**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_PopplerFormField(_PopplerFormField**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_PopplerSignatureInfo(_PopplerSignatureInfo**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_PopplerSigningData(_PopplerSigningData**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_PopplerCertificateInfo(_PopplerCertificateInfo**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_PopplerAttachment(_PopplerAttachment**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnot(_PopplerAnnot**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotCircle(_PopplerAnnotCircle**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotFileAttachment(_PopplerAnnotFileAttachment**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotFreeText(_PopplerAnnotFreeText**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotLine(_PopplerAnnotLine**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotMarkup(_PopplerAnnotMarkup**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotMovie(_PopplerAnnotMovie**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotScreen(_PopplerAnnotScreen**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotSquare(_PopplerAnnotSquare**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotStamp(_PopplerAnnotStamp**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotText(_PopplerAnnotText**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotTextMarkup(_PopplerAnnotTextMarkup**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotCalloutLine(_PopplerAnnotCalloutLine**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_PopplerFontDescription(_PopplerFontDescription**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_PopplerPath(_PopplerPath**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_PopplerMovie(_PopplerMovie**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_PopplerMedia(_PopplerMedia**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_PopplerStructureElement(_PopplerStructureElement**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_PopplerTextSpan(_PopplerTextSpan**)
Unexecuted instantiation: annot_fuzzer.cc:glib_autoptr_cleanup_PopplerStructureElementIter(_PopplerStructureElementIter**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GAsyncQueue(_GAsyncQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GBookmarkFile(_GBookmarkFile**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GBytes(_GBytes**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GChecksum(_GChecksum**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GDateTime(_GDateTime**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GDate(_GDate**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GDir(_GDir**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GError(_GError**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GHashTable(_GHashTable**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GHmac(_GHmac**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GIOChannel(_GIOChannel**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GKeyFile(_GKeyFile**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GList(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GArray(_GArray**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GPtrArray(_GPtrArray**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GByteArray(_GByteArray**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GMainContext(_GMainContext**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GMainContextPusher(void**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GMainLoop(_GMainLoop**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GSource(_GSource**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GMappedFile(_GMappedFile**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GMarkupParseContext(_GMarkupParseContext**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GNode(_GNode**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GOptionContext(_GOptionContext**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GOptionGroup(_GOptionGroup**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GPatternSpec(_GPatternSpec**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GQueue(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GRand(_GRand**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GRegex(_GRegex**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GMatchInfo(_GMatchInfo**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GScanner(_GScanner**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GSequence(_GSequence**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GSList(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GString(_GString**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GStringChunk(_GStringChunk**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GStrvBuilder(_GStrvBuilder**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GThread(_GThread**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GMutexLocker(void**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GRecMutexLocker(void**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GRWLockWriterLocker(void**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GRWLockReaderLocker(void**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GTimer(_GTimer**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GTimeZone(_GTimeZone**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GTree(_GTree**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GVariant(_GVariant**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GVariantBuilder(_GVariantBuilder**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GVariantIter(_GVariantIter**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GVariantDict(_GVariantDict**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GVariantType(_GVariantType**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GRefString(char**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GUri(_GUri**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GPathBuf(_GPathBuf**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GTypeModule(_GTypeModule**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GClosure(_GClosure**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GEnumClass(_GEnumClass**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GFlagsClass(_GFlagsClass**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GObject(_GObject**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GInitiallyUnowned(_GObject**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GParamSpec(_GParamSpec**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GTypeClass(_GTypeClass**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GDebugController(_GDebugController**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GDebugControllerDBus(_GDebugControllerDBus**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GDebugControllerDBusClass(_GDebugControllerDBusClass**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GListModel(_GListModel**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GListStore(_GListStore**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GListStoreClass(GListStoreClass**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GMemoryMonitor(_GMemoryMonitor**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GPowerProfileMonitor(_GPowerProfileMonitor**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GUnixConnection(_GUnixConnection**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GUnixCredentialsMessage(_GUnixCredentialsMessage**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GUnixFDList(_GUnixFDList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GUnixSocketAddress(_GUnixSocketAddress**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GAction(_GAction**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GActionMap(_GActionMap**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GAppInfo(_GAppInfo**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GAppLaunchContext(_GAppLaunchContext**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GAppInfoMonitor(_GAppInfoMonitor**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GApplicationCommandLine(_GApplicationCommandLine**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GApplication(_GApplication**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GAsyncInitable(_GAsyncInitable**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GAsyncResult(_GAsyncResult**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GBufferedInputStream(_GBufferedInputStream**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GBufferedOutputStream(_GBufferedOutputStream**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GBytesIcon(_GBytesIcon**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GCancellable(_GCancellable**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GCharsetConverter(_GCharsetConverter**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GConverter(_GConverter**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GConverterInputStream(_GConverterInputStream**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GConverterOutputStream(_GConverterOutputStream**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GCredentials(_GCredentials**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GDatagramBased(_GDatagramBased**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GDataInputStream(_GDataInputStream**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GDataOutputStream(_GDataOutputStream**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GDBusActionGroup(_GDBusActionGroup**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GDBusAuthObserver(_GDBusAuthObserver**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GDBusConnection(_GDBusConnection**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GDBusInterface(_GDBusInterface**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GDBusInterfaceSkeleton(_GDBusInterfaceSkeleton**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GDBusMenuModel(_GDBusMenuModel**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GDBusMessage(_GDBusMessage**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GDBusMethodInvocation(_GDBusMethodInvocation**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GDBusNodeInfo(_GDBusNodeInfo**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GDBusObject(_GDBusObject**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GDBusObjectManagerClient(_GDBusObjectManagerClient**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GDBusObjectManager(_GDBusObjectManager**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GDBusObjectManagerServer(_GDBusObjectManagerServer**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GDBusObjectProxy(_GDBusObjectProxy**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GDBusObjectSkeleton(_GDBusObjectSkeleton**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GDBusProxy(_GDBusProxy**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GDBusServer(_GDBusServer**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GDrive(_GDrive**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GEmblemedIcon(_GEmblemedIcon**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GEmblem(_GEmblem**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GFileEnumerator(_GFileEnumerator**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GFile(_GFile**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GFileAttributeInfoList(_GFileAttributeInfoList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GFileIcon(_GFileIcon**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GFileInfo(_GFileInfo**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GFileInputStream(_GFileInputStream**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GFileIOStream(_GFileIOStream**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GFileMonitor(_GFileMonitor**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GFilenameCompleter(_GFilenameCompleter**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GFileOutputStream(_GFileOutputStream**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GFilterInputStream(_GFilterInputStream**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GFilterOutputStream(_GFilterOutputStream**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GIcon(_GIcon**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GInetAddress(_GInetAddress**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GInetAddressMask(_GInetAddressMask**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GInetSocketAddress(_GInetSocketAddress**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GInitable(_GInitable**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GInputStream(_GInputStream**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GIOModule(_GIOModule**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GIOStream(_GIOStream**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GLoadableIcon(_GLoadableIcon**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GMemoryInputStream(_GMemoryInputStream**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GMemoryOutputStream(_GMemoryOutputStream**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GMenu(_GMenu**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GMenuItem(_GMenuItem**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GMenuModel(_GMenuModel**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GMenuAttributeIter(_GMenuAttributeIter**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GMenuLinkIter(_GMenuLinkIter**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GMount(_GMount**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GMountOperation(_GMountOperation**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GNativeVolumeMonitor(_GNativeVolumeMonitor**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GNetworkAddress(_GNetworkAddress**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GNetworkMonitor(_GNetworkMonitor**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GNetworkService(_GNetworkService**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GNotification(_GNotification**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GOutputStream(_GOutputStream**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GPermission(_GPermission**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GPollableInputStream(_GPollableInputStream**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GPollableOutputStream(_GPollableOutputStream**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GPropertyAction(_GPropertyAction**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GProxyAddressEnumerator(_GProxyAddressEnumerator**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GProxyAddress(_GProxyAddress**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GProxy(_GProxy**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GProxyResolver(_GProxyResolver**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GRemoteActionGroup(_GRemoteActionGroup**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GResolver(_GResolver**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GResource(_GResource**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GSeekable(_GSeekable**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GSettingsBackend(_GSettingsBackend**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GSettingsSchema(_GSettingsSchema**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GSettingsSchemaKey(_GSettingsSchemaKey**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GSettingsSchemaSource(_GSettingsSchemaSource**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GSettings(_GSettings**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GSimpleActionGroup(_GSimpleActionGroup**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GSimpleAction(_GSimpleAction**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GSimpleAsyncResult(_GSimpleAsyncResult**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GSimplePermission(_GSimplePermission**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GSimpleProxyResolver(_GSimpleProxyResolver**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GSocketAddressEnumerator(_GSocketAddressEnumerator**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GSocketAddress(_GSocketAddress**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GSocketClient(_GSocketClient**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GSocketConnectable(_GSocketConnectable**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GSocketConnection(_GSocketConnection**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GSocketControlMessage(_GSocketControlMessage**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GSocket(_GSocket**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GSocketListener(_GSocketListener**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GSocketService(_GSocketService**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GSubprocess(_GSubprocess**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GSubprocessLauncher(_GSubprocessLauncher**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GTask(_GTask**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GTcpConnection(_GTcpConnection**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GTcpWrapperConnection(_GTcpWrapperConnection**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GTestDBus(_GTestDBus**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GThemedIcon(_GThemedIcon**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GThreadedSocketService(_GThreadedSocketService**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GTlsBackend(_GTlsBackend**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GTlsCertificate(_GTlsCertificate**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GTlsClientConnection(_GTlsClientConnection**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GTlsConnection(_GTlsConnection**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GTlsDatabase(_GTlsDatabase**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GTlsFileDatabase(_GTlsFileDatabase**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GTlsInteraction(_GTlsInteraction**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GTlsPassword(_GTlsPassword**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GTlsServerConnection(_GTlsServerConnection**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GVfs(_GVfs**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GVolume(_GVolume**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GVolumeMonitor(_GVolumeMonitor**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GZlibCompressor(_GZlibCompressor**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_GZlibDecompressor(_GZlibDecompressor**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_PopplerDocument(_PopplerDocument**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_PopplerIndexIter(_PopplerIndexIter**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_PopplerFontInfo(_PopplerFontInfo**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_PopplerFontsIter(_PopplerFontsIter**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_PopplerLayersIter(_PopplerLayersIter**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_PopplerPSFile(_PopplerPSFile**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_PopplerPage(_PopplerPage**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_PopplerRectangle(_PopplerRectangle**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_PopplerPoint(_PopplerPoint**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_PopplerQuadrilateral(_PopplerQuadrilateral**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_PopplerColor(_PopplerColor**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_PopplerTextAttributes(_PopplerTextAttributes**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_PopplerLinkMapping(_PopplerLinkMapping**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_PopplerPageTransition(_PopplerPageTransition**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_PopplerImageMapping(_PopplerImageMapping**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_PopplerFormFieldMapping(_PopplerFormFieldMapping**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotMapping(_PopplerAnnotMapping**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_PopplerLayer(_PopplerLayer**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_PopplerAction(_PopplerAction**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_PopplerDest(_PopplerDest**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_PopplerFormField(_PopplerFormField**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_PopplerSignatureInfo(_PopplerSignatureInfo**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_PopplerSigningData(_PopplerSigningData**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_PopplerCertificateInfo(_PopplerCertificateInfo**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_PopplerAttachment(_PopplerAttachment**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnot(_PopplerAnnot**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotCircle(_PopplerAnnotCircle**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotFileAttachment(_PopplerAnnotFileAttachment**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotFreeText(_PopplerAnnotFreeText**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotLine(_PopplerAnnotLine**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotMarkup(_PopplerAnnotMarkup**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotMovie(_PopplerAnnotMovie**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotScreen(_PopplerAnnotScreen**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotSquare(_PopplerAnnotSquare**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotStamp(_PopplerAnnotStamp**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotText(_PopplerAnnotText**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotTextMarkup(_PopplerAnnotTextMarkup**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotCalloutLine(_PopplerAnnotCalloutLine**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_PopplerFontDescription(_PopplerFontDescription**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_PopplerPath(_PopplerPath**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_PopplerMovie(_PopplerMovie**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_PopplerMedia(_PopplerMedia**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_PopplerStructureElement(_PopplerStructureElement**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_PopplerTextSpan(_PopplerTextSpan**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_autoptr_cleanup_PopplerStructureElementIter(_PopplerStructureElementIter**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GAsyncQueue(_GAsyncQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GBookmarkFile(_GBookmarkFile**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GBytes(_GBytes**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GChecksum(_GChecksum**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GDateTime(_GDateTime**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GDate(_GDate**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GDir(_GDir**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GError(_GError**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GHashTable(_GHashTable**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GHmac(_GHmac**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GIOChannel(_GIOChannel**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GKeyFile(_GKeyFile**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GList(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GArray(_GArray**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GPtrArray(_GPtrArray**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GByteArray(_GByteArray**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GMainContext(_GMainContext**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GMainContextPusher(void**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GMainLoop(_GMainLoop**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GSource(_GSource**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GMappedFile(_GMappedFile**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GMarkupParseContext(_GMarkupParseContext**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GNode(_GNode**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GOptionContext(_GOptionContext**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GOptionGroup(_GOptionGroup**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GPatternSpec(_GPatternSpec**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GQueue(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GRand(_GRand**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GRegex(_GRegex**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GMatchInfo(_GMatchInfo**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GScanner(_GScanner**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GSequence(_GSequence**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GSList(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GString(_GString**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GStringChunk(_GStringChunk**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GStrvBuilder(_GStrvBuilder**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GThread(_GThread**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GMutexLocker(void**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GRecMutexLocker(void**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GRWLockWriterLocker(void**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GRWLockReaderLocker(void**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GTimer(_GTimer**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GTimeZone(_GTimeZone**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GTree(_GTree**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GVariant(_GVariant**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GVariantBuilder(_GVariantBuilder**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GVariantIter(_GVariantIter**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GVariantDict(_GVariantDict**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GVariantType(_GVariantType**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GRefString(char**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GUri(_GUri**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GPathBuf(_GPathBuf**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GTypeModule(_GTypeModule**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GClosure(_GClosure**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GEnumClass(_GEnumClass**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GFlagsClass(_GFlagsClass**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GObject(_GObject**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GInitiallyUnowned(_GObject**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GParamSpec(_GParamSpec**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GTypeClass(_GTypeClass**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GDebugController(_GDebugController**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GDebugControllerDBus(_GDebugControllerDBus**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GDebugControllerDBusClass(_GDebugControllerDBusClass**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GListModel(_GListModel**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GListStore(_GListStore**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GListStoreClass(GListStoreClass**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GMemoryMonitor(_GMemoryMonitor**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GPowerProfileMonitor(_GPowerProfileMonitor**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GUnixConnection(_GUnixConnection**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GUnixCredentialsMessage(_GUnixCredentialsMessage**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GUnixFDList(_GUnixFDList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GUnixSocketAddress(_GUnixSocketAddress**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GAction(_GAction**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GActionMap(_GActionMap**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GAppInfo(_GAppInfo**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GAppLaunchContext(_GAppLaunchContext**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GAppInfoMonitor(_GAppInfoMonitor**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GApplicationCommandLine(_GApplicationCommandLine**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GApplication(_GApplication**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GAsyncInitable(_GAsyncInitable**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GAsyncResult(_GAsyncResult**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GBufferedInputStream(_GBufferedInputStream**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GBufferedOutputStream(_GBufferedOutputStream**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GBytesIcon(_GBytesIcon**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GCancellable(_GCancellable**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GCharsetConverter(_GCharsetConverter**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GConverter(_GConverter**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GConverterInputStream(_GConverterInputStream**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GConverterOutputStream(_GConverterOutputStream**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GCredentials(_GCredentials**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GDatagramBased(_GDatagramBased**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GDataInputStream(_GDataInputStream**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GDataOutputStream(_GDataOutputStream**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GDBusActionGroup(_GDBusActionGroup**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GDBusAuthObserver(_GDBusAuthObserver**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GDBusConnection(_GDBusConnection**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GDBusInterface(_GDBusInterface**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GDBusInterfaceSkeleton(_GDBusInterfaceSkeleton**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GDBusMenuModel(_GDBusMenuModel**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GDBusMessage(_GDBusMessage**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GDBusMethodInvocation(_GDBusMethodInvocation**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GDBusNodeInfo(_GDBusNodeInfo**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GDBusObject(_GDBusObject**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GDBusObjectManagerClient(_GDBusObjectManagerClient**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GDBusObjectManager(_GDBusObjectManager**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GDBusObjectManagerServer(_GDBusObjectManagerServer**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GDBusObjectProxy(_GDBusObjectProxy**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GDBusObjectSkeleton(_GDBusObjectSkeleton**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GDBusProxy(_GDBusProxy**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GDBusServer(_GDBusServer**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GDrive(_GDrive**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GEmblemedIcon(_GEmblemedIcon**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GEmblem(_GEmblem**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GFileEnumerator(_GFileEnumerator**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GFile(_GFile**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GFileAttributeInfoList(_GFileAttributeInfoList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GFileIcon(_GFileIcon**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GFileInfo(_GFileInfo**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GFileInputStream(_GFileInputStream**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GFileIOStream(_GFileIOStream**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GFileMonitor(_GFileMonitor**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GFilenameCompleter(_GFilenameCompleter**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GFileOutputStream(_GFileOutputStream**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GFilterInputStream(_GFilterInputStream**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GFilterOutputStream(_GFilterOutputStream**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GIcon(_GIcon**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GInetAddress(_GInetAddress**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GInetAddressMask(_GInetAddressMask**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GInetSocketAddress(_GInetSocketAddress**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GInitable(_GInitable**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GInputStream(_GInputStream**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GIOModule(_GIOModule**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GIOStream(_GIOStream**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GLoadableIcon(_GLoadableIcon**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GMemoryInputStream(_GMemoryInputStream**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GMemoryOutputStream(_GMemoryOutputStream**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GMenu(_GMenu**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GMenuItem(_GMenuItem**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GMenuModel(_GMenuModel**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GMenuAttributeIter(_GMenuAttributeIter**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GMenuLinkIter(_GMenuLinkIter**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GMount(_GMount**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GMountOperation(_GMountOperation**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GNativeVolumeMonitor(_GNativeVolumeMonitor**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GNetworkAddress(_GNetworkAddress**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GNetworkMonitor(_GNetworkMonitor**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GNetworkService(_GNetworkService**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GNotification(_GNotification**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GOutputStream(_GOutputStream**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GPermission(_GPermission**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GPollableInputStream(_GPollableInputStream**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GPollableOutputStream(_GPollableOutputStream**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GPropertyAction(_GPropertyAction**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GProxyAddressEnumerator(_GProxyAddressEnumerator**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GProxyAddress(_GProxyAddress**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GProxy(_GProxy**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GProxyResolver(_GProxyResolver**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GRemoteActionGroup(_GRemoteActionGroup**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GResolver(_GResolver**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GResource(_GResource**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GSeekable(_GSeekable**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GSettingsBackend(_GSettingsBackend**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GSettingsSchema(_GSettingsSchema**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GSettingsSchemaKey(_GSettingsSchemaKey**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GSettingsSchemaSource(_GSettingsSchemaSource**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GSettings(_GSettings**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GSimpleActionGroup(_GSimpleActionGroup**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GSimpleAction(_GSimpleAction**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GSimpleAsyncResult(_GSimpleAsyncResult**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GSimplePermission(_GSimplePermission**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GSimpleProxyResolver(_GSimpleProxyResolver**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GSocketAddressEnumerator(_GSocketAddressEnumerator**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GSocketAddress(_GSocketAddress**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GSocketClient(_GSocketClient**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GSocketConnectable(_GSocketConnectable**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GSocketConnection(_GSocketConnection**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GSocketControlMessage(_GSocketControlMessage**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GSocket(_GSocket**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GSocketListener(_GSocketListener**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GSocketService(_GSocketService**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GSubprocess(_GSubprocess**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GSubprocessLauncher(_GSubprocessLauncher**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GTask(_GTask**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GTcpConnection(_GTcpConnection**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GTcpWrapperConnection(_GTcpWrapperConnection**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GTestDBus(_GTestDBus**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GThemedIcon(_GThemedIcon**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GThreadedSocketService(_GThreadedSocketService**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GTlsBackend(_GTlsBackend**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GTlsCertificate(_GTlsCertificate**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GTlsClientConnection(_GTlsClientConnection**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GTlsConnection(_GTlsConnection**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GTlsDatabase(_GTlsDatabase**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GTlsFileDatabase(_GTlsFileDatabase**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GTlsInteraction(_GTlsInteraction**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GTlsPassword(_GTlsPassword**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GTlsServerConnection(_GTlsServerConnection**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GVfs(_GVfs**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GVolume(_GVolume**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GVolumeMonitor(_GVolumeMonitor**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GZlibCompressor(_GZlibCompressor**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_GZlibDecompressor(_GZlibDecompressor**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_PopplerDocument(_PopplerDocument**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_PopplerIndexIter(_PopplerIndexIter**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_PopplerFontInfo(_PopplerFontInfo**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_PopplerFontsIter(_PopplerFontsIter**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_PopplerLayersIter(_PopplerLayersIter**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_PopplerPSFile(_PopplerPSFile**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_PopplerPage(_PopplerPage**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_PopplerRectangle(_PopplerRectangle**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_PopplerPoint(_PopplerPoint**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_PopplerQuadrilateral(_PopplerQuadrilateral**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_PopplerColor(_PopplerColor**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_PopplerTextAttributes(_PopplerTextAttributes**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_PopplerLinkMapping(_PopplerLinkMapping**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_PopplerPageTransition(_PopplerPageTransition**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_PopplerImageMapping(_PopplerImageMapping**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_PopplerFormFieldMapping(_PopplerFormFieldMapping**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotMapping(_PopplerAnnotMapping**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_PopplerLayer(_PopplerLayer**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_PopplerAction(_PopplerAction**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_PopplerDest(_PopplerDest**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_PopplerFormField(_PopplerFormField**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_PopplerSignatureInfo(_PopplerSignatureInfo**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_PopplerSigningData(_PopplerSigningData**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_PopplerCertificateInfo(_PopplerCertificateInfo**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_PopplerAttachment(_PopplerAttachment**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnot(_PopplerAnnot**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotCircle(_PopplerAnnotCircle**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotFileAttachment(_PopplerAnnotFileAttachment**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotFreeText(_PopplerAnnotFreeText**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotLine(_PopplerAnnotLine**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotMarkup(_PopplerAnnotMarkup**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotMovie(_PopplerAnnotMovie**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotScreen(_PopplerAnnotScreen**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotSquare(_PopplerAnnotSquare**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotStamp(_PopplerAnnotStamp**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotText(_PopplerAnnotText**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotTextMarkup(_PopplerAnnotTextMarkup**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_PopplerAnnotCalloutLine(_PopplerAnnotCalloutLine**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_PopplerFontDescription(_PopplerFontDescription**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_PopplerPath(_PopplerPath**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_PopplerMovie(_PopplerMovie**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_PopplerMedia(_PopplerMedia**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_PopplerStructureElement(_PopplerStructureElement**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_PopplerTextSpan(_PopplerTextSpan**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_autoptr_cleanup_PopplerStructureElementIter(_PopplerStructureElementIter**)
1359
  static G_GNUC_UNUSED inline void _GLIB_AUTOPTR_LIST_FUNC_NAME(TypeName) (GList **_l)                          \
1360
0
    { g_list_free_full (*_l, (GDestroyNotify) (void(*)(void)) cleanup); }                                       \
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GAsyncQueue(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GBookmarkFile(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GBytes(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GChecksum(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GDateTime(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GDate(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GDir(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GError(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GHashTable(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GHmac(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GIOChannel(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GKeyFile(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GList(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GArray(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GPtrArray(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GByteArray(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GMainContext(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GMainContextPusher(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GMainLoop(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GSource(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GMappedFile(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GMarkupParseContext(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GNode(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GOptionContext(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GOptionGroup(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GPatternSpec(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GQueue(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GRand(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GRegex(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GMatchInfo(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GScanner(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GSequence(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GSList(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GString(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GStringChunk(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GStrvBuilder(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GThread(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GMutexLocker(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GRecMutexLocker(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GRWLockWriterLocker(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GRWLockReaderLocker(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GTimer(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GTimeZone(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GTree(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GVariant(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GVariantBuilder(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GVariantIter(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GVariantDict(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GVariantType(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GRefString(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GUri(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GPathBuf(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GTypeModule(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GClosure(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GEnumClass(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GFlagsClass(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GObject(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GInitiallyUnowned(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GParamSpec(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GTypeClass(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GDebugController(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GDebugControllerDBus(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GDebugControllerDBusClass(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GListModel(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GListStore(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GListStoreClass(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GMemoryMonitor(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GPowerProfileMonitor(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GUnixConnection(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GUnixCredentialsMessage(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GUnixFDList(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GUnixSocketAddress(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GAction(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GActionMap(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GAppInfo(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GAppLaunchContext(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GAppInfoMonitor(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GApplicationCommandLine(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GApplication(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GAsyncInitable(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GAsyncResult(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GBufferedInputStream(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GBufferedOutputStream(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GBytesIcon(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GCancellable(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GCharsetConverter(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GConverter(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GConverterInputStream(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GConverterOutputStream(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GCredentials(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GDatagramBased(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GDataInputStream(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GDataOutputStream(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GDBusActionGroup(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GDBusAuthObserver(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GDBusConnection(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GDBusInterface(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GDBusInterfaceSkeleton(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GDBusMenuModel(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GDBusMessage(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GDBusMethodInvocation(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GDBusNodeInfo(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GDBusObject(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GDBusObjectManagerClient(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GDBusObjectManager(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GDBusObjectManagerServer(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GDBusObjectProxy(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GDBusObjectSkeleton(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GDBusProxy(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GDBusServer(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GDrive(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GEmblemedIcon(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GEmblem(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GFileEnumerator(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GFile(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GFileAttributeInfoList(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GFileIcon(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GFileInfo(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GFileInputStream(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GFileIOStream(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GFileMonitor(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GFilenameCompleter(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GFileOutputStream(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GFilterInputStream(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GFilterOutputStream(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GIcon(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GInetAddress(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GInetAddressMask(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GInetSocketAddress(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GInitable(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GInputStream(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GIOModule(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GIOStream(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GLoadableIcon(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GMemoryInputStream(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GMemoryOutputStream(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GMenu(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GMenuItem(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GMenuModel(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GMenuAttributeIter(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GMenuLinkIter(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GMount(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GMountOperation(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GNativeVolumeMonitor(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GNetworkAddress(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GNetworkMonitor(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GNetworkService(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GNotification(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GOutputStream(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GPermission(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GPollableInputStream(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GPollableOutputStream(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GPropertyAction(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GProxyAddressEnumerator(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GProxyAddress(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GProxy(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GProxyResolver(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GRemoteActionGroup(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GResolver(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GResource(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GSeekable(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GSettingsBackend(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GSettingsSchema(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GSettingsSchemaKey(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GSettingsSchemaSource(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GSettings(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GSimpleActionGroup(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GSimpleAction(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GSimpleAsyncResult(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GSimplePermission(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GSimpleProxyResolver(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GSocketAddressEnumerator(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GSocketAddress(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GSocketClient(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GSocketConnectable(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GSocketConnection(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GSocketControlMessage(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GSocket(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GSocketListener(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GSocketService(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GSubprocess(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GSubprocessLauncher(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GTask(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GTcpConnection(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GTcpWrapperConnection(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GTestDBus(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GThemedIcon(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GThreadedSocketService(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GTlsBackend(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GTlsCertificate(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GTlsClientConnection(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GTlsConnection(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GTlsDatabase(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GTlsFileDatabase(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GTlsInteraction(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GTlsPassword(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GTlsServerConnection(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GVfs(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GVolume(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GVolumeMonitor(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GZlibCompressor(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_GZlibDecompressor(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_PopplerDocument(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_PopplerIndexIter(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_PopplerFontInfo(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_PopplerFontsIter(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_PopplerLayersIter(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_PopplerPSFile(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_PopplerPage(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_PopplerRectangle(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_PopplerPoint(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_PopplerQuadrilateral(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_PopplerColor(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_PopplerTextAttributes(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_PopplerLinkMapping(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_PopplerPageTransition(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_PopplerImageMapping(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_PopplerFormFieldMapping(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotMapping(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_PopplerLayer(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_PopplerAction(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_PopplerDest(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_PopplerFormField(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_PopplerSignatureInfo(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_PopplerSigningData(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_PopplerCertificateInfo(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_PopplerAttachment(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnot(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotCircle(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotFileAttachment(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotFreeText(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotLine(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotMarkup(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotMovie(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotScreen(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotSquare(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotStamp(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotText(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotTextMarkup(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotCalloutLine(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_PopplerFontDescription(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_PopplerPath(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_PopplerMovie(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_PopplerMedia(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_PopplerStructureElement(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_PopplerTextSpan(_GList**)
Unexecuted instantiation: util_fuzzer.cc:glib_listautoptr_cleanup_PopplerStructureElementIter(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_listautoptr_cleanup_GAsyncQueue(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_listautoptr_cleanup_GBookmarkFile(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_listautoptr_cleanup_GBytes(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_listautoptr_cleanup_GChecksum(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_listautoptr_cleanup_GDateTime(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_listautoptr_cleanup_GDate(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_listautoptr_cleanup_GDir(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_listautoptr_cleanup_GError(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_listautoptr_cleanup_GHashTable(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_listautoptr_cleanup_GHmac(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_listautoptr_cleanup_GIOChannel(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_listautoptr_cleanup_GKeyFile(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_listautoptr_cleanup_GList(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_listautoptr_cleanup_GArray(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_listautoptr_cleanup_GPtrArray(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_listautoptr_cleanup_GByteArray(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_listautoptr_cleanup_GMainContext(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_listautoptr_cleanup_GMainContextPusher(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_listautoptr_cleanup_GMainLoop(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_listautoptr_cleanup_GSource(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_listautoptr_cleanup_GMappedFile(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_listautoptr_cleanup_GMarkupParseContext(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_listautoptr_cleanup_GNode(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_listautoptr_cleanup_GOptionContext(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_listautoptr_cleanup_GOptionGroup(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_listautoptr_cleanup_GPatternSpec(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_listautoptr_cleanup_GQueue(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_listautoptr_cleanup_GRand(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_listautoptr_cleanup_GRegex(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_listautoptr_cleanup_GMatchInfo(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_listautoptr_cleanup_GScanner(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_listautoptr_cleanup_GSequence(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_listautoptr_cleanup_GSList(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_listautoptr_cleanup_GString(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_listautoptr_cleanup_GStringChunk(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_listautoptr_cleanup_GStrvBuilder(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_listautoptr_cleanup_GThread(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_listautoptr_cleanup_GMutexLocker(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_listautoptr_cleanup_GRecMutexLocker(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_listautoptr_cleanup_GRWLockWriterLocker(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_listautoptr_cleanup_GRWLockReaderLocker(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_listautoptr_cleanup_GTimer(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_listautoptr_cleanup_GTimeZone(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_listautoptr_cleanup_GTree(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_listautoptr_cleanup_GVariant(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_listautoptr_cleanup_GVariantBuilder(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_listautoptr_cleanup_GVariantIter(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_listautoptr_cleanup_GVariantDict(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_listautoptr_cleanup_GVariantType(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_listautoptr_cleanup_GRefString(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_listautoptr_cleanup_GUri(_GList**)
Unexecuted instantiation: hb-unicode.cc:glib_listautoptr_cleanup_GPathBuf(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GAsyncQueue(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GBookmarkFile(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GBytes(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GChecksum(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GDateTime(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GDate(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GDir(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GError(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GHashTable(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GHmac(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GIOChannel(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GKeyFile(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GList(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GArray(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GPtrArray(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GByteArray(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GMainContext(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GMainContextPusher(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GMainLoop(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GSource(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GMappedFile(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GMarkupParseContext(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GNode(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GOptionContext(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GOptionGroup(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GPatternSpec(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GQueue(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GRand(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GRegex(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GMatchInfo(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GScanner(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GSequence(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GSList(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GString(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GStringChunk(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GStrvBuilder(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GThread(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GMutexLocker(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GRecMutexLocker(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GRWLockWriterLocker(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GRWLockReaderLocker(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GTimer(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GTimeZone(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GTree(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GVariant(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GVariantBuilder(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GVariantIter(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GVariantDict(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GVariantType(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GRefString(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GUri(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GPathBuf(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GTypeModule(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GClosure(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GEnumClass(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GFlagsClass(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GObject(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GInitiallyUnowned(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GParamSpec(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GTypeClass(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GDebugController(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GDebugControllerDBus(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GDebugControllerDBusClass(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GListModel(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GListStore(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GListStoreClass(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GMemoryMonitor(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GPowerProfileMonitor(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GUnixConnection(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GUnixCredentialsMessage(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GUnixFDList(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GUnixSocketAddress(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GAction(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GActionMap(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GAppInfo(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GAppLaunchContext(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GAppInfoMonitor(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GApplicationCommandLine(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GApplication(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GAsyncInitable(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GAsyncResult(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GBufferedInputStream(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GBufferedOutputStream(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GBytesIcon(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GCancellable(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GCharsetConverter(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GConverter(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GConverterInputStream(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GConverterOutputStream(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GCredentials(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GDatagramBased(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GDataInputStream(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GDataOutputStream(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GDBusActionGroup(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GDBusAuthObserver(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GDBusConnection(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GDBusInterface(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GDBusInterfaceSkeleton(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GDBusMenuModel(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GDBusMessage(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GDBusMethodInvocation(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GDBusNodeInfo(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GDBusObject(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GDBusObjectManagerClient(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GDBusObjectManager(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GDBusObjectManagerServer(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GDBusObjectProxy(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GDBusObjectSkeleton(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GDBusProxy(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GDBusServer(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GDrive(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GEmblemedIcon(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GEmblem(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GFileEnumerator(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GFile(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GFileAttributeInfoList(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GFileIcon(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GFileInfo(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GFileInputStream(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GFileIOStream(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GFileMonitor(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GFilenameCompleter(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GFileOutputStream(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GFilterInputStream(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GFilterOutputStream(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GIcon(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GInetAddress(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GInetAddressMask(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GInetSocketAddress(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GInitable(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GInputStream(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GIOModule(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GIOStream(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GLoadableIcon(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GMemoryInputStream(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GMemoryOutputStream(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GMenu(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GMenuItem(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GMenuModel(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GMenuAttributeIter(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GMenuLinkIter(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GMount(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GMountOperation(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GNativeVolumeMonitor(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GNetworkAddress(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GNetworkMonitor(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GNetworkService(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GNotification(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GOutputStream(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GPermission(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GPollableInputStream(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GPollableOutputStream(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GPropertyAction(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GProxyAddressEnumerator(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GProxyAddress(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GProxy(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GProxyResolver(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GRemoteActionGroup(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GResolver(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GResource(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GSeekable(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GSettingsBackend(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GSettingsSchema(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GSettingsSchemaKey(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GSettingsSchemaSource(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GSettings(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GSimpleActionGroup(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GSimpleAction(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GSimpleAsyncResult(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GSimplePermission(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GSimpleProxyResolver(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GSocketAddressEnumerator(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GSocketAddress(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GSocketClient(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GSocketConnectable(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GSocketConnection(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GSocketControlMessage(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GSocket(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GSocketListener(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GSocketService(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GSubprocess(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GSubprocessLauncher(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GTask(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GTcpConnection(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GTcpWrapperConnection(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GTestDBus(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GThemedIcon(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GThreadedSocketService(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GTlsBackend(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GTlsCertificate(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GTlsClientConnection(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GTlsConnection(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GTlsDatabase(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GTlsFileDatabase(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GTlsInteraction(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GTlsPassword(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GTlsServerConnection(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GVfs(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GVolume(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GVolumeMonitor(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GZlibCompressor(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_GZlibDecompressor(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_PopplerDocument(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_PopplerIndexIter(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_PopplerFontInfo(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_PopplerFontsIter(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_PopplerLayersIter(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_PopplerPSFile(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_PopplerPage(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_PopplerRectangle(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_PopplerPoint(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_PopplerQuadrilateral(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_PopplerColor(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_PopplerTextAttributes(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_PopplerLinkMapping(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_PopplerPageTransition(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_PopplerImageMapping(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_PopplerFormFieldMapping(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotMapping(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_PopplerLayer(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_PopplerAction(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_PopplerDest(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_PopplerFormField(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_PopplerSignatureInfo(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_PopplerSigningData(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_PopplerCertificateInfo(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_PopplerAttachment(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnot(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotCircle(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotFileAttachment(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotFreeText(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotLine(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotMarkup(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotMovie(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotScreen(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotSquare(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotStamp(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotText(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotTextMarkup(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotCalloutLine(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_PopplerFontDescription(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_PopplerPath(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_PopplerMovie(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_PopplerMedia(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_PopplerStructureElement(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_PopplerTextSpan(_GList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_listautoptr_cleanup_PopplerStructureElementIter(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GAsyncQueue(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GBookmarkFile(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GBytes(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GChecksum(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GDateTime(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GDate(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GDir(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GError(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GHashTable(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GHmac(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GIOChannel(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GKeyFile(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GList(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GArray(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GPtrArray(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GByteArray(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GMainContext(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GMainContextPusher(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GMainLoop(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GSource(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GMappedFile(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GMarkupParseContext(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GNode(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GOptionContext(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GOptionGroup(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GPatternSpec(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GQueue(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GRand(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GRegex(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GMatchInfo(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GScanner(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GSequence(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GSList(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GString(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GStringChunk(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GStrvBuilder(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GThread(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GMutexLocker(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GRecMutexLocker(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GRWLockWriterLocker(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GRWLockReaderLocker(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GTimer(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GTimeZone(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GTree(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GVariant(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GVariantBuilder(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GVariantIter(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GVariantDict(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GVariantType(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GRefString(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GUri(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GPathBuf(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GTypeModule(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GClosure(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GEnumClass(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GFlagsClass(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GObject(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GInitiallyUnowned(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GParamSpec(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GTypeClass(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GDebugController(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GDebugControllerDBus(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GDebugControllerDBusClass(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GListModel(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GListStore(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GListStoreClass(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GMemoryMonitor(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GPowerProfileMonitor(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GUnixConnection(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GUnixCredentialsMessage(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GUnixFDList(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GUnixSocketAddress(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GAction(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GActionMap(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GAppInfo(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GAppLaunchContext(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GAppInfoMonitor(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GApplicationCommandLine(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GApplication(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GAsyncInitable(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GAsyncResult(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GBufferedInputStream(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GBufferedOutputStream(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GBytesIcon(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GCancellable(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GCharsetConverter(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GConverter(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GConverterInputStream(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GConverterOutputStream(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GCredentials(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GDatagramBased(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GDataInputStream(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GDataOutputStream(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GDBusActionGroup(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GDBusAuthObserver(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GDBusConnection(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GDBusInterface(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GDBusInterfaceSkeleton(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GDBusMenuModel(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GDBusMessage(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GDBusMethodInvocation(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GDBusNodeInfo(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GDBusObject(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GDBusObjectManagerClient(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GDBusObjectManager(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GDBusObjectManagerServer(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GDBusObjectProxy(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GDBusObjectSkeleton(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GDBusProxy(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GDBusServer(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GDrive(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GEmblemedIcon(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GEmblem(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GFileEnumerator(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GFile(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GFileAttributeInfoList(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GFileIcon(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GFileInfo(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GFileInputStream(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GFileIOStream(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GFileMonitor(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GFilenameCompleter(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GFileOutputStream(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GFilterInputStream(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GFilterOutputStream(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GIcon(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GInetAddress(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GInetAddressMask(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GInetSocketAddress(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GInitable(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GInputStream(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GIOModule(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GIOStream(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GLoadableIcon(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GMemoryInputStream(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GMemoryOutputStream(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GMenu(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GMenuItem(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GMenuModel(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GMenuAttributeIter(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GMenuLinkIter(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GMount(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GMountOperation(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GNativeVolumeMonitor(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GNetworkAddress(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GNetworkMonitor(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GNetworkService(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GNotification(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GOutputStream(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GPermission(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GPollableInputStream(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GPollableOutputStream(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GPropertyAction(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GProxyAddressEnumerator(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GProxyAddress(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GProxy(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GProxyResolver(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GRemoteActionGroup(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GResolver(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GResource(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GSeekable(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GSettingsBackend(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GSettingsSchema(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GSettingsSchemaKey(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GSettingsSchemaSource(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GSettings(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GSimpleActionGroup(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GSimpleAction(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GSimpleAsyncResult(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GSimplePermission(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GSimpleProxyResolver(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GSocketAddressEnumerator(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GSocketAddress(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GSocketClient(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GSocketConnectable(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GSocketConnection(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GSocketControlMessage(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GSocket(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GSocketListener(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GSocketService(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GSubprocess(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GSubprocessLauncher(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GTask(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GTcpConnection(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GTcpWrapperConnection(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GTestDBus(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GThemedIcon(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GThreadedSocketService(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GTlsBackend(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GTlsCertificate(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GTlsClientConnection(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GTlsConnection(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GTlsDatabase(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GTlsFileDatabase(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GTlsInteraction(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GTlsPassword(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GTlsServerConnection(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GVfs(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GVolume(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GVolumeMonitor(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GZlibCompressor(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_GZlibDecompressor(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_PopplerDocument(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_PopplerIndexIter(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_PopplerFontInfo(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_PopplerFontsIter(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_PopplerLayersIter(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_PopplerPSFile(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_PopplerPage(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_PopplerRectangle(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_PopplerPoint(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_PopplerQuadrilateral(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_PopplerColor(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_PopplerTextAttributes(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_PopplerLinkMapping(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_PopplerPageTransition(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_PopplerImageMapping(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_PopplerFormFieldMapping(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotMapping(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_PopplerLayer(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_PopplerAction(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_PopplerDest(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_PopplerFormField(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_PopplerSignatureInfo(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_PopplerSigningData(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_PopplerCertificateInfo(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_PopplerAttachment(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnot(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotCircle(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotFileAttachment(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotFreeText(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotLine(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotMarkup(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotMovie(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotScreen(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotSquare(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotStamp(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotText(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotTextMarkup(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotCalloutLine(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_PopplerFontDescription(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_PopplerPath(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_PopplerMovie(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_PopplerMedia(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_PopplerStructureElement(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_PopplerTextSpan(_GList**)
Unexecuted instantiation: label_fuzzer.cc:glib_listautoptr_cleanup_PopplerStructureElementIter(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GAsyncQueue(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GBookmarkFile(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GBytes(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GChecksum(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GDateTime(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GDate(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GDir(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GError(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GHashTable(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GHmac(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GIOChannel(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GKeyFile(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GList(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GArray(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GPtrArray(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GByteArray(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GMainContext(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GMainContextPusher(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GMainLoop(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GSource(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GMappedFile(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GMarkupParseContext(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GNode(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GOptionContext(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GOptionGroup(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GPatternSpec(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GQueue(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GRand(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GRegex(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GMatchInfo(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GScanner(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GSequence(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GSList(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GString(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GStringChunk(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GStrvBuilder(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GThread(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GMutexLocker(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GRecMutexLocker(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GRWLockWriterLocker(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GRWLockReaderLocker(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GTimer(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GTimeZone(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GTree(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GVariant(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GVariantBuilder(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GVariantIter(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GVariantDict(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GVariantType(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GRefString(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GUri(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GPathBuf(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GTypeModule(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GClosure(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GEnumClass(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GFlagsClass(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GObject(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GInitiallyUnowned(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GParamSpec(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GTypeClass(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GDebugController(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GDebugControllerDBus(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GDebugControllerDBusClass(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GListModel(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GListStore(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GListStoreClass(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GMemoryMonitor(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GPowerProfileMonitor(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GUnixConnection(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GUnixCredentialsMessage(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GUnixFDList(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GUnixSocketAddress(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GAction(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GActionMap(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GAppInfo(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GAppLaunchContext(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GAppInfoMonitor(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GApplicationCommandLine(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GApplication(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GAsyncInitable(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GAsyncResult(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GBufferedInputStream(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GBufferedOutputStream(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GBytesIcon(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GCancellable(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GCharsetConverter(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GConverter(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GConverterInputStream(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GConverterOutputStream(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GCredentials(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GDatagramBased(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GDataInputStream(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GDataOutputStream(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GDBusActionGroup(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GDBusAuthObserver(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GDBusConnection(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GDBusInterface(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GDBusInterfaceSkeleton(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GDBusMenuModel(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GDBusMessage(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GDBusMethodInvocation(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GDBusNodeInfo(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GDBusObject(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GDBusObjectManagerClient(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GDBusObjectManager(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GDBusObjectManagerServer(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GDBusObjectProxy(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GDBusObjectSkeleton(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GDBusProxy(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GDBusServer(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GDrive(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GEmblemedIcon(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GEmblem(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GFileEnumerator(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GFile(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GFileAttributeInfoList(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GFileIcon(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GFileInfo(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GFileInputStream(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GFileIOStream(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GFileMonitor(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GFilenameCompleter(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GFileOutputStream(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GFilterInputStream(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GFilterOutputStream(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GIcon(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GInetAddress(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GInetAddressMask(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GInetSocketAddress(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GInitable(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GInputStream(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GIOModule(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GIOStream(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GLoadableIcon(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GMemoryInputStream(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GMemoryOutputStream(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GMenu(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GMenuItem(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GMenuModel(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GMenuAttributeIter(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GMenuLinkIter(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GMount(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GMountOperation(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GNativeVolumeMonitor(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GNetworkAddress(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GNetworkMonitor(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GNetworkService(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GNotification(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GOutputStream(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GPermission(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GPollableInputStream(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GPollableOutputStream(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GPropertyAction(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GProxyAddressEnumerator(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GProxyAddress(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GProxy(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GProxyResolver(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GRemoteActionGroup(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GResolver(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GResource(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GSeekable(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GSettingsBackend(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GSettingsSchema(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GSettingsSchemaKey(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GSettingsSchemaSource(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GSettings(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GSimpleActionGroup(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GSimpleAction(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GSimpleAsyncResult(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GSimplePermission(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GSimpleProxyResolver(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GSocketAddressEnumerator(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GSocketAddress(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GSocketClient(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GSocketConnectable(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GSocketConnection(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GSocketControlMessage(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GSocket(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GSocketListener(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GSocketService(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GSubprocess(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GSubprocessLauncher(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GTask(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GTcpConnection(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GTcpWrapperConnection(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GTestDBus(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GThemedIcon(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GThreadedSocketService(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GTlsBackend(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GTlsCertificate(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GTlsClientConnection(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GTlsConnection(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GTlsDatabase(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GTlsFileDatabase(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GTlsInteraction(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GTlsPassword(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GTlsServerConnection(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GVfs(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GVolume(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GVolumeMonitor(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GZlibCompressor(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_GZlibDecompressor(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_PopplerDocument(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_PopplerIndexIter(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_PopplerFontInfo(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_PopplerFontsIter(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_PopplerLayersIter(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_PopplerPSFile(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_PopplerPage(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_PopplerRectangle(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_PopplerPoint(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_PopplerQuadrilateral(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_PopplerColor(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_PopplerTextAttributes(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_PopplerLinkMapping(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_PopplerPageTransition(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_PopplerImageMapping(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_PopplerFormFieldMapping(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotMapping(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_PopplerLayer(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_PopplerAction(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_PopplerDest(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_PopplerFormField(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_PopplerSignatureInfo(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_PopplerSigningData(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_PopplerCertificateInfo(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_PopplerAttachment(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnot(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotCircle(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotFileAttachment(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotFreeText(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotLine(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotMarkup(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotMovie(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotScreen(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotSquare(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotStamp(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotText(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotTextMarkup(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotCalloutLine(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_PopplerFontDescription(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_PopplerPath(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_PopplerMovie(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_PopplerMedia(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_PopplerStructureElement(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_PopplerTextSpan(_GList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_listautoptr_cleanup_PopplerStructureElementIter(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GAsyncQueue(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GBookmarkFile(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GBytes(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GChecksum(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GDateTime(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GDate(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GDir(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GError(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GHashTable(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GHmac(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GIOChannel(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GKeyFile(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GList(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GArray(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GPtrArray(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GByteArray(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GMainContext(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GMainContextPusher(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GMainLoop(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GSource(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GMappedFile(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GMarkupParseContext(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GNode(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GOptionContext(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GOptionGroup(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GPatternSpec(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GQueue(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GRand(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GRegex(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GMatchInfo(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GScanner(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GSequence(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GSList(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GString(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GStringChunk(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GStrvBuilder(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GThread(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GMutexLocker(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GRecMutexLocker(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GRWLockWriterLocker(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GRWLockReaderLocker(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GTimer(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GTimeZone(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GTree(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GVariant(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GVariantBuilder(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GVariantIter(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GVariantDict(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GVariantType(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GRefString(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GUri(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GPathBuf(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GTypeModule(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GClosure(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GEnumClass(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GFlagsClass(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GObject(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GInitiallyUnowned(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GParamSpec(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GTypeClass(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GDebugController(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GDebugControllerDBus(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GDebugControllerDBusClass(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GListModel(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GListStore(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GListStoreClass(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GMemoryMonitor(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GPowerProfileMonitor(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GUnixConnection(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GUnixCredentialsMessage(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GUnixFDList(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GUnixSocketAddress(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GAction(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GActionMap(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GAppInfo(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GAppLaunchContext(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GAppInfoMonitor(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GApplicationCommandLine(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GApplication(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GAsyncInitable(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GAsyncResult(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GBufferedInputStream(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GBufferedOutputStream(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GBytesIcon(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GCancellable(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GCharsetConverter(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GConverter(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GConverterInputStream(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GConverterOutputStream(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GCredentials(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GDatagramBased(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GDataInputStream(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GDataOutputStream(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GDBusActionGroup(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GDBusAuthObserver(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GDBusConnection(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GDBusInterface(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GDBusInterfaceSkeleton(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GDBusMenuModel(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GDBusMessage(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GDBusMethodInvocation(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GDBusNodeInfo(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GDBusObject(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GDBusObjectManagerClient(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GDBusObjectManager(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GDBusObjectManagerServer(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GDBusObjectProxy(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GDBusObjectSkeleton(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GDBusProxy(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GDBusServer(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GDrive(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GEmblemedIcon(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GEmblem(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GFileEnumerator(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GFile(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GFileAttributeInfoList(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GFileIcon(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GFileInfo(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GFileInputStream(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GFileIOStream(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GFileMonitor(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GFilenameCompleter(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GFileOutputStream(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GFilterInputStream(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GFilterOutputStream(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GIcon(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GInetAddress(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GInetAddressMask(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GInetSocketAddress(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GInitable(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GInputStream(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GIOModule(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GIOStream(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GLoadableIcon(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GMemoryInputStream(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GMemoryOutputStream(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GMenu(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GMenuItem(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GMenuModel(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GMenuAttributeIter(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GMenuLinkIter(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GMount(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GMountOperation(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GNativeVolumeMonitor(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GNetworkAddress(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GNetworkMonitor(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GNetworkService(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GNotification(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GOutputStream(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GPermission(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GPollableInputStream(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GPollableOutputStream(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GPropertyAction(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GProxyAddressEnumerator(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GProxyAddress(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GProxy(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GProxyResolver(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GRemoteActionGroup(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GResolver(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GResource(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GSeekable(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GSettingsBackend(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GSettingsSchema(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GSettingsSchemaKey(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GSettingsSchemaSource(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GSettings(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GSimpleActionGroup(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GSimpleAction(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GSimpleAsyncResult(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GSimplePermission(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GSimpleProxyResolver(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GSocketAddressEnumerator(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GSocketAddress(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GSocketClient(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GSocketConnectable(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GSocketConnection(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GSocketControlMessage(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GSocket(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GSocketListener(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GSocketService(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GSubprocess(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GSubprocessLauncher(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GTask(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GTcpConnection(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GTcpWrapperConnection(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GTestDBus(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GThemedIcon(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GThreadedSocketService(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GTlsBackend(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GTlsCertificate(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GTlsClientConnection(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GTlsConnection(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GTlsDatabase(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GTlsFileDatabase(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GTlsInteraction(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GTlsPassword(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GTlsServerConnection(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GVfs(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GVolume(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GVolumeMonitor(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GZlibCompressor(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_GZlibDecompressor(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_PopplerDocument(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_PopplerIndexIter(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_PopplerFontInfo(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_PopplerFontsIter(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_PopplerLayersIter(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_PopplerPSFile(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_PopplerPage(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_PopplerRectangle(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_PopplerPoint(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_PopplerQuadrilateral(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_PopplerColor(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_PopplerTextAttributes(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_PopplerLinkMapping(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_PopplerPageTransition(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_PopplerImageMapping(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_PopplerFormFieldMapping(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotMapping(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_PopplerLayer(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_PopplerAction(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_PopplerDest(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_PopplerFormField(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_PopplerSignatureInfo(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_PopplerSigningData(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_PopplerCertificateInfo(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_PopplerAttachment(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnot(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotCircle(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotFileAttachment(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotFreeText(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotLine(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotMarkup(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotMovie(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotScreen(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotSquare(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotStamp(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotText(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotTextMarkup(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotCalloutLine(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_PopplerFontDescription(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_PopplerPath(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_PopplerMovie(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_PopplerMedia(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_PopplerStructureElement(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_PopplerTextSpan(_GList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_listautoptr_cleanup_PopplerStructureElementIter(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GAsyncQueue(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GBookmarkFile(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GBytes(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GChecksum(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GDateTime(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GDate(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GDir(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GError(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GHashTable(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GHmac(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GIOChannel(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GKeyFile(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GList(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GArray(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GPtrArray(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GByteArray(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GMainContext(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GMainContextPusher(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GMainLoop(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GSource(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GMappedFile(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GMarkupParseContext(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GNode(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GOptionContext(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GOptionGroup(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GPatternSpec(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GQueue(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GRand(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GRegex(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GMatchInfo(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GScanner(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GSequence(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GSList(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GString(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GStringChunk(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GStrvBuilder(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GThread(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GMutexLocker(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GRecMutexLocker(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GRWLockWriterLocker(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GRWLockReaderLocker(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GTimer(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GTimeZone(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GTree(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GVariant(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GVariantBuilder(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GVariantIter(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GVariantDict(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GVariantType(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GRefString(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GUri(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GPathBuf(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GTypeModule(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GClosure(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GEnumClass(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GFlagsClass(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GObject(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GInitiallyUnowned(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GParamSpec(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GTypeClass(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GDebugController(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GDebugControllerDBus(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GDebugControllerDBusClass(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GListModel(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GListStore(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GListStoreClass(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GMemoryMonitor(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GPowerProfileMonitor(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GUnixConnection(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GUnixCredentialsMessage(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GUnixFDList(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GUnixSocketAddress(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GAction(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GActionMap(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GAppInfo(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GAppLaunchContext(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GAppInfoMonitor(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GApplicationCommandLine(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GApplication(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GAsyncInitable(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GAsyncResult(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GBufferedInputStream(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GBufferedOutputStream(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GBytesIcon(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GCancellable(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GCharsetConverter(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GConverter(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GConverterInputStream(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GConverterOutputStream(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GCredentials(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GDatagramBased(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GDataInputStream(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GDataOutputStream(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GDBusActionGroup(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GDBusAuthObserver(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GDBusConnection(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GDBusInterface(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GDBusInterfaceSkeleton(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GDBusMenuModel(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GDBusMessage(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GDBusMethodInvocation(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GDBusNodeInfo(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GDBusObject(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GDBusObjectManagerClient(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GDBusObjectManager(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GDBusObjectManagerServer(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GDBusObjectProxy(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GDBusObjectSkeleton(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GDBusProxy(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GDBusServer(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GDrive(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GEmblemedIcon(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GEmblem(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GFileEnumerator(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GFile(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GFileAttributeInfoList(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GFileIcon(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GFileInfo(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GFileInputStream(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GFileIOStream(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GFileMonitor(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GFilenameCompleter(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GFileOutputStream(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GFilterInputStream(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GFilterOutputStream(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GIcon(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GInetAddress(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GInetAddressMask(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GInetSocketAddress(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GInitable(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GInputStream(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GIOModule(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GIOStream(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GLoadableIcon(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GMemoryInputStream(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GMemoryOutputStream(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GMenu(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GMenuItem(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GMenuModel(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GMenuAttributeIter(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GMenuLinkIter(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GMount(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GMountOperation(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GNativeVolumeMonitor(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GNetworkAddress(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GNetworkMonitor(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GNetworkService(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GNotification(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GOutputStream(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GPermission(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GPollableInputStream(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GPollableOutputStream(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GPropertyAction(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GProxyAddressEnumerator(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GProxyAddress(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GProxy(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GProxyResolver(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GRemoteActionGroup(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GResolver(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GResource(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GSeekable(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GSettingsBackend(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GSettingsSchema(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GSettingsSchemaKey(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GSettingsSchemaSource(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GSettings(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GSimpleActionGroup(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GSimpleAction(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GSimpleAsyncResult(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GSimplePermission(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GSimpleProxyResolver(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GSocketAddressEnumerator(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GSocketAddress(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GSocketClient(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GSocketConnectable(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GSocketConnection(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GSocketControlMessage(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GSocket(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GSocketListener(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GSocketService(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GSubprocess(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GSubprocessLauncher(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GTask(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GTcpConnection(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GTcpWrapperConnection(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GTestDBus(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GThemedIcon(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GThreadedSocketService(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GTlsBackend(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GTlsCertificate(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GTlsClientConnection(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GTlsConnection(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GTlsDatabase(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GTlsFileDatabase(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GTlsInteraction(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GTlsPassword(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GTlsServerConnection(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GVfs(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GVolume(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GVolumeMonitor(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GZlibCompressor(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_GZlibDecompressor(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_PopplerDocument(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_PopplerIndexIter(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_PopplerFontInfo(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_PopplerFontsIter(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_PopplerLayersIter(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_PopplerPSFile(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_PopplerPage(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_PopplerRectangle(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_PopplerPoint(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_PopplerQuadrilateral(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_PopplerColor(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_PopplerTextAttributes(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_PopplerLinkMapping(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_PopplerPageTransition(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_PopplerImageMapping(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_PopplerFormFieldMapping(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotMapping(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_PopplerLayer(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_PopplerAction(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_PopplerDest(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_PopplerFormField(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_PopplerSignatureInfo(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_PopplerSigningData(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_PopplerCertificateInfo(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_PopplerAttachment(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnot(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotCircle(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotFileAttachment(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotFreeText(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotLine(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotMarkup(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotMovie(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotScreen(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotSquare(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotStamp(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotText(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotTextMarkup(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_PopplerAnnotCalloutLine(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_PopplerFontDescription(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_PopplerPath(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_PopplerMovie(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_PopplerMedia(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_PopplerStructureElement(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_PopplerTextSpan(_GList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_listautoptr_cleanup_PopplerStructureElementIter(_GList**)
1361
  static G_GNUC_UNUSED inline void _GLIB_AUTOPTR_SLIST_FUNC_NAME(TypeName) (GSList **_l)                        \
1362
0
    { g_slist_free_full (*_l, (GDestroyNotify) (void(*)(void)) cleanup); }                                      \
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GAsyncQueue(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GBookmarkFile(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GBytes(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GChecksum(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GDateTime(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GDate(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GDir(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GError(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GHashTable(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GHmac(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GIOChannel(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GKeyFile(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GList(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GArray(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GPtrArray(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GByteArray(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GMainContext(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GMainContextPusher(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GMainLoop(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GSource(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GMappedFile(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GMarkupParseContext(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GNode(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GOptionContext(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GOptionGroup(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GPatternSpec(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GQueue(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GRand(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GRegex(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GMatchInfo(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GScanner(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GSequence(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GSList(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GString(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GStringChunk(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GStrvBuilder(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GThread(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GMutexLocker(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GRecMutexLocker(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GRWLockWriterLocker(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GRWLockReaderLocker(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GTimer(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GTimeZone(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GTree(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GVariant(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GVariantBuilder(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GVariantIter(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GVariantDict(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GVariantType(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GRefString(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GUri(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GPathBuf(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GTypeModule(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GClosure(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GEnumClass(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GFlagsClass(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GObject(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GInitiallyUnowned(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GParamSpec(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GTypeClass(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GDebugController(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GDebugControllerDBus(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GDebugControllerDBusClass(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GListModel(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GListStore(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GListStoreClass(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GMemoryMonitor(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GPowerProfileMonitor(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GUnixConnection(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GUnixCredentialsMessage(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GUnixFDList(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GUnixSocketAddress(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GAction(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GActionMap(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GAppInfo(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GAppLaunchContext(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GAppInfoMonitor(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GApplicationCommandLine(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GApplication(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GAsyncInitable(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GAsyncResult(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GBufferedInputStream(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GBufferedOutputStream(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GBytesIcon(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GCancellable(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GCharsetConverter(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GConverter(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GConverterInputStream(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GConverterOutputStream(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GCredentials(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GDatagramBased(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GDataInputStream(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GDataOutputStream(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GDBusActionGroup(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GDBusAuthObserver(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GDBusConnection(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GDBusInterface(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GDBusInterfaceSkeleton(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GDBusMenuModel(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GDBusMessage(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GDBusMethodInvocation(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GDBusNodeInfo(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GDBusObject(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GDBusObjectManagerClient(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GDBusObjectManager(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GDBusObjectManagerServer(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GDBusObjectProxy(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GDBusObjectSkeleton(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GDBusProxy(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GDBusServer(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GDrive(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GEmblemedIcon(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GEmblem(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GFileEnumerator(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GFile(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GFileAttributeInfoList(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GFileIcon(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GFileInfo(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GFileInputStream(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GFileIOStream(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GFileMonitor(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GFilenameCompleter(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GFileOutputStream(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GFilterInputStream(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GFilterOutputStream(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GIcon(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GInetAddress(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GInetAddressMask(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GInetSocketAddress(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GInitable(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GInputStream(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GIOModule(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GIOStream(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GLoadableIcon(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GMemoryInputStream(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GMemoryOutputStream(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GMenu(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GMenuItem(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GMenuModel(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GMenuAttributeIter(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GMenuLinkIter(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GMount(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GMountOperation(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GNativeVolumeMonitor(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GNetworkAddress(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GNetworkMonitor(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GNetworkService(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GNotification(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GOutputStream(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GPermission(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GPollableInputStream(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GPollableOutputStream(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GPropertyAction(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GProxyAddressEnumerator(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GProxyAddress(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GProxy(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GProxyResolver(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GRemoteActionGroup(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GResolver(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GResource(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GSeekable(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GSettingsBackend(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GSettingsSchema(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GSettingsSchemaKey(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GSettingsSchemaSource(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GSettings(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GSimpleActionGroup(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GSimpleAction(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GSimpleAsyncResult(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GSimplePermission(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GSimpleProxyResolver(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GSocketAddressEnumerator(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GSocketAddress(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GSocketClient(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GSocketConnectable(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GSocketConnection(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GSocketControlMessage(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GSocket(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GSocketListener(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GSocketService(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GSubprocess(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GSubprocessLauncher(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GTask(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GTcpConnection(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GTcpWrapperConnection(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GTestDBus(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GThemedIcon(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GThreadedSocketService(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GTlsBackend(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GTlsCertificate(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GTlsClientConnection(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GTlsConnection(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GTlsDatabase(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GTlsFileDatabase(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GTlsInteraction(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GTlsPassword(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GTlsServerConnection(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GVfs(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GVolume(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GVolumeMonitor(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GZlibCompressor(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_GZlibDecompressor(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_PopplerDocument(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_PopplerIndexIter(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_PopplerFontInfo(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_PopplerFontsIter(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_PopplerLayersIter(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_PopplerPSFile(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_PopplerPage(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_PopplerRectangle(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_PopplerPoint(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_PopplerQuadrilateral(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_PopplerColor(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_PopplerTextAttributes(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_PopplerLinkMapping(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_PopplerPageTransition(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_PopplerImageMapping(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_PopplerFormFieldMapping(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotMapping(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_PopplerLayer(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAction(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_PopplerDest(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_PopplerFormField(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_PopplerSignatureInfo(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_PopplerSigningData(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_PopplerCertificateInfo(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAttachment(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnot(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotCircle(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotFileAttachment(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotFreeText(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotLine(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotMarkup(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotMovie(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotScreen(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotSquare(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotStamp(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotText(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotTextMarkup(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotCalloutLine(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_PopplerFontDescription(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_PopplerPath(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_PopplerMovie(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_PopplerMedia(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_PopplerStructureElement(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_PopplerTextSpan(_GSList**)
Unexecuted instantiation: util_fuzzer.cc:glib_slistautoptr_cleanup_PopplerStructureElementIter(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_slistautoptr_cleanup_GAsyncQueue(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_slistautoptr_cleanup_GBookmarkFile(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_slistautoptr_cleanup_GBytes(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_slistautoptr_cleanup_GChecksum(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_slistautoptr_cleanup_GDateTime(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_slistautoptr_cleanup_GDate(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_slistautoptr_cleanup_GDir(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_slistautoptr_cleanup_GError(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_slistautoptr_cleanup_GHashTable(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_slistautoptr_cleanup_GHmac(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_slistautoptr_cleanup_GIOChannel(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_slistautoptr_cleanup_GKeyFile(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_slistautoptr_cleanup_GList(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_slistautoptr_cleanup_GArray(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_slistautoptr_cleanup_GPtrArray(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_slistautoptr_cleanup_GByteArray(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_slistautoptr_cleanup_GMainContext(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_slistautoptr_cleanup_GMainContextPusher(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_slistautoptr_cleanup_GMainLoop(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_slistautoptr_cleanup_GSource(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_slistautoptr_cleanup_GMappedFile(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_slistautoptr_cleanup_GMarkupParseContext(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_slistautoptr_cleanup_GNode(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_slistautoptr_cleanup_GOptionContext(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_slistautoptr_cleanup_GOptionGroup(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_slistautoptr_cleanup_GPatternSpec(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_slistautoptr_cleanup_GQueue(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_slistautoptr_cleanup_GRand(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_slistautoptr_cleanup_GRegex(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_slistautoptr_cleanup_GMatchInfo(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_slistautoptr_cleanup_GScanner(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_slistautoptr_cleanup_GSequence(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_slistautoptr_cleanup_GSList(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_slistautoptr_cleanup_GString(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_slistautoptr_cleanup_GStringChunk(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_slistautoptr_cleanup_GStrvBuilder(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_slistautoptr_cleanup_GThread(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_slistautoptr_cleanup_GMutexLocker(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_slistautoptr_cleanup_GRecMutexLocker(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_slistautoptr_cleanup_GRWLockWriterLocker(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_slistautoptr_cleanup_GRWLockReaderLocker(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_slistautoptr_cleanup_GTimer(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_slistautoptr_cleanup_GTimeZone(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_slistautoptr_cleanup_GTree(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_slistautoptr_cleanup_GVariant(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_slistautoptr_cleanup_GVariantBuilder(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_slistautoptr_cleanup_GVariantIter(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_slistautoptr_cleanup_GVariantDict(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_slistautoptr_cleanup_GVariantType(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_slistautoptr_cleanup_GRefString(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_slistautoptr_cleanup_GUri(_GSList**)
Unexecuted instantiation: hb-unicode.cc:glib_slistautoptr_cleanup_GPathBuf(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GAsyncQueue(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GBookmarkFile(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GBytes(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GChecksum(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GDateTime(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GDate(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GDir(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GError(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GHashTable(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GHmac(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GIOChannel(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GKeyFile(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GList(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GArray(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GPtrArray(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GByteArray(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GMainContext(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GMainContextPusher(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GMainLoop(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GSource(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GMappedFile(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GMarkupParseContext(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GNode(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GOptionContext(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GOptionGroup(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GPatternSpec(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GQueue(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GRand(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GRegex(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GMatchInfo(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GScanner(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GSequence(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GSList(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GString(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GStringChunk(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GStrvBuilder(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GThread(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GMutexLocker(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GRecMutexLocker(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GRWLockWriterLocker(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GRWLockReaderLocker(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GTimer(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GTimeZone(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GTree(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GVariant(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GVariantBuilder(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GVariantIter(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GVariantDict(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GVariantType(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GRefString(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GUri(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GPathBuf(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GTypeModule(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GClosure(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GEnumClass(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GFlagsClass(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GObject(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GInitiallyUnowned(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GParamSpec(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GTypeClass(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GDebugController(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GDebugControllerDBus(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GDebugControllerDBusClass(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GListModel(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GListStore(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GListStoreClass(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GMemoryMonitor(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GPowerProfileMonitor(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GUnixConnection(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GUnixCredentialsMessage(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GUnixFDList(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GUnixSocketAddress(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GAction(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GActionMap(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GAppInfo(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GAppLaunchContext(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GAppInfoMonitor(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GApplicationCommandLine(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GApplication(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GAsyncInitable(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GAsyncResult(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GBufferedInputStream(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GBufferedOutputStream(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GBytesIcon(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GCancellable(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GCharsetConverter(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GConverter(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GConverterInputStream(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GConverterOutputStream(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GCredentials(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GDatagramBased(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GDataInputStream(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GDataOutputStream(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GDBusActionGroup(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GDBusAuthObserver(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GDBusConnection(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GDBusInterface(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GDBusInterfaceSkeleton(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GDBusMenuModel(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GDBusMessage(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GDBusMethodInvocation(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GDBusNodeInfo(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GDBusObject(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GDBusObjectManagerClient(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GDBusObjectManager(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GDBusObjectManagerServer(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GDBusObjectProxy(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GDBusObjectSkeleton(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GDBusProxy(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GDBusServer(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GDrive(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GEmblemedIcon(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GEmblem(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GFileEnumerator(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GFile(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GFileAttributeInfoList(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GFileIcon(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GFileInfo(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GFileInputStream(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GFileIOStream(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GFileMonitor(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GFilenameCompleter(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GFileOutputStream(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GFilterInputStream(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GFilterOutputStream(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GIcon(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GInetAddress(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GInetAddressMask(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GInetSocketAddress(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GInitable(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GInputStream(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GIOModule(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GIOStream(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GLoadableIcon(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GMemoryInputStream(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GMemoryOutputStream(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GMenu(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GMenuItem(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GMenuModel(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GMenuAttributeIter(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GMenuLinkIter(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GMount(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GMountOperation(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GNativeVolumeMonitor(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GNetworkAddress(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GNetworkMonitor(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GNetworkService(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GNotification(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GOutputStream(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GPermission(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GPollableInputStream(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GPollableOutputStream(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GPropertyAction(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GProxyAddressEnumerator(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GProxyAddress(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GProxy(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GProxyResolver(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GRemoteActionGroup(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GResolver(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GResource(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GSeekable(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GSettingsBackend(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GSettingsSchema(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GSettingsSchemaKey(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GSettingsSchemaSource(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GSettings(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GSimpleActionGroup(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GSimpleAction(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GSimpleAsyncResult(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GSimplePermission(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GSimpleProxyResolver(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GSocketAddressEnumerator(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GSocketAddress(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GSocketClient(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GSocketConnectable(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GSocketConnection(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GSocketControlMessage(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GSocket(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GSocketListener(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GSocketService(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GSubprocess(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GSubprocessLauncher(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GTask(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GTcpConnection(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GTcpWrapperConnection(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GTestDBus(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GThemedIcon(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GThreadedSocketService(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GTlsBackend(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GTlsCertificate(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GTlsClientConnection(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GTlsConnection(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GTlsDatabase(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GTlsFileDatabase(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GTlsInteraction(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GTlsPassword(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GTlsServerConnection(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GVfs(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GVolume(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GVolumeMonitor(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GZlibCompressor(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_GZlibDecompressor(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_PopplerDocument(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_PopplerIndexIter(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_PopplerFontInfo(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_PopplerFontsIter(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_PopplerLayersIter(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_PopplerPSFile(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_PopplerPage(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_PopplerRectangle(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_PopplerPoint(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_PopplerQuadrilateral(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_PopplerColor(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_PopplerTextAttributes(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_PopplerLinkMapping(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_PopplerPageTransition(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_PopplerImageMapping(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_PopplerFormFieldMapping(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotMapping(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_PopplerLayer(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAction(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_PopplerDest(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_PopplerFormField(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_PopplerSignatureInfo(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_PopplerSigningData(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_PopplerCertificateInfo(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAttachment(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnot(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotCircle(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotFileAttachment(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotFreeText(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotLine(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotMarkup(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotMovie(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotScreen(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotSquare(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotStamp(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotText(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotTextMarkup(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotCalloutLine(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_PopplerFontDescription(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_PopplerPath(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_PopplerMovie(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_PopplerMedia(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_PopplerStructureElement(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_PopplerTextSpan(_GSList**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_slistautoptr_cleanup_PopplerStructureElementIter(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GAsyncQueue(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GBookmarkFile(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GBytes(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GChecksum(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GDateTime(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GDate(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GDir(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GError(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GHashTable(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GHmac(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GIOChannel(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GKeyFile(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GList(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GArray(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GPtrArray(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GByteArray(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GMainContext(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GMainContextPusher(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GMainLoop(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GSource(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GMappedFile(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GMarkupParseContext(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GNode(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GOptionContext(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GOptionGroup(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GPatternSpec(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GQueue(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GRand(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GRegex(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GMatchInfo(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GScanner(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GSequence(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GSList(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GString(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GStringChunk(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GStrvBuilder(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GThread(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GMutexLocker(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GRecMutexLocker(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GRWLockWriterLocker(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GRWLockReaderLocker(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GTimer(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GTimeZone(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GTree(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GVariant(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GVariantBuilder(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GVariantIter(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GVariantDict(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GVariantType(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GRefString(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GUri(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GPathBuf(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GTypeModule(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GClosure(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GEnumClass(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GFlagsClass(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GObject(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GInitiallyUnowned(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GParamSpec(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GTypeClass(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GDebugController(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GDebugControllerDBus(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GDebugControllerDBusClass(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GListModel(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GListStore(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GListStoreClass(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GMemoryMonitor(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GPowerProfileMonitor(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GUnixConnection(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GUnixCredentialsMessage(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GUnixFDList(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GUnixSocketAddress(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GAction(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GActionMap(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GAppInfo(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GAppLaunchContext(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GAppInfoMonitor(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GApplicationCommandLine(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GApplication(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GAsyncInitable(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GAsyncResult(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GBufferedInputStream(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GBufferedOutputStream(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GBytesIcon(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GCancellable(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GCharsetConverter(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GConverter(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GConverterInputStream(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GConverterOutputStream(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GCredentials(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GDatagramBased(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GDataInputStream(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GDataOutputStream(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GDBusActionGroup(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GDBusAuthObserver(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GDBusConnection(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GDBusInterface(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GDBusInterfaceSkeleton(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GDBusMenuModel(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GDBusMessage(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GDBusMethodInvocation(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GDBusNodeInfo(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GDBusObject(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GDBusObjectManagerClient(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GDBusObjectManager(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GDBusObjectManagerServer(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GDBusObjectProxy(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GDBusObjectSkeleton(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GDBusProxy(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GDBusServer(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GDrive(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GEmblemedIcon(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GEmblem(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GFileEnumerator(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GFile(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GFileAttributeInfoList(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GFileIcon(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GFileInfo(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GFileInputStream(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GFileIOStream(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GFileMonitor(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GFilenameCompleter(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GFileOutputStream(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GFilterInputStream(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GFilterOutputStream(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GIcon(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GInetAddress(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GInetAddressMask(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GInetSocketAddress(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GInitable(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GInputStream(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GIOModule(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GIOStream(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GLoadableIcon(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GMemoryInputStream(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GMemoryOutputStream(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GMenu(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GMenuItem(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GMenuModel(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GMenuAttributeIter(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GMenuLinkIter(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GMount(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GMountOperation(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GNativeVolumeMonitor(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GNetworkAddress(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GNetworkMonitor(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GNetworkService(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GNotification(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GOutputStream(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GPermission(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GPollableInputStream(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GPollableOutputStream(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GPropertyAction(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GProxyAddressEnumerator(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GProxyAddress(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GProxy(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GProxyResolver(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GRemoteActionGroup(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GResolver(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GResource(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GSeekable(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GSettingsBackend(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GSettingsSchema(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GSettingsSchemaKey(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GSettingsSchemaSource(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GSettings(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GSimpleActionGroup(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GSimpleAction(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GSimpleAsyncResult(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GSimplePermission(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GSimpleProxyResolver(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GSocketAddressEnumerator(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GSocketAddress(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GSocketClient(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GSocketConnectable(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GSocketConnection(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GSocketControlMessage(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GSocket(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GSocketListener(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GSocketService(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GSubprocess(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GSubprocessLauncher(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GTask(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GTcpConnection(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GTcpWrapperConnection(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GTestDBus(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GThemedIcon(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GThreadedSocketService(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GTlsBackend(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GTlsCertificate(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GTlsClientConnection(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GTlsConnection(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GTlsDatabase(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GTlsFileDatabase(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GTlsInteraction(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GTlsPassword(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GTlsServerConnection(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GVfs(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GVolume(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GVolumeMonitor(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GZlibCompressor(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_GZlibDecompressor(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_PopplerDocument(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_PopplerIndexIter(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_PopplerFontInfo(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_PopplerFontsIter(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_PopplerLayersIter(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_PopplerPSFile(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_PopplerPage(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_PopplerRectangle(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_PopplerPoint(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_PopplerQuadrilateral(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_PopplerColor(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_PopplerTextAttributes(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_PopplerLinkMapping(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_PopplerPageTransition(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_PopplerImageMapping(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_PopplerFormFieldMapping(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotMapping(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_PopplerLayer(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAction(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_PopplerDest(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_PopplerFormField(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_PopplerSignatureInfo(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_PopplerSigningData(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_PopplerCertificateInfo(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAttachment(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnot(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotCircle(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotFileAttachment(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotFreeText(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotLine(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotMarkup(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotMovie(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotScreen(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotSquare(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotStamp(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotText(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotTextMarkup(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotCalloutLine(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_PopplerFontDescription(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_PopplerPath(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_PopplerMovie(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_PopplerMedia(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_PopplerStructureElement(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_PopplerTextSpan(_GSList**)
Unexecuted instantiation: label_fuzzer.cc:glib_slistautoptr_cleanup_PopplerStructureElementIter(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GAsyncQueue(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GBookmarkFile(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GBytes(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GChecksum(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GDateTime(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GDate(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GDir(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GError(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GHashTable(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GHmac(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GIOChannel(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GKeyFile(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GList(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GArray(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GPtrArray(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GByteArray(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GMainContext(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GMainContextPusher(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GMainLoop(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GSource(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GMappedFile(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GMarkupParseContext(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GNode(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GOptionContext(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GOptionGroup(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GPatternSpec(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GQueue(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GRand(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GRegex(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GMatchInfo(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GScanner(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GSequence(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GSList(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GString(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GStringChunk(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GStrvBuilder(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GThread(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GMutexLocker(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GRecMutexLocker(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GRWLockWriterLocker(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GRWLockReaderLocker(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GTimer(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GTimeZone(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GTree(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GVariant(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GVariantBuilder(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GVariantIter(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GVariantDict(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GVariantType(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GRefString(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GUri(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GPathBuf(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GTypeModule(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GClosure(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GEnumClass(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GFlagsClass(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GObject(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GInitiallyUnowned(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GParamSpec(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GTypeClass(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GDebugController(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GDebugControllerDBus(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GDebugControllerDBusClass(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GListModel(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GListStore(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GListStoreClass(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GMemoryMonitor(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GPowerProfileMonitor(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GUnixConnection(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GUnixCredentialsMessage(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GUnixFDList(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GUnixSocketAddress(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GAction(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GActionMap(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GAppInfo(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GAppLaunchContext(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GAppInfoMonitor(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GApplicationCommandLine(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GApplication(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GAsyncInitable(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GAsyncResult(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GBufferedInputStream(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GBufferedOutputStream(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GBytesIcon(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GCancellable(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GCharsetConverter(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GConverter(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GConverterInputStream(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GConverterOutputStream(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GCredentials(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GDatagramBased(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GDataInputStream(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GDataOutputStream(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GDBusActionGroup(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GDBusAuthObserver(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GDBusConnection(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GDBusInterface(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GDBusInterfaceSkeleton(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GDBusMenuModel(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GDBusMessage(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GDBusMethodInvocation(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GDBusNodeInfo(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GDBusObject(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GDBusObjectManagerClient(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GDBusObjectManager(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GDBusObjectManagerServer(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GDBusObjectProxy(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GDBusObjectSkeleton(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GDBusProxy(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GDBusServer(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GDrive(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GEmblemedIcon(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GEmblem(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GFileEnumerator(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GFile(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GFileAttributeInfoList(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GFileIcon(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GFileInfo(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GFileInputStream(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GFileIOStream(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GFileMonitor(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GFilenameCompleter(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GFileOutputStream(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GFilterInputStream(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GFilterOutputStream(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GIcon(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GInetAddress(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GInetAddressMask(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GInetSocketAddress(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GInitable(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GInputStream(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GIOModule(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GIOStream(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GLoadableIcon(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GMemoryInputStream(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GMemoryOutputStream(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GMenu(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GMenuItem(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GMenuModel(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GMenuAttributeIter(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GMenuLinkIter(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GMount(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GMountOperation(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GNativeVolumeMonitor(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GNetworkAddress(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GNetworkMonitor(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GNetworkService(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GNotification(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GOutputStream(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GPermission(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GPollableInputStream(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GPollableOutputStream(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GPropertyAction(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GProxyAddressEnumerator(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GProxyAddress(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GProxy(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GProxyResolver(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GRemoteActionGroup(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GResolver(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GResource(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GSeekable(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GSettingsBackend(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GSettingsSchema(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GSettingsSchemaKey(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GSettingsSchemaSource(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GSettings(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GSimpleActionGroup(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GSimpleAction(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GSimpleAsyncResult(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GSimplePermission(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GSimpleProxyResolver(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GSocketAddressEnumerator(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GSocketAddress(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GSocketClient(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GSocketConnectable(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GSocketConnection(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GSocketControlMessage(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GSocket(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GSocketListener(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GSocketService(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GSubprocess(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GSubprocessLauncher(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GTask(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GTcpConnection(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GTcpWrapperConnection(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GTestDBus(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GThemedIcon(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GThreadedSocketService(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GTlsBackend(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GTlsCertificate(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GTlsClientConnection(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GTlsConnection(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GTlsDatabase(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GTlsFileDatabase(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GTlsInteraction(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GTlsPassword(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GTlsServerConnection(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GVfs(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GVolume(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GVolumeMonitor(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GZlibCompressor(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_GZlibDecompressor(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_PopplerDocument(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_PopplerIndexIter(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_PopplerFontInfo(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_PopplerFontsIter(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_PopplerLayersIter(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_PopplerPSFile(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_PopplerPage(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_PopplerRectangle(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_PopplerPoint(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_PopplerQuadrilateral(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_PopplerColor(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_PopplerTextAttributes(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_PopplerLinkMapping(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_PopplerPageTransition(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_PopplerImageMapping(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_PopplerFormFieldMapping(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotMapping(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_PopplerLayer(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAction(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_PopplerDest(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_PopplerFormField(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_PopplerSignatureInfo(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_PopplerSigningData(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_PopplerCertificateInfo(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAttachment(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnot(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotCircle(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotFileAttachment(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotFreeText(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotLine(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotMarkup(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotMovie(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotScreen(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotSquare(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotStamp(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotText(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotTextMarkup(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotCalloutLine(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_PopplerFontDescription(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_PopplerPath(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_PopplerMovie(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_PopplerMedia(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_PopplerStructureElement(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_PopplerTextSpan(_GSList**)
Unexecuted instantiation: annot_fuzzer.cc:glib_slistautoptr_cleanup_PopplerStructureElementIter(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GAsyncQueue(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GBookmarkFile(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GBytes(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GChecksum(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GDateTime(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GDate(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GDir(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GError(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GHashTable(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GHmac(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GIOChannel(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GKeyFile(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GList(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GArray(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GPtrArray(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GByteArray(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GMainContext(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GMainContextPusher(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GMainLoop(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GSource(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GMappedFile(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GMarkupParseContext(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GNode(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GOptionContext(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GOptionGroup(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GPatternSpec(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GQueue(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GRand(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GRegex(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GMatchInfo(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GScanner(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GSequence(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GSList(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GString(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GStringChunk(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GStrvBuilder(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GThread(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GMutexLocker(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GRecMutexLocker(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GRWLockWriterLocker(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GRWLockReaderLocker(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GTimer(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GTimeZone(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GTree(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GVariant(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GVariantBuilder(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GVariantIter(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GVariantDict(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GVariantType(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GRefString(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GUri(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GPathBuf(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GTypeModule(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GClosure(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GEnumClass(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GFlagsClass(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GObject(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GInitiallyUnowned(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GParamSpec(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GTypeClass(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GDebugController(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GDebugControllerDBus(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GDebugControllerDBusClass(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GListModel(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GListStore(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GListStoreClass(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GMemoryMonitor(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GPowerProfileMonitor(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GUnixConnection(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GUnixCredentialsMessage(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GUnixFDList(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GUnixSocketAddress(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GAction(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GActionMap(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GAppInfo(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GAppLaunchContext(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GAppInfoMonitor(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GApplicationCommandLine(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GApplication(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GAsyncInitable(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GAsyncResult(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GBufferedInputStream(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GBufferedOutputStream(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GBytesIcon(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GCancellable(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GCharsetConverter(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GConverter(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GConverterInputStream(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GConverterOutputStream(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GCredentials(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GDatagramBased(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GDataInputStream(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GDataOutputStream(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GDBusActionGroup(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GDBusAuthObserver(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GDBusConnection(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GDBusInterface(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GDBusInterfaceSkeleton(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GDBusMenuModel(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GDBusMessage(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GDBusMethodInvocation(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GDBusNodeInfo(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GDBusObject(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GDBusObjectManagerClient(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GDBusObjectManager(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GDBusObjectManagerServer(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GDBusObjectProxy(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GDBusObjectSkeleton(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GDBusProxy(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GDBusServer(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GDrive(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GEmblemedIcon(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GEmblem(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GFileEnumerator(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GFile(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GFileAttributeInfoList(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GFileIcon(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GFileInfo(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GFileInputStream(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GFileIOStream(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GFileMonitor(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GFilenameCompleter(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GFileOutputStream(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GFilterInputStream(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GFilterOutputStream(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GIcon(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GInetAddress(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GInetAddressMask(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GInetSocketAddress(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GInitable(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GInputStream(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GIOModule(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GIOStream(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GLoadableIcon(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GMemoryInputStream(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GMemoryOutputStream(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GMenu(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GMenuItem(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GMenuModel(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GMenuAttributeIter(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GMenuLinkIter(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GMount(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GMountOperation(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GNativeVolumeMonitor(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GNetworkAddress(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GNetworkMonitor(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GNetworkService(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GNotification(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GOutputStream(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GPermission(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GPollableInputStream(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GPollableOutputStream(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GPropertyAction(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GProxyAddressEnumerator(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GProxyAddress(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GProxy(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GProxyResolver(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GRemoteActionGroup(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GResolver(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GResource(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GSeekable(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GSettingsBackend(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GSettingsSchema(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GSettingsSchemaKey(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GSettingsSchemaSource(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GSettings(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GSimpleActionGroup(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GSimpleAction(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GSimpleAsyncResult(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GSimplePermission(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GSimpleProxyResolver(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GSocketAddressEnumerator(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GSocketAddress(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GSocketClient(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GSocketConnectable(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GSocketConnection(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GSocketControlMessage(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GSocket(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GSocketListener(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GSocketService(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GSubprocess(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GSubprocessLauncher(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GTask(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GTcpConnection(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GTcpWrapperConnection(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GTestDBus(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GThemedIcon(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GThreadedSocketService(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GTlsBackend(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GTlsCertificate(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GTlsClientConnection(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GTlsConnection(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GTlsDatabase(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GTlsFileDatabase(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GTlsInteraction(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GTlsPassword(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GTlsServerConnection(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GVfs(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GVolume(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GVolumeMonitor(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GZlibCompressor(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_GZlibDecompressor(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_PopplerDocument(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_PopplerIndexIter(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_PopplerFontInfo(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_PopplerFontsIter(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_PopplerLayersIter(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_PopplerPSFile(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_PopplerPage(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_PopplerRectangle(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_PopplerPoint(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_PopplerQuadrilateral(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_PopplerColor(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_PopplerTextAttributes(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_PopplerLinkMapping(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_PopplerPageTransition(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_PopplerImageMapping(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_PopplerFormFieldMapping(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotMapping(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_PopplerLayer(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAction(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_PopplerDest(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_PopplerFormField(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_PopplerSignatureInfo(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_PopplerSigningData(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_PopplerCertificateInfo(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAttachment(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnot(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotCircle(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotFileAttachment(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotFreeText(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotLine(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotMarkup(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotMovie(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotScreen(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotSquare(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotStamp(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotText(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotTextMarkup(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotCalloutLine(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_PopplerFontDescription(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_PopplerPath(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_PopplerMovie(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_PopplerMedia(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_PopplerStructureElement(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_PopplerTextSpan(_GSList**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_slistautoptr_cleanup_PopplerStructureElementIter(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GAsyncQueue(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GBookmarkFile(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GBytes(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GChecksum(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GDateTime(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GDate(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GDir(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GError(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GHashTable(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GHmac(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GIOChannel(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GKeyFile(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GList(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GArray(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GPtrArray(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GByteArray(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GMainContext(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GMainContextPusher(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GMainLoop(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GSource(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GMappedFile(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GMarkupParseContext(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GNode(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GOptionContext(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GOptionGroup(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GPatternSpec(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GQueue(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GRand(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GRegex(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GMatchInfo(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GScanner(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GSequence(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GSList(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GString(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GStringChunk(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GStrvBuilder(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GThread(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GMutexLocker(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GRecMutexLocker(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GRWLockWriterLocker(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GRWLockReaderLocker(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GTimer(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GTimeZone(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GTree(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GVariant(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GVariantBuilder(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GVariantIter(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GVariantDict(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GVariantType(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GRefString(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GUri(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GPathBuf(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GTypeModule(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GClosure(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GEnumClass(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GFlagsClass(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GObject(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GInitiallyUnowned(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GParamSpec(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GTypeClass(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GDebugController(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GDebugControllerDBus(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GDebugControllerDBusClass(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GListModel(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GListStore(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GListStoreClass(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GMemoryMonitor(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GPowerProfileMonitor(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GUnixConnection(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GUnixCredentialsMessage(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GUnixFDList(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GUnixSocketAddress(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GAction(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GActionMap(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GAppInfo(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GAppLaunchContext(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GAppInfoMonitor(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GApplicationCommandLine(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GApplication(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GAsyncInitable(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GAsyncResult(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GBufferedInputStream(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GBufferedOutputStream(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GBytesIcon(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GCancellable(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GCharsetConverter(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GConverter(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GConverterInputStream(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GConverterOutputStream(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GCredentials(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GDatagramBased(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GDataInputStream(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GDataOutputStream(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GDBusActionGroup(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GDBusAuthObserver(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GDBusConnection(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GDBusInterface(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GDBusInterfaceSkeleton(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GDBusMenuModel(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GDBusMessage(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GDBusMethodInvocation(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GDBusNodeInfo(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GDBusObject(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GDBusObjectManagerClient(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GDBusObjectManager(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GDBusObjectManagerServer(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GDBusObjectProxy(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GDBusObjectSkeleton(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GDBusProxy(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GDBusServer(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GDrive(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GEmblemedIcon(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GEmblem(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GFileEnumerator(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GFile(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GFileAttributeInfoList(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GFileIcon(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GFileInfo(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GFileInputStream(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GFileIOStream(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GFileMonitor(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GFilenameCompleter(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GFileOutputStream(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GFilterInputStream(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GFilterOutputStream(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GIcon(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GInetAddress(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GInetAddressMask(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GInetSocketAddress(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GInitable(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GInputStream(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GIOModule(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GIOStream(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GLoadableIcon(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GMemoryInputStream(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GMemoryOutputStream(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GMenu(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GMenuItem(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GMenuModel(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GMenuAttributeIter(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GMenuLinkIter(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GMount(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GMountOperation(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GNativeVolumeMonitor(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GNetworkAddress(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GNetworkMonitor(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GNetworkService(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GNotification(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GOutputStream(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GPermission(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GPollableInputStream(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GPollableOutputStream(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GPropertyAction(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GProxyAddressEnumerator(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GProxyAddress(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GProxy(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GProxyResolver(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GRemoteActionGroup(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GResolver(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GResource(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GSeekable(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GSettingsBackend(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GSettingsSchema(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GSettingsSchemaKey(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GSettingsSchemaSource(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GSettings(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GSimpleActionGroup(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GSimpleAction(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GSimpleAsyncResult(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GSimplePermission(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GSimpleProxyResolver(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GSocketAddressEnumerator(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GSocketAddress(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GSocketClient(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GSocketConnectable(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GSocketConnection(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GSocketControlMessage(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GSocket(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GSocketListener(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GSocketService(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GSubprocess(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GSubprocessLauncher(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GTask(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GTcpConnection(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GTcpWrapperConnection(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GTestDBus(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GThemedIcon(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GThreadedSocketService(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GTlsBackend(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GTlsCertificate(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GTlsClientConnection(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GTlsConnection(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GTlsDatabase(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GTlsFileDatabase(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GTlsInteraction(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GTlsPassword(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GTlsServerConnection(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GVfs(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GVolume(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GVolumeMonitor(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GZlibCompressor(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_GZlibDecompressor(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_PopplerDocument(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_PopplerIndexIter(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_PopplerFontInfo(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_PopplerFontsIter(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_PopplerLayersIter(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_PopplerPSFile(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_PopplerPage(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_PopplerRectangle(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_PopplerPoint(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_PopplerQuadrilateral(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_PopplerColor(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_PopplerTextAttributes(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_PopplerLinkMapping(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_PopplerPageTransition(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_PopplerImageMapping(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_PopplerFormFieldMapping(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotMapping(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_PopplerLayer(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAction(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_PopplerDest(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_PopplerFormField(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_PopplerSignatureInfo(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_PopplerSigningData(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_PopplerCertificateInfo(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAttachment(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnot(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotCircle(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotFileAttachment(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotFreeText(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotLine(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotMarkup(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotMovie(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotScreen(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotSquare(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotStamp(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotText(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotTextMarkup(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_PopplerAnnotCalloutLine(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_PopplerFontDescription(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_PopplerPath(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_PopplerMovie(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_PopplerMedia(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_PopplerStructureElement(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_PopplerTextSpan(_GSList**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_slistautoptr_cleanup_PopplerStructureElementIter(_GSList**)
1363
  static G_GNUC_UNUSED inline void _GLIB_AUTOPTR_QUEUE_FUNC_NAME(TypeName) (GQueue **_q)                        \
1364
0
    { if (*_q) g_queue_free_full (*_q, (GDestroyNotify) (void(*)(void)) cleanup); }                             \
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GAsyncQueue(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GBookmarkFile(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GBytes(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GChecksum(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GDateTime(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GDate(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GDir(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GError(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GHashTable(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GHmac(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GIOChannel(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GKeyFile(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GList(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GArray(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GPtrArray(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GByteArray(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GMainContext(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GMainContextPusher(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GMainLoop(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GSource(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GMappedFile(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GMarkupParseContext(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GNode(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GOptionContext(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GOptionGroup(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GPatternSpec(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GQueue(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GRand(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GRegex(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GMatchInfo(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GScanner(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GSequence(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GSList(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GString(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GStringChunk(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GStrvBuilder(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GThread(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GMutexLocker(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GRecMutexLocker(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GRWLockWriterLocker(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GRWLockReaderLocker(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GTimer(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GTimeZone(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GTree(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GVariant(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GVariantBuilder(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GVariantIter(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GVariantDict(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GVariantType(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GRefString(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GUri(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GPathBuf(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GTypeModule(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GClosure(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GEnumClass(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GFlagsClass(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GObject(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GInitiallyUnowned(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GParamSpec(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GTypeClass(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GDebugController(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GDebugControllerDBus(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GDebugControllerDBusClass(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GListModel(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GListStore(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GListStoreClass(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GMemoryMonitor(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GPowerProfileMonitor(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GUnixConnection(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GUnixCredentialsMessage(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GUnixFDList(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GUnixSocketAddress(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GAction(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GActionMap(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GAppInfo(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GAppLaunchContext(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GAppInfoMonitor(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GApplicationCommandLine(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GApplication(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GAsyncInitable(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GAsyncResult(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GBufferedInputStream(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GBufferedOutputStream(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GBytesIcon(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GCancellable(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GCharsetConverter(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GConverter(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GConverterInputStream(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GConverterOutputStream(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GCredentials(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GDatagramBased(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GDataInputStream(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GDataOutputStream(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GDBusActionGroup(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GDBusAuthObserver(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GDBusConnection(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GDBusInterface(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GDBusInterfaceSkeleton(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GDBusMenuModel(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GDBusMessage(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GDBusMethodInvocation(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GDBusNodeInfo(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GDBusObject(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GDBusObjectManagerClient(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GDBusObjectManager(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GDBusObjectManagerServer(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GDBusObjectProxy(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GDBusObjectSkeleton(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GDBusProxy(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GDBusServer(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GDrive(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GEmblemedIcon(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GEmblem(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GFileEnumerator(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GFile(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GFileAttributeInfoList(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GFileIcon(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GFileInfo(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GFileInputStream(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GFileIOStream(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GFileMonitor(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GFilenameCompleter(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GFileOutputStream(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GFilterInputStream(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GFilterOutputStream(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GIcon(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GInetAddress(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GInetAddressMask(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GInetSocketAddress(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GInitable(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GInputStream(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GIOModule(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GIOStream(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GLoadableIcon(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GMemoryInputStream(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GMemoryOutputStream(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GMenu(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GMenuItem(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GMenuModel(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GMenuAttributeIter(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GMenuLinkIter(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GMount(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GMountOperation(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GNativeVolumeMonitor(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GNetworkAddress(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GNetworkMonitor(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GNetworkService(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GNotification(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GOutputStream(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GPermission(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GPollableInputStream(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GPollableOutputStream(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GPropertyAction(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GProxyAddressEnumerator(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GProxyAddress(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GProxy(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GProxyResolver(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GRemoteActionGroup(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GResolver(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GResource(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GSeekable(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GSettingsBackend(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GSettingsSchema(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GSettingsSchemaKey(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GSettingsSchemaSource(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GSettings(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GSimpleActionGroup(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GSimpleAction(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GSimpleAsyncResult(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GSimplePermission(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GSimpleProxyResolver(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GSocketAddressEnumerator(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GSocketAddress(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GSocketClient(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GSocketConnectable(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GSocketConnection(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GSocketControlMessage(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GSocket(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GSocketListener(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GSocketService(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GSubprocess(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GSubprocessLauncher(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GTask(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GTcpConnection(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GTcpWrapperConnection(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GTestDBus(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GThemedIcon(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GThreadedSocketService(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GTlsBackend(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GTlsCertificate(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GTlsClientConnection(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GTlsConnection(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GTlsDatabase(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GTlsFileDatabase(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GTlsInteraction(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GTlsPassword(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GTlsServerConnection(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GVfs(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GVolume(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GVolumeMonitor(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GZlibCompressor(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_GZlibDecompressor(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_PopplerDocument(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_PopplerIndexIter(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_PopplerFontInfo(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_PopplerFontsIter(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_PopplerLayersIter(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_PopplerPSFile(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_PopplerPage(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_PopplerRectangle(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_PopplerPoint(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_PopplerQuadrilateral(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_PopplerColor(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_PopplerTextAttributes(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_PopplerLinkMapping(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_PopplerPageTransition(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_PopplerImageMapping(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_PopplerFormFieldMapping(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotMapping(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_PopplerLayer(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAction(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_PopplerDest(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_PopplerFormField(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_PopplerSignatureInfo(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_PopplerSigningData(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_PopplerCertificateInfo(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAttachment(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnot(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotCircle(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotFileAttachment(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotFreeText(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotLine(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotMarkup(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotMovie(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotScreen(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotSquare(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotStamp(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotText(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotTextMarkup(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotCalloutLine(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_PopplerFontDescription(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_PopplerPath(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_PopplerMovie(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_PopplerMedia(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_PopplerStructureElement(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_PopplerTextSpan(_GQueue**)
Unexecuted instantiation: util_fuzzer.cc:glib_queueautoptr_cleanup_PopplerStructureElementIter(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_queueautoptr_cleanup_GAsyncQueue(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_queueautoptr_cleanup_GBookmarkFile(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_queueautoptr_cleanup_GBytes(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_queueautoptr_cleanup_GChecksum(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_queueautoptr_cleanup_GDateTime(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_queueautoptr_cleanup_GDate(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_queueautoptr_cleanup_GDir(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_queueautoptr_cleanup_GError(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_queueautoptr_cleanup_GHashTable(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_queueautoptr_cleanup_GHmac(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_queueautoptr_cleanup_GIOChannel(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_queueautoptr_cleanup_GKeyFile(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_queueautoptr_cleanup_GList(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_queueautoptr_cleanup_GArray(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_queueautoptr_cleanup_GPtrArray(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_queueautoptr_cleanup_GByteArray(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_queueautoptr_cleanup_GMainContext(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_queueautoptr_cleanup_GMainContextPusher(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_queueautoptr_cleanup_GMainLoop(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_queueautoptr_cleanup_GSource(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_queueautoptr_cleanup_GMappedFile(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_queueautoptr_cleanup_GMarkupParseContext(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_queueautoptr_cleanup_GNode(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_queueautoptr_cleanup_GOptionContext(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_queueautoptr_cleanup_GOptionGroup(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_queueautoptr_cleanup_GPatternSpec(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_queueautoptr_cleanup_GQueue(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_queueautoptr_cleanup_GRand(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_queueautoptr_cleanup_GRegex(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_queueautoptr_cleanup_GMatchInfo(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_queueautoptr_cleanup_GScanner(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_queueautoptr_cleanup_GSequence(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_queueautoptr_cleanup_GSList(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_queueautoptr_cleanup_GString(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_queueautoptr_cleanup_GStringChunk(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_queueautoptr_cleanup_GStrvBuilder(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_queueautoptr_cleanup_GThread(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_queueautoptr_cleanup_GMutexLocker(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_queueautoptr_cleanup_GRecMutexLocker(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_queueautoptr_cleanup_GRWLockWriterLocker(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_queueautoptr_cleanup_GRWLockReaderLocker(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_queueautoptr_cleanup_GTimer(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_queueautoptr_cleanup_GTimeZone(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_queueautoptr_cleanup_GTree(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_queueautoptr_cleanup_GVariant(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_queueautoptr_cleanup_GVariantBuilder(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_queueautoptr_cleanup_GVariantIter(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_queueautoptr_cleanup_GVariantDict(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_queueautoptr_cleanup_GVariantType(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_queueautoptr_cleanup_GRefString(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_queueautoptr_cleanup_GUri(_GQueue**)
Unexecuted instantiation: hb-unicode.cc:glib_queueautoptr_cleanup_GPathBuf(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GAsyncQueue(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GBookmarkFile(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GBytes(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GChecksum(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GDateTime(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GDate(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GDir(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GError(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GHashTable(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GHmac(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GIOChannel(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GKeyFile(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GList(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GArray(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GPtrArray(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GByteArray(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GMainContext(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GMainContextPusher(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GMainLoop(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GSource(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GMappedFile(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GMarkupParseContext(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GNode(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GOptionContext(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GOptionGroup(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GPatternSpec(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GQueue(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GRand(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GRegex(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GMatchInfo(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GScanner(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GSequence(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GSList(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GString(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GStringChunk(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GStrvBuilder(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GThread(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GMutexLocker(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GRecMutexLocker(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GRWLockWriterLocker(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GRWLockReaderLocker(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GTimer(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GTimeZone(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GTree(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GVariant(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GVariantBuilder(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GVariantIter(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GVariantDict(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GVariantType(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GRefString(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GUri(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GPathBuf(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GTypeModule(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GClosure(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GEnumClass(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GFlagsClass(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GObject(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GInitiallyUnowned(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GParamSpec(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GTypeClass(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GDebugController(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GDebugControllerDBus(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GDebugControllerDBusClass(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GListModel(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GListStore(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GListStoreClass(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GMemoryMonitor(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GPowerProfileMonitor(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GUnixConnection(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GUnixCredentialsMessage(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GUnixFDList(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GUnixSocketAddress(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GAction(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GActionMap(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GAppInfo(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GAppLaunchContext(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GAppInfoMonitor(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GApplicationCommandLine(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GApplication(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GAsyncInitable(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GAsyncResult(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GBufferedInputStream(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GBufferedOutputStream(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GBytesIcon(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GCancellable(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GCharsetConverter(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GConverter(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GConverterInputStream(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GConverterOutputStream(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GCredentials(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GDatagramBased(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GDataInputStream(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GDataOutputStream(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GDBusActionGroup(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GDBusAuthObserver(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GDBusConnection(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GDBusInterface(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GDBusInterfaceSkeleton(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GDBusMenuModel(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GDBusMessage(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GDBusMethodInvocation(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GDBusNodeInfo(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GDBusObject(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GDBusObjectManagerClient(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GDBusObjectManager(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GDBusObjectManagerServer(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GDBusObjectProxy(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GDBusObjectSkeleton(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GDBusProxy(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GDBusServer(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GDrive(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GEmblemedIcon(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GEmblem(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GFileEnumerator(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GFile(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GFileAttributeInfoList(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GFileIcon(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GFileInfo(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GFileInputStream(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GFileIOStream(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GFileMonitor(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GFilenameCompleter(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GFileOutputStream(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GFilterInputStream(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GFilterOutputStream(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GIcon(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GInetAddress(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GInetAddressMask(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GInetSocketAddress(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GInitable(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GInputStream(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GIOModule(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GIOStream(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GLoadableIcon(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GMemoryInputStream(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GMemoryOutputStream(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GMenu(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GMenuItem(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GMenuModel(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GMenuAttributeIter(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GMenuLinkIter(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GMount(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GMountOperation(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GNativeVolumeMonitor(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GNetworkAddress(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GNetworkMonitor(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GNetworkService(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GNotification(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GOutputStream(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GPermission(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GPollableInputStream(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GPollableOutputStream(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GPropertyAction(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GProxyAddressEnumerator(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GProxyAddress(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GProxy(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GProxyResolver(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GRemoteActionGroup(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GResolver(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GResource(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GSeekable(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GSettingsBackend(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GSettingsSchema(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GSettingsSchemaKey(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GSettingsSchemaSource(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GSettings(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GSimpleActionGroup(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GSimpleAction(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GSimpleAsyncResult(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GSimplePermission(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GSimpleProxyResolver(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GSocketAddressEnumerator(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GSocketAddress(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GSocketClient(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GSocketConnectable(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GSocketConnection(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GSocketControlMessage(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GSocket(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GSocketListener(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GSocketService(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GSubprocess(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GSubprocessLauncher(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GTask(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GTcpConnection(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GTcpWrapperConnection(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GTestDBus(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GThemedIcon(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GThreadedSocketService(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GTlsBackend(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GTlsCertificate(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GTlsClientConnection(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GTlsConnection(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GTlsDatabase(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GTlsFileDatabase(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GTlsInteraction(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GTlsPassword(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GTlsServerConnection(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GVfs(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GVolume(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GVolumeMonitor(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GZlibCompressor(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_GZlibDecompressor(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_PopplerDocument(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_PopplerIndexIter(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_PopplerFontInfo(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_PopplerFontsIter(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_PopplerLayersIter(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_PopplerPSFile(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_PopplerPage(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_PopplerRectangle(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_PopplerPoint(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_PopplerQuadrilateral(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_PopplerColor(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_PopplerTextAttributes(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_PopplerLinkMapping(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_PopplerPageTransition(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_PopplerImageMapping(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_PopplerFormFieldMapping(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotMapping(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_PopplerLayer(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAction(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_PopplerDest(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_PopplerFormField(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_PopplerSignatureInfo(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_PopplerSigningData(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_PopplerCertificateInfo(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAttachment(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnot(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotCircle(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotFileAttachment(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotFreeText(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotLine(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotMarkup(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotMovie(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotScreen(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotSquare(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotStamp(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotText(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotTextMarkup(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotCalloutLine(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_PopplerFontDescription(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_PopplerPath(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_PopplerMovie(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_PopplerMedia(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_PopplerStructureElement(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_PopplerTextSpan(_GQueue**)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_queueautoptr_cleanup_PopplerStructureElementIter(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GAsyncQueue(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GBookmarkFile(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GBytes(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GChecksum(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GDateTime(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GDate(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GDir(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GError(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GHashTable(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GHmac(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GIOChannel(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GKeyFile(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GList(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GArray(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GPtrArray(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GByteArray(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GMainContext(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GMainContextPusher(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GMainLoop(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GSource(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GMappedFile(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GMarkupParseContext(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GNode(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GOptionContext(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GOptionGroup(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GPatternSpec(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GQueue(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GRand(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GRegex(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GMatchInfo(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GScanner(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GSequence(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GSList(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GString(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GStringChunk(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GStrvBuilder(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GThread(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GMutexLocker(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GRecMutexLocker(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GRWLockWriterLocker(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GRWLockReaderLocker(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GTimer(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GTimeZone(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GTree(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GVariant(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GVariantBuilder(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GVariantIter(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GVariantDict(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GVariantType(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GRefString(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GUri(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GPathBuf(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GTypeModule(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GClosure(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GEnumClass(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GFlagsClass(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GObject(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GInitiallyUnowned(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GParamSpec(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GTypeClass(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GDebugController(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GDebugControllerDBus(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GDebugControllerDBusClass(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GListModel(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GListStore(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GListStoreClass(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GMemoryMonitor(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GPowerProfileMonitor(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GUnixConnection(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GUnixCredentialsMessage(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GUnixFDList(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GUnixSocketAddress(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GAction(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GActionMap(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GAppInfo(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GAppLaunchContext(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GAppInfoMonitor(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GApplicationCommandLine(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GApplication(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GAsyncInitable(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GAsyncResult(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GBufferedInputStream(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GBufferedOutputStream(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GBytesIcon(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GCancellable(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GCharsetConverter(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GConverter(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GConverterInputStream(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GConverterOutputStream(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GCredentials(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GDatagramBased(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GDataInputStream(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GDataOutputStream(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GDBusActionGroup(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GDBusAuthObserver(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GDBusConnection(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GDBusInterface(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GDBusInterfaceSkeleton(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GDBusMenuModel(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GDBusMessage(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GDBusMethodInvocation(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GDBusNodeInfo(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GDBusObject(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GDBusObjectManagerClient(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GDBusObjectManager(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GDBusObjectManagerServer(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GDBusObjectProxy(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GDBusObjectSkeleton(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GDBusProxy(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GDBusServer(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GDrive(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GEmblemedIcon(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GEmblem(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GFileEnumerator(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GFile(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GFileAttributeInfoList(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GFileIcon(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GFileInfo(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GFileInputStream(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GFileIOStream(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GFileMonitor(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GFilenameCompleter(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GFileOutputStream(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GFilterInputStream(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GFilterOutputStream(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GIcon(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GInetAddress(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GInetAddressMask(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GInetSocketAddress(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GInitable(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GInputStream(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GIOModule(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GIOStream(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GLoadableIcon(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GMemoryInputStream(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GMemoryOutputStream(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GMenu(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GMenuItem(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GMenuModel(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GMenuAttributeIter(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GMenuLinkIter(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GMount(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GMountOperation(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GNativeVolumeMonitor(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GNetworkAddress(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GNetworkMonitor(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GNetworkService(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GNotification(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GOutputStream(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GPermission(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GPollableInputStream(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GPollableOutputStream(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GPropertyAction(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GProxyAddressEnumerator(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GProxyAddress(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GProxy(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GProxyResolver(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GRemoteActionGroup(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GResolver(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GResource(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GSeekable(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GSettingsBackend(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GSettingsSchema(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GSettingsSchemaKey(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GSettingsSchemaSource(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GSettings(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GSimpleActionGroup(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GSimpleAction(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GSimpleAsyncResult(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GSimplePermission(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GSimpleProxyResolver(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GSocketAddressEnumerator(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GSocketAddress(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GSocketClient(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GSocketConnectable(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GSocketConnection(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GSocketControlMessage(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GSocket(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GSocketListener(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GSocketService(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GSubprocess(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GSubprocessLauncher(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GTask(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GTcpConnection(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GTcpWrapperConnection(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GTestDBus(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GThemedIcon(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GThreadedSocketService(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GTlsBackend(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GTlsCertificate(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GTlsClientConnection(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GTlsConnection(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GTlsDatabase(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GTlsFileDatabase(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GTlsInteraction(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GTlsPassword(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GTlsServerConnection(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GVfs(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GVolume(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GVolumeMonitor(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GZlibCompressor(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_GZlibDecompressor(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_PopplerDocument(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_PopplerIndexIter(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_PopplerFontInfo(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_PopplerFontsIter(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_PopplerLayersIter(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_PopplerPSFile(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_PopplerPage(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_PopplerRectangle(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_PopplerPoint(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_PopplerQuadrilateral(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_PopplerColor(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_PopplerTextAttributes(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_PopplerLinkMapping(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_PopplerPageTransition(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_PopplerImageMapping(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_PopplerFormFieldMapping(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotMapping(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_PopplerLayer(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAction(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_PopplerDest(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_PopplerFormField(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_PopplerSignatureInfo(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_PopplerSigningData(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_PopplerCertificateInfo(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAttachment(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnot(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotCircle(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotFileAttachment(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotFreeText(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotLine(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotMarkup(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotMovie(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotScreen(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotSquare(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotStamp(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotText(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotTextMarkup(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotCalloutLine(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_PopplerFontDescription(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_PopplerPath(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_PopplerMovie(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_PopplerMedia(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_PopplerStructureElement(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_PopplerTextSpan(_GQueue**)
Unexecuted instantiation: label_fuzzer.cc:glib_queueautoptr_cleanup_PopplerStructureElementIter(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GAsyncQueue(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GBookmarkFile(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GBytes(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GChecksum(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GDateTime(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GDate(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GDir(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GError(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GHashTable(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GHmac(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GIOChannel(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GKeyFile(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GList(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GArray(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GPtrArray(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GByteArray(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GMainContext(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GMainContextPusher(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GMainLoop(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GSource(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GMappedFile(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GMarkupParseContext(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GNode(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GOptionContext(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GOptionGroup(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GPatternSpec(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GQueue(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GRand(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GRegex(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GMatchInfo(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GScanner(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GSequence(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GSList(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GString(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GStringChunk(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GStrvBuilder(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GThread(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GMutexLocker(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GRecMutexLocker(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GRWLockWriterLocker(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GRWLockReaderLocker(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GTimer(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GTimeZone(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GTree(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GVariant(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GVariantBuilder(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GVariantIter(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GVariantDict(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GVariantType(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GRefString(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GUri(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GPathBuf(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GTypeModule(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GClosure(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GEnumClass(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GFlagsClass(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GObject(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GInitiallyUnowned(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GParamSpec(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GTypeClass(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GDebugController(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GDebugControllerDBus(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GDebugControllerDBusClass(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GListModel(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GListStore(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GListStoreClass(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GMemoryMonitor(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GPowerProfileMonitor(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GUnixConnection(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GUnixCredentialsMessage(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GUnixFDList(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GUnixSocketAddress(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GAction(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GActionMap(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GAppInfo(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GAppLaunchContext(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GAppInfoMonitor(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GApplicationCommandLine(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GApplication(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GAsyncInitable(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GAsyncResult(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GBufferedInputStream(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GBufferedOutputStream(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GBytesIcon(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GCancellable(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GCharsetConverter(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GConverter(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GConverterInputStream(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GConverterOutputStream(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GCredentials(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GDatagramBased(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GDataInputStream(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GDataOutputStream(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GDBusActionGroup(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GDBusAuthObserver(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GDBusConnection(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GDBusInterface(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GDBusInterfaceSkeleton(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GDBusMenuModel(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GDBusMessage(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GDBusMethodInvocation(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GDBusNodeInfo(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GDBusObject(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GDBusObjectManagerClient(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GDBusObjectManager(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GDBusObjectManagerServer(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GDBusObjectProxy(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GDBusObjectSkeleton(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GDBusProxy(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GDBusServer(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GDrive(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GEmblemedIcon(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GEmblem(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GFileEnumerator(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GFile(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GFileAttributeInfoList(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GFileIcon(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GFileInfo(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GFileInputStream(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GFileIOStream(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GFileMonitor(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GFilenameCompleter(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GFileOutputStream(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GFilterInputStream(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GFilterOutputStream(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GIcon(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GInetAddress(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GInetAddressMask(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GInetSocketAddress(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GInitable(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GInputStream(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GIOModule(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GIOStream(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GLoadableIcon(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GMemoryInputStream(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GMemoryOutputStream(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GMenu(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GMenuItem(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GMenuModel(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GMenuAttributeIter(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GMenuLinkIter(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GMount(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GMountOperation(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GNativeVolumeMonitor(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GNetworkAddress(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GNetworkMonitor(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GNetworkService(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GNotification(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GOutputStream(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GPermission(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GPollableInputStream(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GPollableOutputStream(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GPropertyAction(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GProxyAddressEnumerator(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GProxyAddress(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GProxy(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GProxyResolver(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GRemoteActionGroup(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GResolver(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GResource(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GSeekable(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GSettingsBackend(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GSettingsSchema(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GSettingsSchemaKey(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GSettingsSchemaSource(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GSettings(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GSimpleActionGroup(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GSimpleAction(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GSimpleAsyncResult(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GSimplePermission(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GSimpleProxyResolver(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GSocketAddressEnumerator(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GSocketAddress(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GSocketClient(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GSocketConnectable(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GSocketConnection(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GSocketControlMessage(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GSocket(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GSocketListener(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GSocketService(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GSubprocess(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GSubprocessLauncher(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GTask(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GTcpConnection(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GTcpWrapperConnection(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GTestDBus(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GThemedIcon(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GThreadedSocketService(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GTlsBackend(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GTlsCertificate(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GTlsClientConnection(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GTlsConnection(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GTlsDatabase(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GTlsFileDatabase(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GTlsInteraction(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GTlsPassword(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GTlsServerConnection(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GVfs(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GVolume(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GVolumeMonitor(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GZlibCompressor(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_GZlibDecompressor(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_PopplerDocument(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_PopplerIndexIter(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_PopplerFontInfo(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_PopplerFontsIter(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_PopplerLayersIter(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_PopplerPSFile(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_PopplerPage(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_PopplerRectangle(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_PopplerPoint(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_PopplerQuadrilateral(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_PopplerColor(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_PopplerTextAttributes(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_PopplerLinkMapping(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_PopplerPageTransition(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_PopplerImageMapping(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_PopplerFormFieldMapping(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotMapping(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_PopplerLayer(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAction(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_PopplerDest(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_PopplerFormField(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_PopplerSignatureInfo(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_PopplerSigningData(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_PopplerCertificateInfo(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAttachment(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnot(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotCircle(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotFileAttachment(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotFreeText(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotLine(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotMarkup(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotMovie(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotScreen(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotSquare(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotStamp(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotText(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotTextMarkup(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotCalloutLine(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_PopplerFontDescription(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_PopplerPath(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_PopplerMovie(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_PopplerMedia(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_PopplerStructureElement(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_PopplerTextSpan(_GQueue**)
Unexecuted instantiation: annot_fuzzer.cc:glib_queueautoptr_cleanup_PopplerStructureElementIter(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GAsyncQueue(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GBookmarkFile(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GBytes(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GChecksum(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GDateTime(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GDate(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GDir(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GError(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GHashTable(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GHmac(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GIOChannel(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GKeyFile(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GList(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GArray(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GPtrArray(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GByteArray(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GMainContext(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GMainContextPusher(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GMainLoop(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GSource(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GMappedFile(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GMarkupParseContext(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GNode(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GOptionContext(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GOptionGroup(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GPatternSpec(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GQueue(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GRand(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GRegex(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GMatchInfo(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GScanner(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GSequence(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GSList(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GString(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GStringChunk(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GStrvBuilder(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GThread(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GMutexLocker(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GRecMutexLocker(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GRWLockWriterLocker(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GRWLockReaderLocker(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GTimer(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GTimeZone(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GTree(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GVariant(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GVariantBuilder(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GVariantIter(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GVariantDict(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GVariantType(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GRefString(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GUri(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GPathBuf(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GTypeModule(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GClosure(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GEnumClass(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GFlagsClass(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GObject(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GInitiallyUnowned(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GParamSpec(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GTypeClass(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GDebugController(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GDebugControllerDBus(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GDebugControllerDBusClass(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GListModel(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GListStore(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GListStoreClass(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GMemoryMonitor(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GPowerProfileMonitor(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GUnixConnection(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GUnixCredentialsMessage(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GUnixFDList(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GUnixSocketAddress(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GAction(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GActionMap(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GAppInfo(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GAppLaunchContext(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GAppInfoMonitor(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GApplicationCommandLine(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GApplication(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GAsyncInitable(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GAsyncResult(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GBufferedInputStream(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GBufferedOutputStream(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GBytesIcon(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GCancellable(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GCharsetConverter(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GConverter(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GConverterInputStream(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GConverterOutputStream(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GCredentials(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GDatagramBased(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GDataInputStream(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GDataOutputStream(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GDBusActionGroup(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GDBusAuthObserver(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GDBusConnection(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GDBusInterface(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GDBusInterfaceSkeleton(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GDBusMenuModel(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GDBusMessage(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GDBusMethodInvocation(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GDBusNodeInfo(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GDBusObject(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GDBusObjectManagerClient(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GDBusObjectManager(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GDBusObjectManagerServer(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GDBusObjectProxy(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GDBusObjectSkeleton(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GDBusProxy(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GDBusServer(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GDrive(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GEmblemedIcon(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GEmblem(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GFileEnumerator(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GFile(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GFileAttributeInfoList(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GFileIcon(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GFileInfo(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GFileInputStream(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GFileIOStream(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GFileMonitor(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GFilenameCompleter(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GFileOutputStream(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GFilterInputStream(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GFilterOutputStream(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GIcon(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GInetAddress(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GInetAddressMask(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GInetSocketAddress(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GInitable(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GInputStream(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GIOModule(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GIOStream(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GLoadableIcon(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GMemoryInputStream(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GMemoryOutputStream(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GMenu(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GMenuItem(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GMenuModel(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GMenuAttributeIter(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GMenuLinkIter(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GMount(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GMountOperation(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GNativeVolumeMonitor(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GNetworkAddress(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GNetworkMonitor(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GNetworkService(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GNotification(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GOutputStream(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GPermission(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GPollableInputStream(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GPollableOutputStream(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GPropertyAction(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GProxyAddressEnumerator(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GProxyAddress(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GProxy(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GProxyResolver(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GRemoteActionGroup(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GResolver(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GResource(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GSeekable(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GSettingsBackend(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GSettingsSchema(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GSettingsSchemaKey(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GSettingsSchemaSource(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GSettings(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GSimpleActionGroup(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GSimpleAction(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GSimpleAsyncResult(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GSimplePermission(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GSimpleProxyResolver(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GSocketAddressEnumerator(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GSocketAddress(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GSocketClient(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GSocketConnectable(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GSocketConnection(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GSocketControlMessage(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GSocket(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GSocketListener(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GSocketService(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GSubprocess(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GSubprocessLauncher(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GTask(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GTcpConnection(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GTcpWrapperConnection(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GTestDBus(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GThemedIcon(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GThreadedSocketService(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GTlsBackend(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GTlsCertificate(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GTlsClientConnection(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GTlsConnection(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GTlsDatabase(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GTlsFileDatabase(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GTlsInteraction(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GTlsPassword(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GTlsServerConnection(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GVfs(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GVolume(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GVolumeMonitor(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GZlibCompressor(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_GZlibDecompressor(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_PopplerDocument(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_PopplerIndexIter(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_PopplerFontInfo(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_PopplerFontsIter(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_PopplerLayersIter(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_PopplerPSFile(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_PopplerPage(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_PopplerRectangle(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_PopplerPoint(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_PopplerQuadrilateral(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_PopplerColor(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_PopplerTextAttributes(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_PopplerLinkMapping(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_PopplerPageTransition(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_PopplerImageMapping(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_PopplerFormFieldMapping(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotMapping(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_PopplerLayer(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAction(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_PopplerDest(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_PopplerFormField(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_PopplerSignatureInfo(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_PopplerSigningData(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_PopplerCertificateInfo(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAttachment(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnot(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotCircle(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotFileAttachment(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotFreeText(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotLine(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotMarkup(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotMovie(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotScreen(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotSquare(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotStamp(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotText(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotTextMarkup(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotCalloutLine(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_PopplerFontDescription(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_PopplerPath(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_PopplerMovie(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_PopplerMedia(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_PopplerStructureElement(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_PopplerTextSpan(_GQueue**)
Unexecuted instantiation: find_text_fuzzer.cc:glib_queueautoptr_cleanup_PopplerStructureElementIter(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GAsyncQueue(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GBookmarkFile(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GBytes(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GChecksum(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GDateTime(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GDate(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GDir(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GError(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GHashTable(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GHmac(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GIOChannel(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GKeyFile(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GList(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GArray(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GPtrArray(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GByteArray(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GMainContext(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GMainContextPusher(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GMainLoop(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GSource(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GMappedFile(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GMarkupParseContext(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GNode(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GOptionContext(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GOptionGroup(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GPatternSpec(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GQueue(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GRand(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GRegex(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GMatchInfo(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GScanner(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GSequence(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GSList(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GString(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GStringChunk(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GStrvBuilder(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GThread(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GMutexLocker(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GRecMutexLocker(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GRWLockWriterLocker(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GRWLockReaderLocker(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GTimer(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GTimeZone(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GTree(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GVariant(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GVariantBuilder(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GVariantIter(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GVariantDict(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GVariantType(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GRefString(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GUri(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GPathBuf(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GTypeModule(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GClosure(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GEnumClass(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GFlagsClass(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GObject(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GInitiallyUnowned(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GParamSpec(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GTypeClass(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GDebugController(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GDebugControllerDBus(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GDebugControllerDBusClass(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GListModel(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GListStore(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GListStoreClass(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GMemoryMonitor(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GPowerProfileMonitor(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GUnixConnection(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GUnixCredentialsMessage(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GUnixFDList(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GUnixSocketAddress(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GAction(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GActionMap(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GAppInfo(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GAppLaunchContext(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GAppInfoMonitor(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GApplicationCommandLine(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GApplication(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GAsyncInitable(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GAsyncResult(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GBufferedInputStream(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GBufferedOutputStream(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GBytesIcon(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GCancellable(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GCharsetConverter(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GConverter(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GConverterInputStream(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GConverterOutputStream(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GCredentials(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GDatagramBased(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GDataInputStream(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GDataOutputStream(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GDBusActionGroup(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GDBusAuthObserver(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GDBusConnection(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GDBusInterface(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GDBusInterfaceSkeleton(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GDBusMenuModel(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GDBusMessage(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GDBusMethodInvocation(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GDBusNodeInfo(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GDBusObject(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GDBusObjectManagerClient(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GDBusObjectManager(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GDBusObjectManagerServer(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GDBusObjectProxy(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GDBusObjectSkeleton(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GDBusProxy(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GDBusServer(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GDrive(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GEmblemedIcon(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GEmblem(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GFileEnumerator(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GFile(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GFileAttributeInfoList(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GFileIcon(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GFileInfo(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GFileInputStream(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GFileIOStream(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GFileMonitor(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GFilenameCompleter(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GFileOutputStream(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GFilterInputStream(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GFilterOutputStream(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GIcon(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GInetAddress(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GInetAddressMask(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GInetSocketAddress(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GInitable(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GInputStream(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GIOModule(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GIOStream(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GLoadableIcon(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GMemoryInputStream(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GMemoryOutputStream(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GMenu(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GMenuItem(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GMenuModel(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GMenuAttributeIter(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GMenuLinkIter(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GMount(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GMountOperation(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GNativeVolumeMonitor(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GNetworkAddress(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GNetworkMonitor(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GNetworkService(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GNotification(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GOutputStream(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GPermission(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GPollableInputStream(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GPollableOutputStream(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GPropertyAction(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GProxyAddressEnumerator(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GProxyAddress(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GProxy(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GProxyResolver(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GRemoteActionGroup(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GResolver(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GResource(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GSeekable(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GSettingsBackend(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GSettingsSchema(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GSettingsSchemaKey(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GSettingsSchemaSource(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GSettings(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GSimpleActionGroup(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GSimpleAction(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GSimpleAsyncResult(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GSimplePermission(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GSimpleProxyResolver(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GSocketAddressEnumerator(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GSocketAddress(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GSocketClient(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GSocketConnectable(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GSocketConnection(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GSocketControlMessage(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GSocket(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GSocketListener(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GSocketService(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GSubprocess(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GSubprocessLauncher(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GTask(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GTcpConnection(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GTcpWrapperConnection(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GTestDBus(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GThemedIcon(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GThreadedSocketService(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GTlsBackend(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GTlsCertificate(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GTlsClientConnection(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GTlsConnection(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GTlsDatabase(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GTlsFileDatabase(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GTlsInteraction(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GTlsPassword(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GTlsServerConnection(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GVfs(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GVolume(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GVolumeMonitor(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GZlibCompressor(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_GZlibDecompressor(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_PopplerDocument(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_PopplerIndexIter(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_PopplerFontInfo(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_PopplerFontsIter(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_PopplerLayersIter(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_PopplerPSFile(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_PopplerPage(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_PopplerRectangle(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_PopplerPoint(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_PopplerQuadrilateral(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_PopplerColor(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_PopplerTextAttributes(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_PopplerLinkMapping(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_PopplerPageTransition(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_PopplerImageMapping(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_PopplerFormFieldMapping(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotMapping(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_PopplerLayer(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAction(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_PopplerDest(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_PopplerFormField(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_PopplerSignatureInfo(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_PopplerSigningData(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_PopplerCertificateInfo(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAttachment(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnot(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotCircle(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotFileAttachment(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotFreeText(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotLine(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotMarkup(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotMovie(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotScreen(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotSquare(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotStamp(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotText(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotTextMarkup(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_PopplerAnnotCalloutLine(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_PopplerFontDescription(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_PopplerPath(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_PopplerMovie(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_PopplerMedia(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_PopplerStructureElement(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_PopplerTextSpan(_GQueue**)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_queueautoptr_cleanup_PopplerStructureElementIter(_GQueue**)
1365
  G_GNUC_END_IGNORE_DEPRECATIONS
1366
#define _GLIB_DEFINE_AUTOPTR_CHAINUP(ModuleObjName, ParentName) \
1367
  _GLIB_DEFINE_AUTOPTR_CLEANUP_FUNCS(ModuleObjName, ParentName, _GLIB_AUTOPTR_CLEAR_FUNC_NAME(ParentName))
1368
1369
1370
/* these macros are API */
1371
#define G_DEFINE_AUTOPTR_CLEANUP_FUNC(TypeName, func) \
1372
  _GLIB_DEFINE_AUTOPTR_CLEANUP_FUNCS(TypeName, TypeName, func)
1373
#define G_DEFINE_AUTO_CLEANUP_CLEAR_FUNC(TypeName, func) \
1374
  G_GNUC_BEGIN_IGNORE_DEPRECATIONS                                                                              \
1375
0
  static G_GNUC_UNUSED inline void _GLIB_AUTO_FUNC_NAME(TypeName) (TypeName *_ptr) { (func) (_ptr); }                         \
Unexecuted instantiation: util_fuzzer.cc:glib_auto_cleanup_GQueue(_GQueue*)
Unexecuted instantiation: util_fuzzer.cc:glib_auto_cleanup_GMutex(_GMutex*)
Unexecuted instantiation: util_fuzzer.cc:glib_auto_cleanup_GCond(_GCond*)
Unexecuted instantiation: util_fuzzer.cc:glib_auto_cleanup_GVariantBuilder(_GVariantBuilder*)
Unexecuted instantiation: util_fuzzer.cc:glib_auto_cleanup_GVariantDict(_GVariantDict*)
Unexecuted instantiation: util_fuzzer.cc:glib_auto_cleanup_GPathBuf(_GPathBuf*)
Unexecuted instantiation: util_fuzzer.cc:glib_auto_cleanup_GValue(_GValue*)
Unexecuted instantiation: hb-unicode.cc:glib_auto_cleanup_GQueue(_GQueue*)
Unexecuted instantiation: hb-unicode.cc:glib_auto_cleanup_GMutex(_GMutex*)
Unexecuted instantiation: hb-unicode.cc:glib_auto_cleanup_GCond(_GCond*)
Unexecuted instantiation: hb-unicode.cc:glib_auto_cleanup_GVariantBuilder(_GVariantBuilder*)
Unexecuted instantiation: hb-unicode.cc:glib_auto_cleanup_GVariantDict(_GVariantDict*)
Unexecuted instantiation: hb-unicode.cc:glib_auto_cleanup_GPathBuf(_GPathBuf*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_auto_cleanup_GQueue(_GQueue*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_auto_cleanup_GMutex(_GMutex*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_auto_cleanup_GCond(_GCond*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_auto_cleanup_GVariantBuilder(_GVariantBuilder*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_auto_cleanup_GVariantDict(_GVariantDict*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_auto_cleanup_GPathBuf(_GPathBuf*)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_auto_cleanup_GValue(_GValue*)
Unexecuted instantiation: label_fuzzer.cc:glib_auto_cleanup_GQueue(_GQueue*)
Unexecuted instantiation: label_fuzzer.cc:glib_auto_cleanup_GMutex(_GMutex*)
Unexecuted instantiation: label_fuzzer.cc:glib_auto_cleanup_GCond(_GCond*)
Unexecuted instantiation: label_fuzzer.cc:glib_auto_cleanup_GVariantBuilder(_GVariantBuilder*)
Unexecuted instantiation: label_fuzzer.cc:glib_auto_cleanup_GVariantDict(_GVariantDict*)
Unexecuted instantiation: label_fuzzer.cc:glib_auto_cleanup_GPathBuf(_GPathBuf*)
Unexecuted instantiation: label_fuzzer.cc:glib_auto_cleanup_GValue(_GValue*)
Unexecuted instantiation: annot_fuzzer.cc:glib_auto_cleanup_GQueue(_GQueue*)
Unexecuted instantiation: annot_fuzzer.cc:glib_auto_cleanup_GMutex(_GMutex*)
Unexecuted instantiation: annot_fuzzer.cc:glib_auto_cleanup_GCond(_GCond*)
Unexecuted instantiation: annot_fuzzer.cc:glib_auto_cleanup_GVariantBuilder(_GVariantBuilder*)
Unexecuted instantiation: annot_fuzzer.cc:glib_auto_cleanup_GVariantDict(_GVariantDict*)
Unexecuted instantiation: annot_fuzzer.cc:glib_auto_cleanup_GPathBuf(_GPathBuf*)
Unexecuted instantiation: annot_fuzzer.cc:glib_auto_cleanup_GValue(_GValue*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_auto_cleanup_GQueue(_GQueue*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_auto_cleanup_GMutex(_GMutex*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_auto_cleanup_GCond(_GCond*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_auto_cleanup_GVariantBuilder(_GVariantBuilder*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_auto_cleanup_GVariantDict(_GVariantDict*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_auto_cleanup_GPathBuf(_GPathBuf*)
Unexecuted instantiation: find_text_fuzzer.cc:glib_auto_cleanup_GValue(_GValue*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_auto_cleanup_GQueue(_GQueue*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_auto_cleanup_GMutex(_GMutex*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_auto_cleanup_GCond(_GCond*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_auto_cleanup_GVariantBuilder(_GVariantBuilder*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_auto_cleanup_GVariantDict(_GVariantDict*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_auto_cleanup_GPathBuf(_GPathBuf*)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_auto_cleanup_GValue(_GValue*)
1376
  G_GNUC_END_IGNORE_DEPRECATIONS
1377
#define G_DEFINE_AUTO_CLEANUP_FREE_FUNC(TypeName, func, none) \
1378
  G_GNUC_BEGIN_IGNORE_DEPRECATIONS                                                                              \
1379
0
  static G_GNUC_UNUSED inline void _GLIB_AUTO_FUNC_NAME(TypeName) (TypeName *_ptr) { if (*_ptr != none) (func) (*_ptr); }     \
Unexecuted instantiation: util_fuzzer.cc:glib_auto_cleanup_GStrv(char***)
Unexecuted instantiation: hb-unicode.cc:glib_auto_cleanup_GStrv(char***)
Unexecuted instantiation: doc_attr_fuzzer.cc:glib_auto_cleanup_GStrv(char***)
Unexecuted instantiation: label_fuzzer.cc:glib_auto_cleanup_GStrv(char***)
Unexecuted instantiation: annot_fuzzer.cc:glib_auto_cleanup_GStrv(char***)
Unexecuted instantiation: find_text_fuzzer.cc:glib_auto_cleanup_GStrv(char***)
Unexecuted instantiation: pdf_draw_fuzzer.cc:glib_auto_cleanup_GStrv(char***)
1380
  G_GNUC_END_IGNORE_DEPRECATIONS
1381
#define g_autoptr(TypeName) _GLIB_CLEANUP(_GLIB_AUTOPTR_FUNC_NAME(TypeName)) _GLIB_AUTOPTR_TYPENAME(TypeName)
1382
#define g_autolist(TypeName) _GLIB_CLEANUP(_GLIB_AUTOPTR_LIST_FUNC_NAME(TypeName)) _GLIB_AUTOPTR_LIST_TYPENAME(TypeName)
1383
#define g_autoslist(TypeName) _GLIB_CLEANUP(_GLIB_AUTOPTR_SLIST_FUNC_NAME(TypeName)) _GLIB_AUTOPTR_SLIST_TYPENAME(TypeName)
1384
#define g_autoqueue(TypeName) _GLIB_CLEANUP(_GLIB_AUTOPTR_QUEUE_FUNC_NAME(TypeName)) _GLIB_AUTOPTR_QUEUE_TYPENAME(TypeName)
1385
#define g_auto(TypeName) _GLIB_CLEANUP(_GLIB_AUTO_FUNC_NAME(TypeName)) TypeName
1386
#define g_autofree _GLIB_CLEANUP(g_autoptr_cleanup_generic_gfree)
1387
1388
#else /* not GNU C */
1389
/* this (dummy) macro is private */
1390
#define _GLIB_DEFINE_AUTOPTR_CHAINUP(ModuleObjName, ParentName)
1391
1392
/* these (dummy) macros are API */
1393
#define G_DEFINE_AUTOPTR_CLEANUP_FUNC(TypeName, func)
1394
#define G_DEFINE_AUTO_CLEANUP_CLEAR_FUNC(TypeName, func)
1395
#define G_DEFINE_AUTO_CLEANUP_FREE_FUNC(TypeName, func, none)
1396
1397
/* no declaration of g_auto() or g_autoptr() here */
1398
#endif /* __GNUC__ */
1399
1400
#else
1401
1402
#define _GLIB_DEFINE_AUTOPTR_CHAINUP(ModuleObjName, ParentName)
1403
1404
#define G_DEFINE_AUTOPTR_CLEANUP_FUNC(TypeName, func)
1405
#define G_DEFINE_AUTO_CLEANUP_CLEAR_FUNC(TypeName, func)
1406
#define G_DEFINE_AUTO_CLEANUP_FREE_FUNC(TypeName, func, none)
1407
1408
#endif /* __GI_SCANNER__ */
1409
1410
/**
1411
 * G_SIZEOF_MEMBER:
1412
 * @struct_type: a structure type, e.g. #GOutputVector
1413
 * @member: a field in the structure, e.g. `size`
1414
 *
1415
 * Returns the size of @member in the struct definition without having a
1416
 * declared instance of @struct_type.
1417
 *
1418
 * Returns: the size of @member in bytes.
1419
 *
1420
 * Since: 2.64
1421
 */
1422
#define G_SIZEOF_MEMBER(struct_type, member) \
1423
    GLIB_AVAILABLE_MACRO_IN_2_64 \
1424
    sizeof (((struct_type *) 0)->member)
1425
1426
#endif /* __G_MACROS_H__ */