/src/pacemaker/include/crm/common/xml_element_internal.h
Line | Count | Source |
1 | | /* |
2 | | * Copyright 2017-2025 the Pacemaker project contributors |
3 | | * |
4 | | * The version control history for this file may have further details. |
5 | | * |
6 | | * This source code is licensed under the GNU Lesser General Public License |
7 | | * version 2.1 or later (LGPLv2.1+) WITHOUT ANY WARRANTY. |
8 | | */ |
9 | | |
10 | | #ifndef PCMK__CRM_COMMON_XML_ELEMENT_INTERNAL__H |
11 | | #define PCMK__CRM_COMMON_XML_ELEMENT_INTERNAL__H |
12 | | |
13 | | /* |
14 | | * Internal-only wrappers for and extensions to libxml2 for processing XML |
15 | | * elements |
16 | | */ |
17 | | |
18 | | #include <stdbool.h> // bool |
19 | | #include <stdint.h> // uint32_t |
20 | | #include <stdio.h> // NULL |
21 | | #include <string.h> // strcmp() |
22 | | |
23 | | #include <glib.h> // guint |
24 | | #include <libxml/tree.h> // xmlNode, etc. |
25 | | |
26 | | #include <crm/common/iso8601.h> // crm_time_t |
27 | | #include <crm/common/strings_internal.h> // pcmk__str_copy() |
28 | | #include <crm/common/xml_names.h> // PCMK_XA_ID |
29 | | |
30 | | #ifdef __cplusplus |
31 | | extern "C" { |
32 | | #endif |
33 | | |
34 | | const char *pcmk__xe_add_last_written(xmlNode *xe); |
35 | | |
36 | | xmlNode *pcmk__xe_first_child(const xmlNode *parent, const char *node_name, |
37 | | const char *attr_n, const char *attr_v); |
38 | | |
39 | | void pcmk__xe_remove_attr(xmlNode *element, const char *name); |
40 | | bool pcmk__xe_remove_attr_cb(xmlNode *xml, void *user_data); |
41 | | void pcmk__xe_remove_matching_attrs(xmlNode *element, bool force, |
42 | | bool (*match)(xmlAttrPtr, void *), |
43 | | void *user_data); |
44 | | int pcmk__xe_delete_match(xmlNode *xml, xmlNode *search); |
45 | | int pcmk__xe_replace_match(xmlNode *xml, xmlNode *replace); |
46 | | int pcmk__xe_update_match(xmlNode *xml, xmlNode *update, uint32_t flags); |
47 | | |
48 | | /*! |
49 | | * \internal |
50 | | * \brief Check whether an XML element is of a particular type |
51 | | * |
52 | | * \param[in] xml XML element to compare |
53 | | * \param[in] name XML element name to compare |
54 | | * |
55 | | * \return \c true if \p xml is of type \p name, otherwise \c false |
56 | | */ |
57 | | static inline bool |
58 | | pcmk__xe_is(const xmlNode *xml, const char *name) |
59 | 0 | { |
60 | 0 | return (xml != NULL) && (xml->name != NULL) && (name != NULL) |
61 | 0 | && (strcmp((const char *) xml->name, name) == 0); |
62 | 0 | } Unexecuted instantiation: scores_fuzzer.c:pcmk__xe_is Unexecuted instantiation: results.c:pcmk__xe_is Unexecuted instantiation: scores.c:pcmk__xe_is Unexecuted instantiation: strings.c:pcmk__xe_is Unexecuted instantiation: utils.c:pcmk__xe_is Unexecuted instantiation: iso8601.c:pcmk__xe_is Unexecuted instantiation: logging.c:pcmk__xe_is Unexecuted instantiation: mainloop.c:pcmk__xe_is Unexecuted instantiation: options.c:pcmk__xe_is Unexecuted instantiation: output.c:pcmk__xe_is Unexecuted instantiation: output_log.c:pcmk__xe_is Unexecuted instantiation: output_text.c:pcmk__xe_is Unexecuted instantiation: output_xml.c:pcmk__xe_is Unexecuted instantiation: patchset_display.c:pcmk__xe_is Unexecuted instantiation: schemas.c:pcmk__xe_is Unexecuted instantiation: xml.c:pcmk__xe_is Unexecuted instantiation: xml_attr.c:pcmk__xe_is Unexecuted instantiation: xml_comment.c:pcmk__xe_is Unexecuted instantiation: xml_display.c:pcmk__xe_is Unexecuted instantiation: xml_element.c:pcmk__xe_is Unexecuted instantiation: xml_idref.c:pcmk__xe_is Unexecuted instantiation: xml_io.c:pcmk__xe_is Unexecuted instantiation: xpath.c:pcmk__xe_is Unexecuted instantiation: acl.c:pcmk__xe_is Unexecuted instantiation: actions.c:pcmk__xe_is Unexecuted instantiation: agents.c:pcmk__xe_is Unexecuted instantiation: cmdline.c:pcmk__xe_is Unexecuted instantiation: digest.c:pcmk__xe_is Unexecuted instantiation: health.c:pcmk__xe_is Unexecuted instantiation: io.c:pcmk__xe_is Unexecuted instantiation: ipc_client.c:pcmk__xe_is Unexecuted instantiation: ipc_common.c:pcmk__xe_is Unexecuted instantiation: ipc_controld.c:pcmk__xe_is Unexecuted instantiation: ipc_pacemakerd.c:pcmk__xe_is Unexecuted instantiation: ipc_schedulerd.c:pcmk__xe_is Unexecuted instantiation: ipc_server.c:pcmk__xe_is Unexecuted instantiation: messages.c:pcmk__xe_is Unexecuted instantiation: nodes.c:pcmk__xe_is Unexecuted instantiation: nvpair.c:pcmk__xe_is Unexecuted instantiation: options_display.c:pcmk__xe_is Unexecuted instantiation: patchset.c:pcmk__xe_is Unexecuted instantiation: procfs.c:pcmk__xe_is Unexecuted instantiation: rules.c:pcmk__xe_is Unexecuted instantiation: servers.c:pcmk__xe_is Unexecuted instantiation: cib.c:pcmk__xe_is Unexecuted instantiation: ipc_attrd.c:pcmk__xe_is Unexecuted instantiation: pid.c:pcmk__xe_is Unexecuted instantiation: attrs.c:pcmk__xe_is Unexecuted instantiation: strings_fuzzer.c:pcmk__xe_is Unexecuted instantiation: cib_file_fuzzer.c:pcmk__xe_is Unexecuted instantiation: cib_client.c:pcmk__xe_is Unexecuted instantiation: cib_file.c:pcmk__xe_is Unexecuted instantiation: cib_native.c:pcmk__xe_is Unexecuted instantiation: cib_ops.c:pcmk__xe_is Unexecuted instantiation: cib_remote.c:pcmk__xe_is Unexecuted instantiation: cib_utils.c:pcmk__xe_is Unexecuted instantiation: remote.c:pcmk__xe_is Unexecuted instantiation: tls.c:pcmk__xe_is Unexecuted instantiation: watchdog.c:pcmk__xe_is Unexecuted instantiation: iso8601_fuzzer.c:pcmk__xe_is |
63 | | |
64 | | xmlNode *pcmk__xe_create(xmlNode *parent, const char *name); |
65 | | xmlNode *pcmk__xe_next(const xmlNode *node, const char *element_name); |
66 | | |
67 | | void pcmk__xe_set_content(xmlNode *node, const char *format, ...) |
68 | | G_GNUC_PRINTF(2, 3); |
69 | | |
70 | | int pcmk__xe_get_score(const xmlNode *xml, const char *name, int *score, |
71 | | int default_score); |
72 | | |
73 | | int pcmk__xe_copy_attrs(xmlNode *target, const xmlNode *src, uint32_t flags); |
74 | | void pcmk__xe_sort_attrs(xmlNode *xml); |
75 | | |
76 | | void pcmk__xe_set_id(xmlNode *xml, const char *format, ...) |
77 | | G_GNUC_PRINTF(2, 3); |
78 | | |
79 | | /*! |
80 | | * \internal |
81 | | * \brief Like pcmk__xe_set_props, but takes a va_list instead of |
82 | | * arguments directly. |
83 | | * |
84 | | * \param[in,out] node XML to add attributes to |
85 | | * \param[in] pairs NULL-terminated list of name/value pairs to add |
86 | | */ |
87 | | void |
88 | | pcmk__xe_set_propv(xmlNodePtr node, va_list pairs); |
89 | | |
90 | | /*! |
91 | | * \internal |
92 | | * \brief Add a NULL-terminated list of name/value pairs to the given |
93 | | * XML node as properties. |
94 | | * |
95 | | * \param[in,out] node XML node to add properties to |
96 | | * \param[in] ... NULL-terminated list of name/value pairs |
97 | | * |
98 | | * \note A NULL name terminates the arguments; a NULL value will be skipped. |
99 | | */ |
100 | | void |
101 | | pcmk__xe_set_props(xmlNodePtr node, ...) |
102 | | G_GNUC_NULL_TERMINATED; |
103 | | |
104 | | /*! |
105 | | * \internal |
106 | | * \brief Get first attribute of an XML element |
107 | | * |
108 | | * \param[in] xe XML element to check |
109 | | * |
110 | | * \return First attribute of \p xe (or NULL if \p xe is NULL or has none) |
111 | | */ |
112 | | static inline xmlAttr * |
113 | | pcmk__xe_first_attr(const xmlNode *xe) |
114 | 0 | { |
115 | 0 | return (xe == NULL)? NULL : xe->properties; |
116 | 0 | } Unexecuted instantiation: scores_fuzzer.c:pcmk__xe_first_attr Unexecuted instantiation: results.c:pcmk__xe_first_attr Unexecuted instantiation: scores.c:pcmk__xe_first_attr Unexecuted instantiation: strings.c:pcmk__xe_first_attr Unexecuted instantiation: utils.c:pcmk__xe_first_attr Unexecuted instantiation: iso8601.c:pcmk__xe_first_attr Unexecuted instantiation: logging.c:pcmk__xe_first_attr Unexecuted instantiation: mainloop.c:pcmk__xe_first_attr Unexecuted instantiation: options.c:pcmk__xe_first_attr Unexecuted instantiation: output.c:pcmk__xe_first_attr Unexecuted instantiation: output_log.c:pcmk__xe_first_attr Unexecuted instantiation: output_text.c:pcmk__xe_first_attr Unexecuted instantiation: output_xml.c:pcmk__xe_first_attr Unexecuted instantiation: patchset_display.c:pcmk__xe_first_attr Unexecuted instantiation: schemas.c:pcmk__xe_first_attr Unexecuted instantiation: xml.c:pcmk__xe_first_attr Unexecuted instantiation: xml_attr.c:pcmk__xe_first_attr Unexecuted instantiation: xml_comment.c:pcmk__xe_first_attr Unexecuted instantiation: xml_display.c:pcmk__xe_first_attr Unexecuted instantiation: xml_element.c:pcmk__xe_first_attr Unexecuted instantiation: xml_idref.c:pcmk__xe_first_attr Unexecuted instantiation: xml_io.c:pcmk__xe_first_attr Unexecuted instantiation: xpath.c:pcmk__xe_first_attr Unexecuted instantiation: acl.c:pcmk__xe_first_attr Unexecuted instantiation: actions.c:pcmk__xe_first_attr Unexecuted instantiation: agents.c:pcmk__xe_first_attr Unexecuted instantiation: cmdline.c:pcmk__xe_first_attr Unexecuted instantiation: digest.c:pcmk__xe_first_attr Unexecuted instantiation: health.c:pcmk__xe_first_attr Unexecuted instantiation: io.c:pcmk__xe_first_attr Unexecuted instantiation: ipc_client.c:pcmk__xe_first_attr Unexecuted instantiation: ipc_common.c:pcmk__xe_first_attr Unexecuted instantiation: ipc_controld.c:pcmk__xe_first_attr Unexecuted instantiation: ipc_pacemakerd.c:pcmk__xe_first_attr Unexecuted instantiation: ipc_schedulerd.c:pcmk__xe_first_attr Unexecuted instantiation: ipc_server.c:pcmk__xe_first_attr Unexecuted instantiation: messages.c:pcmk__xe_first_attr Unexecuted instantiation: nodes.c:pcmk__xe_first_attr Unexecuted instantiation: nvpair.c:pcmk__xe_first_attr Unexecuted instantiation: options_display.c:pcmk__xe_first_attr Unexecuted instantiation: patchset.c:pcmk__xe_first_attr Unexecuted instantiation: procfs.c:pcmk__xe_first_attr Unexecuted instantiation: rules.c:pcmk__xe_first_attr Unexecuted instantiation: servers.c:pcmk__xe_first_attr Unexecuted instantiation: cib.c:pcmk__xe_first_attr Unexecuted instantiation: ipc_attrd.c:pcmk__xe_first_attr Unexecuted instantiation: pid.c:pcmk__xe_first_attr Unexecuted instantiation: attrs.c:pcmk__xe_first_attr Unexecuted instantiation: strings_fuzzer.c:pcmk__xe_first_attr Unexecuted instantiation: cib_file_fuzzer.c:pcmk__xe_first_attr Unexecuted instantiation: cib_client.c:pcmk__xe_first_attr Unexecuted instantiation: cib_file.c:pcmk__xe_first_attr Unexecuted instantiation: cib_native.c:pcmk__xe_first_attr Unexecuted instantiation: cib_ops.c:pcmk__xe_first_attr Unexecuted instantiation: cib_remote.c:pcmk__xe_first_attr Unexecuted instantiation: cib_utils.c:pcmk__xe_first_attr Unexecuted instantiation: remote.c:pcmk__xe_first_attr Unexecuted instantiation: tls.c:pcmk__xe_first_attr Unexecuted instantiation: watchdog.c:pcmk__xe_first_attr Unexecuted instantiation: iso8601_fuzzer.c:pcmk__xe_first_attr |
117 | | |
118 | | /*! |
119 | | * \internal |
120 | | * \brief Iterate over child elements of \p xml |
121 | | * |
122 | | * This function iterates over the children of \p xml, performing the |
123 | | * callback function \p handler on each node. If the callback returns |
124 | | * a value other than pcmk_rc_ok, the iteration stops and the value is |
125 | | * returned. It is therefore possible that not all children will be |
126 | | * visited. |
127 | | * |
128 | | * \param[in,out] xml The starting XML node. Can be NULL. |
129 | | * \param[in] child_element_name The name that the node must match in order |
130 | | * for \p handler to be run. If NULL, all |
131 | | * child elements will match. |
132 | | * \param[in] handler The callback function. |
133 | | * \param[in,out] userdata User data to pass to the callback function. |
134 | | * Can be NULL. |
135 | | * |
136 | | * \return Standard Pacemaker return code |
137 | | */ |
138 | | int |
139 | | pcmk__xe_foreach_child(xmlNode *xml, const char *child_element_name, |
140 | | int (*handler)(xmlNode *xml, void *userdata), |
141 | | void *userdata); |
142 | | |
143 | | const char *pcmk__xe_get(const xmlNode *xml, const char *attr_name); |
144 | | int pcmk__xe_set(xmlNode *xml, const char *attr_name, const char *value); |
145 | | |
146 | | int pcmk__xe_get_datetime(const xmlNode *xml, const char *attr, crm_time_t **t); |
147 | | int pcmk__xe_get_flags(const xmlNode *xml, const char *name, uint32_t *dest, |
148 | | uint32_t default_value); |
149 | | |
150 | | int pcmk__xe_get_guint(const xmlNode *xml, const char *attr, guint *dest); |
151 | | void pcmk__xe_set_guint(xmlNode *xml, const char *attr, guint value); |
152 | | |
153 | | int pcmk__xe_get_int(const xmlNode *xml, const char *name, int *dest); |
154 | | void pcmk__xe_set_int(xmlNode *xml, const char *attr, int value); |
155 | | |
156 | | int pcmk__xe_get_ll(const xmlNode *xml, const char *name, long long *dest); |
157 | | int pcmk__xe_set_ll(xmlNode *xml, const char *attr, long long value); |
158 | | |
159 | | int pcmk__xe_get_time(const xmlNode *xml, const char *attr, time_t *dest); |
160 | | void pcmk__xe_set_time(xmlNode *xml, const char *attr, time_t value); |
161 | | |
162 | | int pcmk__xe_get_timeval(const xmlNode *xml, const char *sec_attr, |
163 | | const char *usec_attr, struct timeval *dest); |
164 | | void pcmk__xe_set_timeval(xmlNode *xml, const char *sec_attr, |
165 | | const char *usec_attr, const struct timeval *value); |
166 | | |
167 | | int pcmk__xe_get_bool(const xmlNode *xml, const char *attr, bool *dest); |
168 | | void pcmk__xe_set_bool(xmlNode *xml, const char *attr, bool value); |
169 | | bool pcmk__xe_attr_is_true(const xmlNode *node, const char *name); |
170 | | |
171 | | /*! |
172 | | * \internal |
173 | | * \brief Retrieve a copy of the value of an XML attribute |
174 | | * |
175 | | * This is like \c pcmk__xe_get() but allocates new memory for the result. |
176 | | * |
177 | | * \param[in] xml XML element whose attribute to get |
178 | | * \param[in] attr Attribute name |
179 | | * |
180 | | * \return Value of specified attribute (or \c NULL if not set) |
181 | | * |
182 | | * \note The caller is responsible for freeing the result using \c free(). |
183 | | */ |
184 | | static inline char * |
185 | | pcmk__xe_get_copy(const xmlNode *xml, const char *attr) |
186 | 0 | { |
187 | 0 | return pcmk__str_copy(pcmk__xe_get(xml, attr)); |
188 | 0 | } Unexecuted instantiation: scores_fuzzer.c:pcmk__xe_get_copy Unexecuted instantiation: results.c:pcmk__xe_get_copy Unexecuted instantiation: scores.c:pcmk__xe_get_copy Unexecuted instantiation: strings.c:pcmk__xe_get_copy Unexecuted instantiation: utils.c:pcmk__xe_get_copy Unexecuted instantiation: iso8601.c:pcmk__xe_get_copy Unexecuted instantiation: logging.c:pcmk__xe_get_copy Unexecuted instantiation: mainloop.c:pcmk__xe_get_copy Unexecuted instantiation: options.c:pcmk__xe_get_copy Unexecuted instantiation: output.c:pcmk__xe_get_copy Unexecuted instantiation: output_log.c:pcmk__xe_get_copy Unexecuted instantiation: output_text.c:pcmk__xe_get_copy Unexecuted instantiation: output_xml.c:pcmk__xe_get_copy Unexecuted instantiation: patchset_display.c:pcmk__xe_get_copy Unexecuted instantiation: schemas.c:pcmk__xe_get_copy Unexecuted instantiation: xml.c:pcmk__xe_get_copy Unexecuted instantiation: xml_attr.c:pcmk__xe_get_copy Unexecuted instantiation: xml_comment.c:pcmk__xe_get_copy Unexecuted instantiation: xml_display.c:pcmk__xe_get_copy Unexecuted instantiation: xml_element.c:pcmk__xe_get_copy Unexecuted instantiation: xml_idref.c:pcmk__xe_get_copy Unexecuted instantiation: xml_io.c:pcmk__xe_get_copy Unexecuted instantiation: xpath.c:pcmk__xe_get_copy Unexecuted instantiation: acl.c:pcmk__xe_get_copy Unexecuted instantiation: actions.c:pcmk__xe_get_copy Unexecuted instantiation: agents.c:pcmk__xe_get_copy Unexecuted instantiation: cmdline.c:pcmk__xe_get_copy Unexecuted instantiation: digest.c:pcmk__xe_get_copy Unexecuted instantiation: health.c:pcmk__xe_get_copy Unexecuted instantiation: io.c:pcmk__xe_get_copy Unexecuted instantiation: ipc_client.c:pcmk__xe_get_copy Unexecuted instantiation: ipc_common.c:pcmk__xe_get_copy Unexecuted instantiation: ipc_controld.c:pcmk__xe_get_copy Unexecuted instantiation: ipc_pacemakerd.c:pcmk__xe_get_copy Unexecuted instantiation: ipc_schedulerd.c:pcmk__xe_get_copy Unexecuted instantiation: ipc_server.c:pcmk__xe_get_copy Unexecuted instantiation: messages.c:pcmk__xe_get_copy Unexecuted instantiation: nodes.c:pcmk__xe_get_copy Unexecuted instantiation: nvpair.c:pcmk__xe_get_copy Unexecuted instantiation: options_display.c:pcmk__xe_get_copy Unexecuted instantiation: patchset.c:pcmk__xe_get_copy Unexecuted instantiation: procfs.c:pcmk__xe_get_copy Unexecuted instantiation: rules.c:pcmk__xe_get_copy Unexecuted instantiation: servers.c:pcmk__xe_get_copy Unexecuted instantiation: cib.c:pcmk__xe_get_copy Unexecuted instantiation: ipc_attrd.c:pcmk__xe_get_copy Unexecuted instantiation: pid.c:pcmk__xe_get_copy Unexecuted instantiation: attrs.c:pcmk__xe_get_copy Unexecuted instantiation: strings_fuzzer.c:pcmk__xe_get_copy Unexecuted instantiation: cib_file_fuzzer.c:pcmk__xe_get_copy Unexecuted instantiation: cib_client.c:pcmk__xe_get_copy Unexecuted instantiation: cib_file.c:pcmk__xe_get_copy Unexecuted instantiation: cib_native.c:pcmk__xe_get_copy Unexecuted instantiation: cib_ops.c:pcmk__xe_get_copy Unexecuted instantiation: cib_remote.c:pcmk__xe_get_copy Unexecuted instantiation: cib_utils.c:pcmk__xe_get_copy Unexecuted instantiation: remote.c:pcmk__xe_get_copy Unexecuted instantiation: tls.c:pcmk__xe_get_copy Unexecuted instantiation: watchdog.c:pcmk__xe_get_copy Unexecuted instantiation: iso8601_fuzzer.c:pcmk__xe_get_copy |
189 | | |
190 | | /*! |
191 | | * \internal |
192 | | * \brief Retrieve the value of the \c PCMK_XA_ID XML attribute |
193 | | * |
194 | | * \param[in] xml XML element to check |
195 | | * |
196 | | * \return Value of the \c PCMK_XA_ID attribute (may be \c NULL) |
197 | | */ |
198 | | static inline const char * |
199 | | pcmk__xe_id(const xmlNode *xml) |
200 | 0 | { |
201 | 0 | return pcmk__xe_get(xml, PCMK_XA_ID); |
202 | 0 | } Unexecuted instantiation: scores_fuzzer.c:pcmk__xe_id Unexecuted instantiation: results.c:pcmk__xe_id Unexecuted instantiation: scores.c:pcmk__xe_id Unexecuted instantiation: strings.c:pcmk__xe_id Unexecuted instantiation: utils.c:pcmk__xe_id Unexecuted instantiation: iso8601.c:pcmk__xe_id Unexecuted instantiation: logging.c:pcmk__xe_id Unexecuted instantiation: mainloop.c:pcmk__xe_id Unexecuted instantiation: options.c:pcmk__xe_id Unexecuted instantiation: output.c:pcmk__xe_id Unexecuted instantiation: output_log.c:pcmk__xe_id Unexecuted instantiation: output_text.c:pcmk__xe_id Unexecuted instantiation: output_xml.c:pcmk__xe_id Unexecuted instantiation: patchset_display.c:pcmk__xe_id Unexecuted instantiation: schemas.c:pcmk__xe_id Unexecuted instantiation: xml.c:pcmk__xe_id Unexecuted instantiation: xml_attr.c:pcmk__xe_id Unexecuted instantiation: xml_comment.c:pcmk__xe_id Unexecuted instantiation: xml_display.c:pcmk__xe_id Unexecuted instantiation: xml_element.c:pcmk__xe_id Unexecuted instantiation: xml_idref.c:pcmk__xe_id Unexecuted instantiation: xml_io.c:pcmk__xe_id Unexecuted instantiation: xpath.c:pcmk__xe_id Unexecuted instantiation: acl.c:pcmk__xe_id Unexecuted instantiation: actions.c:pcmk__xe_id Unexecuted instantiation: agents.c:pcmk__xe_id Unexecuted instantiation: cmdline.c:pcmk__xe_id Unexecuted instantiation: digest.c:pcmk__xe_id Unexecuted instantiation: health.c:pcmk__xe_id Unexecuted instantiation: io.c:pcmk__xe_id Unexecuted instantiation: ipc_client.c:pcmk__xe_id Unexecuted instantiation: ipc_common.c:pcmk__xe_id Unexecuted instantiation: ipc_controld.c:pcmk__xe_id Unexecuted instantiation: ipc_pacemakerd.c:pcmk__xe_id Unexecuted instantiation: ipc_schedulerd.c:pcmk__xe_id Unexecuted instantiation: ipc_server.c:pcmk__xe_id Unexecuted instantiation: messages.c:pcmk__xe_id Unexecuted instantiation: nodes.c:pcmk__xe_id Unexecuted instantiation: nvpair.c:pcmk__xe_id Unexecuted instantiation: options_display.c:pcmk__xe_id Unexecuted instantiation: patchset.c:pcmk__xe_id Unexecuted instantiation: procfs.c:pcmk__xe_id Unexecuted instantiation: rules.c:pcmk__xe_id Unexecuted instantiation: servers.c:pcmk__xe_id Unexecuted instantiation: cib.c:pcmk__xe_id Unexecuted instantiation: ipc_attrd.c:pcmk__xe_id Unexecuted instantiation: pid.c:pcmk__xe_id Unexecuted instantiation: attrs.c:pcmk__xe_id Unexecuted instantiation: strings_fuzzer.c:pcmk__xe_id Unexecuted instantiation: cib_file_fuzzer.c:pcmk__xe_id Unexecuted instantiation: cib_client.c:pcmk__xe_id Unexecuted instantiation: cib_file.c:pcmk__xe_id Unexecuted instantiation: cib_native.c:pcmk__xe_id Unexecuted instantiation: cib_ops.c:pcmk__xe_id Unexecuted instantiation: cib_remote.c:pcmk__xe_id Unexecuted instantiation: cib_utils.c:pcmk__xe_id Unexecuted instantiation: remote.c:pcmk__xe_id Unexecuted instantiation: tls.c:pcmk__xe_id Unexecuted instantiation: watchdog.c:pcmk__xe_id Unexecuted instantiation: iso8601_fuzzer.c:pcmk__xe_id |
203 | | |
204 | | #ifdef __cplusplus |
205 | | } |
206 | | #endif |
207 | | |
208 | | #endif // PCMK__CRM_COMMON_XML_ELEMENT_INTERNAL__H |