Lines Matching refs:dom_object_handlers
62 zend_object_handlers dom_object_handlers; variable
98 return &dom_object_handlers; in dom_get_obj_handlers()
564 memcpy(&dom_object_handlers, &std_object_handlers, sizeof(zend_object_handlers)); in PHP_MINIT_FUNCTION()
565 dom_object_handlers.offset = XtOffsetOf(dom_object, std); in PHP_MINIT_FUNCTION()
566 dom_object_handlers.free_obj = dom_objects_free_storage; in PHP_MINIT_FUNCTION()
567 dom_object_handlers.read_property = dom_read_property; in PHP_MINIT_FUNCTION()
568 dom_object_handlers.write_property = dom_write_property; in PHP_MINIT_FUNCTION()
569 dom_object_handlers.get_property_ptr_ptr = dom_get_property_ptr_ptr; in PHP_MINIT_FUNCTION()
570 dom_object_handlers.clone_obj = dom_objects_store_clone_obj; in PHP_MINIT_FUNCTION()
571 dom_object_handlers.has_property = dom_property_exists; in PHP_MINIT_FUNCTION()
572 dom_object_handlers.get_debug_info = dom_get_debug_info; in PHP_MINIT_FUNCTION()
574 memcpy(&dom_nnodemap_object_handlers, &dom_object_handlers, sizeof(zend_object_handlers)); in PHP_MINIT_FUNCTION()
785 memcpy(&dom_xpath_object_handlers, &dom_object_handlers, sizeof(zend_object_handlers)); in PHP_MINIT_FUNCTION()