Searched refs:registered_phpfunctions (Results 1 – 6 of 6) sorted by relevance
/PHP-5.4/ext/xsl/ |
H A D | php_xsl.c | 84 zend_hash_destroy(intern->registered_phpfunctions); in ZEND_GET_MODULE() 85 FREE_HASHTABLE(intern->registered_phpfunctions); in ZEND_GET_MODULE() 125 intern->registered_phpfunctions = NULL; in xsl_objects_new() 136 ALLOC_HASHTABLE(intern->registered_phpfunctions); in xsl_objects_new() 137 zend_hash_init(intern->registered_phpfunctions, 0, NULL, ZVAL_PTR_DTOR, 0); in xsl_objects_new()
|
H A D | php_xsl.h | 64 HashTable *registered_phpfunctions; member
|
H A D | xsltprocessor.c | 335 …} else if ( intern->registerPhpFunctions == 2 && zend_hash_exists(intern->registered_phpfunctions,… in xsl_ext_function_php() 895 …zend_hash_update(intern->registered_phpfunctions, Z_STRVAL_PP(entry), Z_STRLEN_PP(entry) + 1, &new… in PHP_FUNCTION() 905 …zend_hash_update(intern->registered_phpfunctions, name, name_len + 1, &new_string, sizeof(zval*), … in PHP_FUNCTION()
|
/PHP-5.4/ext/dom/ |
H A D | php_dom.h | 77 HashTable *registered_phpfunctions; member
|
H A D | xpath.c | 209 …} else if ( intern->registerPhpFunctions == 2 && zend_hash_exists(intern->registered_phpfunctions,… in dom_xpath_ext_function_php() 569 …zend_hash_update(intern->registered_phpfunctions, Z_STRVAL_PP(entry), Z_STRLEN_PP(entry) + 1, &new… in PHP_FUNCTION() 580 …zend_hash_update(intern->registered_phpfunctions, name, name_len + 1, &new_string, sizeof(zval*), … in PHP_FUNCTION()
|
H A D | php_dom.c | 1073 if (intern->registered_phpfunctions) { in dom_xpath_objects_free_storage() 1074 zend_hash_destroy(intern->registered_phpfunctions); in dom_xpath_objects_free_storage() 1075 FREE_HASHTABLE(intern->registered_phpfunctions); in dom_xpath_objects_free_storage() 1227 intern->registered_phpfunctions = NULL; in dom_xpath_objects_new() 1230 ALLOC_HASHTABLE(intern->registered_phpfunctions); in dom_xpath_objects_new() 1231 zend_hash_init(intern->registered_phpfunctions, 0, NULL, ZVAL_PTR_DTOR, 0); in dom_xpath_objects_new()
|
Completed in 25 milliseconds