/src/pacemaker/include/crm/common/xml_element_internal.h
Line | Count | Source |
1 | | /* |
2 | | * Copyright 2017-2026 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__INCLUDED_CRM_COMMON_INTERNAL_H |
11 | | #error "Include <crm/common/internal.h> instead of <xml_element_internal.h> directly" |
12 | | #endif |
13 | | |
14 | | #ifndef PCMK__CRM_COMMON_XML_ELEMENT_INTERNAL__H |
15 | | #define PCMK__CRM_COMMON_XML_ELEMENT_INTERNAL__H |
16 | | |
17 | | /* |
18 | | * Internal-only wrappers for and extensions to libxml2 for processing XML |
19 | | * elements |
20 | | */ |
21 | | |
22 | | #include <stdbool.h> // bool |
23 | | #include <stdint.h> // uint32_t |
24 | | #include <stdio.h> // NULL |
25 | | #include <string.h> // strcmp() |
26 | | |
27 | | #include <libxml/tree.h> // xmlNode, etc. |
28 | | |
29 | | #include <crm/common/iso8601.h> // crm_time_t |
30 | | #include <crm/common/strings_internal.h> // pcmk__str_copy() |
31 | | #include <crm/common/xml_names.h> // PCMK_XA_ID |
32 | | |
33 | | #ifdef __cplusplus |
34 | | extern "C" { |
35 | | #endif |
36 | | |
37 | | const char *pcmk__xe_add_last_written(xmlNode *xe); |
38 | | |
39 | | bool pcmk__xe_foreach_attr(xmlNode *xml, bool (*fn)(xmlAttr *, void *), |
40 | | void *user_data); |
41 | | bool pcmk__xe_foreach_const_attr(const xmlNode *xml, |
42 | | bool (*fn)(const xmlAttr *, void *), |
43 | | void *user_data); |
44 | | |
45 | | xmlNode *pcmk__xe_first_child(const xmlNode *parent, const char *node_name, |
46 | | const char *attr_n, const char *attr_v); |
47 | | |
48 | | void pcmk__xe_remove_attr(xmlNode *element, const char *name); |
49 | | bool pcmk__xe_remove_attr_cb(xmlNode *xml, void *user_data); |
50 | | void pcmk__xe_remove_matching_attrs(xmlNode *element, bool force, |
51 | | bool (*match)(const xmlAttr *, void *), |
52 | | void *user_data); |
53 | | int pcmk__xe_delete_match(xmlNode *xml, xmlNode *search); |
54 | | int pcmk__xe_replace_match(xmlNode *xml, xmlNode *replace); |
55 | | int pcmk__xe_update_match(xmlNode *xml, xmlNode *update, uint32_t flags); |
56 | | |
57 | | /*! |
58 | | * \internal |
59 | | * \brief Check whether an XML element is of a particular type |
60 | | * |
61 | | * \param[in] xml XML element to compare |
62 | | * \param[in] name XML element name to compare |
63 | | * |
64 | | * \return \c true if \p xml is of type \p name, otherwise \c false |
65 | | */ |
66 | | static inline bool |
67 | | pcmk__xe_is(const xmlNode *xml, const char *name) |
68 | 0 | { |
69 | 0 | return (xml != NULL) && (xml->name != NULL) && (name != NULL) |
70 | 0 | && (strcmp((const char *) xml->name, name) == 0); |
71 | 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_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: xml_tracking.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: xml_attr.c:pcmk__xe_is Unexecuted instantiation: xml_comment.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 |
72 | | |
73 | | xmlNode *pcmk__xe_create(xmlNode *parent, const char *name); |
74 | | xmlNode *pcmk__xe_next(const xmlNode *node, const char *element_name); |
75 | | |
76 | | void pcmk__xe_set_content(xmlNode *node, const char *format, ...) |
77 | | G_GNUC_PRINTF(2, 3); |
78 | | |
79 | | int pcmk__xe_get_score(const xmlNode *xml, const char *name, int *score, |
80 | | int default_score); |
81 | | |
82 | | int pcmk__xe_copy_attrs(xmlNode *target, const xmlNode *src, uint32_t flags); |
83 | | void pcmk__xe_sort_attrs(xmlNode *xml); |
84 | | |
85 | | void pcmk__xe_set_id(xmlNode *xml, const char *format, ...) |
86 | | G_GNUC_PRINTF(2, 3); |
87 | | |
88 | | /*! |
89 | | * \internal |
90 | | * \brief Get first attribute of an XML element |
91 | | * |
92 | | * \param[in] xe XML element to check |
93 | | * |
94 | | * \return First attribute of \p xe (or NULL if \p xe is NULL or has none) |
95 | | */ |
96 | | static inline xmlAttr * |
97 | | pcmk__xe_first_attr(const xmlNode *xe) |
98 | 0 | { |
99 | 0 | return (xe == NULL)? NULL : xe->properties; |
100 | 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_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: xml_tracking.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: xml_attr.c:pcmk__xe_first_attr Unexecuted instantiation: xml_comment.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 |
101 | | |
102 | | /*! |
103 | | * \internal |
104 | | * \brief Iterate over child elements of \p xml |
105 | | * |
106 | | * This function iterates over the children of \p xml, performing the |
107 | | * callback function \p handler on each node. If the callback returns |
108 | | * a value other than pcmk_rc_ok, the iteration stops and the value is |
109 | | * returned. It is therefore possible that not all children will be |
110 | | * visited. |
111 | | * |
112 | | * \param[in,out] xml The starting XML node. Can be NULL. |
113 | | * \param[in] child_element_name The name that the node must match in order |
114 | | * for \p handler to be run. If NULL, all |
115 | | * child elements will match. |
116 | | * \param[in] handler The callback function. |
117 | | * \param[in,out] userdata User data to pass to the callback function. |
118 | | * Can be NULL. |
119 | | * |
120 | | * \return Standard Pacemaker return code |
121 | | */ |
122 | | int |
123 | | pcmk__xe_foreach_child(xmlNode *xml, const char *child_element_name, |
124 | | int (*handler)(xmlNode *xml, void *userdata), |
125 | | void *userdata); |
126 | | |
127 | | const char *pcmk__xe_get(const xmlNode *xml, const char *attr_name); |
128 | | int pcmk__xe_set(xmlNode *xml, const char *attr_name, const char *value); |
129 | | |
130 | | int pcmk__xe_get_datetime(const xmlNode *xml, const char *attr, crm_time_t **t); |
131 | | int pcmk__xe_get_flags(const xmlNode *xml, const char *name, uint32_t *dest, |
132 | | uint32_t default_value); |
133 | | |
134 | | int pcmk__xe_get_uint(const xmlNode *xml, const char *attr, unsigned int *dest); |
135 | | void pcmk__xe_set_uint(xmlNode *xml, const char *attr, unsigned int value); |
136 | | |
137 | | int pcmk__xe_get_int(const xmlNode *xml, const char *name, int *dest); |
138 | | void pcmk__xe_set_int(xmlNode *xml, const char *attr, int value); |
139 | | |
140 | | int pcmk__xe_get_ll(const xmlNode *xml, const char *name, long long *dest); |
141 | | int pcmk__xe_set_ll(xmlNode *xml, const char *attr, long long value); |
142 | | |
143 | | int pcmk__xe_get_time(const xmlNode *xml, const char *attr, time_t *dest); |
144 | | void pcmk__xe_set_time(xmlNode *xml, const char *attr, time_t value); |
145 | | |
146 | | int pcmk__xe_get_timeval(const xmlNode *xml, const char *sec_attr, |
147 | | const char *usec_attr, struct timeval *dest); |
148 | | void pcmk__xe_set_timeval(xmlNode *xml, const char *sec_attr, |
149 | | const char *usec_attr, const struct timeval *value); |
150 | | |
151 | | int pcmk__xe_get_bool(const xmlNode *xml, const char *attr, bool *dest); |
152 | | void pcmk__xe_set_bool(xmlNode *xml, const char *attr, bool value); |
153 | | bool pcmk__xe_attr_is_true(const xmlNode *node, const char *name); |
154 | | |
155 | | /*! |
156 | | * \internal |
157 | | * \brief Retrieve a copy of the value of an XML attribute |
158 | | * |
159 | | * This is like \c pcmk__xe_get() but allocates new memory for the result. |
160 | | * |
161 | | * \param[in] xml XML element whose attribute to get |
162 | | * \param[in] attr Attribute name |
163 | | * |
164 | | * \return Value of specified attribute (or \c NULL if not set) |
165 | | * |
166 | | * \note The caller is responsible for freeing the result using \c free(). |
167 | | */ |
168 | | static inline char * |
169 | | pcmk__xe_get_copy(const xmlNode *xml, const char *attr) |
170 | 0 | { |
171 | 0 | return pcmk__str_copy(pcmk__xe_get(xml, attr)); |
172 | 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_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: xml_tracking.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: xml_attr.c:pcmk__xe_get_copy Unexecuted instantiation: xml_comment.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 |
173 | | |
174 | | /*! |
175 | | * \internal |
176 | | * \brief Retrieve the value of the \c PCMK_XA_ID XML attribute |
177 | | * |
178 | | * \param[in] xml XML element to check |
179 | | * |
180 | | * \return Value of the \c PCMK_XA_ID attribute (may be \c NULL) |
181 | | */ |
182 | | static inline const char * |
183 | | pcmk__xe_id(const xmlNode *xml) |
184 | 0 | { |
185 | 0 | return pcmk__xe_get(xml, PCMK_XA_ID); |
186 | 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_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: xml_tracking.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: xml_attr.c:pcmk__xe_id Unexecuted instantiation: xml_comment.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 |
187 | | |
188 | | #ifdef __cplusplus |
189 | | } |
190 | | #endif |
191 | | |
192 | | #endif // PCMK__CRM_COMMON_XML_ELEMENT_INTERNAL__H |