Searched refs:xsltFunctionsHash (Results 1 – 1 of 1) sorted by relevance
/external/libxslt/libxslt/ |
D | extensions.c | 85 static xmlHashTablePtr xsltFunctionsHash = NULL; variable 1393 if (xsltFunctionsHash == NULL) in xsltRegisterExtModuleFunction() 1394 xsltFunctionsHash = xmlHashCreate(10); in xsltRegisterExtModuleFunction() 1395 if (xsltFunctionsHash == NULL) in xsltRegisterExtModuleFunction() 1400 xmlHashUpdateEntry2(xsltFunctionsHash, name, URI, in xsltRegisterExtModuleFunction() 1422 if ((xsltFunctionsHash == NULL) || (name == NULL) || (URI == NULL)) in xsltExtModuleFunctionLookup() 1427 XML_CAST_FPTR(ret) = xmlHashLookup2(xsltFunctionsHash, name, URI); in xsltExtModuleFunctionLookup() 1437 xmlHashLookup2(xsltFunctionsHash, name, URI); in xsltExtModuleFunctionLookup() 1460 if ((xsltFunctionsHash == NULL) || (name == NULL) || (URI == NULL)) in xsltUnregisterExtModuleFunction() 1465 ret = xmlHashRemoveEntry2(xsltFunctionsHash, name, URI, NULL); in xsltUnregisterExtModuleFunction() [all …]
|