Lines Matching refs:nsList
25 int execute_xpath_expression(const char* filename, const xmlChar* xpathExpr, const xmlChar* nsList);
26 int register_namespaces(xmlXPathContextPtr xpathCtx, const xmlChar* nsList);
77 * @nsList: the optional list of known namespaces in
85 execute_xpath_expression(const char* filename, const xmlChar* xpathExpr, const xmlChar* nsList) {
109 if((nsList != NULL) && (register_namespaces(xpathCtx, nsList) < 0)) {
110 fprintf(stderr,"Error: failed to register namespaces list \"%s\"\n", nsList);
139 * @nsList: the list of known namespaces in
142 * Registers namespaces from @nsList in @xpathCtx.
147 register_namespaces(xmlXPathContextPtr xpathCtx, const xmlChar* nsList) {
154 assert(nsList);
156 nsListDup = xmlStrdup(nsList);