dom_entity_prop_handlers   95 ext/dom/php_dom.c static HashTable dom_entity_prop_handlers;
dom_entity_prop_handlers  879 ext/dom/php_dom.c 	zend_hash_init(&dom_entity_prop_handlers, 0, NULL, NULL, 1);
dom_entity_prop_handlers  880 ext/dom/php_dom.c 	dom_register_prop_handler(&dom_entity_prop_handlers, "publicId", dom_entity_public_id_read, NULL TSRMLS_CC);
dom_entity_prop_handlers  881 ext/dom/php_dom.c 	dom_register_prop_handler(&dom_entity_prop_handlers, "systemId", dom_entity_system_id_read, NULL TSRMLS_CC);
dom_entity_prop_handlers  882 ext/dom/php_dom.c 	dom_register_prop_handler(&dom_entity_prop_handlers, "notationName", dom_entity_notation_name_read, NULL TSRMLS_CC);
dom_entity_prop_handlers  883 ext/dom/php_dom.c 	dom_register_prop_handler(&dom_entity_prop_handlers, "actualEncoding", dom_entity_actual_encoding_read, dom_entity_actual_encoding_write TSRMLS_CC);
dom_entity_prop_handlers  884 ext/dom/php_dom.c 	dom_register_prop_handler(&dom_entity_prop_handlers, "encoding", dom_entity_encoding_read, dom_entity_encoding_write TSRMLS_CC);
dom_entity_prop_handlers  885 ext/dom/php_dom.c 	dom_register_prop_handler(&dom_entity_prop_handlers, "version", dom_entity_version_read, dom_entity_version_write TSRMLS_CC);
dom_entity_prop_handlers  886 ext/dom/php_dom.c 	zend_hash_merge(&dom_entity_prop_handlers, &dom_node_prop_handlers, NULL, NULL, sizeof(dom_prop_handler), 0);
dom_entity_prop_handlers  888 ext/dom/php_dom.c 	zend_hash_add(&classes, ce.name, ce.name_length + 1, &dom_entity_prop_handlers, sizeof(dom_entity_prop_handlers), NULL);
dom_entity_prop_handlers  891 ext/dom/php_dom.c 	zend_hash_add(&classes, ce.name, ce.name_length + 1, &dom_node_prop_handlers, sizeof(dom_entity_prop_handlers), NULL);
dom_entity_prop_handlers 1013 ext/dom/php_dom.c 	zend_hash_destroy(&dom_entity_prop_handlers);