HomeSort by: relevance | last modified time | path
    Searched defs:xml (Results 1 - 25 of 48) sorted by relevancy

1 2

  /src/share/examples/rump/dmtest/
dmt.c 59 char *xml; local
80 xml = prop_dictionary_externalize(dict_out);
81 printf("%s\n",xml);
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);
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...]
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/external/gpl3/gdb/dist/gdb/testsuite/gdb.python/
py-send-packet.py 16 import xml.etree.ElementTree as ET namespace
60 # Now fetch the thread list from the remote, and parse the XML.
64 # Look over all threads in the XML list and check we expected to
73 # Check that all the threads were found in the XML list.
py-send-packet.py 16 import xml.etree.ElementTree as ET namespace
60 # Now fetch the thread list from the remote, and parse the XML.
64 # Look over all threads in the XML list and check we expected to
73 # Check that all the threads were found in the XML list.
  /src/external/mpl/bind/dist/bin/tests/system/statschannel/
tests_xml.py 16 import xml.etree.ElementTree as ET namespace
48 # XML helper functions
50 r = requests.get(f"http://{statsip}:{statsport}/xml/v3/zones", timeout=600)
73 r = requests.get(f"http://{statsip}:{statsport}/xml/v3/traffic", timeout=600)
tests_xml.py 16 import xml.etree.ElementTree as ET namespace
48 # XML helper functions
50 r = requests.get(f"http://{statsip}:{statsport}/xml/v3/zones", timeout=600)
73 r = requests.get(f"http://{statsip}:{statsport}/xml/v3/traffic", timeout=600)
  /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);
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);
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
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...]
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.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...]
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...]
  /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...]
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...]
  /src/usr.sbin/envstat/
config.c 154 char *xml; local
171 xml = prop_dictionary_externalize(obj);
172 printf("%s", xml);
173 free(xml);
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...]

Completed in 83 milliseconds

1 2