Searched refs:registered_phpfunctions (Results 1 – 6 of 6) sorted by relevance
/PHP-7.0/ext/xsl/ |
H A D | php_xsl.c | 78 zend_hash_destroy(intern->registered_phpfunctions); in ZEND_GET_MODULE() 79 FREE_HASHTABLE(intern->registered_phpfunctions); in ZEND_GET_MODULE() 118 ALLOC_HASHTABLE(intern->registered_phpfunctions); in xsl_objects_new() 119 zend_hash_init(intern->registered_phpfunctions, 0, NULL, ZVAL_PTR_DTOR, 0); in xsl_objects_new()
|
H A D | php_xsl.h | 66 HashTable *registered_phpfunctions; member
|
H A D | xsltprocessor.c | 331 …} else if ( intern->registerPhpFunctions == 2 && zend_hash_exists(intern->registered_phpfunctions,… in xsl_ext_function_php() 857 zend_hash_update(intern->registered_phpfunctions, Z_STR_P(entry), &new_string); in PHP_FUNCTION() 865 zend_hash_update(intern->registered_phpfunctions, name, &new_string); in PHP_FUNCTION()
|
/PHP-7.0/ext/dom/ |
H A D | xpath.c | 198 …} else if (intern->registerPhpFunctions == 2 && zend_hash_exists(intern->registered_phpfunctions, … in dom_xpath_ext_function_php() 522 zend_hash_update(intern->registered_phpfunctions, str, &new_string); in PHP_FUNCTION() 532 zend_hash_update(intern->registered_phpfunctions, name, &new_string); in PHP_FUNCTION()
|
H A D | php_dom.h | 72 HashTable *registered_phpfunctions; member
|
H A D | php_dom.c | 1019 if (intern->registered_phpfunctions) { in dom_xpath_objects_free_storage() 1020 zend_hash_destroy(intern->registered_phpfunctions); in dom_xpath_objects_free_storage() 1021 FREE_HASHTABLE(intern->registered_phpfunctions); in dom_xpath_objects_free_storage() 1108 ALLOC_HASHTABLE(intern->registered_phpfunctions); in dom_xpath_objects_new() 1109 zend_hash_init(intern->registered_phpfunctions, 0, NULL, ZVAL_PTR_DTOR, 0); in dom_xpath_objects_new()
|
Completed in 18 milliseconds