/src/vlc/include/vlc_variables.h
Line | Count | Source (jump to first uncovered line) |
1 | | /***************************************************************************** |
2 | | * vlc_variables.h: variables handling |
3 | | ***************************************************************************** |
4 | | * Copyright (C) 2002-2004 VLC authors and VideoLAN |
5 | | * |
6 | | * Authors: Samuel Hocevar <sam@zoy.org> |
7 | | * Gildas Bazin <gbazin@netcourrier.com> |
8 | | * |
9 | | * This program is free software; you can redistribute it and/or modify it |
10 | | * under the terms of the GNU Lesser General Public License as published by |
11 | | * the Free Software Foundation; either version 2.1 of the License, or |
12 | | * (at your option) any later version. |
13 | | * |
14 | | * This program is distributed in the hope that it will be useful, |
15 | | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
17 | | * GNU Lesser General Public License for more details. |
18 | | * |
19 | | * You should have received a copy of the GNU Lesser General Public License |
20 | | * along with this program; if not, write to the Free Software Foundation, |
21 | | * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. |
22 | | *****************************************************************************/ |
23 | | |
24 | | #ifndef VLC_VARIABLES_H |
25 | | #define VLC_VARIABLES_H 1 |
26 | | |
27 | | /** |
28 | | * \defgroup variables Variables |
29 | | * \ingroup vlc_object |
30 | | * |
31 | | * VLC object variables and callbacks |
32 | | * |
33 | | * @{ |
34 | | * \file |
35 | | * VLC object variables and callbacks interface |
36 | | */ |
37 | | |
38 | 6.82M | #define VLC_VAR_TYPE 0x00ff |
39 | 10.6M | #define VLC_VAR_CLASS 0x00f0 |
40 | | #define VLC_VAR_FLAGS 0xff00 |
41 | | |
42 | | /** |
43 | | * \defgroup var_type Variable types |
44 | | * These are the different types a vlc variable can have. |
45 | | * @{ |
46 | | */ |
47 | 156 | #define VLC_VAR_VOID 0x0010 |
48 | 935k | #define VLC_VAR_BOOL 0x0020 |
49 | 700k | #define VLC_VAR_INTEGER 0x0030 |
50 | 15.3M | #define VLC_VAR_STRING 0x0040 |
51 | 466k | #define VLC_VAR_FLOAT 0x0050 |
52 | 0 | #define VLC_VAR_ADDRESS 0x0070 |
53 | 0 | #define VLC_VAR_COORDS 0x00A0 |
54 | | /**@}*/ |
55 | | |
56 | | /** \defgroup var_flags Additive flags |
57 | | * These flags are added to the type field of the variable. Most as a result of |
58 | | * a var_Change() call, but some may be added at creation time |
59 | | * @{ |
60 | | */ |
61 | 0 | #define VLC_VAR_HASCHOICE 0x0100 |
62 | | |
63 | 0 | #define VLC_VAR_ISCOMMAND 0x2000 |
64 | | |
65 | | /** Creation flag */ |
66 | | /* If the variable is not found on the current module |
67 | | search all parents and finally module config until found */ |
68 | 20.9M | #define VLC_VAR_DOINHERIT 0x8000 |
69 | | /**@}*/ |
70 | | |
71 | | /** |
72 | | * \defgroup var_action Variable actions |
73 | | * These are the different actions that can be used with var_Change(). |
74 | | * The parameters given are the meaning of the two last parameters of |
75 | | * var_Change() when this action is being used. |
76 | | * @{ |
77 | | */ |
78 | | |
79 | 0 | #define VLC_VAR_SETSTEP 0x0012 |
80 | | |
81 | | /** |
82 | | * Set the value of this variable without triggering any callbacks |
83 | | * \param p_val The new value |
84 | | * \param p_val2 Unused |
85 | | */ |
86 | 0 | #define VLC_VAR_SETVALUE 0x0013 |
87 | | |
88 | 0 | #define VLC_VAR_SETTEXT 0x0014 |
89 | 0 | #define VLC_VAR_GETTEXT 0x0015 |
90 | | |
91 | 0 | #define VLC_VAR_GETMIN 0x0016 |
92 | 0 | #define VLC_VAR_GETMAX 0x0017 |
93 | 0 | #define VLC_VAR_GETSTEP 0x0018 |
94 | | |
95 | 0 | #define VLC_VAR_ADDCHOICE 0x0020 |
96 | 0 | #define VLC_VAR_DELCHOICE 0x0021 |
97 | 0 | #define VLC_VAR_CLEARCHOICES 0x0022 |
98 | 0 | #define VLC_VAR_GETCHOICES 0x0024 |
99 | | |
100 | 0 | #define VLC_VAR_CHOICESCOUNT 0x0026 |
101 | 0 | #define VLC_VAR_SETMINMAX 0x0027 |
102 | | |
103 | | /**@}*/ |
104 | | |
105 | | /** |
106 | | * Variable actions. |
107 | | * |
108 | | * These are the different actions that can be used with var_GetAndSet(). |
109 | | */ |
110 | | enum vlc_var_atomic_op { |
111 | | VLC_VAR_BOOL_TOGGLE, /**< Invert a boolean value (param ignored) */ |
112 | | VLC_VAR_INTEGER_ADD, /**< Add parameter to an integer value */ |
113 | | VLC_VAR_INTEGER_OR, /**< Binary OR over an integer bits field */ |
114 | | VLC_VAR_INTEGER_NAND,/**< Binary NAND over an integer bits field */ |
115 | | }; |
116 | | |
117 | | /** |
118 | | * VLC value structure |
119 | | */ |
120 | | typedef union |
121 | | { |
122 | | int64_t i_int; |
123 | | bool b_bool; |
124 | | float f_float; |
125 | | char * psz_string; |
126 | | void * p_address; |
127 | | struct { int32_t x; int32_t y; } coords; |
128 | | |
129 | | } vlc_value_t; |
130 | | |
131 | | /***************************************************************************** |
132 | | * Variable callbacks: called when the value is modified |
133 | | *****************************************************************************/ |
134 | | typedef int ( * vlc_callback_t ) ( vlc_object_t *, /* variable's object */ |
135 | | char const *, /* variable name */ |
136 | | vlc_value_t, /* old value */ |
137 | | vlc_value_t, /* new value */ |
138 | | void * ); /* callback data */ |
139 | | |
140 | | /***************************************************************************** |
141 | | * List callbacks: called when elements are added/removed from the list |
142 | | *****************************************************************************/ |
143 | | typedef int ( * vlc_list_callback_t ) ( vlc_object_t *, /* variable's object */ |
144 | | char const *, /* variable name */ |
145 | | int, /* VLC_VAR_* action */ |
146 | | vlc_value_t *, /* new/deleted value */ |
147 | | void *); /* callback data */ |
148 | | |
149 | | /** |
150 | | * Creates a VLC object variable. |
151 | | * |
152 | | * This function creates a named variable within a VLC object. |
153 | | * If a variable already exists with the same name within the same object, its |
154 | | * reference count is incremented instead. |
155 | | * |
156 | | * \param obj Object to hold the variable |
157 | | * \param name Variable name |
158 | | * \param type Variable type. Must be one of \ref var_type combined with |
159 | | * zero or more \ref var_flags |
160 | | */ |
161 | | VLC_API int var_Create(vlc_object_t *obj, const char *name, int type); |
162 | | |
163 | | /** |
164 | | * Destroys a VLC object variable. |
165 | | * |
166 | | * This function decrements the reference count of a named variable within a |
167 | | * VLC object. If the reference count reaches zero, the variable is destroyed. |
168 | | * |
169 | | * \param obj Object holding the variable |
170 | | * \param name Variable name |
171 | | */ |
172 | | VLC_API void var_Destroy(vlc_object_t *obj, const char *name); |
173 | | |
174 | | /** |
175 | | * Performs a special action on a variable. |
176 | | * |
177 | | * \param obj Object holding the variable |
178 | | * \param name Variable name |
179 | | * \param action Action to perform. Must be one of \ref var_action |
180 | | */ |
181 | | VLC_API int var_Change(vlc_object_t *obj, const char *name, int action, ...); |
182 | | |
183 | | /** |
184 | | * Get the type of a variable. |
185 | | * |
186 | | * \see var_type |
187 | | * |
188 | | * \return The variable type if it exists |
189 | | * or 0 if the variable could not be found. |
190 | | */ |
191 | | VLC_API int var_Type(vlc_object_t *obj, const char *name) VLC_USED; |
192 | | |
193 | | /** |
194 | | * Sets a variable value. |
195 | | * |
196 | | * \param obj Object holding the variable |
197 | | * \param name Variable name |
198 | | * \param val Variable value to set |
199 | | */ |
200 | | VLC_API int var_Set(vlc_object_t *obj, const char *name, vlc_value_t val); |
201 | | |
202 | | /** |
203 | | * Gets a variable value. |
204 | | * |
205 | | * \param obj Object holding the variable |
206 | | * \param name Variable name |
207 | | * \param valp Pointer to a \ref vlc_value_t object to hold the value [OUT] |
208 | | */ |
209 | | VLC_API int var_Get(vlc_object_t *obj, const char *name, vlc_value_t *valp); |
210 | | |
211 | | VLC_API int var_SetChecked( vlc_object_t *, const char *, int, vlc_value_t ); |
212 | | VLC_API int var_GetChecked( vlc_object_t *, const char *, int, vlc_value_t * ); |
213 | | |
214 | | /** |
215 | | * Perform an atomic read-modify-write of a variable. |
216 | | * |
217 | | * \param obj object holding the variable |
218 | | * \param name variable name |
219 | | * \param op read-modify-write operation to perform |
220 | | * (see \ref vlc_var_atomic_op) |
221 | | * \param value value of the variable after the modification |
222 | | * \retval VLC_SUCCESS Operation successful |
223 | | * \retval VLC_ENOENT Variable not found |
224 | | * |
225 | | * \bug The modified value is returned rather than the original value. |
226 | | * As such, the original value cannot be known in the case of non-reversible |
227 | | * operation such as \ref VLC_VAR_INTEGER_OR and \ref VLC_VAR_INTEGER_NAND. |
228 | | */ |
229 | | VLC_API int var_GetAndSet(vlc_object_t *obj, const char *name, int op, |
230 | | vlc_value_t *value); |
231 | | |
232 | | /** |
233 | | * Finds the value of a variable. |
234 | | * |
235 | | * If the specified object does not hold a variable with the specified name, |
236 | | * try the parent object, and iterate until the top of the objects tree. If no |
237 | | * match is found, the value is read from the configuration. |
238 | | */ |
239 | | VLC_API int var_Inherit( vlc_object_t *, const char *, int, vlc_value_t * ); |
240 | | |
241 | | |
242 | | /***************************************************************************** |
243 | | * Variable callbacks |
244 | | ***************************************************************************** |
245 | | * int MyCallback( vlc_object_t *p_this, |
246 | | * char const *psz_variable, |
247 | | * vlc_value_t oldvalue, |
248 | | * vlc_value_t newvalue, |
249 | | * void *p_data); |
250 | | *****************************************************************************/ |
251 | | |
252 | | /** |
253 | | * Registers a callback for a variable. |
254 | | * |
255 | | * We store a function pointer that will be called upon variable |
256 | | * modification. |
257 | | * |
258 | | * \param obj Object holding the variable |
259 | | * \param name Variable name |
260 | | * \param callback Callback function pointer |
261 | | * \param opaque Opaque data pointer for use by the callback. |
262 | | * |
263 | | * \warning The callback function is run in the thread that calls var_Set() on |
264 | | * the variable. Use proper locking. This thread may not have much |
265 | | * time to spare, so keep callback functions short. |
266 | | * |
267 | | * \bug It is not possible to atomically retrieve the current value and |
268 | | * register a callback. As a consequence, extreme care must be taken to ensure |
269 | | * that the variable value cannot change before the callback is registered. |
270 | | * Failure to do so will result in intractable race conditions. |
271 | | */ |
272 | | VLC_API void var_AddCallback(vlc_object_t *obj, const char *name, |
273 | | vlc_callback_t callback, void *opaque); |
274 | | |
275 | | /** |
276 | | * Deregisters a callback from a variable. |
277 | | * |
278 | | * The callback and opaque pointer must be supplied again, as the same callback |
279 | | * function might have been registered more than once. |
280 | | */ |
281 | | VLC_API void var_DelCallback(vlc_object_t *obj, const char *name, |
282 | | vlc_callback_t callback, void *opaque); |
283 | | |
284 | | /** |
285 | | * Triggers callbacks on a variable. |
286 | | * |
287 | | * This triggers any callbacks registered on the named variable without |
288 | | * actually modifying the variable value. This is primarily useful for |
289 | | * variables with \ref VLC_VAR_VOID type (which do not have a value). |
290 | | * |
291 | | * \param obj Object holding the variable |
292 | | * \param name Variable name |
293 | | */ |
294 | | VLC_API void var_TriggerCallback(vlc_object_t *obj, const char *name); |
295 | | |
296 | | /** |
297 | | * Register a callback for a list variable |
298 | | * |
299 | | * The callback is triggered when an element is added/removed from the |
300 | | * list or when the list is cleared. |
301 | | * |
302 | | * See var_AddCallback(). |
303 | | */ |
304 | | VLC_API void var_AddListCallback( vlc_object_t *, const char *, vlc_list_callback_t, void * ); |
305 | | |
306 | | /** |
307 | | * Remove a callback from a list variable |
308 | | * |
309 | | * See var_DelCallback(). |
310 | | */ |
311 | | VLC_API void var_DelListCallback( vlc_object_t *, const char *, vlc_list_callback_t, void * ); |
312 | | |
313 | | /***************************************************************************** |
314 | | * helpers functions |
315 | | *****************************************************************************/ |
316 | | |
317 | | /** |
318 | | * Set the value of an integer variable |
319 | | * |
320 | | * \param p_obj The object that holds the variable |
321 | | * \param psz_name The name of the variable |
322 | | * \param i The new integer value of this variable |
323 | | */ |
324 | | static inline int var_SetInteger( vlc_object_t *p_obj, const char *psz_name, |
325 | | int64_t i ) |
326 | 0 | { |
327 | 0 | vlc_value_t val; |
328 | 0 | val.i_int = i; |
329 | 0 | return var_SetChecked( p_obj, psz_name, VLC_VAR_INTEGER, val ); |
330 | 0 | } Unexecuted instantiation: demux-run.c:var_SetInteger Unexecuted instantiation: common.c:var_SetInteger Unexecuted instantiation: var.c:var_SetInteger Unexecuted instantiation: decoder.c:var_SetInteger Unexecuted instantiation: core.c:var_SetInteger Unexecuted instantiation: error.c:var_SetInteger Unexecuted instantiation: console.c:var_SetInteger Unexecuted instantiation: aiff.c:var_SetInteger Unexecuted instantiation: asf.c:var_SetInteger Unexecuted instantiation: libasf.c:var_SetInteger Unexecuted instantiation: asfpacket.c:var_SetInteger Unexecuted instantiation: au.c:var_SetInteger Unexecuted instantiation: avi.c:var_SetInteger Unexecuted instantiation: libavi.c:var_SetInteger Unexecuted instantiation: caf.c:var_SetInteger Unexecuted instantiation: cdg.c:var_SetInteger Unexecuted instantiation: es.c:var_SetInteger Unexecuted instantiation: dts_header.c:var_SetInteger Unexecuted instantiation: flac.c:var_SetInteger Unexecuted instantiation: xiph_metadata.c:var_SetInteger Unexecuted instantiation: h26x.c:var_SetInteger Unexecuted instantiation: mjpeg.c:var_SetInteger Unexecuted instantiation: mp4.c:var_SetInteger Unexecuted instantiation: fragments.c:var_SetInteger Unexecuted instantiation: attachments.c:var_SetInteger Unexecuted instantiation: heif.c:var_SetInteger Unexecuted instantiation: essetup.c:var_SetInteger Unexecuted instantiation: meta.c:var_SetInteger Unexecuted instantiation: libmp4.c:var_SetInteger Unexecuted instantiation: nsv.c:var_SetInteger Unexecuted instantiation: ps.c:var_SetInteger Unexecuted instantiation: pva.c:var_SetInteger Unexecuted instantiation: sap.c:var_SetInteger Unexecuted instantiation: sdp.c:var_SetInteger Unexecuted instantiation: smf.c:var_SetInteger Unexecuted instantiation: subtitle.c:var_SetInteger Unexecuted instantiation: tta.c:var_SetInteger Unexecuted instantiation: ttml.c:var_SetInteger Unexecuted instantiation: encttml.c:var_SetInteger Unexecuted instantiation: substtml.c:var_SetInteger Unexecuted instantiation: genttml.c:var_SetInteger Unexecuted instantiation: ty.c:var_SetInteger Unexecuted instantiation: voc.c:var_SetInteger Unexecuted instantiation: wav.c:var_SetInteger Unexecuted instantiation: webvtt.c:var_SetInteger Unexecuted instantiation: encvtt.c:var_SetInteger Unexecuted instantiation: subsvtt.c:var_SetInteger Unexecuted instantiation: css_parser.c:var_SetInteger Unexecuted instantiation: css_style.c:var_SetInteger Unexecuted instantiation: CSSGrammar.c:var_SetInteger Unexecuted instantiation: libwebvtt_plugin_la-CSSLexer.c:var_SetInteger Unexecuted instantiation: xa.c:var_SetInteger Unexecuted instantiation: a52.c:var_SetInteger Unexecuted instantiation: copy.c:var_SetInteger Unexecuted instantiation: dts.c:var_SetInteger Unexecuted instantiation: h264.c:var_SetInteger Unexecuted instantiation: hxxx_sei.c:var_SetInteger Unexecuted instantiation: hxxx_common.c:var_SetInteger Unexecuted instantiation: h264_nal.c:var_SetInteger Unexecuted instantiation: h264_slice.c:var_SetInteger Unexecuted instantiation: hevc.c:var_SetInteger Unexecuted instantiation: hevc_nal.c:var_SetInteger Unexecuted instantiation: mlp.c:var_SetInteger Unexecuted instantiation: mpeg4audio.c:var_SetInteger Unexecuted instantiation: mpeg4video.c:var_SetInteger Unexecuted instantiation: mpegaudio.c:var_SetInteger Unexecuted instantiation: mpegvideo.c:var_SetInteger Unexecuted instantiation: vc1.c:var_SetInteger Unexecuted instantiation: rawaud.c:var_SetInteger Unexecuted instantiation: rawvid.c:var_SetInteger Unexecuted instantiation: fs.c:var_SetInteger Unexecuted instantiation: file.c:var_SetInteger Unexecuted instantiation: directory.c:var_SetInteger Unexecuted instantiation: libxml.c:var_SetInteger Unexecuted instantiation: ogg.c:var_SetInteger Unexecuted instantiation: oggseek.c:var_SetInteger Unexecuted instantiation: ogg_granule.c:var_SetInteger Unexecuted instantiation: mkv.cpp:var_SetInteger(vlc_object_t*, char const*, long) Unexecuted instantiation: util.cpp:var_SetInteger(vlc_object_t*, char const*, long) Unexecuted instantiation: virtual_segment.cpp:var_SetInteger(vlc_object_t*, char const*, long) Unexecuted instantiation: matroska_segment.cpp:var_SetInteger(vlc_object_t*, char const*, long) Unexecuted instantiation: matroska_segment_parse.cpp:var_SetInteger(vlc_object_t*, char const*, long) Unexecuted instantiation: matroska_segment_seeker.cpp:var_SetInteger(vlc_object_t*, char const*, long) Unexecuted instantiation: demux.cpp:var_SetInteger(vlc_object_t*, char const*, long) Unexecuted instantiation: events.cpp:var_SetInteger(vlc_object_t*, char const*, long) Unexecuted instantiation: Ebml_parser.cpp:var_SetInteger(vlc_object_t*, char const*, long) Unexecuted instantiation: chapters.cpp:var_SetInteger(vlc_object_t*, char const*, long) Unexecuted instantiation: chapter_command.cpp:var_SetInteger(vlc_object_t*, char const*, long) Unexecuted instantiation: chapter_command_dvd.cpp:var_SetInteger(vlc_object_t*, char const*, long) Unexecuted instantiation: chapter_command_script.cpp:var_SetInteger(vlc_object_t*, char const*, long) Unexecuted instantiation: chapter_command_script_common.cpp:var_SetInteger(vlc_object_t*, char const*, long) Unexecuted instantiation: stream_io_callback.cpp:var_SetInteger(vlc_object_t*, char const*, long) Unexecuted instantiation: vlc_colors.c:var_SetInteger Unexecuted instantiation: adpcm.c:var_SetInteger Unexecuted instantiation: aes3.c:var_SetInteger Unexecuted instantiation: araw.c:var_SetInteger Unexecuted instantiation: g711.c:var_SetInteger Unexecuted instantiation: lpcm.c:var_SetInteger Unexecuted instantiation: uleaddvaudio.c:var_SetInteger Unexecuted instantiation: rawvideo.c:var_SetInteger Unexecuted instantiation: cc.c:var_SetInteger Unexecuted instantiation: cea708.c:var_SetInteger Unexecuted instantiation: cvdsub.c:var_SetInteger Unexecuted instantiation: dvbsub.c:var_SetInteger Unexecuted instantiation: scte18.c:var_SetInteger Unexecuted instantiation: atsc_a65.c:var_SetInteger Unexecuted instantiation: scte27.c:var_SetInteger Unexecuted instantiation: spudec.c:var_SetInteger Unexecuted instantiation: parse.c:var_SetInteger Unexecuted instantiation: stl.c:var_SetInteger Unexecuted instantiation: subsdec.c:var_SetInteger Unexecuted instantiation: subsusf.c:var_SetInteger Unexecuted instantiation: svcdsub.c:var_SetInteger Unexecuted instantiation: textst.c:var_SetInteger Unexecuted instantiation: substx3g.c:var_SetInteger Unexecuted instantiation: libvlc.c:var_SetInteger Unexecuted instantiation: version.c:var_SetInteger Unexecuted instantiation: chain.c:var_SetInteger Unexecuted instantiation: help.c:var_SetInteger Unexecuted instantiation: cmdline.c:var_SetInteger Unexecuted instantiation: getopt.c:var_SetInteger Unexecuted instantiation: libc.c:var_SetInteger Unexecuted instantiation: media_source.c:var_SetInteger Unexecuted instantiation: media_tree.c:var_SetInteger Unexecuted instantiation: modules.c:var_SetInteger Unexecuted instantiation: bank.c:var_SetInteger Unexecuted instantiation: entry.c:var_SetInteger Unexecuted instantiation: textdomain.c:var_SetInteger Unexecuted instantiation: dialog.c:var_SetInteger Unexecuted instantiation: interface.c:var_SetInteger Unexecuted instantiation: content.c:var_SetInteger Unexecuted instantiation: control.c:var_SetInteger Unexecuted instantiation: item.c:var_SetInteger Unexecuted instantiation: notify.c:var_SetInteger Unexecuted instantiation: player.c:var_SetInteger Unexecuted instantiation: playlist.c:var_SetInteger Unexecuted instantiation: preparse.c:var_SetInteger Unexecuted instantiation: randomizer.c:var_SetInteger Unexecuted instantiation: preparser.c:var_SetInteger Unexecuted instantiation: access.c:var_SetInteger Unexecuted instantiation: decoder_device.c:var_SetInteger Unexecuted instantiation: decoder_helpers.c:var_SetInteger Unexecuted instantiation: demux.c:var_SetInteger Unexecuted instantiation: input.c:var_SetInteger Unexecuted instantiation: attachment.c:var_SetInteger Unexecuted instantiation: replay_gain.c:var_SetInteger Unexecuted instantiation: timer.c:var_SetInteger Unexecuted instantiation: track.c:var_SetInteger Unexecuted instantiation: title.c:var_SetInteger Unexecuted instantiation: aout.c:var_SetInteger Unexecuted instantiation: vout.c:var_SetInteger Unexecuted instantiation: osd.c:var_SetInteger Unexecuted instantiation: medialib.c:var_SetInteger Unexecuted instantiation: resource.c:var_SetInteger Unexecuted instantiation: services_discovery.c:var_SetInteger Unexecuted instantiation: source.c:var_SetInteger Unexecuted instantiation: stats.c:var_SetInteger Unexecuted instantiation: stream.c:var_SetInteger Unexecuted instantiation: stream_extractor.c:var_SetInteger Unexecuted instantiation: stream_filter.c:var_SetInteger Unexecuted instantiation: stream_memory.c:var_SetInteger Unexecuted instantiation: subtitles.c:var_SetInteger Unexecuted instantiation: dec.c:var_SetInteger Unexecuted instantiation: filters.c:var_SetInteger Unexecuted instantiation: meter.c:var_SetInteger Unexecuted instantiation: output.c:var_SetInteger Unexecuted instantiation: volume.c:var_SetInteger Unexecuted instantiation: video_output.c:var_SetInteger Unexecuted instantiation: video_text.c:var_SetInteger Unexecuted instantiation: video_widgets.c:var_SetInteger Unexecuted instantiation: vout_subpictures.c:var_SetInteger Unexecuted instantiation: video_window.c:var_SetInteger Unexecuted instantiation: window.c:var_SetInteger Unexecuted instantiation: vout_intf.c:var_SetInteger Unexecuted instantiation: vout_wrapper.c:var_SetInteger Unexecuted instantiation: udp.c:var_SetInteger Unexecuted instantiation: charset.c:var_SetInteger Unexecuted instantiation: memstream.c:var_SetInteger Unexecuted instantiation: strings.c:var_SetInteger Unexecuted instantiation: unicode.c:var_SetInteger Unexecuted instantiation: url.c:var_SetInteger Unexecuted instantiation: filesystem.c:var_SetInteger Unexecuted instantiation: actions.c:var_SetInteger Unexecuted instantiation: ancillary.c:var_SetInteger Unexecuted instantiation: executor.c:var_SetInteger Unexecuted instantiation: md5.c:var_SetInteger Unexecuted instantiation: probe.c:var_SetInteger Unexecuted instantiation: mtime.c:var_SetInteger Unexecuted instantiation: frame.c:var_SetInteger Unexecuted instantiation: fifo.c:var_SetInteger Unexecuted instantiation: fourcc.c:var_SetInteger Unexecuted instantiation: es_format.c:var_SetInteger Unexecuted instantiation: picture.c:var_SetInteger Unexecuted instantiation: picture_fifo.c:var_SetInteger Unexecuted instantiation: picture_pool.c:var_SetInteger Unexecuted instantiation: interrupt.c:var_SetInteger Unexecuted instantiation: keystore.c:var_SetInteger Unexecuted instantiation: rcu.c:var_SetInteger Unexecuted instantiation: renderer_discovery.c:var_SetInteger Unexecuted instantiation: threads.c:var_SetInteger Unexecuted instantiation: cpu.c:var_SetInteger Unexecuted instantiation: epg.c:var_SetInteger Unexecuted instantiation: exit.c:var_SetInteger Unexecuted instantiation: image.c:var_SetInteger Unexecuted instantiation: messages.c:var_SetInteger Unexecuted instantiation: tracer.c:var_SetInteger Unexecuted instantiation: objects.c:var_SetInteger Unexecuted instantiation: objres.c:var_SetInteger Unexecuted instantiation: queue.c:var_SetInteger Unexecuted instantiation: variables.c:var_SetInteger Unexecuted instantiation: xml.c:var_SetInteger Unexecuted instantiation: filter.c:var_SetInteger Unexecuted instantiation: filter_chain.c:var_SetInteger Unexecuted instantiation: httpcookies.c:var_SetInteger Unexecuted instantiation: text_style.c:var_SetInteger Unexecuted instantiation: sort.c:var_SetInteger Unexecuted instantiation: subpicture.c:var_SetInteger Unexecuted instantiation: medialibrary.c:var_SetInteger Unexecuted instantiation: viewpoint.c:var_SetInteger Unexecuted instantiation: thread.c:var_SetInteger Unexecuted instantiation: rand.c:var_SetInteger Unexecuted instantiation: specific.c:var_SetInteger Unexecuted instantiation: stream_output.c:var_SetInteger Unexecuted instantiation: vlm.c:var_SetInteger Unexecuted instantiation: vlm_event.c:var_SetInteger Unexecuted instantiation: vlmshell.c:var_SetInteger Unexecuted instantiation: libvlc-module.c:var_SetInteger Unexecuted instantiation: dirs.c:var_SetInteger Unexecuted instantiation: art.c:var_SetInteger Unexecuted instantiation: fetcher.c:var_SetInteger Unexecuted instantiation: clock.c:var_SetInteger Unexecuted instantiation: es_out.c:var_SetInteger Unexecuted instantiation: es_out_source.c:var_SetInteger Unexecuted instantiation: es_out_timeshift.c:var_SetInteger Unexecuted instantiation: display.c:var_SetInteger Unexecuted instantiation: inhibit.c:var_SetInteger Unexecuted instantiation: interlacing.c:var_SetInteger Unexecuted instantiation: snapshot.c:var_SetInteger Unexecuted instantiation: getaddrinfo.c:var_SetInteger Unexecuted instantiation: io.c:var_SetInteger Unexecuted instantiation: iso_lang.c:var_SetInteger Unexecuted instantiation: chroma_probe.c:var_SetInteger Unexecuted instantiation: clock_internal.c:var_SetInteger Unexecuted instantiation: input_clock.c:var_SetInteger |
331 | | |
332 | | /** |
333 | | * Set the value of an boolean variable |
334 | | * |
335 | | * \param p_obj The object that holds the variable |
336 | | * \param psz_name The name of the variable |
337 | | * \param b The new boolean value of this variable |
338 | | */ |
339 | | static inline int var_SetBool( vlc_object_t *p_obj, const char *psz_name, bool b ) |
340 | 52 | { |
341 | 52 | vlc_value_t val; |
342 | 52 | val.b_bool = b; |
343 | 52 | return var_SetChecked( p_obj, psz_name, VLC_VAR_BOOL, val ); |
344 | 52 | } Unexecuted instantiation: demux-run.c:var_SetBool Unexecuted instantiation: common.c:var_SetBool Unexecuted instantiation: var.c:var_SetBool Unexecuted instantiation: decoder.c:var_SetBool Unexecuted instantiation: core.c:var_SetBool Unexecuted instantiation: error.c:var_SetBool Unexecuted instantiation: console.c:var_SetBool Unexecuted instantiation: aiff.c:var_SetBool Unexecuted instantiation: asf.c:var_SetBool Unexecuted instantiation: libasf.c:var_SetBool Unexecuted instantiation: asfpacket.c:var_SetBool Unexecuted instantiation: au.c:var_SetBool Unexecuted instantiation: avi.c:var_SetBool Unexecuted instantiation: libavi.c:var_SetBool Unexecuted instantiation: caf.c:var_SetBool Unexecuted instantiation: cdg.c:var_SetBool Unexecuted instantiation: es.c:var_SetBool Unexecuted instantiation: dts_header.c:var_SetBool Unexecuted instantiation: flac.c:var_SetBool Unexecuted instantiation: xiph_metadata.c:var_SetBool Unexecuted instantiation: h26x.c:var_SetBool Unexecuted instantiation: mjpeg.c:var_SetBool Unexecuted instantiation: mp4.c:var_SetBool Unexecuted instantiation: fragments.c:var_SetBool Unexecuted instantiation: attachments.c:var_SetBool Unexecuted instantiation: heif.c:var_SetBool Unexecuted instantiation: essetup.c:var_SetBool Unexecuted instantiation: meta.c:var_SetBool Unexecuted instantiation: libmp4.c:var_SetBool Unexecuted instantiation: nsv.c:var_SetBool Unexecuted instantiation: ps.c:var_SetBool Unexecuted instantiation: pva.c:var_SetBool Unexecuted instantiation: sap.c:var_SetBool Unexecuted instantiation: sdp.c:var_SetBool Unexecuted instantiation: smf.c:var_SetBool Unexecuted instantiation: subtitle.c:var_SetBool Unexecuted instantiation: tta.c:var_SetBool Unexecuted instantiation: ttml.c:var_SetBool Unexecuted instantiation: encttml.c:var_SetBool Unexecuted instantiation: substtml.c:var_SetBool Unexecuted instantiation: genttml.c:var_SetBool Unexecuted instantiation: ty.c:var_SetBool Unexecuted instantiation: voc.c:var_SetBool Unexecuted instantiation: wav.c:var_SetBool Unexecuted instantiation: webvtt.c:var_SetBool Unexecuted instantiation: encvtt.c:var_SetBool Unexecuted instantiation: subsvtt.c:var_SetBool Unexecuted instantiation: css_parser.c:var_SetBool Unexecuted instantiation: css_style.c:var_SetBool Unexecuted instantiation: CSSGrammar.c:var_SetBool Unexecuted instantiation: libwebvtt_plugin_la-CSSLexer.c:var_SetBool Unexecuted instantiation: xa.c:var_SetBool Unexecuted instantiation: a52.c:var_SetBool Unexecuted instantiation: copy.c:var_SetBool Unexecuted instantiation: dts.c:var_SetBool Unexecuted instantiation: h264.c:var_SetBool Unexecuted instantiation: hxxx_sei.c:var_SetBool Unexecuted instantiation: hxxx_common.c:var_SetBool Unexecuted instantiation: h264_nal.c:var_SetBool Unexecuted instantiation: h264_slice.c:var_SetBool Unexecuted instantiation: hevc.c:var_SetBool Unexecuted instantiation: hevc_nal.c:var_SetBool Unexecuted instantiation: mlp.c:var_SetBool Unexecuted instantiation: mpeg4audio.c:var_SetBool Unexecuted instantiation: mpeg4video.c:var_SetBool Unexecuted instantiation: mpegaudio.c:var_SetBool Unexecuted instantiation: mpegvideo.c:var_SetBool Unexecuted instantiation: vc1.c:var_SetBool Unexecuted instantiation: rawaud.c:var_SetBool Unexecuted instantiation: rawvid.c:var_SetBool Unexecuted instantiation: fs.c:var_SetBool Unexecuted instantiation: file.c:var_SetBool Unexecuted instantiation: directory.c:var_SetBool Unexecuted instantiation: libxml.c:var_SetBool Unexecuted instantiation: ogg.c:var_SetBool Unexecuted instantiation: oggseek.c:var_SetBool Unexecuted instantiation: ogg_granule.c:var_SetBool Unexecuted instantiation: mkv.cpp:var_SetBool(vlc_object_t*, char const*, bool) Unexecuted instantiation: util.cpp:var_SetBool(vlc_object_t*, char const*, bool) Unexecuted instantiation: virtual_segment.cpp:var_SetBool(vlc_object_t*, char const*, bool) Unexecuted instantiation: matroska_segment.cpp:var_SetBool(vlc_object_t*, char const*, bool) Unexecuted instantiation: matroska_segment_parse.cpp:var_SetBool(vlc_object_t*, char const*, bool) Unexecuted instantiation: matroska_segment_seeker.cpp:var_SetBool(vlc_object_t*, char const*, bool) Unexecuted instantiation: demux.cpp:var_SetBool(vlc_object_t*, char const*, bool) Unexecuted instantiation: events.cpp:var_SetBool(vlc_object_t*, char const*, bool) Unexecuted instantiation: Ebml_parser.cpp:var_SetBool(vlc_object_t*, char const*, bool) Unexecuted instantiation: chapters.cpp:var_SetBool(vlc_object_t*, char const*, bool) Unexecuted instantiation: chapter_command.cpp:var_SetBool(vlc_object_t*, char const*, bool) Unexecuted instantiation: chapter_command_dvd.cpp:var_SetBool(vlc_object_t*, char const*, bool) Unexecuted instantiation: chapter_command_script.cpp:var_SetBool(vlc_object_t*, char const*, bool) Unexecuted instantiation: chapter_command_script_common.cpp:var_SetBool(vlc_object_t*, char const*, bool) Unexecuted instantiation: stream_io_callback.cpp:var_SetBool(vlc_object_t*, char const*, bool) Unexecuted instantiation: vlc_colors.c:var_SetBool Unexecuted instantiation: adpcm.c:var_SetBool Unexecuted instantiation: aes3.c:var_SetBool Unexecuted instantiation: araw.c:var_SetBool Unexecuted instantiation: g711.c:var_SetBool Unexecuted instantiation: lpcm.c:var_SetBool Unexecuted instantiation: uleaddvaudio.c:var_SetBool Unexecuted instantiation: rawvideo.c:var_SetBool Unexecuted instantiation: cc.c:var_SetBool Unexecuted instantiation: cea708.c:var_SetBool Unexecuted instantiation: cvdsub.c:var_SetBool Unexecuted instantiation: dvbsub.c:var_SetBool Unexecuted instantiation: scte18.c:var_SetBool Unexecuted instantiation: atsc_a65.c:var_SetBool Unexecuted instantiation: scte27.c:var_SetBool Unexecuted instantiation: spudec.c:var_SetBool Unexecuted instantiation: parse.c:var_SetBool Unexecuted instantiation: stl.c:var_SetBool Unexecuted instantiation: subsdec.c:var_SetBool Unexecuted instantiation: subsusf.c:var_SetBool Unexecuted instantiation: svcdsub.c:var_SetBool Unexecuted instantiation: textst.c:var_SetBool Unexecuted instantiation: substx3g.c:var_SetBool Unexecuted instantiation: libvlc.c:var_SetBool Unexecuted instantiation: version.c:var_SetBool Unexecuted instantiation: chain.c:var_SetBool Unexecuted instantiation: help.c:var_SetBool Line | Count | Source | 340 | 52 | { | 341 | 52 | vlc_value_t val; | 342 | 52 | val.b_bool = b; | 343 | 52 | return var_SetChecked( p_obj, psz_name, VLC_VAR_BOOL, val ); | 344 | 52 | } |
Unexecuted instantiation: getopt.c:var_SetBool Unexecuted instantiation: libc.c:var_SetBool Unexecuted instantiation: media_source.c:var_SetBool Unexecuted instantiation: media_tree.c:var_SetBool Unexecuted instantiation: modules.c:var_SetBool Unexecuted instantiation: bank.c:var_SetBool Unexecuted instantiation: entry.c:var_SetBool Unexecuted instantiation: textdomain.c:var_SetBool Unexecuted instantiation: dialog.c:var_SetBool Unexecuted instantiation: interface.c:var_SetBool Unexecuted instantiation: content.c:var_SetBool Unexecuted instantiation: control.c:var_SetBool Unexecuted instantiation: item.c:var_SetBool Unexecuted instantiation: notify.c:var_SetBool Unexecuted instantiation: player.c:var_SetBool Unexecuted instantiation: playlist.c:var_SetBool Unexecuted instantiation: preparse.c:var_SetBool Unexecuted instantiation: randomizer.c:var_SetBool Unexecuted instantiation: preparser.c:var_SetBool Unexecuted instantiation: access.c:var_SetBool Unexecuted instantiation: decoder_device.c:var_SetBool Unexecuted instantiation: decoder_helpers.c:var_SetBool Unexecuted instantiation: demux.c:var_SetBool Unexecuted instantiation: input.c:var_SetBool Unexecuted instantiation: attachment.c:var_SetBool Unexecuted instantiation: replay_gain.c:var_SetBool Unexecuted instantiation: timer.c:var_SetBool Unexecuted instantiation: track.c:var_SetBool Unexecuted instantiation: title.c:var_SetBool Unexecuted instantiation: aout.c:var_SetBool Unexecuted instantiation: vout.c:var_SetBool Unexecuted instantiation: osd.c:var_SetBool Unexecuted instantiation: medialib.c:var_SetBool Unexecuted instantiation: resource.c:var_SetBool Unexecuted instantiation: services_discovery.c:var_SetBool Unexecuted instantiation: source.c:var_SetBool Unexecuted instantiation: stats.c:var_SetBool Unexecuted instantiation: stream.c:var_SetBool Unexecuted instantiation: stream_extractor.c:var_SetBool Unexecuted instantiation: stream_filter.c:var_SetBool Unexecuted instantiation: stream_memory.c:var_SetBool Unexecuted instantiation: subtitles.c:var_SetBool Unexecuted instantiation: dec.c:var_SetBool Unexecuted instantiation: filters.c:var_SetBool Unexecuted instantiation: meter.c:var_SetBool Unexecuted instantiation: output.c:var_SetBool Unexecuted instantiation: volume.c:var_SetBool Unexecuted instantiation: video_output.c:var_SetBool Unexecuted instantiation: video_text.c:var_SetBool Unexecuted instantiation: video_widgets.c:var_SetBool Unexecuted instantiation: vout_subpictures.c:var_SetBool Unexecuted instantiation: video_window.c:var_SetBool Unexecuted instantiation: window.c:var_SetBool Unexecuted instantiation: vout_intf.c:var_SetBool Unexecuted instantiation: vout_wrapper.c:var_SetBool Unexecuted instantiation: udp.c:var_SetBool Unexecuted instantiation: charset.c:var_SetBool Unexecuted instantiation: memstream.c:var_SetBool Unexecuted instantiation: strings.c:var_SetBool Unexecuted instantiation: unicode.c:var_SetBool Unexecuted instantiation: url.c:var_SetBool Unexecuted instantiation: filesystem.c:var_SetBool Unexecuted instantiation: actions.c:var_SetBool Unexecuted instantiation: ancillary.c:var_SetBool Unexecuted instantiation: executor.c:var_SetBool Unexecuted instantiation: md5.c:var_SetBool Unexecuted instantiation: probe.c:var_SetBool Unexecuted instantiation: mtime.c:var_SetBool Unexecuted instantiation: frame.c:var_SetBool Unexecuted instantiation: fifo.c:var_SetBool Unexecuted instantiation: fourcc.c:var_SetBool Unexecuted instantiation: es_format.c:var_SetBool Unexecuted instantiation: picture.c:var_SetBool Unexecuted instantiation: picture_fifo.c:var_SetBool Unexecuted instantiation: picture_pool.c:var_SetBool Unexecuted instantiation: interrupt.c:var_SetBool Unexecuted instantiation: keystore.c:var_SetBool Unexecuted instantiation: rcu.c:var_SetBool Unexecuted instantiation: renderer_discovery.c:var_SetBool Unexecuted instantiation: threads.c:var_SetBool Unexecuted instantiation: cpu.c:var_SetBool Unexecuted instantiation: epg.c:var_SetBool Unexecuted instantiation: exit.c:var_SetBool Unexecuted instantiation: image.c:var_SetBool Unexecuted instantiation: messages.c:var_SetBool Unexecuted instantiation: tracer.c:var_SetBool Unexecuted instantiation: objects.c:var_SetBool Unexecuted instantiation: objres.c:var_SetBool Unexecuted instantiation: queue.c:var_SetBool Unexecuted instantiation: variables.c:var_SetBool Unexecuted instantiation: xml.c:var_SetBool Unexecuted instantiation: filter.c:var_SetBool Unexecuted instantiation: filter_chain.c:var_SetBool Unexecuted instantiation: httpcookies.c:var_SetBool Unexecuted instantiation: text_style.c:var_SetBool Unexecuted instantiation: sort.c:var_SetBool Unexecuted instantiation: subpicture.c:var_SetBool Unexecuted instantiation: medialibrary.c:var_SetBool Unexecuted instantiation: viewpoint.c:var_SetBool Unexecuted instantiation: thread.c:var_SetBool Unexecuted instantiation: rand.c:var_SetBool Unexecuted instantiation: specific.c:var_SetBool Unexecuted instantiation: stream_output.c:var_SetBool Unexecuted instantiation: vlm.c:var_SetBool Unexecuted instantiation: vlm_event.c:var_SetBool Unexecuted instantiation: vlmshell.c:var_SetBool Unexecuted instantiation: libvlc-module.c:var_SetBool Unexecuted instantiation: dirs.c:var_SetBool Unexecuted instantiation: art.c:var_SetBool Unexecuted instantiation: fetcher.c:var_SetBool Unexecuted instantiation: clock.c:var_SetBool Unexecuted instantiation: es_out.c:var_SetBool Unexecuted instantiation: es_out_source.c:var_SetBool Unexecuted instantiation: es_out_timeshift.c:var_SetBool Unexecuted instantiation: display.c:var_SetBool Unexecuted instantiation: inhibit.c:var_SetBool Unexecuted instantiation: interlacing.c:var_SetBool Unexecuted instantiation: snapshot.c:var_SetBool Unexecuted instantiation: getaddrinfo.c:var_SetBool Unexecuted instantiation: io.c:var_SetBool Unexecuted instantiation: iso_lang.c:var_SetBool Unexecuted instantiation: chroma_probe.c:var_SetBool Unexecuted instantiation: clock_internal.c:var_SetBool Unexecuted instantiation: input_clock.c:var_SetBool |
345 | | |
346 | | static inline int var_SetCoords( vlc_object_t *obj, const char *name, |
347 | | int32_t x, int32_t y ) |
348 | 0 | { |
349 | 0 | vlc_value_t val; |
350 | 0 | val.coords.x = x; |
351 | 0 | val.coords.y = y; |
352 | 0 | return var_SetChecked (obj, name, VLC_VAR_COORDS, val); |
353 | 0 | } Unexecuted instantiation: demux-run.c:var_SetCoords Unexecuted instantiation: common.c:var_SetCoords Unexecuted instantiation: var.c:var_SetCoords Unexecuted instantiation: decoder.c:var_SetCoords Unexecuted instantiation: core.c:var_SetCoords Unexecuted instantiation: error.c:var_SetCoords Unexecuted instantiation: console.c:var_SetCoords Unexecuted instantiation: aiff.c:var_SetCoords Unexecuted instantiation: asf.c:var_SetCoords Unexecuted instantiation: libasf.c:var_SetCoords Unexecuted instantiation: asfpacket.c:var_SetCoords Unexecuted instantiation: au.c:var_SetCoords Unexecuted instantiation: avi.c:var_SetCoords Unexecuted instantiation: libavi.c:var_SetCoords Unexecuted instantiation: caf.c:var_SetCoords Unexecuted instantiation: cdg.c:var_SetCoords Unexecuted instantiation: es.c:var_SetCoords Unexecuted instantiation: dts_header.c:var_SetCoords Unexecuted instantiation: flac.c:var_SetCoords Unexecuted instantiation: xiph_metadata.c:var_SetCoords Unexecuted instantiation: h26x.c:var_SetCoords Unexecuted instantiation: mjpeg.c:var_SetCoords Unexecuted instantiation: mp4.c:var_SetCoords Unexecuted instantiation: fragments.c:var_SetCoords Unexecuted instantiation: attachments.c:var_SetCoords Unexecuted instantiation: heif.c:var_SetCoords Unexecuted instantiation: essetup.c:var_SetCoords Unexecuted instantiation: meta.c:var_SetCoords Unexecuted instantiation: libmp4.c:var_SetCoords Unexecuted instantiation: nsv.c:var_SetCoords Unexecuted instantiation: ps.c:var_SetCoords Unexecuted instantiation: pva.c:var_SetCoords Unexecuted instantiation: sap.c:var_SetCoords Unexecuted instantiation: sdp.c:var_SetCoords Unexecuted instantiation: smf.c:var_SetCoords Unexecuted instantiation: subtitle.c:var_SetCoords Unexecuted instantiation: tta.c:var_SetCoords Unexecuted instantiation: ttml.c:var_SetCoords Unexecuted instantiation: encttml.c:var_SetCoords Unexecuted instantiation: substtml.c:var_SetCoords Unexecuted instantiation: genttml.c:var_SetCoords Unexecuted instantiation: ty.c:var_SetCoords Unexecuted instantiation: voc.c:var_SetCoords Unexecuted instantiation: wav.c:var_SetCoords Unexecuted instantiation: webvtt.c:var_SetCoords Unexecuted instantiation: encvtt.c:var_SetCoords Unexecuted instantiation: subsvtt.c:var_SetCoords Unexecuted instantiation: css_parser.c:var_SetCoords Unexecuted instantiation: css_style.c:var_SetCoords Unexecuted instantiation: CSSGrammar.c:var_SetCoords Unexecuted instantiation: libwebvtt_plugin_la-CSSLexer.c:var_SetCoords Unexecuted instantiation: xa.c:var_SetCoords Unexecuted instantiation: a52.c:var_SetCoords Unexecuted instantiation: copy.c:var_SetCoords Unexecuted instantiation: dts.c:var_SetCoords Unexecuted instantiation: h264.c:var_SetCoords Unexecuted instantiation: hxxx_sei.c:var_SetCoords Unexecuted instantiation: hxxx_common.c:var_SetCoords Unexecuted instantiation: h264_nal.c:var_SetCoords Unexecuted instantiation: h264_slice.c:var_SetCoords Unexecuted instantiation: hevc.c:var_SetCoords Unexecuted instantiation: hevc_nal.c:var_SetCoords Unexecuted instantiation: mlp.c:var_SetCoords Unexecuted instantiation: mpeg4audio.c:var_SetCoords Unexecuted instantiation: mpeg4video.c:var_SetCoords Unexecuted instantiation: mpegaudio.c:var_SetCoords Unexecuted instantiation: mpegvideo.c:var_SetCoords Unexecuted instantiation: vc1.c:var_SetCoords Unexecuted instantiation: rawaud.c:var_SetCoords Unexecuted instantiation: rawvid.c:var_SetCoords Unexecuted instantiation: fs.c:var_SetCoords Unexecuted instantiation: file.c:var_SetCoords Unexecuted instantiation: directory.c:var_SetCoords Unexecuted instantiation: libxml.c:var_SetCoords Unexecuted instantiation: ogg.c:var_SetCoords Unexecuted instantiation: oggseek.c:var_SetCoords Unexecuted instantiation: ogg_granule.c:var_SetCoords Unexecuted instantiation: mkv.cpp:var_SetCoords(vlc_object_t*, char const*, int, int) Unexecuted instantiation: util.cpp:var_SetCoords(vlc_object_t*, char const*, int, int) Unexecuted instantiation: virtual_segment.cpp:var_SetCoords(vlc_object_t*, char const*, int, int) Unexecuted instantiation: matroska_segment.cpp:var_SetCoords(vlc_object_t*, char const*, int, int) Unexecuted instantiation: matroska_segment_parse.cpp:var_SetCoords(vlc_object_t*, char const*, int, int) Unexecuted instantiation: matroska_segment_seeker.cpp:var_SetCoords(vlc_object_t*, char const*, int, int) Unexecuted instantiation: demux.cpp:var_SetCoords(vlc_object_t*, char const*, int, int) Unexecuted instantiation: events.cpp:var_SetCoords(vlc_object_t*, char const*, int, int) Unexecuted instantiation: Ebml_parser.cpp:var_SetCoords(vlc_object_t*, char const*, int, int) Unexecuted instantiation: chapters.cpp:var_SetCoords(vlc_object_t*, char const*, int, int) Unexecuted instantiation: chapter_command.cpp:var_SetCoords(vlc_object_t*, char const*, int, int) Unexecuted instantiation: chapter_command_dvd.cpp:var_SetCoords(vlc_object_t*, char const*, int, int) Unexecuted instantiation: chapter_command_script.cpp:var_SetCoords(vlc_object_t*, char const*, int, int) Unexecuted instantiation: chapter_command_script_common.cpp:var_SetCoords(vlc_object_t*, char const*, int, int) Unexecuted instantiation: stream_io_callback.cpp:var_SetCoords(vlc_object_t*, char const*, int, int) Unexecuted instantiation: vlc_colors.c:var_SetCoords Unexecuted instantiation: adpcm.c:var_SetCoords Unexecuted instantiation: aes3.c:var_SetCoords Unexecuted instantiation: araw.c:var_SetCoords Unexecuted instantiation: g711.c:var_SetCoords Unexecuted instantiation: lpcm.c:var_SetCoords Unexecuted instantiation: uleaddvaudio.c:var_SetCoords Unexecuted instantiation: rawvideo.c:var_SetCoords Unexecuted instantiation: cc.c:var_SetCoords Unexecuted instantiation: cea708.c:var_SetCoords Unexecuted instantiation: cvdsub.c:var_SetCoords Unexecuted instantiation: dvbsub.c:var_SetCoords Unexecuted instantiation: scte18.c:var_SetCoords Unexecuted instantiation: atsc_a65.c:var_SetCoords Unexecuted instantiation: scte27.c:var_SetCoords Unexecuted instantiation: spudec.c:var_SetCoords Unexecuted instantiation: parse.c:var_SetCoords Unexecuted instantiation: stl.c:var_SetCoords Unexecuted instantiation: subsdec.c:var_SetCoords Unexecuted instantiation: subsusf.c:var_SetCoords Unexecuted instantiation: svcdsub.c:var_SetCoords Unexecuted instantiation: textst.c:var_SetCoords Unexecuted instantiation: substx3g.c:var_SetCoords Unexecuted instantiation: libvlc.c:var_SetCoords Unexecuted instantiation: version.c:var_SetCoords Unexecuted instantiation: chain.c:var_SetCoords Unexecuted instantiation: help.c:var_SetCoords Unexecuted instantiation: cmdline.c:var_SetCoords Unexecuted instantiation: getopt.c:var_SetCoords Unexecuted instantiation: libc.c:var_SetCoords Unexecuted instantiation: media_source.c:var_SetCoords Unexecuted instantiation: media_tree.c:var_SetCoords Unexecuted instantiation: modules.c:var_SetCoords Unexecuted instantiation: bank.c:var_SetCoords Unexecuted instantiation: entry.c:var_SetCoords Unexecuted instantiation: textdomain.c:var_SetCoords Unexecuted instantiation: dialog.c:var_SetCoords Unexecuted instantiation: interface.c:var_SetCoords Unexecuted instantiation: content.c:var_SetCoords Unexecuted instantiation: control.c:var_SetCoords Unexecuted instantiation: item.c:var_SetCoords Unexecuted instantiation: notify.c:var_SetCoords Unexecuted instantiation: player.c:var_SetCoords Unexecuted instantiation: playlist.c:var_SetCoords Unexecuted instantiation: preparse.c:var_SetCoords Unexecuted instantiation: randomizer.c:var_SetCoords Unexecuted instantiation: preparser.c:var_SetCoords Unexecuted instantiation: access.c:var_SetCoords Unexecuted instantiation: decoder_device.c:var_SetCoords Unexecuted instantiation: decoder_helpers.c:var_SetCoords Unexecuted instantiation: demux.c:var_SetCoords Unexecuted instantiation: input.c:var_SetCoords Unexecuted instantiation: attachment.c:var_SetCoords Unexecuted instantiation: replay_gain.c:var_SetCoords Unexecuted instantiation: timer.c:var_SetCoords Unexecuted instantiation: track.c:var_SetCoords Unexecuted instantiation: title.c:var_SetCoords Unexecuted instantiation: aout.c:var_SetCoords Unexecuted instantiation: vout.c:var_SetCoords Unexecuted instantiation: osd.c:var_SetCoords Unexecuted instantiation: medialib.c:var_SetCoords Unexecuted instantiation: resource.c:var_SetCoords Unexecuted instantiation: services_discovery.c:var_SetCoords Unexecuted instantiation: source.c:var_SetCoords Unexecuted instantiation: stats.c:var_SetCoords Unexecuted instantiation: stream.c:var_SetCoords Unexecuted instantiation: stream_extractor.c:var_SetCoords Unexecuted instantiation: stream_filter.c:var_SetCoords Unexecuted instantiation: stream_memory.c:var_SetCoords Unexecuted instantiation: subtitles.c:var_SetCoords Unexecuted instantiation: dec.c:var_SetCoords Unexecuted instantiation: filters.c:var_SetCoords Unexecuted instantiation: meter.c:var_SetCoords Unexecuted instantiation: output.c:var_SetCoords Unexecuted instantiation: volume.c:var_SetCoords Unexecuted instantiation: video_output.c:var_SetCoords Unexecuted instantiation: video_text.c:var_SetCoords Unexecuted instantiation: video_widgets.c:var_SetCoords Unexecuted instantiation: vout_subpictures.c:var_SetCoords Unexecuted instantiation: video_window.c:var_SetCoords Unexecuted instantiation: window.c:var_SetCoords Unexecuted instantiation: vout_intf.c:var_SetCoords Unexecuted instantiation: vout_wrapper.c:var_SetCoords Unexecuted instantiation: udp.c:var_SetCoords Unexecuted instantiation: charset.c:var_SetCoords Unexecuted instantiation: memstream.c:var_SetCoords Unexecuted instantiation: strings.c:var_SetCoords Unexecuted instantiation: unicode.c:var_SetCoords Unexecuted instantiation: url.c:var_SetCoords Unexecuted instantiation: filesystem.c:var_SetCoords Unexecuted instantiation: actions.c:var_SetCoords Unexecuted instantiation: ancillary.c:var_SetCoords Unexecuted instantiation: executor.c:var_SetCoords Unexecuted instantiation: md5.c:var_SetCoords Unexecuted instantiation: probe.c:var_SetCoords Unexecuted instantiation: mtime.c:var_SetCoords Unexecuted instantiation: frame.c:var_SetCoords Unexecuted instantiation: fifo.c:var_SetCoords Unexecuted instantiation: fourcc.c:var_SetCoords Unexecuted instantiation: es_format.c:var_SetCoords Unexecuted instantiation: picture.c:var_SetCoords Unexecuted instantiation: picture_fifo.c:var_SetCoords Unexecuted instantiation: picture_pool.c:var_SetCoords Unexecuted instantiation: interrupt.c:var_SetCoords Unexecuted instantiation: keystore.c:var_SetCoords Unexecuted instantiation: rcu.c:var_SetCoords Unexecuted instantiation: renderer_discovery.c:var_SetCoords Unexecuted instantiation: threads.c:var_SetCoords Unexecuted instantiation: cpu.c:var_SetCoords Unexecuted instantiation: epg.c:var_SetCoords Unexecuted instantiation: exit.c:var_SetCoords Unexecuted instantiation: image.c:var_SetCoords Unexecuted instantiation: messages.c:var_SetCoords Unexecuted instantiation: tracer.c:var_SetCoords Unexecuted instantiation: objects.c:var_SetCoords Unexecuted instantiation: objres.c:var_SetCoords Unexecuted instantiation: queue.c:var_SetCoords Unexecuted instantiation: variables.c:var_SetCoords Unexecuted instantiation: xml.c:var_SetCoords Unexecuted instantiation: filter.c:var_SetCoords Unexecuted instantiation: filter_chain.c:var_SetCoords Unexecuted instantiation: httpcookies.c:var_SetCoords Unexecuted instantiation: text_style.c:var_SetCoords Unexecuted instantiation: sort.c:var_SetCoords Unexecuted instantiation: subpicture.c:var_SetCoords Unexecuted instantiation: medialibrary.c:var_SetCoords Unexecuted instantiation: viewpoint.c:var_SetCoords Unexecuted instantiation: thread.c:var_SetCoords Unexecuted instantiation: rand.c:var_SetCoords Unexecuted instantiation: specific.c:var_SetCoords Unexecuted instantiation: stream_output.c:var_SetCoords Unexecuted instantiation: vlm.c:var_SetCoords Unexecuted instantiation: vlm_event.c:var_SetCoords Unexecuted instantiation: vlmshell.c:var_SetCoords Unexecuted instantiation: libvlc-module.c:var_SetCoords Unexecuted instantiation: dirs.c:var_SetCoords Unexecuted instantiation: art.c:var_SetCoords Unexecuted instantiation: fetcher.c:var_SetCoords Unexecuted instantiation: clock.c:var_SetCoords Unexecuted instantiation: es_out.c:var_SetCoords Unexecuted instantiation: es_out_source.c:var_SetCoords Unexecuted instantiation: es_out_timeshift.c:var_SetCoords Unexecuted instantiation: display.c:var_SetCoords Unexecuted instantiation: inhibit.c:var_SetCoords Unexecuted instantiation: interlacing.c:var_SetCoords Unexecuted instantiation: snapshot.c:var_SetCoords Unexecuted instantiation: getaddrinfo.c:var_SetCoords Unexecuted instantiation: io.c:var_SetCoords Unexecuted instantiation: iso_lang.c:var_SetCoords Unexecuted instantiation: chroma_probe.c:var_SetCoords Unexecuted instantiation: clock_internal.c:var_SetCoords Unexecuted instantiation: input_clock.c:var_SetCoords |
354 | | |
355 | | /** |
356 | | * Set the value of a float variable |
357 | | * |
358 | | * \param p_obj The object that holds the variable |
359 | | * \param psz_name The name of the variable |
360 | | * \param f The new float value of this variable |
361 | | */ |
362 | | static inline int var_SetFloat( vlc_object_t *p_obj, const char *psz_name, float f ) |
363 | 27 | { |
364 | 27 | vlc_value_t val; |
365 | 27 | val.f_float = f; |
366 | 27 | return var_SetChecked( p_obj, psz_name, VLC_VAR_FLOAT, val ); |
367 | 27 | } Unexecuted instantiation: demux-run.c:var_SetFloat Unexecuted instantiation: common.c:var_SetFloat Unexecuted instantiation: var.c:var_SetFloat Unexecuted instantiation: decoder.c:var_SetFloat Unexecuted instantiation: core.c:var_SetFloat Unexecuted instantiation: error.c:var_SetFloat Unexecuted instantiation: console.c:var_SetFloat Unexecuted instantiation: aiff.c:var_SetFloat Unexecuted instantiation: asf.c:var_SetFloat Unexecuted instantiation: libasf.c:var_SetFloat Unexecuted instantiation: asfpacket.c:var_SetFloat Unexecuted instantiation: au.c:var_SetFloat Unexecuted instantiation: avi.c:var_SetFloat Unexecuted instantiation: libavi.c:var_SetFloat Unexecuted instantiation: caf.c:var_SetFloat Unexecuted instantiation: cdg.c:var_SetFloat Unexecuted instantiation: es.c:var_SetFloat Unexecuted instantiation: dts_header.c:var_SetFloat Unexecuted instantiation: flac.c:var_SetFloat Unexecuted instantiation: xiph_metadata.c:var_SetFloat Unexecuted instantiation: h26x.c:var_SetFloat Unexecuted instantiation: mjpeg.c:var_SetFloat Unexecuted instantiation: mp4.c:var_SetFloat Unexecuted instantiation: fragments.c:var_SetFloat Unexecuted instantiation: attachments.c:var_SetFloat Unexecuted instantiation: heif.c:var_SetFloat Unexecuted instantiation: essetup.c:var_SetFloat Unexecuted instantiation: meta.c:var_SetFloat Unexecuted instantiation: libmp4.c:var_SetFloat Unexecuted instantiation: nsv.c:var_SetFloat Unexecuted instantiation: ps.c:var_SetFloat Unexecuted instantiation: pva.c:var_SetFloat Unexecuted instantiation: sap.c:var_SetFloat Unexecuted instantiation: sdp.c:var_SetFloat Unexecuted instantiation: smf.c:var_SetFloat Line | Count | Source | 363 | 27 | { | 364 | 27 | vlc_value_t val; | 365 | 27 | val.f_float = f; | 366 | 27 | return var_SetChecked( p_obj, psz_name, VLC_VAR_FLOAT, val ); | 367 | 27 | } |
Unexecuted instantiation: tta.c:var_SetFloat Unexecuted instantiation: ttml.c:var_SetFloat Unexecuted instantiation: encttml.c:var_SetFloat Unexecuted instantiation: substtml.c:var_SetFloat Unexecuted instantiation: genttml.c:var_SetFloat Unexecuted instantiation: ty.c:var_SetFloat Unexecuted instantiation: voc.c:var_SetFloat Unexecuted instantiation: wav.c:var_SetFloat Unexecuted instantiation: webvtt.c:var_SetFloat Unexecuted instantiation: encvtt.c:var_SetFloat Unexecuted instantiation: subsvtt.c:var_SetFloat Unexecuted instantiation: css_parser.c:var_SetFloat Unexecuted instantiation: css_style.c:var_SetFloat Unexecuted instantiation: CSSGrammar.c:var_SetFloat Unexecuted instantiation: libwebvtt_plugin_la-CSSLexer.c:var_SetFloat Unexecuted instantiation: xa.c:var_SetFloat Unexecuted instantiation: a52.c:var_SetFloat Unexecuted instantiation: copy.c:var_SetFloat Unexecuted instantiation: dts.c:var_SetFloat Unexecuted instantiation: h264.c:var_SetFloat Unexecuted instantiation: hxxx_sei.c:var_SetFloat Unexecuted instantiation: hxxx_common.c:var_SetFloat Unexecuted instantiation: h264_nal.c:var_SetFloat Unexecuted instantiation: h264_slice.c:var_SetFloat Unexecuted instantiation: hevc.c:var_SetFloat Unexecuted instantiation: hevc_nal.c:var_SetFloat Unexecuted instantiation: mlp.c:var_SetFloat Unexecuted instantiation: mpeg4audio.c:var_SetFloat Unexecuted instantiation: mpeg4video.c:var_SetFloat Unexecuted instantiation: mpegaudio.c:var_SetFloat Unexecuted instantiation: mpegvideo.c:var_SetFloat Unexecuted instantiation: vc1.c:var_SetFloat Unexecuted instantiation: rawaud.c:var_SetFloat Unexecuted instantiation: rawvid.c:var_SetFloat Unexecuted instantiation: fs.c:var_SetFloat Unexecuted instantiation: file.c:var_SetFloat Unexecuted instantiation: directory.c:var_SetFloat Unexecuted instantiation: libxml.c:var_SetFloat Unexecuted instantiation: ogg.c:var_SetFloat Unexecuted instantiation: oggseek.c:var_SetFloat Unexecuted instantiation: ogg_granule.c:var_SetFloat Unexecuted instantiation: mkv.cpp:var_SetFloat(vlc_object_t*, char const*, float) Unexecuted instantiation: util.cpp:var_SetFloat(vlc_object_t*, char const*, float) Unexecuted instantiation: virtual_segment.cpp:var_SetFloat(vlc_object_t*, char const*, float) Unexecuted instantiation: matroska_segment.cpp:var_SetFloat(vlc_object_t*, char const*, float) Unexecuted instantiation: matroska_segment_parse.cpp:var_SetFloat(vlc_object_t*, char const*, float) Unexecuted instantiation: matroska_segment_seeker.cpp:var_SetFloat(vlc_object_t*, char const*, float) Unexecuted instantiation: demux.cpp:var_SetFloat(vlc_object_t*, char const*, float) Unexecuted instantiation: events.cpp:var_SetFloat(vlc_object_t*, char const*, float) Unexecuted instantiation: Ebml_parser.cpp:var_SetFloat(vlc_object_t*, char const*, float) Unexecuted instantiation: chapters.cpp:var_SetFloat(vlc_object_t*, char const*, float) Unexecuted instantiation: chapter_command.cpp:var_SetFloat(vlc_object_t*, char const*, float) Unexecuted instantiation: chapter_command_dvd.cpp:var_SetFloat(vlc_object_t*, char const*, float) Unexecuted instantiation: chapter_command_script.cpp:var_SetFloat(vlc_object_t*, char const*, float) Unexecuted instantiation: chapter_command_script_common.cpp:var_SetFloat(vlc_object_t*, char const*, float) Unexecuted instantiation: stream_io_callback.cpp:var_SetFloat(vlc_object_t*, char const*, float) Unexecuted instantiation: vlc_colors.c:var_SetFloat Unexecuted instantiation: adpcm.c:var_SetFloat Unexecuted instantiation: aes3.c:var_SetFloat Unexecuted instantiation: araw.c:var_SetFloat Unexecuted instantiation: g711.c:var_SetFloat Unexecuted instantiation: lpcm.c:var_SetFloat Unexecuted instantiation: uleaddvaudio.c:var_SetFloat Unexecuted instantiation: rawvideo.c:var_SetFloat Unexecuted instantiation: cc.c:var_SetFloat Unexecuted instantiation: cea708.c:var_SetFloat Unexecuted instantiation: cvdsub.c:var_SetFloat Unexecuted instantiation: dvbsub.c:var_SetFloat Unexecuted instantiation: scte18.c:var_SetFloat Unexecuted instantiation: atsc_a65.c:var_SetFloat Unexecuted instantiation: scte27.c:var_SetFloat Unexecuted instantiation: spudec.c:var_SetFloat Unexecuted instantiation: parse.c:var_SetFloat Unexecuted instantiation: stl.c:var_SetFloat Unexecuted instantiation: subsdec.c:var_SetFloat Unexecuted instantiation: subsusf.c:var_SetFloat Unexecuted instantiation: svcdsub.c:var_SetFloat Unexecuted instantiation: textst.c:var_SetFloat Unexecuted instantiation: substx3g.c:var_SetFloat Unexecuted instantiation: libvlc.c:var_SetFloat Unexecuted instantiation: version.c:var_SetFloat Unexecuted instantiation: chain.c:var_SetFloat Unexecuted instantiation: help.c:var_SetFloat Unexecuted instantiation: cmdline.c:var_SetFloat Unexecuted instantiation: getopt.c:var_SetFloat Unexecuted instantiation: libc.c:var_SetFloat Unexecuted instantiation: media_source.c:var_SetFloat Unexecuted instantiation: media_tree.c:var_SetFloat Unexecuted instantiation: modules.c:var_SetFloat Unexecuted instantiation: bank.c:var_SetFloat Unexecuted instantiation: entry.c:var_SetFloat Unexecuted instantiation: textdomain.c:var_SetFloat Unexecuted instantiation: dialog.c:var_SetFloat Unexecuted instantiation: interface.c:var_SetFloat Unexecuted instantiation: content.c:var_SetFloat Unexecuted instantiation: control.c:var_SetFloat Unexecuted instantiation: item.c:var_SetFloat Unexecuted instantiation: notify.c:var_SetFloat Unexecuted instantiation: player.c:var_SetFloat Unexecuted instantiation: playlist.c:var_SetFloat Unexecuted instantiation: preparse.c:var_SetFloat Unexecuted instantiation: randomizer.c:var_SetFloat Unexecuted instantiation: preparser.c:var_SetFloat Unexecuted instantiation: access.c:var_SetFloat Unexecuted instantiation: decoder_device.c:var_SetFloat Unexecuted instantiation: decoder_helpers.c:var_SetFloat Unexecuted instantiation: demux.c:var_SetFloat Unexecuted instantiation: input.c:var_SetFloat Unexecuted instantiation: attachment.c:var_SetFloat Unexecuted instantiation: replay_gain.c:var_SetFloat Unexecuted instantiation: timer.c:var_SetFloat Unexecuted instantiation: track.c:var_SetFloat Unexecuted instantiation: title.c:var_SetFloat Unexecuted instantiation: aout.c:var_SetFloat Unexecuted instantiation: vout.c:var_SetFloat Unexecuted instantiation: osd.c:var_SetFloat Unexecuted instantiation: medialib.c:var_SetFloat Unexecuted instantiation: resource.c:var_SetFloat Unexecuted instantiation: services_discovery.c:var_SetFloat Unexecuted instantiation: source.c:var_SetFloat Unexecuted instantiation: stats.c:var_SetFloat Unexecuted instantiation: stream.c:var_SetFloat Unexecuted instantiation: stream_extractor.c:var_SetFloat Unexecuted instantiation: stream_filter.c:var_SetFloat Unexecuted instantiation: stream_memory.c:var_SetFloat Unexecuted instantiation: subtitles.c:var_SetFloat Unexecuted instantiation: dec.c:var_SetFloat Unexecuted instantiation: filters.c:var_SetFloat Unexecuted instantiation: meter.c:var_SetFloat Unexecuted instantiation: output.c:var_SetFloat Unexecuted instantiation: volume.c:var_SetFloat Unexecuted instantiation: video_output.c:var_SetFloat Unexecuted instantiation: video_text.c:var_SetFloat Unexecuted instantiation: video_widgets.c:var_SetFloat Unexecuted instantiation: vout_subpictures.c:var_SetFloat Unexecuted instantiation: video_window.c:var_SetFloat Unexecuted instantiation: window.c:var_SetFloat Unexecuted instantiation: vout_intf.c:var_SetFloat Unexecuted instantiation: vout_wrapper.c:var_SetFloat Unexecuted instantiation: udp.c:var_SetFloat Unexecuted instantiation: charset.c:var_SetFloat Unexecuted instantiation: memstream.c:var_SetFloat Unexecuted instantiation: strings.c:var_SetFloat Unexecuted instantiation: unicode.c:var_SetFloat Unexecuted instantiation: url.c:var_SetFloat Unexecuted instantiation: filesystem.c:var_SetFloat Unexecuted instantiation: actions.c:var_SetFloat Unexecuted instantiation: ancillary.c:var_SetFloat Unexecuted instantiation: executor.c:var_SetFloat Unexecuted instantiation: md5.c:var_SetFloat Unexecuted instantiation: probe.c:var_SetFloat Unexecuted instantiation: mtime.c:var_SetFloat Unexecuted instantiation: frame.c:var_SetFloat Unexecuted instantiation: fifo.c:var_SetFloat Unexecuted instantiation: fourcc.c:var_SetFloat Unexecuted instantiation: es_format.c:var_SetFloat Unexecuted instantiation: picture.c:var_SetFloat Unexecuted instantiation: picture_fifo.c:var_SetFloat Unexecuted instantiation: picture_pool.c:var_SetFloat Unexecuted instantiation: interrupt.c:var_SetFloat Unexecuted instantiation: keystore.c:var_SetFloat Unexecuted instantiation: rcu.c:var_SetFloat Unexecuted instantiation: renderer_discovery.c:var_SetFloat Unexecuted instantiation: threads.c:var_SetFloat Unexecuted instantiation: cpu.c:var_SetFloat Unexecuted instantiation: epg.c:var_SetFloat Unexecuted instantiation: exit.c:var_SetFloat Unexecuted instantiation: image.c:var_SetFloat Unexecuted instantiation: messages.c:var_SetFloat Unexecuted instantiation: tracer.c:var_SetFloat Unexecuted instantiation: objects.c:var_SetFloat Unexecuted instantiation: objres.c:var_SetFloat Unexecuted instantiation: queue.c:var_SetFloat Unexecuted instantiation: variables.c:var_SetFloat Unexecuted instantiation: xml.c:var_SetFloat Unexecuted instantiation: filter.c:var_SetFloat Unexecuted instantiation: filter_chain.c:var_SetFloat Unexecuted instantiation: httpcookies.c:var_SetFloat Unexecuted instantiation: text_style.c:var_SetFloat Unexecuted instantiation: sort.c:var_SetFloat Unexecuted instantiation: subpicture.c:var_SetFloat Unexecuted instantiation: medialibrary.c:var_SetFloat Unexecuted instantiation: viewpoint.c:var_SetFloat Unexecuted instantiation: thread.c:var_SetFloat Unexecuted instantiation: rand.c:var_SetFloat Unexecuted instantiation: specific.c:var_SetFloat Unexecuted instantiation: stream_output.c:var_SetFloat Unexecuted instantiation: vlm.c:var_SetFloat Unexecuted instantiation: vlm_event.c:var_SetFloat Unexecuted instantiation: vlmshell.c:var_SetFloat Unexecuted instantiation: libvlc-module.c:var_SetFloat Unexecuted instantiation: dirs.c:var_SetFloat Unexecuted instantiation: art.c:var_SetFloat Unexecuted instantiation: fetcher.c:var_SetFloat Unexecuted instantiation: clock.c:var_SetFloat Unexecuted instantiation: es_out.c:var_SetFloat Unexecuted instantiation: es_out_source.c:var_SetFloat Unexecuted instantiation: es_out_timeshift.c:var_SetFloat Unexecuted instantiation: display.c:var_SetFloat Unexecuted instantiation: inhibit.c:var_SetFloat Unexecuted instantiation: interlacing.c:var_SetFloat Unexecuted instantiation: snapshot.c:var_SetFloat Unexecuted instantiation: getaddrinfo.c:var_SetFloat Unexecuted instantiation: io.c:var_SetFloat Unexecuted instantiation: iso_lang.c:var_SetFloat Unexecuted instantiation: chroma_probe.c:var_SetFloat Unexecuted instantiation: clock_internal.c:var_SetFloat Unexecuted instantiation: input_clock.c:var_SetFloat |
368 | | |
369 | | /** |
370 | | * Set the value of a string variable |
371 | | * |
372 | | * \param p_obj The object that holds the variable |
373 | | * \param psz_name The name of the variable |
374 | | * \param psz_string The new string value of this variable |
375 | | */ |
376 | | static inline int var_SetString( vlc_object_t *p_obj, const char *psz_name, const char *psz_string ) |
377 | 6.82M | { |
378 | 6.82M | vlc_value_t val; |
379 | 6.82M | val.psz_string = (char *)psz_string; |
380 | 6.82M | return var_SetChecked( p_obj, psz_name, VLC_VAR_STRING, val ); |
381 | 6.82M | } Unexecuted instantiation: demux-run.c:var_SetString Unexecuted instantiation: common.c:var_SetString Unexecuted instantiation: var.c:var_SetString Unexecuted instantiation: decoder.c:var_SetString Unexecuted instantiation: core.c:var_SetString Unexecuted instantiation: error.c:var_SetString Unexecuted instantiation: console.c:var_SetString Unexecuted instantiation: aiff.c:var_SetString Unexecuted instantiation: asf.c:var_SetString Unexecuted instantiation: libasf.c:var_SetString Unexecuted instantiation: asfpacket.c:var_SetString Unexecuted instantiation: au.c:var_SetString Unexecuted instantiation: avi.c:var_SetString Unexecuted instantiation: libavi.c:var_SetString Unexecuted instantiation: caf.c:var_SetString Unexecuted instantiation: cdg.c:var_SetString Unexecuted instantiation: es.c:var_SetString Unexecuted instantiation: dts_header.c:var_SetString Unexecuted instantiation: flac.c:var_SetString Unexecuted instantiation: xiph_metadata.c:var_SetString Unexecuted instantiation: h26x.c:var_SetString Unexecuted instantiation: mjpeg.c:var_SetString Unexecuted instantiation: mp4.c:var_SetString Unexecuted instantiation: fragments.c:var_SetString Unexecuted instantiation: attachments.c:var_SetString Unexecuted instantiation: heif.c:var_SetString Unexecuted instantiation: essetup.c:var_SetString Unexecuted instantiation: meta.c:var_SetString Unexecuted instantiation: libmp4.c:var_SetString Unexecuted instantiation: nsv.c:var_SetString Unexecuted instantiation: ps.c:var_SetString Unexecuted instantiation: pva.c:var_SetString Unexecuted instantiation: sap.c:var_SetString Unexecuted instantiation: sdp.c:var_SetString Unexecuted instantiation: smf.c:var_SetString Unexecuted instantiation: subtitle.c:var_SetString Unexecuted instantiation: tta.c:var_SetString Unexecuted instantiation: ttml.c:var_SetString Unexecuted instantiation: encttml.c:var_SetString Unexecuted instantiation: substtml.c:var_SetString Unexecuted instantiation: genttml.c:var_SetString Unexecuted instantiation: ty.c:var_SetString Unexecuted instantiation: voc.c:var_SetString Unexecuted instantiation: wav.c:var_SetString Unexecuted instantiation: webvtt.c:var_SetString Unexecuted instantiation: encvtt.c:var_SetString Unexecuted instantiation: subsvtt.c:var_SetString Unexecuted instantiation: css_parser.c:var_SetString Unexecuted instantiation: css_style.c:var_SetString Unexecuted instantiation: CSSGrammar.c:var_SetString Unexecuted instantiation: libwebvtt_plugin_la-CSSLexer.c:var_SetString Unexecuted instantiation: xa.c:var_SetString Unexecuted instantiation: a52.c:var_SetString Unexecuted instantiation: copy.c:var_SetString Unexecuted instantiation: dts.c:var_SetString Unexecuted instantiation: h264.c:var_SetString Unexecuted instantiation: hxxx_sei.c:var_SetString Unexecuted instantiation: hxxx_common.c:var_SetString Unexecuted instantiation: h264_nal.c:var_SetString Unexecuted instantiation: h264_slice.c:var_SetString Unexecuted instantiation: hevc.c:var_SetString Unexecuted instantiation: hevc_nal.c:var_SetString Unexecuted instantiation: mlp.c:var_SetString Unexecuted instantiation: mpeg4audio.c:var_SetString Unexecuted instantiation: mpeg4video.c:var_SetString Unexecuted instantiation: mpegaudio.c:var_SetString Unexecuted instantiation: mpegvideo.c:var_SetString Unexecuted instantiation: vc1.c:var_SetString Unexecuted instantiation: rawaud.c:var_SetString Unexecuted instantiation: rawvid.c:var_SetString Unexecuted instantiation: fs.c:var_SetString Unexecuted instantiation: file.c:var_SetString Unexecuted instantiation: directory.c:var_SetString Unexecuted instantiation: libxml.c:var_SetString Unexecuted instantiation: ogg.c:var_SetString Unexecuted instantiation: oggseek.c:var_SetString Unexecuted instantiation: ogg_granule.c:var_SetString Unexecuted instantiation: mkv.cpp:var_SetString(vlc_object_t*, char const*, char const*) Unexecuted instantiation: util.cpp:var_SetString(vlc_object_t*, char const*, char const*) Unexecuted instantiation: virtual_segment.cpp:var_SetString(vlc_object_t*, char const*, char const*) Unexecuted instantiation: matroska_segment.cpp:var_SetString(vlc_object_t*, char const*, char const*) Unexecuted instantiation: matroska_segment_parse.cpp:var_SetString(vlc_object_t*, char const*, char const*) Unexecuted instantiation: matroska_segment_seeker.cpp:var_SetString(vlc_object_t*, char const*, char const*) Unexecuted instantiation: demux.cpp:var_SetString(vlc_object_t*, char const*, char const*) Unexecuted instantiation: events.cpp:var_SetString(vlc_object_t*, char const*, char const*) Unexecuted instantiation: Ebml_parser.cpp:var_SetString(vlc_object_t*, char const*, char const*) Unexecuted instantiation: chapters.cpp:var_SetString(vlc_object_t*, char const*, char const*) Unexecuted instantiation: chapter_command.cpp:var_SetString(vlc_object_t*, char const*, char const*) Unexecuted instantiation: chapter_command_dvd.cpp:var_SetString(vlc_object_t*, char const*, char const*) Unexecuted instantiation: chapter_command_script.cpp:var_SetString(vlc_object_t*, char const*, char const*) Unexecuted instantiation: chapter_command_script_common.cpp:var_SetString(vlc_object_t*, char const*, char const*) Unexecuted instantiation: stream_io_callback.cpp:var_SetString(vlc_object_t*, char const*, char const*) Unexecuted instantiation: vlc_colors.c:var_SetString Unexecuted instantiation: adpcm.c:var_SetString Unexecuted instantiation: aes3.c:var_SetString Unexecuted instantiation: araw.c:var_SetString Unexecuted instantiation: g711.c:var_SetString Unexecuted instantiation: lpcm.c:var_SetString Unexecuted instantiation: uleaddvaudio.c:var_SetString Unexecuted instantiation: rawvideo.c:var_SetString Unexecuted instantiation: cc.c:var_SetString Unexecuted instantiation: cea708.c:var_SetString Unexecuted instantiation: cvdsub.c:var_SetString Unexecuted instantiation: dvbsub.c:var_SetString Unexecuted instantiation: scte18.c:var_SetString Unexecuted instantiation: atsc_a65.c:var_SetString Unexecuted instantiation: scte27.c:var_SetString Unexecuted instantiation: spudec.c:var_SetString Unexecuted instantiation: parse.c:var_SetString Unexecuted instantiation: stl.c:var_SetString Unexecuted instantiation: subsdec.c:var_SetString Unexecuted instantiation: subsusf.c:var_SetString Unexecuted instantiation: svcdsub.c:var_SetString Unexecuted instantiation: textst.c:var_SetString Unexecuted instantiation: substx3g.c:var_SetString Line | Count | Source | 377 | 260 | { | 378 | 260 | vlc_value_t val; | 379 | 260 | val.psz_string = (char *)psz_string; | 380 | 260 | return var_SetChecked( p_obj, psz_name, VLC_VAR_STRING, val ); | 381 | 260 | } |
Unexecuted instantiation: version.c:var_SetString Unexecuted instantiation: chain.c:var_SetString Unexecuted instantiation: help.c:var_SetString Unexecuted instantiation: cmdline.c:var_SetString Unexecuted instantiation: getopt.c:var_SetString Unexecuted instantiation: libc.c:var_SetString Unexecuted instantiation: media_source.c:var_SetString Unexecuted instantiation: media_tree.c:var_SetString Line | Count | Source | 377 | 6.76M | { | 378 | 6.76M | vlc_value_t val; | 379 | 6.76M | val.psz_string = (char *)psz_string; | 380 | 6.76M | return var_SetChecked( p_obj, psz_name, VLC_VAR_STRING, val ); | 381 | 6.76M | } |
Unexecuted instantiation: bank.c:var_SetString Unexecuted instantiation: entry.c:var_SetString Unexecuted instantiation: textdomain.c:var_SetString Unexecuted instantiation: dialog.c:var_SetString Unexecuted instantiation: interface.c:var_SetString Unexecuted instantiation: content.c:var_SetString Unexecuted instantiation: control.c:var_SetString Unexecuted instantiation: item.c:var_SetString Unexecuted instantiation: notify.c:var_SetString Unexecuted instantiation: player.c:var_SetString Unexecuted instantiation: playlist.c:var_SetString Unexecuted instantiation: preparse.c:var_SetString Unexecuted instantiation: randomizer.c:var_SetString Unexecuted instantiation: preparser.c:var_SetString Unexecuted instantiation: access.c:var_SetString Unexecuted instantiation: decoder_device.c:var_SetString Unexecuted instantiation: decoder_helpers.c:var_SetString Line | Count | Source | 377 | 59.6k | { | 378 | 59.6k | vlc_value_t val; | 379 | 59.6k | val.psz_string = (char *)psz_string; | 380 | 59.6k | return var_SetChecked( p_obj, psz_name, VLC_VAR_STRING, val ); | 381 | 59.6k | } |
Unexecuted instantiation: input.c:var_SetString Unexecuted instantiation: attachment.c:var_SetString Unexecuted instantiation: replay_gain.c:var_SetString Unexecuted instantiation: timer.c:var_SetString Unexecuted instantiation: track.c:var_SetString Unexecuted instantiation: title.c:var_SetString Unexecuted instantiation: aout.c:var_SetString Unexecuted instantiation: vout.c:var_SetString Unexecuted instantiation: osd.c:var_SetString Unexecuted instantiation: medialib.c:var_SetString Unexecuted instantiation: resource.c:var_SetString Unexecuted instantiation: services_discovery.c:var_SetString Unexecuted instantiation: source.c:var_SetString Unexecuted instantiation: stats.c:var_SetString Unexecuted instantiation: stream.c:var_SetString Unexecuted instantiation: stream_extractor.c:var_SetString Unexecuted instantiation: stream_filter.c:var_SetString Unexecuted instantiation: stream_memory.c:var_SetString Unexecuted instantiation: subtitles.c:var_SetString Unexecuted instantiation: dec.c:var_SetString Unexecuted instantiation: filters.c:var_SetString Unexecuted instantiation: meter.c:var_SetString Unexecuted instantiation: output.c:var_SetString Unexecuted instantiation: volume.c:var_SetString Unexecuted instantiation: video_output.c:var_SetString Unexecuted instantiation: video_text.c:var_SetString Unexecuted instantiation: video_widgets.c:var_SetString Unexecuted instantiation: vout_subpictures.c:var_SetString Unexecuted instantiation: video_window.c:var_SetString Unexecuted instantiation: window.c:var_SetString Unexecuted instantiation: vout_intf.c:var_SetString Unexecuted instantiation: vout_wrapper.c:var_SetString Unexecuted instantiation: udp.c:var_SetString Unexecuted instantiation: charset.c:var_SetString Unexecuted instantiation: memstream.c:var_SetString Unexecuted instantiation: strings.c:var_SetString Unexecuted instantiation: unicode.c:var_SetString Unexecuted instantiation: url.c:var_SetString Unexecuted instantiation: filesystem.c:var_SetString Unexecuted instantiation: actions.c:var_SetString Unexecuted instantiation: ancillary.c:var_SetString Unexecuted instantiation: executor.c:var_SetString Unexecuted instantiation: md5.c:var_SetString Unexecuted instantiation: probe.c:var_SetString Unexecuted instantiation: mtime.c:var_SetString Unexecuted instantiation: frame.c:var_SetString Unexecuted instantiation: fifo.c:var_SetString Unexecuted instantiation: fourcc.c:var_SetString Unexecuted instantiation: es_format.c:var_SetString Unexecuted instantiation: picture.c:var_SetString Unexecuted instantiation: picture_fifo.c:var_SetString Unexecuted instantiation: picture_pool.c:var_SetString Unexecuted instantiation: interrupt.c:var_SetString Unexecuted instantiation: keystore.c:var_SetString Unexecuted instantiation: rcu.c:var_SetString Unexecuted instantiation: renderer_discovery.c:var_SetString Unexecuted instantiation: threads.c:var_SetString Unexecuted instantiation: cpu.c:var_SetString Unexecuted instantiation: epg.c:var_SetString Unexecuted instantiation: exit.c:var_SetString Unexecuted instantiation: image.c:var_SetString Unexecuted instantiation: messages.c:var_SetString Unexecuted instantiation: tracer.c:var_SetString Unexecuted instantiation: objects.c:var_SetString Unexecuted instantiation: objres.c:var_SetString Unexecuted instantiation: queue.c:var_SetString Unexecuted instantiation: variables.c:var_SetString Unexecuted instantiation: xml.c:var_SetString Unexecuted instantiation: filter.c:var_SetString Unexecuted instantiation: filter_chain.c:var_SetString Unexecuted instantiation: httpcookies.c:var_SetString Unexecuted instantiation: text_style.c:var_SetString Unexecuted instantiation: sort.c:var_SetString Unexecuted instantiation: subpicture.c:var_SetString Unexecuted instantiation: medialibrary.c:var_SetString Unexecuted instantiation: viewpoint.c:var_SetString Unexecuted instantiation: thread.c:var_SetString Unexecuted instantiation: rand.c:var_SetString Unexecuted instantiation: specific.c:var_SetString Unexecuted instantiation: stream_output.c:var_SetString Unexecuted instantiation: vlm.c:var_SetString Unexecuted instantiation: vlm_event.c:var_SetString Unexecuted instantiation: vlmshell.c:var_SetString Unexecuted instantiation: libvlc-module.c:var_SetString Unexecuted instantiation: dirs.c:var_SetString Unexecuted instantiation: art.c:var_SetString Unexecuted instantiation: fetcher.c:var_SetString Unexecuted instantiation: clock.c:var_SetString Unexecuted instantiation: es_out.c:var_SetString Unexecuted instantiation: es_out_source.c:var_SetString Unexecuted instantiation: es_out_timeshift.c:var_SetString Unexecuted instantiation: display.c:var_SetString Unexecuted instantiation: inhibit.c:var_SetString Unexecuted instantiation: interlacing.c:var_SetString Unexecuted instantiation: snapshot.c:var_SetString Unexecuted instantiation: getaddrinfo.c:var_SetString Unexecuted instantiation: io.c:var_SetString Unexecuted instantiation: iso_lang.c:var_SetString Unexecuted instantiation: chroma_probe.c:var_SetString Unexecuted instantiation: clock_internal.c:var_SetString Unexecuted instantiation: input_clock.c:var_SetString |
382 | | |
383 | | /** |
384 | | * Set the value of a pointer variable |
385 | | * |
386 | | * \param p_obj The object that holds the variable |
387 | | * \param psz_name The name of the variable |
388 | | * \param ptr The new pointer value of this variable |
389 | | */ |
390 | | static inline |
391 | | int var_SetAddress( vlc_object_t *p_obj, const char *psz_name, void *ptr ) |
392 | 0 | { |
393 | 0 | vlc_value_t val; |
394 | 0 | val.p_address = ptr; |
395 | 0 | return var_SetChecked( p_obj, psz_name, VLC_VAR_ADDRESS, val ); |
396 | 0 | } Unexecuted instantiation: demux-run.c:var_SetAddress Unexecuted instantiation: common.c:var_SetAddress Unexecuted instantiation: var.c:var_SetAddress Unexecuted instantiation: decoder.c:var_SetAddress Unexecuted instantiation: core.c:var_SetAddress Unexecuted instantiation: error.c:var_SetAddress Unexecuted instantiation: console.c:var_SetAddress Unexecuted instantiation: aiff.c:var_SetAddress Unexecuted instantiation: asf.c:var_SetAddress Unexecuted instantiation: libasf.c:var_SetAddress Unexecuted instantiation: asfpacket.c:var_SetAddress Unexecuted instantiation: au.c:var_SetAddress Unexecuted instantiation: avi.c:var_SetAddress Unexecuted instantiation: libavi.c:var_SetAddress Unexecuted instantiation: caf.c:var_SetAddress Unexecuted instantiation: cdg.c:var_SetAddress Unexecuted instantiation: es.c:var_SetAddress Unexecuted instantiation: dts_header.c:var_SetAddress Unexecuted instantiation: flac.c:var_SetAddress Unexecuted instantiation: xiph_metadata.c:var_SetAddress Unexecuted instantiation: h26x.c:var_SetAddress Unexecuted instantiation: mjpeg.c:var_SetAddress Unexecuted instantiation: mp4.c:var_SetAddress Unexecuted instantiation: fragments.c:var_SetAddress Unexecuted instantiation: attachments.c:var_SetAddress Unexecuted instantiation: heif.c:var_SetAddress Unexecuted instantiation: essetup.c:var_SetAddress Unexecuted instantiation: meta.c:var_SetAddress Unexecuted instantiation: libmp4.c:var_SetAddress Unexecuted instantiation: nsv.c:var_SetAddress Unexecuted instantiation: ps.c:var_SetAddress Unexecuted instantiation: pva.c:var_SetAddress Unexecuted instantiation: sap.c:var_SetAddress Unexecuted instantiation: sdp.c:var_SetAddress Unexecuted instantiation: smf.c:var_SetAddress Unexecuted instantiation: subtitle.c:var_SetAddress Unexecuted instantiation: tta.c:var_SetAddress Unexecuted instantiation: ttml.c:var_SetAddress Unexecuted instantiation: encttml.c:var_SetAddress Unexecuted instantiation: substtml.c:var_SetAddress Unexecuted instantiation: genttml.c:var_SetAddress Unexecuted instantiation: ty.c:var_SetAddress Unexecuted instantiation: voc.c:var_SetAddress Unexecuted instantiation: wav.c:var_SetAddress Unexecuted instantiation: webvtt.c:var_SetAddress Unexecuted instantiation: encvtt.c:var_SetAddress Unexecuted instantiation: subsvtt.c:var_SetAddress Unexecuted instantiation: css_parser.c:var_SetAddress Unexecuted instantiation: css_style.c:var_SetAddress Unexecuted instantiation: CSSGrammar.c:var_SetAddress Unexecuted instantiation: libwebvtt_plugin_la-CSSLexer.c:var_SetAddress Unexecuted instantiation: xa.c:var_SetAddress Unexecuted instantiation: a52.c:var_SetAddress Unexecuted instantiation: copy.c:var_SetAddress Unexecuted instantiation: dts.c:var_SetAddress Unexecuted instantiation: h264.c:var_SetAddress Unexecuted instantiation: hxxx_sei.c:var_SetAddress Unexecuted instantiation: hxxx_common.c:var_SetAddress Unexecuted instantiation: h264_nal.c:var_SetAddress Unexecuted instantiation: h264_slice.c:var_SetAddress Unexecuted instantiation: hevc.c:var_SetAddress Unexecuted instantiation: hevc_nal.c:var_SetAddress Unexecuted instantiation: mlp.c:var_SetAddress Unexecuted instantiation: mpeg4audio.c:var_SetAddress Unexecuted instantiation: mpeg4video.c:var_SetAddress Unexecuted instantiation: mpegaudio.c:var_SetAddress Unexecuted instantiation: mpegvideo.c:var_SetAddress Unexecuted instantiation: vc1.c:var_SetAddress Unexecuted instantiation: rawaud.c:var_SetAddress Unexecuted instantiation: rawvid.c:var_SetAddress Unexecuted instantiation: fs.c:var_SetAddress Unexecuted instantiation: file.c:var_SetAddress Unexecuted instantiation: directory.c:var_SetAddress Unexecuted instantiation: libxml.c:var_SetAddress Unexecuted instantiation: ogg.c:var_SetAddress Unexecuted instantiation: oggseek.c:var_SetAddress Unexecuted instantiation: ogg_granule.c:var_SetAddress Unexecuted instantiation: mkv.cpp:var_SetAddress(vlc_object_t*, char const*, void*) Unexecuted instantiation: util.cpp:var_SetAddress(vlc_object_t*, char const*, void*) Unexecuted instantiation: virtual_segment.cpp:var_SetAddress(vlc_object_t*, char const*, void*) Unexecuted instantiation: matroska_segment.cpp:var_SetAddress(vlc_object_t*, char const*, void*) Unexecuted instantiation: matroska_segment_parse.cpp:var_SetAddress(vlc_object_t*, char const*, void*) Unexecuted instantiation: matroska_segment_seeker.cpp:var_SetAddress(vlc_object_t*, char const*, void*) Unexecuted instantiation: demux.cpp:var_SetAddress(vlc_object_t*, char const*, void*) Unexecuted instantiation: events.cpp:var_SetAddress(vlc_object_t*, char const*, void*) Unexecuted instantiation: Ebml_parser.cpp:var_SetAddress(vlc_object_t*, char const*, void*) Unexecuted instantiation: chapters.cpp:var_SetAddress(vlc_object_t*, char const*, void*) Unexecuted instantiation: chapter_command.cpp:var_SetAddress(vlc_object_t*, char const*, void*) Unexecuted instantiation: chapter_command_dvd.cpp:var_SetAddress(vlc_object_t*, char const*, void*) Unexecuted instantiation: chapter_command_script.cpp:var_SetAddress(vlc_object_t*, char const*, void*) Unexecuted instantiation: chapter_command_script_common.cpp:var_SetAddress(vlc_object_t*, char const*, void*) Unexecuted instantiation: stream_io_callback.cpp:var_SetAddress(vlc_object_t*, char const*, void*) Unexecuted instantiation: vlc_colors.c:var_SetAddress Unexecuted instantiation: adpcm.c:var_SetAddress Unexecuted instantiation: aes3.c:var_SetAddress Unexecuted instantiation: araw.c:var_SetAddress Unexecuted instantiation: g711.c:var_SetAddress Unexecuted instantiation: lpcm.c:var_SetAddress Unexecuted instantiation: uleaddvaudio.c:var_SetAddress Unexecuted instantiation: rawvideo.c:var_SetAddress Unexecuted instantiation: cc.c:var_SetAddress Unexecuted instantiation: cea708.c:var_SetAddress Unexecuted instantiation: cvdsub.c:var_SetAddress Unexecuted instantiation: dvbsub.c:var_SetAddress Unexecuted instantiation: scte18.c:var_SetAddress Unexecuted instantiation: atsc_a65.c:var_SetAddress Unexecuted instantiation: scte27.c:var_SetAddress Unexecuted instantiation: spudec.c:var_SetAddress Unexecuted instantiation: parse.c:var_SetAddress Unexecuted instantiation: stl.c:var_SetAddress Unexecuted instantiation: subsdec.c:var_SetAddress Unexecuted instantiation: subsusf.c:var_SetAddress Unexecuted instantiation: svcdsub.c:var_SetAddress Unexecuted instantiation: textst.c:var_SetAddress Unexecuted instantiation: substx3g.c:var_SetAddress Unexecuted instantiation: libvlc.c:var_SetAddress Unexecuted instantiation: version.c:var_SetAddress Unexecuted instantiation: chain.c:var_SetAddress Unexecuted instantiation: help.c:var_SetAddress Unexecuted instantiation: cmdline.c:var_SetAddress Unexecuted instantiation: getopt.c:var_SetAddress Unexecuted instantiation: libc.c:var_SetAddress Unexecuted instantiation: media_source.c:var_SetAddress Unexecuted instantiation: media_tree.c:var_SetAddress Unexecuted instantiation: modules.c:var_SetAddress Unexecuted instantiation: bank.c:var_SetAddress Unexecuted instantiation: entry.c:var_SetAddress Unexecuted instantiation: textdomain.c:var_SetAddress Unexecuted instantiation: dialog.c:var_SetAddress Unexecuted instantiation: interface.c:var_SetAddress Unexecuted instantiation: content.c:var_SetAddress Unexecuted instantiation: control.c:var_SetAddress Unexecuted instantiation: item.c:var_SetAddress Unexecuted instantiation: notify.c:var_SetAddress Unexecuted instantiation: player.c:var_SetAddress Unexecuted instantiation: playlist.c:var_SetAddress Unexecuted instantiation: preparse.c:var_SetAddress Unexecuted instantiation: randomizer.c:var_SetAddress Unexecuted instantiation: preparser.c:var_SetAddress Unexecuted instantiation: access.c:var_SetAddress Unexecuted instantiation: decoder_device.c:var_SetAddress Unexecuted instantiation: decoder_helpers.c:var_SetAddress Unexecuted instantiation: demux.c:var_SetAddress Unexecuted instantiation: input.c:var_SetAddress Unexecuted instantiation: attachment.c:var_SetAddress Unexecuted instantiation: replay_gain.c:var_SetAddress Unexecuted instantiation: timer.c:var_SetAddress Unexecuted instantiation: track.c:var_SetAddress Unexecuted instantiation: title.c:var_SetAddress Unexecuted instantiation: aout.c:var_SetAddress Unexecuted instantiation: vout.c:var_SetAddress Unexecuted instantiation: osd.c:var_SetAddress Unexecuted instantiation: medialib.c:var_SetAddress Unexecuted instantiation: resource.c:var_SetAddress Unexecuted instantiation: services_discovery.c:var_SetAddress Unexecuted instantiation: source.c:var_SetAddress Unexecuted instantiation: stats.c:var_SetAddress Unexecuted instantiation: stream.c:var_SetAddress Unexecuted instantiation: stream_extractor.c:var_SetAddress Unexecuted instantiation: stream_filter.c:var_SetAddress Unexecuted instantiation: stream_memory.c:var_SetAddress Unexecuted instantiation: subtitles.c:var_SetAddress Unexecuted instantiation: dec.c:var_SetAddress Unexecuted instantiation: filters.c:var_SetAddress Unexecuted instantiation: meter.c:var_SetAddress Unexecuted instantiation: output.c:var_SetAddress Unexecuted instantiation: volume.c:var_SetAddress Unexecuted instantiation: video_output.c:var_SetAddress Unexecuted instantiation: video_text.c:var_SetAddress Unexecuted instantiation: video_widgets.c:var_SetAddress Unexecuted instantiation: vout_subpictures.c:var_SetAddress Unexecuted instantiation: video_window.c:var_SetAddress Unexecuted instantiation: window.c:var_SetAddress Unexecuted instantiation: vout_intf.c:var_SetAddress Unexecuted instantiation: vout_wrapper.c:var_SetAddress Unexecuted instantiation: udp.c:var_SetAddress Unexecuted instantiation: charset.c:var_SetAddress Unexecuted instantiation: memstream.c:var_SetAddress Unexecuted instantiation: strings.c:var_SetAddress Unexecuted instantiation: unicode.c:var_SetAddress Unexecuted instantiation: url.c:var_SetAddress Unexecuted instantiation: filesystem.c:var_SetAddress Unexecuted instantiation: actions.c:var_SetAddress Unexecuted instantiation: ancillary.c:var_SetAddress Unexecuted instantiation: executor.c:var_SetAddress Unexecuted instantiation: md5.c:var_SetAddress Unexecuted instantiation: probe.c:var_SetAddress Unexecuted instantiation: mtime.c:var_SetAddress Unexecuted instantiation: frame.c:var_SetAddress Unexecuted instantiation: fifo.c:var_SetAddress Unexecuted instantiation: fourcc.c:var_SetAddress Unexecuted instantiation: es_format.c:var_SetAddress Unexecuted instantiation: picture.c:var_SetAddress Unexecuted instantiation: picture_fifo.c:var_SetAddress Unexecuted instantiation: picture_pool.c:var_SetAddress Unexecuted instantiation: interrupt.c:var_SetAddress Unexecuted instantiation: keystore.c:var_SetAddress Unexecuted instantiation: rcu.c:var_SetAddress Unexecuted instantiation: renderer_discovery.c:var_SetAddress Unexecuted instantiation: threads.c:var_SetAddress Unexecuted instantiation: cpu.c:var_SetAddress Unexecuted instantiation: epg.c:var_SetAddress Unexecuted instantiation: exit.c:var_SetAddress Unexecuted instantiation: image.c:var_SetAddress Unexecuted instantiation: messages.c:var_SetAddress Unexecuted instantiation: tracer.c:var_SetAddress Unexecuted instantiation: objects.c:var_SetAddress Unexecuted instantiation: objres.c:var_SetAddress Unexecuted instantiation: queue.c:var_SetAddress Unexecuted instantiation: variables.c:var_SetAddress Unexecuted instantiation: xml.c:var_SetAddress Unexecuted instantiation: filter.c:var_SetAddress Unexecuted instantiation: filter_chain.c:var_SetAddress Unexecuted instantiation: httpcookies.c:var_SetAddress Unexecuted instantiation: text_style.c:var_SetAddress Unexecuted instantiation: sort.c:var_SetAddress Unexecuted instantiation: subpicture.c:var_SetAddress Unexecuted instantiation: medialibrary.c:var_SetAddress Unexecuted instantiation: viewpoint.c:var_SetAddress Unexecuted instantiation: thread.c:var_SetAddress Unexecuted instantiation: rand.c:var_SetAddress Unexecuted instantiation: specific.c:var_SetAddress Unexecuted instantiation: stream_output.c:var_SetAddress Unexecuted instantiation: vlm.c:var_SetAddress Unexecuted instantiation: vlm_event.c:var_SetAddress Unexecuted instantiation: vlmshell.c:var_SetAddress Unexecuted instantiation: libvlc-module.c:var_SetAddress Unexecuted instantiation: dirs.c:var_SetAddress Unexecuted instantiation: art.c:var_SetAddress Unexecuted instantiation: fetcher.c:var_SetAddress Unexecuted instantiation: clock.c:var_SetAddress Unexecuted instantiation: es_out.c:var_SetAddress Unexecuted instantiation: es_out_source.c:var_SetAddress Unexecuted instantiation: es_out_timeshift.c:var_SetAddress Unexecuted instantiation: display.c:var_SetAddress Unexecuted instantiation: inhibit.c:var_SetAddress Unexecuted instantiation: interlacing.c:var_SetAddress Unexecuted instantiation: snapshot.c:var_SetAddress Unexecuted instantiation: getaddrinfo.c:var_SetAddress Unexecuted instantiation: io.c:var_SetAddress Unexecuted instantiation: iso_lang.c:var_SetAddress Unexecuted instantiation: chroma_probe.c:var_SetAddress Unexecuted instantiation: clock_internal.c:var_SetAddress Unexecuted instantiation: input_clock.c:var_SetAddress |
397 | | |
398 | | /** |
399 | | * Get an integer value |
400 | | * |
401 | | * \param p_obj The object that holds the variable |
402 | | * \param psz_name The name of the variable |
403 | | */ |
404 | | VLC_USED |
405 | | static inline int64_t var_GetInteger( vlc_object_t *p_obj, const char *psz_name ) |
406 | 3 | { |
407 | 3 | vlc_value_t val; |
408 | 3 | if( !var_GetChecked( p_obj, psz_name, VLC_VAR_INTEGER, &val ) ) |
409 | 3 | return val.i_int; |
410 | 0 | else |
411 | 0 | return 0; |
412 | 3 | } Unexecuted instantiation: demux-run.c:var_GetInteger Unexecuted instantiation: common.c:var_GetInteger Unexecuted instantiation: var.c:var_GetInteger Unexecuted instantiation: decoder.c:var_GetInteger Unexecuted instantiation: core.c:var_GetInteger Unexecuted instantiation: error.c:var_GetInteger Unexecuted instantiation: console.c:var_GetInteger Unexecuted instantiation: aiff.c:var_GetInteger Unexecuted instantiation: asf.c:var_GetInteger Unexecuted instantiation: libasf.c:var_GetInteger Unexecuted instantiation: asfpacket.c:var_GetInteger Unexecuted instantiation: au.c:var_GetInteger Unexecuted instantiation: avi.c:var_GetInteger Unexecuted instantiation: libavi.c:var_GetInteger Unexecuted instantiation: caf.c:var_GetInteger Unexecuted instantiation: cdg.c:var_GetInteger Unexecuted instantiation: es.c:var_GetInteger Unexecuted instantiation: dts_header.c:var_GetInteger Unexecuted instantiation: flac.c:var_GetInteger Unexecuted instantiation: xiph_metadata.c:var_GetInteger Unexecuted instantiation: h26x.c:var_GetInteger Unexecuted instantiation: mjpeg.c:var_GetInteger Unexecuted instantiation: mp4.c:var_GetInteger Unexecuted instantiation: fragments.c:var_GetInteger Unexecuted instantiation: attachments.c:var_GetInteger Unexecuted instantiation: heif.c:var_GetInteger Unexecuted instantiation: essetup.c:var_GetInteger Unexecuted instantiation: meta.c:var_GetInteger Unexecuted instantiation: libmp4.c:var_GetInteger Unexecuted instantiation: nsv.c:var_GetInteger Unexecuted instantiation: ps.c:var_GetInteger Unexecuted instantiation: pva.c:var_GetInteger Unexecuted instantiation: sap.c:var_GetInteger Unexecuted instantiation: sdp.c:var_GetInteger Unexecuted instantiation: smf.c:var_GetInteger Unexecuted instantiation: subtitle.c:var_GetInteger Unexecuted instantiation: tta.c:var_GetInteger Unexecuted instantiation: ttml.c:var_GetInteger Unexecuted instantiation: encttml.c:var_GetInteger Unexecuted instantiation: substtml.c:var_GetInteger Unexecuted instantiation: genttml.c:var_GetInteger Unexecuted instantiation: ty.c:var_GetInteger Unexecuted instantiation: voc.c:var_GetInteger Unexecuted instantiation: wav.c:var_GetInteger Unexecuted instantiation: webvtt.c:var_GetInteger Unexecuted instantiation: encvtt.c:var_GetInteger Unexecuted instantiation: subsvtt.c:var_GetInteger Unexecuted instantiation: css_parser.c:var_GetInteger Unexecuted instantiation: css_style.c:var_GetInteger Unexecuted instantiation: CSSGrammar.c:var_GetInteger Unexecuted instantiation: libwebvtt_plugin_la-CSSLexer.c:var_GetInteger Unexecuted instantiation: xa.c:var_GetInteger Unexecuted instantiation: a52.c:var_GetInteger Unexecuted instantiation: copy.c:var_GetInteger Unexecuted instantiation: dts.c:var_GetInteger Unexecuted instantiation: h264.c:var_GetInteger Unexecuted instantiation: hxxx_sei.c:var_GetInteger Unexecuted instantiation: hxxx_common.c:var_GetInteger Unexecuted instantiation: h264_nal.c:var_GetInteger Unexecuted instantiation: h264_slice.c:var_GetInteger Unexecuted instantiation: hevc.c:var_GetInteger Unexecuted instantiation: hevc_nal.c:var_GetInteger Unexecuted instantiation: mlp.c:var_GetInteger Unexecuted instantiation: mpeg4audio.c:var_GetInteger Unexecuted instantiation: mpeg4video.c:var_GetInteger Unexecuted instantiation: mpegaudio.c:var_GetInteger Unexecuted instantiation: mpegvideo.c:var_GetInteger Unexecuted instantiation: vc1.c:var_GetInteger Unexecuted instantiation: rawaud.c:var_GetInteger Unexecuted instantiation: rawvid.c:var_GetInteger Unexecuted instantiation: fs.c:var_GetInteger Unexecuted instantiation: file.c:var_GetInteger Unexecuted instantiation: directory.c:var_GetInteger Unexecuted instantiation: libxml.c:var_GetInteger Unexecuted instantiation: ogg.c:var_GetInteger Unexecuted instantiation: oggseek.c:var_GetInteger Unexecuted instantiation: ogg_granule.c:var_GetInteger Unexecuted instantiation: mkv.cpp:var_GetInteger(vlc_object_t*, char const*) Unexecuted instantiation: util.cpp:var_GetInteger(vlc_object_t*, char const*) Unexecuted instantiation: virtual_segment.cpp:var_GetInteger(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment.cpp:var_GetInteger(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment_parse.cpp:var_GetInteger(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment_seeker.cpp:var_GetInteger(vlc_object_t*, char const*) Unexecuted instantiation: demux.cpp:var_GetInteger(vlc_object_t*, char const*) Unexecuted instantiation: events.cpp:var_GetInteger(vlc_object_t*, char const*) Unexecuted instantiation: Ebml_parser.cpp:var_GetInteger(vlc_object_t*, char const*) Unexecuted instantiation: chapters.cpp:var_GetInteger(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command.cpp:var_GetInteger(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_dvd.cpp:var_GetInteger(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_script.cpp:var_GetInteger(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_script_common.cpp:var_GetInteger(vlc_object_t*, char const*) Unexecuted instantiation: stream_io_callback.cpp:var_GetInteger(vlc_object_t*, char const*) Unexecuted instantiation: vlc_colors.c:var_GetInteger Unexecuted instantiation: adpcm.c:var_GetInteger Unexecuted instantiation: aes3.c:var_GetInteger Unexecuted instantiation: araw.c:var_GetInteger Unexecuted instantiation: g711.c:var_GetInteger Unexecuted instantiation: lpcm.c:var_GetInteger Unexecuted instantiation: uleaddvaudio.c:var_GetInteger Unexecuted instantiation: rawvideo.c:var_GetInteger Unexecuted instantiation: cc.c:var_GetInteger Unexecuted instantiation: cea708.c:var_GetInteger Unexecuted instantiation: cvdsub.c:var_GetInteger Line | Count | Source | 406 | 3 | { | 407 | 3 | vlc_value_t val; | 408 | 3 | if( !var_GetChecked( p_obj, psz_name, VLC_VAR_INTEGER, &val ) ) | 409 | 3 | return val.i_int; | 410 | 0 | else | 411 | 0 | return 0; | 412 | 3 | } |
Unexecuted instantiation: scte18.c:var_GetInteger Unexecuted instantiation: atsc_a65.c:var_GetInteger Unexecuted instantiation: scte27.c:var_GetInteger Unexecuted instantiation: spudec.c:var_GetInteger Unexecuted instantiation: parse.c:var_GetInteger Unexecuted instantiation: stl.c:var_GetInteger Unexecuted instantiation: subsdec.c:var_GetInteger Unexecuted instantiation: subsusf.c:var_GetInteger Unexecuted instantiation: svcdsub.c:var_GetInteger Unexecuted instantiation: textst.c:var_GetInteger Unexecuted instantiation: substx3g.c:var_GetInteger Unexecuted instantiation: libvlc.c:var_GetInteger Unexecuted instantiation: version.c:var_GetInteger Unexecuted instantiation: chain.c:var_GetInteger Unexecuted instantiation: help.c:var_GetInteger Unexecuted instantiation: cmdline.c:var_GetInteger Unexecuted instantiation: getopt.c:var_GetInteger Unexecuted instantiation: libc.c:var_GetInteger Unexecuted instantiation: media_source.c:var_GetInteger Unexecuted instantiation: media_tree.c:var_GetInteger Unexecuted instantiation: modules.c:var_GetInteger Unexecuted instantiation: bank.c:var_GetInteger Unexecuted instantiation: entry.c:var_GetInteger Unexecuted instantiation: textdomain.c:var_GetInteger Unexecuted instantiation: dialog.c:var_GetInteger Unexecuted instantiation: interface.c:var_GetInteger Unexecuted instantiation: content.c:var_GetInteger Unexecuted instantiation: control.c:var_GetInteger Unexecuted instantiation: item.c:var_GetInteger Unexecuted instantiation: notify.c:var_GetInteger Unexecuted instantiation: player.c:var_GetInteger Unexecuted instantiation: playlist.c:var_GetInteger Unexecuted instantiation: preparse.c:var_GetInteger Unexecuted instantiation: randomizer.c:var_GetInteger Unexecuted instantiation: preparser.c:var_GetInteger Unexecuted instantiation: access.c:var_GetInteger Unexecuted instantiation: decoder_device.c:var_GetInteger Unexecuted instantiation: decoder_helpers.c:var_GetInteger Unexecuted instantiation: demux.c:var_GetInteger Unexecuted instantiation: input.c:var_GetInteger Unexecuted instantiation: attachment.c:var_GetInteger Unexecuted instantiation: replay_gain.c:var_GetInteger Unexecuted instantiation: timer.c:var_GetInteger Unexecuted instantiation: track.c:var_GetInteger Unexecuted instantiation: title.c:var_GetInteger Unexecuted instantiation: aout.c:var_GetInteger Unexecuted instantiation: vout.c:var_GetInteger Unexecuted instantiation: osd.c:var_GetInteger Unexecuted instantiation: medialib.c:var_GetInteger Unexecuted instantiation: resource.c:var_GetInteger Unexecuted instantiation: services_discovery.c:var_GetInteger Unexecuted instantiation: source.c:var_GetInteger Unexecuted instantiation: stats.c:var_GetInteger Unexecuted instantiation: stream.c:var_GetInteger Unexecuted instantiation: stream_extractor.c:var_GetInteger Unexecuted instantiation: stream_filter.c:var_GetInteger Unexecuted instantiation: stream_memory.c:var_GetInteger Unexecuted instantiation: subtitles.c:var_GetInteger Unexecuted instantiation: dec.c:var_GetInteger Unexecuted instantiation: filters.c:var_GetInteger Unexecuted instantiation: meter.c:var_GetInteger Unexecuted instantiation: output.c:var_GetInteger Unexecuted instantiation: volume.c:var_GetInteger Unexecuted instantiation: video_output.c:var_GetInteger Unexecuted instantiation: video_text.c:var_GetInteger Unexecuted instantiation: video_widgets.c:var_GetInteger Unexecuted instantiation: vout_subpictures.c:var_GetInteger Unexecuted instantiation: video_window.c:var_GetInteger Unexecuted instantiation: window.c:var_GetInteger Unexecuted instantiation: vout_intf.c:var_GetInteger Unexecuted instantiation: vout_wrapper.c:var_GetInteger Unexecuted instantiation: udp.c:var_GetInteger Unexecuted instantiation: charset.c:var_GetInteger Unexecuted instantiation: memstream.c:var_GetInteger Unexecuted instantiation: strings.c:var_GetInteger Unexecuted instantiation: unicode.c:var_GetInteger Unexecuted instantiation: url.c:var_GetInteger Unexecuted instantiation: filesystem.c:var_GetInteger Unexecuted instantiation: actions.c:var_GetInteger Unexecuted instantiation: ancillary.c:var_GetInteger Unexecuted instantiation: executor.c:var_GetInteger Unexecuted instantiation: md5.c:var_GetInteger Unexecuted instantiation: probe.c:var_GetInteger Unexecuted instantiation: mtime.c:var_GetInteger Unexecuted instantiation: frame.c:var_GetInteger Unexecuted instantiation: fifo.c:var_GetInteger Unexecuted instantiation: fourcc.c:var_GetInteger Unexecuted instantiation: es_format.c:var_GetInteger Unexecuted instantiation: picture.c:var_GetInteger Unexecuted instantiation: picture_fifo.c:var_GetInteger Unexecuted instantiation: picture_pool.c:var_GetInteger Unexecuted instantiation: interrupt.c:var_GetInteger Unexecuted instantiation: keystore.c:var_GetInteger Unexecuted instantiation: rcu.c:var_GetInteger Unexecuted instantiation: renderer_discovery.c:var_GetInteger Unexecuted instantiation: threads.c:var_GetInteger Unexecuted instantiation: cpu.c:var_GetInteger Unexecuted instantiation: epg.c:var_GetInteger Unexecuted instantiation: exit.c:var_GetInteger Unexecuted instantiation: image.c:var_GetInteger Unexecuted instantiation: messages.c:var_GetInteger Unexecuted instantiation: tracer.c:var_GetInteger Unexecuted instantiation: objects.c:var_GetInteger Unexecuted instantiation: objres.c:var_GetInteger Unexecuted instantiation: queue.c:var_GetInteger Unexecuted instantiation: variables.c:var_GetInteger Unexecuted instantiation: xml.c:var_GetInteger Unexecuted instantiation: filter.c:var_GetInteger Unexecuted instantiation: filter_chain.c:var_GetInteger Unexecuted instantiation: httpcookies.c:var_GetInteger Unexecuted instantiation: text_style.c:var_GetInteger Unexecuted instantiation: sort.c:var_GetInteger Unexecuted instantiation: subpicture.c:var_GetInteger Unexecuted instantiation: medialibrary.c:var_GetInteger Unexecuted instantiation: viewpoint.c:var_GetInteger Unexecuted instantiation: thread.c:var_GetInteger Unexecuted instantiation: rand.c:var_GetInteger Unexecuted instantiation: specific.c:var_GetInteger Unexecuted instantiation: stream_output.c:var_GetInteger Unexecuted instantiation: vlm.c:var_GetInteger Unexecuted instantiation: vlm_event.c:var_GetInteger Unexecuted instantiation: vlmshell.c:var_GetInteger Unexecuted instantiation: libvlc-module.c:var_GetInteger Unexecuted instantiation: dirs.c:var_GetInteger Unexecuted instantiation: art.c:var_GetInteger Unexecuted instantiation: fetcher.c:var_GetInteger Unexecuted instantiation: clock.c:var_GetInteger Unexecuted instantiation: es_out.c:var_GetInteger Unexecuted instantiation: es_out_source.c:var_GetInteger Unexecuted instantiation: es_out_timeshift.c:var_GetInteger Unexecuted instantiation: display.c:var_GetInteger Unexecuted instantiation: inhibit.c:var_GetInteger Unexecuted instantiation: interlacing.c:var_GetInteger Unexecuted instantiation: snapshot.c:var_GetInteger Unexecuted instantiation: getaddrinfo.c:var_GetInteger Unexecuted instantiation: io.c:var_GetInteger Unexecuted instantiation: iso_lang.c:var_GetInteger Unexecuted instantiation: chroma_probe.c:var_GetInteger Unexecuted instantiation: clock_internal.c:var_GetInteger Unexecuted instantiation: input_clock.c:var_GetInteger |
413 | | |
414 | | /** |
415 | | * Get a boolean value |
416 | | * |
417 | | * \param p_obj The object that holds the variable |
418 | | * \param psz_name The name of the variable |
419 | | */ |
420 | | VLC_USED |
421 | | static inline bool var_GetBool( vlc_object_t *p_obj, const char *psz_name ) |
422 | 1.42k | { |
423 | 1.42k | vlc_value_t val; val.b_bool = false; |
424 | | |
425 | 1.42k | if( !var_GetChecked( p_obj, psz_name, VLC_VAR_BOOL, &val ) ) |
426 | 1.42k | return val.b_bool; |
427 | 0 | else |
428 | 0 | return false; |
429 | 1.42k | } Unexecuted instantiation: demux-run.c:var_GetBool Unexecuted instantiation: common.c:var_GetBool Unexecuted instantiation: var.c:var_GetBool Unexecuted instantiation: decoder.c:var_GetBool Unexecuted instantiation: core.c:var_GetBool Unexecuted instantiation: error.c:var_GetBool Unexecuted instantiation: console.c:var_GetBool Unexecuted instantiation: aiff.c:var_GetBool Unexecuted instantiation: asf.c:var_GetBool Unexecuted instantiation: libasf.c:var_GetBool Unexecuted instantiation: asfpacket.c:var_GetBool Unexecuted instantiation: au.c:var_GetBool Unexecuted instantiation: avi.c:var_GetBool Unexecuted instantiation: libavi.c:var_GetBool Unexecuted instantiation: caf.c:var_GetBool Unexecuted instantiation: cdg.c:var_GetBool Unexecuted instantiation: es.c:var_GetBool Unexecuted instantiation: dts_header.c:var_GetBool Unexecuted instantiation: flac.c:var_GetBool Unexecuted instantiation: xiph_metadata.c:var_GetBool Unexecuted instantiation: h26x.c:var_GetBool Unexecuted instantiation: mjpeg.c:var_GetBool Unexecuted instantiation: mp4.c:var_GetBool Unexecuted instantiation: fragments.c:var_GetBool Unexecuted instantiation: attachments.c:var_GetBool Unexecuted instantiation: heif.c:var_GetBool Unexecuted instantiation: essetup.c:var_GetBool Unexecuted instantiation: meta.c:var_GetBool Unexecuted instantiation: libmp4.c:var_GetBool Unexecuted instantiation: nsv.c:var_GetBool Unexecuted instantiation: ps.c:var_GetBool Unexecuted instantiation: pva.c:var_GetBool Unexecuted instantiation: sap.c:var_GetBool Unexecuted instantiation: sdp.c:var_GetBool Unexecuted instantiation: smf.c:var_GetBool Unexecuted instantiation: subtitle.c:var_GetBool Unexecuted instantiation: tta.c:var_GetBool Unexecuted instantiation: ttml.c:var_GetBool Unexecuted instantiation: encttml.c:var_GetBool Unexecuted instantiation: substtml.c:var_GetBool Unexecuted instantiation: genttml.c:var_GetBool Unexecuted instantiation: ty.c:var_GetBool Unexecuted instantiation: voc.c:var_GetBool Unexecuted instantiation: wav.c:var_GetBool Unexecuted instantiation: webvtt.c:var_GetBool Unexecuted instantiation: encvtt.c:var_GetBool Unexecuted instantiation: subsvtt.c:var_GetBool Unexecuted instantiation: css_parser.c:var_GetBool Unexecuted instantiation: css_style.c:var_GetBool Unexecuted instantiation: CSSGrammar.c:var_GetBool Unexecuted instantiation: libwebvtt_plugin_la-CSSLexer.c:var_GetBool Unexecuted instantiation: xa.c:var_GetBool Unexecuted instantiation: a52.c:var_GetBool Unexecuted instantiation: copy.c:var_GetBool Unexecuted instantiation: dts.c:var_GetBool Unexecuted instantiation: h264.c:var_GetBool Unexecuted instantiation: hxxx_sei.c:var_GetBool Unexecuted instantiation: hxxx_common.c:var_GetBool Unexecuted instantiation: h264_nal.c:var_GetBool Unexecuted instantiation: h264_slice.c:var_GetBool Unexecuted instantiation: hevc.c:var_GetBool Unexecuted instantiation: hevc_nal.c:var_GetBool Unexecuted instantiation: mlp.c:var_GetBool Unexecuted instantiation: mpeg4audio.c:var_GetBool Unexecuted instantiation: mpeg4video.c:var_GetBool Unexecuted instantiation: mpegaudio.c:var_GetBool Line | Count | Source | 422 | 1.42k | { | 423 | 1.42k | vlc_value_t val; val.b_bool = false; | 424 | | | 425 | 1.42k | if( !var_GetChecked( p_obj, psz_name, VLC_VAR_BOOL, &val ) ) | 426 | 1.42k | return val.b_bool; | 427 | 0 | else | 428 | 0 | return false; | 429 | 1.42k | } |
Unexecuted instantiation: vc1.c:var_GetBool Unexecuted instantiation: rawaud.c:var_GetBool Unexecuted instantiation: rawvid.c:var_GetBool Unexecuted instantiation: fs.c:var_GetBool Unexecuted instantiation: file.c:var_GetBool Unexecuted instantiation: directory.c:var_GetBool Unexecuted instantiation: libxml.c:var_GetBool Unexecuted instantiation: ogg.c:var_GetBool Unexecuted instantiation: oggseek.c:var_GetBool Unexecuted instantiation: ogg_granule.c:var_GetBool Unexecuted instantiation: mkv.cpp:var_GetBool(vlc_object_t*, char const*) Unexecuted instantiation: util.cpp:var_GetBool(vlc_object_t*, char const*) Unexecuted instantiation: virtual_segment.cpp:var_GetBool(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment.cpp:var_GetBool(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment_parse.cpp:var_GetBool(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment_seeker.cpp:var_GetBool(vlc_object_t*, char const*) Unexecuted instantiation: demux.cpp:var_GetBool(vlc_object_t*, char const*) Unexecuted instantiation: events.cpp:var_GetBool(vlc_object_t*, char const*) Unexecuted instantiation: Ebml_parser.cpp:var_GetBool(vlc_object_t*, char const*) Unexecuted instantiation: chapters.cpp:var_GetBool(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command.cpp:var_GetBool(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_dvd.cpp:var_GetBool(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_script.cpp:var_GetBool(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_script_common.cpp:var_GetBool(vlc_object_t*, char const*) Unexecuted instantiation: stream_io_callback.cpp:var_GetBool(vlc_object_t*, char const*) Unexecuted instantiation: vlc_colors.c:var_GetBool Unexecuted instantiation: adpcm.c:var_GetBool Unexecuted instantiation: aes3.c:var_GetBool Unexecuted instantiation: araw.c:var_GetBool Unexecuted instantiation: g711.c:var_GetBool Unexecuted instantiation: lpcm.c:var_GetBool Unexecuted instantiation: uleaddvaudio.c:var_GetBool Unexecuted instantiation: rawvideo.c:var_GetBool Unexecuted instantiation: cc.c:var_GetBool Unexecuted instantiation: cea708.c:var_GetBool Unexecuted instantiation: cvdsub.c:var_GetBool Unexecuted instantiation: dvbsub.c:var_GetBool Unexecuted instantiation: scte18.c:var_GetBool Unexecuted instantiation: atsc_a65.c:var_GetBool Unexecuted instantiation: scte27.c:var_GetBool Unexecuted instantiation: spudec.c:var_GetBool Unexecuted instantiation: parse.c:var_GetBool Unexecuted instantiation: stl.c:var_GetBool Unexecuted instantiation: subsdec.c:var_GetBool Unexecuted instantiation: subsusf.c:var_GetBool Unexecuted instantiation: svcdsub.c:var_GetBool Unexecuted instantiation: textst.c:var_GetBool Unexecuted instantiation: substx3g.c:var_GetBool Unexecuted instantiation: libvlc.c:var_GetBool Unexecuted instantiation: version.c:var_GetBool Unexecuted instantiation: chain.c:var_GetBool Unexecuted instantiation: help.c:var_GetBool Unexecuted instantiation: cmdline.c:var_GetBool Unexecuted instantiation: getopt.c:var_GetBool Unexecuted instantiation: libc.c:var_GetBool Unexecuted instantiation: media_source.c:var_GetBool Unexecuted instantiation: media_tree.c:var_GetBool Unexecuted instantiation: modules.c:var_GetBool Unexecuted instantiation: bank.c:var_GetBool Unexecuted instantiation: entry.c:var_GetBool Unexecuted instantiation: textdomain.c:var_GetBool Unexecuted instantiation: dialog.c:var_GetBool Unexecuted instantiation: interface.c:var_GetBool Unexecuted instantiation: content.c:var_GetBool Unexecuted instantiation: control.c:var_GetBool Unexecuted instantiation: item.c:var_GetBool Unexecuted instantiation: notify.c:var_GetBool Unexecuted instantiation: player.c:var_GetBool Unexecuted instantiation: playlist.c:var_GetBool Unexecuted instantiation: preparse.c:var_GetBool Unexecuted instantiation: randomizer.c:var_GetBool Unexecuted instantiation: preparser.c:var_GetBool Unexecuted instantiation: access.c:var_GetBool Unexecuted instantiation: decoder_device.c:var_GetBool Unexecuted instantiation: decoder_helpers.c:var_GetBool Unexecuted instantiation: demux.c:var_GetBool Unexecuted instantiation: input.c:var_GetBool Unexecuted instantiation: attachment.c:var_GetBool Unexecuted instantiation: replay_gain.c:var_GetBool Unexecuted instantiation: timer.c:var_GetBool Unexecuted instantiation: track.c:var_GetBool Unexecuted instantiation: title.c:var_GetBool Unexecuted instantiation: aout.c:var_GetBool Unexecuted instantiation: vout.c:var_GetBool Unexecuted instantiation: osd.c:var_GetBool Unexecuted instantiation: medialib.c:var_GetBool Unexecuted instantiation: resource.c:var_GetBool Unexecuted instantiation: services_discovery.c:var_GetBool Unexecuted instantiation: source.c:var_GetBool Unexecuted instantiation: stats.c:var_GetBool Unexecuted instantiation: stream.c:var_GetBool Unexecuted instantiation: stream_extractor.c:var_GetBool Unexecuted instantiation: stream_filter.c:var_GetBool Unexecuted instantiation: stream_memory.c:var_GetBool Unexecuted instantiation: subtitles.c:var_GetBool Unexecuted instantiation: dec.c:var_GetBool Unexecuted instantiation: filters.c:var_GetBool Unexecuted instantiation: meter.c:var_GetBool Unexecuted instantiation: output.c:var_GetBool Unexecuted instantiation: volume.c:var_GetBool Unexecuted instantiation: video_output.c:var_GetBool Unexecuted instantiation: video_text.c:var_GetBool Unexecuted instantiation: video_widgets.c:var_GetBool Unexecuted instantiation: vout_subpictures.c:var_GetBool Unexecuted instantiation: video_window.c:var_GetBool Unexecuted instantiation: window.c:var_GetBool Unexecuted instantiation: vout_intf.c:var_GetBool Unexecuted instantiation: vout_wrapper.c:var_GetBool Unexecuted instantiation: udp.c:var_GetBool Unexecuted instantiation: charset.c:var_GetBool Unexecuted instantiation: memstream.c:var_GetBool Unexecuted instantiation: strings.c:var_GetBool Unexecuted instantiation: unicode.c:var_GetBool Unexecuted instantiation: url.c:var_GetBool Unexecuted instantiation: filesystem.c:var_GetBool Unexecuted instantiation: actions.c:var_GetBool Unexecuted instantiation: ancillary.c:var_GetBool Unexecuted instantiation: executor.c:var_GetBool Unexecuted instantiation: md5.c:var_GetBool Unexecuted instantiation: probe.c:var_GetBool Unexecuted instantiation: mtime.c:var_GetBool Unexecuted instantiation: frame.c:var_GetBool Unexecuted instantiation: fifo.c:var_GetBool Unexecuted instantiation: fourcc.c:var_GetBool Unexecuted instantiation: es_format.c:var_GetBool Unexecuted instantiation: picture.c:var_GetBool Unexecuted instantiation: picture_fifo.c:var_GetBool Unexecuted instantiation: picture_pool.c:var_GetBool Unexecuted instantiation: interrupt.c:var_GetBool Unexecuted instantiation: keystore.c:var_GetBool Unexecuted instantiation: rcu.c:var_GetBool Unexecuted instantiation: renderer_discovery.c:var_GetBool Unexecuted instantiation: threads.c:var_GetBool Unexecuted instantiation: cpu.c:var_GetBool Unexecuted instantiation: epg.c:var_GetBool Unexecuted instantiation: exit.c:var_GetBool Unexecuted instantiation: image.c:var_GetBool Unexecuted instantiation: messages.c:var_GetBool Unexecuted instantiation: tracer.c:var_GetBool Unexecuted instantiation: objects.c:var_GetBool Unexecuted instantiation: objres.c:var_GetBool Unexecuted instantiation: queue.c:var_GetBool Unexecuted instantiation: variables.c:var_GetBool Unexecuted instantiation: xml.c:var_GetBool Unexecuted instantiation: filter.c:var_GetBool Unexecuted instantiation: filter_chain.c:var_GetBool Unexecuted instantiation: httpcookies.c:var_GetBool Unexecuted instantiation: text_style.c:var_GetBool Unexecuted instantiation: sort.c:var_GetBool Unexecuted instantiation: subpicture.c:var_GetBool Unexecuted instantiation: medialibrary.c:var_GetBool Unexecuted instantiation: viewpoint.c:var_GetBool Unexecuted instantiation: thread.c:var_GetBool Unexecuted instantiation: rand.c:var_GetBool Unexecuted instantiation: specific.c:var_GetBool Unexecuted instantiation: stream_output.c:var_GetBool Unexecuted instantiation: vlm.c:var_GetBool Unexecuted instantiation: vlm_event.c:var_GetBool Unexecuted instantiation: vlmshell.c:var_GetBool Unexecuted instantiation: libvlc-module.c:var_GetBool Unexecuted instantiation: dirs.c:var_GetBool Unexecuted instantiation: art.c:var_GetBool Unexecuted instantiation: fetcher.c:var_GetBool Unexecuted instantiation: clock.c:var_GetBool Unexecuted instantiation: es_out.c:var_GetBool Unexecuted instantiation: es_out_source.c:var_GetBool Unexecuted instantiation: es_out_timeshift.c:var_GetBool Unexecuted instantiation: display.c:var_GetBool Unexecuted instantiation: inhibit.c:var_GetBool Unexecuted instantiation: interlacing.c:var_GetBool Unexecuted instantiation: snapshot.c:var_GetBool Unexecuted instantiation: getaddrinfo.c:var_GetBool Unexecuted instantiation: io.c:var_GetBool Unexecuted instantiation: iso_lang.c:var_GetBool Unexecuted instantiation: chroma_probe.c:var_GetBool Unexecuted instantiation: clock_internal.c:var_GetBool Unexecuted instantiation: input_clock.c:var_GetBool |
430 | | |
431 | | static inline void var_GetCoords( vlc_object_t *obj, const char *name, |
432 | | int32_t *px, int32_t *py ) |
433 | 0 | { |
434 | 0 | vlc_value_t val; |
435 | 0 |
|
436 | 0 | if (likely(!var_GetChecked (obj, name, VLC_VAR_COORDS, &val))) |
437 | 0 | { |
438 | 0 | *px = val.coords.x; |
439 | 0 | *py = val.coords.y; |
440 | 0 | } |
441 | 0 | else |
442 | 0 | *px = *py = 0; |
443 | 0 | } Unexecuted instantiation: demux-run.c:var_GetCoords Unexecuted instantiation: common.c:var_GetCoords Unexecuted instantiation: var.c:var_GetCoords Unexecuted instantiation: decoder.c:var_GetCoords Unexecuted instantiation: core.c:var_GetCoords Unexecuted instantiation: error.c:var_GetCoords Unexecuted instantiation: console.c:var_GetCoords Unexecuted instantiation: aiff.c:var_GetCoords Unexecuted instantiation: asf.c:var_GetCoords Unexecuted instantiation: libasf.c:var_GetCoords Unexecuted instantiation: asfpacket.c:var_GetCoords Unexecuted instantiation: au.c:var_GetCoords Unexecuted instantiation: avi.c:var_GetCoords Unexecuted instantiation: libavi.c:var_GetCoords Unexecuted instantiation: caf.c:var_GetCoords Unexecuted instantiation: cdg.c:var_GetCoords Unexecuted instantiation: es.c:var_GetCoords Unexecuted instantiation: dts_header.c:var_GetCoords Unexecuted instantiation: flac.c:var_GetCoords Unexecuted instantiation: xiph_metadata.c:var_GetCoords Unexecuted instantiation: h26x.c:var_GetCoords Unexecuted instantiation: mjpeg.c:var_GetCoords Unexecuted instantiation: mp4.c:var_GetCoords Unexecuted instantiation: fragments.c:var_GetCoords Unexecuted instantiation: attachments.c:var_GetCoords Unexecuted instantiation: heif.c:var_GetCoords Unexecuted instantiation: essetup.c:var_GetCoords Unexecuted instantiation: meta.c:var_GetCoords Unexecuted instantiation: libmp4.c:var_GetCoords Unexecuted instantiation: nsv.c:var_GetCoords Unexecuted instantiation: ps.c:var_GetCoords Unexecuted instantiation: pva.c:var_GetCoords Unexecuted instantiation: sap.c:var_GetCoords Unexecuted instantiation: sdp.c:var_GetCoords Unexecuted instantiation: smf.c:var_GetCoords Unexecuted instantiation: subtitle.c:var_GetCoords Unexecuted instantiation: tta.c:var_GetCoords Unexecuted instantiation: ttml.c:var_GetCoords Unexecuted instantiation: encttml.c:var_GetCoords Unexecuted instantiation: substtml.c:var_GetCoords Unexecuted instantiation: genttml.c:var_GetCoords Unexecuted instantiation: ty.c:var_GetCoords Unexecuted instantiation: voc.c:var_GetCoords Unexecuted instantiation: wav.c:var_GetCoords Unexecuted instantiation: webvtt.c:var_GetCoords Unexecuted instantiation: encvtt.c:var_GetCoords Unexecuted instantiation: subsvtt.c:var_GetCoords Unexecuted instantiation: css_parser.c:var_GetCoords Unexecuted instantiation: css_style.c:var_GetCoords Unexecuted instantiation: CSSGrammar.c:var_GetCoords Unexecuted instantiation: libwebvtt_plugin_la-CSSLexer.c:var_GetCoords Unexecuted instantiation: xa.c:var_GetCoords Unexecuted instantiation: a52.c:var_GetCoords Unexecuted instantiation: copy.c:var_GetCoords Unexecuted instantiation: dts.c:var_GetCoords Unexecuted instantiation: h264.c:var_GetCoords Unexecuted instantiation: hxxx_sei.c:var_GetCoords Unexecuted instantiation: hxxx_common.c:var_GetCoords Unexecuted instantiation: h264_nal.c:var_GetCoords Unexecuted instantiation: h264_slice.c:var_GetCoords Unexecuted instantiation: hevc.c:var_GetCoords Unexecuted instantiation: hevc_nal.c:var_GetCoords Unexecuted instantiation: mlp.c:var_GetCoords Unexecuted instantiation: mpeg4audio.c:var_GetCoords Unexecuted instantiation: mpeg4video.c:var_GetCoords Unexecuted instantiation: mpegaudio.c:var_GetCoords Unexecuted instantiation: mpegvideo.c:var_GetCoords Unexecuted instantiation: vc1.c:var_GetCoords Unexecuted instantiation: rawaud.c:var_GetCoords Unexecuted instantiation: rawvid.c:var_GetCoords Unexecuted instantiation: fs.c:var_GetCoords Unexecuted instantiation: file.c:var_GetCoords Unexecuted instantiation: directory.c:var_GetCoords Unexecuted instantiation: libxml.c:var_GetCoords Unexecuted instantiation: ogg.c:var_GetCoords Unexecuted instantiation: oggseek.c:var_GetCoords Unexecuted instantiation: ogg_granule.c:var_GetCoords Unexecuted instantiation: mkv.cpp:var_GetCoords(vlc_object_t*, char const*, int*, int*) Unexecuted instantiation: util.cpp:var_GetCoords(vlc_object_t*, char const*, int*, int*) Unexecuted instantiation: virtual_segment.cpp:var_GetCoords(vlc_object_t*, char const*, int*, int*) Unexecuted instantiation: matroska_segment.cpp:var_GetCoords(vlc_object_t*, char const*, int*, int*) Unexecuted instantiation: matroska_segment_parse.cpp:var_GetCoords(vlc_object_t*, char const*, int*, int*) Unexecuted instantiation: matroska_segment_seeker.cpp:var_GetCoords(vlc_object_t*, char const*, int*, int*) Unexecuted instantiation: demux.cpp:var_GetCoords(vlc_object_t*, char const*, int*, int*) Unexecuted instantiation: events.cpp:var_GetCoords(vlc_object_t*, char const*, int*, int*) Unexecuted instantiation: Ebml_parser.cpp:var_GetCoords(vlc_object_t*, char const*, int*, int*) Unexecuted instantiation: chapters.cpp:var_GetCoords(vlc_object_t*, char const*, int*, int*) Unexecuted instantiation: chapter_command.cpp:var_GetCoords(vlc_object_t*, char const*, int*, int*) Unexecuted instantiation: chapter_command_dvd.cpp:var_GetCoords(vlc_object_t*, char const*, int*, int*) Unexecuted instantiation: chapter_command_script.cpp:var_GetCoords(vlc_object_t*, char const*, int*, int*) Unexecuted instantiation: chapter_command_script_common.cpp:var_GetCoords(vlc_object_t*, char const*, int*, int*) Unexecuted instantiation: stream_io_callback.cpp:var_GetCoords(vlc_object_t*, char const*, int*, int*) Unexecuted instantiation: vlc_colors.c:var_GetCoords Unexecuted instantiation: adpcm.c:var_GetCoords Unexecuted instantiation: aes3.c:var_GetCoords Unexecuted instantiation: araw.c:var_GetCoords Unexecuted instantiation: g711.c:var_GetCoords Unexecuted instantiation: lpcm.c:var_GetCoords Unexecuted instantiation: uleaddvaudio.c:var_GetCoords Unexecuted instantiation: rawvideo.c:var_GetCoords Unexecuted instantiation: cc.c:var_GetCoords Unexecuted instantiation: cea708.c:var_GetCoords Unexecuted instantiation: cvdsub.c:var_GetCoords Unexecuted instantiation: dvbsub.c:var_GetCoords Unexecuted instantiation: scte18.c:var_GetCoords Unexecuted instantiation: atsc_a65.c:var_GetCoords Unexecuted instantiation: scte27.c:var_GetCoords Unexecuted instantiation: spudec.c:var_GetCoords Unexecuted instantiation: parse.c:var_GetCoords Unexecuted instantiation: stl.c:var_GetCoords Unexecuted instantiation: subsdec.c:var_GetCoords Unexecuted instantiation: subsusf.c:var_GetCoords Unexecuted instantiation: svcdsub.c:var_GetCoords Unexecuted instantiation: textst.c:var_GetCoords Unexecuted instantiation: substx3g.c:var_GetCoords Unexecuted instantiation: libvlc.c:var_GetCoords Unexecuted instantiation: version.c:var_GetCoords Unexecuted instantiation: chain.c:var_GetCoords Unexecuted instantiation: help.c:var_GetCoords Unexecuted instantiation: cmdline.c:var_GetCoords Unexecuted instantiation: getopt.c:var_GetCoords Unexecuted instantiation: libc.c:var_GetCoords Unexecuted instantiation: media_source.c:var_GetCoords Unexecuted instantiation: media_tree.c:var_GetCoords Unexecuted instantiation: modules.c:var_GetCoords Unexecuted instantiation: bank.c:var_GetCoords Unexecuted instantiation: entry.c:var_GetCoords Unexecuted instantiation: textdomain.c:var_GetCoords Unexecuted instantiation: dialog.c:var_GetCoords Unexecuted instantiation: interface.c:var_GetCoords Unexecuted instantiation: content.c:var_GetCoords Unexecuted instantiation: control.c:var_GetCoords Unexecuted instantiation: item.c:var_GetCoords Unexecuted instantiation: notify.c:var_GetCoords Unexecuted instantiation: player.c:var_GetCoords Unexecuted instantiation: playlist.c:var_GetCoords Unexecuted instantiation: preparse.c:var_GetCoords Unexecuted instantiation: randomizer.c:var_GetCoords Unexecuted instantiation: preparser.c:var_GetCoords Unexecuted instantiation: access.c:var_GetCoords Unexecuted instantiation: decoder_device.c:var_GetCoords Unexecuted instantiation: decoder_helpers.c:var_GetCoords Unexecuted instantiation: demux.c:var_GetCoords Unexecuted instantiation: input.c:var_GetCoords Unexecuted instantiation: attachment.c:var_GetCoords Unexecuted instantiation: replay_gain.c:var_GetCoords Unexecuted instantiation: timer.c:var_GetCoords Unexecuted instantiation: track.c:var_GetCoords Unexecuted instantiation: title.c:var_GetCoords Unexecuted instantiation: aout.c:var_GetCoords Unexecuted instantiation: vout.c:var_GetCoords Unexecuted instantiation: osd.c:var_GetCoords Unexecuted instantiation: medialib.c:var_GetCoords Unexecuted instantiation: resource.c:var_GetCoords Unexecuted instantiation: services_discovery.c:var_GetCoords Unexecuted instantiation: source.c:var_GetCoords Unexecuted instantiation: stats.c:var_GetCoords Unexecuted instantiation: stream.c:var_GetCoords Unexecuted instantiation: stream_extractor.c:var_GetCoords Unexecuted instantiation: stream_filter.c:var_GetCoords Unexecuted instantiation: stream_memory.c:var_GetCoords Unexecuted instantiation: subtitles.c:var_GetCoords Unexecuted instantiation: dec.c:var_GetCoords Unexecuted instantiation: filters.c:var_GetCoords Unexecuted instantiation: meter.c:var_GetCoords Unexecuted instantiation: output.c:var_GetCoords Unexecuted instantiation: volume.c:var_GetCoords Unexecuted instantiation: video_output.c:var_GetCoords Unexecuted instantiation: video_text.c:var_GetCoords Unexecuted instantiation: video_widgets.c:var_GetCoords Unexecuted instantiation: vout_subpictures.c:var_GetCoords Unexecuted instantiation: video_window.c:var_GetCoords Unexecuted instantiation: window.c:var_GetCoords Unexecuted instantiation: vout_intf.c:var_GetCoords Unexecuted instantiation: vout_wrapper.c:var_GetCoords Unexecuted instantiation: udp.c:var_GetCoords Unexecuted instantiation: charset.c:var_GetCoords Unexecuted instantiation: memstream.c:var_GetCoords Unexecuted instantiation: strings.c:var_GetCoords Unexecuted instantiation: unicode.c:var_GetCoords Unexecuted instantiation: url.c:var_GetCoords Unexecuted instantiation: filesystem.c:var_GetCoords Unexecuted instantiation: actions.c:var_GetCoords Unexecuted instantiation: ancillary.c:var_GetCoords Unexecuted instantiation: executor.c:var_GetCoords Unexecuted instantiation: md5.c:var_GetCoords Unexecuted instantiation: probe.c:var_GetCoords Unexecuted instantiation: mtime.c:var_GetCoords Unexecuted instantiation: frame.c:var_GetCoords Unexecuted instantiation: fifo.c:var_GetCoords Unexecuted instantiation: fourcc.c:var_GetCoords Unexecuted instantiation: es_format.c:var_GetCoords Unexecuted instantiation: picture.c:var_GetCoords Unexecuted instantiation: picture_fifo.c:var_GetCoords Unexecuted instantiation: picture_pool.c:var_GetCoords Unexecuted instantiation: interrupt.c:var_GetCoords Unexecuted instantiation: keystore.c:var_GetCoords Unexecuted instantiation: rcu.c:var_GetCoords Unexecuted instantiation: renderer_discovery.c:var_GetCoords Unexecuted instantiation: threads.c:var_GetCoords Unexecuted instantiation: cpu.c:var_GetCoords Unexecuted instantiation: epg.c:var_GetCoords Unexecuted instantiation: exit.c:var_GetCoords Unexecuted instantiation: image.c:var_GetCoords Unexecuted instantiation: messages.c:var_GetCoords Unexecuted instantiation: tracer.c:var_GetCoords Unexecuted instantiation: objects.c:var_GetCoords Unexecuted instantiation: objres.c:var_GetCoords Unexecuted instantiation: queue.c:var_GetCoords Unexecuted instantiation: variables.c:var_GetCoords Unexecuted instantiation: xml.c:var_GetCoords Unexecuted instantiation: filter.c:var_GetCoords Unexecuted instantiation: filter_chain.c:var_GetCoords Unexecuted instantiation: httpcookies.c:var_GetCoords Unexecuted instantiation: text_style.c:var_GetCoords Unexecuted instantiation: sort.c:var_GetCoords Unexecuted instantiation: subpicture.c:var_GetCoords Unexecuted instantiation: medialibrary.c:var_GetCoords Unexecuted instantiation: viewpoint.c:var_GetCoords Unexecuted instantiation: thread.c:var_GetCoords Unexecuted instantiation: rand.c:var_GetCoords Unexecuted instantiation: specific.c:var_GetCoords Unexecuted instantiation: stream_output.c:var_GetCoords Unexecuted instantiation: vlm.c:var_GetCoords Unexecuted instantiation: vlm_event.c:var_GetCoords Unexecuted instantiation: vlmshell.c:var_GetCoords Unexecuted instantiation: libvlc-module.c:var_GetCoords Unexecuted instantiation: dirs.c:var_GetCoords Unexecuted instantiation: art.c:var_GetCoords Unexecuted instantiation: fetcher.c:var_GetCoords Unexecuted instantiation: clock.c:var_GetCoords Unexecuted instantiation: es_out.c:var_GetCoords Unexecuted instantiation: es_out_source.c:var_GetCoords Unexecuted instantiation: es_out_timeshift.c:var_GetCoords Unexecuted instantiation: display.c:var_GetCoords Unexecuted instantiation: inhibit.c:var_GetCoords Unexecuted instantiation: interlacing.c:var_GetCoords Unexecuted instantiation: snapshot.c:var_GetCoords Unexecuted instantiation: getaddrinfo.c:var_GetCoords Unexecuted instantiation: io.c:var_GetCoords Unexecuted instantiation: iso_lang.c:var_GetCoords Unexecuted instantiation: chroma_probe.c:var_GetCoords Unexecuted instantiation: clock_internal.c:var_GetCoords Unexecuted instantiation: input_clock.c:var_GetCoords |
444 | | |
445 | | /** |
446 | | * Get a float value |
447 | | * |
448 | | * \param p_obj The object that holds the variable |
449 | | * \param psz_name The name of the variable |
450 | | */ |
451 | | VLC_USED |
452 | | static inline float var_GetFloat( vlc_object_t *p_obj, const char *psz_name ) |
453 | 28.9k | { |
454 | 28.9k | vlc_value_t val; val.f_float = 0.0; |
455 | 28.9k | if( !var_GetChecked( p_obj, psz_name, VLC_VAR_FLOAT, &val ) ) |
456 | 28.9k | return val.f_float; |
457 | 0 | else |
458 | 0 | return 0.0; |
459 | 28.9k | } Unexecuted instantiation: demux-run.c:var_GetFloat Unexecuted instantiation: common.c:var_GetFloat Unexecuted instantiation: var.c:var_GetFloat Unexecuted instantiation: decoder.c:var_GetFloat Unexecuted instantiation: core.c:var_GetFloat Unexecuted instantiation: error.c:var_GetFloat Unexecuted instantiation: console.c:var_GetFloat Unexecuted instantiation: aiff.c:var_GetFloat Unexecuted instantiation: asf.c:var_GetFloat Unexecuted instantiation: libasf.c:var_GetFloat Unexecuted instantiation: asfpacket.c:var_GetFloat Unexecuted instantiation: au.c:var_GetFloat Unexecuted instantiation: avi.c:var_GetFloat Unexecuted instantiation: libavi.c:var_GetFloat Unexecuted instantiation: caf.c:var_GetFloat Unexecuted instantiation: cdg.c:var_GetFloat Unexecuted instantiation: es.c:var_GetFloat Unexecuted instantiation: dts_header.c:var_GetFloat Unexecuted instantiation: flac.c:var_GetFloat Unexecuted instantiation: xiph_metadata.c:var_GetFloat Line | Count | Source | 453 | 14.4k | { | 454 | 14.4k | vlc_value_t val; val.f_float = 0.0; | 455 | 14.4k | if( !var_GetChecked( p_obj, psz_name, VLC_VAR_FLOAT, &val ) ) | 456 | 14.4k | return val.f_float; | 457 | 0 | else | 458 | 0 | return 0.0; | 459 | 14.4k | } |
Unexecuted instantiation: mjpeg.c:var_GetFloat Unexecuted instantiation: mp4.c:var_GetFloat Unexecuted instantiation: fragments.c:var_GetFloat Unexecuted instantiation: attachments.c:var_GetFloat Unexecuted instantiation: heif.c:var_GetFloat Unexecuted instantiation: essetup.c:var_GetFloat Unexecuted instantiation: meta.c:var_GetFloat Unexecuted instantiation: libmp4.c:var_GetFloat Unexecuted instantiation: nsv.c:var_GetFloat Unexecuted instantiation: ps.c:var_GetFloat Unexecuted instantiation: pva.c:var_GetFloat Unexecuted instantiation: sap.c:var_GetFloat Unexecuted instantiation: sdp.c:var_GetFloat Unexecuted instantiation: smf.c:var_GetFloat Line | Count | Source | 453 | 14.4k | { | 454 | 14.4k | vlc_value_t val; val.f_float = 0.0; | 455 | 14.4k | if( !var_GetChecked( p_obj, psz_name, VLC_VAR_FLOAT, &val ) ) | 456 | 14.4k | return val.f_float; | 457 | 0 | else | 458 | 0 | return 0.0; | 459 | 14.4k | } |
Unexecuted instantiation: tta.c:var_GetFloat Unexecuted instantiation: ttml.c:var_GetFloat Unexecuted instantiation: encttml.c:var_GetFloat Unexecuted instantiation: substtml.c:var_GetFloat Unexecuted instantiation: genttml.c:var_GetFloat Unexecuted instantiation: ty.c:var_GetFloat Unexecuted instantiation: voc.c:var_GetFloat Unexecuted instantiation: wav.c:var_GetFloat Unexecuted instantiation: webvtt.c:var_GetFloat Unexecuted instantiation: encvtt.c:var_GetFloat Unexecuted instantiation: subsvtt.c:var_GetFloat Unexecuted instantiation: css_parser.c:var_GetFloat Unexecuted instantiation: css_style.c:var_GetFloat Unexecuted instantiation: CSSGrammar.c:var_GetFloat Unexecuted instantiation: libwebvtt_plugin_la-CSSLexer.c:var_GetFloat Unexecuted instantiation: xa.c:var_GetFloat Unexecuted instantiation: a52.c:var_GetFloat Unexecuted instantiation: copy.c:var_GetFloat Unexecuted instantiation: dts.c:var_GetFloat Unexecuted instantiation: h264.c:var_GetFloat Unexecuted instantiation: hxxx_sei.c:var_GetFloat Unexecuted instantiation: hxxx_common.c:var_GetFloat Unexecuted instantiation: h264_nal.c:var_GetFloat Unexecuted instantiation: h264_slice.c:var_GetFloat Unexecuted instantiation: hevc.c:var_GetFloat Unexecuted instantiation: hevc_nal.c:var_GetFloat Unexecuted instantiation: mlp.c:var_GetFloat Unexecuted instantiation: mpeg4audio.c:var_GetFloat Unexecuted instantiation: mpeg4video.c:var_GetFloat Unexecuted instantiation: mpegaudio.c:var_GetFloat Unexecuted instantiation: mpegvideo.c:var_GetFloat Unexecuted instantiation: vc1.c:var_GetFloat Unexecuted instantiation: rawaud.c:var_GetFloat Unexecuted instantiation: rawvid.c:var_GetFloat Unexecuted instantiation: fs.c:var_GetFloat Unexecuted instantiation: file.c:var_GetFloat Unexecuted instantiation: directory.c:var_GetFloat Unexecuted instantiation: libxml.c:var_GetFloat Unexecuted instantiation: ogg.c:var_GetFloat Unexecuted instantiation: oggseek.c:var_GetFloat Unexecuted instantiation: ogg_granule.c:var_GetFloat Unexecuted instantiation: mkv.cpp:var_GetFloat(vlc_object_t*, char const*) Unexecuted instantiation: util.cpp:var_GetFloat(vlc_object_t*, char const*) Unexecuted instantiation: virtual_segment.cpp:var_GetFloat(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment.cpp:var_GetFloat(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment_parse.cpp:var_GetFloat(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment_seeker.cpp:var_GetFloat(vlc_object_t*, char const*) Unexecuted instantiation: demux.cpp:var_GetFloat(vlc_object_t*, char const*) Unexecuted instantiation: events.cpp:var_GetFloat(vlc_object_t*, char const*) Unexecuted instantiation: Ebml_parser.cpp:var_GetFloat(vlc_object_t*, char const*) Unexecuted instantiation: chapters.cpp:var_GetFloat(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command.cpp:var_GetFloat(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_dvd.cpp:var_GetFloat(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_script.cpp:var_GetFloat(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_script_common.cpp:var_GetFloat(vlc_object_t*, char const*) Unexecuted instantiation: stream_io_callback.cpp:var_GetFloat(vlc_object_t*, char const*) Unexecuted instantiation: vlc_colors.c:var_GetFloat Unexecuted instantiation: adpcm.c:var_GetFloat Unexecuted instantiation: aes3.c:var_GetFloat Unexecuted instantiation: araw.c:var_GetFloat Unexecuted instantiation: g711.c:var_GetFloat Unexecuted instantiation: lpcm.c:var_GetFloat Unexecuted instantiation: uleaddvaudio.c:var_GetFloat Unexecuted instantiation: rawvideo.c:var_GetFloat Unexecuted instantiation: cc.c:var_GetFloat Unexecuted instantiation: cea708.c:var_GetFloat Unexecuted instantiation: cvdsub.c:var_GetFloat Unexecuted instantiation: dvbsub.c:var_GetFloat Unexecuted instantiation: scte18.c:var_GetFloat Unexecuted instantiation: atsc_a65.c:var_GetFloat Unexecuted instantiation: scte27.c:var_GetFloat Unexecuted instantiation: spudec.c:var_GetFloat Unexecuted instantiation: parse.c:var_GetFloat Unexecuted instantiation: stl.c:var_GetFloat Unexecuted instantiation: subsdec.c:var_GetFloat Unexecuted instantiation: subsusf.c:var_GetFloat Unexecuted instantiation: svcdsub.c:var_GetFloat Unexecuted instantiation: textst.c:var_GetFloat Unexecuted instantiation: substx3g.c:var_GetFloat Unexecuted instantiation: libvlc.c:var_GetFloat Unexecuted instantiation: version.c:var_GetFloat Unexecuted instantiation: chain.c:var_GetFloat Unexecuted instantiation: help.c:var_GetFloat Unexecuted instantiation: cmdline.c:var_GetFloat Unexecuted instantiation: getopt.c:var_GetFloat Unexecuted instantiation: libc.c:var_GetFloat Unexecuted instantiation: media_source.c:var_GetFloat Unexecuted instantiation: media_tree.c:var_GetFloat Unexecuted instantiation: modules.c:var_GetFloat Unexecuted instantiation: bank.c:var_GetFloat Unexecuted instantiation: entry.c:var_GetFloat Unexecuted instantiation: textdomain.c:var_GetFloat Unexecuted instantiation: dialog.c:var_GetFloat Unexecuted instantiation: interface.c:var_GetFloat Unexecuted instantiation: content.c:var_GetFloat Unexecuted instantiation: control.c:var_GetFloat Unexecuted instantiation: item.c:var_GetFloat Unexecuted instantiation: notify.c:var_GetFloat Unexecuted instantiation: player.c:var_GetFloat Unexecuted instantiation: playlist.c:var_GetFloat Unexecuted instantiation: preparse.c:var_GetFloat Unexecuted instantiation: randomizer.c:var_GetFloat Unexecuted instantiation: preparser.c:var_GetFloat Unexecuted instantiation: access.c:var_GetFloat Unexecuted instantiation: decoder_device.c:var_GetFloat Unexecuted instantiation: decoder_helpers.c:var_GetFloat Unexecuted instantiation: demux.c:var_GetFloat Unexecuted instantiation: input.c:var_GetFloat Unexecuted instantiation: attachment.c:var_GetFloat Unexecuted instantiation: replay_gain.c:var_GetFloat Unexecuted instantiation: timer.c:var_GetFloat Unexecuted instantiation: track.c:var_GetFloat Unexecuted instantiation: title.c:var_GetFloat Unexecuted instantiation: aout.c:var_GetFloat Unexecuted instantiation: vout.c:var_GetFloat Unexecuted instantiation: osd.c:var_GetFloat Unexecuted instantiation: medialib.c:var_GetFloat Unexecuted instantiation: resource.c:var_GetFloat Unexecuted instantiation: services_discovery.c:var_GetFloat Unexecuted instantiation: source.c:var_GetFloat Unexecuted instantiation: stats.c:var_GetFloat Unexecuted instantiation: stream.c:var_GetFloat Unexecuted instantiation: stream_extractor.c:var_GetFloat Unexecuted instantiation: stream_filter.c:var_GetFloat Unexecuted instantiation: stream_memory.c:var_GetFloat Unexecuted instantiation: subtitles.c:var_GetFloat Unexecuted instantiation: dec.c:var_GetFloat Unexecuted instantiation: filters.c:var_GetFloat Unexecuted instantiation: meter.c:var_GetFloat Unexecuted instantiation: output.c:var_GetFloat Unexecuted instantiation: volume.c:var_GetFloat Unexecuted instantiation: video_output.c:var_GetFloat Unexecuted instantiation: video_text.c:var_GetFloat Unexecuted instantiation: video_widgets.c:var_GetFloat Unexecuted instantiation: vout_subpictures.c:var_GetFloat Unexecuted instantiation: video_window.c:var_GetFloat Unexecuted instantiation: window.c:var_GetFloat Unexecuted instantiation: vout_intf.c:var_GetFloat Unexecuted instantiation: vout_wrapper.c:var_GetFloat Unexecuted instantiation: udp.c:var_GetFloat Unexecuted instantiation: charset.c:var_GetFloat Unexecuted instantiation: memstream.c:var_GetFloat Unexecuted instantiation: strings.c:var_GetFloat Unexecuted instantiation: unicode.c:var_GetFloat Unexecuted instantiation: url.c:var_GetFloat Unexecuted instantiation: filesystem.c:var_GetFloat Unexecuted instantiation: actions.c:var_GetFloat Unexecuted instantiation: ancillary.c:var_GetFloat Unexecuted instantiation: executor.c:var_GetFloat Unexecuted instantiation: md5.c:var_GetFloat Unexecuted instantiation: probe.c:var_GetFloat Unexecuted instantiation: mtime.c:var_GetFloat Unexecuted instantiation: frame.c:var_GetFloat Unexecuted instantiation: fifo.c:var_GetFloat Unexecuted instantiation: fourcc.c:var_GetFloat Unexecuted instantiation: es_format.c:var_GetFloat Unexecuted instantiation: picture.c:var_GetFloat Unexecuted instantiation: picture_fifo.c:var_GetFloat Unexecuted instantiation: picture_pool.c:var_GetFloat Unexecuted instantiation: interrupt.c:var_GetFloat Unexecuted instantiation: keystore.c:var_GetFloat Unexecuted instantiation: rcu.c:var_GetFloat Unexecuted instantiation: renderer_discovery.c:var_GetFloat Unexecuted instantiation: threads.c:var_GetFloat Unexecuted instantiation: cpu.c:var_GetFloat Unexecuted instantiation: epg.c:var_GetFloat Unexecuted instantiation: exit.c:var_GetFloat Unexecuted instantiation: image.c:var_GetFloat Unexecuted instantiation: messages.c:var_GetFloat Unexecuted instantiation: tracer.c:var_GetFloat Unexecuted instantiation: objects.c:var_GetFloat Unexecuted instantiation: objres.c:var_GetFloat Unexecuted instantiation: queue.c:var_GetFloat Unexecuted instantiation: variables.c:var_GetFloat Unexecuted instantiation: xml.c:var_GetFloat Unexecuted instantiation: filter.c:var_GetFloat Unexecuted instantiation: filter_chain.c:var_GetFloat Unexecuted instantiation: httpcookies.c:var_GetFloat Unexecuted instantiation: text_style.c:var_GetFloat Unexecuted instantiation: sort.c:var_GetFloat Unexecuted instantiation: subpicture.c:var_GetFloat Unexecuted instantiation: medialibrary.c:var_GetFloat Unexecuted instantiation: viewpoint.c:var_GetFloat Unexecuted instantiation: thread.c:var_GetFloat Unexecuted instantiation: rand.c:var_GetFloat Unexecuted instantiation: specific.c:var_GetFloat Unexecuted instantiation: stream_output.c:var_GetFloat Unexecuted instantiation: vlm.c:var_GetFloat Unexecuted instantiation: vlm_event.c:var_GetFloat Unexecuted instantiation: vlmshell.c:var_GetFloat Unexecuted instantiation: libvlc-module.c:var_GetFloat Unexecuted instantiation: dirs.c:var_GetFloat Unexecuted instantiation: art.c:var_GetFloat Unexecuted instantiation: fetcher.c:var_GetFloat Unexecuted instantiation: clock.c:var_GetFloat Unexecuted instantiation: es_out.c:var_GetFloat Unexecuted instantiation: es_out_source.c:var_GetFloat Unexecuted instantiation: es_out_timeshift.c:var_GetFloat Unexecuted instantiation: display.c:var_GetFloat Unexecuted instantiation: inhibit.c:var_GetFloat Unexecuted instantiation: interlacing.c:var_GetFloat Unexecuted instantiation: snapshot.c:var_GetFloat Unexecuted instantiation: getaddrinfo.c:var_GetFloat Unexecuted instantiation: io.c:var_GetFloat Unexecuted instantiation: iso_lang.c:var_GetFloat Unexecuted instantiation: chroma_probe.c:var_GetFloat Unexecuted instantiation: clock_internal.c:var_GetFloat Unexecuted instantiation: input_clock.c:var_GetFloat |
460 | | |
461 | | /** |
462 | | * Get a string value |
463 | | * |
464 | | * \param p_obj The object that holds the variable |
465 | | * \param psz_name The name of the variable |
466 | | */ |
467 | | VLC_USED VLC_MALLOC |
468 | | static inline char *var_GetString( vlc_object_t *p_obj, const char *psz_name ) |
469 | 874 | { |
470 | 874 | vlc_value_t val; val.psz_string = NULL; |
471 | 874 | if( var_GetChecked( p_obj, psz_name, VLC_VAR_STRING, &val ) ) |
472 | 0 | return NULL; |
473 | 874 | else |
474 | 874 | return val.psz_string; |
475 | 874 | } Unexecuted instantiation: demux-run.c:var_GetString Unexecuted instantiation: common.c:var_GetString Unexecuted instantiation: var.c:var_GetString Unexecuted instantiation: decoder.c:var_GetString Unexecuted instantiation: core.c:var_GetString Unexecuted instantiation: error.c:var_GetString Unexecuted instantiation: console.c:var_GetString Unexecuted instantiation: aiff.c:var_GetString Unexecuted instantiation: asf.c:var_GetString Unexecuted instantiation: libasf.c:var_GetString Unexecuted instantiation: asfpacket.c:var_GetString Unexecuted instantiation: au.c:var_GetString Unexecuted instantiation: avi.c:var_GetString Unexecuted instantiation: libavi.c:var_GetString Unexecuted instantiation: caf.c:var_GetString Unexecuted instantiation: cdg.c:var_GetString Unexecuted instantiation: es.c:var_GetString Unexecuted instantiation: dts_header.c:var_GetString Unexecuted instantiation: flac.c:var_GetString Unexecuted instantiation: xiph_metadata.c:var_GetString Unexecuted instantiation: h26x.c:var_GetString Unexecuted instantiation: mjpeg.c:var_GetString Unexecuted instantiation: mp4.c:var_GetString Unexecuted instantiation: fragments.c:var_GetString Unexecuted instantiation: attachments.c:var_GetString Unexecuted instantiation: heif.c:var_GetString Unexecuted instantiation: essetup.c:var_GetString Unexecuted instantiation: meta.c:var_GetString Unexecuted instantiation: libmp4.c:var_GetString Unexecuted instantiation: nsv.c:var_GetString Unexecuted instantiation: ps.c:var_GetString Unexecuted instantiation: pva.c:var_GetString Unexecuted instantiation: sap.c:var_GetString Unexecuted instantiation: sdp.c:var_GetString Unexecuted instantiation: smf.c:var_GetString Line | Count | Source | 469 | 874 | { | 470 | 874 | vlc_value_t val; val.psz_string = NULL; | 471 | 874 | if( var_GetChecked( p_obj, psz_name, VLC_VAR_STRING, &val ) ) | 472 | 0 | return NULL; | 473 | 874 | else | 474 | 874 | return val.psz_string; | 475 | 874 | } |
Unexecuted instantiation: tta.c:var_GetString Unexecuted instantiation: ttml.c:var_GetString Unexecuted instantiation: encttml.c:var_GetString Unexecuted instantiation: substtml.c:var_GetString Unexecuted instantiation: genttml.c:var_GetString Unexecuted instantiation: ty.c:var_GetString Unexecuted instantiation: voc.c:var_GetString Unexecuted instantiation: wav.c:var_GetString Unexecuted instantiation: webvtt.c:var_GetString Unexecuted instantiation: encvtt.c:var_GetString Unexecuted instantiation: subsvtt.c:var_GetString Unexecuted instantiation: css_parser.c:var_GetString Unexecuted instantiation: css_style.c:var_GetString Unexecuted instantiation: CSSGrammar.c:var_GetString Unexecuted instantiation: libwebvtt_plugin_la-CSSLexer.c:var_GetString Unexecuted instantiation: xa.c:var_GetString Unexecuted instantiation: a52.c:var_GetString Unexecuted instantiation: copy.c:var_GetString Unexecuted instantiation: dts.c:var_GetString Unexecuted instantiation: h264.c:var_GetString Unexecuted instantiation: hxxx_sei.c:var_GetString Unexecuted instantiation: hxxx_common.c:var_GetString Unexecuted instantiation: h264_nal.c:var_GetString Unexecuted instantiation: h264_slice.c:var_GetString Unexecuted instantiation: hevc.c:var_GetString Unexecuted instantiation: hevc_nal.c:var_GetString Unexecuted instantiation: mlp.c:var_GetString Unexecuted instantiation: mpeg4audio.c:var_GetString Unexecuted instantiation: mpeg4video.c:var_GetString Unexecuted instantiation: mpegaudio.c:var_GetString Unexecuted instantiation: mpegvideo.c:var_GetString Unexecuted instantiation: vc1.c:var_GetString Unexecuted instantiation: rawaud.c:var_GetString Unexecuted instantiation: rawvid.c:var_GetString Unexecuted instantiation: fs.c:var_GetString Unexecuted instantiation: file.c:var_GetString Unexecuted instantiation: directory.c:var_GetString Unexecuted instantiation: libxml.c:var_GetString Unexecuted instantiation: ogg.c:var_GetString Unexecuted instantiation: oggseek.c:var_GetString Unexecuted instantiation: ogg_granule.c:var_GetString Unexecuted instantiation: mkv.cpp:var_GetString(vlc_object_t*, char const*) Unexecuted instantiation: util.cpp:var_GetString(vlc_object_t*, char const*) Unexecuted instantiation: virtual_segment.cpp:var_GetString(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment.cpp:var_GetString(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment_parse.cpp:var_GetString(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment_seeker.cpp:var_GetString(vlc_object_t*, char const*) Unexecuted instantiation: demux.cpp:var_GetString(vlc_object_t*, char const*) Unexecuted instantiation: events.cpp:var_GetString(vlc_object_t*, char const*) Unexecuted instantiation: Ebml_parser.cpp:var_GetString(vlc_object_t*, char const*) Unexecuted instantiation: chapters.cpp:var_GetString(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command.cpp:var_GetString(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_dvd.cpp:var_GetString(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_script.cpp:var_GetString(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_script_common.cpp:var_GetString(vlc_object_t*, char const*) Unexecuted instantiation: stream_io_callback.cpp:var_GetString(vlc_object_t*, char const*) Unexecuted instantiation: vlc_colors.c:var_GetString Unexecuted instantiation: adpcm.c:var_GetString Unexecuted instantiation: aes3.c:var_GetString Unexecuted instantiation: araw.c:var_GetString Unexecuted instantiation: g711.c:var_GetString Unexecuted instantiation: lpcm.c:var_GetString Unexecuted instantiation: uleaddvaudio.c:var_GetString Unexecuted instantiation: rawvideo.c:var_GetString Unexecuted instantiation: cc.c:var_GetString Unexecuted instantiation: cea708.c:var_GetString Unexecuted instantiation: cvdsub.c:var_GetString Unexecuted instantiation: dvbsub.c:var_GetString Unexecuted instantiation: scte18.c:var_GetString Unexecuted instantiation: atsc_a65.c:var_GetString Unexecuted instantiation: scte27.c:var_GetString Unexecuted instantiation: spudec.c:var_GetString Unexecuted instantiation: parse.c:var_GetString Unexecuted instantiation: stl.c:var_GetString Unexecuted instantiation: subsdec.c:var_GetString Unexecuted instantiation: subsusf.c:var_GetString Unexecuted instantiation: svcdsub.c:var_GetString Unexecuted instantiation: textst.c:var_GetString Unexecuted instantiation: substx3g.c:var_GetString Unexecuted instantiation: libvlc.c:var_GetString Unexecuted instantiation: version.c:var_GetString Unexecuted instantiation: chain.c:var_GetString Unexecuted instantiation: help.c:var_GetString Unexecuted instantiation: cmdline.c:var_GetString Unexecuted instantiation: getopt.c:var_GetString Unexecuted instantiation: libc.c:var_GetString Unexecuted instantiation: media_source.c:var_GetString Unexecuted instantiation: media_tree.c:var_GetString Unexecuted instantiation: modules.c:var_GetString Unexecuted instantiation: bank.c:var_GetString Unexecuted instantiation: entry.c:var_GetString Unexecuted instantiation: textdomain.c:var_GetString Unexecuted instantiation: dialog.c:var_GetString Unexecuted instantiation: interface.c:var_GetString Unexecuted instantiation: content.c:var_GetString Unexecuted instantiation: control.c:var_GetString Unexecuted instantiation: item.c:var_GetString Unexecuted instantiation: notify.c:var_GetString Unexecuted instantiation: player.c:var_GetString Unexecuted instantiation: playlist.c:var_GetString Unexecuted instantiation: preparse.c:var_GetString Unexecuted instantiation: randomizer.c:var_GetString Unexecuted instantiation: preparser.c:var_GetString Unexecuted instantiation: access.c:var_GetString Unexecuted instantiation: decoder_device.c:var_GetString Unexecuted instantiation: decoder_helpers.c:var_GetString Unexecuted instantiation: demux.c:var_GetString Unexecuted instantiation: input.c:var_GetString Unexecuted instantiation: attachment.c:var_GetString Unexecuted instantiation: replay_gain.c:var_GetString Unexecuted instantiation: timer.c:var_GetString Unexecuted instantiation: track.c:var_GetString Unexecuted instantiation: title.c:var_GetString Unexecuted instantiation: aout.c:var_GetString Unexecuted instantiation: vout.c:var_GetString Unexecuted instantiation: osd.c:var_GetString Unexecuted instantiation: medialib.c:var_GetString Unexecuted instantiation: resource.c:var_GetString Unexecuted instantiation: services_discovery.c:var_GetString Unexecuted instantiation: source.c:var_GetString Unexecuted instantiation: stats.c:var_GetString Unexecuted instantiation: stream.c:var_GetString Unexecuted instantiation: stream_extractor.c:var_GetString Unexecuted instantiation: stream_filter.c:var_GetString Unexecuted instantiation: stream_memory.c:var_GetString Unexecuted instantiation: subtitles.c:var_GetString Unexecuted instantiation: dec.c:var_GetString Unexecuted instantiation: filters.c:var_GetString Unexecuted instantiation: meter.c:var_GetString Unexecuted instantiation: output.c:var_GetString Unexecuted instantiation: volume.c:var_GetString Unexecuted instantiation: video_output.c:var_GetString Unexecuted instantiation: video_text.c:var_GetString Unexecuted instantiation: video_widgets.c:var_GetString Unexecuted instantiation: vout_subpictures.c:var_GetString Unexecuted instantiation: video_window.c:var_GetString Unexecuted instantiation: window.c:var_GetString Unexecuted instantiation: vout_intf.c:var_GetString Unexecuted instantiation: vout_wrapper.c:var_GetString Unexecuted instantiation: udp.c:var_GetString Unexecuted instantiation: charset.c:var_GetString Unexecuted instantiation: memstream.c:var_GetString Unexecuted instantiation: strings.c:var_GetString Unexecuted instantiation: unicode.c:var_GetString Unexecuted instantiation: url.c:var_GetString Unexecuted instantiation: filesystem.c:var_GetString Unexecuted instantiation: actions.c:var_GetString Unexecuted instantiation: ancillary.c:var_GetString Unexecuted instantiation: executor.c:var_GetString Unexecuted instantiation: md5.c:var_GetString Unexecuted instantiation: probe.c:var_GetString Unexecuted instantiation: mtime.c:var_GetString Unexecuted instantiation: frame.c:var_GetString Unexecuted instantiation: fifo.c:var_GetString Unexecuted instantiation: fourcc.c:var_GetString Unexecuted instantiation: es_format.c:var_GetString Unexecuted instantiation: picture.c:var_GetString Unexecuted instantiation: picture_fifo.c:var_GetString Unexecuted instantiation: picture_pool.c:var_GetString Unexecuted instantiation: interrupt.c:var_GetString Unexecuted instantiation: keystore.c:var_GetString Unexecuted instantiation: rcu.c:var_GetString Unexecuted instantiation: renderer_discovery.c:var_GetString Unexecuted instantiation: threads.c:var_GetString Unexecuted instantiation: cpu.c:var_GetString Unexecuted instantiation: epg.c:var_GetString Unexecuted instantiation: exit.c:var_GetString Unexecuted instantiation: image.c:var_GetString Unexecuted instantiation: messages.c:var_GetString Unexecuted instantiation: tracer.c:var_GetString Unexecuted instantiation: objects.c:var_GetString Unexecuted instantiation: objres.c:var_GetString Unexecuted instantiation: queue.c:var_GetString Unexecuted instantiation: variables.c:var_GetString Unexecuted instantiation: xml.c:var_GetString Unexecuted instantiation: filter.c:var_GetString Unexecuted instantiation: filter_chain.c:var_GetString Unexecuted instantiation: httpcookies.c:var_GetString Unexecuted instantiation: text_style.c:var_GetString Unexecuted instantiation: sort.c:var_GetString Unexecuted instantiation: subpicture.c:var_GetString Unexecuted instantiation: medialibrary.c:var_GetString Unexecuted instantiation: viewpoint.c:var_GetString Unexecuted instantiation: thread.c:var_GetString Unexecuted instantiation: rand.c:var_GetString Unexecuted instantiation: specific.c:var_GetString Unexecuted instantiation: stream_output.c:var_GetString Unexecuted instantiation: vlm.c:var_GetString Unexecuted instantiation: vlm_event.c:var_GetString Unexecuted instantiation: vlmshell.c:var_GetString Unexecuted instantiation: libvlc-module.c:var_GetString Unexecuted instantiation: dirs.c:var_GetString Unexecuted instantiation: art.c:var_GetString Unexecuted instantiation: fetcher.c:var_GetString Unexecuted instantiation: clock.c:var_GetString Unexecuted instantiation: es_out.c:var_GetString Unexecuted instantiation: es_out_source.c:var_GetString Unexecuted instantiation: es_out_timeshift.c:var_GetString Unexecuted instantiation: display.c:var_GetString Unexecuted instantiation: inhibit.c:var_GetString Unexecuted instantiation: interlacing.c:var_GetString Unexecuted instantiation: snapshot.c:var_GetString Unexecuted instantiation: getaddrinfo.c:var_GetString Unexecuted instantiation: io.c:var_GetString Unexecuted instantiation: iso_lang.c:var_GetString Unexecuted instantiation: chroma_probe.c:var_GetString Unexecuted instantiation: clock_internal.c:var_GetString Unexecuted instantiation: input_clock.c:var_GetString |
476 | | |
477 | | VLC_USED VLC_MALLOC |
478 | | static inline char *var_GetNonEmptyString( vlc_object_t *p_obj, const char *psz_name ) |
479 | 0 | { |
480 | 0 | vlc_value_t val; |
481 | 0 | if( var_GetChecked( p_obj, psz_name, VLC_VAR_STRING, &val ) ) |
482 | 0 | return NULL; |
483 | 0 | if( val.psz_string && *val.psz_string ) |
484 | 0 | return val.psz_string; |
485 | 0 | free( val.psz_string ); |
486 | 0 | return NULL; |
487 | 0 | } Unexecuted instantiation: demux-run.c:var_GetNonEmptyString Unexecuted instantiation: common.c:var_GetNonEmptyString Unexecuted instantiation: var.c:var_GetNonEmptyString Unexecuted instantiation: decoder.c:var_GetNonEmptyString Unexecuted instantiation: core.c:var_GetNonEmptyString Unexecuted instantiation: error.c:var_GetNonEmptyString Unexecuted instantiation: console.c:var_GetNonEmptyString Unexecuted instantiation: aiff.c:var_GetNonEmptyString Unexecuted instantiation: asf.c:var_GetNonEmptyString Unexecuted instantiation: libasf.c:var_GetNonEmptyString Unexecuted instantiation: asfpacket.c:var_GetNonEmptyString Unexecuted instantiation: au.c:var_GetNonEmptyString Unexecuted instantiation: avi.c:var_GetNonEmptyString Unexecuted instantiation: libavi.c:var_GetNonEmptyString Unexecuted instantiation: caf.c:var_GetNonEmptyString Unexecuted instantiation: cdg.c:var_GetNonEmptyString Unexecuted instantiation: es.c:var_GetNonEmptyString Unexecuted instantiation: dts_header.c:var_GetNonEmptyString Unexecuted instantiation: flac.c:var_GetNonEmptyString Unexecuted instantiation: xiph_metadata.c:var_GetNonEmptyString Unexecuted instantiation: h26x.c:var_GetNonEmptyString Unexecuted instantiation: mjpeg.c:var_GetNonEmptyString Unexecuted instantiation: mp4.c:var_GetNonEmptyString Unexecuted instantiation: fragments.c:var_GetNonEmptyString Unexecuted instantiation: attachments.c:var_GetNonEmptyString Unexecuted instantiation: heif.c:var_GetNonEmptyString Unexecuted instantiation: essetup.c:var_GetNonEmptyString Unexecuted instantiation: meta.c:var_GetNonEmptyString Unexecuted instantiation: libmp4.c:var_GetNonEmptyString Unexecuted instantiation: nsv.c:var_GetNonEmptyString Unexecuted instantiation: ps.c:var_GetNonEmptyString Unexecuted instantiation: pva.c:var_GetNonEmptyString Unexecuted instantiation: sap.c:var_GetNonEmptyString Unexecuted instantiation: sdp.c:var_GetNonEmptyString Unexecuted instantiation: smf.c:var_GetNonEmptyString Unexecuted instantiation: subtitle.c:var_GetNonEmptyString Unexecuted instantiation: tta.c:var_GetNonEmptyString Unexecuted instantiation: ttml.c:var_GetNonEmptyString Unexecuted instantiation: encttml.c:var_GetNonEmptyString Unexecuted instantiation: substtml.c:var_GetNonEmptyString Unexecuted instantiation: genttml.c:var_GetNonEmptyString Unexecuted instantiation: ty.c:var_GetNonEmptyString Unexecuted instantiation: voc.c:var_GetNonEmptyString Unexecuted instantiation: wav.c:var_GetNonEmptyString Unexecuted instantiation: webvtt.c:var_GetNonEmptyString Unexecuted instantiation: encvtt.c:var_GetNonEmptyString Unexecuted instantiation: subsvtt.c:var_GetNonEmptyString Unexecuted instantiation: css_parser.c:var_GetNonEmptyString Unexecuted instantiation: css_style.c:var_GetNonEmptyString Unexecuted instantiation: CSSGrammar.c:var_GetNonEmptyString Unexecuted instantiation: libwebvtt_plugin_la-CSSLexer.c:var_GetNonEmptyString Unexecuted instantiation: xa.c:var_GetNonEmptyString Unexecuted instantiation: a52.c:var_GetNonEmptyString Unexecuted instantiation: copy.c:var_GetNonEmptyString Unexecuted instantiation: dts.c:var_GetNonEmptyString Unexecuted instantiation: h264.c:var_GetNonEmptyString Unexecuted instantiation: hxxx_sei.c:var_GetNonEmptyString Unexecuted instantiation: hxxx_common.c:var_GetNonEmptyString Unexecuted instantiation: h264_nal.c:var_GetNonEmptyString Unexecuted instantiation: h264_slice.c:var_GetNonEmptyString Unexecuted instantiation: hevc.c:var_GetNonEmptyString Unexecuted instantiation: hevc_nal.c:var_GetNonEmptyString Unexecuted instantiation: mlp.c:var_GetNonEmptyString Unexecuted instantiation: mpeg4audio.c:var_GetNonEmptyString Unexecuted instantiation: mpeg4video.c:var_GetNonEmptyString Unexecuted instantiation: mpegaudio.c:var_GetNonEmptyString Unexecuted instantiation: mpegvideo.c:var_GetNonEmptyString Unexecuted instantiation: vc1.c:var_GetNonEmptyString Unexecuted instantiation: rawaud.c:var_GetNonEmptyString Unexecuted instantiation: rawvid.c:var_GetNonEmptyString Unexecuted instantiation: fs.c:var_GetNonEmptyString Unexecuted instantiation: file.c:var_GetNonEmptyString Unexecuted instantiation: directory.c:var_GetNonEmptyString Unexecuted instantiation: libxml.c:var_GetNonEmptyString Unexecuted instantiation: ogg.c:var_GetNonEmptyString Unexecuted instantiation: oggseek.c:var_GetNonEmptyString Unexecuted instantiation: ogg_granule.c:var_GetNonEmptyString Unexecuted instantiation: mkv.cpp:var_GetNonEmptyString(vlc_object_t*, char const*) Unexecuted instantiation: util.cpp:var_GetNonEmptyString(vlc_object_t*, char const*) Unexecuted instantiation: virtual_segment.cpp:var_GetNonEmptyString(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment.cpp:var_GetNonEmptyString(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment_parse.cpp:var_GetNonEmptyString(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment_seeker.cpp:var_GetNonEmptyString(vlc_object_t*, char const*) Unexecuted instantiation: demux.cpp:var_GetNonEmptyString(vlc_object_t*, char const*) Unexecuted instantiation: events.cpp:var_GetNonEmptyString(vlc_object_t*, char const*) Unexecuted instantiation: Ebml_parser.cpp:var_GetNonEmptyString(vlc_object_t*, char const*) Unexecuted instantiation: chapters.cpp:var_GetNonEmptyString(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command.cpp:var_GetNonEmptyString(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_dvd.cpp:var_GetNonEmptyString(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_script.cpp:var_GetNonEmptyString(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_script_common.cpp:var_GetNonEmptyString(vlc_object_t*, char const*) Unexecuted instantiation: stream_io_callback.cpp:var_GetNonEmptyString(vlc_object_t*, char const*) Unexecuted instantiation: vlc_colors.c:var_GetNonEmptyString Unexecuted instantiation: adpcm.c:var_GetNonEmptyString Unexecuted instantiation: aes3.c:var_GetNonEmptyString Unexecuted instantiation: araw.c:var_GetNonEmptyString Unexecuted instantiation: g711.c:var_GetNonEmptyString Unexecuted instantiation: lpcm.c:var_GetNonEmptyString Unexecuted instantiation: uleaddvaudio.c:var_GetNonEmptyString Unexecuted instantiation: rawvideo.c:var_GetNonEmptyString Unexecuted instantiation: cc.c:var_GetNonEmptyString Unexecuted instantiation: cea708.c:var_GetNonEmptyString Unexecuted instantiation: cvdsub.c:var_GetNonEmptyString Unexecuted instantiation: dvbsub.c:var_GetNonEmptyString Unexecuted instantiation: scte18.c:var_GetNonEmptyString Unexecuted instantiation: atsc_a65.c:var_GetNonEmptyString Unexecuted instantiation: scte27.c:var_GetNonEmptyString Unexecuted instantiation: spudec.c:var_GetNonEmptyString Unexecuted instantiation: parse.c:var_GetNonEmptyString Unexecuted instantiation: stl.c:var_GetNonEmptyString Unexecuted instantiation: subsdec.c:var_GetNonEmptyString Unexecuted instantiation: subsusf.c:var_GetNonEmptyString Unexecuted instantiation: svcdsub.c:var_GetNonEmptyString Unexecuted instantiation: textst.c:var_GetNonEmptyString Unexecuted instantiation: substx3g.c:var_GetNonEmptyString Unexecuted instantiation: libvlc.c:var_GetNonEmptyString Unexecuted instantiation: version.c:var_GetNonEmptyString Unexecuted instantiation: chain.c:var_GetNonEmptyString Unexecuted instantiation: help.c:var_GetNonEmptyString Unexecuted instantiation: cmdline.c:var_GetNonEmptyString Unexecuted instantiation: getopt.c:var_GetNonEmptyString Unexecuted instantiation: libc.c:var_GetNonEmptyString Unexecuted instantiation: media_source.c:var_GetNonEmptyString Unexecuted instantiation: media_tree.c:var_GetNonEmptyString Unexecuted instantiation: modules.c:var_GetNonEmptyString Unexecuted instantiation: bank.c:var_GetNonEmptyString Unexecuted instantiation: entry.c:var_GetNonEmptyString Unexecuted instantiation: textdomain.c:var_GetNonEmptyString Unexecuted instantiation: dialog.c:var_GetNonEmptyString Unexecuted instantiation: interface.c:var_GetNonEmptyString Unexecuted instantiation: content.c:var_GetNonEmptyString Unexecuted instantiation: control.c:var_GetNonEmptyString Unexecuted instantiation: item.c:var_GetNonEmptyString Unexecuted instantiation: notify.c:var_GetNonEmptyString Unexecuted instantiation: player.c:var_GetNonEmptyString Unexecuted instantiation: playlist.c:var_GetNonEmptyString Unexecuted instantiation: preparse.c:var_GetNonEmptyString Unexecuted instantiation: randomizer.c:var_GetNonEmptyString Unexecuted instantiation: preparser.c:var_GetNonEmptyString Unexecuted instantiation: access.c:var_GetNonEmptyString Unexecuted instantiation: decoder_device.c:var_GetNonEmptyString Unexecuted instantiation: decoder_helpers.c:var_GetNonEmptyString Unexecuted instantiation: demux.c:var_GetNonEmptyString Unexecuted instantiation: input.c:var_GetNonEmptyString Unexecuted instantiation: attachment.c:var_GetNonEmptyString Unexecuted instantiation: replay_gain.c:var_GetNonEmptyString Unexecuted instantiation: timer.c:var_GetNonEmptyString Unexecuted instantiation: track.c:var_GetNonEmptyString Unexecuted instantiation: title.c:var_GetNonEmptyString Unexecuted instantiation: aout.c:var_GetNonEmptyString Unexecuted instantiation: vout.c:var_GetNonEmptyString Unexecuted instantiation: osd.c:var_GetNonEmptyString Unexecuted instantiation: medialib.c:var_GetNonEmptyString Unexecuted instantiation: resource.c:var_GetNonEmptyString Unexecuted instantiation: services_discovery.c:var_GetNonEmptyString Unexecuted instantiation: source.c:var_GetNonEmptyString Unexecuted instantiation: stats.c:var_GetNonEmptyString Unexecuted instantiation: stream.c:var_GetNonEmptyString Unexecuted instantiation: stream_extractor.c:var_GetNonEmptyString Unexecuted instantiation: stream_filter.c:var_GetNonEmptyString Unexecuted instantiation: stream_memory.c:var_GetNonEmptyString Unexecuted instantiation: subtitles.c:var_GetNonEmptyString Unexecuted instantiation: dec.c:var_GetNonEmptyString Unexecuted instantiation: filters.c:var_GetNonEmptyString Unexecuted instantiation: meter.c:var_GetNonEmptyString Unexecuted instantiation: output.c:var_GetNonEmptyString Unexecuted instantiation: volume.c:var_GetNonEmptyString Unexecuted instantiation: video_output.c:var_GetNonEmptyString Unexecuted instantiation: video_text.c:var_GetNonEmptyString Unexecuted instantiation: video_widgets.c:var_GetNonEmptyString Unexecuted instantiation: vout_subpictures.c:var_GetNonEmptyString Unexecuted instantiation: video_window.c:var_GetNonEmptyString Unexecuted instantiation: window.c:var_GetNonEmptyString Unexecuted instantiation: vout_intf.c:var_GetNonEmptyString Unexecuted instantiation: vout_wrapper.c:var_GetNonEmptyString Unexecuted instantiation: udp.c:var_GetNonEmptyString Unexecuted instantiation: charset.c:var_GetNonEmptyString Unexecuted instantiation: memstream.c:var_GetNonEmptyString Unexecuted instantiation: strings.c:var_GetNonEmptyString Unexecuted instantiation: unicode.c:var_GetNonEmptyString Unexecuted instantiation: url.c:var_GetNonEmptyString Unexecuted instantiation: filesystem.c:var_GetNonEmptyString Unexecuted instantiation: actions.c:var_GetNonEmptyString Unexecuted instantiation: ancillary.c:var_GetNonEmptyString Unexecuted instantiation: executor.c:var_GetNonEmptyString Unexecuted instantiation: md5.c:var_GetNonEmptyString Unexecuted instantiation: probe.c:var_GetNonEmptyString Unexecuted instantiation: mtime.c:var_GetNonEmptyString Unexecuted instantiation: frame.c:var_GetNonEmptyString Unexecuted instantiation: fifo.c:var_GetNonEmptyString Unexecuted instantiation: fourcc.c:var_GetNonEmptyString Unexecuted instantiation: es_format.c:var_GetNonEmptyString Unexecuted instantiation: picture.c:var_GetNonEmptyString Unexecuted instantiation: picture_fifo.c:var_GetNonEmptyString Unexecuted instantiation: picture_pool.c:var_GetNonEmptyString Unexecuted instantiation: interrupt.c:var_GetNonEmptyString Unexecuted instantiation: keystore.c:var_GetNonEmptyString Unexecuted instantiation: rcu.c:var_GetNonEmptyString Unexecuted instantiation: renderer_discovery.c:var_GetNonEmptyString Unexecuted instantiation: threads.c:var_GetNonEmptyString Unexecuted instantiation: cpu.c:var_GetNonEmptyString Unexecuted instantiation: epg.c:var_GetNonEmptyString Unexecuted instantiation: exit.c:var_GetNonEmptyString Unexecuted instantiation: image.c:var_GetNonEmptyString Unexecuted instantiation: messages.c:var_GetNonEmptyString Unexecuted instantiation: tracer.c:var_GetNonEmptyString Unexecuted instantiation: objects.c:var_GetNonEmptyString Unexecuted instantiation: objres.c:var_GetNonEmptyString Unexecuted instantiation: queue.c:var_GetNonEmptyString Unexecuted instantiation: variables.c:var_GetNonEmptyString Unexecuted instantiation: xml.c:var_GetNonEmptyString Unexecuted instantiation: filter.c:var_GetNonEmptyString Unexecuted instantiation: filter_chain.c:var_GetNonEmptyString Unexecuted instantiation: httpcookies.c:var_GetNonEmptyString Unexecuted instantiation: text_style.c:var_GetNonEmptyString Unexecuted instantiation: sort.c:var_GetNonEmptyString Unexecuted instantiation: subpicture.c:var_GetNonEmptyString Unexecuted instantiation: medialibrary.c:var_GetNonEmptyString Unexecuted instantiation: viewpoint.c:var_GetNonEmptyString Unexecuted instantiation: thread.c:var_GetNonEmptyString Unexecuted instantiation: rand.c:var_GetNonEmptyString Unexecuted instantiation: specific.c:var_GetNonEmptyString Unexecuted instantiation: stream_output.c:var_GetNonEmptyString Unexecuted instantiation: vlm.c:var_GetNonEmptyString Unexecuted instantiation: vlm_event.c:var_GetNonEmptyString Unexecuted instantiation: vlmshell.c:var_GetNonEmptyString Unexecuted instantiation: libvlc-module.c:var_GetNonEmptyString Unexecuted instantiation: dirs.c:var_GetNonEmptyString Unexecuted instantiation: art.c:var_GetNonEmptyString Unexecuted instantiation: fetcher.c:var_GetNonEmptyString Unexecuted instantiation: clock.c:var_GetNonEmptyString Unexecuted instantiation: es_out.c:var_GetNonEmptyString Unexecuted instantiation: es_out_source.c:var_GetNonEmptyString Unexecuted instantiation: es_out_timeshift.c:var_GetNonEmptyString Unexecuted instantiation: display.c:var_GetNonEmptyString Unexecuted instantiation: inhibit.c:var_GetNonEmptyString Unexecuted instantiation: interlacing.c:var_GetNonEmptyString Unexecuted instantiation: snapshot.c:var_GetNonEmptyString Unexecuted instantiation: getaddrinfo.c:var_GetNonEmptyString Unexecuted instantiation: io.c:var_GetNonEmptyString Unexecuted instantiation: iso_lang.c:var_GetNonEmptyString Unexecuted instantiation: chroma_probe.c:var_GetNonEmptyString Unexecuted instantiation: clock_internal.c:var_GetNonEmptyString Unexecuted instantiation: input_clock.c:var_GetNonEmptyString |
488 | | |
489 | | VLC_USED |
490 | | static inline void *var_GetAddress( vlc_object_t *p_obj, const char *psz_name ) |
491 | 0 | { |
492 | 0 | vlc_value_t val; |
493 | 0 | if( var_GetChecked( p_obj, psz_name, VLC_VAR_ADDRESS, &val ) ) |
494 | 0 | return NULL; |
495 | 0 | else |
496 | 0 | return val.p_address; |
497 | 0 | } Unexecuted instantiation: demux-run.c:var_GetAddress Unexecuted instantiation: common.c:var_GetAddress Unexecuted instantiation: var.c:var_GetAddress Unexecuted instantiation: decoder.c:var_GetAddress Unexecuted instantiation: core.c:var_GetAddress Unexecuted instantiation: error.c:var_GetAddress Unexecuted instantiation: console.c:var_GetAddress Unexecuted instantiation: aiff.c:var_GetAddress Unexecuted instantiation: asf.c:var_GetAddress Unexecuted instantiation: libasf.c:var_GetAddress Unexecuted instantiation: asfpacket.c:var_GetAddress Unexecuted instantiation: au.c:var_GetAddress Unexecuted instantiation: avi.c:var_GetAddress Unexecuted instantiation: libavi.c:var_GetAddress Unexecuted instantiation: caf.c:var_GetAddress Unexecuted instantiation: cdg.c:var_GetAddress Unexecuted instantiation: es.c:var_GetAddress Unexecuted instantiation: dts_header.c:var_GetAddress Unexecuted instantiation: flac.c:var_GetAddress Unexecuted instantiation: xiph_metadata.c:var_GetAddress Unexecuted instantiation: h26x.c:var_GetAddress Unexecuted instantiation: mjpeg.c:var_GetAddress Unexecuted instantiation: mp4.c:var_GetAddress Unexecuted instantiation: fragments.c:var_GetAddress Unexecuted instantiation: attachments.c:var_GetAddress Unexecuted instantiation: heif.c:var_GetAddress Unexecuted instantiation: essetup.c:var_GetAddress Unexecuted instantiation: meta.c:var_GetAddress Unexecuted instantiation: libmp4.c:var_GetAddress Unexecuted instantiation: nsv.c:var_GetAddress Unexecuted instantiation: ps.c:var_GetAddress Unexecuted instantiation: pva.c:var_GetAddress Unexecuted instantiation: sap.c:var_GetAddress Unexecuted instantiation: sdp.c:var_GetAddress Unexecuted instantiation: smf.c:var_GetAddress Unexecuted instantiation: subtitle.c:var_GetAddress Unexecuted instantiation: tta.c:var_GetAddress Unexecuted instantiation: ttml.c:var_GetAddress Unexecuted instantiation: encttml.c:var_GetAddress Unexecuted instantiation: substtml.c:var_GetAddress Unexecuted instantiation: genttml.c:var_GetAddress Unexecuted instantiation: ty.c:var_GetAddress Unexecuted instantiation: voc.c:var_GetAddress Unexecuted instantiation: wav.c:var_GetAddress Unexecuted instantiation: webvtt.c:var_GetAddress Unexecuted instantiation: encvtt.c:var_GetAddress Unexecuted instantiation: subsvtt.c:var_GetAddress Unexecuted instantiation: css_parser.c:var_GetAddress Unexecuted instantiation: css_style.c:var_GetAddress Unexecuted instantiation: CSSGrammar.c:var_GetAddress Unexecuted instantiation: libwebvtt_plugin_la-CSSLexer.c:var_GetAddress Unexecuted instantiation: xa.c:var_GetAddress Unexecuted instantiation: a52.c:var_GetAddress Unexecuted instantiation: copy.c:var_GetAddress Unexecuted instantiation: dts.c:var_GetAddress Unexecuted instantiation: h264.c:var_GetAddress Unexecuted instantiation: hxxx_sei.c:var_GetAddress Unexecuted instantiation: hxxx_common.c:var_GetAddress Unexecuted instantiation: h264_nal.c:var_GetAddress Unexecuted instantiation: h264_slice.c:var_GetAddress Unexecuted instantiation: hevc.c:var_GetAddress Unexecuted instantiation: hevc_nal.c:var_GetAddress Unexecuted instantiation: mlp.c:var_GetAddress Unexecuted instantiation: mpeg4audio.c:var_GetAddress Unexecuted instantiation: mpeg4video.c:var_GetAddress Unexecuted instantiation: mpegaudio.c:var_GetAddress Unexecuted instantiation: mpegvideo.c:var_GetAddress Unexecuted instantiation: vc1.c:var_GetAddress Unexecuted instantiation: rawaud.c:var_GetAddress Unexecuted instantiation: rawvid.c:var_GetAddress Unexecuted instantiation: fs.c:var_GetAddress Unexecuted instantiation: file.c:var_GetAddress Unexecuted instantiation: directory.c:var_GetAddress Unexecuted instantiation: libxml.c:var_GetAddress Unexecuted instantiation: ogg.c:var_GetAddress Unexecuted instantiation: oggseek.c:var_GetAddress Unexecuted instantiation: ogg_granule.c:var_GetAddress Unexecuted instantiation: mkv.cpp:var_GetAddress(vlc_object_t*, char const*) Unexecuted instantiation: util.cpp:var_GetAddress(vlc_object_t*, char const*) Unexecuted instantiation: virtual_segment.cpp:var_GetAddress(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment.cpp:var_GetAddress(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment_parse.cpp:var_GetAddress(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment_seeker.cpp:var_GetAddress(vlc_object_t*, char const*) Unexecuted instantiation: demux.cpp:var_GetAddress(vlc_object_t*, char const*) Unexecuted instantiation: events.cpp:var_GetAddress(vlc_object_t*, char const*) Unexecuted instantiation: Ebml_parser.cpp:var_GetAddress(vlc_object_t*, char const*) Unexecuted instantiation: chapters.cpp:var_GetAddress(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command.cpp:var_GetAddress(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_dvd.cpp:var_GetAddress(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_script.cpp:var_GetAddress(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_script_common.cpp:var_GetAddress(vlc_object_t*, char const*) Unexecuted instantiation: stream_io_callback.cpp:var_GetAddress(vlc_object_t*, char const*) Unexecuted instantiation: vlc_colors.c:var_GetAddress Unexecuted instantiation: adpcm.c:var_GetAddress Unexecuted instantiation: aes3.c:var_GetAddress Unexecuted instantiation: araw.c:var_GetAddress Unexecuted instantiation: g711.c:var_GetAddress Unexecuted instantiation: lpcm.c:var_GetAddress Unexecuted instantiation: uleaddvaudio.c:var_GetAddress Unexecuted instantiation: rawvideo.c:var_GetAddress Unexecuted instantiation: cc.c:var_GetAddress Unexecuted instantiation: cea708.c:var_GetAddress Unexecuted instantiation: cvdsub.c:var_GetAddress Unexecuted instantiation: dvbsub.c:var_GetAddress Unexecuted instantiation: scte18.c:var_GetAddress Unexecuted instantiation: atsc_a65.c:var_GetAddress Unexecuted instantiation: scte27.c:var_GetAddress Unexecuted instantiation: spudec.c:var_GetAddress Unexecuted instantiation: parse.c:var_GetAddress Unexecuted instantiation: stl.c:var_GetAddress Unexecuted instantiation: subsdec.c:var_GetAddress Unexecuted instantiation: subsusf.c:var_GetAddress Unexecuted instantiation: svcdsub.c:var_GetAddress Unexecuted instantiation: textst.c:var_GetAddress Unexecuted instantiation: substx3g.c:var_GetAddress Unexecuted instantiation: libvlc.c:var_GetAddress Unexecuted instantiation: version.c:var_GetAddress Unexecuted instantiation: chain.c:var_GetAddress Unexecuted instantiation: help.c:var_GetAddress Unexecuted instantiation: cmdline.c:var_GetAddress Unexecuted instantiation: getopt.c:var_GetAddress Unexecuted instantiation: libc.c:var_GetAddress Unexecuted instantiation: media_source.c:var_GetAddress Unexecuted instantiation: media_tree.c:var_GetAddress Unexecuted instantiation: modules.c:var_GetAddress Unexecuted instantiation: bank.c:var_GetAddress Unexecuted instantiation: entry.c:var_GetAddress Unexecuted instantiation: textdomain.c:var_GetAddress Unexecuted instantiation: dialog.c:var_GetAddress Unexecuted instantiation: interface.c:var_GetAddress Unexecuted instantiation: content.c:var_GetAddress Unexecuted instantiation: control.c:var_GetAddress Unexecuted instantiation: item.c:var_GetAddress Unexecuted instantiation: notify.c:var_GetAddress Unexecuted instantiation: player.c:var_GetAddress Unexecuted instantiation: playlist.c:var_GetAddress Unexecuted instantiation: preparse.c:var_GetAddress Unexecuted instantiation: randomizer.c:var_GetAddress Unexecuted instantiation: preparser.c:var_GetAddress Unexecuted instantiation: access.c:var_GetAddress Unexecuted instantiation: decoder_device.c:var_GetAddress Unexecuted instantiation: decoder_helpers.c:var_GetAddress Unexecuted instantiation: demux.c:var_GetAddress Unexecuted instantiation: input.c:var_GetAddress Unexecuted instantiation: attachment.c:var_GetAddress Unexecuted instantiation: replay_gain.c:var_GetAddress Unexecuted instantiation: timer.c:var_GetAddress Unexecuted instantiation: track.c:var_GetAddress Unexecuted instantiation: title.c:var_GetAddress Unexecuted instantiation: aout.c:var_GetAddress Unexecuted instantiation: vout.c:var_GetAddress Unexecuted instantiation: osd.c:var_GetAddress Unexecuted instantiation: medialib.c:var_GetAddress Unexecuted instantiation: resource.c:var_GetAddress Unexecuted instantiation: services_discovery.c:var_GetAddress Unexecuted instantiation: source.c:var_GetAddress Unexecuted instantiation: stats.c:var_GetAddress Unexecuted instantiation: stream.c:var_GetAddress Unexecuted instantiation: stream_extractor.c:var_GetAddress Unexecuted instantiation: stream_filter.c:var_GetAddress Unexecuted instantiation: stream_memory.c:var_GetAddress Unexecuted instantiation: subtitles.c:var_GetAddress Unexecuted instantiation: dec.c:var_GetAddress Unexecuted instantiation: filters.c:var_GetAddress Unexecuted instantiation: meter.c:var_GetAddress Unexecuted instantiation: output.c:var_GetAddress Unexecuted instantiation: volume.c:var_GetAddress Unexecuted instantiation: video_output.c:var_GetAddress Unexecuted instantiation: video_text.c:var_GetAddress Unexecuted instantiation: video_widgets.c:var_GetAddress Unexecuted instantiation: vout_subpictures.c:var_GetAddress Unexecuted instantiation: video_window.c:var_GetAddress Unexecuted instantiation: window.c:var_GetAddress Unexecuted instantiation: vout_intf.c:var_GetAddress Unexecuted instantiation: vout_wrapper.c:var_GetAddress Unexecuted instantiation: udp.c:var_GetAddress Unexecuted instantiation: charset.c:var_GetAddress Unexecuted instantiation: memstream.c:var_GetAddress Unexecuted instantiation: strings.c:var_GetAddress Unexecuted instantiation: unicode.c:var_GetAddress Unexecuted instantiation: url.c:var_GetAddress Unexecuted instantiation: filesystem.c:var_GetAddress Unexecuted instantiation: actions.c:var_GetAddress Unexecuted instantiation: ancillary.c:var_GetAddress Unexecuted instantiation: executor.c:var_GetAddress Unexecuted instantiation: md5.c:var_GetAddress Unexecuted instantiation: probe.c:var_GetAddress Unexecuted instantiation: mtime.c:var_GetAddress Unexecuted instantiation: frame.c:var_GetAddress Unexecuted instantiation: fifo.c:var_GetAddress Unexecuted instantiation: fourcc.c:var_GetAddress Unexecuted instantiation: es_format.c:var_GetAddress Unexecuted instantiation: picture.c:var_GetAddress Unexecuted instantiation: picture_fifo.c:var_GetAddress Unexecuted instantiation: picture_pool.c:var_GetAddress Unexecuted instantiation: interrupt.c:var_GetAddress Unexecuted instantiation: keystore.c:var_GetAddress Unexecuted instantiation: rcu.c:var_GetAddress Unexecuted instantiation: renderer_discovery.c:var_GetAddress Unexecuted instantiation: threads.c:var_GetAddress Unexecuted instantiation: cpu.c:var_GetAddress Unexecuted instantiation: epg.c:var_GetAddress Unexecuted instantiation: exit.c:var_GetAddress Unexecuted instantiation: image.c:var_GetAddress Unexecuted instantiation: messages.c:var_GetAddress Unexecuted instantiation: tracer.c:var_GetAddress Unexecuted instantiation: objects.c:var_GetAddress Unexecuted instantiation: objres.c:var_GetAddress Unexecuted instantiation: queue.c:var_GetAddress Unexecuted instantiation: variables.c:var_GetAddress Unexecuted instantiation: xml.c:var_GetAddress Unexecuted instantiation: filter.c:var_GetAddress Unexecuted instantiation: filter_chain.c:var_GetAddress Unexecuted instantiation: httpcookies.c:var_GetAddress Unexecuted instantiation: text_style.c:var_GetAddress Unexecuted instantiation: sort.c:var_GetAddress Unexecuted instantiation: subpicture.c:var_GetAddress Unexecuted instantiation: medialibrary.c:var_GetAddress Unexecuted instantiation: viewpoint.c:var_GetAddress Unexecuted instantiation: thread.c:var_GetAddress Unexecuted instantiation: rand.c:var_GetAddress Unexecuted instantiation: specific.c:var_GetAddress Unexecuted instantiation: stream_output.c:var_GetAddress Unexecuted instantiation: vlm.c:var_GetAddress Unexecuted instantiation: vlm_event.c:var_GetAddress Unexecuted instantiation: vlmshell.c:var_GetAddress Unexecuted instantiation: libvlc-module.c:var_GetAddress Unexecuted instantiation: dirs.c:var_GetAddress Unexecuted instantiation: art.c:var_GetAddress Unexecuted instantiation: fetcher.c:var_GetAddress Unexecuted instantiation: clock.c:var_GetAddress Unexecuted instantiation: es_out.c:var_GetAddress Unexecuted instantiation: es_out_source.c:var_GetAddress Unexecuted instantiation: es_out_timeshift.c:var_GetAddress Unexecuted instantiation: display.c:var_GetAddress Unexecuted instantiation: inhibit.c:var_GetAddress Unexecuted instantiation: interlacing.c:var_GetAddress Unexecuted instantiation: snapshot.c:var_GetAddress Unexecuted instantiation: getaddrinfo.c:var_GetAddress Unexecuted instantiation: io.c:var_GetAddress Unexecuted instantiation: iso_lang.c:var_GetAddress Unexecuted instantiation: chroma_probe.c:var_GetAddress Unexecuted instantiation: clock_internal.c:var_GetAddress Unexecuted instantiation: input_clock.c:var_GetAddress |
498 | | |
499 | | /** |
500 | | * Increment an integer variable |
501 | | * \param p_obj the object that holds the variable |
502 | | * \param psz_name the name of the variable |
503 | | */ |
504 | | static inline int64_t var_IncInteger( vlc_object_t *p_obj, const char *psz_name ) |
505 | 0 | { |
506 | 0 | vlc_value_t val; |
507 | 0 | val.i_int = 1; |
508 | 0 | if( var_GetAndSet( p_obj, psz_name, VLC_VAR_INTEGER_ADD, &val ) ) |
509 | 0 | return 0; |
510 | 0 | return val.i_int; |
511 | 0 | } Unexecuted instantiation: demux-run.c:var_IncInteger Unexecuted instantiation: common.c:var_IncInteger Unexecuted instantiation: var.c:var_IncInteger Unexecuted instantiation: decoder.c:var_IncInteger Unexecuted instantiation: core.c:var_IncInteger Unexecuted instantiation: error.c:var_IncInteger Unexecuted instantiation: console.c:var_IncInteger Unexecuted instantiation: aiff.c:var_IncInteger Unexecuted instantiation: asf.c:var_IncInteger Unexecuted instantiation: libasf.c:var_IncInteger Unexecuted instantiation: asfpacket.c:var_IncInteger Unexecuted instantiation: au.c:var_IncInteger Unexecuted instantiation: avi.c:var_IncInteger Unexecuted instantiation: libavi.c:var_IncInteger Unexecuted instantiation: caf.c:var_IncInteger Unexecuted instantiation: cdg.c:var_IncInteger Unexecuted instantiation: es.c:var_IncInteger Unexecuted instantiation: dts_header.c:var_IncInteger Unexecuted instantiation: flac.c:var_IncInteger Unexecuted instantiation: xiph_metadata.c:var_IncInteger Unexecuted instantiation: h26x.c:var_IncInteger Unexecuted instantiation: mjpeg.c:var_IncInteger Unexecuted instantiation: mp4.c:var_IncInteger Unexecuted instantiation: fragments.c:var_IncInteger Unexecuted instantiation: attachments.c:var_IncInteger Unexecuted instantiation: heif.c:var_IncInteger Unexecuted instantiation: essetup.c:var_IncInteger Unexecuted instantiation: meta.c:var_IncInteger Unexecuted instantiation: libmp4.c:var_IncInteger Unexecuted instantiation: nsv.c:var_IncInteger Unexecuted instantiation: ps.c:var_IncInteger Unexecuted instantiation: pva.c:var_IncInteger Unexecuted instantiation: sap.c:var_IncInteger Unexecuted instantiation: sdp.c:var_IncInteger Unexecuted instantiation: smf.c:var_IncInteger Unexecuted instantiation: subtitle.c:var_IncInteger Unexecuted instantiation: tta.c:var_IncInteger Unexecuted instantiation: ttml.c:var_IncInteger Unexecuted instantiation: encttml.c:var_IncInteger Unexecuted instantiation: substtml.c:var_IncInteger Unexecuted instantiation: genttml.c:var_IncInteger Unexecuted instantiation: ty.c:var_IncInteger Unexecuted instantiation: voc.c:var_IncInteger Unexecuted instantiation: wav.c:var_IncInteger Unexecuted instantiation: webvtt.c:var_IncInteger Unexecuted instantiation: encvtt.c:var_IncInteger Unexecuted instantiation: subsvtt.c:var_IncInteger Unexecuted instantiation: css_parser.c:var_IncInteger Unexecuted instantiation: css_style.c:var_IncInteger Unexecuted instantiation: CSSGrammar.c:var_IncInteger Unexecuted instantiation: libwebvtt_plugin_la-CSSLexer.c:var_IncInteger Unexecuted instantiation: xa.c:var_IncInteger Unexecuted instantiation: a52.c:var_IncInteger Unexecuted instantiation: copy.c:var_IncInteger Unexecuted instantiation: dts.c:var_IncInteger Unexecuted instantiation: h264.c:var_IncInteger Unexecuted instantiation: hxxx_sei.c:var_IncInteger Unexecuted instantiation: hxxx_common.c:var_IncInteger Unexecuted instantiation: h264_nal.c:var_IncInteger Unexecuted instantiation: h264_slice.c:var_IncInteger Unexecuted instantiation: hevc.c:var_IncInteger Unexecuted instantiation: hevc_nal.c:var_IncInteger Unexecuted instantiation: mlp.c:var_IncInteger Unexecuted instantiation: mpeg4audio.c:var_IncInteger Unexecuted instantiation: mpeg4video.c:var_IncInteger Unexecuted instantiation: mpegaudio.c:var_IncInteger Unexecuted instantiation: mpegvideo.c:var_IncInteger Unexecuted instantiation: vc1.c:var_IncInteger Unexecuted instantiation: rawaud.c:var_IncInteger Unexecuted instantiation: rawvid.c:var_IncInteger Unexecuted instantiation: fs.c:var_IncInteger Unexecuted instantiation: file.c:var_IncInteger Unexecuted instantiation: directory.c:var_IncInteger Unexecuted instantiation: libxml.c:var_IncInteger Unexecuted instantiation: ogg.c:var_IncInteger Unexecuted instantiation: oggseek.c:var_IncInteger Unexecuted instantiation: ogg_granule.c:var_IncInteger Unexecuted instantiation: mkv.cpp:var_IncInteger(vlc_object_t*, char const*) Unexecuted instantiation: util.cpp:var_IncInteger(vlc_object_t*, char const*) Unexecuted instantiation: virtual_segment.cpp:var_IncInteger(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment.cpp:var_IncInteger(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment_parse.cpp:var_IncInteger(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment_seeker.cpp:var_IncInteger(vlc_object_t*, char const*) Unexecuted instantiation: demux.cpp:var_IncInteger(vlc_object_t*, char const*) Unexecuted instantiation: events.cpp:var_IncInteger(vlc_object_t*, char const*) Unexecuted instantiation: Ebml_parser.cpp:var_IncInteger(vlc_object_t*, char const*) Unexecuted instantiation: chapters.cpp:var_IncInteger(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command.cpp:var_IncInteger(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_dvd.cpp:var_IncInteger(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_script.cpp:var_IncInteger(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_script_common.cpp:var_IncInteger(vlc_object_t*, char const*) Unexecuted instantiation: stream_io_callback.cpp:var_IncInteger(vlc_object_t*, char const*) Unexecuted instantiation: vlc_colors.c:var_IncInteger Unexecuted instantiation: adpcm.c:var_IncInteger Unexecuted instantiation: aes3.c:var_IncInteger Unexecuted instantiation: araw.c:var_IncInteger Unexecuted instantiation: g711.c:var_IncInteger Unexecuted instantiation: lpcm.c:var_IncInteger Unexecuted instantiation: uleaddvaudio.c:var_IncInteger Unexecuted instantiation: rawvideo.c:var_IncInteger Unexecuted instantiation: cc.c:var_IncInteger Unexecuted instantiation: cea708.c:var_IncInteger Unexecuted instantiation: cvdsub.c:var_IncInteger Unexecuted instantiation: dvbsub.c:var_IncInteger Unexecuted instantiation: scte18.c:var_IncInteger Unexecuted instantiation: atsc_a65.c:var_IncInteger Unexecuted instantiation: scte27.c:var_IncInteger Unexecuted instantiation: spudec.c:var_IncInteger Unexecuted instantiation: parse.c:var_IncInteger Unexecuted instantiation: stl.c:var_IncInteger Unexecuted instantiation: subsdec.c:var_IncInteger Unexecuted instantiation: subsusf.c:var_IncInteger Unexecuted instantiation: svcdsub.c:var_IncInteger Unexecuted instantiation: textst.c:var_IncInteger Unexecuted instantiation: substx3g.c:var_IncInteger Unexecuted instantiation: libvlc.c:var_IncInteger Unexecuted instantiation: version.c:var_IncInteger Unexecuted instantiation: chain.c:var_IncInteger Unexecuted instantiation: help.c:var_IncInteger Unexecuted instantiation: cmdline.c:var_IncInteger Unexecuted instantiation: getopt.c:var_IncInteger Unexecuted instantiation: libc.c:var_IncInteger Unexecuted instantiation: media_source.c:var_IncInteger Unexecuted instantiation: media_tree.c:var_IncInteger Unexecuted instantiation: modules.c:var_IncInteger Unexecuted instantiation: bank.c:var_IncInteger Unexecuted instantiation: entry.c:var_IncInteger Unexecuted instantiation: textdomain.c:var_IncInteger Unexecuted instantiation: dialog.c:var_IncInteger Unexecuted instantiation: interface.c:var_IncInteger Unexecuted instantiation: content.c:var_IncInteger Unexecuted instantiation: control.c:var_IncInteger Unexecuted instantiation: item.c:var_IncInteger Unexecuted instantiation: notify.c:var_IncInteger Unexecuted instantiation: player.c:var_IncInteger Unexecuted instantiation: playlist.c:var_IncInteger Unexecuted instantiation: preparse.c:var_IncInteger Unexecuted instantiation: randomizer.c:var_IncInteger Unexecuted instantiation: preparser.c:var_IncInteger Unexecuted instantiation: access.c:var_IncInteger Unexecuted instantiation: decoder_device.c:var_IncInteger Unexecuted instantiation: decoder_helpers.c:var_IncInteger Unexecuted instantiation: demux.c:var_IncInteger Unexecuted instantiation: input.c:var_IncInteger Unexecuted instantiation: attachment.c:var_IncInteger Unexecuted instantiation: replay_gain.c:var_IncInteger Unexecuted instantiation: timer.c:var_IncInteger Unexecuted instantiation: track.c:var_IncInteger Unexecuted instantiation: title.c:var_IncInteger Unexecuted instantiation: aout.c:var_IncInteger Unexecuted instantiation: vout.c:var_IncInteger Unexecuted instantiation: osd.c:var_IncInteger Unexecuted instantiation: medialib.c:var_IncInteger Unexecuted instantiation: resource.c:var_IncInteger Unexecuted instantiation: services_discovery.c:var_IncInteger Unexecuted instantiation: source.c:var_IncInteger Unexecuted instantiation: stats.c:var_IncInteger Unexecuted instantiation: stream.c:var_IncInteger Unexecuted instantiation: stream_extractor.c:var_IncInteger Unexecuted instantiation: stream_filter.c:var_IncInteger Unexecuted instantiation: stream_memory.c:var_IncInteger Unexecuted instantiation: subtitles.c:var_IncInteger Unexecuted instantiation: dec.c:var_IncInteger Unexecuted instantiation: filters.c:var_IncInteger Unexecuted instantiation: meter.c:var_IncInteger Unexecuted instantiation: output.c:var_IncInteger Unexecuted instantiation: volume.c:var_IncInteger Unexecuted instantiation: video_output.c:var_IncInteger Unexecuted instantiation: video_text.c:var_IncInteger Unexecuted instantiation: video_widgets.c:var_IncInteger Unexecuted instantiation: vout_subpictures.c:var_IncInteger Unexecuted instantiation: video_window.c:var_IncInteger Unexecuted instantiation: window.c:var_IncInteger Unexecuted instantiation: vout_intf.c:var_IncInteger Unexecuted instantiation: vout_wrapper.c:var_IncInteger Unexecuted instantiation: udp.c:var_IncInteger Unexecuted instantiation: charset.c:var_IncInteger Unexecuted instantiation: memstream.c:var_IncInteger Unexecuted instantiation: strings.c:var_IncInteger Unexecuted instantiation: unicode.c:var_IncInteger Unexecuted instantiation: url.c:var_IncInteger Unexecuted instantiation: filesystem.c:var_IncInteger Unexecuted instantiation: actions.c:var_IncInteger Unexecuted instantiation: ancillary.c:var_IncInteger Unexecuted instantiation: executor.c:var_IncInteger Unexecuted instantiation: md5.c:var_IncInteger Unexecuted instantiation: probe.c:var_IncInteger Unexecuted instantiation: mtime.c:var_IncInteger Unexecuted instantiation: frame.c:var_IncInteger Unexecuted instantiation: fifo.c:var_IncInteger Unexecuted instantiation: fourcc.c:var_IncInteger Unexecuted instantiation: es_format.c:var_IncInteger Unexecuted instantiation: picture.c:var_IncInteger Unexecuted instantiation: picture_fifo.c:var_IncInteger Unexecuted instantiation: picture_pool.c:var_IncInteger Unexecuted instantiation: interrupt.c:var_IncInteger Unexecuted instantiation: keystore.c:var_IncInteger Unexecuted instantiation: rcu.c:var_IncInteger Unexecuted instantiation: renderer_discovery.c:var_IncInteger Unexecuted instantiation: threads.c:var_IncInteger Unexecuted instantiation: cpu.c:var_IncInteger Unexecuted instantiation: epg.c:var_IncInteger Unexecuted instantiation: exit.c:var_IncInteger Unexecuted instantiation: image.c:var_IncInteger Unexecuted instantiation: messages.c:var_IncInteger Unexecuted instantiation: tracer.c:var_IncInteger Unexecuted instantiation: objects.c:var_IncInteger Unexecuted instantiation: objres.c:var_IncInteger Unexecuted instantiation: queue.c:var_IncInteger Unexecuted instantiation: variables.c:var_IncInteger Unexecuted instantiation: xml.c:var_IncInteger Unexecuted instantiation: filter.c:var_IncInteger Unexecuted instantiation: filter_chain.c:var_IncInteger Unexecuted instantiation: httpcookies.c:var_IncInteger Unexecuted instantiation: text_style.c:var_IncInteger Unexecuted instantiation: sort.c:var_IncInteger Unexecuted instantiation: subpicture.c:var_IncInteger Unexecuted instantiation: medialibrary.c:var_IncInteger Unexecuted instantiation: viewpoint.c:var_IncInteger Unexecuted instantiation: thread.c:var_IncInteger Unexecuted instantiation: rand.c:var_IncInteger Unexecuted instantiation: specific.c:var_IncInteger Unexecuted instantiation: stream_output.c:var_IncInteger Unexecuted instantiation: vlm.c:var_IncInteger Unexecuted instantiation: vlm_event.c:var_IncInteger Unexecuted instantiation: vlmshell.c:var_IncInteger Unexecuted instantiation: libvlc-module.c:var_IncInteger Unexecuted instantiation: dirs.c:var_IncInteger Unexecuted instantiation: art.c:var_IncInteger Unexecuted instantiation: fetcher.c:var_IncInteger Unexecuted instantiation: clock.c:var_IncInteger Unexecuted instantiation: es_out.c:var_IncInteger Unexecuted instantiation: es_out_source.c:var_IncInteger Unexecuted instantiation: es_out_timeshift.c:var_IncInteger Unexecuted instantiation: display.c:var_IncInteger Unexecuted instantiation: inhibit.c:var_IncInteger Unexecuted instantiation: interlacing.c:var_IncInteger Unexecuted instantiation: snapshot.c:var_IncInteger Unexecuted instantiation: getaddrinfo.c:var_IncInteger Unexecuted instantiation: io.c:var_IncInteger Unexecuted instantiation: iso_lang.c:var_IncInteger Unexecuted instantiation: chroma_probe.c:var_IncInteger Unexecuted instantiation: clock_internal.c:var_IncInteger Unexecuted instantiation: input_clock.c:var_IncInteger |
512 | | |
513 | | /** |
514 | | * Decrement an integer variable |
515 | | * \param p_obj the object that holds the variable |
516 | | * \param psz_name the name of the variable |
517 | | */ |
518 | | static inline int64_t var_DecInteger( vlc_object_t *p_obj, const char *psz_name ) |
519 | 0 | { |
520 | 0 | vlc_value_t val; |
521 | 0 | val.i_int = -1; |
522 | 0 | if( var_GetAndSet( p_obj, psz_name, VLC_VAR_INTEGER_ADD, &val ) ) |
523 | 0 | return 0; |
524 | 0 | return val.i_int; |
525 | 0 | } Unexecuted instantiation: demux-run.c:var_DecInteger Unexecuted instantiation: common.c:var_DecInteger Unexecuted instantiation: var.c:var_DecInteger Unexecuted instantiation: decoder.c:var_DecInteger Unexecuted instantiation: core.c:var_DecInteger Unexecuted instantiation: error.c:var_DecInteger Unexecuted instantiation: console.c:var_DecInteger Unexecuted instantiation: aiff.c:var_DecInteger Unexecuted instantiation: asf.c:var_DecInteger Unexecuted instantiation: libasf.c:var_DecInteger Unexecuted instantiation: asfpacket.c:var_DecInteger Unexecuted instantiation: au.c:var_DecInteger Unexecuted instantiation: avi.c:var_DecInteger Unexecuted instantiation: libavi.c:var_DecInteger Unexecuted instantiation: caf.c:var_DecInteger Unexecuted instantiation: cdg.c:var_DecInteger Unexecuted instantiation: es.c:var_DecInteger Unexecuted instantiation: dts_header.c:var_DecInteger Unexecuted instantiation: flac.c:var_DecInteger Unexecuted instantiation: xiph_metadata.c:var_DecInteger Unexecuted instantiation: h26x.c:var_DecInteger Unexecuted instantiation: mjpeg.c:var_DecInteger Unexecuted instantiation: mp4.c:var_DecInteger Unexecuted instantiation: fragments.c:var_DecInteger Unexecuted instantiation: attachments.c:var_DecInteger Unexecuted instantiation: heif.c:var_DecInteger Unexecuted instantiation: essetup.c:var_DecInteger Unexecuted instantiation: meta.c:var_DecInteger Unexecuted instantiation: libmp4.c:var_DecInteger Unexecuted instantiation: nsv.c:var_DecInteger Unexecuted instantiation: ps.c:var_DecInteger Unexecuted instantiation: pva.c:var_DecInteger Unexecuted instantiation: sap.c:var_DecInteger Unexecuted instantiation: sdp.c:var_DecInteger Unexecuted instantiation: smf.c:var_DecInteger Unexecuted instantiation: subtitle.c:var_DecInteger Unexecuted instantiation: tta.c:var_DecInteger Unexecuted instantiation: ttml.c:var_DecInteger Unexecuted instantiation: encttml.c:var_DecInteger Unexecuted instantiation: substtml.c:var_DecInteger Unexecuted instantiation: genttml.c:var_DecInteger Unexecuted instantiation: ty.c:var_DecInteger Unexecuted instantiation: voc.c:var_DecInteger Unexecuted instantiation: wav.c:var_DecInteger Unexecuted instantiation: webvtt.c:var_DecInteger Unexecuted instantiation: encvtt.c:var_DecInteger Unexecuted instantiation: subsvtt.c:var_DecInteger Unexecuted instantiation: css_parser.c:var_DecInteger Unexecuted instantiation: css_style.c:var_DecInteger Unexecuted instantiation: CSSGrammar.c:var_DecInteger Unexecuted instantiation: libwebvtt_plugin_la-CSSLexer.c:var_DecInteger Unexecuted instantiation: xa.c:var_DecInteger Unexecuted instantiation: a52.c:var_DecInteger Unexecuted instantiation: copy.c:var_DecInteger Unexecuted instantiation: dts.c:var_DecInteger Unexecuted instantiation: h264.c:var_DecInteger Unexecuted instantiation: hxxx_sei.c:var_DecInteger Unexecuted instantiation: hxxx_common.c:var_DecInteger Unexecuted instantiation: h264_nal.c:var_DecInteger Unexecuted instantiation: h264_slice.c:var_DecInteger Unexecuted instantiation: hevc.c:var_DecInteger Unexecuted instantiation: hevc_nal.c:var_DecInteger Unexecuted instantiation: mlp.c:var_DecInteger Unexecuted instantiation: mpeg4audio.c:var_DecInteger Unexecuted instantiation: mpeg4video.c:var_DecInteger Unexecuted instantiation: mpegaudio.c:var_DecInteger Unexecuted instantiation: mpegvideo.c:var_DecInteger Unexecuted instantiation: vc1.c:var_DecInteger Unexecuted instantiation: rawaud.c:var_DecInteger Unexecuted instantiation: rawvid.c:var_DecInteger Unexecuted instantiation: fs.c:var_DecInteger Unexecuted instantiation: file.c:var_DecInteger Unexecuted instantiation: directory.c:var_DecInteger Unexecuted instantiation: libxml.c:var_DecInteger Unexecuted instantiation: ogg.c:var_DecInteger Unexecuted instantiation: oggseek.c:var_DecInteger Unexecuted instantiation: ogg_granule.c:var_DecInteger Unexecuted instantiation: mkv.cpp:var_DecInteger(vlc_object_t*, char const*) Unexecuted instantiation: util.cpp:var_DecInteger(vlc_object_t*, char const*) Unexecuted instantiation: virtual_segment.cpp:var_DecInteger(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment.cpp:var_DecInteger(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment_parse.cpp:var_DecInteger(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment_seeker.cpp:var_DecInteger(vlc_object_t*, char const*) Unexecuted instantiation: demux.cpp:var_DecInteger(vlc_object_t*, char const*) Unexecuted instantiation: events.cpp:var_DecInteger(vlc_object_t*, char const*) Unexecuted instantiation: Ebml_parser.cpp:var_DecInteger(vlc_object_t*, char const*) Unexecuted instantiation: chapters.cpp:var_DecInteger(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command.cpp:var_DecInteger(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_dvd.cpp:var_DecInteger(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_script.cpp:var_DecInteger(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_script_common.cpp:var_DecInteger(vlc_object_t*, char const*) Unexecuted instantiation: stream_io_callback.cpp:var_DecInteger(vlc_object_t*, char const*) Unexecuted instantiation: vlc_colors.c:var_DecInteger Unexecuted instantiation: adpcm.c:var_DecInteger Unexecuted instantiation: aes3.c:var_DecInteger Unexecuted instantiation: araw.c:var_DecInteger Unexecuted instantiation: g711.c:var_DecInteger Unexecuted instantiation: lpcm.c:var_DecInteger Unexecuted instantiation: uleaddvaudio.c:var_DecInteger Unexecuted instantiation: rawvideo.c:var_DecInteger Unexecuted instantiation: cc.c:var_DecInteger Unexecuted instantiation: cea708.c:var_DecInteger Unexecuted instantiation: cvdsub.c:var_DecInteger Unexecuted instantiation: dvbsub.c:var_DecInteger Unexecuted instantiation: scte18.c:var_DecInteger Unexecuted instantiation: atsc_a65.c:var_DecInteger Unexecuted instantiation: scte27.c:var_DecInteger Unexecuted instantiation: spudec.c:var_DecInteger Unexecuted instantiation: parse.c:var_DecInteger Unexecuted instantiation: stl.c:var_DecInteger Unexecuted instantiation: subsdec.c:var_DecInteger Unexecuted instantiation: subsusf.c:var_DecInteger Unexecuted instantiation: svcdsub.c:var_DecInteger Unexecuted instantiation: textst.c:var_DecInteger Unexecuted instantiation: substx3g.c:var_DecInteger Unexecuted instantiation: libvlc.c:var_DecInteger Unexecuted instantiation: version.c:var_DecInteger Unexecuted instantiation: chain.c:var_DecInteger Unexecuted instantiation: help.c:var_DecInteger Unexecuted instantiation: cmdline.c:var_DecInteger Unexecuted instantiation: getopt.c:var_DecInteger Unexecuted instantiation: libc.c:var_DecInteger Unexecuted instantiation: media_source.c:var_DecInteger Unexecuted instantiation: media_tree.c:var_DecInteger Unexecuted instantiation: modules.c:var_DecInteger Unexecuted instantiation: bank.c:var_DecInteger Unexecuted instantiation: entry.c:var_DecInteger Unexecuted instantiation: textdomain.c:var_DecInteger Unexecuted instantiation: dialog.c:var_DecInteger Unexecuted instantiation: interface.c:var_DecInteger Unexecuted instantiation: content.c:var_DecInteger Unexecuted instantiation: control.c:var_DecInteger Unexecuted instantiation: item.c:var_DecInteger Unexecuted instantiation: notify.c:var_DecInteger Unexecuted instantiation: player.c:var_DecInteger Unexecuted instantiation: playlist.c:var_DecInteger Unexecuted instantiation: preparse.c:var_DecInteger Unexecuted instantiation: randomizer.c:var_DecInteger Unexecuted instantiation: preparser.c:var_DecInteger Unexecuted instantiation: access.c:var_DecInteger Unexecuted instantiation: decoder_device.c:var_DecInteger Unexecuted instantiation: decoder_helpers.c:var_DecInteger Unexecuted instantiation: demux.c:var_DecInteger Unexecuted instantiation: input.c:var_DecInteger Unexecuted instantiation: attachment.c:var_DecInteger Unexecuted instantiation: replay_gain.c:var_DecInteger Unexecuted instantiation: timer.c:var_DecInteger Unexecuted instantiation: track.c:var_DecInteger Unexecuted instantiation: title.c:var_DecInteger Unexecuted instantiation: aout.c:var_DecInteger Unexecuted instantiation: vout.c:var_DecInteger Unexecuted instantiation: osd.c:var_DecInteger Unexecuted instantiation: medialib.c:var_DecInteger Unexecuted instantiation: resource.c:var_DecInteger Unexecuted instantiation: services_discovery.c:var_DecInteger Unexecuted instantiation: source.c:var_DecInteger Unexecuted instantiation: stats.c:var_DecInteger Unexecuted instantiation: stream.c:var_DecInteger Unexecuted instantiation: stream_extractor.c:var_DecInteger Unexecuted instantiation: stream_filter.c:var_DecInteger Unexecuted instantiation: stream_memory.c:var_DecInteger Unexecuted instantiation: subtitles.c:var_DecInteger Unexecuted instantiation: dec.c:var_DecInteger Unexecuted instantiation: filters.c:var_DecInteger Unexecuted instantiation: meter.c:var_DecInteger Unexecuted instantiation: output.c:var_DecInteger Unexecuted instantiation: volume.c:var_DecInteger Unexecuted instantiation: video_output.c:var_DecInteger Unexecuted instantiation: video_text.c:var_DecInteger Unexecuted instantiation: video_widgets.c:var_DecInteger Unexecuted instantiation: vout_subpictures.c:var_DecInteger Unexecuted instantiation: video_window.c:var_DecInteger Unexecuted instantiation: window.c:var_DecInteger Unexecuted instantiation: vout_intf.c:var_DecInteger Unexecuted instantiation: vout_wrapper.c:var_DecInteger Unexecuted instantiation: udp.c:var_DecInteger Unexecuted instantiation: charset.c:var_DecInteger Unexecuted instantiation: memstream.c:var_DecInteger Unexecuted instantiation: strings.c:var_DecInteger Unexecuted instantiation: unicode.c:var_DecInteger Unexecuted instantiation: url.c:var_DecInteger Unexecuted instantiation: filesystem.c:var_DecInteger Unexecuted instantiation: actions.c:var_DecInteger Unexecuted instantiation: ancillary.c:var_DecInteger Unexecuted instantiation: executor.c:var_DecInteger Unexecuted instantiation: md5.c:var_DecInteger Unexecuted instantiation: probe.c:var_DecInteger Unexecuted instantiation: mtime.c:var_DecInteger Unexecuted instantiation: frame.c:var_DecInteger Unexecuted instantiation: fifo.c:var_DecInteger Unexecuted instantiation: fourcc.c:var_DecInteger Unexecuted instantiation: es_format.c:var_DecInteger Unexecuted instantiation: picture.c:var_DecInteger Unexecuted instantiation: picture_fifo.c:var_DecInteger Unexecuted instantiation: picture_pool.c:var_DecInteger Unexecuted instantiation: interrupt.c:var_DecInteger Unexecuted instantiation: keystore.c:var_DecInteger Unexecuted instantiation: rcu.c:var_DecInteger Unexecuted instantiation: renderer_discovery.c:var_DecInteger Unexecuted instantiation: threads.c:var_DecInteger Unexecuted instantiation: cpu.c:var_DecInteger Unexecuted instantiation: epg.c:var_DecInteger Unexecuted instantiation: exit.c:var_DecInteger Unexecuted instantiation: image.c:var_DecInteger Unexecuted instantiation: messages.c:var_DecInteger Unexecuted instantiation: tracer.c:var_DecInteger Unexecuted instantiation: objects.c:var_DecInteger Unexecuted instantiation: objres.c:var_DecInteger Unexecuted instantiation: queue.c:var_DecInteger Unexecuted instantiation: variables.c:var_DecInteger Unexecuted instantiation: xml.c:var_DecInteger Unexecuted instantiation: filter.c:var_DecInteger Unexecuted instantiation: filter_chain.c:var_DecInteger Unexecuted instantiation: httpcookies.c:var_DecInteger Unexecuted instantiation: text_style.c:var_DecInteger Unexecuted instantiation: sort.c:var_DecInteger Unexecuted instantiation: subpicture.c:var_DecInteger Unexecuted instantiation: medialibrary.c:var_DecInteger Unexecuted instantiation: viewpoint.c:var_DecInteger Unexecuted instantiation: thread.c:var_DecInteger Unexecuted instantiation: rand.c:var_DecInteger Unexecuted instantiation: specific.c:var_DecInteger Unexecuted instantiation: stream_output.c:var_DecInteger Unexecuted instantiation: vlm.c:var_DecInteger Unexecuted instantiation: vlm_event.c:var_DecInteger Unexecuted instantiation: vlmshell.c:var_DecInteger Unexecuted instantiation: libvlc-module.c:var_DecInteger Unexecuted instantiation: dirs.c:var_DecInteger Unexecuted instantiation: art.c:var_DecInteger Unexecuted instantiation: fetcher.c:var_DecInteger Unexecuted instantiation: clock.c:var_DecInteger Unexecuted instantiation: es_out.c:var_DecInteger Unexecuted instantiation: es_out_source.c:var_DecInteger Unexecuted instantiation: es_out_timeshift.c:var_DecInteger Unexecuted instantiation: display.c:var_DecInteger Unexecuted instantiation: inhibit.c:var_DecInteger Unexecuted instantiation: interlacing.c:var_DecInteger Unexecuted instantiation: snapshot.c:var_DecInteger Unexecuted instantiation: getaddrinfo.c:var_DecInteger Unexecuted instantiation: io.c:var_DecInteger Unexecuted instantiation: iso_lang.c:var_DecInteger Unexecuted instantiation: chroma_probe.c:var_DecInteger Unexecuted instantiation: clock_internal.c:var_DecInteger Unexecuted instantiation: input_clock.c:var_DecInteger |
526 | | |
527 | | static inline uint64_t var_OrInteger( vlc_object_t *obj, const char *name, |
528 | | unsigned v ) |
529 | 0 | { |
530 | 0 | vlc_value_t val; |
531 | 0 | val.i_int = v; |
532 | 0 | if( var_GetAndSet( obj, name, VLC_VAR_INTEGER_OR, &val ) ) |
533 | 0 | return 0; |
534 | 0 | return val.i_int; |
535 | 0 | } Unexecuted instantiation: demux-run.c:var_OrInteger Unexecuted instantiation: common.c:var_OrInteger Unexecuted instantiation: var.c:var_OrInteger Unexecuted instantiation: decoder.c:var_OrInteger Unexecuted instantiation: core.c:var_OrInteger Unexecuted instantiation: error.c:var_OrInteger Unexecuted instantiation: console.c:var_OrInteger Unexecuted instantiation: aiff.c:var_OrInteger Unexecuted instantiation: asf.c:var_OrInteger Unexecuted instantiation: libasf.c:var_OrInteger Unexecuted instantiation: asfpacket.c:var_OrInteger Unexecuted instantiation: au.c:var_OrInteger Unexecuted instantiation: avi.c:var_OrInteger Unexecuted instantiation: libavi.c:var_OrInteger Unexecuted instantiation: caf.c:var_OrInteger Unexecuted instantiation: cdg.c:var_OrInteger Unexecuted instantiation: es.c:var_OrInteger Unexecuted instantiation: dts_header.c:var_OrInteger Unexecuted instantiation: flac.c:var_OrInteger Unexecuted instantiation: xiph_metadata.c:var_OrInteger Unexecuted instantiation: h26x.c:var_OrInteger Unexecuted instantiation: mjpeg.c:var_OrInteger Unexecuted instantiation: mp4.c:var_OrInteger Unexecuted instantiation: fragments.c:var_OrInteger Unexecuted instantiation: attachments.c:var_OrInteger Unexecuted instantiation: heif.c:var_OrInteger Unexecuted instantiation: essetup.c:var_OrInteger Unexecuted instantiation: meta.c:var_OrInteger Unexecuted instantiation: libmp4.c:var_OrInteger Unexecuted instantiation: nsv.c:var_OrInteger Unexecuted instantiation: ps.c:var_OrInteger Unexecuted instantiation: pva.c:var_OrInteger Unexecuted instantiation: sap.c:var_OrInteger Unexecuted instantiation: sdp.c:var_OrInteger Unexecuted instantiation: smf.c:var_OrInteger Unexecuted instantiation: subtitle.c:var_OrInteger Unexecuted instantiation: tta.c:var_OrInteger Unexecuted instantiation: ttml.c:var_OrInteger Unexecuted instantiation: encttml.c:var_OrInteger Unexecuted instantiation: substtml.c:var_OrInteger Unexecuted instantiation: genttml.c:var_OrInteger Unexecuted instantiation: ty.c:var_OrInteger Unexecuted instantiation: voc.c:var_OrInteger Unexecuted instantiation: wav.c:var_OrInteger Unexecuted instantiation: webvtt.c:var_OrInteger Unexecuted instantiation: encvtt.c:var_OrInteger Unexecuted instantiation: subsvtt.c:var_OrInteger Unexecuted instantiation: css_parser.c:var_OrInteger Unexecuted instantiation: css_style.c:var_OrInteger Unexecuted instantiation: CSSGrammar.c:var_OrInteger Unexecuted instantiation: libwebvtt_plugin_la-CSSLexer.c:var_OrInteger Unexecuted instantiation: xa.c:var_OrInteger Unexecuted instantiation: a52.c:var_OrInteger Unexecuted instantiation: copy.c:var_OrInteger Unexecuted instantiation: dts.c:var_OrInteger Unexecuted instantiation: h264.c:var_OrInteger Unexecuted instantiation: hxxx_sei.c:var_OrInteger Unexecuted instantiation: hxxx_common.c:var_OrInteger Unexecuted instantiation: h264_nal.c:var_OrInteger Unexecuted instantiation: h264_slice.c:var_OrInteger Unexecuted instantiation: hevc.c:var_OrInteger Unexecuted instantiation: hevc_nal.c:var_OrInteger Unexecuted instantiation: mlp.c:var_OrInteger Unexecuted instantiation: mpeg4audio.c:var_OrInteger Unexecuted instantiation: mpeg4video.c:var_OrInteger Unexecuted instantiation: mpegaudio.c:var_OrInteger Unexecuted instantiation: mpegvideo.c:var_OrInteger Unexecuted instantiation: vc1.c:var_OrInteger Unexecuted instantiation: rawaud.c:var_OrInteger Unexecuted instantiation: rawvid.c:var_OrInteger Unexecuted instantiation: fs.c:var_OrInteger Unexecuted instantiation: file.c:var_OrInteger Unexecuted instantiation: directory.c:var_OrInteger Unexecuted instantiation: libxml.c:var_OrInteger Unexecuted instantiation: ogg.c:var_OrInteger Unexecuted instantiation: oggseek.c:var_OrInteger Unexecuted instantiation: ogg_granule.c:var_OrInteger Unexecuted instantiation: mkv.cpp:var_OrInteger(vlc_object_t*, char const*, unsigned int) Unexecuted instantiation: util.cpp:var_OrInteger(vlc_object_t*, char const*, unsigned int) Unexecuted instantiation: virtual_segment.cpp:var_OrInteger(vlc_object_t*, char const*, unsigned int) Unexecuted instantiation: matroska_segment.cpp:var_OrInteger(vlc_object_t*, char const*, unsigned int) Unexecuted instantiation: matroska_segment_parse.cpp:var_OrInteger(vlc_object_t*, char const*, unsigned int) Unexecuted instantiation: matroska_segment_seeker.cpp:var_OrInteger(vlc_object_t*, char const*, unsigned int) Unexecuted instantiation: demux.cpp:var_OrInteger(vlc_object_t*, char const*, unsigned int) Unexecuted instantiation: events.cpp:var_OrInteger(vlc_object_t*, char const*, unsigned int) Unexecuted instantiation: Ebml_parser.cpp:var_OrInteger(vlc_object_t*, char const*, unsigned int) Unexecuted instantiation: chapters.cpp:var_OrInteger(vlc_object_t*, char const*, unsigned int) Unexecuted instantiation: chapter_command.cpp:var_OrInteger(vlc_object_t*, char const*, unsigned int) Unexecuted instantiation: chapter_command_dvd.cpp:var_OrInteger(vlc_object_t*, char const*, unsigned int) Unexecuted instantiation: chapter_command_script.cpp:var_OrInteger(vlc_object_t*, char const*, unsigned int) Unexecuted instantiation: chapter_command_script_common.cpp:var_OrInteger(vlc_object_t*, char const*, unsigned int) Unexecuted instantiation: stream_io_callback.cpp:var_OrInteger(vlc_object_t*, char const*, unsigned int) Unexecuted instantiation: vlc_colors.c:var_OrInteger Unexecuted instantiation: adpcm.c:var_OrInteger Unexecuted instantiation: aes3.c:var_OrInteger Unexecuted instantiation: araw.c:var_OrInteger Unexecuted instantiation: g711.c:var_OrInteger Unexecuted instantiation: lpcm.c:var_OrInteger Unexecuted instantiation: uleaddvaudio.c:var_OrInteger Unexecuted instantiation: rawvideo.c:var_OrInteger Unexecuted instantiation: cc.c:var_OrInteger Unexecuted instantiation: cea708.c:var_OrInteger Unexecuted instantiation: cvdsub.c:var_OrInteger Unexecuted instantiation: dvbsub.c:var_OrInteger Unexecuted instantiation: scte18.c:var_OrInteger Unexecuted instantiation: atsc_a65.c:var_OrInteger Unexecuted instantiation: scte27.c:var_OrInteger Unexecuted instantiation: spudec.c:var_OrInteger Unexecuted instantiation: parse.c:var_OrInteger Unexecuted instantiation: stl.c:var_OrInteger Unexecuted instantiation: subsdec.c:var_OrInteger Unexecuted instantiation: subsusf.c:var_OrInteger Unexecuted instantiation: svcdsub.c:var_OrInteger Unexecuted instantiation: textst.c:var_OrInteger Unexecuted instantiation: substx3g.c:var_OrInteger Unexecuted instantiation: libvlc.c:var_OrInteger Unexecuted instantiation: version.c:var_OrInteger Unexecuted instantiation: chain.c:var_OrInteger Unexecuted instantiation: help.c:var_OrInteger Unexecuted instantiation: cmdline.c:var_OrInteger Unexecuted instantiation: getopt.c:var_OrInteger Unexecuted instantiation: libc.c:var_OrInteger Unexecuted instantiation: media_source.c:var_OrInteger Unexecuted instantiation: media_tree.c:var_OrInteger Unexecuted instantiation: modules.c:var_OrInteger Unexecuted instantiation: bank.c:var_OrInteger Unexecuted instantiation: entry.c:var_OrInteger Unexecuted instantiation: textdomain.c:var_OrInteger Unexecuted instantiation: dialog.c:var_OrInteger Unexecuted instantiation: interface.c:var_OrInteger Unexecuted instantiation: content.c:var_OrInteger Unexecuted instantiation: control.c:var_OrInteger Unexecuted instantiation: item.c:var_OrInteger Unexecuted instantiation: notify.c:var_OrInteger Unexecuted instantiation: player.c:var_OrInteger Unexecuted instantiation: playlist.c:var_OrInteger Unexecuted instantiation: preparse.c:var_OrInteger Unexecuted instantiation: randomizer.c:var_OrInteger Unexecuted instantiation: preparser.c:var_OrInteger Unexecuted instantiation: access.c:var_OrInteger Unexecuted instantiation: decoder_device.c:var_OrInteger Unexecuted instantiation: decoder_helpers.c:var_OrInteger Unexecuted instantiation: demux.c:var_OrInteger Unexecuted instantiation: input.c:var_OrInteger Unexecuted instantiation: attachment.c:var_OrInteger Unexecuted instantiation: replay_gain.c:var_OrInteger Unexecuted instantiation: timer.c:var_OrInteger Unexecuted instantiation: track.c:var_OrInteger Unexecuted instantiation: title.c:var_OrInteger Unexecuted instantiation: aout.c:var_OrInteger Unexecuted instantiation: vout.c:var_OrInteger Unexecuted instantiation: osd.c:var_OrInteger Unexecuted instantiation: medialib.c:var_OrInteger Unexecuted instantiation: resource.c:var_OrInteger Unexecuted instantiation: services_discovery.c:var_OrInteger Unexecuted instantiation: source.c:var_OrInteger Unexecuted instantiation: stats.c:var_OrInteger Unexecuted instantiation: stream.c:var_OrInteger Unexecuted instantiation: stream_extractor.c:var_OrInteger Unexecuted instantiation: stream_filter.c:var_OrInteger Unexecuted instantiation: stream_memory.c:var_OrInteger Unexecuted instantiation: subtitles.c:var_OrInteger Unexecuted instantiation: dec.c:var_OrInteger Unexecuted instantiation: filters.c:var_OrInteger Unexecuted instantiation: meter.c:var_OrInteger Unexecuted instantiation: output.c:var_OrInteger Unexecuted instantiation: volume.c:var_OrInteger Unexecuted instantiation: video_output.c:var_OrInteger Unexecuted instantiation: video_text.c:var_OrInteger Unexecuted instantiation: video_widgets.c:var_OrInteger Unexecuted instantiation: vout_subpictures.c:var_OrInteger Unexecuted instantiation: video_window.c:var_OrInteger Unexecuted instantiation: window.c:var_OrInteger Unexecuted instantiation: vout_intf.c:var_OrInteger Unexecuted instantiation: vout_wrapper.c:var_OrInteger Unexecuted instantiation: udp.c:var_OrInteger Unexecuted instantiation: charset.c:var_OrInteger Unexecuted instantiation: memstream.c:var_OrInteger Unexecuted instantiation: strings.c:var_OrInteger Unexecuted instantiation: unicode.c:var_OrInteger Unexecuted instantiation: url.c:var_OrInteger Unexecuted instantiation: filesystem.c:var_OrInteger Unexecuted instantiation: actions.c:var_OrInteger Unexecuted instantiation: ancillary.c:var_OrInteger Unexecuted instantiation: executor.c:var_OrInteger Unexecuted instantiation: md5.c:var_OrInteger Unexecuted instantiation: probe.c:var_OrInteger Unexecuted instantiation: mtime.c:var_OrInteger Unexecuted instantiation: frame.c:var_OrInteger Unexecuted instantiation: fifo.c:var_OrInteger Unexecuted instantiation: fourcc.c:var_OrInteger Unexecuted instantiation: es_format.c:var_OrInteger Unexecuted instantiation: picture.c:var_OrInteger Unexecuted instantiation: picture_fifo.c:var_OrInteger Unexecuted instantiation: picture_pool.c:var_OrInteger Unexecuted instantiation: interrupt.c:var_OrInteger Unexecuted instantiation: keystore.c:var_OrInteger Unexecuted instantiation: rcu.c:var_OrInteger Unexecuted instantiation: renderer_discovery.c:var_OrInteger Unexecuted instantiation: threads.c:var_OrInteger Unexecuted instantiation: cpu.c:var_OrInteger Unexecuted instantiation: epg.c:var_OrInteger Unexecuted instantiation: exit.c:var_OrInteger Unexecuted instantiation: image.c:var_OrInteger Unexecuted instantiation: messages.c:var_OrInteger Unexecuted instantiation: tracer.c:var_OrInteger Unexecuted instantiation: objects.c:var_OrInteger Unexecuted instantiation: objres.c:var_OrInteger Unexecuted instantiation: queue.c:var_OrInteger Unexecuted instantiation: variables.c:var_OrInteger Unexecuted instantiation: xml.c:var_OrInteger Unexecuted instantiation: filter.c:var_OrInteger Unexecuted instantiation: filter_chain.c:var_OrInteger Unexecuted instantiation: httpcookies.c:var_OrInteger Unexecuted instantiation: text_style.c:var_OrInteger Unexecuted instantiation: sort.c:var_OrInteger Unexecuted instantiation: subpicture.c:var_OrInteger Unexecuted instantiation: medialibrary.c:var_OrInteger Unexecuted instantiation: viewpoint.c:var_OrInteger Unexecuted instantiation: thread.c:var_OrInteger Unexecuted instantiation: rand.c:var_OrInteger Unexecuted instantiation: specific.c:var_OrInteger Unexecuted instantiation: stream_output.c:var_OrInteger Unexecuted instantiation: vlm.c:var_OrInteger Unexecuted instantiation: vlm_event.c:var_OrInteger Unexecuted instantiation: vlmshell.c:var_OrInteger Unexecuted instantiation: libvlc-module.c:var_OrInteger Unexecuted instantiation: dirs.c:var_OrInteger Unexecuted instantiation: art.c:var_OrInteger Unexecuted instantiation: fetcher.c:var_OrInteger Unexecuted instantiation: clock.c:var_OrInteger Unexecuted instantiation: es_out.c:var_OrInteger Unexecuted instantiation: es_out_source.c:var_OrInteger Unexecuted instantiation: es_out_timeshift.c:var_OrInteger Unexecuted instantiation: display.c:var_OrInteger Unexecuted instantiation: inhibit.c:var_OrInteger Unexecuted instantiation: interlacing.c:var_OrInteger Unexecuted instantiation: snapshot.c:var_OrInteger Unexecuted instantiation: getaddrinfo.c:var_OrInteger Unexecuted instantiation: io.c:var_OrInteger Unexecuted instantiation: iso_lang.c:var_OrInteger Unexecuted instantiation: chroma_probe.c:var_OrInteger Unexecuted instantiation: clock_internal.c:var_OrInteger Unexecuted instantiation: input_clock.c:var_OrInteger |
536 | | |
537 | | static inline uint64_t var_NAndInteger( vlc_object_t *obj, const char *name, |
538 | | unsigned v ) |
539 | 0 | { |
540 | 0 | vlc_value_t val; |
541 | 0 | val.i_int = v; |
542 | 0 | if( var_GetAndSet( obj, name, VLC_VAR_INTEGER_NAND, &val ) ) |
543 | 0 | return 0; |
544 | 0 | return val.i_int; |
545 | 0 | } Unexecuted instantiation: demux-run.c:var_NAndInteger Unexecuted instantiation: common.c:var_NAndInteger Unexecuted instantiation: var.c:var_NAndInteger Unexecuted instantiation: decoder.c:var_NAndInteger Unexecuted instantiation: core.c:var_NAndInteger Unexecuted instantiation: error.c:var_NAndInteger Unexecuted instantiation: console.c:var_NAndInteger Unexecuted instantiation: aiff.c:var_NAndInteger Unexecuted instantiation: asf.c:var_NAndInteger Unexecuted instantiation: libasf.c:var_NAndInteger Unexecuted instantiation: asfpacket.c:var_NAndInteger Unexecuted instantiation: au.c:var_NAndInteger Unexecuted instantiation: avi.c:var_NAndInteger Unexecuted instantiation: libavi.c:var_NAndInteger Unexecuted instantiation: caf.c:var_NAndInteger Unexecuted instantiation: cdg.c:var_NAndInteger Unexecuted instantiation: es.c:var_NAndInteger Unexecuted instantiation: dts_header.c:var_NAndInteger Unexecuted instantiation: flac.c:var_NAndInteger Unexecuted instantiation: xiph_metadata.c:var_NAndInteger Unexecuted instantiation: h26x.c:var_NAndInteger Unexecuted instantiation: mjpeg.c:var_NAndInteger Unexecuted instantiation: mp4.c:var_NAndInteger Unexecuted instantiation: fragments.c:var_NAndInteger Unexecuted instantiation: attachments.c:var_NAndInteger Unexecuted instantiation: heif.c:var_NAndInteger Unexecuted instantiation: essetup.c:var_NAndInteger Unexecuted instantiation: meta.c:var_NAndInteger Unexecuted instantiation: libmp4.c:var_NAndInteger Unexecuted instantiation: nsv.c:var_NAndInteger Unexecuted instantiation: ps.c:var_NAndInteger Unexecuted instantiation: pva.c:var_NAndInteger Unexecuted instantiation: sap.c:var_NAndInteger Unexecuted instantiation: sdp.c:var_NAndInteger Unexecuted instantiation: smf.c:var_NAndInteger Unexecuted instantiation: subtitle.c:var_NAndInteger Unexecuted instantiation: tta.c:var_NAndInteger Unexecuted instantiation: ttml.c:var_NAndInteger Unexecuted instantiation: encttml.c:var_NAndInteger Unexecuted instantiation: substtml.c:var_NAndInteger Unexecuted instantiation: genttml.c:var_NAndInteger Unexecuted instantiation: ty.c:var_NAndInteger Unexecuted instantiation: voc.c:var_NAndInteger Unexecuted instantiation: wav.c:var_NAndInteger Unexecuted instantiation: webvtt.c:var_NAndInteger Unexecuted instantiation: encvtt.c:var_NAndInteger Unexecuted instantiation: subsvtt.c:var_NAndInteger Unexecuted instantiation: css_parser.c:var_NAndInteger Unexecuted instantiation: css_style.c:var_NAndInteger Unexecuted instantiation: CSSGrammar.c:var_NAndInteger Unexecuted instantiation: libwebvtt_plugin_la-CSSLexer.c:var_NAndInteger Unexecuted instantiation: xa.c:var_NAndInteger Unexecuted instantiation: a52.c:var_NAndInteger Unexecuted instantiation: copy.c:var_NAndInteger Unexecuted instantiation: dts.c:var_NAndInteger Unexecuted instantiation: h264.c:var_NAndInteger Unexecuted instantiation: hxxx_sei.c:var_NAndInteger Unexecuted instantiation: hxxx_common.c:var_NAndInteger Unexecuted instantiation: h264_nal.c:var_NAndInteger Unexecuted instantiation: h264_slice.c:var_NAndInteger Unexecuted instantiation: hevc.c:var_NAndInteger Unexecuted instantiation: hevc_nal.c:var_NAndInteger Unexecuted instantiation: mlp.c:var_NAndInteger Unexecuted instantiation: mpeg4audio.c:var_NAndInteger Unexecuted instantiation: mpeg4video.c:var_NAndInteger Unexecuted instantiation: mpegaudio.c:var_NAndInteger Unexecuted instantiation: mpegvideo.c:var_NAndInteger Unexecuted instantiation: vc1.c:var_NAndInteger Unexecuted instantiation: rawaud.c:var_NAndInteger Unexecuted instantiation: rawvid.c:var_NAndInteger Unexecuted instantiation: fs.c:var_NAndInteger Unexecuted instantiation: file.c:var_NAndInteger Unexecuted instantiation: directory.c:var_NAndInteger Unexecuted instantiation: libxml.c:var_NAndInteger Unexecuted instantiation: ogg.c:var_NAndInteger Unexecuted instantiation: oggseek.c:var_NAndInteger Unexecuted instantiation: ogg_granule.c:var_NAndInteger Unexecuted instantiation: mkv.cpp:var_NAndInteger(vlc_object_t*, char const*, unsigned int) Unexecuted instantiation: util.cpp:var_NAndInteger(vlc_object_t*, char const*, unsigned int) Unexecuted instantiation: virtual_segment.cpp:var_NAndInteger(vlc_object_t*, char const*, unsigned int) Unexecuted instantiation: matroska_segment.cpp:var_NAndInteger(vlc_object_t*, char const*, unsigned int) Unexecuted instantiation: matroska_segment_parse.cpp:var_NAndInteger(vlc_object_t*, char const*, unsigned int) Unexecuted instantiation: matroska_segment_seeker.cpp:var_NAndInteger(vlc_object_t*, char const*, unsigned int) Unexecuted instantiation: demux.cpp:var_NAndInteger(vlc_object_t*, char const*, unsigned int) Unexecuted instantiation: events.cpp:var_NAndInteger(vlc_object_t*, char const*, unsigned int) Unexecuted instantiation: Ebml_parser.cpp:var_NAndInteger(vlc_object_t*, char const*, unsigned int) Unexecuted instantiation: chapters.cpp:var_NAndInteger(vlc_object_t*, char const*, unsigned int) Unexecuted instantiation: chapter_command.cpp:var_NAndInteger(vlc_object_t*, char const*, unsigned int) Unexecuted instantiation: chapter_command_dvd.cpp:var_NAndInteger(vlc_object_t*, char const*, unsigned int) Unexecuted instantiation: chapter_command_script.cpp:var_NAndInteger(vlc_object_t*, char const*, unsigned int) Unexecuted instantiation: chapter_command_script_common.cpp:var_NAndInteger(vlc_object_t*, char const*, unsigned int) Unexecuted instantiation: stream_io_callback.cpp:var_NAndInteger(vlc_object_t*, char const*, unsigned int) Unexecuted instantiation: vlc_colors.c:var_NAndInteger Unexecuted instantiation: adpcm.c:var_NAndInteger Unexecuted instantiation: aes3.c:var_NAndInteger Unexecuted instantiation: araw.c:var_NAndInteger Unexecuted instantiation: g711.c:var_NAndInteger Unexecuted instantiation: lpcm.c:var_NAndInteger Unexecuted instantiation: uleaddvaudio.c:var_NAndInteger Unexecuted instantiation: rawvideo.c:var_NAndInteger Unexecuted instantiation: cc.c:var_NAndInteger Unexecuted instantiation: cea708.c:var_NAndInteger Unexecuted instantiation: cvdsub.c:var_NAndInteger Unexecuted instantiation: dvbsub.c:var_NAndInteger Unexecuted instantiation: scte18.c:var_NAndInteger Unexecuted instantiation: atsc_a65.c:var_NAndInteger Unexecuted instantiation: scte27.c:var_NAndInteger Unexecuted instantiation: spudec.c:var_NAndInteger Unexecuted instantiation: parse.c:var_NAndInteger Unexecuted instantiation: stl.c:var_NAndInteger Unexecuted instantiation: subsdec.c:var_NAndInteger Unexecuted instantiation: subsusf.c:var_NAndInteger Unexecuted instantiation: svcdsub.c:var_NAndInteger Unexecuted instantiation: textst.c:var_NAndInteger Unexecuted instantiation: substx3g.c:var_NAndInteger Unexecuted instantiation: libvlc.c:var_NAndInteger Unexecuted instantiation: version.c:var_NAndInteger Unexecuted instantiation: chain.c:var_NAndInteger Unexecuted instantiation: help.c:var_NAndInteger Unexecuted instantiation: cmdline.c:var_NAndInteger Unexecuted instantiation: getopt.c:var_NAndInteger Unexecuted instantiation: libc.c:var_NAndInteger Unexecuted instantiation: media_source.c:var_NAndInteger Unexecuted instantiation: media_tree.c:var_NAndInteger Unexecuted instantiation: modules.c:var_NAndInteger Unexecuted instantiation: bank.c:var_NAndInteger Unexecuted instantiation: entry.c:var_NAndInteger Unexecuted instantiation: textdomain.c:var_NAndInteger Unexecuted instantiation: dialog.c:var_NAndInteger Unexecuted instantiation: interface.c:var_NAndInteger Unexecuted instantiation: content.c:var_NAndInteger Unexecuted instantiation: control.c:var_NAndInteger Unexecuted instantiation: item.c:var_NAndInteger Unexecuted instantiation: notify.c:var_NAndInteger Unexecuted instantiation: player.c:var_NAndInteger Unexecuted instantiation: playlist.c:var_NAndInteger Unexecuted instantiation: preparse.c:var_NAndInteger Unexecuted instantiation: randomizer.c:var_NAndInteger Unexecuted instantiation: preparser.c:var_NAndInteger Unexecuted instantiation: access.c:var_NAndInteger Unexecuted instantiation: decoder_device.c:var_NAndInteger Unexecuted instantiation: decoder_helpers.c:var_NAndInteger Unexecuted instantiation: demux.c:var_NAndInteger Unexecuted instantiation: input.c:var_NAndInteger Unexecuted instantiation: attachment.c:var_NAndInteger Unexecuted instantiation: replay_gain.c:var_NAndInteger Unexecuted instantiation: timer.c:var_NAndInteger Unexecuted instantiation: track.c:var_NAndInteger Unexecuted instantiation: title.c:var_NAndInteger Unexecuted instantiation: aout.c:var_NAndInteger Unexecuted instantiation: vout.c:var_NAndInteger Unexecuted instantiation: osd.c:var_NAndInteger Unexecuted instantiation: medialib.c:var_NAndInteger Unexecuted instantiation: resource.c:var_NAndInteger Unexecuted instantiation: services_discovery.c:var_NAndInteger Unexecuted instantiation: source.c:var_NAndInteger Unexecuted instantiation: stats.c:var_NAndInteger Unexecuted instantiation: stream.c:var_NAndInteger Unexecuted instantiation: stream_extractor.c:var_NAndInteger Unexecuted instantiation: stream_filter.c:var_NAndInteger Unexecuted instantiation: stream_memory.c:var_NAndInteger Unexecuted instantiation: subtitles.c:var_NAndInteger Unexecuted instantiation: dec.c:var_NAndInteger Unexecuted instantiation: filters.c:var_NAndInteger Unexecuted instantiation: meter.c:var_NAndInteger Unexecuted instantiation: output.c:var_NAndInteger Unexecuted instantiation: volume.c:var_NAndInteger Unexecuted instantiation: video_output.c:var_NAndInteger Unexecuted instantiation: video_text.c:var_NAndInteger Unexecuted instantiation: video_widgets.c:var_NAndInteger Unexecuted instantiation: vout_subpictures.c:var_NAndInteger Unexecuted instantiation: video_window.c:var_NAndInteger Unexecuted instantiation: window.c:var_NAndInteger Unexecuted instantiation: vout_intf.c:var_NAndInteger Unexecuted instantiation: vout_wrapper.c:var_NAndInteger Unexecuted instantiation: udp.c:var_NAndInteger Unexecuted instantiation: charset.c:var_NAndInteger Unexecuted instantiation: memstream.c:var_NAndInteger Unexecuted instantiation: strings.c:var_NAndInteger Unexecuted instantiation: unicode.c:var_NAndInteger Unexecuted instantiation: url.c:var_NAndInteger Unexecuted instantiation: filesystem.c:var_NAndInteger Unexecuted instantiation: actions.c:var_NAndInteger Unexecuted instantiation: ancillary.c:var_NAndInteger Unexecuted instantiation: executor.c:var_NAndInteger Unexecuted instantiation: md5.c:var_NAndInteger Unexecuted instantiation: probe.c:var_NAndInteger Unexecuted instantiation: mtime.c:var_NAndInteger Unexecuted instantiation: frame.c:var_NAndInteger Unexecuted instantiation: fifo.c:var_NAndInteger Unexecuted instantiation: fourcc.c:var_NAndInteger Unexecuted instantiation: es_format.c:var_NAndInteger Unexecuted instantiation: picture.c:var_NAndInteger Unexecuted instantiation: picture_fifo.c:var_NAndInteger Unexecuted instantiation: picture_pool.c:var_NAndInteger Unexecuted instantiation: interrupt.c:var_NAndInteger Unexecuted instantiation: keystore.c:var_NAndInteger Unexecuted instantiation: rcu.c:var_NAndInteger Unexecuted instantiation: renderer_discovery.c:var_NAndInteger Unexecuted instantiation: threads.c:var_NAndInteger Unexecuted instantiation: cpu.c:var_NAndInteger Unexecuted instantiation: epg.c:var_NAndInteger Unexecuted instantiation: exit.c:var_NAndInteger Unexecuted instantiation: image.c:var_NAndInteger Unexecuted instantiation: messages.c:var_NAndInteger Unexecuted instantiation: tracer.c:var_NAndInteger Unexecuted instantiation: objects.c:var_NAndInteger Unexecuted instantiation: objres.c:var_NAndInteger Unexecuted instantiation: queue.c:var_NAndInteger Unexecuted instantiation: variables.c:var_NAndInteger Unexecuted instantiation: xml.c:var_NAndInteger Unexecuted instantiation: filter.c:var_NAndInteger Unexecuted instantiation: filter_chain.c:var_NAndInteger Unexecuted instantiation: httpcookies.c:var_NAndInteger Unexecuted instantiation: text_style.c:var_NAndInteger Unexecuted instantiation: sort.c:var_NAndInteger Unexecuted instantiation: subpicture.c:var_NAndInteger Unexecuted instantiation: medialibrary.c:var_NAndInteger Unexecuted instantiation: viewpoint.c:var_NAndInteger Unexecuted instantiation: thread.c:var_NAndInteger Unexecuted instantiation: rand.c:var_NAndInteger Unexecuted instantiation: specific.c:var_NAndInteger Unexecuted instantiation: stream_output.c:var_NAndInteger Unexecuted instantiation: vlm.c:var_NAndInteger Unexecuted instantiation: vlm_event.c:var_NAndInteger Unexecuted instantiation: vlmshell.c:var_NAndInteger Unexecuted instantiation: libvlc-module.c:var_NAndInteger Unexecuted instantiation: dirs.c:var_NAndInteger Unexecuted instantiation: art.c:var_NAndInteger Unexecuted instantiation: fetcher.c:var_NAndInteger Unexecuted instantiation: clock.c:var_NAndInteger Unexecuted instantiation: es_out.c:var_NAndInteger Unexecuted instantiation: es_out_source.c:var_NAndInteger Unexecuted instantiation: es_out_timeshift.c:var_NAndInteger Unexecuted instantiation: display.c:var_NAndInteger Unexecuted instantiation: inhibit.c:var_NAndInteger Unexecuted instantiation: interlacing.c:var_NAndInteger Unexecuted instantiation: snapshot.c:var_NAndInteger Unexecuted instantiation: getaddrinfo.c:var_NAndInteger Unexecuted instantiation: io.c:var_NAndInteger Unexecuted instantiation: iso_lang.c:var_NAndInteger Unexecuted instantiation: chroma_probe.c:var_NAndInteger Unexecuted instantiation: clock_internal.c:var_NAndInteger Unexecuted instantiation: input_clock.c:var_NAndInteger |
546 | | |
547 | | /** |
548 | | * Create a integer variable with inherit and get its value. |
549 | | * |
550 | | * \param p_obj The object that holds the variable |
551 | | * \param psz_name The name of the variable |
552 | | */ |
553 | | VLC_USED |
554 | | static inline int64_t var_CreateGetInteger( vlc_object_t *p_obj, const char *psz_name ) |
555 | 3 | { |
556 | 3 | var_Create( p_obj, psz_name, VLC_VAR_INTEGER | VLC_VAR_DOINHERIT ); |
557 | 3 | return var_GetInteger( p_obj, psz_name ); |
558 | 3 | } Unexecuted instantiation: demux-run.c:var_CreateGetInteger Unexecuted instantiation: common.c:var_CreateGetInteger Unexecuted instantiation: var.c:var_CreateGetInteger Unexecuted instantiation: decoder.c:var_CreateGetInteger Unexecuted instantiation: core.c:var_CreateGetInteger Unexecuted instantiation: error.c:var_CreateGetInteger Unexecuted instantiation: console.c:var_CreateGetInteger Unexecuted instantiation: aiff.c:var_CreateGetInteger Unexecuted instantiation: asf.c:var_CreateGetInteger Unexecuted instantiation: libasf.c:var_CreateGetInteger Unexecuted instantiation: asfpacket.c:var_CreateGetInteger Unexecuted instantiation: au.c:var_CreateGetInteger Unexecuted instantiation: avi.c:var_CreateGetInteger Unexecuted instantiation: libavi.c:var_CreateGetInteger Unexecuted instantiation: caf.c:var_CreateGetInteger Unexecuted instantiation: cdg.c:var_CreateGetInteger Unexecuted instantiation: es.c:var_CreateGetInteger Unexecuted instantiation: dts_header.c:var_CreateGetInteger Unexecuted instantiation: flac.c:var_CreateGetInteger Unexecuted instantiation: xiph_metadata.c:var_CreateGetInteger Unexecuted instantiation: h26x.c:var_CreateGetInteger Unexecuted instantiation: mjpeg.c:var_CreateGetInteger Unexecuted instantiation: mp4.c:var_CreateGetInteger Unexecuted instantiation: fragments.c:var_CreateGetInteger Unexecuted instantiation: attachments.c:var_CreateGetInteger Unexecuted instantiation: heif.c:var_CreateGetInteger Unexecuted instantiation: essetup.c:var_CreateGetInteger Unexecuted instantiation: meta.c:var_CreateGetInteger Unexecuted instantiation: libmp4.c:var_CreateGetInteger Unexecuted instantiation: nsv.c:var_CreateGetInteger Unexecuted instantiation: ps.c:var_CreateGetInteger Unexecuted instantiation: pva.c:var_CreateGetInteger Unexecuted instantiation: sap.c:var_CreateGetInteger Unexecuted instantiation: sdp.c:var_CreateGetInteger Unexecuted instantiation: smf.c:var_CreateGetInteger Unexecuted instantiation: subtitle.c:var_CreateGetInteger Unexecuted instantiation: tta.c:var_CreateGetInteger Unexecuted instantiation: ttml.c:var_CreateGetInteger Unexecuted instantiation: encttml.c:var_CreateGetInteger Unexecuted instantiation: substtml.c:var_CreateGetInteger Unexecuted instantiation: genttml.c:var_CreateGetInteger Unexecuted instantiation: ty.c:var_CreateGetInteger Unexecuted instantiation: voc.c:var_CreateGetInteger Unexecuted instantiation: wav.c:var_CreateGetInteger Unexecuted instantiation: webvtt.c:var_CreateGetInteger Unexecuted instantiation: encvtt.c:var_CreateGetInteger Unexecuted instantiation: subsvtt.c:var_CreateGetInteger Unexecuted instantiation: css_parser.c:var_CreateGetInteger Unexecuted instantiation: css_style.c:var_CreateGetInteger Unexecuted instantiation: CSSGrammar.c:var_CreateGetInteger Unexecuted instantiation: libwebvtt_plugin_la-CSSLexer.c:var_CreateGetInteger Unexecuted instantiation: xa.c:var_CreateGetInteger Unexecuted instantiation: a52.c:var_CreateGetInteger Unexecuted instantiation: copy.c:var_CreateGetInteger Unexecuted instantiation: dts.c:var_CreateGetInteger Unexecuted instantiation: h264.c:var_CreateGetInteger Unexecuted instantiation: hxxx_sei.c:var_CreateGetInteger Unexecuted instantiation: hxxx_common.c:var_CreateGetInteger Unexecuted instantiation: h264_nal.c:var_CreateGetInteger Unexecuted instantiation: h264_slice.c:var_CreateGetInteger Unexecuted instantiation: hevc.c:var_CreateGetInteger Unexecuted instantiation: hevc_nal.c:var_CreateGetInteger Unexecuted instantiation: mlp.c:var_CreateGetInteger Unexecuted instantiation: mpeg4audio.c:var_CreateGetInteger Unexecuted instantiation: mpeg4video.c:var_CreateGetInteger Unexecuted instantiation: mpegaudio.c:var_CreateGetInteger Unexecuted instantiation: mpegvideo.c:var_CreateGetInteger Unexecuted instantiation: vc1.c:var_CreateGetInteger Unexecuted instantiation: rawaud.c:var_CreateGetInteger Unexecuted instantiation: rawvid.c:var_CreateGetInteger Unexecuted instantiation: fs.c:var_CreateGetInteger Unexecuted instantiation: file.c:var_CreateGetInteger Unexecuted instantiation: directory.c:var_CreateGetInteger Unexecuted instantiation: libxml.c:var_CreateGetInteger Unexecuted instantiation: ogg.c:var_CreateGetInteger Unexecuted instantiation: oggseek.c:var_CreateGetInteger Unexecuted instantiation: ogg_granule.c:var_CreateGetInteger Unexecuted instantiation: mkv.cpp:var_CreateGetInteger(vlc_object_t*, char const*) Unexecuted instantiation: util.cpp:var_CreateGetInteger(vlc_object_t*, char const*) Unexecuted instantiation: virtual_segment.cpp:var_CreateGetInteger(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment.cpp:var_CreateGetInteger(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment_parse.cpp:var_CreateGetInteger(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment_seeker.cpp:var_CreateGetInteger(vlc_object_t*, char const*) Unexecuted instantiation: demux.cpp:var_CreateGetInteger(vlc_object_t*, char const*) Unexecuted instantiation: events.cpp:var_CreateGetInteger(vlc_object_t*, char const*) Unexecuted instantiation: Ebml_parser.cpp:var_CreateGetInteger(vlc_object_t*, char const*) Unexecuted instantiation: chapters.cpp:var_CreateGetInteger(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command.cpp:var_CreateGetInteger(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_dvd.cpp:var_CreateGetInteger(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_script.cpp:var_CreateGetInteger(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_script_common.cpp:var_CreateGetInteger(vlc_object_t*, char const*) Unexecuted instantiation: stream_io_callback.cpp:var_CreateGetInteger(vlc_object_t*, char const*) Unexecuted instantiation: vlc_colors.c:var_CreateGetInteger Unexecuted instantiation: adpcm.c:var_CreateGetInteger Unexecuted instantiation: aes3.c:var_CreateGetInteger Unexecuted instantiation: araw.c:var_CreateGetInteger Unexecuted instantiation: g711.c:var_CreateGetInteger Unexecuted instantiation: lpcm.c:var_CreateGetInteger Unexecuted instantiation: uleaddvaudio.c:var_CreateGetInteger Unexecuted instantiation: rawvideo.c:var_CreateGetInteger Unexecuted instantiation: cc.c:var_CreateGetInteger Unexecuted instantiation: cea708.c:var_CreateGetInteger Unexecuted instantiation: cvdsub.c:var_CreateGetInteger dvbsub.c:var_CreateGetInteger Line | Count | Source | 555 | 3 | { | 556 | 3 | var_Create( p_obj, psz_name, VLC_VAR_INTEGER | VLC_VAR_DOINHERIT ); | 557 | 3 | return var_GetInteger( p_obj, psz_name ); | 558 | 3 | } |
Unexecuted instantiation: scte18.c:var_CreateGetInteger Unexecuted instantiation: atsc_a65.c:var_CreateGetInteger Unexecuted instantiation: scte27.c:var_CreateGetInteger Unexecuted instantiation: spudec.c:var_CreateGetInteger Unexecuted instantiation: parse.c:var_CreateGetInteger Unexecuted instantiation: stl.c:var_CreateGetInteger Unexecuted instantiation: subsdec.c:var_CreateGetInteger Unexecuted instantiation: subsusf.c:var_CreateGetInteger Unexecuted instantiation: svcdsub.c:var_CreateGetInteger Unexecuted instantiation: textst.c:var_CreateGetInteger Unexecuted instantiation: substx3g.c:var_CreateGetInteger Unexecuted instantiation: libvlc.c:var_CreateGetInteger Unexecuted instantiation: version.c:var_CreateGetInteger Unexecuted instantiation: chain.c:var_CreateGetInteger Unexecuted instantiation: help.c:var_CreateGetInteger Unexecuted instantiation: cmdline.c:var_CreateGetInteger Unexecuted instantiation: getopt.c:var_CreateGetInteger Unexecuted instantiation: libc.c:var_CreateGetInteger Unexecuted instantiation: media_source.c:var_CreateGetInteger Unexecuted instantiation: media_tree.c:var_CreateGetInteger Unexecuted instantiation: modules.c:var_CreateGetInteger Unexecuted instantiation: bank.c:var_CreateGetInteger Unexecuted instantiation: entry.c:var_CreateGetInteger Unexecuted instantiation: textdomain.c:var_CreateGetInteger Unexecuted instantiation: dialog.c:var_CreateGetInteger Unexecuted instantiation: interface.c:var_CreateGetInteger Unexecuted instantiation: content.c:var_CreateGetInteger Unexecuted instantiation: control.c:var_CreateGetInteger Unexecuted instantiation: item.c:var_CreateGetInteger Unexecuted instantiation: notify.c:var_CreateGetInteger Unexecuted instantiation: player.c:var_CreateGetInteger Unexecuted instantiation: playlist.c:var_CreateGetInteger Unexecuted instantiation: preparse.c:var_CreateGetInteger Unexecuted instantiation: randomizer.c:var_CreateGetInteger Unexecuted instantiation: preparser.c:var_CreateGetInteger Unexecuted instantiation: access.c:var_CreateGetInteger Unexecuted instantiation: decoder_device.c:var_CreateGetInteger Unexecuted instantiation: decoder_helpers.c:var_CreateGetInteger Unexecuted instantiation: demux.c:var_CreateGetInteger Unexecuted instantiation: input.c:var_CreateGetInteger Unexecuted instantiation: attachment.c:var_CreateGetInteger Unexecuted instantiation: replay_gain.c:var_CreateGetInteger Unexecuted instantiation: timer.c:var_CreateGetInteger Unexecuted instantiation: track.c:var_CreateGetInteger Unexecuted instantiation: title.c:var_CreateGetInteger Unexecuted instantiation: aout.c:var_CreateGetInteger Unexecuted instantiation: vout.c:var_CreateGetInteger Unexecuted instantiation: osd.c:var_CreateGetInteger Unexecuted instantiation: medialib.c:var_CreateGetInteger Unexecuted instantiation: resource.c:var_CreateGetInteger Unexecuted instantiation: services_discovery.c:var_CreateGetInteger Unexecuted instantiation: source.c:var_CreateGetInteger Unexecuted instantiation: stats.c:var_CreateGetInteger Unexecuted instantiation: stream.c:var_CreateGetInteger Unexecuted instantiation: stream_extractor.c:var_CreateGetInteger Unexecuted instantiation: stream_filter.c:var_CreateGetInteger Unexecuted instantiation: stream_memory.c:var_CreateGetInteger Unexecuted instantiation: subtitles.c:var_CreateGetInteger Unexecuted instantiation: dec.c:var_CreateGetInteger Unexecuted instantiation: filters.c:var_CreateGetInteger Unexecuted instantiation: meter.c:var_CreateGetInteger Unexecuted instantiation: output.c:var_CreateGetInteger Unexecuted instantiation: volume.c:var_CreateGetInteger Unexecuted instantiation: video_output.c:var_CreateGetInteger Unexecuted instantiation: video_text.c:var_CreateGetInteger Unexecuted instantiation: video_widgets.c:var_CreateGetInteger Unexecuted instantiation: vout_subpictures.c:var_CreateGetInteger Unexecuted instantiation: video_window.c:var_CreateGetInteger Unexecuted instantiation: window.c:var_CreateGetInteger Unexecuted instantiation: vout_intf.c:var_CreateGetInteger Unexecuted instantiation: vout_wrapper.c:var_CreateGetInteger Unexecuted instantiation: udp.c:var_CreateGetInteger Unexecuted instantiation: charset.c:var_CreateGetInteger Unexecuted instantiation: memstream.c:var_CreateGetInteger Unexecuted instantiation: strings.c:var_CreateGetInteger Unexecuted instantiation: unicode.c:var_CreateGetInteger Unexecuted instantiation: url.c:var_CreateGetInteger Unexecuted instantiation: filesystem.c:var_CreateGetInteger Unexecuted instantiation: actions.c:var_CreateGetInteger Unexecuted instantiation: ancillary.c:var_CreateGetInteger Unexecuted instantiation: executor.c:var_CreateGetInteger Unexecuted instantiation: md5.c:var_CreateGetInteger Unexecuted instantiation: probe.c:var_CreateGetInteger Unexecuted instantiation: mtime.c:var_CreateGetInteger Unexecuted instantiation: frame.c:var_CreateGetInteger Unexecuted instantiation: fifo.c:var_CreateGetInteger Unexecuted instantiation: fourcc.c:var_CreateGetInteger Unexecuted instantiation: es_format.c:var_CreateGetInteger Unexecuted instantiation: picture.c:var_CreateGetInteger Unexecuted instantiation: picture_fifo.c:var_CreateGetInteger Unexecuted instantiation: picture_pool.c:var_CreateGetInteger Unexecuted instantiation: interrupt.c:var_CreateGetInteger Unexecuted instantiation: keystore.c:var_CreateGetInteger Unexecuted instantiation: rcu.c:var_CreateGetInteger Unexecuted instantiation: renderer_discovery.c:var_CreateGetInteger Unexecuted instantiation: threads.c:var_CreateGetInteger Unexecuted instantiation: cpu.c:var_CreateGetInteger Unexecuted instantiation: epg.c:var_CreateGetInteger Unexecuted instantiation: exit.c:var_CreateGetInteger Unexecuted instantiation: image.c:var_CreateGetInteger Unexecuted instantiation: messages.c:var_CreateGetInteger Unexecuted instantiation: tracer.c:var_CreateGetInteger Unexecuted instantiation: objects.c:var_CreateGetInteger Unexecuted instantiation: objres.c:var_CreateGetInteger Unexecuted instantiation: queue.c:var_CreateGetInteger Unexecuted instantiation: variables.c:var_CreateGetInteger Unexecuted instantiation: xml.c:var_CreateGetInteger Unexecuted instantiation: filter.c:var_CreateGetInteger Unexecuted instantiation: filter_chain.c:var_CreateGetInteger Unexecuted instantiation: httpcookies.c:var_CreateGetInteger Unexecuted instantiation: text_style.c:var_CreateGetInteger Unexecuted instantiation: sort.c:var_CreateGetInteger Unexecuted instantiation: subpicture.c:var_CreateGetInteger Unexecuted instantiation: medialibrary.c:var_CreateGetInteger Unexecuted instantiation: viewpoint.c:var_CreateGetInteger Unexecuted instantiation: thread.c:var_CreateGetInteger Unexecuted instantiation: rand.c:var_CreateGetInteger Unexecuted instantiation: specific.c:var_CreateGetInteger Unexecuted instantiation: stream_output.c:var_CreateGetInteger Unexecuted instantiation: vlm.c:var_CreateGetInteger Unexecuted instantiation: vlm_event.c:var_CreateGetInteger Unexecuted instantiation: vlmshell.c:var_CreateGetInteger Unexecuted instantiation: libvlc-module.c:var_CreateGetInteger Unexecuted instantiation: dirs.c:var_CreateGetInteger Unexecuted instantiation: art.c:var_CreateGetInteger Unexecuted instantiation: fetcher.c:var_CreateGetInteger Unexecuted instantiation: clock.c:var_CreateGetInteger Unexecuted instantiation: es_out.c:var_CreateGetInteger Unexecuted instantiation: es_out_source.c:var_CreateGetInteger Unexecuted instantiation: es_out_timeshift.c:var_CreateGetInteger Unexecuted instantiation: display.c:var_CreateGetInteger Unexecuted instantiation: inhibit.c:var_CreateGetInteger Unexecuted instantiation: interlacing.c:var_CreateGetInteger Unexecuted instantiation: snapshot.c:var_CreateGetInteger Unexecuted instantiation: getaddrinfo.c:var_CreateGetInteger Unexecuted instantiation: io.c:var_CreateGetInteger Unexecuted instantiation: iso_lang.c:var_CreateGetInteger Unexecuted instantiation: chroma_probe.c:var_CreateGetInteger Unexecuted instantiation: clock_internal.c:var_CreateGetInteger Unexecuted instantiation: input_clock.c:var_CreateGetInteger |
559 | | |
560 | | /** |
561 | | * Create a boolean variable with inherit and get its value. |
562 | | * |
563 | | * \param p_obj The object that holds the variable |
564 | | * \param psz_name The name of the variable |
565 | | */ |
566 | | VLC_USED |
567 | | static inline bool var_CreateGetBool( vlc_object_t *p_obj, const char *psz_name ) |
568 | 1.42k | { |
569 | 1.42k | var_Create( p_obj, psz_name, VLC_VAR_BOOL | VLC_VAR_DOINHERIT ); |
570 | 1.42k | return var_GetBool( p_obj, psz_name ); |
571 | 1.42k | } Unexecuted instantiation: demux-run.c:var_CreateGetBool Unexecuted instantiation: common.c:var_CreateGetBool Unexecuted instantiation: var.c:var_CreateGetBool Unexecuted instantiation: decoder.c:var_CreateGetBool Unexecuted instantiation: core.c:var_CreateGetBool Unexecuted instantiation: error.c:var_CreateGetBool Unexecuted instantiation: console.c:var_CreateGetBool Unexecuted instantiation: aiff.c:var_CreateGetBool Unexecuted instantiation: asf.c:var_CreateGetBool Unexecuted instantiation: libasf.c:var_CreateGetBool Unexecuted instantiation: asfpacket.c:var_CreateGetBool Unexecuted instantiation: au.c:var_CreateGetBool Unexecuted instantiation: avi.c:var_CreateGetBool Unexecuted instantiation: libavi.c:var_CreateGetBool Unexecuted instantiation: caf.c:var_CreateGetBool Unexecuted instantiation: cdg.c:var_CreateGetBool Unexecuted instantiation: es.c:var_CreateGetBool Unexecuted instantiation: dts_header.c:var_CreateGetBool Unexecuted instantiation: flac.c:var_CreateGetBool Unexecuted instantiation: xiph_metadata.c:var_CreateGetBool Unexecuted instantiation: h26x.c:var_CreateGetBool Unexecuted instantiation: mjpeg.c:var_CreateGetBool Unexecuted instantiation: mp4.c:var_CreateGetBool Unexecuted instantiation: fragments.c:var_CreateGetBool Unexecuted instantiation: attachments.c:var_CreateGetBool Unexecuted instantiation: heif.c:var_CreateGetBool Unexecuted instantiation: essetup.c:var_CreateGetBool Unexecuted instantiation: meta.c:var_CreateGetBool Unexecuted instantiation: libmp4.c:var_CreateGetBool Unexecuted instantiation: nsv.c:var_CreateGetBool Unexecuted instantiation: ps.c:var_CreateGetBool Unexecuted instantiation: pva.c:var_CreateGetBool Unexecuted instantiation: sap.c:var_CreateGetBool Unexecuted instantiation: sdp.c:var_CreateGetBool Unexecuted instantiation: smf.c:var_CreateGetBool Unexecuted instantiation: subtitle.c:var_CreateGetBool Unexecuted instantiation: tta.c:var_CreateGetBool Unexecuted instantiation: ttml.c:var_CreateGetBool Unexecuted instantiation: encttml.c:var_CreateGetBool Unexecuted instantiation: substtml.c:var_CreateGetBool Unexecuted instantiation: genttml.c:var_CreateGetBool Unexecuted instantiation: ty.c:var_CreateGetBool Unexecuted instantiation: voc.c:var_CreateGetBool Unexecuted instantiation: wav.c:var_CreateGetBool Unexecuted instantiation: webvtt.c:var_CreateGetBool Unexecuted instantiation: encvtt.c:var_CreateGetBool Unexecuted instantiation: subsvtt.c:var_CreateGetBool Unexecuted instantiation: css_parser.c:var_CreateGetBool Unexecuted instantiation: css_style.c:var_CreateGetBool Unexecuted instantiation: CSSGrammar.c:var_CreateGetBool Unexecuted instantiation: libwebvtt_plugin_la-CSSLexer.c:var_CreateGetBool Unexecuted instantiation: xa.c:var_CreateGetBool Unexecuted instantiation: a52.c:var_CreateGetBool Unexecuted instantiation: copy.c:var_CreateGetBool Unexecuted instantiation: dts.c:var_CreateGetBool Unexecuted instantiation: h264.c:var_CreateGetBool Unexecuted instantiation: hxxx_sei.c:var_CreateGetBool Unexecuted instantiation: hxxx_common.c:var_CreateGetBool Unexecuted instantiation: h264_nal.c:var_CreateGetBool Unexecuted instantiation: h264_slice.c:var_CreateGetBool Unexecuted instantiation: hevc.c:var_CreateGetBool Unexecuted instantiation: hevc_nal.c:var_CreateGetBool Unexecuted instantiation: mlp.c:var_CreateGetBool Unexecuted instantiation: mpeg4audio.c:var_CreateGetBool Unexecuted instantiation: mpeg4video.c:var_CreateGetBool Unexecuted instantiation: mpegaudio.c:var_CreateGetBool mpegvideo.c:var_CreateGetBool Line | Count | Source | 568 | 1.42k | { | 569 | 1.42k | var_Create( p_obj, psz_name, VLC_VAR_BOOL | VLC_VAR_DOINHERIT ); | 570 | 1.42k | return var_GetBool( p_obj, psz_name ); | 571 | 1.42k | } |
Unexecuted instantiation: vc1.c:var_CreateGetBool Unexecuted instantiation: rawaud.c:var_CreateGetBool Unexecuted instantiation: rawvid.c:var_CreateGetBool Unexecuted instantiation: fs.c:var_CreateGetBool Unexecuted instantiation: file.c:var_CreateGetBool Unexecuted instantiation: directory.c:var_CreateGetBool Unexecuted instantiation: libxml.c:var_CreateGetBool Unexecuted instantiation: ogg.c:var_CreateGetBool Unexecuted instantiation: oggseek.c:var_CreateGetBool Unexecuted instantiation: ogg_granule.c:var_CreateGetBool Unexecuted instantiation: mkv.cpp:var_CreateGetBool(vlc_object_t*, char const*) Unexecuted instantiation: util.cpp:var_CreateGetBool(vlc_object_t*, char const*) Unexecuted instantiation: virtual_segment.cpp:var_CreateGetBool(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment.cpp:var_CreateGetBool(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment_parse.cpp:var_CreateGetBool(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment_seeker.cpp:var_CreateGetBool(vlc_object_t*, char const*) Unexecuted instantiation: demux.cpp:var_CreateGetBool(vlc_object_t*, char const*) Unexecuted instantiation: events.cpp:var_CreateGetBool(vlc_object_t*, char const*) Unexecuted instantiation: Ebml_parser.cpp:var_CreateGetBool(vlc_object_t*, char const*) Unexecuted instantiation: chapters.cpp:var_CreateGetBool(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command.cpp:var_CreateGetBool(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_dvd.cpp:var_CreateGetBool(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_script.cpp:var_CreateGetBool(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_script_common.cpp:var_CreateGetBool(vlc_object_t*, char const*) Unexecuted instantiation: stream_io_callback.cpp:var_CreateGetBool(vlc_object_t*, char const*) Unexecuted instantiation: vlc_colors.c:var_CreateGetBool Unexecuted instantiation: adpcm.c:var_CreateGetBool Unexecuted instantiation: aes3.c:var_CreateGetBool Unexecuted instantiation: araw.c:var_CreateGetBool Unexecuted instantiation: g711.c:var_CreateGetBool Unexecuted instantiation: lpcm.c:var_CreateGetBool Unexecuted instantiation: uleaddvaudio.c:var_CreateGetBool Unexecuted instantiation: rawvideo.c:var_CreateGetBool Unexecuted instantiation: cc.c:var_CreateGetBool Unexecuted instantiation: cea708.c:var_CreateGetBool Unexecuted instantiation: cvdsub.c:var_CreateGetBool Unexecuted instantiation: dvbsub.c:var_CreateGetBool Unexecuted instantiation: scte18.c:var_CreateGetBool Unexecuted instantiation: atsc_a65.c:var_CreateGetBool Unexecuted instantiation: scte27.c:var_CreateGetBool Unexecuted instantiation: spudec.c:var_CreateGetBool Unexecuted instantiation: parse.c:var_CreateGetBool Unexecuted instantiation: stl.c:var_CreateGetBool Unexecuted instantiation: subsdec.c:var_CreateGetBool Unexecuted instantiation: subsusf.c:var_CreateGetBool Unexecuted instantiation: svcdsub.c:var_CreateGetBool Unexecuted instantiation: textst.c:var_CreateGetBool Unexecuted instantiation: substx3g.c:var_CreateGetBool Unexecuted instantiation: libvlc.c:var_CreateGetBool Unexecuted instantiation: version.c:var_CreateGetBool Unexecuted instantiation: chain.c:var_CreateGetBool Unexecuted instantiation: help.c:var_CreateGetBool Unexecuted instantiation: cmdline.c:var_CreateGetBool Unexecuted instantiation: getopt.c:var_CreateGetBool Unexecuted instantiation: libc.c:var_CreateGetBool Unexecuted instantiation: media_source.c:var_CreateGetBool Unexecuted instantiation: media_tree.c:var_CreateGetBool Unexecuted instantiation: modules.c:var_CreateGetBool Unexecuted instantiation: bank.c:var_CreateGetBool Unexecuted instantiation: entry.c:var_CreateGetBool Unexecuted instantiation: textdomain.c:var_CreateGetBool Unexecuted instantiation: dialog.c:var_CreateGetBool Unexecuted instantiation: interface.c:var_CreateGetBool Unexecuted instantiation: content.c:var_CreateGetBool Unexecuted instantiation: control.c:var_CreateGetBool Unexecuted instantiation: item.c:var_CreateGetBool Unexecuted instantiation: notify.c:var_CreateGetBool Unexecuted instantiation: player.c:var_CreateGetBool Unexecuted instantiation: playlist.c:var_CreateGetBool Unexecuted instantiation: preparse.c:var_CreateGetBool Unexecuted instantiation: randomizer.c:var_CreateGetBool Unexecuted instantiation: preparser.c:var_CreateGetBool Unexecuted instantiation: access.c:var_CreateGetBool Unexecuted instantiation: decoder_device.c:var_CreateGetBool Unexecuted instantiation: decoder_helpers.c:var_CreateGetBool Unexecuted instantiation: demux.c:var_CreateGetBool Unexecuted instantiation: input.c:var_CreateGetBool Unexecuted instantiation: attachment.c:var_CreateGetBool Unexecuted instantiation: replay_gain.c:var_CreateGetBool Unexecuted instantiation: timer.c:var_CreateGetBool Unexecuted instantiation: track.c:var_CreateGetBool Unexecuted instantiation: title.c:var_CreateGetBool Unexecuted instantiation: aout.c:var_CreateGetBool Unexecuted instantiation: vout.c:var_CreateGetBool Unexecuted instantiation: osd.c:var_CreateGetBool Unexecuted instantiation: medialib.c:var_CreateGetBool Unexecuted instantiation: resource.c:var_CreateGetBool Unexecuted instantiation: services_discovery.c:var_CreateGetBool Unexecuted instantiation: source.c:var_CreateGetBool Unexecuted instantiation: stats.c:var_CreateGetBool Unexecuted instantiation: stream.c:var_CreateGetBool Unexecuted instantiation: stream_extractor.c:var_CreateGetBool Unexecuted instantiation: stream_filter.c:var_CreateGetBool Unexecuted instantiation: stream_memory.c:var_CreateGetBool Unexecuted instantiation: subtitles.c:var_CreateGetBool Unexecuted instantiation: dec.c:var_CreateGetBool Unexecuted instantiation: filters.c:var_CreateGetBool Unexecuted instantiation: meter.c:var_CreateGetBool Unexecuted instantiation: output.c:var_CreateGetBool Unexecuted instantiation: volume.c:var_CreateGetBool Unexecuted instantiation: video_output.c:var_CreateGetBool Unexecuted instantiation: video_text.c:var_CreateGetBool Unexecuted instantiation: video_widgets.c:var_CreateGetBool Unexecuted instantiation: vout_subpictures.c:var_CreateGetBool Unexecuted instantiation: video_window.c:var_CreateGetBool Unexecuted instantiation: window.c:var_CreateGetBool Unexecuted instantiation: vout_intf.c:var_CreateGetBool Unexecuted instantiation: vout_wrapper.c:var_CreateGetBool Unexecuted instantiation: udp.c:var_CreateGetBool Unexecuted instantiation: charset.c:var_CreateGetBool Unexecuted instantiation: memstream.c:var_CreateGetBool Unexecuted instantiation: strings.c:var_CreateGetBool Unexecuted instantiation: unicode.c:var_CreateGetBool Unexecuted instantiation: url.c:var_CreateGetBool Unexecuted instantiation: filesystem.c:var_CreateGetBool Unexecuted instantiation: actions.c:var_CreateGetBool Unexecuted instantiation: ancillary.c:var_CreateGetBool Unexecuted instantiation: executor.c:var_CreateGetBool Unexecuted instantiation: md5.c:var_CreateGetBool Unexecuted instantiation: probe.c:var_CreateGetBool Unexecuted instantiation: mtime.c:var_CreateGetBool Unexecuted instantiation: frame.c:var_CreateGetBool Unexecuted instantiation: fifo.c:var_CreateGetBool Unexecuted instantiation: fourcc.c:var_CreateGetBool Unexecuted instantiation: es_format.c:var_CreateGetBool Unexecuted instantiation: picture.c:var_CreateGetBool Unexecuted instantiation: picture_fifo.c:var_CreateGetBool Unexecuted instantiation: picture_pool.c:var_CreateGetBool Unexecuted instantiation: interrupt.c:var_CreateGetBool Unexecuted instantiation: keystore.c:var_CreateGetBool Unexecuted instantiation: rcu.c:var_CreateGetBool Unexecuted instantiation: renderer_discovery.c:var_CreateGetBool Unexecuted instantiation: threads.c:var_CreateGetBool Unexecuted instantiation: cpu.c:var_CreateGetBool Unexecuted instantiation: epg.c:var_CreateGetBool Unexecuted instantiation: exit.c:var_CreateGetBool Unexecuted instantiation: image.c:var_CreateGetBool Unexecuted instantiation: messages.c:var_CreateGetBool Unexecuted instantiation: tracer.c:var_CreateGetBool Unexecuted instantiation: objects.c:var_CreateGetBool Unexecuted instantiation: objres.c:var_CreateGetBool Unexecuted instantiation: queue.c:var_CreateGetBool Unexecuted instantiation: variables.c:var_CreateGetBool Unexecuted instantiation: xml.c:var_CreateGetBool Unexecuted instantiation: filter.c:var_CreateGetBool Unexecuted instantiation: filter_chain.c:var_CreateGetBool Unexecuted instantiation: httpcookies.c:var_CreateGetBool Unexecuted instantiation: text_style.c:var_CreateGetBool Unexecuted instantiation: sort.c:var_CreateGetBool Unexecuted instantiation: subpicture.c:var_CreateGetBool Unexecuted instantiation: medialibrary.c:var_CreateGetBool Unexecuted instantiation: viewpoint.c:var_CreateGetBool Unexecuted instantiation: thread.c:var_CreateGetBool Unexecuted instantiation: rand.c:var_CreateGetBool Unexecuted instantiation: specific.c:var_CreateGetBool Unexecuted instantiation: stream_output.c:var_CreateGetBool Unexecuted instantiation: vlm.c:var_CreateGetBool Unexecuted instantiation: vlm_event.c:var_CreateGetBool Unexecuted instantiation: vlmshell.c:var_CreateGetBool Unexecuted instantiation: libvlc-module.c:var_CreateGetBool Unexecuted instantiation: dirs.c:var_CreateGetBool Unexecuted instantiation: art.c:var_CreateGetBool Unexecuted instantiation: fetcher.c:var_CreateGetBool Unexecuted instantiation: clock.c:var_CreateGetBool Unexecuted instantiation: es_out.c:var_CreateGetBool Unexecuted instantiation: es_out_source.c:var_CreateGetBool Unexecuted instantiation: es_out_timeshift.c:var_CreateGetBool Unexecuted instantiation: display.c:var_CreateGetBool Unexecuted instantiation: inhibit.c:var_CreateGetBool Unexecuted instantiation: interlacing.c:var_CreateGetBool Unexecuted instantiation: snapshot.c:var_CreateGetBool Unexecuted instantiation: getaddrinfo.c:var_CreateGetBool Unexecuted instantiation: io.c:var_CreateGetBool Unexecuted instantiation: iso_lang.c:var_CreateGetBool Unexecuted instantiation: chroma_probe.c:var_CreateGetBool Unexecuted instantiation: clock_internal.c:var_CreateGetBool Unexecuted instantiation: input_clock.c:var_CreateGetBool |
572 | | |
573 | | /** |
574 | | * Create a float variable with inherit and get its value. |
575 | | * |
576 | | * \param p_obj The object that holds the variable |
577 | | * \param psz_name The name of the variable |
578 | | */ |
579 | | VLC_USED |
580 | | static inline float var_CreateGetFloat( vlc_object_t *p_obj, const char *psz_name ) |
581 | 15.3k | { |
582 | 15.3k | var_Create( p_obj, psz_name, VLC_VAR_FLOAT | VLC_VAR_DOINHERIT ); |
583 | 15.3k | return var_GetFloat( p_obj, psz_name ); |
584 | 15.3k | } Unexecuted instantiation: demux-run.c:var_CreateGetFloat Unexecuted instantiation: common.c:var_CreateGetFloat Unexecuted instantiation: var.c:var_CreateGetFloat Unexecuted instantiation: decoder.c:var_CreateGetFloat Unexecuted instantiation: core.c:var_CreateGetFloat Unexecuted instantiation: error.c:var_CreateGetFloat Unexecuted instantiation: console.c:var_CreateGetFloat Unexecuted instantiation: aiff.c:var_CreateGetFloat Unexecuted instantiation: asf.c:var_CreateGetFloat Unexecuted instantiation: libasf.c:var_CreateGetFloat Unexecuted instantiation: asfpacket.c:var_CreateGetFloat Unexecuted instantiation: au.c:var_CreateGetFloat Unexecuted instantiation: avi.c:var_CreateGetFloat Unexecuted instantiation: libavi.c:var_CreateGetFloat Unexecuted instantiation: caf.c:var_CreateGetFloat Unexecuted instantiation: cdg.c:var_CreateGetFloat Unexecuted instantiation: es.c:var_CreateGetFloat Unexecuted instantiation: dts_header.c:var_CreateGetFloat Unexecuted instantiation: flac.c:var_CreateGetFloat Unexecuted instantiation: xiph_metadata.c:var_CreateGetFloat h26x.c:var_CreateGetFloat Line | Count | Source | 581 | 14.4k | { | 582 | 14.4k | var_Create( p_obj, psz_name, VLC_VAR_FLOAT | VLC_VAR_DOINHERIT ); | 583 | 14.4k | return var_GetFloat( p_obj, psz_name ); | 584 | 14.4k | } |
Unexecuted instantiation: mjpeg.c:var_CreateGetFloat Unexecuted instantiation: mp4.c:var_CreateGetFloat Unexecuted instantiation: fragments.c:var_CreateGetFloat Unexecuted instantiation: attachments.c:var_CreateGetFloat Unexecuted instantiation: heif.c:var_CreateGetFloat Unexecuted instantiation: essetup.c:var_CreateGetFloat Unexecuted instantiation: meta.c:var_CreateGetFloat Unexecuted instantiation: libmp4.c:var_CreateGetFloat Unexecuted instantiation: nsv.c:var_CreateGetFloat Unexecuted instantiation: ps.c:var_CreateGetFloat Unexecuted instantiation: pva.c:var_CreateGetFloat Unexecuted instantiation: sap.c:var_CreateGetFloat Unexecuted instantiation: sdp.c:var_CreateGetFloat Unexecuted instantiation: smf.c:var_CreateGetFloat subtitle.c:var_CreateGetFloat Line | Count | Source | 581 | 874 | { | 582 | 874 | var_Create( p_obj, psz_name, VLC_VAR_FLOAT | VLC_VAR_DOINHERIT ); | 583 | 874 | return var_GetFloat( p_obj, psz_name ); | 584 | 874 | } |
Unexecuted instantiation: tta.c:var_CreateGetFloat Unexecuted instantiation: ttml.c:var_CreateGetFloat Unexecuted instantiation: encttml.c:var_CreateGetFloat Unexecuted instantiation: substtml.c:var_CreateGetFloat Unexecuted instantiation: genttml.c:var_CreateGetFloat Unexecuted instantiation: ty.c:var_CreateGetFloat Unexecuted instantiation: voc.c:var_CreateGetFloat Unexecuted instantiation: wav.c:var_CreateGetFloat Unexecuted instantiation: webvtt.c:var_CreateGetFloat Unexecuted instantiation: encvtt.c:var_CreateGetFloat Unexecuted instantiation: subsvtt.c:var_CreateGetFloat Unexecuted instantiation: css_parser.c:var_CreateGetFloat Unexecuted instantiation: css_style.c:var_CreateGetFloat Unexecuted instantiation: CSSGrammar.c:var_CreateGetFloat Unexecuted instantiation: libwebvtt_plugin_la-CSSLexer.c:var_CreateGetFloat Unexecuted instantiation: xa.c:var_CreateGetFloat Unexecuted instantiation: a52.c:var_CreateGetFloat Unexecuted instantiation: copy.c:var_CreateGetFloat Unexecuted instantiation: dts.c:var_CreateGetFloat Unexecuted instantiation: h264.c:var_CreateGetFloat Unexecuted instantiation: hxxx_sei.c:var_CreateGetFloat Unexecuted instantiation: hxxx_common.c:var_CreateGetFloat Unexecuted instantiation: h264_nal.c:var_CreateGetFloat Unexecuted instantiation: h264_slice.c:var_CreateGetFloat Unexecuted instantiation: hevc.c:var_CreateGetFloat Unexecuted instantiation: hevc_nal.c:var_CreateGetFloat Unexecuted instantiation: mlp.c:var_CreateGetFloat Unexecuted instantiation: mpeg4audio.c:var_CreateGetFloat Unexecuted instantiation: mpeg4video.c:var_CreateGetFloat Unexecuted instantiation: mpegaudio.c:var_CreateGetFloat Unexecuted instantiation: mpegvideo.c:var_CreateGetFloat Unexecuted instantiation: vc1.c:var_CreateGetFloat Unexecuted instantiation: rawaud.c:var_CreateGetFloat Unexecuted instantiation: rawvid.c:var_CreateGetFloat Unexecuted instantiation: fs.c:var_CreateGetFloat Unexecuted instantiation: file.c:var_CreateGetFloat Unexecuted instantiation: directory.c:var_CreateGetFloat Unexecuted instantiation: libxml.c:var_CreateGetFloat Unexecuted instantiation: ogg.c:var_CreateGetFloat Unexecuted instantiation: oggseek.c:var_CreateGetFloat Unexecuted instantiation: ogg_granule.c:var_CreateGetFloat Unexecuted instantiation: mkv.cpp:var_CreateGetFloat(vlc_object_t*, char const*) Unexecuted instantiation: util.cpp:var_CreateGetFloat(vlc_object_t*, char const*) Unexecuted instantiation: virtual_segment.cpp:var_CreateGetFloat(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment.cpp:var_CreateGetFloat(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment_parse.cpp:var_CreateGetFloat(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment_seeker.cpp:var_CreateGetFloat(vlc_object_t*, char const*) Unexecuted instantiation: demux.cpp:var_CreateGetFloat(vlc_object_t*, char const*) Unexecuted instantiation: events.cpp:var_CreateGetFloat(vlc_object_t*, char const*) Unexecuted instantiation: Ebml_parser.cpp:var_CreateGetFloat(vlc_object_t*, char const*) Unexecuted instantiation: chapters.cpp:var_CreateGetFloat(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command.cpp:var_CreateGetFloat(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_dvd.cpp:var_CreateGetFloat(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_script.cpp:var_CreateGetFloat(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_script_common.cpp:var_CreateGetFloat(vlc_object_t*, char const*) Unexecuted instantiation: stream_io_callback.cpp:var_CreateGetFloat(vlc_object_t*, char const*) Unexecuted instantiation: vlc_colors.c:var_CreateGetFloat Unexecuted instantiation: adpcm.c:var_CreateGetFloat Unexecuted instantiation: aes3.c:var_CreateGetFloat Unexecuted instantiation: araw.c:var_CreateGetFloat Unexecuted instantiation: g711.c:var_CreateGetFloat Unexecuted instantiation: lpcm.c:var_CreateGetFloat Unexecuted instantiation: uleaddvaudio.c:var_CreateGetFloat Unexecuted instantiation: rawvideo.c:var_CreateGetFloat Unexecuted instantiation: cc.c:var_CreateGetFloat Unexecuted instantiation: cea708.c:var_CreateGetFloat Unexecuted instantiation: cvdsub.c:var_CreateGetFloat Unexecuted instantiation: dvbsub.c:var_CreateGetFloat Unexecuted instantiation: scte18.c:var_CreateGetFloat Unexecuted instantiation: atsc_a65.c:var_CreateGetFloat Unexecuted instantiation: scte27.c:var_CreateGetFloat Unexecuted instantiation: spudec.c:var_CreateGetFloat Unexecuted instantiation: parse.c:var_CreateGetFloat Unexecuted instantiation: stl.c:var_CreateGetFloat Unexecuted instantiation: subsdec.c:var_CreateGetFloat Unexecuted instantiation: subsusf.c:var_CreateGetFloat Unexecuted instantiation: svcdsub.c:var_CreateGetFloat Unexecuted instantiation: textst.c:var_CreateGetFloat Unexecuted instantiation: substx3g.c:var_CreateGetFloat Unexecuted instantiation: libvlc.c:var_CreateGetFloat Unexecuted instantiation: version.c:var_CreateGetFloat Unexecuted instantiation: chain.c:var_CreateGetFloat Unexecuted instantiation: help.c:var_CreateGetFloat Unexecuted instantiation: cmdline.c:var_CreateGetFloat Unexecuted instantiation: getopt.c:var_CreateGetFloat Unexecuted instantiation: libc.c:var_CreateGetFloat Unexecuted instantiation: media_source.c:var_CreateGetFloat Unexecuted instantiation: media_tree.c:var_CreateGetFloat Unexecuted instantiation: modules.c:var_CreateGetFloat Unexecuted instantiation: bank.c:var_CreateGetFloat Unexecuted instantiation: entry.c:var_CreateGetFloat Unexecuted instantiation: textdomain.c:var_CreateGetFloat Unexecuted instantiation: dialog.c:var_CreateGetFloat Unexecuted instantiation: interface.c:var_CreateGetFloat Unexecuted instantiation: content.c:var_CreateGetFloat Unexecuted instantiation: control.c:var_CreateGetFloat Unexecuted instantiation: item.c:var_CreateGetFloat Unexecuted instantiation: notify.c:var_CreateGetFloat Unexecuted instantiation: player.c:var_CreateGetFloat Unexecuted instantiation: playlist.c:var_CreateGetFloat Unexecuted instantiation: preparse.c:var_CreateGetFloat Unexecuted instantiation: randomizer.c:var_CreateGetFloat Unexecuted instantiation: preparser.c:var_CreateGetFloat Unexecuted instantiation: access.c:var_CreateGetFloat Unexecuted instantiation: decoder_device.c:var_CreateGetFloat Unexecuted instantiation: decoder_helpers.c:var_CreateGetFloat Unexecuted instantiation: demux.c:var_CreateGetFloat Unexecuted instantiation: input.c:var_CreateGetFloat Unexecuted instantiation: attachment.c:var_CreateGetFloat Unexecuted instantiation: replay_gain.c:var_CreateGetFloat Unexecuted instantiation: timer.c:var_CreateGetFloat Unexecuted instantiation: track.c:var_CreateGetFloat Unexecuted instantiation: title.c:var_CreateGetFloat Unexecuted instantiation: aout.c:var_CreateGetFloat Unexecuted instantiation: vout.c:var_CreateGetFloat Unexecuted instantiation: osd.c:var_CreateGetFloat Unexecuted instantiation: medialib.c:var_CreateGetFloat Unexecuted instantiation: resource.c:var_CreateGetFloat Unexecuted instantiation: services_discovery.c:var_CreateGetFloat Unexecuted instantiation: source.c:var_CreateGetFloat Unexecuted instantiation: stats.c:var_CreateGetFloat Unexecuted instantiation: stream.c:var_CreateGetFloat Unexecuted instantiation: stream_extractor.c:var_CreateGetFloat Unexecuted instantiation: stream_filter.c:var_CreateGetFloat Unexecuted instantiation: stream_memory.c:var_CreateGetFloat Unexecuted instantiation: subtitles.c:var_CreateGetFloat Unexecuted instantiation: dec.c:var_CreateGetFloat Unexecuted instantiation: filters.c:var_CreateGetFloat Unexecuted instantiation: meter.c:var_CreateGetFloat Unexecuted instantiation: output.c:var_CreateGetFloat Unexecuted instantiation: volume.c:var_CreateGetFloat Unexecuted instantiation: video_output.c:var_CreateGetFloat Unexecuted instantiation: video_text.c:var_CreateGetFloat Unexecuted instantiation: video_widgets.c:var_CreateGetFloat Unexecuted instantiation: vout_subpictures.c:var_CreateGetFloat Unexecuted instantiation: video_window.c:var_CreateGetFloat Unexecuted instantiation: window.c:var_CreateGetFloat Unexecuted instantiation: vout_intf.c:var_CreateGetFloat Unexecuted instantiation: vout_wrapper.c:var_CreateGetFloat Unexecuted instantiation: udp.c:var_CreateGetFloat Unexecuted instantiation: charset.c:var_CreateGetFloat Unexecuted instantiation: memstream.c:var_CreateGetFloat Unexecuted instantiation: strings.c:var_CreateGetFloat Unexecuted instantiation: unicode.c:var_CreateGetFloat Unexecuted instantiation: url.c:var_CreateGetFloat Unexecuted instantiation: filesystem.c:var_CreateGetFloat Unexecuted instantiation: actions.c:var_CreateGetFloat Unexecuted instantiation: ancillary.c:var_CreateGetFloat Unexecuted instantiation: executor.c:var_CreateGetFloat Unexecuted instantiation: md5.c:var_CreateGetFloat Unexecuted instantiation: probe.c:var_CreateGetFloat Unexecuted instantiation: mtime.c:var_CreateGetFloat Unexecuted instantiation: frame.c:var_CreateGetFloat Unexecuted instantiation: fifo.c:var_CreateGetFloat Unexecuted instantiation: fourcc.c:var_CreateGetFloat Unexecuted instantiation: es_format.c:var_CreateGetFloat Unexecuted instantiation: picture.c:var_CreateGetFloat Unexecuted instantiation: picture_fifo.c:var_CreateGetFloat Unexecuted instantiation: picture_pool.c:var_CreateGetFloat Unexecuted instantiation: interrupt.c:var_CreateGetFloat Unexecuted instantiation: keystore.c:var_CreateGetFloat Unexecuted instantiation: rcu.c:var_CreateGetFloat Unexecuted instantiation: renderer_discovery.c:var_CreateGetFloat Unexecuted instantiation: threads.c:var_CreateGetFloat Unexecuted instantiation: cpu.c:var_CreateGetFloat Unexecuted instantiation: epg.c:var_CreateGetFloat Unexecuted instantiation: exit.c:var_CreateGetFloat Unexecuted instantiation: image.c:var_CreateGetFloat Unexecuted instantiation: messages.c:var_CreateGetFloat Unexecuted instantiation: tracer.c:var_CreateGetFloat Unexecuted instantiation: objects.c:var_CreateGetFloat Unexecuted instantiation: objres.c:var_CreateGetFloat Unexecuted instantiation: queue.c:var_CreateGetFloat Unexecuted instantiation: variables.c:var_CreateGetFloat Unexecuted instantiation: xml.c:var_CreateGetFloat Unexecuted instantiation: filter.c:var_CreateGetFloat Unexecuted instantiation: filter_chain.c:var_CreateGetFloat Unexecuted instantiation: httpcookies.c:var_CreateGetFloat Unexecuted instantiation: text_style.c:var_CreateGetFloat Unexecuted instantiation: sort.c:var_CreateGetFloat Unexecuted instantiation: subpicture.c:var_CreateGetFloat Unexecuted instantiation: medialibrary.c:var_CreateGetFloat Unexecuted instantiation: viewpoint.c:var_CreateGetFloat Unexecuted instantiation: thread.c:var_CreateGetFloat Unexecuted instantiation: rand.c:var_CreateGetFloat Unexecuted instantiation: specific.c:var_CreateGetFloat Unexecuted instantiation: stream_output.c:var_CreateGetFloat Unexecuted instantiation: vlm.c:var_CreateGetFloat Unexecuted instantiation: vlm_event.c:var_CreateGetFloat Unexecuted instantiation: vlmshell.c:var_CreateGetFloat Unexecuted instantiation: libvlc-module.c:var_CreateGetFloat Unexecuted instantiation: dirs.c:var_CreateGetFloat Unexecuted instantiation: art.c:var_CreateGetFloat Unexecuted instantiation: fetcher.c:var_CreateGetFloat Unexecuted instantiation: clock.c:var_CreateGetFloat Unexecuted instantiation: es_out.c:var_CreateGetFloat Unexecuted instantiation: es_out_source.c:var_CreateGetFloat Unexecuted instantiation: es_out_timeshift.c:var_CreateGetFloat Unexecuted instantiation: display.c:var_CreateGetFloat Unexecuted instantiation: inhibit.c:var_CreateGetFloat Unexecuted instantiation: interlacing.c:var_CreateGetFloat Unexecuted instantiation: snapshot.c:var_CreateGetFloat Unexecuted instantiation: getaddrinfo.c:var_CreateGetFloat Unexecuted instantiation: io.c:var_CreateGetFloat Unexecuted instantiation: iso_lang.c:var_CreateGetFloat Unexecuted instantiation: chroma_probe.c:var_CreateGetFloat Unexecuted instantiation: clock_internal.c:var_CreateGetFloat Unexecuted instantiation: input_clock.c:var_CreateGetFloat |
585 | | |
586 | | /** |
587 | | * Create a string variable with inherit and get its value. |
588 | | * |
589 | | * \param p_obj The object that holds the variable |
590 | | * \param psz_name The name of the variable |
591 | | */ |
592 | | VLC_USED VLC_MALLOC |
593 | | static inline char *var_CreateGetString( vlc_object_t *p_obj, |
594 | | const char *psz_name ) |
595 | 874 | { |
596 | 874 | var_Create( p_obj, psz_name, VLC_VAR_STRING | VLC_VAR_DOINHERIT ); |
597 | 874 | return var_GetString( p_obj, psz_name ); |
598 | 874 | } Unexecuted instantiation: demux-run.c:var_CreateGetString Unexecuted instantiation: common.c:var_CreateGetString Unexecuted instantiation: var.c:var_CreateGetString Unexecuted instantiation: decoder.c:var_CreateGetString Unexecuted instantiation: core.c:var_CreateGetString Unexecuted instantiation: error.c:var_CreateGetString Unexecuted instantiation: console.c:var_CreateGetString Unexecuted instantiation: aiff.c:var_CreateGetString Unexecuted instantiation: asf.c:var_CreateGetString Unexecuted instantiation: libasf.c:var_CreateGetString Unexecuted instantiation: asfpacket.c:var_CreateGetString Unexecuted instantiation: au.c:var_CreateGetString Unexecuted instantiation: avi.c:var_CreateGetString Unexecuted instantiation: libavi.c:var_CreateGetString Unexecuted instantiation: caf.c:var_CreateGetString Unexecuted instantiation: cdg.c:var_CreateGetString Unexecuted instantiation: es.c:var_CreateGetString Unexecuted instantiation: dts_header.c:var_CreateGetString Unexecuted instantiation: flac.c:var_CreateGetString Unexecuted instantiation: xiph_metadata.c:var_CreateGetString Unexecuted instantiation: h26x.c:var_CreateGetString Unexecuted instantiation: mjpeg.c:var_CreateGetString Unexecuted instantiation: mp4.c:var_CreateGetString Unexecuted instantiation: fragments.c:var_CreateGetString Unexecuted instantiation: attachments.c:var_CreateGetString Unexecuted instantiation: heif.c:var_CreateGetString Unexecuted instantiation: essetup.c:var_CreateGetString Unexecuted instantiation: meta.c:var_CreateGetString Unexecuted instantiation: libmp4.c:var_CreateGetString Unexecuted instantiation: nsv.c:var_CreateGetString Unexecuted instantiation: ps.c:var_CreateGetString Unexecuted instantiation: pva.c:var_CreateGetString Unexecuted instantiation: sap.c:var_CreateGetString Unexecuted instantiation: sdp.c:var_CreateGetString Unexecuted instantiation: smf.c:var_CreateGetString subtitle.c:var_CreateGetString Line | Count | Source | 595 | 874 | { | 596 | 874 | var_Create( p_obj, psz_name, VLC_VAR_STRING | VLC_VAR_DOINHERIT ); | 597 | 874 | return var_GetString( p_obj, psz_name ); | 598 | 874 | } |
Unexecuted instantiation: tta.c:var_CreateGetString Unexecuted instantiation: ttml.c:var_CreateGetString Unexecuted instantiation: encttml.c:var_CreateGetString Unexecuted instantiation: substtml.c:var_CreateGetString Unexecuted instantiation: genttml.c:var_CreateGetString Unexecuted instantiation: ty.c:var_CreateGetString Unexecuted instantiation: voc.c:var_CreateGetString Unexecuted instantiation: wav.c:var_CreateGetString Unexecuted instantiation: webvtt.c:var_CreateGetString Unexecuted instantiation: encvtt.c:var_CreateGetString Unexecuted instantiation: subsvtt.c:var_CreateGetString Unexecuted instantiation: css_parser.c:var_CreateGetString Unexecuted instantiation: css_style.c:var_CreateGetString Unexecuted instantiation: CSSGrammar.c:var_CreateGetString Unexecuted instantiation: libwebvtt_plugin_la-CSSLexer.c:var_CreateGetString Unexecuted instantiation: xa.c:var_CreateGetString Unexecuted instantiation: a52.c:var_CreateGetString Unexecuted instantiation: copy.c:var_CreateGetString Unexecuted instantiation: dts.c:var_CreateGetString Unexecuted instantiation: h264.c:var_CreateGetString Unexecuted instantiation: hxxx_sei.c:var_CreateGetString Unexecuted instantiation: hxxx_common.c:var_CreateGetString Unexecuted instantiation: h264_nal.c:var_CreateGetString Unexecuted instantiation: h264_slice.c:var_CreateGetString Unexecuted instantiation: hevc.c:var_CreateGetString Unexecuted instantiation: hevc_nal.c:var_CreateGetString Unexecuted instantiation: mlp.c:var_CreateGetString Unexecuted instantiation: mpeg4audio.c:var_CreateGetString Unexecuted instantiation: mpeg4video.c:var_CreateGetString Unexecuted instantiation: mpegaudio.c:var_CreateGetString Unexecuted instantiation: mpegvideo.c:var_CreateGetString Unexecuted instantiation: vc1.c:var_CreateGetString Unexecuted instantiation: rawaud.c:var_CreateGetString Unexecuted instantiation: rawvid.c:var_CreateGetString Unexecuted instantiation: fs.c:var_CreateGetString Unexecuted instantiation: file.c:var_CreateGetString Unexecuted instantiation: directory.c:var_CreateGetString Unexecuted instantiation: libxml.c:var_CreateGetString Unexecuted instantiation: ogg.c:var_CreateGetString Unexecuted instantiation: oggseek.c:var_CreateGetString Unexecuted instantiation: ogg_granule.c:var_CreateGetString Unexecuted instantiation: mkv.cpp:var_CreateGetString(vlc_object_t*, char const*) Unexecuted instantiation: util.cpp:var_CreateGetString(vlc_object_t*, char const*) Unexecuted instantiation: virtual_segment.cpp:var_CreateGetString(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment.cpp:var_CreateGetString(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment_parse.cpp:var_CreateGetString(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment_seeker.cpp:var_CreateGetString(vlc_object_t*, char const*) Unexecuted instantiation: demux.cpp:var_CreateGetString(vlc_object_t*, char const*) Unexecuted instantiation: events.cpp:var_CreateGetString(vlc_object_t*, char const*) Unexecuted instantiation: Ebml_parser.cpp:var_CreateGetString(vlc_object_t*, char const*) Unexecuted instantiation: chapters.cpp:var_CreateGetString(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command.cpp:var_CreateGetString(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_dvd.cpp:var_CreateGetString(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_script.cpp:var_CreateGetString(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_script_common.cpp:var_CreateGetString(vlc_object_t*, char const*) Unexecuted instantiation: stream_io_callback.cpp:var_CreateGetString(vlc_object_t*, char const*) Unexecuted instantiation: vlc_colors.c:var_CreateGetString Unexecuted instantiation: adpcm.c:var_CreateGetString Unexecuted instantiation: aes3.c:var_CreateGetString Unexecuted instantiation: araw.c:var_CreateGetString Unexecuted instantiation: g711.c:var_CreateGetString Unexecuted instantiation: lpcm.c:var_CreateGetString Unexecuted instantiation: uleaddvaudio.c:var_CreateGetString Unexecuted instantiation: rawvideo.c:var_CreateGetString Unexecuted instantiation: cc.c:var_CreateGetString Unexecuted instantiation: cea708.c:var_CreateGetString Unexecuted instantiation: cvdsub.c:var_CreateGetString Unexecuted instantiation: dvbsub.c:var_CreateGetString Unexecuted instantiation: scte18.c:var_CreateGetString Unexecuted instantiation: atsc_a65.c:var_CreateGetString Unexecuted instantiation: scte27.c:var_CreateGetString Unexecuted instantiation: spudec.c:var_CreateGetString Unexecuted instantiation: parse.c:var_CreateGetString Unexecuted instantiation: stl.c:var_CreateGetString Unexecuted instantiation: subsdec.c:var_CreateGetString Unexecuted instantiation: subsusf.c:var_CreateGetString Unexecuted instantiation: svcdsub.c:var_CreateGetString Unexecuted instantiation: textst.c:var_CreateGetString Unexecuted instantiation: substx3g.c:var_CreateGetString Unexecuted instantiation: libvlc.c:var_CreateGetString Unexecuted instantiation: version.c:var_CreateGetString Unexecuted instantiation: chain.c:var_CreateGetString Unexecuted instantiation: help.c:var_CreateGetString Unexecuted instantiation: cmdline.c:var_CreateGetString Unexecuted instantiation: getopt.c:var_CreateGetString Unexecuted instantiation: libc.c:var_CreateGetString Unexecuted instantiation: media_source.c:var_CreateGetString Unexecuted instantiation: media_tree.c:var_CreateGetString Unexecuted instantiation: modules.c:var_CreateGetString Unexecuted instantiation: bank.c:var_CreateGetString Unexecuted instantiation: entry.c:var_CreateGetString Unexecuted instantiation: textdomain.c:var_CreateGetString Unexecuted instantiation: dialog.c:var_CreateGetString Unexecuted instantiation: interface.c:var_CreateGetString Unexecuted instantiation: content.c:var_CreateGetString Unexecuted instantiation: control.c:var_CreateGetString Unexecuted instantiation: item.c:var_CreateGetString Unexecuted instantiation: notify.c:var_CreateGetString Unexecuted instantiation: player.c:var_CreateGetString Unexecuted instantiation: playlist.c:var_CreateGetString Unexecuted instantiation: preparse.c:var_CreateGetString Unexecuted instantiation: randomizer.c:var_CreateGetString Unexecuted instantiation: preparser.c:var_CreateGetString Unexecuted instantiation: access.c:var_CreateGetString Unexecuted instantiation: decoder_device.c:var_CreateGetString Unexecuted instantiation: decoder_helpers.c:var_CreateGetString Unexecuted instantiation: demux.c:var_CreateGetString Unexecuted instantiation: input.c:var_CreateGetString Unexecuted instantiation: attachment.c:var_CreateGetString Unexecuted instantiation: replay_gain.c:var_CreateGetString Unexecuted instantiation: timer.c:var_CreateGetString Unexecuted instantiation: track.c:var_CreateGetString Unexecuted instantiation: title.c:var_CreateGetString Unexecuted instantiation: aout.c:var_CreateGetString Unexecuted instantiation: vout.c:var_CreateGetString Unexecuted instantiation: osd.c:var_CreateGetString Unexecuted instantiation: medialib.c:var_CreateGetString Unexecuted instantiation: resource.c:var_CreateGetString Unexecuted instantiation: services_discovery.c:var_CreateGetString Unexecuted instantiation: source.c:var_CreateGetString Unexecuted instantiation: stats.c:var_CreateGetString Unexecuted instantiation: stream.c:var_CreateGetString Unexecuted instantiation: stream_extractor.c:var_CreateGetString Unexecuted instantiation: stream_filter.c:var_CreateGetString Unexecuted instantiation: stream_memory.c:var_CreateGetString Unexecuted instantiation: subtitles.c:var_CreateGetString Unexecuted instantiation: dec.c:var_CreateGetString Unexecuted instantiation: filters.c:var_CreateGetString Unexecuted instantiation: meter.c:var_CreateGetString Unexecuted instantiation: output.c:var_CreateGetString Unexecuted instantiation: volume.c:var_CreateGetString Unexecuted instantiation: video_output.c:var_CreateGetString Unexecuted instantiation: video_text.c:var_CreateGetString Unexecuted instantiation: video_widgets.c:var_CreateGetString Unexecuted instantiation: vout_subpictures.c:var_CreateGetString Unexecuted instantiation: video_window.c:var_CreateGetString Unexecuted instantiation: window.c:var_CreateGetString Unexecuted instantiation: vout_intf.c:var_CreateGetString Unexecuted instantiation: vout_wrapper.c:var_CreateGetString Unexecuted instantiation: udp.c:var_CreateGetString Unexecuted instantiation: charset.c:var_CreateGetString Unexecuted instantiation: memstream.c:var_CreateGetString Unexecuted instantiation: strings.c:var_CreateGetString Unexecuted instantiation: unicode.c:var_CreateGetString Unexecuted instantiation: url.c:var_CreateGetString Unexecuted instantiation: filesystem.c:var_CreateGetString Unexecuted instantiation: actions.c:var_CreateGetString Unexecuted instantiation: ancillary.c:var_CreateGetString Unexecuted instantiation: executor.c:var_CreateGetString Unexecuted instantiation: md5.c:var_CreateGetString Unexecuted instantiation: probe.c:var_CreateGetString Unexecuted instantiation: mtime.c:var_CreateGetString Unexecuted instantiation: frame.c:var_CreateGetString Unexecuted instantiation: fifo.c:var_CreateGetString Unexecuted instantiation: fourcc.c:var_CreateGetString Unexecuted instantiation: es_format.c:var_CreateGetString Unexecuted instantiation: picture.c:var_CreateGetString Unexecuted instantiation: picture_fifo.c:var_CreateGetString Unexecuted instantiation: picture_pool.c:var_CreateGetString Unexecuted instantiation: interrupt.c:var_CreateGetString Unexecuted instantiation: keystore.c:var_CreateGetString Unexecuted instantiation: rcu.c:var_CreateGetString Unexecuted instantiation: renderer_discovery.c:var_CreateGetString Unexecuted instantiation: threads.c:var_CreateGetString Unexecuted instantiation: cpu.c:var_CreateGetString Unexecuted instantiation: epg.c:var_CreateGetString Unexecuted instantiation: exit.c:var_CreateGetString Unexecuted instantiation: image.c:var_CreateGetString Unexecuted instantiation: messages.c:var_CreateGetString Unexecuted instantiation: tracer.c:var_CreateGetString Unexecuted instantiation: objects.c:var_CreateGetString Unexecuted instantiation: objres.c:var_CreateGetString Unexecuted instantiation: queue.c:var_CreateGetString Unexecuted instantiation: variables.c:var_CreateGetString Unexecuted instantiation: xml.c:var_CreateGetString Unexecuted instantiation: filter.c:var_CreateGetString Unexecuted instantiation: filter_chain.c:var_CreateGetString Unexecuted instantiation: httpcookies.c:var_CreateGetString Unexecuted instantiation: text_style.c:var_CreateGetString Unexecuted instantiation: sort.c:var_CreateGetString Unexecuted instantiation: subpicture.c:var_CreateGetString Unexecuted instantiation: medialibrary.c:var_CreateGetString Unexecuted instantiation: viewpoint.c:var_CreateGetString Unexecuted instantiation: thread.c:var_CreateGetString Unexecuted instantiation: rand.c:var_CreateGetString Unexecuted instantiation: specific.c:var_CreateGetString Unexecuted instantiation: stream_output.c:var_CreateGetString Unexecuted instantiation: vlm.c:var_CreateGetString Unexecuted instantiation: vlm_event.c:var_CreateGetString Unexecuted instantiation: vlmshell.c:var_CreateGetString Unexecuted instantiation: libvlc-module.c:var_CreateGetString Unexecuted instantiation: dirs.c:var_CreateGetString Unexecuted instantiation: art.c:var_CreateGetString Unexecuted instantiation: fetcher.c:var_CreateGetString Unexecuted instantiation: clock.c:var_CreateGetString Unexecuted instantiation: es_out.c:var_CreateGetString Unexecuted instantiation: es_out_source.c:var_CreateGetString Unexecuted instantiation: es_out_timeshift.c:var_CreateGetString Unexecuted instantiation: display.c:var_CreateGetString Unexecuted instantiation: inhibit.c:var_CreateGetString Unexecuted instantiation: interlacing.c:var_CreateGetString Unexecuted instantiation: snapshot.c:var_CreateGetString Unexecuted instantiation: getaddrinfo.c:var_CreateGetString Unexecuted instantiation: io.c:var_CreateGetString Unexecuted instantiation: iso_lang.c:var_CreateGetString Unexecuted instantiation: chroma_probe.c:var_CreateGetString Unexecuted instantiation: clock_internal.c:var_CreateGetString Unexecuted instantiation: input_clock.c:var_CreateGetString |
599 | | |
600 | | VLC_USED VLC_MALLOC |
601 | | static inline char *var_CreateGetNonEmptyString( vlc_object_t *p_obj, |
602 | | const char *psz_name ) |
603 | 0 | { |
604 | 0 | var_Create( p_obj, psz_name, VLC_VAR_STRING | VLC_VAR_DOINHERIT ); |
605 | 0 | return var_GetNonEmptyString( p_obj, psz_name ); |
606 | 0 | } Unexecuted instantiation: demux-run.c:var_CreateGetNonEmptyString Unexecuted instantiation: common.c:var_CreateGetNonEmptyString Unexecuted instantiation: var.c:var_CreateGetNonEmptyString Unexecuted instantiation: decoder.c:var_CreateGetNonEmptyString Unexecuted instantiation: core.c:var_CreateGetNonEmptyString Unexecuted instantiation: error.c:var_CreateGetNonEmptyString Unexecuted instantiation: console.c:var_CreateGetNonEmptyString Unexecuted instantiation: aiff.c:var_CreateGetNonEmptyString Unexecuted instantiation: asf.c:var_CreateGetNonEmptyString Unexecuted instantiation: libasf.c:var_CreateGetNonEmptyString Unexecuted instantiation: asfpacket.c:var_CreateGetNonEmptyString Unexecuted instantiation: au.c:var_CreateGetNonEmptyString Unexecuted instantiation: avi.c:var_CreateGetNonEmptyString Unexecuted instantiation: libavi.c:var_CreateGetNonEmptyString Unexecuted instantiation: caf.c:var_CreateGetNonEmptyString Unexecuted instantiation: cdg.c:var_CreateGetNonEmptyString Unexecuted instantiation: es.c:var_CreateGetNonEmptyString Unexecuted instantiation: dts_header.c:var_CreateGetNonEmptyString Unexecuted instantiation: flac.c:var_CreateGetNonEmptyString Unexecuted instantiation: xiph_metadata.c:var_CreateGetNonEmptyString Unexecuted instantiation: h26x.c:var_CreateGetNonEmptyString Unexecuted instantiation: mjpeg.c:var_CreateGetNonEmptyString Unexecuted instantiation: mp4.c:var_CreateGetNonEmptyString Unexecuted instantiation: fragments.c:var_CreateGetNonEmptyString Unexecuted instantiation: attachments.c:var_CreateGetNonEmptyString Unexecuted instantiation: heif.c:var_CreateGetNonEmptyString Unexecuted instantiation: essetup.c:var_CreateGetNonEmptyString Unexecuted instantiation: meta.c:var_CreateGetNonEmptyString Unexecuted instantiation: libmp4.c:var_CreateGetNonEmptyString Unexecuted instantiation: nsv.c:var_CreateGetNonEmptyString Unexecuted instantiation: ps.c:var_CreateGetNonEmptyString Unexecuted instantiation: pva.c:var_CreateGetNonEmptyString Unexecuted instantiation: sap.c:var_CreateGetNonEmptyString Unexecuted instantiation: sdp.c:var_CreateGetNonEmptyString Unexecuted instantiation: smf.c:var_CreateGetNonEmptyString Unexecuted instantiation: subtitle.c:var_CreateGetNonEmptyString Unexecuted instantiation: tta.c:var_CreateGetNonEmptyString Unexecuted instantiation: ttml.c:var_CreateGetNonEmptyString Unexecuted instantiation: encttml.c:var_CreateGetNonEmptyString Unexecuted instantiation: substtml.c:var_CreateGetNonEmptyString Unexecuted instantiation: genttml.c:var_CreateGetNonEmptyString Unexecuted instantiation: ty.c:var_CreateGetNonEmptyString Unexecuted instantiation: voc.c:var_CreateGetNonEmptyString Unexecuted instantiation: wav.c:var_CreateGetNonEmptyString Unexecuted instantiation: webvtt.c:var_CreateGetNonEmptyString Unexecuted instantiation: encvtt.c:var_CreateGetNonEmptyString Unexecuted instantiation: subsvtt.c:var_CreateGetNonEmptyString Unexecuted instantiation: css_parser.c:var_CreateGetNonEmptyString Unexecuted instantiation: css_style.c:var_CreateGetNonEmptyString Unexecuted instantiation: CSSGrammar.c:var_CreateGetNonEmptyString Unexecuted instantiation: libwebvtt_plugin_la-CSSLexer.c:var_CreateGetNonEmptyString Unexecuted instantiation: xa.c:var_CreateGetNonEmptyString Unexecuted instantiation: a52.c:var_CreateGetNonEmptyString Unexecuted instantiation: copy.c:var_CreateGetNonEmptyString Unexecuted instantiation: dts.c:var_CreateGetNonEmptyString Unexecuted instantiation: h264.c:var_CreateGetNonEmptyString Unexecuted instantiation: hxxx_sei.c:var_CreateGetNonEmptyString Unexecuted instantiation: hxxx_common.c:var_CreateGetNonEmptyString Unexecuted instantiation: h264_nal.c:var_CreateGetNonEmptyString Unexecuted instantiation: h264_slice.c:var_CreateGetNonEmptyString Unexecuted instantiation: hevc.c:var_CreateGetNonEmptyString Unexecuted instantiation: hevc_nal.c:var_CreateGetNonEmptyString Unexecuted instantiation: mlp.c:var_CreateGetNonEmptyString Unexecuted instantiation: mpeg4audio.c:var_CreateGetNonEmptyString Unexecuted instantiation: mpeg4video.c:var_CreateGetNonEmptyString Unexecuted instantiation: mpegaudio.c:var_CreateGetNonEmptyString Unexecuted instantiation: mpegvideo.c:var_CreateGetNonEmptyString Unexecuted instantiation: vc1.c:var_CreateGetNonEmptyString Unexecuted instantiation: rawaud.c:var_CreateGetNonEmptyString Unexecuted instantiation: rawvid.c:var_CreateGetNonEmptyString Unexecuted instantiation: fs.c:var_CreateGetNonEmptyString Unexecuted instantiation: file.c:var_CreateGetNonEmptyString Unexecuted instantiation: directory.c:var_CreateGetNonEmptyString Unexecuted instantiation: libxml.c:var_CreateGetNonEmptyString Unexecuted instantiation: ogg.c:var_CreateGetNonEmptyString Unexecuted instantiation: oggseek.c:var_CreateGetNonEmptyString Unexecuted instantiation: ogg_granule.c:var_CreateGetNonEmptyString Unexecuted instantiation: mkv.cpp:var_CreateGetNonEmptyString(vlc_object_t*, char const*) Unexecuted instantiation: util.cpp:var_CreateGetNonEmptyString(vlc_object_t*, char const*) Unexecuted instantiation: virtual_segment.cpp:var_CreateGetNonEmptyString(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment.cpp:var_CreateGetNonEmptyString(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment_parse.cpp:var_CreateGetNonEmptyString(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment_seeker.cpp:var_CreateGetNonEmptyString(vlc_object_t*, char const*) Unexecuted instantiation: demux.cpp:var_CreateGetNonEmptyString(vlc_object_t*, char const*) Unexecuted instantiation: events.cpp:var_CreateGetNonEmptyString(vlc_object_t*, char const*) Unexecuted instantiation: Ebml_parser.cpp:var_CreateGetNonEmptyString(vlc_object_t*, char const*) Unexecuted instantiation: chapters.cpp:var_CreateGetNonEmptyString(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command.cpp:var_CreateGetNonEmptyString(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_dvd.cpp:var_CreateGetNonEmptyString(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_script.cpp:var_CreateGetNonEmptyString(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_script_common.cpp:var_CreateGetNonEmptyString(vlc_object_t*, char const*) Unexecuted instantiation: stream_io_callback.cpp:var_CreateGetNonEmptyString(vlc_object_t*, char const*) Unexecuted instantiation: vlc_colors.c:var_CreateGetNonEmptyString Unexecuted instantiation: adpcm.c:var_CreateGetNonEmptyString Unexecuted instantiation: aes3.c:var_CreateGetNonEmptyString Unexecuted instantiation: araw.c:var_CreateGetNonEmptyString Unexecuted instantiation: g711.c:var_CreateGetNonEmptyString Unexecuted instantiation: lpcm.c:var_CreateGetNonEmptyString Unexecuted instantiation: uleaddvaudio.c:var_CreateGetNonEmptyString Unexecuted instantiation: rawvideo.c:var_CreateGetNonEmptyString Unexecuted instantiation: cc.c:var_CreateGetNonEmptyString Unexecuted instantiation: cea708.c:var_CreateGetNonEmptyString Unexecuted instantiation: cvdsub.c:var_CreateGetNonEmptyString Unexecuted instantiation: dvbsub.c:var_CreateGetNonEmptyString Unexecuted instantiation: scte18.c:var_CreateGetNonEmptyString Unexecuted instantiation: atsc_a65.c:var_CreateGetNonEmptyString Unexecuted instantiation: scte27.c:var_CreateGetNonEmptyString Unexecuted instantiation: spudec.c:var_CreateGetNonEmptyString Unexecuted instantiation: parse.c:var_CreateGetNonEmptyString Unexecuted instantiation: stl.c:var_CreateGetNonEmptyString Unexecuted instantiation: subsdec.c:var_CreateGetNonEmptyString Unexecuted instantiation: subsusf.c:var_CreateGetNonEmptyString Unexecuted instantiation: svcdsub.c:var_CreateGetNonEmptyString Unexecuted instantiation: textst.c:var_CreateGetNonEmptyString Unexecuted instantiation: substx3g.c:var_CreateGetNonEmptyString Unexecuted instantiation: libvlc.c:var_CreateGetNonEmptyString Unexecuted instantiation: version.c:var_CreateGetNonEmptyString Unexecuted instantiation: chain.c:var_CreateGetNonEmptyString Unexecuted instantiation: help.c:var_CreateGetNonEmptyString Unexecuted instantiation: cmdline.c:var_CreateGetNonEmptyString Unexecuted instantiation: getopt.c:var_CreateGetNonEmptyString Unexecuted instantiation: libc.c:var_CreateGetNonEmptyString Unexecuted instantiation: media_source.c:var_CreateGetNonEmptyString Unexecuted instantiation: media_tree.c:var_CreateGetNonEmptyString Unexecuted instantiation: modules.c:var_CreateGetNonEmptyString Unexecuted instantiation: bank.c:var_CreateGetNonEmptyString Unexecuted instantiation: entry.c:var_CreateGetNonEmptyString Unexecuted instantiation: textdomain.c:var_CreateGetNonEmptyString Unexecuted instantiation: dialog.c:var_CreateGetNonEmptyString Unexecuted instantiation: interface.c:var_CreateGetNonEmptyString Unexecuted instantiation: content.c:var_CreateGetNonEmptyString Unexecuted instantiation: control.c:var_CreateGetNonEmptyString Unexecuted instantiation: item.c:var_CreateGetNonEmptyString Unexecuted instantiation: notify.c:var_CreateGetNonEmptyString Unexecuted instantiation: player.c:var_CreateGetNonEmptyString Unexecuted instantiation: playlist.c:var_CreateGetNonEmptyString Unexecuted instantiation: preparse.c:var_CreateGetNonEmptyString Unexecuted instantiation: randomizer.c:var_CreateGetNonEmptyString Unexecuted instantiation: preparser.c:var_CreateGetNonEmptyString Unexecuted instantiation: access.c:var_CreateGetNonEmptyString Unexecuted instantiation: decoder_device.c:var_CreateGetNonEmptyString Unexecuted instantiation: decoder_helpers.c:var_CreateGetNonEmptyString Unexecuted instantiation: demux.c:var_CreateGetNonEmptyString Unexecuted instantiation: input.c:var_CreateGetNonEmptyString Unexecuted instantiation: attachment.c:var_CreateGetNonEmptyString Unexecuted instantiation: replay_gain.c:var_CreateGetNonEmptyString Unexecuted instantiation: timer.c:var_CreateGetNonEmptyString Unexecuted instantiation: track.c:var_CreateGetNonEmptyString Unexecuted instantiation: title.c:var_CreateGetNonEmptyString Unexecuted instantiation: aout.c:var_CreateGetNonEmptyString Unexecuted instantiation: vout.c:var_CreateGetNonEmptyString Unexecuted instantiation: osd.c:var_CreateGetNonEmptyString Unexecuted instantiation: medialib.c:var_CreateGetNonEmptyString Unexecuted instantiation: resource.c:var_CreateGetNonEmptyString Unexecuted instantiation: services_discovery.c:var_CreateGetNonEmptyString Unexecuted instantiation: source.c:var_CreateGetNonEmptyString Unexecuted instantiation: stats.c:var_CreateGetNonEmptyString Unexecuted instantiation: stream.c:var_CreateGetNonEmptyString Unexecuted instantiation: stream_extractor.c:var_CreateGetNonEmptyString Unexecuted instantiation: stream_filter.c:var_CreateGetNonEmptyString Unexecuted instantiation: stream_memory.c:var_CreateGetNonEmptyString Unexecuted instantiation: subtitles.c:var_CreateGetNonEmptyString Unexecuted instantiation: dec.c:var_CreateGetNonEmptyString Unexecuted instantiation: filters.c:var_CreateGetNonEmptyString Unexecuted instantiation: meter.c:var_CreateGetNonEmptyString Unexecuted instantiation: output.c:var_CreateGetNonEmptyString Unexecuted instantiation: volume.c:var_CreateGetNonEmptyString Unexecuted instantiation: video_output.c:var_CreateGetNonEmptyString Unexecuted instantiation: video_text.c:var_CreateGetNonEmptyString Unexecuted instantiation: video_widgets.c:var_CreateGetNonEmptyString Unexecuted instantiation: vout_subpictures.c:var_CreateGetNonEmptyString Unexecuted instantiation: video_window.c:var_CreateGetNonEmptyString Unexecuted instantiation: window.c:var_CreateGetNonEmptyString Unexecuted instantiation: vout_intf.c:var_CreateGetNonEmptyString Unexecuted instantiation: vout_wrapper.c:var_CreateGetNonEmptyString Unexecuted instantiation: udp.c:var_CreateGetNonEmptyString Unexecuted instantiation: charset.c:var_CreateGetNonEmptyString Unexecuted instantiation: memstream.c:var_CreateGetNonEmptyString Unexecuted instantiation: strings.c:var_CreateGetNonEmptyString Unexecuted instantiation: unicode.c:var_CreateGetNonEmptyString Unexecuted instantiation: url.c:var_CreateGetNonEmptyString Unexecuted instantiation: filesystem.c:var_CreateGetNonEmptyString Unexecuted instantiation: actions.c:var_CreateGetNonEmptyString Unexecuted instantiation: ancillary.c:var_CreateGetNonEmptyString Unexecuted instantiation: executor.c:var_CreateGetNonEmptyString Unexecuted instantiation: md5.c:var_CreateGetNonEmptyString Unexecuted instantiation: probe.c:var_CreateGetNonEmptyString Unexecuted instantiation: mtime.c:var_CreateGetNonEmptyString Unexecuted instantiation: frame.c:var_CreateGetNonEmptyString Unexecuted instantiation: fifo.c:var_CreateGetNonEmptyString Unexecuted instantiation: fourcc.c:var_CreateGetNonEmptyString Unexecuted instantiation: es_format.c:var_CreateGetNonEmptyString Unexecuted instantiation: picture.c:var_CreateGetNonEmptyString Unexecuted instantiation: picture_fifo.c:var_CreateGetNonEmptyString Unexecuted instantiation: picture_pool.c:var_CreateGetNonEmptyString Unexecuted instantiation: interrupt.c:var_CreateGetNonEmptyString Unexecuted instantiation: keystore.c:var_CreateGetNonEmptyString Unexecuted instantiation: rcu.c:var_CreateGetNonEmptyString Unexecuted instantiation: renderer_discovery.c:var_CreateGetNonEmptyString Unexecuted instantiation: threads.c:var_CreateGetNonEmptyString Unexecuted instantiation: cpu.c:var_CreateGetNonEmptyString Unexecuted instantiation: epg.c:var_CreateGetNonEmptyString Unexecuted instantiation: exit.c:var_CreateGetNonEmptyString Unexecuted instantiation: image.c:var_CreateGetNonEmptyString Unexecuted instantiation: messages.c:var_CreateGetNonEmptyString Unexecuted instantiation: tracer.c:var_CreateGetNonEmptyString Unexecuted instantiation: objects.c:var_CreateGetNonEmptyString Unexecuted instantiation: objres.c:var_CreateGetNonEmptyString Unexecuted instantiation: queue.c:var_CreateGetNonEmptyString Unexecuted instantiation: variables.c:var_CreateGetNonEmptyString Unexecuted instantiation: xml.c:var_CreateGetNonEmptyString Unexecuted instantiation: filter.c:var_CreateGetNonEmptyString Unexecuted instantiation: filter_chain.c:var_CreateGetNonEmptyString Unexecuted instantiation: httpcookies.c:var_CreateGetNonEmptyString Unexecuted instantiation: text_style.c:var_CreateGetNonEmptyString Unexecuted instantiation: sort.c:var_CreateGetNonEmptyString Unexecuted instantiation: subpicture.c:var_CreateGetNonEmptyString Unexecuted instantiation: medialibrary.c:var_CreateGetNonEmptyString Unexecuted instantiation: viewpoint.c:var_CreateGetNonEmptyString Unexecuted instantiation: thread.c:var_CreateGetNonEmptyString Unexecuted instantiation: rand.c:var_CreateGetNonEmptyString Unexecuted instantiation: specific.c:var_CreateGetNonEmptyString Unexecuted instantiation: stream_output.c:var_CreateGetNonEmptyString Unexecuted instantiation: vlm.c:var_CreateGetNonEmptyString Unexecuted instantiation: vlm_event.c:var_CreateGetNonEmptyString Unexecuted instantiation: vlmshell.c:var_CreateGetNonEmptyString Unexecuted instantiation: libvlc-module.c:var_CreateGetNonEmptyString Unexecuted instantiation: dirs.c:var_CreateGetNonEmptyString Unexecuted instantiation: art.c:var_CreateGetNonEmptyString Unexecuted instantiation: fetcher.c:var_CreateGetNonEmptyString Unexecuted instantiation: clock.c:var_CreateGetNonEmptyString Unexecuted instantiation: es_out.c:var_CreateGetNonEmptyString Unexecuted instantiation: es_out_source.c:var_CreateGetNonEmptyString Unexecuted instantiation: es_out_timeshift.c:var_CreateGetNonEmptyString Unexecuted instantiation: display.c:var_CreateGetNonEmptyString Unexecuted instantiation: inhibit.c:var_CreateGetNonEmptyString Unexecuted instantiation: interlacing.c:var_CreateGetNonEmptyString Unexecuted instantiation: snapshot.c:var_CreateGetNonEmptyString Unexecuted instantiation: getaddrinfo.c:var_CreateGetNonEmptyString Unexecuted instantiation: io.c:var_CreateGetNonEmptyString Unexecuted instantiation: iso_lang.c:var_CreateGetNonEmptyString Unexecuted instantiation: chroma_probe.c:var_CreateGetNonEmptyString Unexecuted instantiation: clock_internal.c:var_CreateGetNonEmptyString Unexecuted instantiation: input_clock.c:var_CreateGetNonEmptyString |
607 | | |
608 | | /** |
609 | | * Create an address variable with inherit and get its value. |
610 | | * |
611 | | * \param p_obj The object that holds the variable |
612 | | * \param psz_name The name of the variable |
613 | | */ |
614 | | VLC_USED |
615 | | static inline void *var_CreateGetAddress( vlc_object_t *p_obj, |
616 | | const char *psz_name ) |
617 | 0 | { |
618 | 0 | var_Create( p_obj, psz_name, VLC_VAR_ADDRESS | VLC_VAR_DOINHERIT ); |
619 | 0 | return var_GetAddress( p_obj, psz_name ); |
620 | 0 | } Unexecuted instantiation: demux-run.c:var_CreateGetAddress Unexecuted instantiation: common.c:var_CreateGetAddress Unexecuted instantiation: var.c:var_CreateGetAddress Unexecuted instantiation: decoder.c:var_CreateGetAddress Unexecuted instantiation: core.c:var_CreateGetAddress Unexecuted instantiation: error.c:var_CreateGetAddress Unexecuted instantiation: console.c:var_CreateGetAddress Unexecuted instantiation: aiff.c:var_CreateGetAddress Unexecuted instantiation: asf.c:var_CreateGetAddress Unexecuted instantiation: libasf.c:var_CreateGetAddress Unexecuted instantiation: asfpacket.c:var_CreateGetAddress Unexecuted instantiation: au.c:var_CreateGetAddress Unexecuted instantiation: avi.c:var_CreateGetAddress Unexecuted instantiation: libavi.c:var_CreateGetAddress Unexecuted instantiation: caf.c:var_CreateGetAddress Unexecuted instantiation: cdg.c:var_CreateGetAddress Unexecuted instantiation: es.c:var_CreateGetAddress Unexecuted instantiation: dts_header.c:var_CreateGetAddress Unexecuted instantiation: flac.c:var_CreateGetAddress Unexecuted instantiation: xiph_metadata.c:var_CreateGetAddress Unexecuted instantiation: h26x.c:var_CreateGetAddress Unexecuted instantiation: mjpeg.c:var_CreateGetAddress Unexecuted instantiation: mp4.c:var_CreateGetAddress Unexecuted instantiation: fragments.c:var_CreateGetAddress Unexecuted instantiation: attachments.c:var_CreateGetAddress Unexecuted instantiation: heif.c:var_CreateGetAddress Unexecuted instantiation: essetup.c:var_CreateGetAddress Unexecuted instantiation: meta.c:var_CreateGetAddress Unexecuted instantiation: libmp4.c:var_CreateGetAddress Unexecuted instantiation: nsv.c:var_CreateGetAddress Unexecuted instantiation: ps.c:var_CreateGetAddress Unexecuted instantiation: pva.c:var_CreateGetAddress Unexecuted instantiation: sap.c:var_CreateGetAddress Unexecuted instantiation: sdp.c:var_CreateGetAddress Unexecuted instantiation: smf.c:var_CreateGetAddress Unexecuted instantiation: subtitle.c:var_CreateGetAddress Unexecuted instantiation: tta.c:var_CreateGetAddress Unexecuted instantiation: ttml.c:var_CreateGetAddress Unexecuted instantiation: encttml.c:var_CreateGetAddress Unexecuted instantiation: substtml.c:var_CreateGetAddress Unexecuted instantiation: genttml.c:var_CreateGetAddress Unexecuted instantiation: ty.c:var_CreateGetAddress Unexecuted instantiation: voc.c:var_CreateGetAddress Unexecuted instantiation: wav.c:var_CreateGetAddress Unexecuted instantiation: webvtt.c:var_CreateGetAddress Unexecuted instantiation: encvtt.c:var_CreateGetAddress Unexecuted instantiation: subsvtt.c:var_CreateGetAddress Unexecuted instantiation: css_parser.c:var_CreateGetAddress Unexecuted instantiation: css_style.c:var_CreateGetAddress Unexecuted instantiation: CSSGrammar.c:var_CreateGetAddress Unexecuted instantiation: libwebvtt_plugin_la-CSSLexer.c:var_CreateGetAddress Unexecuted instantiation: xa.c:var_CreateGetAddress Unexecuted instantiation: a52.c:var_CreateGetAddress Unexecuted instantiation: copy.c:var_CreateGetAddress Unexecuted instantiation: dts.c:var_CreateGetAddress Unexecuted instantiation: h264.c:var_CreateGetAddress Unexecuted instantiation: hxxx_sei.c:var_CreateGetAddress Unexecuted instantiation: hxxx_common.c:var_CreateGetAddress Unexecuted instantiation: h264_nal.c:var_CreateGetAddress Unexecuted instantiation: h264_slice.c:var_CreateGetAddress Unexecuted instantiation: hevc.c:var_CreateGetAddress Unexecuted instantiation: hevc_nal.c:var_CreateGetAddress Unexecuted instantiation: mlp.c:var_CreateGetAddress Unexecuted instantiation: mpeg4audio.c:var_CreateGetAddress Unexecuted instantiation: mpeg4video.c:var_CreateGetAddress Unexecuted instantiation: mpegaudio.c:var_CreateGetAddress Unexecuted instantiation: mpegvideo.c:var_CreateGetAddress Unexecuted instantiation: vc1.c:var_CreateGetAddress Unexecuted instantiation: rawaud.c:var_CreateGetAddress Unexecuted instantiation: rawvid.c:var_CreateGetAddress Unexecuted instantiation: fs.c:var_CreateGetAddress Unexecuted instantiation: file.c:var_CreateGetAddress Unexecuted instantiation: directory.c:var_CreateGetAddress Unexecuted instantiation: libxml.c:var_CreateGetAddress Unexecuted instantiation: ogg.c:var_CreateGetAddress Unexecuted instantiation: oggseek.c:var_CreateGetAddress Unexecuted instantiation: ogg_granule.c:var_CreateGetAddress Unexecuted instantiation: mkv.cpp:var_CreateGetAddress(vlc_object_t*, char const*) Unexecuted instantiation: util.cpp:var_CreateGetAddress(vlc_object_t*, char const*) Unexecuted instantiation: virtual_segment.cpp:var_CreateGetAddress(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment.cpp:var_CreateGetAddress(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment_parse.cpp:var_CreateGetAddress(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment_seeker.cpp:var_CreateGetAddress(vlc_object_t*, char const*) Unexecuted instantiation: demux.cpp:var_CreateGetAddress(vlc_object_t*, char const*) Unexecuted instantiation: events.cpp:var_CreateGetAddress(vlc_object_t*, char const*) Unexecuted instantiation: Ebml_parser.cpp:var_CreateGetAddress(vlc_object_t*, char const*) Unexecuted instantiation: chapters.cpp:var_CreateGetAddress(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command.cpp:var_CreateGetAddress(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_dvd.cpp:var_CreateGetAddress(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_script.cpp:var_CreateGetAddress(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_script_common.cpp:var_CreateGetAddress(vlc_object_t*, char const*) Unexecuted instantiation: stream_io_callback.cpp:var_CreateGetAddress(vlc_object_t*, char const*) Unexecuted instantiation: vlc_colors.c:var_CreateGetAddress Unexecuted instantiation: adpcm.c:var_CreateGetAddress Unexecuted instantiation: aes3.c:var_CreateGetAddress Unexecuted instantiation: araw.c:var_CreateGetAddress Unexecuted instantiation: g711.c:var_CreateGetAddress Unexecuted instantiation: lpcm.c:var_CreateGetAddress Unexecuted instantiation: uleaddvaudio.c:var_CreateGetAddress Unexecuted instantiation: rawvideo.c:var_CreateGetAddress Unexecuted instantiation: cc.c:var_CreateGetAddress Unexecuted instantiation: cea708.c:var_CreateGetAddress Unexecuted instantiation: cvdsub.c:var_CreateGetAddress Unexecuted instantiation: dvbsub.c:var_CreateGetAddress Unexecuted instantiation: scte18.c:var_CreateGetAddress Unexecuted instantiation: atsc_a65.c:var_CreateGetAddress Unexecuted instantiation: scte27.c:var_CreateGetAddress Unexecuted instantiation: spudec.c:var_CreateGetAddress Unexecuted instantiation: parse.c:var_CreateGetAddress Unexecuted instantiation: stl.c:var_CreateGetAddress Unexecuted instantiation: subsdec.c:var_CreateGetAddress Unexecuted instantiation: subsusf.c:var_CreateGetAddress Unexecuted instantiation: svcdsub.c:var_CreateGetAddress Unexecuted instantiation: textst.c:var_CreateGetAddress Unexecuted instantiation: substx3g.c:var_CreateGetAddress Unexecuted instantiation: libvlc.c:var_CreateGetAddress Unexecuted instantiation: version.c:var_CreateGetAddress Unexecuted instantiation: chain.c:var_CreateGetAddress Unexecuted instantiation: help.c:var_CreateGetAddress Unexecuted instantiation: cmdline.c:var_CreateGetAddress Unexecuted instantiation: getopt.c:var_CreateGetAddress Unexecuted instantiation: libc.c:var_CreateGetAddress Unexecuted instantiation: media_source.c:var_CreateGetAddress Unexecuted instantiation: media_tree.c:var_CreateGetAddress Unexecuted instantiation: modules.c:var_CreateGetAddress Unexecuted instantiation: bank.c:var_CreateGetAddress Unexecuted instantiation: entry.c:var_CreateGetAddress Unexecuted instantiation: textdomain.c:var_CreateGetAddress Unexecuted instantiation: dialog.c:var_CreateGetAddress Unexecuted instantiation: interface.c:var_CreateGetAddress Unexecuted instantiation: content.c:var_CreateGetAddress Unexecuted instantiation: control.c:var_CreateGetAddress Unexecuted instantiation: item.c:var_CreateGetAddress Unexecuted instantiation: notify.c:var_CreateGetAddress Unexecuted instantiation: player.c:var_CreateGetAddress Unexecuted instantiation: playlist.c:var_CreateGetAddress Unexecuted instantiation: preparse.c:var_CreateGetAddress Unexecuted instantiation: randomizer.c:var_CreateGetAddress Unexecuted instantiation: preparser.c:var_CreateGetAddress Unexecuted instantiation: access.c:var_CreateGetAddress Unexecuted instantiation: decoder_device.c:var_CreateGetAddress Unexecuted instantiation: decoder_helpers.c:var_CreateGetAddress Unexecuted instantiation: demux.c:var_CreateGetAddress Unexecuted instantiation: input.c:var_CreateGetAddress Unexecuted instantiation: attachment.c:var_CreateGetAddress Unexecuted instantiation: replay_gain.c:var_CreateGetAddress Unexecuted instantiation: timer.c:var_CreateGetAddress Unexecuted instantiation: track.c:var_CreateGetAddress Unexecuted instantiation: title.c:var_CreateGetAddress Unexecuted instantiation: aout.c:var_CreateGetAddress Unexecuted instantiation: vout.c:var_CreateGetAddress Unexecuted instantiation: osd.c:var_CreateGetAddress Unexecuted instantiation: medialib.c:var_CreateGetAddress Unexecuted instantiation: resource.c:var_CreateGetAddress Unexecuted instantiation: services_discovery.c:var_CreateGetAddress Unexecuted instantiation: source.c:var_CreateGetAddress Unexecuted instantiation: stats.c:var_CreateGetAddress Unexecuted instantiation: stream.c:var_CreateGetAddress Unexecuted instantiation: stream_extractor.c:var_CreateGetAddress Unexecuted instantiation: stream_filter.c:var_CreateGetAddress Unexecuted instantiation: stream_memory.c:var_CreateGetAddress Unexecuted instantiation: subtitles.c:var_CreateGetAddress Unexecuted instantiation: dec.c:var_CreateGetAddress Unexecuted instantiation: filters.c:var_CreateGetAddress Unexecuted instantiation: meter.c:var_CreateGetAddress Unexecuted instantiation: output.c:var_CreateGetAddress Unexecuted instantiation: volume.c:var_CreateGetAddress Unexecuted instantiation: video_output.c:var_CreateGetAddress Unexecuted instantiation: video_text.c:var_CreateGetAddress Unexecuted instantiation: video_widgets.c:var_CreateGetAddress Unexecuted instantiation: vout_subpictures.c:var_CreateGetAddress Unexecuted instantiation: video_window.c:var_CreateGetAddress Unexecuted instantiation: window.c:var_CreateGetAddress Unexecuted instantiation: vout_intf.c:var_CreateGetAddress Unexecuted instantiation: vout_wrapper.c:var_CreateGetAddress Unexecuted instantiation: udp.c:var_CreateGetAddress Unexecuted instantiation: charset.c:var_CreateGetAddress Unexecuted instantiation: memstream.c:var_CreateGetAddress Unexecuted instantiation: strings.c:var_CreateGetAddress Unexecuted instantiation: unicode.c:var_CreateGetAddress Unexecuted instantiation: url.c:var_CreateGetAddress Unexecuted instantiation: filesystem.c:var_CreateGetAddress Unexecuted instantiation: actions.c:var_CreateGetAddress Unexecuted instantiation: ancillary.c:var_CreateGetAddress Unexecuted instantiation: executor.c:var_CreateGetAddress Unexecuted instantiation: md5.c:var_CreateGetAddress Unexecuted instantiation: probe.c:var_CreateGetAddress Unexecuted instantiation: mtime.c:var_CreateGetAddress Unexecuted instantiation: frame.c:var_CreateGetAddress Unexecuted instantiation: fifo.c:var_CreateGetAddress Unexecuted instantiation: fourcc.c:var_CreateGetAddress Unexecuted instantiation: es_format.c:var_CreateGetAddress Unexecuted instantiation: picture.c:var_CreateGetAddress Unexecuted instantiation: picture_fifo.c:var_CreateGetAddress Unexecuted instantiation: picture_pool.c:var_CreateGetAddress Unexecuted instantiation: interrupt.c:var_CreateGetAddress Unexecuted instantiation: keystore.c:var_CreateGetAddress Unexecuted instantiation: rcu.c:var_CreateGetAddress Unexecuted instantiation: renderer_discovery.c:var_CreateGetAddress Unexecuted instantiation: threads.c:var_CreateGetAddress Unexecuted instantiation: cpu.c:var_CreateGetAddress Unexecuted instantiation: epg.c:var_CreateGetAddress Unexecuted instantiation: exit.c:var_CreateGetAddress Unexecuted instantiation: image.c:var_CreateGetAddress Unexecuted instantiation: messages.c:var_CreateGetAddress Unexecuted instantiation: tracer.c:var_CreateGetAddress Unexecuted instantiation: objects.c:var_CreateGetAddress Unexecuted instantiation: objres.c:var_CreateGetAddress Unexecuted instantiation: queue.c:var_CreateGetAddress Unexecuted instantiation: variables.c:var_CreateGetAddress Unexecuted instantiation: xml.c:var_CreateGetAddress Unexecuted instantiation: filter.c:var_CreateGetAddress Unexecuted instantiation: filter_chain.c:var_CreateGetAddress Unexecuted instantiation: httpcookies.c:var_CreateGetAddress Unexecuted instantiation: text_style.c:var_CreateGetAddress Unexecuted instantiation: sort.c:var_CreateGetAddress Unexecuted instantiation: subpicture.c:var_CreateGetAddress Unexecuted instantiation: medialibrary.c:var_CreateGetAddress Unexecuted instantiation: viewpoint.c:var_CreateGetAddress Unexecuted instantiation: thread.c:var_CreateGetAddress Unexecuted instantiation: rand.c:var_CreateGetAddress Unexecuted instantiation: specific.c:var_CreateGetAddress Unexecuted instantiation: stream_output.c:var_CreateGetAddress Unexecuted instantiation: vlm.c:var_CreateGetAddress Unexecuted instantiation: vlm_event.c:var_CreateGetAddress Unexecuted instantiation: vlmshell.c:var_CreateGetAddress Unexecuted instantiation: libvlc-module.c:var_CreateGetAddress Unexecuted instantiation: dirs.c:var_CreateGetAddress Unexecuted instantiation: art.c:var_CreateGetAddress Unexecuted instantiation: fetcher.c:var_CreateGetAddress Unexecuted instantiation: clock.c:var_CreateGetAddress Unexecuted instantiation: es_out.c:var_CreateGetAddress Unexecuted instantiation: es_out_source.c:var_CreateGetAddress Unexecuted instantiation: es_out_timeshift.c:var_CreateGetAddress Unexecuted instantiation: display.c:var_CreateGetAddress Unexecuted instantiation: inhibit.c:var_CreateGetAddress Unexecuted instantiation: interlacing.c:var_CreateGetAddress Unexecuted instantiation: snapshot.c:var_CreateGetAddress Unexecuted instantiation: getaddrinfo.c:var_CreateGetAddress Unexecuted instantiation: io.c:var_CreateGetAddress Unexecuted instantiation: iso_lang.c:var_CreateGetAddress Unexecuted instantiation: chroma_probe.c:var_CreateGetAddress Unexecuted instantiation: clock_internal.c:var_CreateGetAddress Unexecuted instantiation: input_clock.c:var_CreateGetAddress |
621 | | |
622 | | /** |
623 | | * Create a integer command variable with inherit and get its value. |
624 | | * |
625 | | * \param p_obj The object that holds the variable |
626 | | * \param psz_name The name of the variable |
627 | | */ |
628 | | VLC_USED |
629 | | static inline int64_t var_CreateGetIntegerCommand( vlc_object_t *p_obj, const char *psz_name ) |
630 | 0 | { |
631 | 0 | var_Create( p_obj, psz_name, VLC_VAR_INTEGER | VLC_VAR_DOINHERIT |
632 | 0 | | VLC_VAR_ISCOMMAND ); |
633 | 0 | return var_GetInteger( p_obj, psz_name ); |
634 | 0 | } Unexecuted instantiation: demux-run.c:var_CreateGetIntegerCommand Unexecuted instantiation: common.c:var_CreateGetIntegerCommand Unexecuted instantiation: var.c:var_CreateGetIntegerCommand Unexecuted instantiation: decoder.c:var_CreateGetIntegerCommand Unexecuted instantiation: core.c:var_CreateGetIntegerCommand Unexecuted instantiation: error.c:var_CreateGetIntegerCommand Unexecuted instantiation: console.c:var_CreateGetIntegerCommand Unexecuted instantiation: aiff.c:var_CreateGetIntegerCommand Unexecuted instantiation: asf.c:var_CreateGetIntegerCommand Unexecuted instantiation: libasf.c:var_CreateGetIntegerCommand Unexecuted instantiation: asfpacket.c:var_CreateGetIntegerCommand Unexecuted instantiation: au.c:var_CreateGetIntegerCommand Unexecuted instantiation: avi.c:var_CreateGetIntegerCommand Unexecuted instantiation: libavi.c:var_CreateGetIntegerCommand Unexecuted instantiation: caf.c:var_CreateGetIntegerCommand Unexecuted instantiation: cdg.c:var_CreateGetIntegerCommand Unexecuted instantiation: es.c:var_CreateGetIntegerCommand Unexecuted instantiation: dts_header.c:var_CreateGetIntegerCommand Unexecuted instantiation: flac.c:var_CreateGetIntegerCommand Unexecuted instantiation: xiph_metadata.c:var_CreateGetIntegerCommand Unexecuted instantiation: h26x.c:var_CreateGetIntegerCommand Unexecuted instantiation: mjpeg.c:var_CreateGetIntegerCommand Unexecuted instantiation: mp4.c:var_CreateGetIntegerCommand Unexecuted instantiation: fragments.c:var_CreateGetIntegerCommand Unexecuted instantiation: attachments.c:var_CreateGetIntegerCommand Unexecuted instantiation: heif.c:var_CreateGetIntegerCommand Unexecuted instantiation: essetup.c:var_CreateGetIntegerCommand Unexecuted instantiation: meta.c:var_CreateGetIntegerCommand Unexecuted instantiation: libmp4.c:var_CreateGetIntegerCommand Unexecuted instantiation: nsv.c:var_CreateGetIntegerCommand Unexecuted instantiation: ps.c:var_CreateGetIntegerCommand Unexecuted instantiation: pva.c:var_CreateGetIntegerCommand Unexecuted instantiation: sap.c:var_CreateGetIntegerCommand Unexecuted instantiation: sdp.c:var_CreateGetIntegerCommand Unexecuted instantiation: smf.c:var_CreateGetIntegerCommand Unexecuted instantiation: subtitle.c:var_CreateGetIntegerCommand Unexecuted instantiation: tta.c:var_CreateGetIntegerCommand Unexecuted instantiation: ttml.c:var_CreateGetIntegerCommand Unexecuted instantiation: encttml.c:var_CreateGetIntegerCommand Unexecuted instantiation: substtml.c:var_CreateGetIntegerCommand Unexecuted instantiation: genttml.c:var_CreateGetIntegerCommand Unexecuted instantiation: ty.c:var_CreateGetIntegerCommand Unexecuted instantiation: voc.c:var_CreateGetIntegerCommand Unexecuted instantiation: wav.c:var_CreateGetIntegerCommand Unexecuted instantiation: webvtt.c:var_CreateGetIntegerCommand Unexecuted instantiation: encvtt.c:var_CreateGetIntegerCommand Unexecuted instantiation: subsvtt.c:var_CreateGetIntegerCommand Unexecuted instantiation: css_parser.c:var_CreateGetIntegerCommand Unexecuted instantiation: css_style.c:var_CreateGetIntegerCommand Unexecuted instantiation: CSSGrammar.c:var_CreateGetIntegerCommand Unexecuted instantiation: libwebvtt_plugin_la-CSSLexer.c:var_CreateGetIntegerCommand Unexecuted instantiation: xa.c:var_CreateGetIntegerCommand Unexecuted instantiation: a52.c:var_CreateGetIntegerCommand Unexecuted instantiation: copy.c:var_CreateGetIntegerCommand Unexecuted instantiation: dts.c:var_CreateGetIntegerCommand Unexecuted instantiation: h264.c:var_CreateGetIntegerCommand Unexecuted instantiation: hxxx_sei.c:var_CreateGetIntegerCommand Unexecuted instantiation: hxxx_common.c:var_CreateGetIntegerCommand Unexecuted instantiation: h264_nal.c:var_CreateGetIntegerCommand Unexecuted instantiation: h264_slice.c:var_CreateGetIntegerCommand Unexecuted instantiation: hevc.c:var_CreateGetIntegerCommand Unexecuted instantiation: hevc_nal.c:var_CreateGetIntegerCommand Unexecuted instantiation: mlp.c:var_CreateGetIntegerCommand Unexecuted instantiation: mpeg4audio.c:var_CreateGetIntegerCommand Unexecuted instantiation: mpeg4video.c:var_CreateGetIntegerCommand Unexecuted instantiation: mpegaudio.c:var_CreateGetIntegerCommand Unexecuted instantiation: mpegvideo.c:var_CreateGetIntegerCommand Unexecuted instantiation: vc1.c:var_CreateGetIntegerCommand Unexecuted instantiation: rawaud.c:var_CreateGetIntegerCommand Unexecuted instantiation: rawvid.c:var_CreateGetIntegerCommand Unexecuted instantiation: fs.c:var_CreateGetIntegerCommand Unexecuted instantiation: file.c:var_CreateGetIntegerCommand Unexecuted instantiation: directory.c:var_CreateGetIntegerCommand Unexecuted instantiation: libxml.c:var_CreateGetIntegerCommand Unexecuted instantiation: ogg.c:var_CreateGetIntegerCommand Unexecuted instantiation: oggseek.c:var_CreateGetIntegerCommand Unexecuted instantiation: ogg_granule.c:var_CreateGetIntegerCommand Unexecuted instantiation: mkv.cpp:var_CreateGetIntegerCommand(vlc_object_t*, char const*) Unexecuted instantiation: util.cpp:var_CreateGetIntegerCommand(vlc_object_t*, char const*) Unexecuted instantiation: virtual_segment.cpp:var_CreateGetIntegerCommand(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment.cpp:var_CreateGetIntegerCommand(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment_parse.cpp:var_CreateGetIntegerCommand(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment_seeker.cpp:var_CreateGetIntegerCommand(vlc_object_t*, char const*) Unexecuted instantiation: demux.cpp:var_CreateGetIntegerCommand(vlc_object_t*, char const*) Unexecuted instantiation: events.cpp:var_CreateGetIntegerCommand(vlc_object_t*, char const*) Unexecuted instantiation: Ebml_parser.cpp:var_CreateGetIntegerCommand(vlc_object_t*, char const*) Unexecuted instantiation: chapters.cpp:var_CreateGetIntegerCommand(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command.cpp:var_CreateGetIntegerCommand(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_dvd.cpp:var_CreateGetIntegerCommand(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_script.cpp:var_CreateGetIntegerCommand(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_script_common.cpp:var_CreateGetIntegerCommand(vlc_object_t*, char const*) Unexecuted instantiation: stream_io_callback.cpp:var_CreateGetIntegerCommand(vlc_object_t*, char const*) Unexecuted instantiation: vlc_colors.c:var_CreateGetIntegerCommand Unexecuted instantiation: adpcm.c:var_CreateGetIntegerCommand Unexecuted instantiation: aes3.c:var_CreateGetIntegerCommand Unexecuted instantiation: araw.c:var_CreateGetIntegerCommand Unexecuted instantiation: g711.c:var_CreateGetIntegerCommand Unexecuted instantiation: lpcm.c:var_CreateGetIntegerCommand Unexecuted instantiation: uleaddvaudio.c:var_CreateGetIntegerCommand Unexecuted instantiation: rawvideo.c:var_CreateGetIntegerCommand Unexecuted instantiation: cc.c:var_CreateGetIntegerCommand Unexecuted instantiation: cea708.c:var_CreateGetIntegerCommand Unexecuted instantiation: cvdsub.c:var_CreateGetIntegerCommand Unexecuted instantiation: dvbsub.c:var_CreateGetIntegerCommand Unexecuted instantiation: scte18.c:var_CreateGetIntegerCommand Unexecuted instantiation: atsc_a65.c:var_CreateGetIntegerCommand Unexecuted instantiation: scte27.c:var_CreateGetIntegerCommand Unexecuted instantiation: spudec.c:var_CreateGetIntegerCommand Unexecuted instantiation: parse.c:var_CreateGetIntegerCommand Unexecuted instantiation: stl.c:var_CreateGetIntegerCommand Unexecuted instantiation: subsdec.c:var_CreateGetIntegerCommand Unexecuted instantiation: subsusf.c:var_CreateGetIntegerCommand Unexecuted instantiation: svcdsub.c:var_CreateGetIntegerCommand Unexecuted instantiation: textst.c:var_CreateGetIntegerCommand Unexecuted instantiation: substx3g.c:var_CreateGetIntegerCommand Unexecuted instantiation: libvlc.c:var_CreateGetIntegerCommand Unexecuted instantiation: version.c:var_CreateGetIntegerCommand Unexecuted instantiation: chain.c:var_CreateGetIntegerCommand Unexecuted instantiation: help.c:var_CreateGetIntegerCommand Unexecuted instantiation: cmdline.c:var_CreateGetIntegerCommand Unexecuted instantiation: getopt.c:var_CreateGetIntegerCommand Unexecuted instantiation: libc.c:var_CreateGetIntegerCommand Unexecuted instantiation: media_source.c:var_CreateGetIntegerCommand Unexecuted instantiation: media_tree.c:var_CreateGetIntegerCommand Unexecuted instantiation: modules.c:var_CreateGetIntegerCommand Unexecuted instantiation: bank.c:var_CreateGetIntegerCommand Unexecuted instantiation: entry.c:var_CreateGetIntegerCommand Unexecuted instantiation: textdomain.c:var_CreateGetIntegerCommand Unexecuted instantiation: dialog.c:var_CreateGetIntegerCommand Unexecuted instantiation: interface.c:var_CreateGetIntegerCommand Unexecuted instantiation: content.c:var_CreateGetIntegerCommand Unexecuted instantiation: control.c:var_CreateGetIntegerCommand Unexecuted instantiation: item.c:var_CreateGetIntegerCommand Unexecuted instantiation: notify.c:var_CreateGetIntegerCommand Unexecuted instantiation: player.c:var_CreateGetIntegerCommand Unexecuted instantiation: playlist.c:var_CreateGetIntegerCommand Unexecuted instantiation: preparse.c:var_CreateGetIntegerCommand Unexecuted instantiation: randomizer.c:var_CreateGetIntegerCommand Unexecuted instantiation: preparser.c:var_CreateGetIntegerCommand Unexecuted instantiation: access.c:var_CreateGetIntegerCommand Unexecuted instantiation: decoder_device.c:var_CreateGetIntegerCommand Unexecuted instantiation: decoder_helpers.c:var_CreateGetIntegerCommand Unexecuted instantiation: demux.c:var_CreateGetIntegerCommand Unexecuted instantiation: input.c:var_CreateGetIntegerCommand Unexecuted instantiation: attachment.c:var_CreateGetIntegerCommand Unexecuted instantiation: replay_gain.c:var_CreateGetIntegerCommand Unexecuted instantiation: timer.c:var_CreateGetIntegerCommand Unexecuted instantiation: track.c:var_CreateGetIntegerCommand Unexecuted instantiation: title.c:var_CreateGetIntegerCommand Unexecuted instantiation: aout.c:var_CreateGetIntegerCommand Unexecuted instantiation: vout.c:var_CreateGetIntegerCommand Unexecuted instantiation: osd.c:var_CreateGetIntegerCommand Unexecuted instantiation: medialib.c:var_CreateGetIntegerCommand Unexecuted instantiation: resource.c:var_CreateGetIntegerCommand Unexecuted instantiation: services_discovery.c:var_CreateGetIntegerCommand Unexecuted instantiation: source.c:var_CreateGetIntegerCommand Unexecuted instantiation: stats.c:var_CreateGetIntegerCommand Unexecuted instantiation: stream.c:var_CreateGetIntegerCommand Unexecuted instantiation: stream_extractor.c:var_CreateGetIntegerCommand Unexecuted instantiation: stream_filter.c:var_CreateGetIntegerCommand Unexecuted instantiation: stream_memory.c:var_CreateGetIntegerCommand Unexecuted instantiation: subtitles.c:var_CreateGetIntegerCommand Unexecuted instantiation: dec.c:var_CreateGetIntegerCommand Unexecuted instantiation: filters.c:var_CreateGetIntegerCommand Unexecuted instantiation: meter.c:var_CreateGetIntegerCommand Unexecuted instantiation: output.c:var_CreateGetIntegerCommand Unexecuted instantiation: volume.c:var_CreateGetIntegerCommand Unexecuted instantiation: video_output.c:var_CreateGetIntegerCommand Unexecuted instantiation: video_text.c:var_CreateGetIntegerCommand Unexecuted instantiation: video_widgets.c:var_CreateGetIntegerCommand Unexecuted instantiation: vout_subpictures.c:var_CreateGetIntegerCommand Unexecuted instantiation: video_window.c:var_CreateGetIntegerCommand Unexecuted instantiation: window.c:var_CreateGetIntegerCommand Unexecuted instantiation: vout_intf.c:var_CreateGetIntegerCommand Unexecuted instantiation: vout_wrapper.c:var_CreateGetIntegerCommand Unexecuted instantiation: udp.c:var_CreateGetIntegerCommand Unexecuted instantiation: charset.c:var_CreateGetIntegerCommand Unexecuted instantiation: memstream.c:var_CreateGetIntegerCommand Unexecuted instantiation: strings.c:var_CreateGetIntegerCommand Unexecuted instantiation: unicode.c:var_CreateGetIntegerCommand Unexecuted instantiation: url.c:var_CreateGetIntegerCommand Unexecuted instantiation: filesystem.c:var_CreateGetIntegerCommand Unexecuted instantiation: actions.c:var_CreateGetIntegerCommand Unexecuted instantiation: ancillary.c:var_CreateGetIntegerCommand Unexecuted instantiation: executor.c:var_CreateGetIntegerCommand Unexecuted instantiation: md5.c:var_CreateGetIntegerCommand Unexecuted instantiation: probe.c:var_CreateGetIntegerCommand Unexecuted instantiation: mtime.c:var_CreateGetIntegerCommand Unexecuted instantiation: frame.c:var_CreateGetIntegerCommand Unexecuted instantiation: fifo.c:var_CreateGetIntegerCommand Unexecuted instantiation: fourcc.c:var_CreateGetIntegerCommand Unexecuted instantiation: es_format.c:var_CreateGetIntegerCommand Unexecuted instantiation: picture.c:var_CreateGetIntegerCommand Unexecuted instantiation: picture_fifo.c:var_CreateGetIntegerCommand Unexecuted instantiation: picture_pool.c:var_CreateGetIntegerCommand Unexecuted instantiation: interrupt.c:var_CreateGetIntegerCommand Unexecuted instantiation: keystore.c:var_CreateGetIntegerCommand Unexecuted instantiation: rcu.c:var_CreateGetIntegerCommand Unexecuted instantiation: renderer_discovery.c:var_CreateGetIntegerCommand Unexecuted instantiation: threads.c:var_CreateGetIntegerCommand Unexecuted instantiation: cpu.c:var_CreateGetIntegerCommand Unexecuted instantiation: epg.c:var_CreateGetIntegerCommand Unexecuted instantiation: exit.c:var_CreateGetIntegerCommand Unexecuted instantiation: image.c:var_CreateGetIntegerCommand Unexecuted instantiation: messages.c:var_CreateGetIntegerCommand Unexecuted instantiation: tracer.c:var_CreateGetIntegerCommand Unexecuted instantiation: objects.c:var_CreateGetIntegerCommand Unexecuted instantiation: objres.c:var_CreateGetIntegerCommand Unexecuted instantiation: queue.c:var_CreateGetIntegerCommand Unexecuted instantiation: variables.c:var_CreateGetIntegerCommand Unexecuted instantiation: xml.c:var_CreateGetIntegerCommand Unexecuted instantiation: filter.c:var_CreateGetIntegerCommand Unexecuted instantiation: filter_chain.c:var_CreateGetIntegerCommand Unexecuted instantiation: httpcookies.c:var_CreateGetIntegerCommand Unexecuted instantiation: text_style.c:var_CreateGetIntegerCommand Unexecuted instantiation: sort.c:var_CreateGetIntegerCommand Unexecuted instantiation: subpicture.c:var_CreateGetIntegerCommand Unexecuted instantiation: medialibrary.c:var_CreateGetIntegerCommand Unexecuted instantiation: viewpoint.c:var_CreateGetIntegerCommand Unexecuted instantiation: thread.c:var_CreateGetIntegerCommand Unexecuted instantiation: rand.c:var_CreateGetIntegerCommand Unexecuted instantiation: specific.c:var_CreateGetIntegerCommand Unexecuted instantiation: stream_output.c:var_CreateGetIntegerCommand Unexecuted instantiation: vlm.c:var_CreateGetIntegerCommand Unexecuted instantiation: vlm_event.c:var_CreateGetIntegerCommand Unexecuted instantiation: vlmshell.c:var_CreateGetIntegerCommand Unexecuted instantiation: libvlc-module.c:var_CreateGetIntegerCommand Unexecuted instantiation: dirs.c:var_CreateGetIntegerCommand Unexecuted instantiation: art.c:var_CreateGetIntegerCommand Unexecuted instantiation: fetcher.c:var_CreateGetIntegerCommand Unexecuted instantiation: clock.c:var_CreateGetIntegerCommand Unexecuted instantiation: es_out.c:var_CreateGetIntegerCommand Unexecuted instantiation: es_out_source.c:var_CreateGetIntegerCommand Unexecuted instantiation: es_out_timeshift.c:var_CreateGetIntegerCommand Unexecuted instantiation: display.c:var_CreateGetIntegerCommand Unexecuted instantiation: inhibit.c:var_CreateGetIntegerCommand Unexecuted instantiation: interlacing.c:var_CreateGetIntegerCommand Unexecuted instantiation: snapshot.c:var_CreateGetIntegerCommand Unexecuted instantiation: getaddrinfo.c:var_CreateGetIntegerCommand Unexecuted instantiation: io.c:var_CreateGetIntegerCommand Unexecuted instantiation: iso_lang.c:var_CreateGetIntegerCommand Unexecuted instantiation: chroma_probe.c:var_CreateGetIntegerCommand Unexecuted instantiation: clock_internal.c:var_CreateGetIntegerCommand Unexecuted instantiation: input_clock.c:var_CreateGetIntegerCommand |
635 | | |
636 | | /** |
637 | | * Create a boolean command variable with inherit and get its value. |
638 | | * |
639 | | * \param p_obj The object that holds the variable |
640 | | * \param psz_name The name of the variable |
641 | | */ |
642 | | VLC_USED |
643 | | static inline bool var_CreateGetBoolCommand( vlc_object_t *p_obj, const char *psz_name ) |
644 | 0 | { |
645 | 0 | var_Create( p_obj, psz_name, VLC_VAR_BOOL | VLC_VAR_DOINHERIT |
646 | 0 | | VLC_VAR_ISCOMMAND ); |
647 | 0 | return var_GetBool( p_obj, psz_name ); |
648 | 0 | } Unexecuted instantiation: demux-run.c:var_CreateGetBoolCommand Unexecuted instantiation: common.c:var_CreateGetBoolCommand Unexecuted instantiation: var.c:var_CreateGetBoolCommand Unexecuted instantiation: decoder.c:var_CreateGetBoolCommand Unexecuted instantiation: core.c:var_CreateGetBoolCommand Unexecuted instantiation: error.c:var_CreateGetBoolCommand Unexecuted instantiation: console.c:var_CreateGetBoolCommand Unexecuted instantiation: aiff.c:var_CreateGetBoolCommand Unexecuted instantiation: asf.c:var_CreateGetBoolCommand Unexecuted instantiation: libasf.c:var_CreateGetBoolCommand Unexecuted instantiation: asfpacket.c:var_CreateGetBoolCommand Unexecuted instantiation: au.c:var_CreateGetBoolCommand Unexecuted instantiation: avi.c:var_CreateGetBoolCommand Unexecuted instantiation: libavi.c:var_CreateGetBoolCommand Unexecuted instantiation: caf.c:var_CreateGetBoolCommand Unexecuted instantiation: cdg.c:var_CreateGetBoolCommand Unexecuted instantiation: es.c:var_CreateGetBoolCommand Unexecuted instantiation: dts_header.c:var_CreateGetBoolCommand Unexecuted instantiation: flac.c:var_CreateGetBoolCommand Unexecuted instantiation: xiph_metadata.c:var_CreateGetBoolCommand Unexecuted instantiation: h26x.c:var_CreateGetBoolCommand Unexecuted instantiation: mjpeg.c:var_CreateGetBoolCommand Unexecuted instantiation: mp4.c:var_CreateGetBoolCommand Unexecuted instantiation: fragments.c:var_CreateGetBoolCommand Unexecuted instantiation: attachments.c:var_CreateGetBoolCommand Unexecuted instantiation: heif.c:var_CreateGetBoolCommand Unexecuted instantiation: essetup.c:var_CreateGetBoolCommand Unexecuted instantiation: meta.c:var_CreateGetBoolCommand Unexecuted instantiation: libmp4.c:var_CreateGetBoolCommand Unexecuted instantiation: nsv.c:var_CreateGetBoolCommand Unexecuted instantiation: ps.c:var_CreateGetBoolCommand Unexecuted instantiation: pva.c:var_CreateGetBoolCommand Unexecuted instantiation: sap.c:var_CreateGetBoolCommand Unexecuted instantiation: sdp.c:var_CreateGetBoolCommand Unexecuted instantiation: smf.c:var_CreateGetBoolCommand Unexecuted instantiation: subtitle.c:var_CreateGetBoolCommand Unexecuted instantiation: tta.c:var_CreateGetBoolCommand Unexecuted instantiation: ttml.c:var_CreateGetBoolCommand Unexecuted instantiation: encttml.c:var_CreateGetBoolCommand Unexecuted instantiation: substtml.c:var_CreateGetBoolCommand Unexecuted instantiation: genttml.c:var_CreateGetBoolCommand Unexecuted instantiation: ty.c:var_CreateGetBoolCommand Unexecuted instantiation: voc.c:var_CreateGetBoolCommand Unexecuted instantiation: wav.c:var_CreateGetBoolCommand Unexecuted instantiation: webvtt.c:var_CreateGetBoolCommand Unexecuted instantiation: encvtt.c:var_CreateGetBoolCommand Unexecuted instantiation: subsvtt.c:var_CreateGetBoolCommand Unexecuted instantiation: css_parser.c:var_CreateGetBoolCommand Unexecuted instantiation: css_style.c:var_CreateGetBoolCommand Unexecuted instantiation: CSSGrammar.c:var_CreateGetBoolCommand Unexecuted instantiation: libwebvtt_plugin_la-CSSLexer.c:var_CreateGetBoolCommand Unexecuted instantiation: xa.c:var_CreateGetBoolCommand Unexecuted instantiation: a52.c:var_CreateGetBoolCommand Unexecuted instantiation: copy.c:var_CreateGetBoolCommand Unexecuted instantiation: dts.c:var_CreateGetBoolCommand Unexecuted instantiation: h264.c:var_CreateGetBoolCommand Unexecuted instantiation: hxxx_sei.c:var_CreateGetBoolCommand Unexecuted instantiation: hxxx_common.c:var_CreateGetBoolCommand Unexecuted instantiation: h264_nal.c:var_CreateGetBoolCommand Unexecuted instantiation: h264_slice.c:var_CreateGetBoolCommand Unexecuted instantiation: hevc.c:var_CreateGetBoolCommand Unexecuted instantiation: hevc_nal.c:var_CreateGetBoolCommand Unexecuted instantiation: mlp.c:var_CreateGetBoolCommand Unexecuted instantiation: mpeg4audio.c:var_CreateGetBoolCommand Unexecuted instantiation: mpeg4video.c:var_CreateGetBoolCommand Unexecuted instantiation: mpegaudio.c:var_CreateGetBoolCommand Unexecuted instantiation: mpegvideo.c:var_CreateGetBoolCommand Unexecuted instantiation: vc1.c:var_CreateGetBoolCommand Unexecuted instantiation: rawaud.c:var_CreateGetBoolCommand Unexecuted instantiation: rawvid.c:var_CreateGetBoolCommand Unexecuted instantiation: fs.c:var_CreateGetBoolCommand Unexecuted instantiation: file.c:var_CreateGetBoolCommand Unexecuted instantiation: directory.c:var_CreateGetBoolCommand Unexecuted instantiation: libxml.c:var_CreateGetBoolCommand Unexecuted instantiation: ogg.c:var_CreateGetBoolCommand Unexecuted instantiation: oggseek.c:var_CreateGetBoolCommand Unexecuted instantiation: ogg_granule.c:var_CreateGetBoolCommand Unexecuted instantiation: mkv.cpp:var_CreateGetBoolCommand(vlc_object_t*, char const*) Unexecuted instantiation: util.cpp:var_CreateGetBoolCommand(vlc_object_t*, char const*) Unexecuted instantiation: virtual_segment.cpp:var_CreateGetBoolCommand(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment.cpp:var_CreateGetBoolCommand(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment_parse.cpp:var_CreateGetBoolCommand(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment_seeker.cpp:var_CreateGetBoolCommand(vlc_object_t*, char const*) Unexecuted instantiation: demux.cpp:var_CreateGetBoolCommand(vlc_object_t*, char const*) Unexecuted instantiation: events.cpp:var_CreateGetBoolCommand(vlc_object_t*, char const*) Unexecuted instantiation: Ebml_parser.cpp:var_CreateGetBoolCommand(vlc_object_t*, char const*) Unexecuted instantiation: chapters.cpp:var_CreateGetBoolCommand(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command.cpp:var_CreateGetBoolCommand(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_dvd.cpp:var_CreateGetBoolCommand(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_script.cpp:var_CreateGetBoolCommand(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_script_common.cpp:var_CreateGetBoolCommand(vlc_object_t*, char const*) Unexecuted instantiation: stream_io_callback.cpp:var_CreateGetBoolCommand(vlc_object_t*, char const*) Unexecuted instantiation: vlc_colors.c:var_CreateGetBoolCommand Unexecuted instantiation: adpcm.c:var_CreateGetBoolCommand Unexecuted instantiation: aes3.c:var_CreateGetBoolCommand Unexecuted instantiation: araw.c:var_CreateGetBoolCommand Unexecuted instantiation: g711.c:var_CreateGetBoolCommand Unexecuted instantiation: lpcm.c:var_CreateGetBoolCommand Unexecuted instantiation: uleaddvaudio.c:var_CreateGetBoolCommand Unexecuted instantiation: rawvideo.c:var_CreateGetBoolCommand Unexecuted instantiation: cc.c:var_CreateGetBoolCommand Unexecuted instantiation: cea708.c:var_CreateGetBoolCommand Unexecuted instantiation: cvdsub.c:var_CreateGetBoolCommand Unexecuted instantiation: dvbsub.c:var_CreateGetBoolCommand Unexecuted instantiation: scte18.c:var_CreateGetBoolCommand Unexecuted instantiation: atsc_a65.c:var_CreateGetBoolCommand Unexecuted instantiation: scte27.c:var_CreateGetBoolCommand Unexecuted instantiation: spudec.c:var_CreateGetBoolCommand Unexecuted instantiation: parse.c:var_CreateGetBoolCommand Unexecuted instantiation: stl.c:var_CreateGetBoolCommand Unexecuted instantiation: subsdec.c:var_CreateGetBoolCommand Unexecuted instantiation: subsusf.c:var_CreateGetBoolCommand Unexecuted instantiation: svcdsub.c:var_CreateGetBoolCommand Unexecuted instantiation: textst.c:var_CreateGetBoolCommand Unexecuted instantiation: substx3g.c:var_CreateGetBoolCommand Unexecuted instantiation: libvlc.c:var_CreateGetBoolCommand Unexecuted instantiation: version.c:var_CreateGetBoolCommand Unexecuted instantiation: chain.c:var_CreateGetBoolCommand Unexecuted instantiation: help.c:var_CreateGetBoolCommand Unexecuted instantiation: cmdline.c:var_CreateGetBoolCommand Unexecuted instantiation: getopt.c:var_CreateGetBoolCommand Unexecuted instantiation: libc.c:var_CreateGetBoolCommand Unexecuted instantiation: media_source.c:var_CreateGetBoolCommand Unexecuted instantiation: media_tree.c:var_CreateGetBoolCommand Unexecuted instantiation: modules.c:var_CreateGetBoolCommand Unexecuted instantiation: bank.c:var_CreateGetBoolCommand Unexecuted instantiation: entry.c:var_CreateGetBoolCommand Unexecuted instantiation: textdomain.c:var_CreateGetBoolCommand Unexecuted instantiation: dialog.c:var_CreateGetBoolCommand Unexecuted instantiation: interface.c:var_CreateGetBoolCommand Unexecuted instantiation: content.c:var_CreateGetBoolCommand Unexecuted instantiation: control.c:var_CreateGetBoolCommand Unexecuted instantiation: item.c:var_CreateGetBoolCommand Unexecuted instantiation: notify.c:var_CreateGetBoolCommand Unexecuted instantiation: player.c:var_CreateGetBoolCommand Unexecuted instantiation: playlist.c:var_CreateGetBoolCommand Unexecuted instantiation: preparse.c:var_CreateGetBoolCommand Unexecuted instantiation: randomizer.c:var_CreateGetBoolCommand Unexecuted instantiation: preparser.c:var_CreateGetBoolCommand Unexecuted instantiation: access.c:var_CreateGetBoolCommand Unexecuted instantiation: decoder_device.c:var_CreateGetBoolCommand Unexecuted instantiation: decoder_helpers.c:var_CreateGetBoolCommand Unexecuted instantiation: demux.c:var_CreateGetBoolCommand Unexecuted instantiation: input.c:var_CreateGetBoolCommand Unexecuted instantiation: attachment.c:var_CreateGetBoolCommand Unexecuted instantiation: replay_gain.c:var_CreateGetBoolCommand Unexecuted instantiation: timer.c:var_CreateGetBoolCommand Unexecuted instantiation: track.c:var_CreateGetBoolCommand Unexecuted instantiation: title.c:var_CreateGetBoolCommand Unexecuted instantiation: aout.c:var_CreateGetBoolCommand Unexecuted instantiation: vout.c:var_CreateGetBoolCommand Unexecuted instantiation: osd.c:var_CreateGetBoolCommand Unexecuted instantiation: medialib.c:var_CreateGetBoolCommand Unexecuted instantiation: resource.c:var_CreateGetBoolCommand Unexecuted instantiation: services_discovery.c:var_CreateGetBoolCommand Unexecuted instantiation: source.c:var_CreateGetBoolCommand Unexecuted instantiation: stats.c:var_CreateGetBoolCommand Unexecuted instantiation: stream.c:var_CreateGetBoolCommand Unexecuted instantiation: stream_extractor.c:var_CreateGetBoolCommand Unexecuted instantiation: stream_filter.c:var_CreateGetBoolCommand Unexecuted instantiation: stream_memory.c:var_CreateGetBoolCommand Unexecuted instantiation: subtitles.c:var_CreateGetBoolCommand Unexecuted instantiation: dec.c:var_CreateGetBoolCommand Unexecuted instantiation: filters.c:var_CreateGetBoolCommand Unexecuted instantiation: meter.c:var_CreateGetBoolCommand Unexecuted instantiation: output.c:var_CreateGetBoolCommand Unexecuted instantiation: volume.c:var_CreateGetBoolCommand Unexecuted instantiation: video_output.c:var_CreateGetBoolCommand Unexecuted instantiation: video_text.c:var_CreateGetBoolCommand Unexecuted instantiation: video_widgets.c:var_CreateGetBoolCommand Unexecuted instantiation: vout_subpictures.c:var_CreateGetBoolCommand Unexecuted instantiation: video_window.c:var_CreateGetBoolCommand Unexecuted instantiation: window.c:var_CreateGetBoolCommand Unexecuted instantiation: vout_intf.c:var_CreateGetBoolCommand Unexecuted instantiation: vout_wrapper.c:var_CreateGetBoolCommand Unexecuted instantiation: udp.c:var_CreateGetBoolCommand Unexecuted instantiation: charset.c:var_CreateGetBoolCommand Unexecuted instantiation: memstream.c:var_CreateGetBoolCommand Unexecuted instantiation: strings.c:var_CreateGetBoolCommand Unexecuted instantiation: unicode.c:var_CreateGetBoolCommand Unexecuted instantiation: url.c:var_CreateGetBoolCommand Unexecuted instantiation: filesystem.c:var_CreateGetBoolCommand Unexecuted instantiation: actions.c:var_CreateGetBoolCommand Unexecuted instantiation: ancillary.c:var_CreateGetBoolCommand Unexecuted instantiation: executor.c:var_CreateGetBoolCommand Unexecuted instantiation: md5.c:var_CreateGetBoolCommand Unexecuted instantiation: probe.c:var_CreateGetBoolCommand Unexecuted instantiation: mtime.c:var_CreateGetBoolCommand Unexecuted instantiation: frame.c:var_CreateGetBoolCommand Unexecuted instantiation: fifo.c:var_CreateGetBoolCommand Unexecuted instantiation: fourcc.c:var_CreateGetBoolCommand Unexecuted instantiation: es_format.c:var_CreateGetBoolCommand Unexecuted instantiation: picture.c:var_CreateGetBoolCommand Unexecuted instantiation: picture_fifo.c:var_CreateGetBoolCommand Unexecuted instantiation: picture_pool.c:var_CreateGetBoolCommand Unexecuted instantiation: interrupt.c:var_CreateGetBoolCommand Unexecuted instantiation: keystore.c:var_CreateGetBoolCommand Unexecuted instantiation: rcu.c:var_CreateGetBoolCommand Unexecuted instantiation: renderer_discovery.c:var_CreateGetBoolCommand Unexecuted instantiation: threads.c:var_CreateGetBoolCommand Unexecuted instantiation: cpu.c:var_CreateGetBoolCommand Unexecuted instantiation: epg.c:var_CreateGetBoolCommand Unexecuted instantiation: exit.c:var_CreateGetBoolCommand Unexecuted instantiation: image.c:var_CreateGetBoolCommand Unexecuted instantiation: messages.c:var_CreateGetBoolCommand Unexecuted instantiation: tracer.c:var_CreateGetBoolCommand Unexecuted instantiation: objects.c:var_CreateGetBoolCommand Unexecuted instantiation: objres.c:var_CreateGetBoolCommand Unexecuted instantiation: queue.c:var_CreateGetBoolCommand Unexecuted instantiation: variables.c:var_CreateGetBoolCommand Unexecuted instantiation: xml.c:var_CreateGetBoolCommand Unexecuted instantiation: filter.c:var_CreateGetBoolCommand Unexecuted instantiation: filter_chain.c:var_CreateGetBoolCommand Unexecuted instantiation: httpcookies.c:var_CreateGetBoolCommand Unexecuted instantiation: text_style.c:var_CreateGetBoolCommand Unexecuted instantiation: sort.c:var_CreateGetBoolCommand Unexecuted instantiation: subpicture.c:var_CreateGetBoolCommand Unexecuted instantiation: medialibrary.c:var_CreateGetBoolCommand Unexecuted instantiation: viewpoint.c:var_CreateGetBoolCommand Unexecuted instantiation: thread.c:var_CreateGetBoolCommand Unexecuted instantiation: rand.c:var_CreateGetBoolCommand Unexecuted instantiation: specific.c:var_CreateGetBoolCommand Unexecuted instantiation: stream_output.c:var_CreateGetBoolCommand Unexecuted instantiation: vlm.c:var_CreateGetBoolCommand Unexecuted instantiation: vlm_event.c:var_CreateGetBoolCommand Unexecuted instantiation: vlmshell.c:var_CreateGetBoolCommand Unexecuted instantiation: libvlc-module.c:var_CreateGetBoolCommand Unexecuted instantiation: dirs.c:var_CreateGetBoolCommand Unexecuted instantiation: art.c:var_CreateGetBoolCommand Unexecuted instantiation: fetcher.c:var_CreateGetBoolCommand Unexecuted instantiation: clock.c:var_CreateGetBoolCommand Unexecuted instantiation: es_out.c:var_CreateGetBoolCommand Unexecuted instantiation: es_out_source.c:var_CreateGetBoolCommand Unexecuted instantiation: es_out_timeshift.c:var_CreateGetBoolCommand Unexecuted instantiation: display.c:var_CreateGetBoolCommand Unexecuted instantiation: inhibit.c:var_CreateGetBoolCommand Unexecuted instantiation: interlacing.c:var_CreateGetBoolCommand Unexecuted instantiation: snapshot.c:var_CreateGetBoolCommand Unexecuted instantiation: getaddrinfo.c:var_CreateGetBoolCommand Unexecuted instantiation: io.c:var_CreateGetBoolCommand Unexecuted instantiation: iso_lang.c:var_CreateGetBoolCommand Unexecuted instantiation: chroma_probe.c:var_CreateGetBoolCommand Unexecuted instantiation: clock_internal.c:var_CreateGetBoolCommand Unexecuted instantiation: input_clock.c:var_CreateGetBoolCommand |
649 | | |
650 | | /** |
651 | | * Create a float command variable with inherit and get its value. |
652 | | * |
653 | | * \param p_obj The object that holds the variable |
654 | | * \param psz_name The name of the variable |
655 | | */ |
656 | | VLC_USED |
657 | | static inline float var_CreateGetFloatCommand( vlc_object_t *p_obj, const char *psz_name ) |
658 | 0 | { |
659 | 0 | var_Create( p_obj, psz_name, VLC_VAR_FLOAT | VLC_VAR_DOINHERIT |
660 | 0 | | VLC_VAR_ISCOMMAND ); |
661 | 0 | return var_GetFloat( p_obj, psz_name ); |
662 | 0 | } Unexecuted instantiation: demux-run.c:var_CreateGetFloatCommand Unexecuted instantiation: common.c:var_CreateGetFloatCommand Unexecuted instantiation: var.c:var_CreateGetFloatCommand Unexecuted instantiation: decoder.c:var_CreateGetFloatCommand Unexecuted instantiation: core.c:var_CreateGetFloatCommand Unexecuted instantiation: error.c:var_CreateGetFloatCommand Unexecuted instantiation: console.c:var_CreateGetFloatCommand Unexecuted instantiation: aiff.c:var_CreateGetFloatCommand Unexecuted instantiation: asf.c:var_CreateGetFloatCommand Unexecuted instantiation: libasf.c:var_CreateGetFloatCommand Unexecuted instantiation: asfpacket.c:var_CreateGetFloatCommand Unexecuted instantiation: au.c:var_CreateGetFloatCommand Unexecuted instantiation: avi.c:var_CreateGetFloatCommand Unexecuted instantiation: libavi.c:var_CreateGetFloatCommand Unexecuted instantiation: caf.c:var_CreateGetFloatCommand Unexecuted instantiation: cdg.c:var_CreateGetFloatCommand Unexecuted instantiation: es.c:var_CreateGetFloatCommand Unexecuted instantiation: dts_header.c:var_CreateGetFloatCommand Unexecuted instantiation: flac.c:var_CreateGetFloatCommand Unexecuted instantiation: xiph_metadata.c:var_CreateGetFloatCommand Unexecuted instantiation: h26x.c:var_CreateGetFloatCommand Unexecuted instantiation: mjpeg.c:var_CreateGetFloatCommand Unexecuted instantiation: mp4.c:var_CreateGetFloatCommand Unexecuted instantiation: fragments.c:var_CreateGetFloatCommand Unexecuted instantiation: attachments.c:var_CreateGetFloatCommand Unexecuted instantiation: heif.c:var_CreateGetFloatCommand Unexecuted instantiation: essetup.c:var_CreateGetFloatCommand Unexecuted instantiation: meta.c:var_CreateGetFloatCommand Unexecuted instantiation: libmp4.c:var_CreateGetFloatCommand Unexecuted instantiation: nsv.c:var_CreateGetFloatCommand Unexecuted instantiation: ps.c:var_CreateGetFloatCommand Unexecuted instantiation: pva.c:var_CreateGetFloatCommand Unexecuted instantiation: sap.c:var_CreateGetFloatCommand Unexecuted instantiation: sdp.c:var_CreateGetFloatCommand Unexecuted instantiation: smf.c:var_CreateGetFloatCommand Unexecuted instantiation: subtitle.c:var_CreateGetFloatCommand Unexecuted instantiation: tta.c:var_CreateGetFloatCommand Unexecuted instantiation: ttml.c:var_CreateGetFloatCommand Unexecuted instantiation: encttml.c:var_CreateGetFloatCommand Unexecuted instantiation: substtml.c:var_CreateGetFloatCommand Unexecuted instantiation: genttml.c:var_CreateGetFloatCommand Unexecuted instantiation: ty.c:var_CreateGetFloatCommand Unexecuted instantiation: voc.c:var_CreateGetFloatCommand Unexecuted instantiation: wav.c:var_CreateGetFloatCommand Unexecuted instantiation: webvtt.c:var_CreateGetFloatCommand Unexecuted instantiation: encvtt.c:var_CreateGetFloatCommand Unexecuted instantiation: subsvtt.c:var_CreateGetFloatCommand Unexecuted instantiation: css_parser.c:var_CreateGetFloatCommand Unexecuted instantiation: css_style.c:var_CreateGetFloatCommand Unexecuted instantiation: CSSGrammar.c:var_CreateGetFloatCommand Unexecuted instantiation: libwebvtt_plugin_la-CSSLexer.c:var_CreateGetFloatCommand Unexecuted instantiation: xa.c:var_CreateGetFloatCommand Unexecuted instantiation: a52.c:var_CreateGetFloatCommand Unexecuted instantiation: copy.c:var_CreateGetFloatCommand Unexecuted instantiation: dts.c:var_CreateGetFloatCommand Unexecuted instantiation: h264.c:var_CreateGetFloatCommand Unexecuted instantiation: hxxx_sei.c:var_CreateGetFloatCommand Unexecuted instantiation: hxxx_common.c:var_CreateGetFloatCommand Unexecuted instantiation: h264_nal.c:var_CreateGetFloatCommand Unexecuted instantiation: h264_slice.c:var_CreateGetFloatCommand Unexecuted instantiation: hevc.c:var_CreateGetFloatCommand Unexecuted instantiation: hevc_nal.c:var_CreateGetFloatCommand Unexecuted instantiation: mlp.c:var_CreateGetFloatCommand Unexecuted instantiation: mpeg4audio.c:var_CreateGetFloatCommand Unexecuted instantiation: mpeg4video.c:var_CreateGetFloatCommand Unexecuted instantiation: mpegaudio.c:var_CreateGetFloatCommand Unexecuted instantiation: mpegvideo.c:var_CreateGetFloatCommand Unexecuted instantiation: vc1.c:var_CreateGetFloatCommand Unexecuted instantiation: rawaud.c:var_CreateGetFloatCommand Unexecuted instantiation: rawvid.c:var_CreateGetFloatCommand Unexecuted instantiation: fs.c:var_CreateGetFloatCommand Unexecuted instantiation: file.c:var_CreateGetFloatCommand Unexecuted instantiation: directory.c:var_CreateGetFloatCommand Unexecuted instantiation: libxml.c:var_CreateGetFloatCommand Unexecuted instantiation: ogg.c:var_CreateGetFloatCommand Unexecuted instantiation: oggseek.c:var_CreateGetFloatCommand Unexecuted instantiation: ogg_granule.c:var_CreateGetFloatCommand Unexecuted instantiation: mkv.cpp:var_CreateGetFloatCommand(vlc_object_t*, char const*) Unexecuted instantiation: util.cpp:var_CreateGetFloatCommand(vlc_object_t*, char const*) Unexecuted instantiation: virtual_segment.cpp:var_CreateGetFloatCommand(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment.cpp:var_CreateGetFloatCommand(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment_parse.cpp:var_CreateGetFloatCommand(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment_seeker.cpp:var_CreateGetFloatCommand(vlc_object_t*, char const*) Unexecuted instantiation: demux.cpp:var_CreateGetFloatCommand(vlc_object_t*, char const*) Unexecuted instantiation: events.cpp:var_CreateGetFloatCommand(vlc_object_t*, char const*) Unexecuted instantiation: Ebml_parser.cpp:var_CreateGetFloatCommand(vlc_object_t*, char const*) Unexecuted instantiation: chapters.cpp:var_CreateGetFloatCommand(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command.cpp:var_CreateGetFloatCommand(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_dvd.cpp:var_CreateGetFloatCommand(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_script.cpp:var_CreateGetFloatCommand(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_script_common.cpp:var_CreateGetFloatCommand(vlc_object_t*, char const*) Unexecuted instantiation: stream_io_callback.cpp:var_CreateGetFloatCommand(vlc_object_t*, char const*) Unexecuted instantiation: vlc_colors.c:var_CreateGetFloatCommand Unexecuted instantiation: adpcm.c:var_CreateGetFloatCommand Unexecuted instantiation: aes3.c:var_CreateGetFloatCommand Unexecuted instantiation: araw.c:var_CreateGetFloatCommand Unexecuted instantiation: g711.c:var_CreateGetFloatCommand Unexecuted instantiation: lpcm.c:var_CreateGetFloatCommand Unexecuted instantiation: uleaddvaudio.c:var_CreateGetFloatCommand Unexecuted instantiation: rawvideo.c:var_CreateGetFloatCommand Unexecuted instantiation: cc.c:var_CreateGetFloatCommand Unexecuted instantiation: cea708.c:var_CreateGetFloatCommand Unexecuted instantiation: cvdsub.c:var_CreateGetFloatCommand Unexecuted instantiation: dvbsub.c:var_CreateGetFloatCommand Unexecuted instantiation: scte18.c:var_CreateGetFloatCommand Unexecuted instantiation: atsc_a65.c:var_CreateGetFloatCommand Unexecuted instantiation: scte27.c:var_CreateGetFloatCommand Unexecuted instantiation: spudec.c:var_CreateGetFloatCommand Unexecuted instantiation: parse.c:var_CreateGetFloatCommand Unexecuted instantiation: stl.c:var_CreateGetFloatCommand Unexecuted instantiation: subsdec.c:var_CreateGetFloatCommand Unexecuted instantiation: subsusf.c:var_CreateGetFloatCommand Unexecuted instantiation: svcdsub.c:var_CreateGetFloatCommand Unexecuted instantiation: textst.c:var_CreateGetFloatCommand Unexecuted instantiation: substx3g.c:var_CreateGetFloatCommand Unexecuted instantiation: libvlc.c:var_CreateGetFloatCommand Unexecuted instantiation: version.c:var_CreateGetFloatCommand Unexecuted instantiation: chain.c:var_CreateGetFloatCommand Unexecuted instantiation: help.c:var_CreateGetFloatCommand Unexecuted instantiation: cmdline.c:var_CreateGetFloatCommand Unexecuted instantiation: getopt.c:var_CreateGetFloatCommand Unexecuted instantiation: libc.c:var_CreateGetFloatCommand Unexecuted instantiation: media_source.c:var_CreateGetFloatCommand Unexecuted instantiation: media_tree.c:var_CreateGetFloatCommand Unexecuted instantiation: modules.c:var_CreateGetFloatCommand Unexecuted instantiation: bank.c:var_CreateGetFloatCommand Unexecuted instantiation: entry.c:var_CreateGetFloatCommand Unexecuted instantiation: textdomain.c:var_CreateGetFloatCommand Unexecuted instantiation: dialog.c:var_CreateGetFloatCommand Unexecuted instantiation: interface.c:var_CreateGetFloatCommand Unexecuted instantiation: content.c:var_CreateGetFloatCommand Unexecuted instantiation: control.c:var_CreateGetFloatCommand Unexecuted instantiation: item.c:var_CreateGetFloatCommand Unexecuted instantiation: notify.c:var_CreateGetFloatCommand Unexecuted instantiation: player.c:var_CreateGetFloatCommand Unexecuted instantiation: playlist.c:var_CreateGetFloatCommand Unexecuted instantiation: preparse.c:var_CreateGetFloatCommand Unexecuted instantiation: randomizer.c:var_CreateGetFloatCommand Unexecuted instantiation: preparser.c:var_CreateGetFloatCommand Unexecuted instantiation: access.c:var_CreateGetFloatCommand Unexecuted instantiation: decoder_device.c:var_CreateGetFloatCommand Unexecuted instantiation: decoder_helpers.c:var_CreateGetFloatCommand Unexecuted instantiation: demux.c:var_CreateGetFloatCommand Unexecuted instantiation: input.c:var_CreateGetFloatCommand Unexecuted instantiation: attachment.c:var_CreateGetFloatCommand Unexecuted instantiation: replay_gain.c:var_CreateGetFloatCommand Unexecuted instantiation: timer.c:var_CreateGetFloatCommand Unexecuted instantiation: track.c:var_CreateGetFloatCommand Unexecuted instantiation: title.c:var_CreateGetFloatCommand Unexecuted instantiation: aout.c:var_CreateGetFloatCommand Unexecuted instantiation: vout.c:var_CreateGetFloatCommand Unexecuted instantiation: osd.c:var_CreateGetFloatCommand Unexecuted instantiation: medialib.c:var_CreateGetFloatCommand Unexecuted instantiation: resource.c:var_CreateGetFloatCommand Unexecuted instantiation: services_discovery.c:var_CreateGetFloatCommand Unexecuted instantiation: source.c:var_CreateGetFloatCommand Unexecuted instantiation: stats.c:var_CreateGetFloatCommand Unexecuted instantiation: stream.c:var_CreateGetFloatCommand Unexecuted instantiation: stream_extractor.c:var_CreateGetFloatCommand Unexecuted instantiation: stream_filter.c:var_CreateGetFloatCommand Unexecuted instantiation: stream_memory.c:var_CreateGetFloatCommand Unexecuted instantiation: subtitles.c:var_CreateGetFloatCommand Unexecuted instantiation: dec.c:var_CreateGetFloatCommand Unexecuted instantiation: filters.c:var_CreateGetFloatCommand Unexecuted instantiation: meter.c:var_CreateGetFloatCommand Unexecuted instantiation: output.c:var_CreateGetFloatCommand Unexecuted instantiation: volume.c:var_CreateGetFloatCommand Unexecuted instantiation: video_output.c:var_CreateGetFloatCommand Unexecuted instantiation: video_text.c:var_CreateGetFloatCommand Unexecuted instantiation: video_widgets.c:var_CreateGetFloatCommand Unexecuted instantiation: vout_subpictures.c:var_CreateGetFloatCommand Unexecuted instantiation: video_window.c:var_CreateGetFloatCommand Unexecuted instantiation: window.c:var_CreateGetFloatCommand Unexecuted instantiation: vout_intf.c:var_CreateGetFloatCommand Unexecuted instantiation: vout_wrapper.c:var_CreateGetFloatCommand Unexecuted instantiation: udp.c:var_CreateGetFloatCommand Unexecuted instantiation: charset.c:var_CreateGetFloatCommand Unexecuted instantiation: memstream.c:var_CreateGetFloatCommand Unexecuted instantiation: strings.c:var_CreateGetFloatCommand Unexecuted instantiation: unicode.c:var_CreateGetFloatCommand Unexecuted instantiation: url.c:var_CreateGetFloatCommand Unexecuted instantiation: filesystem.c:var_CreateGetFloatCommand Unexecuted instantiation: actions.c:var_CreateGetFloatCommand Unexecuted instantiation: ancillary.c:var_CreateGetFloatCommand Unexecuted instantiation: executor.c:var_CreateGetFloatCommand Unexecuted instantiation: md5.c:var_CreateGetFloatCommand Unexecuted instantiation: probe.c:var_CreateGetFloatCommand Unexecuted instantiation: mtime.c:var_CreateGetFloatCommand Unexecuted instantiation: frame.c:var_CreateGetFloatCommand Unexecuted instantiation: fifo.c:var_CreateGetFloatCommand Unexecuted instantiation: fourcc.c:var_CreateGetFloatCommand Unexecuted instantiation: es_format.c:var_CreateGetFloatCommand Unexecuted instantiation: picture.c:var_CreateGetFloatCommand Unexecuted instantiation: picture_fifo.c:var_CreateGetFloatCommand Unexecuted instantiation: picture_pool.c:var_CreateGetFloatCommand Unexecuted instantiation: interrupt.c:var_CreateGetFloatCommand Unexecuted instantiation: keystore.c:var_CreateGetFloatCommand Unexecuted instantiation: rcu.c:var_CreateGetFloatCommand Unexecuted instantiation: renderer_discovery.c:var_CreateGetFloatCommand Unexecuted instantiation: threads.c:var_CreateGetFloatCommand Unexecuted instantiation: cpu.c:var_CreateGetFloatCommand Unexecuted instantiation: epg.c:var_CreateGetFloatCommand Unexecuted instantiation: exit.c:var_CreateGetFloatCommand Unexecuted instantiation: image.c:var_CreateGetFloatCommand Unexecuted instantiation: messages.c:var_CreateGetFloatCommand Unexecuted instantiation: tracer.c:var_CreateGetFloatCommand Unexecuted instantiation: objects.c:var_CreateGetFloatCommand Unexecuted instantiation: objres.c:var_CreateGetFloatCommand Unexecuted instantiation: queue.c:var_CreateGetFloatCommand Unexecuted instantiation: variables.c:var_CreateGetFloatCommand Unexecuted instantiation: xml.c:var_CreateGetFloatCommand Unexecuted instantiation: filter.c:var_CreateGetFloatCommand Unexecuted instantiation: filter_chain.c:var_CreateGetFloatCommand Unexecuted instantiation: httpcookies.c:var_CreateGetFloatCommand Unexecuted instantiation: text_style.c:var_CreateGetFloatCommand Unexecuted instantiation: sort.c:var_CreateGetFloatCommand Unexecuted instantiation: subpicture.c:var_CreateGetFloatCommand Unexecuted instantiation: medialibrary.c:var_CreateGetFloatCommand Unexecuted instantiation: viewpoint.c:var_CreateGetFloatCommand Unexecuted instantiation: thread.c:var_CreateGetFloatCommand Unexecuted instantiation: rand.c:var_CreateGetFloatCommand Unexecuted instantiation: specific.c:var_CreateGetFloatCommand Unexecuted instantiation: stream_output.c:var_CreateGetFloatCommand Unexecuted instantiation: vlm.c:var_CreateGetFloatCommand Unexecuted instantiation: vlm_event.c:var_CreateGetFloatCommand Unexecuted instantiation: vlmshell.c:var_CreateGetFloatCommand Unexecuted instantiation: libvlc-module.c:var_CreateGetFloatCommand Unexecuted instantiation: dirs.c:var_CreateGetFloatCommand Unexecuted instantiation: art.c:var_CreateGetFloatCommand Unexecuted instantiation: fetcher.c:var_CreateGetFloatCommand Unexecuted instantiation: clock.c:var_CreateGetFloatCommand Unexecuted instantiation: es_out.c:var_CreateGetFloatCommand Unexecuted instantiation: es_out_source.c:var_CreateGetFloatCommand Unexecuted instantiation: es_out_timeshift.c:var_CreateGetFloatCommand Unexecuted instantiation: display.c:var_CreateGetFloatCommand Unexecuted instantiation: inhibit.c:var_CreateGetFloatCommand Unexecuted instantiation: interlacing.c:var_CreateGetFloatCommand Unexecuted instantiation: snapshot.c:var_CreateGetFloatCommand Unexecuted instantiation: getaddrinfo.c:var_CreateGetFloatCommand Unexecuted instantiation: io.c:var_CreateGetFloatCommand Unexecuted instantiation: iso_lang.c:var_CreateGetFloatCommand Unexecuted instantiation: chroma_probe.c:var_CreateGetFloatCommand Unexecuted instantiation: clock_internal.c:var_CreateGetFloatCommand Unexecuted instantiation: input_clock.c:var_CreateGetFloatCommand |
663 | | |
664 | | /** |
665 | | * Create a string command variable with inherit and get its value. |
666 | | * |
667 | | * \param p_obj The object that holds the variable |
668 | | * \param psz_name The name of the variable |
669 | | */ |
670 | | VLC_USED VLC_MALLOC |
671 | | static inline char *var_CreateGetStringCommand( vlc_object_t *p_obj, |
672 | | const char *psz_name ) |
673 | 0 | { |
674 | 0 | var_Create( p_obj, psz_name, VLC_VAR_STRING | VLC_VAR_DOINHERIT |
675 | 0 | | VLC_VAR_ISCOMMAND ); |
676 | 0 | return var_GetString( p_obj, psz_name ); |
677 | 0 | } Unexecuted instantiation: demux-run.c:var_CreateGetStringCommand Unexecuted instantiation: common.c:var_CreateGetStringCommand Unexecuted instantiation: var.c:var_CreateGetStringCommand Unexecuted instantiation: decoder.c:var_CreateGetStringCommand Unexecuted instantiation: core.c:var_CreateGetStringCommand Unexecuted instantiation: error.c:var_CreateGetStringCommand Unexecuted instantiation: console.c:var_CreateGetStringCommand Unexecuted instantiation: aiff.c:var_CreateGetStringCommand Unexecuted instantiation: asf.c:var_CreateGetStringCommand Unexecuted instantiation: libasf.c:var_CreateGetStringCommand Unexecuted instantiation: asfpacket.c:var_CreateGetStringCommand Unexecuted instantiation: au.c:var_CreateGetStringCommand Unexecuted instantiation: avi.c:var_CreateGetStringCommand Unexecuted instantiation: libavi.c:var_CreateGetStringCommand Unexecuted instantiation: caf.c:var_CreateGetStringCommand Unexecuted instantiation: cdg.c:var_CreateGetStringCommand Unexecuted instantiation: es.c:var_CreateGetStringCommand Unexecuted instantiation: dts_header.c:var_CreateGetStringCommand Unexecuted instantiation: flac.c:var_CreateGetStringCommand Unexecuted instantiation: xiph_metadata.c:var_CreateGetStringCommand Unexecuted instantiation: h26x.c:var_CreateGetStringCommand Unexecuted instantiation: mjpeg.c:var_CreateGetStringCommand Unexecuted instantiation: mp4.c:var_CreateGetStringCommand Unexecuted instantiation: fragments.c:var_CreateGetStringCommand Unexecuted instantiation: attachments.c:var_CreateGetStringCommand Unexecuted instantiation: heif.c:var_CreateGetStringCommand Unexecuted instantiation: essetup.c:var_CreateGetStringCommand Unexecuted instantiation: meta.c:var_CreateGetStringCommand Unexecuted instantiation: libmp4.c:var_CreateGetStringCommand Unexecuted instantiation: nsv.c:var_CreateGetStringCommand Unexecuted instantiation: ps.c:var_CreateGetStringCommand Unexecuted instantiation: pva.c:var_CreateGetStringCommand Unexecuted instantiation: sap.c:var_CreateGetStringCommand Unexecuted instantiation: sdp.c:var_CreateGetStringCommand Unexecuted instantiation: smf.c:var_CreateGetStringCommand Unexecuted instantiation: subtitle.c:var_CreateGetStringCommand Unexecuted instantiation: tta.c:var_CreateGetStringCommand Unexecuted instantiation: ttml.c:var_CreateGetStringCommand Unexecuted instantiation: encttml.c:var_CreateGetStringCommand Unexecuted instantiation: substtml.c:var_CreateGetStringCommand Unexecuted instantiation: genttml.c:var_CreateGetStringCommand Unexecuted instantiation: ty.c:var_CreateGetStringCommand Unexecuted instantiation: voc.c:var_CreateGetStringCommand Unexecuted instantiation: wav.c:var_CreateGetStringCommand Unexecuted instantiation: webvtt.c:var_CreateGetStringCommand Unexecuted instantiation: encvtt.c:var_CreateGetStringCommand Unexecuted instantiation: subsvtt.c:var_CreateGetStringCommand Unexecuted instantiation: css_parser.c:var_CreateGetStringCommand Unexecuted instantiation: css_style.c:var_CreateGetStringCommand Unexecuted instantiation: CSSGrammar.c:var_CreateGetStringCommand Unexecuted instantiation: libwebvtt_plugin_la-CSSLexer.c:var_CreateGetStringCommand Unexecuted instantiation: xa.c:var_CreateGetStringCommand Unexecuted instantiation: a52.c:var_CreateGetStringCommand Unexecuted instantiation: copy.c:var_CreateGetStringCommand Unexecuted instantiation: dts.c:var_CreateGetStringCommand Unexecuted instantiation: h264.c:var_CreateGetStringCommand Unexecuted instantiation: hxxx_sei.c:var_CreateGetStringCommand Unexecuted instantiation: hxxx_common.c:var_CreateGetStringCommand Unexecuted instantiation: h264_nal.c:var_CreateGetStringCommand Unexecuted instantiation: h264_slice.c:var_CreateGetStringCommand Unexecuted instantiation: hevc.c:var_CreateGetStringCommand Unexecuted instantiation: hevc_nal.c:var_CreateGetStringCommand Unexecuted instantiation: mlp.c:var_CreateGetStringCommand Unexecuted instantiation: mpeg4audio.c:var_CreateGetStringCommand Unexecuted instantiation: mpeg4video.c:var_CreateGetStringCommand Unexecuted instantiation: mpegaudio.c:var_CreateGetStringCommand Unexecuted instantiation: mpegvideo.c:var_CreateGetStringCommand Unexecuted instantiation: vc1.c:var_CreateGetStringCommand Unexecuted instantiation: rawaud.c:var_CreateGetStringCommand Unexecuted instantiation: rawvid.c:var_CreateGetStringCommand Unexecuted instantiation: fs.c:var_CreateGetStringCommand Unexecuted instantiation: file.c:var_CreateGetStringCommand Unexecuted instantiation: directory.c:var_CreateGetStringCommand Unexecuted instantiation: libxml.c:var_CreateGetStringCommand Unexecuted instantiation: ogg.c:var_CreateGetStringCommand Unexecuted instantiation: oggseek.c:var_CreateGetStringCommand Unexecuted instantiation: ogg_granule.c:var_CreateGetStringCommand Unexecuted instantiation: mkv.cpp:var_CreateGetStringCommand(vlc_object_t*, char const*) Unexecuted instantiation: util.cpp:var_CreateGetStringCommand(vlc_object_t*, char const*) Unexecuted instantiation: virtual_segment.cpp:var_CreateGetStringCommand(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment.cpp:var_CreateGetStringCommand(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment_parse.cpp:var_CreateGetStringCommand(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment_seeker.cpp:var_CreateGetStringCommand(vlc_object_t*, char const*) Unexecuted instantiation: demux.cpp:var_CreateGetStringCommand(vlc_object_t*, char const*) Unexecuted instantiation: events.cpp:var_CreateGetStringCommand(vlc_object_t*, char const*) Unexecuted instantiation: Ebml_parser.cpp:var_CreateGetStringCommand(vlc_object_t*, char const*) Unexecuted instantiation: chapters.cpp:var_CreateGetStringCommand(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command.cpp:var_CreateGetStringCommand(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_dvd.cpp:var_CreateGetStringCommand(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_script.cpp:var_CreateGetStringCommand(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_script_common.cpp:var_CreateGetStringCommand(vlc_object_t*, char const*) Unexecuted instantiation: stream_io_callback.cpp:var_CreateGetStringCommand(vlc_object_t*, char const*) Unexecuted instantiation: vlc_colors.c:var_CreateGetStringCommand Unexecuted instantiation: adpcm.c:var_CreateGetStringCommand Unexecuted instantiation: aes3.c:var_CreateGetStringCommand Unexecuted instantiation: araw.c:var_CreateGetStringCommand Unexecuted instantiation: g711.c:var_CreateGetStringCommand Unexecuted instantiation: lpcm.c:var_CreateGetStringCommand Unexecuted instantiation: uleaddvaudio.c:var_CreateGetStringCommand Unexecuted instantiation: rawvideo.c:var_CreateGetStringCommand Unexecuted instantiation: cc.c:var_CreateGetStringCommand Unexecuted instantiation: cea708.c:var_CreateGetStringCommand Unexecuted instantiation: cvdsub.c:var_CreateGetStringCommand Unexecuted instantiation: dvbsub.c:var_CreateGetStringCommand Unexecuted instantiation: scte18.c:var_CreateGetStringCommand Unexecuted instantiation: atsc_a65.c:var_CreateGetStringCommand Unexecuted instantiation: scte27.c:var_CreateGetStringCommand Unexecuted instantiation: spudec.c:var_CreateGetStringCommand Unexecuted instantiation: parse.c:var_CreateGetStringCommand Unexecuted instantiation: stl.c:var_CreateGetStringCommand Unexecuted instantiation: subsdec.c:var_CreateGetStringCommand Unexecuted instantiation: subsusf.c:var_CreateGetStringCommand Unexecuted instantiation: svcdsub.c:var_CreateGetStringCommand Unexecuted instantiation: textst.c:var_CreateGetStringCommand Unexecuted instantiation: substx3g.c:var_CreateGetStringCommand Unexecuted instantiation: libvlc.c:var_CreateGetStringCommand Unexecuted instantiation: version.c:var_CreateGetStringCommand Unexecuted instantiation: chain.c:var_CreateGetStringCommand Unexecuted instantiation: help.c:var_CreateGetStringCommand Unexecuted instantiation: cmdline.c:var_CreateGetStringCommand Unexecuted instantiation: getopt.c:var_CreateGetStringCommand Unexecuted instantiation: libc.c:var_CreateGetStringCommand Unexecuted instantiation: media_source.c:var_CreateGetStringCommand Unexecuted instantiation: media_tree.c:var_CreateGetStringCommand Unexecuted instantiation: modules.c:var_CreateGetStringCommand Unexecuted instantiation: bank.c:var_CreateGetStringCommand Unexecuted instantiation: entry.c:var_CreateGetStringCommand Unexecuted instantiation: textdomain.c:var_CreateGetStringCommand Unexecuted instantiation: dialog.c:var_CreateGetStringCommand Unexecuted instantiation: interface.c:var_CreateGetStringCommand Unexecuted instantiation: content.c:var_CreateGetStringCommand Unexecuted instantiation: control.c:var_CreateGetStringCommand Unexecuted instantiation: item.c:var_CreateGetStringCommand Unexecuted instantiation: notify.c:var_CreateGetStringCommand Unexecuted instantiation: player.c:var_CreateGetStringCommand Unexecuted instantiation: playlist.c:var_CreateGetStringCommand Unexecuted instantiation: preparse.c:var_CreateGetStringCommand Unexecuted instantiation: randomizer.c:var_CreateGetStringCommand Unexecuted instantiation: preparser.c:var_CreateGetStringCommand Unexecuted instantiation: access.c:var_CreateGetStringCommand Unexecuted instantiation: decoder_device.c:var_CreateGetStringCommand Unexecuted instantiation: decoder_helpers.c:var_CreateGetStringCommand Unexecuted instantiation: demux.c:var_CreateGetStringCommand Unexecuted instantiation: input.c:var_CreateGetStringCommand Unexecuted instantiation: attachment.c:var_CreateGetStringCommand Unexecuted instantiation: replay_gain.c:var_CreateGetStringCommand Unexecuted instantiation: timer.c:var_CreateGetStringCommand Unexecuted instantiation: track.c:var_CreateGetStringCommand Unexecuted instantiation: title.c:var_CreateGetStringCommand Unexecuted instantiation: aout.c:var_CreateGetStringCommand Unexecuted instantiation: vout.c:var_CreateGetStringCommand Unexecuted instantiation: osd.c:var_CreateGetStringCommand Unexecuted instantiation: medialib.c:var_CreateGetStringCommand Unexecuted instantiation: resource.c:var_CreateGetStringCommand Unexecuted instantiation: services_discovery.c:var_CreateGetStringCommand Unexecuted instantiation: source.c:var_CreateGetStringCommand Unexecuted instantiation: stats.c:var_CreateGetStringCommand Unexecuted instantiation: stream.c:var_CreateGetStringCommand Unexecuted instantiation: stream_extractor.c:var_CreateGetStringCommand Unexecuted instantiation: stream_filter.c:var_CreateGetStringCommand Unexecuted instantiation: stream_memory.c:var_CreateGetStringCommand Unexecuted instantiation: subtitles.c:var_CreateGetStringCommand Unexecuted instantiation: dec.c:var_CreateGetStringCommand Unexecuted instantiation: filters.c:var_CreateGetStringCommand Unexecuted instantiation: meter.c:var_CreateGetStringCommand Unexecuted instantiation: output.c:var_CreateGetStringCommand Unexecuted instantiation: volume.c:var_CreateGetStringCommand Unexecuted instantiation: video_output.c:var_CreateGetStringCommand Unexecuted instantiation: video_text.c:var_CreateGetStringCommand Unexecuted instantiation: video_widgets.c:var_CreateGetStringCommand Unexecuted instantiation: vout_subpictures.c:var_CreateGetStringCommand Unexecuted instantiation: video_window.c:var_CreateGetStringCommand Unexecuted instantiation: window.c:var_CreateGetStringCommand Unexecuted instantiation: vout_intf.c:var_CreateGetStringCommand Unexecuted instantiation: vout_wrapper.c:var_CreateGetStringCommand Unexecuted instantiation: udp.c:var_CreateGetStringCommand Unexecuted instantiation: charset.c:var_CreateGetStringCommand Unexecuted instantiation: memstream.c:var_CreateGetStringCommand Unexecuted instantiation: strings.c:var_CreateGetStringCommand Unexecuted instantiation: unicode.c:var_CreateGetStringCommand Unexecuted instantiation: url.c:var_CreateGetStringCommand Unexecuted instantiation: filesystem.c:var_CreateGetStringCommand Unexecuted instantiation: actions.c:var_CreateGetStringCommand Unexecuted instantiation: ancillary.c:var_CreateGetStringCommand Unexecuted instantiation: executor.c:var_CreateGetStringCommand Unexecuted instantiation: md5.c:var_CreateGetStringCommand Unexecuted instantiation: probe.c:var_CreateGetStringCommand Unexecuted instantiation: mtime.c:var_CreateGetStringCommand Unexecuted instantiation: frame.c:var_CreateGetStringCommand Unexecuted instantiation: fifo.c:var_CreateGetStringCommand Unexecuted instantiation: fourcc.c:var_CreateGetStringCommand Unexecuted instantiation: es_format.c:var_CreateGetStringCommand Unexecuted instantiation: picture.c:var_CreateGetStringCommand Unexecuted instantiation: picture_fifo.c:var_CreateGetStringCommand Unexecuted instantiation: picture_pool.c:var_CreateGetStringCommand Unexecuted instantiation: interrupt.c:var_CreateGetStringCommand Unexecuted instantiation: keystore.c:var_CreateGetStringCommand Unexecuted instantiation: rcu.c:var_CreateGetStringCommand Unexecuted instantiation: renderer_discovery.c:var_CreateGetStringCommand Unexecuted instantiation: threads.c:var_CreateGetStringCommand Unexecuted instantiation: cpu.c:var_CreateGetStringCommand Unexecuted instantiation: epg.c:var_CreateGetStringCommand Unexecuted instantiation: exit.c:var_CreateGetStringCommand Unexecuted instantiation: image.c:var_CreateGetStringCommand Unexecuted instantiation: messages.c:var_CreateGetStringCommand Unexecuted instantiation: tracer.c:var_CreateGetStringCommand Unexecuted instantiation: objects.c:var_CreateGetStringCommand Unexecuted instantiation: objres.c:var_CreateGetStringCommand Unexecuted instantiation: queue.c:var_CreateGetStringCommand Unexecuted instantiation: variables.c:var_CreateGetStringCommand Unexecuted instantiation: xml.c:var_CreateGetStringCommand Unexecuted instantiation: filter.c:var_CreateGetStringCommand Unexecuted instantiation: filter_chain.c:var_CreateGetStringCommand Unexecuted instantiation: httpcookies.c:var_CreateGetStringCommand Unexecuted instantiation: text_style.c:var_CreateGetStringCommand Unexecuted instantiation: sort.c:var_CreateGetStringCommand Unexecuted instantiation: subpicture.c:var_CreateGetStringCommand Unexecuted instantiation: medialibrary.c:var_CreateGetStringCommand Unexecuted instantiation: viewpoint.c:var_CreateGetStringCommand Unexecuted instantiation: thread.c:var_CreateGetStringCommand Unexecuted instantiation: rand.c:var_CreateGetStringCommand Unexecuted instantiation: specific.c:var_CreateGetStringCommand Unexecuted instantiation: stream_output.c:var_CreateGetStringCommand Unexecuted instantiation: vlm.c:var_CreateGetStringCommand Unexecuted instantiation: vlm_event.c:var_CreateGetStringCommand Unexecuted instantiation: vlmshell.c:var_CreateGetStringCommand Unexecuted instantiation: libvlc-module.c:var_CreateGetStringCommand Unexecuted instantiation: dirs.c:var_CreateGetStringCommand Unexecuted instantiation: art.c:var_CreateGetStringCommand Unexecuted instantiation: fetcher.c:var_CreateGetStringCommand Unexecuted instantiation: clock.c:var_CreateGetStringCommand Unexecuted instantiation: es_out.c:var_CreateGetStringCommand Unexecuted instantiation: es_out_source.c:var_CreateGetStringCommand Unexecuted instantiation: es_out_timeshift.c:var_CreateGetStringCommand Unexecuted instantiation: display.c:var_CreateGetStringCommand Unexecuted instantiation: inhibit.c:var_CreateGetStringCommand Unexecuted instantiation: interlacing.c:var_CreateGetStringCommand Unexecuted instantiation: snapshot.c:var_CreateGetStringCommand Unexecuted instantiation: getaddrinfo.c:var_CreateGetStringCommand Unexecuted instantiation: io.c:var_CreateGetStringCommand Unexecuted instantiation: iso_lang.c:var_CreateGetStringCommand Unexecuted instantiation: chroma_probe.c:var_CreateGetStringCommand Unexecuted instantiation: clock_internal.c:var_CreateGetStringCommand Unexecuted instantiation: input_clock.c:var_CreateGetStringCommand |
678 | | |
679 | | VLC_USED VLC_MALLOC |
680 | | static inline char *var_CreateGetNonEmptyStringCommand( vlc_object_t *p_obj, |
681 | | const char *psz_name ) |
682 | 0 | { |
683 | 0 | var_Create( p_obj, psz_name, VLC_VAR_STRING | VLC_VAR_DOINHERIT |
684 | 0 | | VLC_VAR_ISCOMMAND ); |
685 | 0 | return var_GetNonEmptyString( p_obj, psz_name ); |
686 | 0 | } Unexecuted instantiation: demux-run.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: common.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: var.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: decoder.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: core.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: error.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: console.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: aiff.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: asf.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: libasf.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: asfpacket.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: au.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: avi.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: libavi.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: caf.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: cdg.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: es.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: dts_header.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: flac.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: xiph_metadata.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: h26x.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: mjpeg.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: mp4.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: fragments.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: attachments.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: heif.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: essetup.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: meta.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: libmp4.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: nsv.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: ps.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: pva.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: sap.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: sdp.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: smf.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: subtitle.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: tta.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: ttml.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: encttml.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: substtml.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: genttml.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: ty.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: voc.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: wav.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: webvtt.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: encvtt.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: subsvtt.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: css_parser.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: css_style.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: CSSGrammar.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: libwebvtt_plugin_la-CSSLexer.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: xa.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: a52.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: copy.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: dts.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: h264.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: hxxx_sei.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: hxxx_common.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: h264_nal.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: h264_slice.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: hevc.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: hevc_nal.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: mlp.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: mpeg4audio.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: mpeg4video.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: mpegaudio.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: mpegvideo.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: vc1.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: rawaud.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: rawvid.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: fs.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: file.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: directory.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: libxml.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: ogg.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: oggseek.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: ogg_granule.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: mkv.cpp:var_CreateGetNonEmptyStringCommand(vlc_object_t*, char const*) Unexecuted instantiation: util.cpp:var_CreateGetNonEmptyStringCommand(vlc_object_t*, char const*) Unexecuted instantiation: virtual_segment.cpp:var_CreateGetNonEmptyStringCommand(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment.cpp:var_CreateGetNonEmptyStringCommand(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment_parse.cpp:var_CreateGetNonEmptyStringCommand(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment_seeker.cpp:var_CreateGetNonEmptyStringCommand(vlc_object_t*, char const*) Unexecuted instantiation: demux.cpp:var_CreateGetNonEmptyStringCommand(vlc_object_t*, char const*) Unexecuted instantiation: events.cpp:var_CreateGetNonEmptyStringCommand(vlc_object_t*, char const*) Unexecuted instantiation: Ebml_parser.cpp:var_CreateGetNonEmptyStringCommand(vlc_object_t*, char const*) Unexecuted instantiation: chapters.cpp:var_CreateGetNonEmptyStringCommand(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command.cpp:var_CreateGetNonEmptyStringCommand(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_dvd.cpp:var_CreateGetNonEmptyStringCommand(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_script.cpp:var_CreateGetNonEmptyStringCommand(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_script_common.cpp:var_CreateGetNonEmptyStringCommand(vlc_object_t*, char const*) Unexecuted instantiation: stream_io_callback.cpp:var_CreateGetNonEmptyStringCommand(vlc_object_t*, char const*) Unexecuted instantiation: vlc_colors.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: adpcm.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: aes3.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: araw.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: g711.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: lpcm.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: uleaddvaudio.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: rawvideo.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: cc.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: cea708.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: cvdsub.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: dvbsub.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: scte18.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: atsc_a65.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: scte27.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: spudec.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: parse.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: stl.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: subsdec.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: subsusf.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: svcdsub.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: textst.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: substx3g.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: libvlc.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: version.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: chain.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: help.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: cmdline.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: getopt.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: libc.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: media_source.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: media_tree.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: modules.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: bank.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: entry.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: textdomain.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: dialog.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: interface.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: content.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: control.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: item.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: notify.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: player.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: playlist.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: preparse.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: randomizer.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: preparser.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: access.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: decoder_device.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: decoder_helpers.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: demux.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: input.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: attachment.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: replay_gain.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: timer.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: track.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: title.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: aout.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: vout.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: osd.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: medialib.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: resource.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: services_discovery.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: source.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: stats.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: stream.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: stream_extractor.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: stream_filter.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: stream_memory.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: subtitles.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: dec.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: filters.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: meter.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: output.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: volume.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: video_output.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: video_text.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: video_widgets.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: vout_subpictures.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: video_window.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: window.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: vout_intf.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: vout_wrapper.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: udp.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: charset.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: memstream.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: strings.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: unicode.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: url.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: filesystem.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: actions.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: ancillary.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: executor.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: md5.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: probe.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: mtime.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: frame.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: fifo.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: fourcc.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: es_format.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: picture.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: picture_fifo.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: picture_pool.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: interrupt.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: keystore.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: rcu.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: renderer_discovery.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: threads.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: cpu.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: epg.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: exit.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: image.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: messages.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: tracer.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: objects.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: objres.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: queue.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: variables.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: xml.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: filter.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: filter_chain.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: httpcookies.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: text_style.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: sort.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: subpicture.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: medialibrary.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: viewpoint.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: thread.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: rand.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: specific.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: stream_output.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: vlm.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: vlm_event.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: vlmshell.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: libvlc-module.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: dirs.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: art.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: fetcher.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: clock.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: es_out.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: es_out_source.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: es_out_timeshift.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: display.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: inhibit.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: interlacing.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: snapshot.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: getaddrinfo.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: io.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: iso_lang.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: chroma_probe.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: clock_internal.c:var_CreateGetNonEmptyStringCommand Unexecuted instantiation: input_clock.c:var_CreateGetNonEmptyStringCommand |
687 | | |
688 | | VLC_USED |
689 | | static inline size_t var_CountChoices( vlc_object_t *p_obj, const char *psz_name ) |
690 | 0 | { |
691 | 0 | size_t count; |
692 | 0 | if( var_Change( p_obj, psz_name, VLC_VAR_CHOICESCOUNT, &count ) ) |
693 | 0 | return 0; |
694 | 0 | return count; |
695 | 0 | } Unexecuted instantiation: demux-run.c:var_CountChoices Unexecuted instantiation: common.c:var_CountChoices Unexecuted instantiation: var.c:var_CountChoices Unexecuted instantiation: decoder.c:var_CountChoices Unexecuted instantiation: core.c:var_CountChoices Unexecuted instantiation: error.c:var_CountChoices Unexecuted instantiation: console.c:var_CountChoices Unexecuted instantiation: aiff.c:var_CountChoices Unexecuted instantiation: asf.c:var_CountChoices Unexecuted instantiation: libasf.c:var_CountChoices Unexecuted instantiation: asfpacket.c:var_CountChoices Unexecuted instantiation: au.c:var_CountChoices Unexecuted instantiation: avi.c:var_CountChoices Unexecuted instantiation: libavi.c:var_CountChoices Unexecuted instantiation: caf.c:var_CountChoices Unexecuted instantiation: cdg.c:var_CountChoices Unexecuted instantiation: es.c:var_CountChoices Unexecuted instantiation: dts_header.c:var_CountChoices Unexecuted instantiation: flac.c:var_CountChoices Unexecuted instantiation: xiph_metadata.c:var_CountChoices Unexecuted instantiation: h26x.c:var_CountChoices Unexecuted instantiation: mjpeg.c:var_CountChoices Unexecuted instantiation: mp4.c:var_CountChoices Unexecuted instantiation: fragments.c:var_CountChoices Unexecuted instantiation: attachments.c:var_CountChoices Unexecuted instantiation: heif.c:var_CountChoices Unexecuted instantiation: essetup.c:var_CountChoices Unexecuted instantiation: meta.c:var_CountChoices Unexecuted instantiation: libmp4.c:var_CountChoices Unexecuted instantiation: nsv.c:var_CountChoices Unexecuted instantiation: ps.c:var_CountChoices Unexecuted instantiation: pva.c:var_CountChoices Unexecuted instantiation: sap.c:var_CountChoices Unexecuted instantiation: sdp.c:var_CountChoices Unexecuted instantiation: smf.c:var_CountChoices Unexecuted instantiation: subtitle.c:var_CountChoices Unexecuted instantiation: tta.c:var_CountChoices Unexecuted instantiation: ttml.c:var_CountChoices Unexecuted instantiation: encttml.c:var_CountChoices Unexecuted instantiation: substtml.c:var_CountChoices Unexecuted instantiation: genttml.c:var_CountChoices Unexecuted instantiation: ty.c:var_CountChoices Unexecuted instantiation: voc.c:var_CountChoices Unexecuted instantiation: wav.c:var_CountChoices Unexecuted instantiation: webvtt.c:var_CountChoices Unexecuted instantiation: encvtt.c:var_CountChoices Unexecuted instantiation: subsvtt.c:var_CountChoices Unexecuted instantiation: css_parser.c:var_CountChoices Unexecuted instantiation: css_style.c:var_CountChoices Unexecuted instantiation: CSSGrammar.c:var_CountChoices Unexecuted instantiation: libwebvtt_plugin_la-CSSLexer.c:var_CountChoices Unexecuted instantiation: xa.c:var_CountChoices Unexecuted instantiation: a52.c:var_CountChoices Unexecuted instantiation: copy.c:var_CountChoices Unexecuted instantiation: dts.c:var_CountChoices Unexecuted instantiation: h264.c:var_CountChoices Unexecuted instantiation: hxxx_sei.c:var_CountChoices Unexecuted instantiation: hxxx_common.c:var_CountChoices Unexecuted instantiation: h264_nal.c:var_CountChoices Unexecuted instantiation: h264_slice.c:var_CountChoices Unexecuted instantiation: hevc.c:var_CountChoices Unexecuted instantiation: hevc_nal.c:var_CountChoices Unexecuted instantiation: mlp.c:var_CountChoices Unexecuted instantiation: mpeg4audio.c:var_CountChoices Unexecuted instantiation: mpeg4video.c:var_CountChoices Unexecuted instantiation: mpegaudio.c:var_CountChoices Unexecuted instantiation: mpegvideo.c:var_CountChoices Unexecuted instantiation: vc1.c:var_CountChoices Unexecuted instantiation: rawaud.c:var_CountChoices Unexecuted instantiation: rawvid.c:var_CountChoices Unexecuted instantiation: fs.c:var_CountChoices Unexecuted instantiation: file.c:var_CountChoices Unexecuted instantiation: directory.c:var_CountChoices Unexecuted instantiation: libxml.c:var_CountChoices Unexecuted instantiation: ogg.c:var_CountChoices Unexecuted instantiation: oggseek.c:var_CountChoices Unexecuted instantiation: ogg_granule.c:var_CountChoices Unexecuted instantiation: mkv.cpp:var_CountChoices(vlc_object_t*, char const*) Unexecuted instantiation: util.cpp:var_CountChoices(vlc_object_t*, char const*) Unexecuted instantiation: virtual_segment.cpp:var_CountChoices(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment.cpp:var_CountChoices(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment_parse.cpp:var_CountChoices(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment_seeker.cpp:var_CountChoices(vlc_object_t*, char const*) Unexecuted instantiation: demux.cpp:var_CountChoices(vlc_object_t*, char const*) Unexecuted instantiation: events.cpp:var_CountChoices(vlc_object_t*, char const*) Unexecuted instantiation: Ebml_parser.cpp:var_CountChoices(vlc_object_t*, char const*) Unexecuted instantiation: chapters.cpp:var_CountChoices(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command.cpp:var_CountChoices(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_dvd.cpp:var_CountChoices(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_script.cpp:var_CountChoices(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_script_common.cpp:var_CountChoices(vlc_object_t*, char const*) Unexecuted instantiation: stream_io_callback.cpp:var_CountChoices(vlc_object_t*, char const*) Unexecuted instantiation: vlc_colors.c:var_CountChoices Unexecuted instantiation: adpcm.c:var_CountChoices Unexecuted instantiation: aes3.c:var_CountChoices Unexecuted instantiation: araw.c:var_CountChoices Unexecuted instantiation: g711.c:var_CountChoices Unexecuted instantiation: lpcm.c:var_CountChoices Unexecuted instantiation: uleaddvaudio.c:var_CountChoices Unexecuted instantiation: rawvideo.c:var_CountChoices Unexecuted instantiation: cc.c:var_CountChoices Unexecuted instantiation: cea708.c:var_CountChoices Unexecuted instantiation: cvdsub.c:var_CountChoices Unexecuted instantiation: dvbsub.c:var_CountChoices Unexecuted instantiation: scte18.c:var_CountChoices Unexecuted instantiation: atsc_a65.c:var_CountChoices Unexecuted instantiation: scte27.c:var_CountChoices Unexecuted instantiation: spudec.c:var_CountChoices Unexecuted instantiation: parse.c:var_CountChoices Unexecuted instantiation: stl.c:var_CountChoices Unexecuted instantiation: subsdec.c:var_CountChoices Unexecuted instantiation: subsusf.c:var_CountChoices Unexecuted instantiation: svcdsub.c:var_CountChoices Unexecuted instantiation: textst.c:var_CountChoices Unexecuted instantiation: substx3g.c:var_CountChoices Unexecuted instantiation: libvlc.c:var_CountChoices Unexecuted instantiation: version.c:var_CountChoices Unexecuted instantiation: chain.c:var_CountChoices Unexecuted instantiation: help.c:var_CountChoices Unexecuted instantiation: cmdline.c:var_CountChoices Unexecuted instantiation: getopt.c:var_CountChoices Unexecuted instantiation: libc.c:var_CountChoices Unexecuted instantiation: media_source.c:var_CountChoices Unexecuted instantiation: media_tree.c:var_CountChoices Unexecuted instantiation: modules.c:var_CountChoices Unexecuted instantiation: bank.c:var_CountChoices Unexecuted instantiation: entry.c:var_CountChoices Unexecuted instantiation: textdomain.c:var_CountChoices Unexecuted instantiation: dialog.c:var_CountChoices Unexecuted instantiation: interface.c:var_CountChoices Unexecuted instantiation: content.c:var_CountChoices Unexecuted instantiation: control.c:var_CountChoices Unexecuted instantiation: item.c:var_CountChoices Unexecuted instantiation: notify.c:var_CountChoices Unexecuted instantiation: player.c:var_CountChoices Unexecuted instantiation: playlist.c:var_CountChoices Unexecuted instantiation: preparse.c:var_CountChoices Unexecuted instantiation: randomizer.c:var_CountChoices Unexecuted instantiation: preparser.c:var_CountChoices Unexecuted instantiation: access.c:var_CountChoices Unexecuted instantiation: decoder_device.c:var_CountChoices Unexecuted instantiation: decoder_helpers.c:var_CountChoices Unexecuted instantiation: demux.c:var_CountChoices Unexecuted instantiation: input.c:var_CountChoices Unexecuted instantiation: attachment.c:var_CountChoices Unexecuted instantiation: replay_gain.c:var_CountChoices Unexecuted instantiation: timer.c:var_CountChoices Unexecuted instantiation: track.c:var_CountChoices Unexecuted instantiation: title.c:var_CountChoices Unexecuted instantiation: aout.c:var_CountChoices Unexecuted instantiation: vout.c:var_CountChoices Unexecuted instantiation: osd.c:var_CountChoices Unexecuted instantiation: medialib.c:var_CountChoices Unexecuted instantiation: resource.c:var_CountChoices Unexecuted instantiation: services_discovery.c:var_CountChoices Unexecuted instantiation: source.c:var_CountChoices Unexecuted instantiation: stats.c:var_CountChoices Unexecuted instantiation: stream.c:var_CountChoices Unexecuted instantiation: stream_extractor.c:var_CountChoices Unexecuted instantiation: stream_filter.c:var_CountChoices Unexecuted instantiation: stream_memory.c:var_CountChoices Unexecuted instantiation: subtitles.c:var_CountChoices Unexecuted instantiation: dec.c:var_CountChoices Unexecuted instantiation: filters.c:var_CountChoices Unexecuted instantiation: meter.c:var_CountChoices Unexecuted instantiation: output.c:var_CountChoices Unexecuted instantiation: volume.c:var_CountChoices Unexecuted instantiation: video_output.c:var_CountChoices Unexecuted instantiation: video_text.c:var_CountChoices Unexecuted instantiation: video_widgets.c:var_CountChoices Unexecuted instantiation: vout_subpictures.c:var_CountChoices Unexecuted instantiation: video_window.c:var_CountChoices Unexecuted instantiation: window.c:var_CountChoices Unexecuted instantiation: vout_intf.c:var_CountChoices Unexecuted instantiation: vout_wrapper.c:var_CountChoices Unexecuted instantiation: udp.c:var_CountChoices Unexecuted instantiation: charset.c:var_CountChoices Unexecuted instantiation: memstream.c:var_CountChoices Unexecuted instantiation: strings.c:var_CountChoices Unexecuted instantiation: unicode.c:var_CountChoices Unexecuted instantiation: url.c:var_CountChoices Unexecuted instantiation: filesystem.c:var_CountChoices Unexecuted instantiation: actions.c:var_CountChoices Unexecuted instantiation: ancillary.c:var_CountChoices Unexecuted instantiation: executor.c:var_CountChoices Unexecuted instantiation: md5.c:var_CountChoices Unexecuted instantiation: probe.c:var_CountChoices Unexecuted instantiation: mtime.c:var_CountChoices Unexecuted instantiation: frame.c:var_CountChoices Unexecuted instantiation: fifo.c:var_CountChoices Unexecuted instantiation: fourcc.c:var_CountChoices Unexecuted instantiation: es_format.c:var_CountChoices Unexecuted instantiation: picture.c:var_CountChoices Unexecuted instantiation: picture_fifo.c:var_CountChoices Unexecuted instantiation: picture_pool.c:var_CountChoices Unexecuted instantiation: interrupt.c:var_CountChoices Unexecuted instantiation: keystore.c:var_CountChoices Unexecuted instantiation: rcu.c:var_CountChoices Unexecuted instantiation: renderer_discovery.c:var_CountChoices Unexecuted instantiation: threads.c:var_CountChoices Unexecuted instantiation: cpu.c:var_CountChoices Unexecuted instantiation: epg.c:var_CountChoices Unexecuted instantiation: exit.c:var_CountChoices Unexecuted instantiation: image.c:var_CountChoices Unexecuted instantiation: messages.c:var_CountChoices Unexecuted instantiation: tracer.c:var_CountChoices Unexecuted instantiation: objects.c:var_CountChoices Unexecuted instantiation: objres.c:var_CountChoices Unexecuted instantiation: queue.c:var_CountChoices Unexecuted instantiation: variables.c:var_CountChoices Unexecuted instantiation: xml.c:var_CountChoices Unexecuted instantiation: filter.c:var_CountChoices Unexecuted instantiation: filter_chain.c:var_CountChoices Unexecuted instantiation: httpcookies.c:var_CountChoices Unexecuted instantiation: text_style.c:var_CountChoices Unexecuted instantiation: sort.c:var_CountChoices Unexecuted instantiation: subpicture.c:var_CountChoices Unexecuted instantiation: medialibrary.c:var_CountChoices Unexecuted instantiation: viewpoint.c:var_CountChoices Unexecuted instantiation: thread.c:var_CountChoices Unexecuted instantiation: rand.c:var_CountChoices Unexecuted instantiation: specific.c:var_CountChoices Unexecuted instantiation: stream_output.c:var_CountChoices Unexecuted instantiation: vlm.c:var_CountChoices Unexecuted instantiation: vlm_event.c:var_CountChoices Unexecuted instantiation: vlmshell.c:var_CountChoices Unexecuted instantiation: libvlc-module.c:var_CountChoices Unexecuted instantiation: dirs.c:var_CountChoices Unexecuted instantiation: art.c:var_CountChoices Unexecuted instantiation: fetcher.c:var_CountChoices Unexecuted instantiation: clock.c:var_CountChoices Unexecuted instantiation: es_out.c:var_CountChoices Unexecuted instantiation: es_out_source.c:var_CountChoices Unexecuted instantiation: es_out_timeshift.c:var_CountChoices Unexecuted instantiation: display.c:var_CountChoices Unexecuted instantiation: inhibit.c:var_CountChoices Unexecuted instantiation: interlacing.c:var_CountChoices Unexecuted instantiation: snapshot.c:var_CountChoices Unexecuted instantiation: getaddrinfo.c:var_CountChoices Unexecuted instantiation: io.c:var_CountChoices Unexecuted instantiation: iso_lang.c:var_CountChoices Unexecuted instantiation: chroma_probe.c:var_CountChoices Unexecuted instantiation: clock_internal.c:var_CountChoices Unexecuted instantiation: input_clock.c:var_CountChoices |
696 | | |
697 | | static inline bool var_ToggleBool( vlc_object_t *p_obj, const char *psz_name ) |
698 | 0 | { |
699 | 0 | vlc_value_t val; |
700 | 0 | if( var_GetAndSet( p_obj, psz_name, VLC_VAR_BOOL_TOGGLE, &val ) ) |
701 | 0 | return false; |
702 | 0 | return val.b_bool; |
703 | 0 | } Unexecuted instantiation: demux-run.c:var_ToggleBool Unexecuted instantiation: common.c:var_ToggleBool Unexecuted instantiation: var.c:var_ToggleBool Unexecuted instantiation: decoder.c:var_ToggleBool Unexecuted instantiation: core.c:var_ToggleBool Unexecuted instantiation: error.c:var_ToggleBool Unexecuted instantiation: console.c:var_ToggleBool Unexecuted instantiation: aiff.c:var_ToggleBool Unexecuted instantiation: asf.c:var_ToggleBool Unexecuted instantiation: libasf.c:var_ToggleBool Unexecuted instantiation: asfpacket.c:var_ToggleBool Unexecuted instantiation: au.c:var_ToggleBool Unexecuted instantiation: avi.c:var_ToggleBool Unexecuted instantiation: libavi.c:var_ToggleBool Unexecuted instantiation: caf.c:var_ToggleBool Unexecuted instantiation: cdg.c:var_ToggleBool Unexecuted instantiation: es.c:var_ToggleBool Unexecuted instantiation: dts_header.c:var_ToggleBool Unexecuted instantiation: flac.c:var_ToggleBool Unexecuted instantiation: xiph_metadata.c:var_ToggleBool Unexecuted instantiation: h26x.c:var_ToggleBool Unexecuted instantiation: mjpeg.c:var_ToggleBool Unexecuted instantiation: mp4.c:var_ToggleBool Unexecuted instantiation: fragments.c:var_ToggleBool Unexecuted instantiation: attachments.c:var_ToggleBool Unexecuted instantiation: heif.c:var_ToggleBool Unexecuted instantiation: essetup.c:var_ToggleBool Unexecuted instantiation: meta.c:var_ToggleBool Unexecuted instantiation: libmp4.c:var_ToggleBool Unexecuted instantiation: nsv.c:var_ToggleBool Unexecuted instantiation: ps.c:var_ToggleBool Unexecuted instantiation: pva.c:var_ToggleBool Unexecuted instantiation: sap.c:var_ToggleBool Unexecuted instantiation: sdp.c:var_ToggleBool Unexecuted instantiation: smf.c:var_ToggleBool Unexecuted instantiation: subtitle.c:var_ToggleBool Unexecuted instantiation: tta.c:var_ToggleBool Unexecuted instantiation: ttml.c:var_ToggleBool Unexecuted instantiation: encttml.c:var_ToggleBool Unexecuted instantiation: substtml.c:var_ToggleBool Unexecuted instantiation: genttml.c:var_ToggleBool Unexecuted instantiation: ty.c:var_ToggleBool Unexecuted instantiation: voc.c:var_ToggleBool Unexecuted instantiation: wav.c:var_ToggleBool Unexecuted instantiation: webvtt.c:var_ToggleBool Unexecuted instantiation: encvtt.c:var_ToggleBool Unexecuted instantiation: subsvtt.c:var_ToggleBool Unexecuted instantiation: css_parser.c:var_ToggleBool Unexecuted instantiation: css_style.c:var_ToggleBool Unexecuted instantiation: CSSGrammar.c:var_ToggleBool Unexecuted instantiation: libwebvtt_plugin_la-CSSLexer.c:var_ToggleBool Unexecuted instantiation: xa.c:var_ToggleBool Unexecuted instantiation: a52.c:var_ToggleBool Unexecuted instantiation: copy.c:var_ToggleBool Unexecuted instantiation: dts.c:var_ToggleBool Unexecuted instantiation: h264.c:var_ToggleBool Unexecuted instantiation: hxxx_sei.c:var_ToggleBool Unexecuted instantiation: hxxx_common.c:var_ToggleBool Unexecuted instantiation: h264_nal.c:var_ToggleBool Unexecuted instantiation: h264_slice.c:var_ToggleBool Unexecuted instantiation: hevc.c:var_ToggleBool Unexecuted instantiation: hevc_nal.c:var_ToggleBool Unexecuted instantiation: mlp.c:var_ToggleBool Unexecuted instantiation: mpeg4audio.c:var_ToggleBool Unexecuted instantiation: mpeg4video.c:var_ToggleBool Unexecuted instantiation: mpegaudio.c:var_ToggleBool Unexecuted instantiation: mpegvideo.c:var_ToggleBool Unexecuted instantiation: vc1.c:var_ToggleBool Unexecuted instantiation: rawaud.c:var_ToggleBool Unexecuted instantiation: rawvid.c:var_ToggleBool Unexecuted instantiation: fs.c:var_ToggleBool Unexecuted instantiation: file.c:var_ToggleBool Unexecuted instantiation: directory.c:var_ToggleBool Unexecuted instantiation: libxml.c:var_ToggleBool Unexecuted instantiation: ogg.c:var_ToggleBool Unexecuted instantiation: oggseek.c:var_ToggleBool Unexecuted instantiation: ogg_granule.c:var_ToggleBool Unexecuted instantiation: mkv.cpp:var_ToggleBool(vlc_object_t*, char const*) Unexecuted instantiation: util.cpp:var_ToggleBool(vlc_object_t*, char const*) Unexecuted instantiation: virtual_segment.cpp:var_ToggleBool(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment.cpp:var_ToggleBool(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment_parse.cpp:var_ToggleBool(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment_seeker.cpp:var_ToggleBool(vlc_object_t*, char const*) Unexecuted instantiation: demux.cpp:var_ToggleBool(vlc_object_t*, char const*) Unexecuted instantiation: events.cpp:var_ToggleBool(vlc_object_t*, char const*) Unexecuted instantiation: Ebml_parser.cpp:var_ToggleBool(vlc_object_t*, char const*) Unexecuted instantiation: chapters.cpp:var_ToggleBool(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command.cpp:var_ToggleBool(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_dvd.cpp:var_ToggleBool(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_script.cpp:var_ToggleBool(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_script_common.cpp:var_ToggleBool(vlc_object_t*, char const*) Unexecuted instantiation: stream_io_callback.cpp:var_ToggleBool(vlc_object_t*, char const*) Unexecuted instantiation: vlc_colors.c:var_ToggleBool Unexecuted instantiation: adpcm.c:var_ToggleBool Unexecuted instantiation: aes3.c:var_ToggleBool Unexecuted instantiation: araw.c:var_ToggleBool Unexecuted instantiation: g711.c:var_ToggleBool Unexecuted instantiation: lpcm.c:var_ToggleBool Unexecuted instantiation: uleaddvaudio.c:var_ToggleBool Unexecuted instantiation: rawvideo.c:var_ToggleBool Unexecuted instantiation: cc.c:var_ToggleBool Unexecuted instantiation: cea708.c:var_ToggleBool Unexecuted instantiation: cvdsub.c:var_ToggleBool Unexecuted instantiation: dvbsub.c:var_ToggleBool Unexecuted instantiation: scte18.c:var_ToggleBool Unexecuted instantiation: atsc_a65.c:var_ToggleBool Unexecuted instantiation: scte27.c:var_ToggleBool Unexecuted instantiation: spudec.c:var_ToggleBool Unexecuted instantiation: parse.c:var_ToggleBool Unexecuted instantiation: stl.c:var_ToggleBool Unexecuted instantiation: subsdec.c:var_ToggleBool Unexecuted instantiation: subsusf.c:var_ToggleBool Unexecuted instantiation: svcdsub.c:var_ToggleBool Unexecuted instantiation: textst.c:var_ToggleBool Unexecuted instantiation: substx3g.c:var_ToggleBool Unexecuted instantiation: libvlc.c:var_ToggleBool Unexecuted instantiation: version.c:var_ToggleBool Unexecuted instantiation: chain.c:var_ToggleBool Unexecuted instantiation: help.c:var_ToggleBool Unexecuted instantiation: cmdline.c:var_ToggleBool Unexecuted instantiation: getopt.c:var_ToggleBool Unexecuted instantiation: libc.c:var_ToggleBool Unexecuted instantiation: media_source.c:var_ToggleBool Unexecuted instantiation: media_tree.c:var_ToggleBool Unexecuted instantiation: modules.c:var_ToggleBool Unexecuted instantiation: bank.c:var_ToggleBool Unexecuted instantiation: entry.c:var_ToggleBool Unexecuted instantiation: textdomain.c:var_ToggleBool Unexecuted instantiation: dialog.c:var_ToggleBool Unexecuted instantiation: interface.c:var_ToggleBool Unexecuted instantiation: content.c:var_ToggleBool Unexecuted instantiation: control.c:var_ToggleBool Unexecuted instantiation: item.c:var_ToggleBool Unexecuted instantiation: notify.c:var_ToggleBool Unexecuted instantiation: player.c:var_ToggleBool Unexecuted instantiation: playlist.c:var_ToggleBool Unexecuted instantiation: preparse.c:var_ToggleBool Unexecuted instantiation: randomizer.c:var_ToggleBool Unexecuted instantiation: preparser.c:var_ToggleBool Unexecuted instantiation: access.c:var_ToggleBool Unexecuted instantiation: decoder_device.c:var_ToggleBool Unexecuted instantiation: decoder_helpers.c:var_ToggleBool Unexecuted instantiation: demux.c:var_ToggleBool Unexecuted instantiation: input.c:var_ToggleBool Unexecuted instantiation: attachment.c:var_ToggleBool Unexecuted instantiation: replay_gain.c:var_ToggleBool Unexecuted instantiation: timer.c:var_ToggleBool Unexecuted instantiation: track.c:var_ToggleBool Unexecuted instantiation: title.c:var_ToggleBool Unexecuted instantiation: aout.c:var_ToggleBool Unexecuted instantiation: vout.c:var_ToggleBool Unexecuted instantiation: osd.c:var_ToggleBool Unexecuted instantiation: medialib.c:var_ToggleBool Unexecuted instantiation: resource.c:var_ToggleBool Unexecuted instantiation: services_discovery.c:var_ToggleBool Unexecuted instantiation: source.c:var_ToggleBool Unexecuted instantiation: stats.c:var_ToggleBool Unexecuted instantiation: stream.c:var_ToggleBool Unexecuted instantiation: stream_extractor.c:var_ToggleBool Unexecuted instantiation: stream_filter.c:var_ToggleBool Unexecuted instantiation: stream_memory.c:var_ToggleBool Unexecuted instantiation: subtitles.c:var_ToggleBool Unexecuted instantiation: dec.c:var_ToggleBool Unexecuted instantiation: filters.c:var_ToggleBool Unexecuted instantiation: meter.c:var_ToggleBool Unexecuted instantiation: output.c:var_ToggleBool Unexecuted instantiation: volume.c:var_ToggleBool Unexecuted instantiation: video_output.c:var_ToggleBool Unexecuted instantiation: video_text.c:var_ToggleBool Unexecuted instantiation: video_widgets.c:var_ToggleBool Unexecuted instantiation: vout_subpictures.c:var_ToggleBool Unexecuted instantiation: video_window.c:var_ToggleBool Unexecuted instantiation: window.c:var_ToggleBool Unexecuted instantiation: vout_intf.c:var_ToggleBool Unexecuted instantiation: vout_wrapper.c:var_ToggleBool Unexecuted instantiation: udp.c:var_ToggleBool Unexecuted instantiation: charset.c:var_ToggleBool Unexecuted instantiation: memstream.c:var_ToggleBool Unexecuted instantiation: strings.c:var_ToggleBool Unexecuted instantiation: unicode.c:var_ToggleBool Unexecuted instantiation: url.c:var_ToggleBool Unexecuted instantiation: filesystem.c:var_ToggleBool Unexecuted instantiation: actions.c:var_ToggleBool Unexecuted instantiation: ancillary.c:var_ToggleBool Unexecuted instantiation: executor.c:var_ToggleBool Unexecuted instantiation: md5.c:var_ToggleBool Unexecuted instantiation: probe.c:var_ToggleBool Unexecuted instantiation: mtime.c:var_ToggleBool Unexecuted instantiation: frame.c:var_ToggleBool Unexecuted instantiation: fifo.c:var_ToggleBool Unexecuted instantiation: fourcc.c:var_ToggleBool Unexecuted instantiation: es_format.c:var_ToggleBool Unexecuted instantiation: picture.c:var_ToggleBool Unexecuted instantiation: picture_fifo.c:var_ToggleBool Unexecuted instantiation: picture_pool.c:var_ToggleBool Unexecuted instantiation: interrupt.c:var_ToggleBool Unexecuted instantiation: keystore.c:var_ToggleBool Unexecuted instantiation: rcu.c:var_ToggleBool Unexecuted instantiation: renderer_discovery.c:var_ToggleBool Unexecuted instantiation: threads.c:var_ToggleBool Unexecuted instantiation: cpu.c:var_ToggleBool Unexecuted instantiation: epg.c:var_ToggleBool Unexecuted instantiation: exit.c:var_ToggleBool Unexecuted instantiation: image.c:var_ToggleBool Unexecuted instantiation: messages.c:var_ToggleBool Unexecuted instantiation: tracer.c:var_ToggleBool Unexecuted instantiation: objects.c:var_ToggleBool Unexecuted instantiation: objres.c:var_ToggleBool Unexecuted instantiation: queue.c:var_ToggleBool Unexecuted instantiation: variables.c:var_ToggleBool Unexecuted instantiation: xml.c:var_ToggleBool Unexecuted instantiation: filter.c:var_ToggleBool Unexecuted instantiation: filter_chain.c:var_ToggleBool Unexecuted instantiation: httpcookies.c:var_ToggleBool Unexecuted instantiation: text_style.c:var_ToggleBool Unexecuted instantiation: sort.c:var_ToggleBool Unexecuted instantiation: subpicture.c:var_ToggleBool Unexecuted instantiation: medialibrary.c:var_ToggleBool Unexecuted instantiation: viewpoint.c:var_ToggleBool Unexecuted instantiation: thread.c:var_ToggleBool Unexecuted instantiation: rand.c:var_ToggleBool Unexecuted instantiation: specific.c:var_ToggleBool Unexecuted instantiation: stream_output.c:var_ToggleBool Unexecuted instantiation: vlm.c:var_ToggleBool Unexecuted instantiation: vlm_event.c:var_ToggleBool Unexecuted instantiation: vlmshell.c:var_ToggleBool Unexecuted instantiation: libvlc-module.c:var_ToggleBool Unexecuted instantiation: dirs.c:var_ToggleBool Unexecuted instantiation: art.c:var_ToggleBool Unexecuted instantiation: fetcher.c:var_ToggleBool Unexecuted instantiation: clock.c:var_ToggleBool Unexecuted instantiation: es_out.c:var_ToggleBool Unexecuted instantiation: es_out_source.c:var_ToggleBool Unexecuted instantiation: es_out_timeshift.c:var_ToggleBool Unexecuted instantiation: display.c:var_ToggleBool Unexecuted instantiation: inhibit.c:var_ToggleBool Unexecuted instantiation: interlacing.c:var_ToggleBool Unexecuted instantiation: snapshot.c:var_ToggleBool Unexecuted instantiation: getaddrinfo.c:var_ToggleBool Unexecuted instantiation: io.c:var_ToggleBool Unexecuted instantiation: iso_lang.c:var_ToggleBool Unexecuted instantiation: chroma_probe.c:var_ToggleBool Unexecuted instantiation: clock_internal.c:var_ToggleBool Unexecuted instantiation: input_clock.c:var_ToggleBool |
704 | | |
705 | | VLC_USED |
706 | | static inline bool var_InheritBool( vlc_object_t *obj, const char *name ) |
707 | 18.8k | { |
708 | 18.8k | vlc_value_t val; |
709 | | |
710 | 18.8k | if( var_Inherit( obj, name, VLC_VAR_BOOL, &val ) ) |
711 | 0 | val.b_bool = false; |
712 | 18.8k | return val.b_bool; |
713 | 18.8k | } Unexecuted instantiation: demux-run.c:var_InheritBool Unexecuted instantiation: common.c:var_InheritBool Unexecuted instantiation: var.c:var_InheritBool Unexecuted instantiation: decoder.c:var_InheritBool Unexecuted instantiation: core.c:var_InheritBool Unexecuted instantiation: error.c:var_InheritBool console.c:var_InheritBool Line | Count | Source | 707 | 52 | { | 708 | 52 | vlc_value_t val; | 709 | | | 710 | 52 | if( var_Inherit( obj, name, VLC_VAR_BOOL, &val ) ) | 711 | 0 | val.b_bool = false; | 712 | 52 | return val.b_bool; | 713 | 52 | } |
Unexecuted instantiation: aiff.c:var_InheritBool Unexecuted instantiation: asf.c:var_InheritBool Unexecuted instantiation: libasf.c:var_InheritBool Unexecuted instantiation: asfpacket.c:var_InheritBool Unexecuted instantiation: au.c:var_InheritBool Line | Count | Source | 707 | 13.6k | { | 708 | 13.6k | vlc_value_t val; | 709 | | | 710 | 13.6k | if( var_Inherit( obj, name, VLC_VAR_BOOL, &val ) ) | 711 | 0 | val.b_bool = false; | 712 | 13.6k | return val.b_bool; | 713 | 13.6k | } |
Unexecuted instantiation: libavi.c:var_InheritBool Unexecuted instantiation: caf.c:var_InheritBool Unexecuted instantiation: cdg.c:var_InheritBool Unexecuted instantiation: es.c:var_InheritBool Unexecuted instantiation: dts_header.c:var_InheritBool Unexecuted instantiation: flac.c:var_InheritBool Unexecuted instantiation: xiph_metadata.c:var_InheritBool Unexecuted instantiation: h26x.c:var_InheritBool Unexecuted instantiation: mjpeg.c:var_InheritBool Line | Count | Source | 707 | 2.46k | { | 708 | 2.46k | vlc_value_t val; | 709 | | | 710 | 2.46k | if( var_Inherit( obj, name, VLC_VAR_BOOL, &val ) ) | 711 | 0 | val.b_bool = false; | 712 | 2.46k | return val.b_bool; | 713 | 2.46k | } |
Unexecuted instantiation: fragments.c:var_InheritBool Unexecuted instantiation: attachments.c:var_InheritBool Unexecuted instantiation: heif.c:var_InheritBool Unexecuted instantiation: essetup.c:var_InheritBool Unexecuted instantiation: meta.c:var_InheritBool Unexecuted instantiation: libmp4.c:var_InheritBool Unexecuted instantiation: nsv.c:var_InheritBool Unexecuted instantiation: ps.c:var_InheritBool Unexecuted instantiation: pva.c:var_InheritBool Unexecuted instantiation: sap.c:var_InheritBool Unexecuted instantiation: sdp.c:var_InheritBool Unexecuted instantiation: smf.c:var_InheritBool Unexecuted instantiation: subtitle.c:var_InheritBool Unexecuted instantiation: tta.c:var_InheritBool Unexecuted instantiation: ttml.c:var_InheritBool Unexecuted instantiation: encttml.c:var_InheritBool Unexecuted instantiation: substtml.c:var_InheritBool Unexecuted instantiation: genttml.c:var_InheritBool Unexecuted instantiation: ty.c:var_InheritBool Unexecuted instantiation: voc.c:var_InheritBool Unexecuted instantiation: wav.c:var_InheritBool Unexecuted instantiation: webvtt.c:var_InheritBool Unexecuted instantiation: encvtt.c:var_InheritBool Unexecuted instantiation: subsvtt.c:var_InheritBool Unexecuted instantiation: css_parser.c:var_InheritBool Unexecuted instantiation: css_style.c:var_InheritBool Unexecuted instantiation: CSSGrammar.c:var_InheritBool Unexecuted instantiation: libwebvtt_plugin_la-CSSLexer.c:var_InheritBool Unexecuted instantiation: xa.c:var_InheritBool Unexecuted instantiation: a52.c:var_InheritBool Unexecuted instantiation: copy.c:var_InheritBool Unexecuted instantiation: dts.c:var_InheritBool Unexecuted instantiation: h264.c:var_InheritBool Unexecuted instantiation: hxxx_sei.c:var_InheritBool Unexecuted instantiation: hxxx_common.c:var_InheritBool Unexecuted instantiation: h264_nal.c:var_InheritBool Unexecuted instantiation: h264_slice.c:var_InheritBool Unexecuted instantiation: hevc.c:var_InheritBool Unexecuted instantiation: hevc_nal.c:var_InheritBool Unexecuted instantiation: mlp.c:var_InheritBool Unexecuted instantiation: mpeg4audio.c:var_InheritBool Unexecuted instantiation: mpeg4video.c:var_InheritBool Unexecuted instantiation: mpegaudio.c:var_InheritBool Unexecuted instantiation: mpegvideo.c:var_InheritBool Unexecuted instantiation: vc1.c:var_InheritBool Unexecuted instantiation: rawaud.c:var_InheritBool Unexecuted instantiation: rawvid.c:var_InheritBool Unexecuted instantiation: fs.c:var_InheritBool Unexecuted instantiation: file.c:var_InheritBool Unexecuted instantiation: directory.c:var_InheritBool Unexecuted instantiation: libxml.c:var_InheritBool Unexecuted instantiation: ogg.c:var_InheritBool Unexecuted instantiation: oggseek.c:var_InheritBool Unexecuted instantiation: ogg_granule.c:var_InheritBool Unexecuted instantiation: mkv.cpp:var_InheritBool(vlc_object_t*, char const*) Unexecuted instantiation: util.cpp:var_InheritBool(vlc_object_t*, char const*) Unexecuted instantiation: virtual_segment.cpp:var_InheritBool(vlc_object_t*, char const*) matroska_segment.cpp:var_InheritBool(vlc_object_t*, char const*) Line | Count | Source | 707 | 17 | { | 708 | 17 | vlc_value_t val; | 709 | | | 710 | 17 | if( var_Inherit( obj, name, VLC_VAR_BOOL, &val ) ) | 711 | 0 | val.b_bool = false; | 712 | 17 | return val.b_bool; | 713 | 17 | } |
Unexecuted instantiation: matroska_segment_parse.cpp:var_InheritBool(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment_seeker.cpp:var_InheritBool(vlc_object_t*, char const*) Unexecuted instantiation: demux.cpp:var_InheritBool(vlc_object_t*, char const*) Unexecuted instantiation: events.cpp:var_InheritBool(vlc_object_t*, char const*) Ebml_parser.cpp:var_InheritBool(vlc_object_t*, char const*) Line | Count | Source | 707 | 63 | { | 708 | 63 | vlc_value_t val; | 709 | | | 710 | 63 | if( var_Inherit( obj, name, VLC_VAR_BOOL, &val ) ) | 711 | 0 | val.b_bool = false; | 712 | 63 | return val.b_bool; | 713 | 63 | } |
Unexecuted instantiation: chapters.cpp:var_InheritBool(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command.cpp:var_InheritBool(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_dvd.cpp:var_InheritBool(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_script.cpp:var_InheritBool(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_script_common.cpp:var_InheritBool(vlc_object_t*, char const*) Unexecuted instantiation: stream_io_callback.cpp:var_InheritBool(vlc_object_t*, char const*) Unexecuted instantiation: vlc_colors.c:var_InheritBool Unexecuted instantiation: adpcm.c:var_InheritBool Unexecuted instantiation: aes3.c:var_InheritBool Unexecuted instantiation: araw.c:var_InheritBool Unexecuted instantiation: g711.c:var_InheritBool Unexecuted instantiation: lpcm.c:var_InheritBool Unexecuted instantiation: uleaddvaudio.c:var_InheritBool Unexecuted instantiation: rawvideo.c:var_InheritBool Line | Count | Source | 707 | 1.23k | { | 708 | 1.23k | vlc_value_t val; | 709 | | | 710 | 1.23k | if( var_Inherit( obj, name, VLC_VAR_BOOL, &val ) ) | 711 | 0 | val.b_bool = false; | 712 | 1.23k | return val.b_bool; | 713 | 1.23k | } |
Unexecuted instantiation: cea708.c:var_InheritBool Unexecuted instantiation: cvdsub.c:var_InheritBool Unexecuted instantiation: dvbsub.c:var_InheritBool Unexecuted instantiation: scte18.c:var_InheritBool Unexecuted instantiation: atsc_a65.c:var_InheritBool Unexecuted instantiation: scte27.c:var_InheritBool Line | Count | Source | 707 | 232 | { | 708 | 232 | vlc_value_t val; | 709 | | | 710 | 232 | if( var_Inherit( obj, name, VLC_VAR_BOOL, &val ) ) | 711 | 0 | val.b_bool = false; | 712 | 232 | return val.b_bool; | 713 | 232 | } |
Unexecuted instantiation: parse.c:var_InheritBool Unexecuted instantiation: stl.c:var_InheritBool subsdec.c:var_InheritBool Line | Count | Source | 707 | 741 | { | 708 | 741 | vlc_value_t val; | 709 | | | 710 | 741 | if( var_Inherit( obj, name, VLC_VAR_BOOL, &val ) ) | 711 | 0 | val.b_bool = false; | 712 | 741 | return val.b_bool; | 713 | 741 | } |
Unexecuted instantiation: subsusf.c:var_InheritBool Unexecuted instantiation: svcdsub.c:var_InheritBool Unexecuted instantiation: textst.c:var_InheritBool Unexecuted instantiation: substx3g.c:var_InheritBool Line | Count | Source | 707 | 104 | { | 708 | 104 | vlc_value_t val; | 709 | | | 710 | 104 | if( var_Inherit( obj, name, VLC_VAR_BOOL, &val ) ) | 711 | 0 | val.b_bool = false; | 712 | 104 | return val.b_bool; | 713 | 104 | } |
Unexecuted instantiation: version.c:var_InheritBool Unexecuted instantiation: chain.c:var_InheritBool Line | Count | Source | 707 | 312 | { | 708 | 312 | vlc_value_t val; | 709 | | | 710 | 312 | if( var_Inherit( obj, name, VLC_VAR_BOOL, &val ) ) | 711 | 0 | val.b_bool = false; | 712 | 312 | return val.b_bool; | 713 | 312 | } |
Unexecuted instantiation: cmdline.c:var_InheritBool Unexecuted instantiation: getopt.c:var_InheritBool Unexecuted instantiation: libc.c:var_InheritBool Unexecuted instantiation: media_source.c:var_InheritBool Unexecuted instantiation: media_tree.c:var_InheritBool Unexecuted instantiation: modules.c:var_InheritBool Unexecuted instantiation: bank.c:var_InheritBool Unexecuted instantiation: entry.c:var_InheritBool Unexecuted instantiation: textdomain.c:var_InheritBool Unexecuted instantiation: dialog.c:var_InheritBool Unexecuted instantiation: interface.c:var_InheritBool Unexecuted instantiation: content.c:var_InheritBool Unexecuted instantiation: control.c:var_InheritBool Unexecuted instantiation: item.c:var_InheritBool Unexecuted instantiation: notify.c:var_InheritBool Unexecuted instantiation: player.c:var_InheritBool Unexecuted instantiation: playlist.c:var_InheritBool Unexecuted instantiation: preparse.c:var_InheritBool Unexecuted instantiation: randomizer.c:var_InheritBool Unexecuted instantiation: preparser.c:var_InheritBool Unexecuted instantiation: access.c:var_InheritBool Unexecuted instantiation: decoder_device.c:var_InheritBool Unexecuted instantiation: decoder_helpers.c:var_InheritBool Unexecuted instantiation: demux.c:var_InheritBool Unexecuted instantiation: input.c:var_InheritBool Unexecuted instantiation: attachment.c:var_InheritBool Unexecuted instantiation: replay_gain.c:var_InheritBool Unexecuted instantiation: timer.c:var_InheritBool Unexecuted instantiation: track.c:var_InheritBool Unexecuted instantiation: title.c:var_InheritBool Unexecuted instantiation: aout.c:var_InheritBool Unexecuted instantiation: vout.c:var_InheritBool Unexecuted instantiation: osd.c:var_InheritBool Unexecuted instantiation: medialib.c:var_InheritBool Unexecuted instantiation: resource.c:var_InheritBool Unexecuted instantiation: services_discovery.c:var_InheritBool Unexecuted instantiation: source.c:var_InheritBool Unexecuted instantiation: stats.c:var_InheritBool Unexecuted instantiation: stream.c:var_InheritBool Unexecuted instantiation: stream_extractor.c:var_InheritBool Unexecuted instantiation: stream_filter.c:var_InheritBool Unexecuted instantiation: stream_memory.c:var_InheritBool Unexecuted instantiation: subtitles.c:var_InheritBool Unexecuted instantiation: dec.c:var_InheritBool Unexecuted instantiation: filters.c:var_InheritBool Unexecuted instantiation: meter.c:var_InheritBool Unexecuted instantiation: output.c:var_InheritBool Unexecuted instantiation: volume.c:var_InheritBool Unexecuted instantiation: video_output.c:var_InheritBool Unexecuted instantiation: video_text.c:var_InheritBool Unexecuted instantiation: video_widgets.c:var_InheritBool Unexecuted instantiation: vout_subpictures.c:var_InheritBool Unexecuted instantiation: video_window.c:var_InheritBool Unexecuted instantiation: window.c:var_InheritBool Unexecuted instantiation: vout_intf.c:var_InheritBool Unexecuted instantiation: vout_wrapper.c:var_InheritBool Unexecuted instantiation: udp.c:var_InheritBool Unexecuted instantiation: charset.c:var_InheritBool Unexecuted instantiation: memstream.c:var_InheritBool Unexecuted instantiation: strings.c:var_InheritBool Unexecuted instantiation: unicode.c:var_InheritBool Unexecuted instantiation: url.c:var_InheritBool Unexecuted instantiation: filesystem.c:var_InheritBool Unexecuted instantiation: actions.c:var_InheritBool Unexecuted instantiation: ancillary.c:var_InheritBool Unexecuted instantiation: executor.c:var_InheritBool Unexecuted instantiation: md5.c:var_InheritBool Unexecuted instantiation: probe.c:var_InheritBool Unexecuted instantiation: mtime.c:var_InheritBool Unexecuted instantiation: frame.c:var_InheritBool Unexecuted instantiation: fifo.c:var_InheritBool Unexecuted instantiation: fourcc.c:var_InheritBool Unexecuted instantiation: es_format.c:var_InheritBool Unexecuted instantiation: picture.c:var_InheritBool Unexecuted instantiation: picture_fifo.c:var_InheritBool Unexecuted instantiation: picture_pool.c:var_InheritBool Unexecuted instantiation: interrupt.c:var_InheritBool Unexecuted instantiation: keystore.c:var_InheritBool Unexecuted instantiation: rcu.c:var_InheritBool Unexecuted instantiation: renderer_discovery.c:var_InheritBool Unexecuted instantiation: threads.c:var_InheritBool Unexecuted instantiation: cpu.c:var_InheritBool Unexecuted instantiation: epg.c:var_InheritBool Unexecuted instantiation: exit.c:var_InheritBool Unexecuted instantiation: image.c:var_InheritBool Unexecuted instantiation: messages.c:var_InheritBool Unexecuted instantiation: tracer.c:var_InheritBool Unexecuted instantiation: objects.c:var_InheritBool Unexecuted instantiation: objres.c:var_InheritBool Unexecuted instantiation: queue.c:var_InheritBool Unexecuted instantiation: variables.c:var_InheritBool Unexecuted instantiation: xml.c:var_InheritBool Unexecuted instantiation: filter.c:var_InheritBool Unexecuted instantiation: filter_chain.c:var_InheritBool Unexecuted instantiation: httpcookies.c:var_InheritBool Unexecuted instantiation: text_style.c:var_InheritBool Unexecuted instantiation: sort.c:var_InheritBool Unexecuted instantiation: subpicture.c:var_InheritBool Unexecuted instantiation: medialibrary.c:var_InheritBool Unexecuted instantiation: viewpoint.c:var_InheritBool Unexecuted instantiation: thread.c:var_InheritBool Unexecuted instantiation: rand.c:var_InheritBool Unexecuted instantiation: specific.c:var_InheritBool Unexecuted instantiation: stream_output.c:var_InheritBool Unexecuted instantiation: vlm.c:var_InheritBool Unexecuted instantiation: vlm_event.c:var_InheritBool Unexecuted instantiation: vlmshell.c:var_InheritBool Unexecuted instantiation: libvlc-module.c:var_InheritBool Unexecuted instantiation: dirs.c:var_InheritBool Unexecuted instantiation: art.c:var_InheritBool Unexecuted instantiation: fetcher.c:var_InheritBool Unexecuted instantiation: clock.c:var_InheritBool Unexecuted instantiation: es_out.c:var_InheritBool Unexecuted instantiation: es_out_source.c:var_InheritBool Unexecuted instantiation: es_out_timeshift.c:var_InheritBool Unexecuted instantiation: display.c:var_InheritBool Unexecuted instantiation: inhibit.c:var_InheritBool Unexecuted instantiation: interlacing.c:var_InheritBool Unexecuted instantiation: snapshot.c:var_InheritBool Unexecuted instantiation: getaddrinfo.c:var_InheritBool Unexecuted instantiation: io.c:var_InheritBool Unexecuted instantiation: iso_lang.c:var_InheritBool Unexecuted instantiation: chroma_probe.c:var_InheritBool Unexecuted instantiation: clock_internal.c:var_InheritBool Unexecuted instantiation: input_clock.c:var_InheritBool |
714 | | |
715 | | VLC_USED |
716 | | static inline int64_t var_InheritInteger( vlc_object_t *obj, const char *name ) |
717 | 15.4k | { |
718 | 15.4k | vlc_value_t val; |
719 | | |
720 | 15.4k | if( var_Inherit( obj, name, VLC_VAR_INTEGER, &val ) ) |
721 | 0 | val.i_int = 0; |
722 | 15.4k | return val.i_int; |
723 | 15.4k | } Unexecuted instantiation: demux-run.c:var_InheritInteger Unexecuted instantiation: common.c:var_InheritInteger Unexecuted instantiation: var.c:var_InheritInteger Unexecuted instantiation: decoder.c:var_InheritInteger Unexecuted instantiation: core.c:var_InheritInteger Unexecuted instantiation: error.c:var_InheritInteger Unexecuted instantiation: console.c:var_InheritInteger Unexecuted instantiation: aiff.c:var_InheritInteger Unexecuted instantiation: asf.c:var_InheritInteger Unexecuted instantiation: libasf.c:var_InheritInteger Unexecuted instantiation: asfpacket.c:var_InheritInteger Unexecuted instantiation: au.c:var_InheritInteger Line | Count | Source | 717 | 11.2k | { | 718 | 11.2k | vlc_value_t val; | 719 | | | 720 | 11.2k | if( var_Inherit( obj, name, VLC_VAR_INTEGER, &val ) ) | 721 | 0 | val.i_int = 0; | 722 | 11.2k | return val.i_int; | 723 | 11.2k | } |
Unexecuted instantiation: libavi.c:var_InheritInteger Unexecuted instantiation: caf.c:var_InheritInteger Unexecuted instantiation: cdg.c:var_InheritInteger Unexecuted instantiation: es.c:var_InheritInteger Unexecuted instantiation: dts_header.c:var_InheritInteger Unexecuted instantiation: flac.c:var_InheritInteger Unexecuted instantiation: xiph_metadata.c:var_InheritInteger Unexecuted instantiation: h26x.c:var_InheritInteger Unexecuted instantiation: mjpeg.c:var_InheritInteger Unexecuted instantiation: mp4.c:var_InheritInteger Unexecuted instantiation: fragments.c:var_InheritInteger Unexecuted instantiation: attachments.c:var_InheritInteger Unexecuted instantiation: heif.c:var_InheritInteger Unexecuted instantiation: essetup.c:var_InheritInteger Unexecuted instantiation: meta.c:var_InheritInteger Unexecuted instantiation: libmp4.c:var_InheritInteger Unexecuted instantiation: nsv.c:var_InheritInteger Unexecuted instantiation: ps.c:var_InheritInteger Unexecuted instantiation: pva.c:var_InheritInteger Unexecuted instantiation: sap.c:var_InheritInteger Unexecuted instantiation: sdp.c:var_InheritInteger Unexecuted instantiation: smf.c:var_InheritInteger Unexecuted instantiation: subtitle.c:var_InheritInteger Unexecuted instantiation: tta.c:var_InheritInteger Unexecuted instantiation: ttml.c:var_InheritInteger Unexecuted instantiation: encttml.c:var_InheritInteger substtml.c:var_InheritInteger Line | Count | Source | 717 | 3.38k | { | 718 | 3.38k | vlc_value_t val; | 719 | | | 720 | 3.38k | if( var_Inherit( obj, name, VLC_VAR_INTEGER, &val ) ) | 721 | 0 | val.i_int = 0; | 722 | 3.38k | return val.i_int; | 723 | 3.38k | } |
Unexecuted instantiation: genttml.c:var_InheritInteger Unexecuted instantiation: ty.c:var_InheritInteger Unexecuted instantiation: voc.c:var_InheritInteger Unexecuted instantiation: wav.c:var_InheritInteger Unexecuted instantiation: webvtt.c:var_InheritInteger Unexecuted instantiation: encvtt.c:var_InheritInteger Unexecuted instantiation: subsvtt.c:var_InheritInteger Unexecuted instantiation: css_parser.c:var_InheritInteger Unexecuted instantiation: css_style.c:var_InheritInteger Unexecuted instantiation: CSSGrammar.c:var_InheritInteger Unexecuted instantiation: libwebvtt_plugin_la-CSSLexer.c:var_InheritInteger Unexecuted instantiation: xa.c:var_InheritInteger Unexecuted instantiation: a52.c:var_InheritInteger Unexecuted instantiation: copy.c:var_InheritInteger Unexecuted instantiation: dts.c:var_InheritInteger Unexecuted instantiation: h264.c:var_InheritInteger Unexecuted instantiation: hxxx_sei.c:var_InheritInteger Unexecuted instantiation: hxxx_common.c:var_InheritInteger Unexecuted instantiation: h264_nal.c:var_InheritInteger Unexecuted instantiation: h264_slice.c:var_InheritInteger Unexecuted instantiation: hevc.c:var_InheritInteger Unexecuted instantiation: hevc_nal.c:var_InheritInteger Unexecuted instantiation: mlp.c:var_InheritInteger Unexecuted instantiation: mpeg4audio.c:var_InheritInteger Unexecuted instantiation: mpeg4video.c:var_InheritInteger Unexecuted instantiation: mpegaudio.c:var_InheritInteger Unexecuted instantiation: mpegvideo.c:var_InheritInteger Unexecuted instantiation: vc1.c:var_InheritInteger Unexecuted instantiation: rawaud.c:var_InheritInteger Unexecuted instantiation: rawvid.c:var_InheritInteger Unexecuted instantiation: fs.c:var_InheritInteger Unexecuted instantiation: file.c:var_InheritInteger Unexecuted instantiation: directory.c:var_InheritInteger Unexecuted instantiation: libxml.c:var_InheritInteger Unexecuted instantiation: ogg.c:var_InheritInteger Unexecuted instantiation: oggseek.c:var_InheritInteger Unexecuted instantiation: ogg_granule.c:var_InheritInteger Unexecuted instantiation: mkv.cpp:var_InheritInteger(vlc_object_t*, char const*) Unexecuted instantiation: util.cpp:var_InheritInteger(vlc_object_t*, char const*) Unexecuted instantiation: virtual_segment.cpp:var_InheritInteger(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment.cpp:var_InheritInteger(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment_parse.cpp:var_InheritInteger(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment_seeker.cpp:var_InheritInteger(vlc_object_t*, char const*) Unexecuted instantiation: demux.cpp:var_InheritInteger(vlc_object_t*, char const*) Unexecuted instantiation: events.cpp:var_InheritInteger(vlc_object_t*, char const*) Unexecuted instantiation: Ebml_parser.cpp:var_InheritInteger(vlc_object_t*, char const*) Unexecuted instantiation: chapters.cpp:var_InheritInteger(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command.cpp:var_InheritInteger(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_dvd.cpp:var_InheritInteger(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_script.cpp:var_InheritInteger(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_script_common.cpp:var_InheritInteger(vlc_object_t*, char const*) Unexecuted instantiation: stream_io_callback.cpp:var_InheritInteger(vlc_object_t*, char const*) Unexecuted instantiation: vlc_colors.c:var_InheritInteger Unexecuted instantiation: adpcm.c:var_InheritInteger Unexecuted instantiation: aes3.c:var_InheritInteger Unexecuted instantiation: araw.c:var_InheritInteger Unexecuted instantiation: g711.c:var_InheritInteger Unexecuted instantiation: lpcm.c:var_InheritInteger Unexecuted instantiation: uleaddvaudio.c:var_InheritInteger Unexecuted instantiation: rawvideo.c:var_InheritInteger Unexecuted instantiation: cc.c:var_InheritInteger Unexecuted instantiation: cea708.c:var_InheritInteger Unexecuted instantiation: cvdsub.c:var_InheritInteger Unexecuted instantiation: dvbsub.c:var_InheritInteger Unexecuted instantiation: scte18.c:var_InheritInteger Unexecuted instantiation: atsc_a65.c:var_InheritInteger Unexecuted instantiation: scte27.c:var_InheritInteger Unexecuted instantiation: spudec.c:var_InheritInteger Unexecuted instantiation: parse.c:var_InheritInteger Unexecuted instantiation: stl.c:var_InheritInteger subsdec.c:var_InheritInteger Line | Count | Source | 717 | 749 | { | 718 | 749 | vlc_value_t val; | 719 | | | 720 | 749 | if( var_Inherit( obj, name, VLC_VAR_INTEGER, &val ) ) | 721 | 0 | val.i_int = 0; | 722 | 749 | return val.i_int; | 723 | 749 | } |
Unexecuted instantiation: subsusf.c:var_InheritInteger Unexecuted instantiation: svcdsub.c:var_InheritInteger Unexecuted instantiation: textst.c:var_InheritInteger Unexecuted instantiation: substx3g.c:var_InheritInteger Unexecuted instantiation: libvlc.c:var_InheritInteger Unexecuted instantiation: version.c:var_InheritInteger Unexecuted instantiation: chain.c:var_InheritInteger Unexecuted instantiation: help.c:var_InheritInteger Unexecuted instantiation: cmdline.c:var_InheritInteger Unexecuted instantiation: getopt.c:var_InheritInteger Unexecuted instantiation: libc.c:var_InheritInteger Unexecuted instantiation: media_source.c:var_InheritInteger Unexecuted instantiation: media_tree.c:var_InheritInteger Unexecuted instantiation: modules.c:var_InheritInteger Unexecuted instantiation: bank.c:var_InheritInteger Unexecuted instantiation: entry.c:var_InheritInteger Unexecuted instantiation: textdomain.c:var_InheritInteger Unexecuted instantiation: dialog.c:var_InheritInteger Unexecuted instantiation: interface.c:var_InheritInteger Unexecuted instantiation: content.c:var_InheritInteger Unexecuted instantiation: control.c:var_InheritInteger Unexecuted instantiation: item.c:var_InheritInteger Unexecuted instantiation: notify.c:var_InheritInteger Unexecuted instantiation: player.c:var_InheritInteger Unexecuted instantiation: playlist.c:var_InheritInteger Unexecuted instantiation: preparse.c:var_InheritInteger Unexecuted instantiation: randomizer.c:var_InheritInteger Unexecuted instantiation: preparser.c:var_InheritInteger Unexecuted instantiation: access.c:var_InheritInteger Unexecuted instantiation: decoder_device.c:var_InheritInteger Unexecuted instantiation: decoder_helpers.c:var_InheritInteger Unexecuted instantiation: demux.c:var_InheritInteger Unexecuted instantiation: input.c:var_InheritInteger Unexecuted instantiation: attachment.c:var_InheritInteger Unexecuted instantiation: replay_gain.c:var_InheritInteger Unexecuted instantiation: timer.c:var_InheritInteger Unexecuted instantiation: track.c:var_InheritInteger Unexecuted instantiation: title.c:var_InheritInteger Unexecuted instantiation: aout.c:var_InheritInteger Unexecuted instantiation: vout.c:var_InheritInteger Unexecuted instantiation: osd.c:var_InheritInteger Unexecuted instantiation: medialib.c:var_InheritInteger Unexecuted instantiation: resource.c:var_InheritInteger Unexecuted instantiation: services_discovery.c:var_InheritInteger Unexecuted instantiation: source.c:var_InheritInteger Unexecuted instantiation: stats.c:var_InheritInteger Unexecuted instantiation: stream.c:var_InheritInteger Unexecuted instantiation: stream_extractor.c:var_InheritInteger Unexecuted instantiation: stream_filter.c:var_InheritInteger Unexecuted instantiation: stream_memory.c:var_InheritInteger Unexecuted instantiation: subtitles.c:var_InheritInteger Unexecuted instantiation: dec.c:var_InheritInteger Unexecuted instantiation: filters.c:var_InheritInteger Unexecuted instantiation: meter.c:var_InheritInteger Unexecuted instantiation: output.c:var_InheritInteger Unexecuted instantiation: volume.c:var_InheritInteger Unexecuted instantiation: video_output.c:var_InheritInteger Unexecuted instantiation: video_text.c:var_InheritInteger Unexecuted instantiation: video_widgets.c:var_InheritInteger Unexecuted instantiation: vout_subpictures.c:var_InheritInteger Unexecuted instantiation: video_window.c:var_InheritInteger Unexecuted instantiation: window.c:var_InheritInteger Unexecuted instantiation: vout_intf.c:var_InheritInteger Unexecuted instantiation: vout_wrapper.c:var_InheritInteger Unexecuted instantiation: udp.c:var_InheritInteger Unexecuted instantiation: charset.c:var_InheritInteger Unexecuted instantiation: memstream.c:var_InheritInteger Unexecuted instantiation: strings.c:var_InheritInteger Unexecuted instantiation: unicode.c:var_InheritInteger Unexecuted instantiation: url.c:var_InheritInteger Unexecuted instantiation: filesystem.c:var_InheritInteger actions.c:var_InheritInteger Line | Count | Source | 717 | 104 | { | 718 | 104 | vlc_value_t val; | 719 | | | 720 | 104 | if( var_Inherit( obj, name, VLC_VAR_INTEGER, &val ) ) | 721 | 0 | val.i_int = 0; | 722 | 104 | return val.i_int; | 723 | 104 | } |
Unexecuted instantiation: ancillary.c:var_InheritInteger Unexecuted instantiation: executor.c:var_InheritInteger Unexecuted instantiation: md5.c:var_InheritInteger Unexecuted instantiation: probe.c:var_InheritInteger Unexecuted instantiation: mtime.c:var_InheritInteger Unexecuted instantiation: frame.c:var_InheritInteger Unexecuted instantiation: fifo.c:var_InheritInteger Unexecuted instantiation: fourcc.c:var_InheritInteger Unexecuted instantiation: es_format.c:var_InheritInteger Unexecuted instantiation: picture.c:var_InheritInteger Unexecuted instantiation: picture_fifo.c:var_InheritInteger Unexecuted instantiation: picture_pool.c:var_InheritInteger Unexecuted instantiation: interrupt.c:var_InheritInteger Unexecuted instantiation: keystore.c:var_InheritInteger Unexecuted instantiation: rcu.c:var_InheritInteger Unexecuted instantiation: renderer_discovery.c:var_InheritInteger Unexecuted instantiation: threads.c:var_InheritInteger Unexecuted instantiation: cpu.c:var_InheritInteger Unexecuted instantiation: epg.c:var_InheritInteger Unexecuted instantiation: exit.c:var_InheritInteger Unexecuted instantiation: image.c:var_InheritInteger Unexecuted instantiation: messages.c:var_InheritInteger Unexecuted instantiation: tracer.c:var_InheritInteger Unexecuted instantiation: objects.c:var_InheritInteger Unexecuted instantiation: objres.c:var_InheritInteger Unexecuted instantiation: queue.c:var_InheritInteger Unexecuted instantiation: variables.c:var_InheritInteger Unexecuted instantiation: xml.c:var_InheritInteger Unexecuted instantiation: filter.c:var_InheritInteger Unexecuted instantiation: filter_chain.c:var_InheritInteger Unexecuted instantiation: httpcookies.c:var_InheritInteger Unexecuted instantiation: text_style.c:var_InheritInteger Unexecuted instantiation: sort.c:var_InheritInteger Unexecuted instantiation: subpicture.c:var_InheritInteger Unexecuted instantiation: medialibrary.c:var_InheritInteger Unexecuted instantiation: viewpoint.c:var_InheritInteger Unexecuted instantiation: thread.c:var_InheritInteger Unexecuted instantiation: rand.c:var_InheritInteger Unexecuted instantiation: specific.c:var_InheritInteger Unexecuted instantiation: stream_output.c:var_InheritInteger Unexecuted instantiation: vlm.c:var_InheritInteger Unexecuted instantiation: vlm_event.c:var_InheritInteger Unexecuted instantiation: vlmshell.c:var_InheritInteger Unexecuted instantiation: libvlc-module.c:var_InheritInteger Unexecuted instantiation: dirs.c:var_InheritInteger Unexecuted instantiation: art.c:var_InheritInteger Unexecuted instantiation: fetcher.c:var_InheritInteger Unexecuted instantiation: clock.c:var_InheritInteger Unexecuted instantiation: es_out.c:var_InheritInteger Unexecuted instantiation: es_out_source.c:var_InheritInteger Unexecuted instantiation: es_out_timeshift.c:var_InheritInteger Unexecuted instantiation: display.c:var_InheritInteger Unexecuted instantiation: inhibit.c:var_InheritInteger Unexecuted instantiation: interlacing.c:var_InheritInteger Unexecuted instantiation: snapshot.c:var_InheritInteger Unexecuted instantiation: getaddrinfo.c:var_InheritInteger Unexecuted instantiation: io.c:var_InheritInteger Unexecuted instantiation: iso_lang.c:var_InheritInteger Unexecuted instantiation: chroma_probe.c:var_InheritInteger Unexecuted instantiation: clock_internal.c:var_InheritInteger Unexecuted instantiation: input_clock.c:var_InheritInteger |
724 | | |
725 | | VLC_USED |
726 | | static inline float var_InheritFloat( vlc_object_t *obj, const char *name ) |
727 | 10.1k | { |
728 | 10.1k | vlc_value_t val; |
729 | | |
730 | 10.1k | if( var_Inherit( obj, name, VLC_VAR_FLOAT, &val ) ) |
731 | 0 | val.f_float = 0.; |
732 | 10.1k | return val.f_float; |
733 | 10.1k | } Unexecuted instantiation: demux-run.c:var_InheritFloat Unexecuted instantiation: common.c:var_InheritFloat Unexecuted instantiation: var.c:var_InheritFloat Unexecuted instantiation: decoder.c:var_InheritFloat Unexecuted instantiation: core.c:var_InheritFloat Unexecuted instantiation: error.c:var_InheritFloat Unexecuted instantiation: console.c:var_InheritFloat Unexecuted instantiation: aiff.c:var_InheritFloat Unexecuted instantiation: asf.c:var_InheritFloat Unexecuted instantiation: libasf.c:var_InheritFloat Unexecuted instantiation: asfpacket.c:var_InheritFloat Unexecuted instantiation: au.c:var_InheritFloat Unexecuted instantiation: avi.c:var_InheritFloat Unexecuted instantiation: libavi.c:var_InheritFloat Unexecuted instantiation: caf.c:var_InheritFloat Unexecuted instantiation: cdg.c:var_InheritFloat Line | Count | Source | 727 | 9.49k | { | 728 | 9.49k | vlc_value_t val; | 729 | | | 730 | 9.49k | if( var_Inherit( obj, name, VLC_VAR_FLOAT, &val ) ) | 731 | 0 | val.f_float = 0.; | 732 | 9.49k | return val.f_float; | 733 | 9.49k | } |
Unexecuted instantiation: dts_header.c:var_InheritFloat Unexecuted instantiation: flac.c:var_InheritFloat Unexecuted instantiation: xiph_metadata.c:var_InheritFloat Unexecuted instantiation: h26x.c:var_InheritFloat Unexecuted instantiation: mjpeg.c:var_InheritFloat Unexecuted instantiation: mp4.c:var_InheritFloat Unexecuted instantiation: fragments.c:var_InheritFloat Unexecuted instantiation: attachments.c:var_InheritFloat Line | Count | Source | 727 | 674 | { | 728 | 674 | vlc_value_t val; | 729 | | | 730 | 674 | if( var_Inherit( obj, name, VLC_VAR_FLOAT, &val ) ) | 731 | 0 | val.f_float = 0.; | 732 | 674 | return val.f_float; | 733 | 674 | } |
Unexecuted instantiation: essetup.c:var_InheritFloat Unexecuted instantiation: meta.c:var_InheritFloat Unexecuted instantiation: libmp4.c:var_InheritFloat Unexecuted instantiation: nsv.c:var_InheritFloat Unexecuted instantiation: ps.c:var_InheritFloat Unexecuted instantiation: pva.c:var_InheritFloat Unexecuted instantiation: sap.c:var_InheritFloat Unexecuted instantiation: sdp.c:var_InheritFloat Unexecuted instantiation: smf.c:var_InheritFloat Unexecuted instantiation: subtitle.c:var_InheritFloat Unexecuted instantiation: tta.c:var_InheritFloat Unexecuted instantiation: ttml.c:var_InheritFloat Unexecuted instantiation: encttml.c:var_InheritFloat Unexecuted instantiation: substtml.c:var_InheritFloat Unexecuted instantiation: genttml.c:var_InheritFloat Unexecuted instantiation: ty.c:var_InheritFloat Unexecuted instantiation: voc.c:var_InheritFloat Unexecuted instantiation: wav.c:var_InheritFloat Unexecuted instantiation: webvtt.c:var_InheritFloat Unexecuted instantiation: encvtt.c:var_InheritFloat Unexecuted instantiation: subsvtt.c:var_InheritFloat Unexecuted instantiation: css_parser.c:var_InheritFloat Unexecuted instantiation: css_style.c:var_InheritFloat Unexecuted instantiation: CSSGrammar.c:var_InheritFloat Unexecuted instantiation: libwebvtt_plugin_la-CSSLexer.c:var_InheritFloat Unexecuted instantiation: xa.c:var_InheritFloat Unexecuted instantiation: a52.c:var_InheritFloat Unexecuted instantiation: copy.c:var_InheritFloat Unexecuted instantiation: dts.c:var_InheritFloat Unexecuted instantiation: h264.c:var_InheritFloat Unexecuted instantiation: hxxx_sei.c:var_InheritFloat Unexecuted instantiation: hxxx_common.c:var_InheritFloat Unexecuted instantiation: h264_nal.c:var_InheritFloat Unexecuted instantiation: h264_slice.c:var_InheritFloat Unexecuted instantiation: hevc.c:var_InheritFloat Unexecuted instantiation: hevc_nal.c:var_InheritFloat Unexecuted instantiation: mlp.c:var_InheritFloat Unexecuted instantiation: mpeg4audio.c:var_InheritFloat Unexecuted instantiation: mpeg4video.c:var_InheritFloat Unexecuted instantiation: mpegaudio.c:var_InheritFloat Unexecuted instantiation: mpegvideo.c:var_InheritFloat Unexecuted instantiation: vc1.c:var_InheritFloat Unexecuted instantiation: rawaud.c:var_InheritFloat Unexecuted instantiation: rawvid.c:var_InheritFloat Unexecuted instantiation: fs.c:var_InheritFloat Unexecuted instantiation: file.c:var_InheritFloat Unexecuted instantiation: directory.c:var_InheritFloat Unexecuted instantiation: libxml.c:var_InheritFloat Unexecuted instantiation: ogg.c:var_InheritFloat Unexecuted instantiation: oggseek.c:var_InheritFloat Unexecuted instantiation: ogg_granule.c:var_InheritFloat Unexecuted instantiation: mkv.cpp:var_InheritFloat(vlc_object_t*, char const*) Unexecuted instantiation: util.cpp:var_InheritFloat(vlc_object_t*, char const*) Unexecuted instantiation: virtual_segment.cpp:var_InheritFloat(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment.cpp:var_InheritFloat(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment_parse.cpp:var_InheritFloat(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment_seeker.cpp:var_InheritFloat(vlc_object_t*, char const*) Unexecuted instantiation: demux.cpp:var_InheritFloat(vlc_object_t*, char const*) Unexecuted instantiation: events.cpp:var_InheritFloat(vlc_object_t*, char const*) Unexecuted instantiation: Ebml_parser.cpp:var_InheritFloat(vlc_object_t*, char const*) Unexecuted instantiation: chapters.cpp:var_InheritFloat(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command.cpp:var_InheritFloat(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_dvd.cpp:var_InheritFloat(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_script.cpp:var_InheritFloat(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_script_common.cpp:var_InheritFloat(vlc_object_t*, char const*) Unexecuted instantiation: stream_io_callback.cpp:var_InheritFloat(vlc_object_t*, char const*) Unexecuted instantiation: vlc_colors.c:var_InheritFloat Unexecuted instantiation: adpcm.c:var_InheritFloat Unexecuted instantiation: aes3.c:var_InheritFloat Unexecuted instantiation: araw.c:var_InheritFloat Unexecuted instantiation: g711.c:var_InheritFloat Unexecuted instantiation: lpcm.c:var_InheritFloat Unexecuted instantiation: uleaddvaudio.c:var_InheritFloat Unexecuted instantiation: rawvideo.c:var_InheritFloat Unexecuted instantiation: cc.c:var_InheritFloat Unexecuted instantiation: cea708.c:var_InheritFloat Unexecuted instantiation: cvdsub.c:var_InheritFloat Unexecuted instantiation: dvbsub.c:var_InheritFloat Unexecuted instantiation: scte18.c:var_InheritFloat Unexecuted instantiation: atsc_a65.c:var_InheritFloat Unexecuted instantiation: scte27.c:var_InheritFloat Unexecuted instantiation: spudec.c:var_InheritFloat Unexecuted instantiation: parse.c:var_InheritFloat Unexecuted instantiation: stl.c:var_InheritFloat Unexecuted instantiation: subsdec.c:var_InheritFloat Unexecuted instantiation: subsusf.c:var_InheritFloat Unexecuted instantiation: svcdsub.c:var_InheritFloat Unexecuted instantiation: textst.c:var_InheritFloat Unexecuted instantiation: substx3g.c:var_InheritFloat Unexecuted instantiation: libvlc.c:var_InheritFloat Unexecuted instantiation: version.c:var_InheritFloat Unexecuted instantiation: chain.c:var_InheritFloat Unexecuted instantiation: help.c:var_InheritFloat Unexecuted instantiation: cmdline.c:var_InheritFloat Unexecuted instantiation: getopt.c:var_InheritFloat Unexecuted instantiation: libc.c:var_InheritFloat Unexecuted instantiation: media_source.c:var_InheritFloat Unexecuted instantiation: media_tree.c:var_InheritFloat Unexecuted instantiation: modules.c:var_InheritFloat Unexecuted instantiation: bank.c:var_InheritFloat Unexecuted instantiation: entry.c:var_InheritFloat Unexecuted instantiation: textdomain.c:var_InheritFloat Unexecuted instantiation: dialog.c:var_InheritFloat Unexecuted instantiation: interface.c:var_InheritFloat Unexecuted instantiation: content.c:var_InheritFloat Unexecuted instantiation: control.c:var_InheritFloat Unexecuted instantiation: item.c:var_InheritFloat Unexecuted instantiation: notify.c:var_InheritFloat Unexecuted instantiation: player.c:var_InheritFloat Unexecuted instantiation: playlist.c:var_InheritFloat Unexecuted instantiation: preparse.c:var_InheritFloat Unexecuted instantiation: randomizer.c:var_InheritFloat Unexecuted instantiation: preparser.c:var_InheritFloat Unexecuted instantiation: access.c:var_InheritFloat Unexecuted instantiation: decoder_device.c:var_InheritFloat Unexecuted instantiation: decoder_helpers.c:var_InheritFloat Unexecuted instantiation: demux.c:var_InheritFloat Unexecuted instantiation: input.c:var_InheritFloat Unexecuted instantiation: attachment.c:var_InheritFloat Unexecuted instantiation: replay_gain.c:var_InheritFloat Unexecuted instantiation: timer.c:var_InheritFloat Unexecuted instantiation: track.c:var_InheritFloat Unexecuted instantiation: title.c:var_InheritFloat Unexecuted instantiation: aout.c:var_InheritFloat Unexecuted instantiation: vout.c:var_InheritFloat Unexecuted instantiation: osd.c:var_InheritFloat Unexecuted instantiation: medialib.c:var_InheritFloat Unexecuted instantiation: resource.c:var_InheritFloat Unexecuted instantiation: services_discovery.c:var_InheritFloat Unexecuted instantiation: source.c:var_InheritFloat Unexecuted instantiation: stats.c:var_InheritFloat Unexecuted instantiation: stream.c:var_InheritFloat Unexecuted instantiation: stream_extractor.c:var_InheritFloat Unexecuted instantiation: stream_filter.c:var_InheritFloat Unexecuted instantiation: stream_memory.c:var_InheritFloat Unexecuted instantiation: subtitles.c:var_InheritFloat Unexecuted instantiation: dec.c:var_InheritFloat Unexecuted instantiation: filters.c:var_InheritFloat Unexecuted instantiation: meter.c:var_InheritFloat Unexecuted instantiation: output.c:var_InheritFloat Unexecuted instantiation: volume.c:var_InheritFloat Unexecuted instantiation: video_output.c:var_InheritFloat Unexecuted instantiation: video_text.c:var_InheritFloat Unexecuted instantiation: video_widgets.c:var_InheritFloat Unexecuted instantiation: vout_subpictures.c:var_InheritFloat Unexecuted instantiation: video_window.c:var_InheritFloat Unexecuted instantiation: window.c:var_InheritFloat Unexecuted instantiation: vout_intf.c:var_InheritFloat Unexecuted instantiation: vout_wrapper.c:var_InheritFloat Unexecuted instantiation: udp.c:var_InheritFloat Unexecuted instantiation: charset.c:var_InheritFloat Unexecuted instantiation: memstream.c:var_InheritFloat Unexecuted instantiation: strings.c:var_InheritFloat Unexecuted instantiation: unicode.c:var_InheritFloat Unexecuted instantiation: url.c:var_InheritFloat Unexecuted instantiation: filesystem.c:var_InheritFloat Unexecuted instantiation: actions.c:var_InheritFloat Unexecuted instantiation: ancillary.c:var_InheritFloat Unexecuted instantiation: executor.c:var_InheritFloat Unexecuted instantiation: md5.c:var_InheritFloat Unexecuted instantiation: probe.c:var_InheritFloat Unexecuted instantiation: mtime.c:var_InheritFloat Unexecuted instantiation: frame.c:var_InheritFloat Unexecuted instantiation: fifo.c:var_InheritFloat Unexecuted instantiation: fourcc.c:var_InheritFloat Unexecuted instantiation: es_format.c:var_InheritFloat Unexecuted instantiation: picture.c:var_InheritFloat Unexecuted instantiation: picture_fifo.c:var_InheritFloat Unexecuted instantiation: picture_pool.c:var_InheritFloat Unexecuted instantiation: interrupt.c:var_InheritFloat Unexecuted instantiation: keystore.c:var_InheritFloat Unexecuted instantiation: rcu.c:var_InheritFloat Unexecuted instantiation: renderer_discovery.c:var_InheritFloat Unexecuted instantiation: threads.c:var_InheritFloat Unexecuted instantiation: cpu.c:var_InheritFloat Unexecuted instantiation: epg.c:var_InheritFloat Unexecuted instantiation: exit.c:var_InheritFloat Unexecuted instantiation: image.c:var_InheritFloat Unexecuted instantiation: messages.c:var_InheritFloat Unexecuted instantiation: tracer.c:var_InheritFloat Unexecuted instantiation: objects.c:var_InheritFloat Unexecuted instantiation: objres.c:var_InheritFloat Unexecuted instantiation: queue.c:var_InheritFloat Unexecuted instantiation: variables.c:var_InheritFloat Unexecuted instantiation: xml.c:var_InheritFloat Unexecuted instantiation: filter.c:var_InheritFloat Unexecuted instantiation: filter_chain.c:var_InheritFloat Unexecuted instantiation: httpcookies.c:var_InheritFloat Unexecuted instantiation: text_style.c:var_InheritFloat Unexecuted instantiation: sort.c:var_InheritFloat Unexecuted instantiation: subpicture.c:var_InheritFloat Unexecuted instantiation: medialibrary.c:var_InheritFloat Unexecuted instantiation: viewpoint.c:var_InheritFloat Unexecuted instantiation: thread.c:var_InheritFloat Unexecuted instantiation: rand.c:var_InheritFloat Unexecuted instantiation: specific.c:var_InheritFloat Unexecuted instantiation: stream_output.c:var_InheritFloat Unexecuted instantiation: vlm.c:var_InheritFloat Unexecuted instantiation: vlm_event.c:var_InheritFloat Unexecuted instantiation: vlmshell.c:var_InheritFloat Unexecuted instantiation: libvlc-module.c:var_InheritFloat Unexecuted instantiation: dirs.c:var_InheritFloat Unexecuted instantiation: art.c:var_InheritFloat Unexecuted instantiation: fetcher.c:var_InheritFloat Unexecuted instantiation: clock.c:var_InheritFloat Unexecuted instantiation: es_out.c:var_InheritFloat Unexecuted instantiation: es_out_source.c:var_InheritFloat Unexecuted instantiation: es_out_timeshift.c:var_InheritFloat Unexecuted instantiation: display.c:var_InheritFloat Unexecuted instantiation: inhibit.c:var_InheritFloat Unexecuted instantiation: interlacing.c:var_InheritFloat Unexecuted instantiation: snapshot.c:var_InheritFloat Unexecuted instantiation: getaddrinfo.c:var_InheritFloat Unexecuted instantiation: io.c:var_InheritFloat Unexecuted instantiation: iso_lang.c:var_InheritFloat Unexecuted instantiation: chroma_probe.c:var_InheritFloat Unexecuted instantiation: clock_internal.c:var_InheritFloat Unexecuted instantiation: input_clock.c:var_InheritFloat |
734 | | |
735 | | VLC_USED VLC_MALLOC |
736 | | static inline char *var_InheritString( vlc_object_t *obj, const char *name ) |
737 | 13.6k | { |
738 | 13.6k | vlc_value_t val; |
739 | | |
740 | 13.6k | if( var_Inherit( obj, name, VLC_VAR_STRING, &val ) ) |
741 | 0 | val.psz_string = NULL; |
742 | 13.6k | else if( val.psz_string && !*val.psz_string ) |
743 | 0 | { |
744 | 0 | free( val.psz_string ); |
745 | 0 | val.psz_string = NULL; |
746 | 0 | } |
747 | 13.6k | return val.psz_string; |
748 | 13.6k | } Unexecuted instantiation: demux-run.c:var_InheritString Unexecuted instantiation: common.c:var_InheritString Unexecuted instantiation: var.c:var_InheritString Unexecuted instantiation: decoder.c:var_InheritString Unexecuted instantiation: core.c:var_InheritString Unexecuted instantiation: error.c:var_InheritString Unexecuted instantiation: console.c:var_InheritString Unexecuted instantiation: aiff.c:var_InheritString Unexecuted instantiation: asf.c:var_InheritString Unexecuted instantiation: libasf.c:var_InheritString Unexecuted instantiation: asfpacket.c:var_InheritString Unexecuted instantiation: au.c:var_InheritString Unexecuted instantiation: avi.c:var_InheritString Unexecuted instantiation: libavi.c:var_InheritString Unexecuted instantiation: caf.c:var_InheritString Unexecuted instantiation: cdg.c:var_InheritString Unexecuted instantiation: es.c:var_InheritString Unexecuted instantiation: dts_header.c:var_InheritString Unexecuted instantiation: flac.c:var_InheritString Unexecuted instantiation: xiph_metadata.c:var_InheritString Unexecuted instantiation: h26x.c:var_InheritString Unexecuted instantiation: mjpeg.c:var_InheritString Unexecuted instantiation: mp4.c:var_InheritString Unexecuted instantiation: fragments.c:var_InheritString Unexecuted instantiation: attachments.c:var_InheritString Unexecuted instantiation: heif.c:var_InheritString Unexecuted instantiation: essetup.c:var_InheritString Unexecuted instantiation: meta.c:var_InheritString Unexecuted instantiation: libmp4.c:var_InheritString Unexecuted instantiation: nsv.c:var_InheritString Unexecuted instantiation: ps.c:var_InheritString Unexecuted instantiation: pva.c:var_InheritString Unexecuted instantiation: sap.c:var_InheritString Unexecuted instantiation: sdp.c:var_InheritString Unexecuted instantiation: smf.c:var_InheritString subtitle.c:var_InheritString Line | Count | Source | 737 | 847 | { | 738 | 847 | vlc_value_t val; | 739 | | | 740 | 847 | if( var_Inherit( obj, name, VLC_VAR_STRING, &val ) ) | 741 | 0 | val.psz_string = NULL; | 742 | 847 | else if( val.psz_string && !*val.psz_string ) | 743 | 0 | { | 744 | 0 | free( val.psz_string ); | 745 | 0 | val.psz_string = NULL; | 746 | 0 | } | 747 | 847 | return val.psz_string; | 748 | 847 | } |
Unexecuted instantiation: tta.c:var_InheritString Unexecuted instantiation: ttml.c:var_InheritString Unexecuted instantiation: encttml.c:var_InheritString Unexecuted instantiation: substtml.c:var_InheritString Unexecuted instantiation: genttml.c:var_InheritString Unexecuted instantiation: ty.c:var_InheritString Unexecuted instantiation: voc.c:var_InheritString Unexecuted instantiation: wav.c:var_InheritString Unexecuted instantiation: webvtt.c:var_InheritString Unexecuted instantiation: encvtt.c:var_InheritString Unexecuted instantiation: subsvtt.c:var_InheritString Unexecuted instantiation: css_parser.c:var_InheritString Unexecuted instantiation: css_style.c:var_InheritString Unexecuted instantiation: CSSGrammar.c:var_InheritString Unexecuted instantiation: libwebvtt_plugin_la-CSSLexer.c:var_InheritString Unexecuted instantiation: xa.c:var_InheritString Unexecuted instantiation: a52.c:var_InheritString Unexecuted instantiation: copy.c:var_InheritString Unexecuted instantiation: dts.c:var_InheritString Unexecuted instantiation: h264.c:var_InheritString Unexecuted instantiation: hxxx_sei.c:var_InheritString Unexecuted instantiation: hxxx_common.c:var_InheritString Unexecuted instantiation: h264_nal.c:var_InheritString Unexecuted instantiation: h264_slice.c:var_InheritString Unexecuted instantiation: hevc.c:var_InheritString Unexecuted instantiation: hevc_nal.c:var_InheritString Unexecuted instantiation: mlp.c:var_InheritString Unexecuted instantiation: mpeg4audio.c:var_InheritString Unexecuted instantiation: mpeg4video.c:var_InheritString Unexecuted instantiation: mpegaudio.c:var_InheritString Unexecuted instantiation: mpegvideo.c:var_InheritString Unexecuted instantiation: vc1.c:var_InheritString Unexecuted instantiation: rawaud.c:var_InheritString Unexecuted instantiation: rawvid.c:var_InheritString Unexecuted instantiation: fs.c:var_InheritString Unexecuted instantiation: file.c:var_InheritString Unexecuted instantiation: directory.c:var_InheritString Unexecuted instantiation: libxml.c:var_InheritString Unexecuted instantiation: ogg.c:var_InheritString Unexecuted instantiation: oggseek.c:var_InheritString Unexecuted instantiation: ogg_granule.c:var_InheritString Unexecuted instantiation: mkv.cpp:var_InheritString(vlc_object_t*, char const*) Unexecuted instantiation: util.cpp:var_InheritString(vlc_object_t*, char const*) Unexecuted instantiation: virtual_segment.cpp:var_InheritString(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment.cpp:var_InheritString(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment_parse.cpp:var_InheritString(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment_seeker.cpp:var_InheritString(vlc_object_t*, char const*) Unexecuted instantiation: demux.cpp:var_InheritString(vlc_object_t*, char const*) Unexecuted instantiation: events.cpp:var_InheritString(vlc_object_t*, char const*) Unexecuted instantiation: Ebml_parser.cpp:var_InheritString(vlc_object_t*, char const*) Unexecuted instantiation: chapters.cpp:var_InheritString(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command.cpp:var_InheritString(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_dvd.cpp:var_InheritString(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_script.cpp:var_InheritString(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_script_common.cpp:var_InheritString(vlc_object_t*, char const*) Unexecuted instantiation: stream_io_callback.cpp:var_InheritString(vlc_object_t*, char const*) Unexecuted instantiation: vlc_colors.c:var_InheritString Unexecuted instantiation: adpcm.c:var_InheritString Unexecuted instantiation: aes3.c:var_InheritString Unexecuted instantiation: araw.c:var_InheritString Unexecuted instantiation: g711.c:var_InheritString Unexecuted instantiation: lpcm.c:var_InheritString Unexecuted instantiation: uleaddvaudio.c:var_InheritString Unexecuted instantiation: rawvideo.c:var_InheritString Unexecuted instantiation: cc.c:var_InheritString Unexecuted instantiation: cea708.c:var_InheritString Unexecuted instantiation: cvdsub.c:var_InheritString Unexecuted instantiation: dvbsub.c:var_InheritString Unexecuted instantiation: scte18.c:var_InheritString Unexecuted instantiation: atsc_a65.c:var_InheritString Unexecuted instantiation: scte27.c:var_InheritString Unexecuted instantiation: spudec.c:var_InheritString Unexecuted instantiation: parse.c:var_InheritString Unexecuted instantiation: stl.c:var_InheritString subsdec.c:var_InheritString Line | Count | Source | 737 | 741 | { | 738 | 741 | vlc_value_t val; | 739 | | | 740 | 741 | if( var_Inherit( obj, name, VLC_VAR_STRING, &val ) ) | 741 | 0 | val.psz_string = NULL; | 742 | 741 | else if( val.psz_string && !*val.psz_string ) | 743 | 0 | { | 744 | 0 | free( val.psz_string ); | 745 | 0 | val.psz_string = NULL; | 746 | 0 | } | 747 | 741 | return val.psz_string; | 748 | 741 | } |
Unexecuted instantiation: subsusf.c:var_InheritString Unexecuted instantiation: svcdsub.c:var_InheritString Unexecuted instantiation: textst.c:var_InheritString Unexecuted instantiation: substx3g.c:var_InheritString libvlc.c:var_InheritString Line | Count | Source | 737 | 260 | { | 738 | 260 | vlc_value_t val; | 739 | | | 740 | 260 | if( var_Inherit( obj, name, VLC_VAR_STRING, &val ) ) | 741 | 0 | val.psz_string = NULL; | 742 | 260 | else if( val.psz_string && !*val.psz_string ) | 743 | 0 | { | 744 | 0 | free( val.psz_string ); | 745 | 0 | val.psz_string = NULL; | 746 | 0 | } | 747 | 260 | return val.psz_string; | 748 | 260 | } |
Unexecuted instantiation: version.c:var_InheritString Unexecuted instantiation: chain.c:var_InheritString Line | Count | Source | 737 | 52 | { | 738 | 52 | vlc_value_t val; | 739 | | | 740 | 52 | if( var_Inherit( obj, name, VLC_VAR_STRING, &val ) ) | 741 | 0 | val.psz_string = NULL; | 742 | 52 | else if( val.psz_string && !*val.psz_string ) | 743 | 0 | { | 744 | 0 | free( val.psz_string ); | 745 | 0 | val.psz_string = NULL; | 746 | 0 | } | 747 | 52 | return val.psz_string; | 748 | 52 | } |
Unexecuted instantiation: cmdline.c:var_InheritString Unexecuted instantiation: getopt.c:var_InheritString Unexecuted instantiation: libc.c:var_InheritString Unexecuted instantiation: media_source.c:var_InheritString Unexecuted instantiation: media_tree.c:var_InheritString Unexecuted instantiation: modules.c:var_InheritString Unexecuted instantiation: bank.c:var_InheritString Unexecuted instantiation: entry.c:var_InheritString Unexecuted instantiation: textdomain.c:var_InheritString Unexecuted instantiation: dialog.c:var_InheritString Unexecuted instantiation: interface.c:var_InheritString Unexecuted instantiation: content.c:var_InheritString Unexecuted instantiation: control.c:var_InheritString Unexecuted instantiation: item.c:var_InheritString Unexecuted instantiation: notify.c:var_InheritString Unexecuted instantiation: player.c:var_InheritString Unexecuted instantiation: playlist.c:var_InheritString Unexecuted instantiation: preparse.c:var_InheritString Unexecuted instantiation: randomizer.c:var_InheritString Unexecuted instantiation: preparser.c:var_InheritString Unexecuted instantiation: access.c:var_InheritString Unexecuted instantiation: decoder_device.c:var_InheritString Unexecuted instantiation: decoder_helpers.c:var_InheritString Unexecuted instantiation: demux.c:var_InheritString Unexecuted instantiation: input.c:var_InheritString Unexecuted instantiation: attachment.c:var_InheritString Unexecuted instantiation: replay_gain.c:var_InheritString Unexecuted instantiation: timer.c:var_InheritString Unexecuted instantiation: track.c:var_InheritString Unexecuted instantiation: title.c:var_InheritString Unexecuted instantiation: aout.c:var_InheritString Unexecuted instantiation: vout.c:var_InheritString Unexecuted instantiation: osd.c:var_InheritString Unexecuted instantiation: medialib.c:var_InheritString Unexecuted instantiation: resource.c:var_InheritString Unexecuted instantiation: services_discovery.c:var_InheritString Unexecuted instantiation: source.c:var_InheritString Unexecuted instantiation: stats.c:var_InheritString Unexecuted instantiation: stream.c:var_InheritString Unexecuted instantiation: stream_extractor.c:var_InheritString Unexecuted instantiation: stream_filter.c:var_InheritString Unexecuted instantiation: stream_memory.c:var_InheritString Unexecuted instantiation: subtitles.c:var_InheritString Unexecuted instantiation: dec.c:var_InheritString Unexecuted instantiation: filters.c:var_InheritString Unexecuted instantiation: meter.c:var_InheritString Unexecuted instantiation: output.c:var_InheritString Unexecuted instantiation: volume.c:var_InheritString Unexecuted instantiation: video_output.c:var_InheritString Unexecuted instantiation: video_text.c:var_InheritString Unexecuted instantiation: video_widgets.c:var_InheritString Unexecuted instantiation: vout_subpictures.c:var_InheritString Unexecuted instantiation: video_window.c:var_InheritString Unexecuted instantiation: window.c:var_InheritString Unexecuted instantiation: vout_intf.c:var_InheritString Unexecuted instantiation: vout_wrapper.c:var_InheritString Unexecuted instantiation: udp.c:var_InheritString Unexecuted instantiation: charset.c:var_InheritString Unexecuted instantiation: memstream.c:var_InheritString Unexecuted instantiation: strings.c:var_InheritString Unexecuted instantiation: unicode.c:var_InheritString Unexecuted instantiation: url.c:var_InheritString Unexecuted instantiation: filesystem.c:var_InheritString actions.c:var_InheritString Line | Count | Source | 737 | 11.7k | { | 738 | 11.7k | vlc_value_t val; | 739 | | | 740 | 11.7k | if( var_Inherit( obj, name, VLC_VAR_STRING, &val ) ) | 741 | 0 | val.psz_string = NULL; | 742 | 11.7k | else if( val.psz_string && !*val.psz_string ) | 743 | 0 | { | 744 | 0 | free( val.psz_string ); | 745 | 0 | val.psz_string = NULL; | 746 | 0 | } | 747 | 11.7k | return val.psz_string; | 748 | 11.7k | } |
Unexecuted instantiation: ancillary.c:var_InheritString Unexecuted instantiation: executor.c:var_InheritString Unexecuted instantiation: md5.c:var_InheritString Unexecuted instantiation: probe.c:var_InheritString Unexecuted instantiation: mtime.c:var_InheritString Unexecuted instantiation: frame.c:var_InheritString Unexecuted instantiation: fifo.c:var_InheritString Unexecuted instantiation: fourcc.c:var_InheritString Unexecuted instantiation: es_format.c:var_InheritString Unexecuted instantiation: picture.c:var_InheritString Unexecuted instantiation: picture_fifo.c:var_InheritString Unexecuted instantiation: picture_pool.c:var_InheritString Unexecuted instantiation: interrupt.c:var_InheritString Unexecuted instantiation: keystore.c:var_InheritString Unexecuted instantiation: rcu.c:var_InheritString Unexecuted instantiation: renderer_discovery.c:var_InheritString Unexecuted instantiation: threads.c:var_InheritString Unexecuted instantiation: cpu.c:var_InheritString Unexecuted instantiation: epg.c:var_InheritString Unexecuted instantiation: exit.c:var_InheritString Unexecuted instantiation: image.c:var_InheritString Unexecuted instantiation: messages.c:var_InheritString Unexecuted instantiation: tracer.c:var_InheritString Unexecuted instantiation: objects.c:var_InheritString Unexecuted instantiation: objres.c:var_InheritString Unexecuted instantiation: queue.c:var_InheritString Unexecuted instantiation: variables.c:var_InheritString Unexecuted instantiation: xml.c:var_InheritString Unexecuted instantiation: filter.c:var_InheritString Unexecuted instantiation: filter_chain.c:var_InheritString Unexecuted instantiation: httpcookies.c:var_InheritString Unexecuted instantiation: text_style.c:var_InheritString Unexecuted instantiation: sort.c:var_InheritString Unexecuted instantiation: subpicture.c:var_InheritString Unexecuted instantiation: medialibrary.c:var_InheritString Unexecuted instantiation: viewpoint.c:var_InheritString Unexecuted instantiation: thread.c:var_InheritString Unexecuted instantiation: rand.c:var_InheritString Unexecuted instantiation: specific.c:var_InheritString Unexecuted instantiation: stream_output.c:var_InheritString Unexecuted instantiation: vlm.c:var_InheritString Unexecuted instantiation: vlm_event.c:var_InheritString Unexecuted instantiation: vlmshell.c:var_InheritString Unexecuted instantiation: libvlc-module.c:var_InheritString Unexecuted instantiation: dirs.c:var_InheritString Unexecuted instantiation: art.c:var_InheritString Unexecuted instantiation: fetcher.c:var_InheritString Unexecuted instantiation: clock.c:var_InheritString Unexecuted instantiation: es_out.c:var_InheritString Unexecuted instantiation: es_out_source.c:var_InheritString Unexecuted instantiation: es_out_timeshift.c:var_InheritString Unexecuted instantiation: display.c:var_InheritString Unexecuted instantiation: inhibit.c:var_InheritString Unexecuted instantiation: interlacing.c:var_InheritString Unexecuted instantiation: snapshot.c:var_InheritString Unexecuted instantiation: getaddrinfo.c:var_InheritString Unexecuted instantiation: io.c:var_InheritString Unexecuted instantiation: iso_lang.c:var_InheritString Unexecuted instantiation: chroma_probe.c:var_InheritString Unexecuted instantiation: clock_internal.c:var_InheritString Unexecuted instantiation: input_clock.c:var_InheritString |
749 | | |
750 | | VLC_USED |
751 | | static inline void *var_InheritAddress( vlc_object_t *obj, const char *name ) |
752 | 0 | { |
753 | 0 | vlc_value_t val; |
754 | |
|
755 | 0 | if( var_Inherit( obj, name, VLC_VAR_ADDRESS, &val ) ) |
756 | 0 | val.p_address = NULL; |
757 | 0 | return val.p_address; |
758 | 0 | } Unexecuted instantiation: demux-run.c:var_InheritAddress Unexecuted instantiation: common.c:var_InheritAddress Unexecuted instantiation: var.c:var_InheritAddress Unexecuted instantiation: decoder.c:var_InheritAddress Unexecuted instantiation: core.c:var_InheritAddress Unexecuted instantiation: error.c:var_InheritAddress Unexecuted instantiation: console.c:var_InheritAddress Unexecuted instantiation: aiff.c:var_InheritAddress Unexecuted instantiation: asf.c:var_InheritAddress Unexecuted instantiation: libasf.c:var_InheritAddress Unexecuted instantiation: asfpacket.c:var_InheritAddress Unexecuted instantiation: au.c:var_InheritAddress Unexecuted instantiation: avi.c:var_InheritAddress Unexecuted instantiation: libavi.c:var_InheritAddress Unexecuted instantiation: caf.c:var_InheritAddress Unexecuted instantiation: cdg.c:var_InheritAddress Unexecuted instantiation: es.c:var_InheritAddress Unexecuted instantiation: dts_header.c:var_InheritAddress Unexecuted instantiation: flac.c:var_InheritAddress Unexecuted instantiation: xiph_metadata.c:var_InheritAddress Unexecuted instantiation: h26x.c:var_InheritAddress Unexecuted instantiation: mjpeg.c:var_InheritAddress Unexecuted instantiation: mp4.c:var_InheritAddress Unexecuted instantiation: fragments.c:var_InheritAddress Unexecuted instantiation: attachments.c:var_InheritAddress Unexecuted instantiation: heif.c:var_InheritAddress Unexecuted instantiation: essetup.c:var_InheritAddress Unexecuted instantiation: meta.c:var_InheritAddress Unexecuted instantiation: libmp4.c:var_InheritAddress Unexecuted instantiation: nsv.c:var_InheritAddress Unexecuted instantiation: ps.c:var_InheritAddress Unexecuted instantiation: pva.c:var_InheritAddress Unexecuted instantiation: sap.c:var_InheritAddress Unexecuted instantiation: sdp.c:var_InheritAddress Unexecuted instantiation: smf.c:var_InheritAddress Unexecuted instantiation: subtitle.c:var_InheritAddress Unexecuted instantiation: tta.c:var_InheritAddress Unexecuted instantiation: ttml.c:var_InheritAddress Unexecuted instantiation: encttml.c:var_InheritAddress Unexecuted instantiation: substtml.c:var_InheritAddress Unexecuted instantiation: genttml.c:var_InheritAddress Unexecuted instantiation: ty.c:var_InheritAddress Unexecuted instantiation: voc.c:var_InheritAddress Unexecuted instantiation: wav.c:var_InheritAddress Unexecuted instantiation: webvtt.c:var_InheritAddress Unexecuted instantiation: encvtt.c:var_InheritAddress Unexecuted instantiation: subsvtt.c:var_InheritAddress Unexecuted instantiation: css_parser.c:var_InheritAddress Unexecuted instantiation: css_style.c:var_InheritAddress Unexecuted instantiation: CSSGrammar.c:var_InheritAddress Unexecuted instantiation: libwebvtt_plugin_la-CSSLexer.c:var_InheritAddress Unexecuted instantiation: xa.c:var_InheritAddress Unexecuted instantiation: a52.c:var_InheritAddress Unexecuted instantiation: copy.c:var_InheritAddress Unexecuted instantiation: dts.c:var_InheritAddress Unexecuted instantiation: h264.c:var_InheritAddress Unexecuted instantiation: hxxx_sei.c:var_InheritAddress Unexecuted instantiation: hxxx_common.c:var_InheritAddress Unexecuted instantiation: h264_nal.c:var_InheritAddress Unexecuted instantiation: h264_slice.c:var_InheritAddress Unexecuted instantiation: hevc.c:var_InheritAddress Unexecuted instantiation: hevc_nal.c:var_InheritAddress Unexecuted instantiation: mlp.c:var_InheritAddress Unexecuted instantiation: mpeg4audio.c:var_InheritAddress Unexecuted instantiation: mpeg4video.c:var_InheritAddress Unexecuted instantiation: mpegaudio.c:var_InheritAddress Unexecuted instantiation: mpegvideo.c:var_InheritAddress Unexecuted instantiation: vc1.c:var_InheritAddress Unexecuted instantiation: rawaud.c:var_InheritAddress Unexecuted instantiation: rawvid.c:var_InheritAddress Unexecuted instantiation: fs.c:var_InheritAddress Unexecuted instantiation: file.c:var_InheritAddress Unexecuted instantiation: directory.c:var_InheritAddress Unexecuted instantiation: libxml.c:var_InheritAddress Unexecuted instantiation: ogg.c:var_InheritAddress Unexecuted instantiation: oggseek.c:var_InheritAddress Unexecuted instantiation: ogg_granule.c:var_InheritAddress Unexecuted instantiation: mkv.cpp:var_InheritAddress(vlc_object_t*, char const*) Unexecuted instantiation: util.cpp:var_InheritAddress(vlc_object_t*, char const*) Unexecuted instantiation: virtual_segment.cpp:var_InheritAddress(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment.cpp:var_InheritAddress(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment_parse.cpp:var_InheritAddress(vlc_object_t*, char const*) Unexecuted instantiation: matroska_segment_seeker.cpp:var_InheritAddress(vlc_object_t*, char const*) Unexecuted instantiation: demux.cpp:var_InheritAddress(vlc_object_t*, char const*) Unexecuted instantiation: events.cpp:var_InheritAddress(vlc_object_t*, char const*) Unexecuted instantiation: Ebml_parser.cpp:var_InheritAddress(vlc_object_t*, char const*) Unexecuted instantiation: chapters.cpp:var_InheritAddress(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command.cpp:var_InheritAddress(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_dvd.cpp:var_InheritAddress(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_script.cpp:var_InheritAddress(vlc_object_t*, char const*) Unexecuted instantiation: chapter_command_script_common.cpp:var_InheritAddress(vlc_object_t*, char const*) Unexecuted instantiation: stream_io_callback.cpp:var_InheritAddress(vlc_object_t*, char const*) Unexecuted instantiation: vlc_colors.c:var_InheritAddress Unexecuted instantiation: adpcm.c:var_InheritAddress Unexecuted instantiation: aes3.c:var_InheritAddress Unexecuted instantiation: araw.c:var_InheritAddress Unexecuted instantiation: g711.c:var_InheritAddress Unexecuted instantiation: lpcm.c:var_InheritAddress Unexecuted instantiation: uleaddvaudio.c:var_InheritAddress Unexecuted instantiation: rawvideo.c:var_InheritAddress Unexecuted instantiation: cc.c:var_InheritAddress Unexecuted instantiation: cea708.c:var_InheritAddress Unexecuted instantiation: cvdsub.c:var_InheritAddress Unexecuted instantiation: dvbsub.c:var_InheritAddress Unexecuted instantiation: scte18.c:var_InheritAddress Unexecuted instantiation: atsc_a65.c:var_InheritAddress Unexecuted instantiation: scte27.c:var_InheritAddress Unexecuted instantiation: spudec.c:var_InheritAddress Unexecuted instantiation: parse.c:var_InheritAddress Unexecuted instantiation: stl.c:var_InheritAddress Unexecuted instantiation: subsdec.c:var_InheritAddress Unexecuted instantiation: subsusf.c:var_InheritAddress Unexecuted instantiation: svcdsub.c:var_InheritAddress Unexecuted instantiation: textst.c:var_InheritAddress Unexecuted instantiation: substx3g.c:var_InheritAddress Unexecuted instantiation: libvlc.c:var_InheritAddress Unexecuted instantiation: version.c:var_InheritAddress Unexecuted instantiation: chain.c:var_InheritAddress Unexecuted instantiation: help.c:var_InheritAddress Unexecuted instantiation: cmdline.c:var_InheritAddress Unexecuted instantiation: getopt.c:var_InheritAddress Unexecuted instantiation: libc.c:var_InheritAddress Unexecuted instantiation: media_source.c:var_InheritAddress Unexecuted instantiation: media_tree.c:var_InheritAddress Unexecuted instantiation: modules.c:var_InheritAddress Unexecuted instantiation: bank.c:var_InheritAddress Unexecuted instantiation: entry.c:var_InheritAddress Unexecuted instantiation: textdomain.c:var_InheritAddress Unexecuted instantiation: dialog.c:var_InheritAddress Unexecuted instantiation: interface.c:var_InheritAddress Unexecuted instantiation: content.c:var_InheritAddress Unexecuted instantiation: control.c:var_InheritAddress Unexecuted instantiation: item.c:var_InheritAddress Unexecuted instantiation: notify.c:var_InheritAddress Unexecuted instantiation: player.c:var_InheritAddress Unexecuted instantiation: playlist.c:var_InheritAddress Unexecuted instantiation: preparse.c:var_InheritAddress Unexecuted instantiation: randomizer.c:var_InheritAddress Unexecuted instantiation: preparser.c:var_InheritAddress Unexecuted instantiation: access.c:var_InheritAddress Unexecuted instantiation: decoder_device.c:var_InheritAddress Unexecuted instantiation: decoder_helpers.c:var_InheritAddress Unexecuted instantiation: demux.c:var_InheritAddress Unexecuted instantiation: input.c:var_InheritAddress Unexecuted instantiation: attachment.c:var_InheritAddress Unexecuted instantiation: replay_gain.c:var_InheritAddress Unexecuted instantiation: timer.c:var_InheritAddress Unexecuted instantiation: track.c:var_InheritAddress Unexecuted instantiation: title.c:var_InheritAddress Unexecuted instantiation: aout.c:var_InheritAddress Unexecuted instantiation: vout.c:var_InheritAddress Unexecuted instantiation: osd.c:var_InheritAddress Unexecuted instantiation: medialib.c:var_InheritAddress Unexecuted instantiation: resource.c:var_InheritAddress Unexecuted instantiation: services_discovery.c:var_InheritAddress Unexecuted instantiation: source.c:var_InheritAddress Unexecuted instantiation: stats.c:var_InheritAddress Unexecuted instantiation: stream.c:var_InheritAddress Unexecuted instantiation: stream_extractor.c:var_InheritAddress Unexecuted instantiation: stream_filter.c:var_InheritAddress Unexecuted instantiation: stream_memory.c:var_InheritAddress Unexecuted instantiation: subtitles.c:var_InheritAddress Unexecuted instantiation: dec.c:var_InheritAddress Unexecuted instantiation: filters.c:var_InheritAddress Unexecuted instantiation: meter.c:var_InheritAddress Unexecuted instantiation: output.c:var_InheritAddress Unexecuted instantiation: volume.c:var_InheritAddress Unexecuted instantiation: video_output.c:var_InheritAddress Unexecuted instantiation: video_text.c:var_InheritAddress Unexecuted instantiation: video_widgets.c:var_InheritAddress Unexecuted instantiation: vout_subpictures.c:var_InheritAddress Unexecuted instantiation: video_window.c:var_InheritAddress Unexecuted instantiation: window.c:var_InheritAddress Unexecuted instantiation: vout_intf.c:var_InheritAddress Unexecuted instantiation: vout_wrapper.c:var_InheritAddress Unexecuted instantiation: udp.c:var_InheritAddress Unexecuted instantiation: charset.c:var_InheritAddress Unexecuted instantiation: memstream.c:var_InheritAddress Unexecuted instantiation: strings.c:var_InheritAddress Unexecuted instantiation: unicode.c:var_InheritAddress Unexecuted instantiation: url.c:var_InheritAddress Unexecuted instantiation: filesystem.c:var_InheritAddress Unexecuted instantiation: actions.c:var_InheritAddress Unexecuted instantiation: ancillary.c:var_InheritAddress Unexecuted instantiation: executor.c:var_InheritAddress Unexecuted instantiation: md5.c:var_InheritAddress Unexecuted instantiation: probe.c:var_InheritAddress Unexecuted instantiation: mtime.c:var_InheritAddress Unexecuted instantiation: frame.c:var_InheritAddress Unexecuted instantiation: fifo.c:var_InheritAddress Unexecuted instantiation: fourcc.c:var_InheritAddress Unexecuted instantiation: es_format.c:var_InheritAddress Unexecuted instantiation: picture.c:var_InheritAddress Unexecuted instantiation: picture_fifo.c:var_InheritAddress Unexecuted instantiation: picture_pool.c:var_InheritAddress Unexecuted instantiation: interrupt.c:var_InheritAddress Unexecuted instantiation: keystore.c:var_InheritAddress Unexecuted instantiation: rcu.c:var_InheritAddress Unexecuted instantiation: renderer_discovery.c:var_InheritAddress Unexecuted instantiation: threads.c:var_InheritAddress Unexecuted instantiation: cpu.c:var_InheritAddress Unexecuted instantiation: epg.c:var_InheritAddress Unexecuted instantiation: exit.c:var_InheritAddress Unexecuted instantiation: image.c:var_InheritAddress Unexecuted instantiation: messages.c:var_InheritAddress Unexecuted instantiation: tracer.c:var_InheritAddress Unexecuted instantiation: objects.c:var_InheritAddress Unexecuted instantiation: objres.c:var_InheritAddress Unexecuted instantiation: queue.c:var_InheritAddress Unexecuted instantiation: variables.c:var_InheritAddress Unexecuted instantiation: xml.c:var_InheritAddress Unexecuted instantiation: filter.c:var_InheritAddress Unexecuted instantiation: filter_chain.c:var_InheritAddress Unexecuted instantiation: httpcookies.c:var_InheritAddress Unexecuted instantiation: text_style.c:var_InheritAddress Unexecuted instantiation: sort.c:var_InheritAddress Unexecuted instantiation: subpicture.c:var_InheritAddress Unexecuted instantiation: medialibrary.c:var_InheritAddress Unexecuted instantiation: viewpoint.c:var_InheritAddress Unexecuted instantiation: thread.c:var_InheritAddress Unexecuted instantiation: rand.c:var_InheritAddress Unexecuted instantiation: specific.c:var_InheritAddress Unexecuted instantiation: stream_output.c:var_InheritAddress Unexecuted instantiation: vlm.c:var_InheritAddress Unexecuted instantiation: vlm_event.c:var_InheritAddress Unexecuted instantiation: vlmshell.c:var_InheritAddress Unexecuted instantiation: libvlc-module.c:var_InheritAddress Unexecuted instantiation: dirs.c:var_InheritAddress Unexecuted instantiation: art.c:var_InheritAddress Unexecuted instantiation: fetcher.c:var_InheritAddress Unexecuted instantiation: clock.c:var_InheritAddress Unexecuted instantiation: es_out.c:var_InheritAddress Unexecuted instantiation: es_out_source.c:var_InheritAddress Unexecuted instantiation: es_out_timeshift.c:var_InheritAddress Unexecuted instantiation: display.c:var_InheritAddress Unexecuted instantiation: inhibit.c:var_InheritAddress Unexecuted instantiation: interlacing.c:var_InheritAddress Unexecuted instantiation: snapshot.c:var_InheritAddress Unexecuted instantiation: getaddrinfo.c:var_InheritAddress Unexecuted instantiation: io.c:var_InheritAddress Unexecuted instantiation: iso_lang.c:var_InheritAddress Unexecuted instantiation: chroma_probe.c:var_InheritAddress Unexecuted instantiation: clock_internal.c:var_InheritAddress Unexecuted instantiation: input_clock.c:var_InheritAddress |
759 | | |
760 | | |
761 | | /** |
762 | | * Inherit a string as a fractional value. |
763 | | * |
764 | | * This function inherits a string, and interprets it as an unsigned rational |
765 | | * number, i.e. a fraction. It also accepts a normally formatted floating point |
766 | | * number. |
767 | | * |
768 | | * \warning The caller shall perform any and all necessary boundary checks. |
769 | | * |
770 | | * \note The rational number is always reduced, |
771 | | * i.e. the returned numerator and denominator are always co-prime numbers. |
772 | | * |
773 | | * \note Fraction with zero as denominator are considered valid, |
774 | | * including the undefined form zero-by-zero. |
775 | | * |
776 | | * \return Zero on success, an error if parsing fails. |
777 | | */ |
778 | | VLC_API int var_InheritURational(vlc_object_t *obj, unsigned *num, |
779 | | unsigned *den, const char *name); |
780 | | |
781 | | /** |
782 | | * Parses a string with multiple options. |
783 | | * |
784 | | * Parses a set of colon-separated or semicolon-separated |
785 | | * <code>name=value</code> pairs. |
786 | | * Some access (or access_demux) plugins uses this scheme |
787 | | * in media resource location. |
788 | | * @note Only trusted/safe variables are allowed. This is intended. |
789 | | * |
790 | | * @warning Only use this for plugins implementing VLC-specific resource |
791 | | * location schemes. This would not make any sense for standardized ones. |
792 | | * |
793 | | * @param obj VLC object on which to set variables (and emit error messages) |
794 | | * @param mrl string to parse |
795 | | * @param prefix prefix to prepend to option names in the string |
796 | | * |
797 | | * @return VLC_ENOMEM on error, VLC_SUCCESS on success. |
798 | | */ |
799 | | VLC_API int var_LocationParse(vlc_object_t *obj, const char *mrl, const char *prefix); |
800 | | |
801 | | #ifndef DOC |
802 | 10.4M | #define var_Create(a,b,c) var_Create(VLC_OBJECT(a), b, c) |
803 | 6.82M | #define var_Destroy(a,b) var_Destroy(VLC_OBJECT(a), b) |
804 | 0 | #define var_Change(a,b,...) var_Change(VLC_OBJECT(a), b, __VA_ARGS__) |
805 | 0 | #define var_Type(a,b) var_Type(VLC_OBJECT(a), b) |
806 | 0 | #define var_Set(a,b,c) var_Set(VLC_OBJECT(a), b, c) |
807 | 0 | #define var_Get(a,b,c) var_Get(VLC_OBJECT(a), b, c) |
808 | 0 | #define var_SetChecked(o,n,t,v) var_SetChecked(VLC_OBJECT(o), n, t, v) |
809 | 201k | #define var_GetChecked(o,n,t,v) var_GetChecked(VLC_OBJECT(o), n, t, v) |
810 | | |
811 | 104 | #define var_AddCallback(a,b,c,d) var_AddCallback(VLC_OBJECT(a), b, c, d) |
812 | 0 | #define var_DelCallback(a,b,c,d) var_DelCallback(VLC_OBJECT(a), b, c, d) |
813 | 0 | #define var_TriggerCallback(a,b) var_TriggerCallback(VLC_OBJECT(a), b) |
814 | | #define var_AddListCallback(a,b,c,d) \ |
815 | | var_AddListCallback(VLC_OBJECT(a), b, c, d) |
816 | | #define var_DelListCallback(a,b,c,d) \ |
817 | | var_DelListCallback(VLC_OBJECT(a), b, c, d) |
818 | | |
819 | 0 | #define var_SetInteger(a,b,c) var_SetInteger(VLC_OBJECT(a), b, c) |
820 | 52 | #define var_SetBool(a,b,c) var_SetBool(VLC_OBJECT(a), b, c) |
821 | 0 | #define var_SetCoords(o,n,x,y) var_SetCoords(VLC_OBJECT(o), n, x, y) |
822 | 27 | #define var_SetFloat(a,b,c) var_SetFloat(VLC_OBJECT(a), b, c) |
823 | 6.82M | #define var_SetString(a,b,c) var_SetString(VLC_OBJECT(a), b, c) |
824 | 0 | #define var_SetAddress(o, n, p) var_SetAddress(VLC_OBJECT(o), n, p) |
825 | | |
826 | | #define var_GetCoords(o,n,x,y) var_GetCoords(VLC_OBJECT(o), n, x, y) |
827 | | |
828 | | #define var_IncInteger(a,b) var_IncInteger(VLC_OBJECT(a), b) |
829 | | #define var_DecInteger(a,b) var_DecInteger(VLC_OBJECT(a), b) |
830 | | #define var_OrInteger(a,b,c) var_OrInteger(VLC_OBJECT(a), b, c) |
831 | | #define var_NAndInteger(a,b,c) var_NAndInteger(VLC_OBJECT(a), b, c) |
832 | | |
833 | 3 | #define var_CreateGetInteger(a,b) var_CreateGetInteger(VLC_OBJECT(a), b) |
834 | 1.42k | #define var_CreateGetBool(a,b) var_CreateGetBool(VLC_OBJECT(a), b) |
835 | 15.3k | #define var_CreateGetFloat(a,b) var_CreateGetFloat(VLC_OBJECT(a), b) |
836 | 874 | #define var_CreateGetString(a,b) var_CreateGetString(VLC_OBJECT(a), b) |
837 | | #define var_CreateGetNonEmptyString(a,b) \ |
838 | 0 | var_CreateGetNonEmptyString(VLC_OBJECT(a), b) |
839 | | #define var_CreateGetAddress(a,b) var_CreateGetAddress( VLC_OBJECT(a), b) |
840 | | |
841 | | #define var_CreateGetIntegerCommand(a,b) var_CreateGetIntegerCommand( VLC_OBJECT(a),b) |
842 | | #define var_CreateGetBoolCommand(a,b) var_CreateGetBoolCommand( VLC_OBJECT(a),b) |
843 | | #define var_CreateGetFloatCommand(a,b) var_CreateGetFloatCommand( VLC_OBJECT(a),b) |
844 | | #define var_CreateGetStringCommand(a,b) var_CreateGetStringCommand( VLC_OBJECT(a),b) |
845 | | #define var_CreateGetNonEmptyStringCommand(a,b) var_CreateGetNonEmptyStringCommand( VLC_OBJECT(a),b) |
846 | | |
847 | 0 | #define var_CountChoices(a,b) var_CountChoices(VLC_OBJECT(a),b) |
848 | 0 | #define var_ToggleBool(a,b) var_ToggleBool(VLC_OBJECT(a),b ) |
849 | | |
850 | 18.8k | #define var_InheritBool(o, n) var_InheritBool(VLC_OBJECT(o), n) |
851 | 15.4k | #define var_InheritInteger(o, n) var_InheritInteger(VLC_OBJECT(o), n) |
852 | 9.49k | #define var_InheritFloat(o, n) var_InheritFloat(VLC_OBJECT(o), n) |
853 | 13.6k | #define var_InheritString(o, n) var_InheritString(VLC_OBJECT(o), n) |
854 | 0 | #define var_InheritAddress(o, n) var_InheritAddress(VLC_OBJECT(o), n) |
855 | 0 | #define var_InheritURational(a,b,c,d) var_InheritURational(VLC_OBJECT(a), b, c, d) |
856 | | |
857 | 0 | #define var_GetInteger(a,b) var_GetInteger(VLC_OBJECT(a),b) |
858 | 0 | #define var_GetBool(a,b) var_GetBool(VLC_OBJECT(a),b) |
859 | 13.6k | #define var_GetFloat(a,b) var_GetFloat(VLC_OBJECT(a),b) |
860 | 0 | #define var_GetString(a,b) var_GetString(VLC_OBJECT(a),b) |
861 | 0 | #define var_GetNonEmptyString(a,b) var_GetNonEmptyString( VLC_OBJECT(a),b) |
862 | 0 | #define var_GetAddress(a,b) var_GetAddress(VLC_OBJECT(a),b) |
863 | | |
864 | | #define var_LocationParse(o, m, p) var_LocationParse(VLC_OBJECT(o), m, p) |
865 | | #endif |
866 | | |
867 | | /** |
868 | | * @} |
869 | | */ |
870 | | #endif /* _VLC_VARIABLES_H */ |