Home
last modified time | relevance | path

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

/PHP-7.4/ext/zend_test/
H A Dtest.c208 zend_class_entry class_entry; in PHP_MINIT_FUNCTION() local
210 INIT_CLASS_ENTRY(class_entry, "_ZendTestInterface", NULL); in PHP_MINIT_FUNCTION()
211 zend_test_interface = zend_register_internal_interface(&class_entry); in PHP_MINIT_FUNCTION()
213 INIT_CLASS_ENTRY(class_entry, "_ZendTestClass", zend_test_class_methods); in PHP_MINIT_FUNCTION()
214 zend_test_class = zend_register_internal_class_ex(&class_entry, NULL); in PHP_MINIT_FUNCTION()
251 INIT_CLASS_ENTRY(class_entry, "_ZendTestChildClass", NULL); in PHP_MINIT_FUNCTION()
252 zend_test_child_class = zend_register_internal_class_ex(&class_entry, zend_test_class); in PHP_MINIT_FUNCTION()
258 INIT_CLASS_ENTRY(class_entry, "_ZendTestTrait", zend_test_trait_methods); in PHP_MINIT_FUNCTION()
259 zend_test_trait = zend_register_internal_class(&class_entry); in PHP_MINIT_FUNCTION()
/PHP-7.4/ext/spl/
H A Dspl_functions.c71 void spl_register_property( zend_class_entry * class_entry, char *prop_name, int prop_name_len, int… in spl_register_property() argument
73 zend_declare_property_null(class_entry, prop_name, prop_name_len, prop_flags); in spl_register_property()
H A Dspl_functions.h54 void spl_register_property( zend_class_entry * class_entry, char *prop_name, int prop_name_len, int…
/PHP-7.4/Zend/
H A Dzend_API.c2698 zend_class_entry *class_entry = malloc(sizeof(zend_class_entry)); in do_register_internal_class() local
2700 *class_entry = *orig_class_entry; in do_register_internal_class()
2702 class_entry->type = ZEND_INTERNAL_CLASS; in do_register_internal_class()
2703 zend_initialize_class_data(class_entry, 0); in do_register_internal_class()
2705 class_entry->info.internal.module = EG(current_module); in do_register_internal_class()
2707 if (class_entry->info.internal.builtin_functions) { in do_register_internal_class()
2708 …zend_register_functions(class_entry, class_entry->info.internal.builtin_functions, &class_entry->f… in do_register_internal_class()
2713 zend_hash_update_ptr(CG(class_table), lowercase_name, class_entry); in do_register_internal_class()
2715 return class_entry; in do_register_internal_class()
2728 register_class = zend_register_internal_class(class_entry); in zend_register_internal_class_ex()
[all …]
H A Dzend_builtin_functions.c308 zend_class_entry class_entry; in ZEND_MINIT_FUNCTION() local
310 INIT_CLASS_ENTRY(class_entry, "stdClass", NULL); in ZEND_MINIT_FUNCTION()
311 zend_standard_class_def = zend_register_internal_class(&class_entry); in ZEND_MINIT_FUNCTION()
H A Dzend_API.h282 ZEND_API zend_class_entry *zend_register_internal_class(zend_class_entry *class_entry);
283 ZEND_API zend_class_entry *zend_register_internal_class_ex(zend_class_entry *class_entry, zend_clas…
285 ZEND_API void zend_class_implements(zend_class_entry *class_entry, int num_interfaces, ...);
/PHP-7.4/
H A DUPGRADING.INTERNALS146 class_entry->static_members_table now have to be accessed through

Completed in 39 milliseconds