Home
last modified time | relevance | path

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

/PHP-8.0/ext/zend_test/
H A Dtest.c441 zend_class_entry class_entry; in PHP_MINIT_FUNCTION() local
443 INIT_CLASS_ENTRY(class_entry, "_ZendTestInterface", NULL); in PHP_MINIT_FUNCTION()
444 zend_test_interface = zend_register_internal_interface(&class_entry); in PHP_MINIT_FUNCTION()
446 INIT_CLASS_ENTRY(class_entry, "_ZendTestClass", class__ZendTestClass_methods); in PHP_MINIT_FUNCTION()
447 zend_test_class = zend_register_internal_class(&class_entry); in PHP_MINIT_FUNCTION()
500 INIT_CLASS_ENTRY(class_entry, "_ZendTestChildClass", NULL); in PHP_MINIT_FUNCTION()
501 zend_test_child_class = zend_register_internal_class_ex(&class_entry, zend_test_class); in PHP_MINIT_FUNCTION()
506 INIT_CLASS_ENTRY(class_entry, "_ZendTestTrait", class__ZendTestTrait_methods); in PHP_MINIT_FUNCTION()
507 zend_test_trait = zend_register_internal_class(&class_entry); in PHP_MINIT_FUNCTION()
515 INIT_CLASS_ENTRY(class_entry, "ZendTestAttribute", NULL); in PHP_MINIT_FUNCTION()
[all …]
/PHP-8.0/ext/spl/
H A Dspl_functions.c69 void spl_register_property( zend_class_entry * class_entry, char *prop_name, int prop_name_len, int… in spl_register_property() argument
71 zend_declare_property_null(class_entry, prop_name, prop_name_len, prop_flags); in spl_register_property()
H A Dspl_functions.h52 void spl_register_property( zend_class_entry * class_entry, char *prop_name, int prop_name_len, int…
/PHP-8.0/Zend/
H A Dzend_API.c2768 *class_entry = *orig_class_entry; in do_register_internal_class()
2770 class_entry->type = ZEND_INTERNAL_CLASS; in do_register_internal_class()
2771 zend_initialize_class_data(class_entry, 0); in do_register_internal_class()
2773 class_entry->info.internal.module = EG(current_module); in do_register_internal_class()
2775 if (class_entry->info.internal.builtin_functions) { in do_register_internal_class()
2776 …zend_register_functions(class_entry, class_entry->info.internal.builtin_functions, &class_entry->f… in do_register_internal_class()
2784 if (class_entry->__tostring && !zend_string_equals_literal(class_entry->name, "Stringable") in do_register_internal_class()
2785 && !(class_entry->ce_flags & ZEND_ACC_TRAIT)) { in do_register_internal_class()
2790 return class_entry; in do_register_internal_class()
2803 register_class = zend_register_internal_class(class_entry); in zend_register_internal_class_ex()
[all …]
H A Dzend_builtin_functions.c35 zend_class_entry class_entry; in ZEND_MINIT_FUNCTION() local
37 INIT_CLASS_ENTRY(class_entry, "stdClass", NULL); in ZEND_MINIT_FUNCTION()
38 zend_standard_class_def = zend_register_internal_class(&class_entry); in ZEND_MINIT_FUNCTION()
H A Dzend_API.h332 ZEND_API zend_class_entry *zend_register_internal_class(zend_class_entry *class_entry);
333 ZEND_API zend_class_entry *zend_register_internal_class_ex(zend_class_entry *class_entry, zend_clas…
335 ZEND_API void zend_class_implements(zend_class_entry *class_entry, int num_interfaces, ...);

Completed in 37 milliseconds