Home
last modified time | relevance | path

Searched refs:funcHash (Results 1 – 3 of 3) sorted by relevance

/external/libxml2/include/libxml/
Dxpath.h301 xmlHashTablePtr funcHash; /* Hash table of defined funcs */ member
/external/libxslt/libxslt/
Dfunctions.c84 XML_CAST_FPTR(ret) = xmlHashLookup2(ctxt->funcHash, name, ns_uri); in xsltXPathFunctionLookup()
/external/libxml2/
Dxpath.c4794 if (ctxt->funcHash == NULL) in xmlXPathRegisterFuncNS()
4795 ctxt->funcHash = xmlHashCreate(0); in xmlXPathRegisterFuncNS()
4796 if (ctxt->funcHash == NULL) in xmlXPathRegisterFuncNS()
4799 return(xmlHashRemoveEntry2(ctxt->funcHash, name, ns_uri, NULL)); in xmlXPathRegisterFuncNS()
4800 return(xmlHashAddEntry2(ctxt->funcHash, name, ns_uri, XML_CAST_FPTR(f))); in xmlXPathRegisterFuncNS()
4878 if (ctxt->funcHash == NULL) in xmlXPathFunctionLookupNS()
4881 XML_CAST_FPTR(ret) = xmlHashLookup2(ctxt->funcHash, name, ns_uri); in xmlXPathFunctionLookupNS()
4896 xmlHashFree(ctxt->funcHash, NULL); in xmlXPathRegisteredFuncsCleanup()
4897 ctxt->funcHash = NULL; in xmlXPathRegisteredFuncsCleanup()
6054 ret->funcHash = xmlHashCreate(0); in xmlXPathNewContext()