Home
last modified time | relevance | path

Searched refs:php_incomplete_object_handlers (Results 1 – 1 of 1) sorted by relevance

/PHP-5.5/ext/standard/
H A Dincomplete_class.c33 static zend_object_handlers php_incomplete_object_handlers; variable
110 value.handlers = &php_incomplete_object_handlers; in php_create_incomplete_object()
124 memcpy(&php_incomplete_object_handlers, &std_object_handlers, sizeof(zend_object_handlers)); in php_create_incomplete_class()
125 php_incomplete_object_handlers.read_property = incomplete_class_get_property; in php_create_incomplete_class()
126 php_incomplete_object_handlers.has_property = incomplete_class_has_property; in php_create_incomplete_class()
127 php_incomplete_object_handlers.unset_property = incomplete_class_unset_property; in php_create_incomplete_class()
128 php_incomplete_object_handlers.write_property = incomplete_class_write_property; in php_create_incomplete_class()
129 php_incomplete_object_handlers.get_property_ptr_ptr = incomplete_class_get_property_ptr_ptr; in php_create_incomplete_class()
130 php_incomplete_object_handlers.get_method = incomplete_class_get_method; in php_create_incomplete_class()

Completed in 13 milliseconds