/external/wpa_supplicant_8/src/utils/ |
D | xml-utils.h | 31 xml_node_t * xml_node_create_root(struct xml_node_ctx *ctx, const char *ns_uri, 40 xml_node_t *parent, const char *ns_uri, 49 const char *ns_uri, char *name); 91 int use_path, const char *urn, const char *ns_uri);
|
D | xml_libxml2.c | 256 xml_node_t * xml_node_create_root(struct xml_node_ctx *ctx, const char *ns_uri, in xml_node_create_root() argument 266 if (ns_uri) { in xml_node_create_root() 267 ns = xmlNewNs(node, (const xmlChar *) ns_uri, in xml_node_create_root() 301 xml_node_t *parent, const char *ns_uri, in xml_node_create_text_ns() argument 309 ns = xmlNewNs(node, (const xmlChar *) ns_uri, NULL); in xml_node_create_text_ns() 350 const char *ns_uri, char *name) in xml_node_get_attr_value_ns() argument 353 (const xmlChar *) ns_uri); in xml_node_get_attr_value_ns()
|
D | xml-utils.c | 278 int use_path, const char *urn, const char *ns_uri) in mo_to_tnds() argument 284 root = xml_node_create_root(ctx, ns_uri, NULL, NULL, "MgmtTree"); in mo_to_tnds()
|
/external/libxml2/python/ |
D | libxml.c | 74 xmlChar *ns_uri; member 206 if ((*libxml_xpathCallbacks)[ix].ns_uri != NULL) in libxml_xmlPythonCleanupParser() 207 xmlFree((*libxml_xpathCallbacks)[ix].ns_uri); in libxml_xmlPythonCleanupParser() 2234 const xmlChar *ns_uri; in libxml_xmlXPathFuncCallback() local 2243 ns_uri = rctxt->functionURI; in libxml_xmlXPathFuncCallback() 2246 ns_uri); in libxml_xmlXPathFuncCallback() 2255 (xmlStrEqual(ns_uri, (*libxml_xpathCallbacks)[i].ns_uri))) { in libxml_xmlXPathFuncCallback() 2282 const xmlChar * ns_uri) in libxml_xmlXPathFuncLookupFunc() argument 2288 ctxt, name, ns_uri); in libxml_xmlXPathFuncLookupFunc() 2299 (xmlStrEqual(ns_uri, (*libxml_xpathCallbacks)[i].ns_uri))) { in libxml_xmlXPathFuncLookupFunc() [all …]
|
D | libxml.py | 610 def registerXPathFunction(ctxt, name, ns_uri, f): argument 611 ret = libxml2mod.xmlRegisterXPathFunction(ctxt, name, ns_uri, f)
|
/external/libxml2/include/libxml/ |
D | xpathInternals.h | 427 const xmlChar *ns_uri); 441 const xmlChar *ns_uri, 450 const xmlChar *ns_uri, 458 const xmlChar *ns_uri); 467 const xmlChar *ns_uri);
|
D | xpath.h | 237 const xmlChar *ns_uri); 252 const xmlChar *ns_uri);
|
/external/libxml2/os400/libxmlrpg/ |
D | xpathInternals.rpgle | 183 d ns_uri * value options(*string) const xmlChar * 205 d ns_uri * value options(*string) const xmlChar * 218 d ns_uri * value options(*string) const xmlChar * 232 d ns_uri * value options(*string) const xmlChar * 250 d ns_uri * value options(*string) const xmlChar *
|
D | xpath.rpgle | 237 * @ns_uri: the namespace name hosting this variable 251 * @ns_uri: the namespace name hosting this function
|
/external/libxml2/ |
D | xpath.c | 4863 const xmlChar *ns_uri, xmlXPathFunction f) { in xmlXPathRegisterFuncNS() argument 4874 return(xmlHashRemoveEntry2(ctxt->funcHash, name, ns_uri, NULL)); in xmlXPathRegisterFuncNS() 4875 return(xmlHashAddEntry2(ctxt->funcHash, name, ns_uri, XML_CAST_FPTR(f))); in xmlXPathRegisterFuncNS() 4936 const xmlChar *ns_uri) { in xmlXPathFunctionLookupNS() argument 4948 ret = f(ctxt->funcLookupData, name, ns_uri); in xmlXPathFunctionLookupNS() 4956 XML_CAST_FPTR(ret) = xmlHashLookup2(ctxt->funcHash, name, ns_uri); in xmlXPathFunctionLookupNS() 5012 const xmlChar *ns_uri, in xmlXPathRegisterVariableNS() argument 5024 return(xmlHashRemoveEntry2(ctxt->varHash, name, ns_uri, in xmlXPathRegisterVariableNS() 5026 return(xmlHashUpdateEntry2(ctxt->varHash, name, ns_uri, in xmlXPathRegisterVariableNS() 5086 const xmlChar *ns_uri) { in xmlXPathVariableLookupNS() argument [all …]
|
D | c14n.c | 215 xmlC14NErrRelativeNamespace(const char *ns_uri) in xmlC14NErrRelativeNamespace() argument 220 "Relative namespace UR is invalid here : %s\n", ns_uri); in xmlC14NErrRelativeNamespace()
|
D | testapi.c | 50180 xmlChar * ns_uri; /* the namespace name */ in test_xmlXPathRegisterNs() local 50189 ns_uri = gen_const_xmlChar_ptr(n_ns_uri, 2); in test_xmlXPathRegisterNs() 50191 ret_val = xmlXPathRegisterNs(ctxt, (const xmlChar *)prefix, (const xmlChar *)ns_uri); in test_xmlXPathRegisterNs() 50196 des_const_xmlChar_ptr(n_ns_uri, (const xmlChar *)ns_uri, 2); in test_xmlXPathRegisterNs() 50286 xmlChar * ns_uri; /* the variable namespace URI */ in test_xmlXPathRegisterVariableNS() local 50298 ns_uri = gen_const_xmlChar_ptr(n_ns_uri, 2); in test_xmlXPathRegisterVariableNS() 50301 … ret_val = xmlXPathRegisterVariableNS(ctxt, (const xmlChar *)name, (const xmlChar *)ns_uri, value); in test_xmlXPathRegisterVariableNS() 50306 des_const_xmlChar_ptr(n_ns_uri, (const xmlChar *)ns_uri, 2); in test_xmlXPathRegisterVariableNS() 51080 xmlChar * ns_uri; /* the variable namespace URI */ in test_xmlXPathVariableLookupNS() local 51089 ns_uri = gen_const_xmlChar_ptr(n_ns_uri, 2); in test_xmlXPathVariableLookupNS() [all …]
|