Searched refs:node_list (Results 1 – 6 of 6) sorted by relevance
/PHP-7.0/ext/xsl/ |
H A D | php_xsl.c | 81 if (intern->node_list) { in ZEND_GET_MODULE() 82 zend_hash_destroy(intern->node_list); in ZEND_GET_MODULE() 83 FREE_HASHTABLE(intern->node_list); in ZEND_GET_MODULE()
|
H A D | xsltprocessor.c | 348 if (intern->node_list == NULL) { in xsl_ext_function_php() 349 ALLOC_HASHTABLE(intern->node_list); in xsl_ext_function_php() 350 zend_hash_init(intern->node_list, 0, NULL, ZVAL_PTR_DTOR, 0); in xsl_ext_function_php() 353 zend_hash_next_index_insert(intern->node_list, &retval); in xsl_ext_function_php() 598 if (intern->node_list != NULL) { in php_xsl_apply_stylesheet() 599 zend_hash_destroy(intern->node_list); in php_xsl_apply_stylesheet() 600 FREE_HASHTABLE(intern->node_list); in php_xsl_apply_stylesheet() 601 intern->node_list = NULL; in php_xsl_apply_stylesheet()
|
H A D | php_xsl.h | 67 HashTable *node_list; member
|
/PHP-7.0/ext/dom/ |
H A D | xpath.c | 208 if (intern->node_list == NULL) { in dom_xpath_ext_function_php() 209 ALLOC_HASHTABLE(intern->node_list); in dom_xpath_ext_function_php() 210 zend_hash_init(intern->node_list, 0, NULL, ZVAL_PTR_DTOR, 0); in dom_xpath_ext_function_php() 213 zend_hash_next_index_insert(intern->node_list, &retval); in dom_xpath_ext_function_php()
|
H A D | php_dom.h | 73 HashTable *node_list; member
|
H A D | php_dom.c | 1024 if (intern->node_list) { in dom_xpath_objects_free_storage() 1025 zend_hash_destroy(intern->node_list); in dom_xpath_objects_free_storage() 1026 FREE_HASHTABLE(intern->node_list); in dom_xpath_objects_free_storage()
|
Completed in 26 milliseconds