| /src/share/examples/rump/dmtest/ |
| dmt.c | 59 char *xml; local 80 xml = prop_dictionary_externalize(dict_out); 81 printf("%s\n",xml);
|
| /src/tests/dev/dm/ |
| h_dm.c | 62 char *xml; local 85 xml = prop_dictionary_externalize(dict_out); 86 __USE(xml); 102 char *xml; local 125 xml = prop_dictionary_externalize(dict_out); 126 __USE(xml);
|
| /src/usr.sbin/bthcid/ |
| config.c | 55 char *xml; local 69 xml = malloc(len); 70 if (xml == NULL) { 76 if (read(fd, xml, len) != len) { 77 free(xml); 82 dict = prop_dictionary_internalize(xml); 83 free(xml); 127 char *xml; local 175 xml = prop_dictionary_externalize(cfg); 176 if (xml == NULL) [all...] |
| /src/sbin/drvctl/ |
| drvctl.c | 77 char *xml; local 191 xml = prop_dictionary_externalize(data_dict); 196 printf("%s", xml); 197 free(xml); 257 char *xml; local 274 xml = prop_dictionary_externalize(obj); 275 printf("%s", xml); 276 free(xml);
|
| /src/usr.sbin/hdaudioctl/ |
| hdaudioctl.c | 165 const char *xml; local 191 xml = prop_array_externalize(config); 193 printf("%s\n", xml);
|
| /src/external/bsd/wpa/dist/hs20/client/ |
| osu_client.h | 28 struct xml_node_ctx *xml; member in struct:hs20_osu_client
|
| /src/external/bsd/wpa/dist/wpa_supplicant/dbus/ |
| dbus_new_introspect.c | 23 struct wpabuf *xml; member in struct:interfaces 41 iface->xml = wpabuf_alloc(16000); 42 if (iface->dbus_interface == NULL || iface->xml == NULL) { 44 wpabuf_free(iface->xml); 48 wpabuf_printf(iface->xml, "<interface name=\"%s\">", dbus_interface); 54 static void add_arg(struct wpabuf *xml, const char *name, const char *type, 57 wpabuf_printf(xml, "<arg name=\"%s\"", name); 59 wpabuf_printf(xml, " type=\"%s\"", type); 61 wpabuf_printf(xml, " direction=\"%s\"", direction); 62 wpabuf_put_str(xml, "/>"); 258 struct wpabuf *xml; local [all...] |
| /src/external/gpl3/gdb/dist/gdb/ |
| osdata.c | 1 /* Routines for handling XML generic OS data provided by target. 21 #include "xml-support.h" 29 osdata_parse (const char *xml) 36 warning (_("Can not parse XML OS data; XML support was disabled " 45 /* Internal parsing data passed to all XML callbacks. */ 145 osdata_parse (const char *xml) 150 osdata_elements, xml, &data) == 0) 164 std::optional<gdb::char_vector> xml = target_get_osdata (type); local 166 if (xml) [all...] |
| rs6000-aix-tdep.c | 39 #include "gdbsupport/xml-utils.h" 1241 /* Append to XML an XML string description of the shared library 1246 rs6000_aix_shared_library_to_xml (struct ld_info *ldi, std::string &xml) 1248 xml += "<library name=\""; 1249 xml_escape_text_append (xml, ldi->filename); 1250 xml += '"'; 1254 xml += " member=\""; 1255 xml_escape_text_append (xml, ldi->member_name); 1256 xml += '"' 1298 std::string xml = "<library-list-aix version=\\"1.0\\">\\n"; local [all...] |
| target-descriptions.c | 29 #include "xml-support.h" 30 #include "xml-tdesc.h" 367 /* Used to cache the generated xml version of the target description. */ 479 /* First try to fetch an XML description from the user-specified 1582 /* Most "reg" in XML target descriptions don't have "regnum" 1708 /* Use the target description from the XML file. */ 1759 /* Implement the maintenance print xml-tdesc command. */ 1769 architecture's. This lets a GDB for one architecture generate XML 1776 /* Use the target description from the XML file. */ 1818 /* Test the conversion process of a target description to/from xml: Take a targe 1822 const char *xml = tdesc_get_features_xml (tdesc); local [all...] |
| windows-tdep.c | 21 #include "xml-support.h" 531 struct gdbarch *gdbarch, std::string &xml) 535 xml += "<library name=\""; 536 xml_escape_text_append (xml, so_name); 537 xml += "\"><segment address=\""; 550 xml += paddress (gdbarch, load_addr + text_offset); 551 xml += "\"/></library>"; 1090 std::string xml; member in struct:cpms_data 1148 NULL, data->gdbarch, data->xml); 1161 data.xml += "</library-list>\n" [all...] |
| remote.c | 64 #include "xml-support.h" 4214 std::optional<gdb::char_vector> xml 4217 if (xml && (*xml)[0] != '\0') 4220 threads_elements, xml->data (), context); 4417 included in the XML. So if we didn't have anything cached, 5865 register_remote_support_xml (const char *xml) 5869 remote_support_xml = concat ("xmlRegisters=", xml, (char *) NULL); 5878 if (strcmp (p, xml) == 0) 5889 remote_support_xml, ",", xml, 4211 std::optional<gdb::char_vector> xml local [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/ |
| osdata.c | 1 /* Routines for handling XML generic OS data provided by target. 21 #include "xml-support.h" 29 osdata_parse (const char *xml) 36 warning (_("Can not parse XML OS data; XML support was disabled " 45 /* Internal parsing data passed to all XML callbacks. */ 145 osdata_parse (const char *xml) 150 osdata_elements, xml, &data) == 0) 164 std::optional<gdb::char_vector> xml = target_get_osdata (type); local 166 if (xml) [all...] |
| rs6000-aix-tdep.c | 39 #include "gdbsupport/xml-utils.h" 1241 /* Append to XML an XML string description of the shared library 1246 rs6000_aix_shared_library_to_xml (struct ld_info *ldi, std::string &xml) 1248 xml += "<library name=\""; 1249 xml_escape_text_append (xml, ldi->filename); 1250 xml += '"'; 1254 xml += " member=\""; 1255 xml_escape_text_append (xml, ldi->member_name); 1256 xml += '"' 1298 std::string xml = "<library-list-aix version=\\"1.0\\">\\n"; local [all...] |
| target-descriptions.c | 28 #include "xml-support.h" 29 #include "xml-tdesc.h" 367 /* Used to cache the generated xml version of the target description. */ 479 /* First try to fetch an XML description from the user-specified 1593 /* Most "reg" in XML target descriptions don't have "regnum" 1717 /* Use the target description from the XML file. */ 1771 /* Implement the maintenance print xml-tdesc command. */ 1781 architecture's. This lets a GDB for one architecture generate XML 1788 /* Use the target description from the XML file. */ 1830 /* Test the conversion process of a target description to/from xml: Take a targe 1834 const char *xml = tdesc_get_features_xml (tdesc); local [all...] |
| windows-tdep.c | 21 #include "xml-support.h" 531 struct gdbarch *gdbarch, std::string &xml) 535 xml += "<library name=\""; 536 xml_escape_text_append (xml, so_name); 537 xml += "\"><segment address=\""; 550 xml += paddress (gdbarch, load_addr + text_offset); 551 xml += "\"/></library>"; 1090 std::string xml; member in struct:cpms_data 1148 NULL, data->gdbarch, data->xml); 1161 data.xml += "</library-list>\n" [all...] |
| remote.c | 62 #include "xml-support.h" 4190 std::optional<gdb::char_vector> xml 4193 if (xml && (*xml)[0] != '\0') 4196 threads_elements, xml->data (), context); 4393 included in the XML. So if we didn't have anything cached, 5835 register_remote_support_xml (const char *xml) 5839 remote_support_xml = concat ("xmlRegisters=", xml, (char *) NULL); 5848 if (strcmp (p, xml) == 0) 5859 remote_support_xml, ",", xml, 4187 std::optional<gdb::char_vector> xml local [all...] |
| /src/usr.sbin/envstat/ |
| config.c | 154 char *xml; local 171 xml = prop_dictionary_externalize(obj); 172 printf("%s", xml); 173 free(xml);
|
| /src/external/bsd/wpa/dist/src/eap_server/ |
| tncs.c | 27 "<?xml version=\"1.0\"?>\n" \ 32 "IF_TNCCS# https://www.trustedcomputinggroup.org/XML/SCHEMA/TNCCS_1.0.xsd\">\n" 750 "<XML><TNCCS-Recommendation type=\"%s\">" 751 "</TNCCS-Recommendation></XML>" 877 * <XML><TNCCS-Foo type="foo"></TNCCS-Foo></XML> 885 char *xml, *xmlend, *endpos; local 906 /* Base64 OR XML */ 908 xml = NULL; 910 pos = os_strstr(start, "<XML>"); [all...] |
| /src/external/bsd/wpa/dist/src/eap_peer/ |
| tncc.c | 34 "<?xml version=\"1.0\"?>\n" \ 39 "IF_TNCCS# https://www.trustedcomputinggroup.org/XML/SCHEMA/TNCCS_1.0.xsd\">\n" 789 * <XML><TNCCS-Foo type="foo"></TNCCS-Foo></XML> 797 char *xml, *xmlend, *endpos; local 818 /* Base64 OR XML */ 820 xml = NULL; 822 pos = os_strstr(start, "<XML>"); 825 pos2 = os_strstr(pos, "</XML>"); 832 xml = pos [all...] |
| /src/external/bsd/unbound/dist/smallapp/ |
| unbound-anchor.c | 41 * with RFC7958 https xml fetch. 76 * It uses the XML file by converting it to DS records and writing that to the 81 * The certificate RFC7958 update is done by fetching root-anchors.xml and 102 * The dates on the keys in the xml are checked (uses the libexpat xml 124 #error "need libexpat to parse root-anchors.xml file." 144 /** path on HTTPS server to xml file */ 145 #define XMLNAME "root-anchors/root-anchors.xml" 223 printf("-x path pathname to xml in url, default %s\n", XMLNAME); 1207 /** XML parse private data during the parse * 1976 BIO *xml, *p7s; local [all...] |
| /src/external/bsd/wpa/dist/src/utils/ |
| http_curl.c | 27 #include "xml-utils.h" 44 struct xml_node_ctx *xml; member in struct:http_ctx 1435 "Content-Type: application/soap+xml"); 1493 envelope = soap_build_envelope(ctx->xml, node); 1494 str = xml_node_to_str(ctx->xml, envelope); 1495 xml_node_free(ctx->xml, envelope); 1526 resp = xml_node_from_buf(ctx->xml, ctx->curl_buf); 1534 ret = soap_get_body(ctx->xml, resp); 1542 xml_node_get_localname(ctx->xml, ret)); 1543 n = xml_node_copy(ctx->xml, ret) [all...] |