Home
last modified time | relevance | path

Searched refs:tmp_ce (Results 1 – 25 of 41) sorted by relevance

12

/dports/devel/pecl-ev/ev-1.1.5/php8/
H A Dmacros.h59 zend_class_entry tmp_ce; \
60 INIT_CLASS_ENTRY(tmp_ce, name, ce_functions); \
61 tmp_ce.create_object = php_ev_object_create; \
62 ce = zend_register_internal_class(&tmp_ce); \
67 zend_class_entry tmp_ce; \
68 INIT_CLASS_ENTRY_EX(tmp_ce, name, sizeof(name) - 1, ce_functions); \
69 tmp_ce.create_object = parent_ce->create_object; \
70 ce = zend_register_internal_class_ex(&tmp_ce, parent_ce); \
/dports/devel/pecl-ev/ev-1.1.5/php7/
H A Dmacros.h59 zend_class_entry tmp_ce; \
60 INIT_CLASS_ENTRY(tmp_ce, name, ce_functions); \
61 tmp_ce.create_object = php_ev_object_create; \
62 ce = zend_register_internal_class(&tmp_ce); \
67 zend_class_entry tmp_ce; \
68 INIT_CLASS_ENTRY_EX(tmp_ce, name, sizeof(name) - 1, ce_functions); \
69 tmp_ce.create_object = parent_ce->create_object; \
70 ce = zend_register_internal_class_ex(&tmp_ce, parent_ce); \
/dports/devel/pecl-event/event-3.0.6/php5/src/
H A Dutil.h37 # define PHP_EVENT_INIT_CLASS(tmp_ce, name, ce_functions) \ argument
38 INIT_NS_CLASS_ENTRY(tmp_ce, PHP_EVENT_NS, name, ce_functions)
40 # define PHP_EVENT_INIT_CLASS(tmp_ce, name, ce_functions) \ argument
41 INIT_CLASS_ENTRY(tmp_ce, name, ce_functions)
46 zend_class_entry tmp_ce; \
47 PHP_EVENT_INIT_CLASS(tmp_ce, name, ce_functions); \
48 ce = zend_register_internal_class(&tmp_ce TSRMLS_CC); \
/dports/devel/pecl-event/event-3.0.6/php7/src/
H A Dutil.h77 # define PHP_EVENT_INIT_CLASS(tmp_ce, name, ce_functions) \ argument
78 INIT_NS_CLASS_ENTRY(tmp_ce, PHP_EVENT_NS, name, ce_functions)
80 # define PHP_EVENT_INIT_CLASS(tmp_ce, name, ce_functions) \ argument
81 INIT_CLASS_ENTRY(tmp_ce, name, ce_functions)
86 zend_class_entry tmp_ce; \
87 PHP_EVENT_INIT_CLASS(tmp_ce, name, ce_functions); \
88 tmp_ce.create_object = create_func; \
89 ce = zend_register_internal_class(&tmp_ce); \
/dports/devel/pecl-protobuf/protobuf-3.19.1/
H A Dwkt.inc50 zend_class_entry tmp_ce;
128 zend_class_entry tmp_ce;
195 zend_class_entry tmp_ce;
386 zend_class_entry tmp_ce;
580 zend_class_entry tmp_ce;
654 zend_class_entry tmp_ce;
698 zend_class_entry tmp_ce;
769 zend_class_entry tmp_ce;
811 zend_class_entry tmp_ce;
834 zend_class_entry tmp_ce;
[all …]
H A Darena.c85 zend_class_entry tmp_ce; in Arena_ModuleInit() local
87 INIT_CLASS_ENTRY(tmp_ce, "Google\\Protobuf\\Internal\\Arena", Arena_methods); in Arena_ModuleInit()
88 Arena_class_entry = zend_register_internal_class(&tmp_ce); in Arena_ModuleInit()
H A Ddef.c1052 zend_class_entry tmp_ce; in Def_ModuleInit() local
1055 INIT_CLASS_ENTRY(tmp_ce, "Google\\Protobuf\\OneofDescriptor", in Def_ModuleInit()
1057 OneofDescriptor_class_entry = zend_register_internal_class(&tmp_ce); in Def_ModuleInit()
1064 INIT_CLASS_ENTRY(tmp_ce, "Google\\Protobuf\\EnumValueDescriptor", in Def_ModuleInit()
1072 INIT_CLASS_ENTRY(tmp_ce, "Google\\Protobuf\\EnumDescriptor", in Def_ModuleInit()
1074 EnumDescriptor_class_entry = zend_register_internal_class(&tmp_ce); in Def_ModuleInit()
1081 INIT_CLASS_ENTRY(tmp_ce, "Google\\Protobuf\\Descriptor", in Def_ModuleInit()
1084 Descriptor_class_entry = zend_register_internal_class(&tmp_ce); in Def_ModuleInit()
1091 INIT_CLASS_ENTRY(tmp_ce, "Google\\Protobuf\\FieldDescriptor", in Def_ModuleInit()
1100 INIT_CLASS_ENTRY(tmp_ce, "Google\\Protobuf\\DescriptorPool", in Def_ModuleInit()
[all …]
H A Darray.c635 zend_class_entry tmp_ce; in Array_ModuleInit() local
639 INIT_CLASS_ENTRY(tmp_ce, "Google\\Protobuf\\Internal\\RepeatedField", in Array_ModuleInit()
642 RepeatedField_class_entry = zend_register_internal_class(&tmp_ce); in Array_ModuleInit()
661 INIT_CLASS_ENTRY(tmp_ce, "Google\\Protobuf\\Internal\\RepeatedFieldIter", in Array_ModuleInit()
664 RepeatedFieldIter_class_entry = zend_register_internal_class(&tmp_ce); in Array_ModuleInit()
H A Dmap.c632 zend_class_entry tmp_ce; in Map_ModuleInit() local
635 INIT_CLASS_ENTRY(tmp_ce, "Google\\Protobuf\\Internal\\MapField", in Map_ModuleInit()
638 MapField_class_entry = zend_register_internal_class(&tmp_ce); in Map_ModuleInit()
656 INIT_CLASS_ENTRY(tmp_ce, "Google\\Protobuf\\Internal\\MapFieldIter", in Map_ModuleInit()
659 MapFieldIter_class_entry = zend_register_internal_class(&tmp_ce); in Map_ModuleInit()
H A Dmessage.c1369 zend_class_entry tmp_ce; in Message_ModuleInit() local
1372 INIT_CLASS_ENTRY(tmp_ce, "Google\\Protobuf\\Internal\\Message", in Message_ModuleInit()
1375 message_ce = zend_register_internal_class(&tmp_ce); in Message_ModuleInit()
/dports/devel/pecl-event/event-3.0.6/php8/src/
H A Dutil.h88 # define PHP_EVENT_INIT_CLASS(tmp_ce, name, ce_functions) \ argument
89 INIT_NS_CLASS_ENTRY(tmp_ce, PHP_EVENT_NS, name, ce_functions)
91 # define PHP_EVENT_INIT_CLASS(tmp_ce, name, ce_functions) \ argument
92 INIT_CLASS_ENTRY(tmp_ce, name, ce_functions)
97 zend_class_entry tmp_ce; \
98 PHP_EVENT_INIT_CLASS(tmp_ce, name, ce_functions); \
99 tmp_ce.create_object = create_func; \
100 ce = zend_register_internal_class(&tmp_ce); \
/dports/devel/pecl-ev/ev-1.1.5/php5/
H A Dmacros.h64 zend_class_entry tmp_ce; \
65 INIT_CLASS_ENTRY(tmp_ce, name, ce_functions); \
66 ce = zend_register_internal_class(&tmp_ce TSRMLS_CC); \
72 zend_class_entry tmp_ce; \
73 INIT_CLASS_ENTRY_EX(tmp_ce, name, sizeof(name) - 1, ce_functions); \
74 ce = zend_register_internal_class_ex(&tmp_ce, parent_ce, NULL TSRMLS_CC); \
/dports/devel/pecl-xdebug/xdebug-3.1.2/src/lib/
H A Dvar.c40 zend_class_entry *tmp_ce = Z_OBJCE(dzval); in ZEND_EXTERN_MODULE_GLOBALS() local
43 if (tmp_ce->type == ZEND_INTERNAL_CLASS) { in ZEND_EXTERN_MODULE_GLOBALS()
46 tmp_ce = tmp_ce->parent; in ZEND_EXTERN_MODULE_GLOBALS()
47 } while (tmp_ce); in ZEND_EXTERN_MODULE_GLOBALS()
/dports/www/mod_php81/php-8.1.1/Zend/
H A Dzend_enum.c361 zend_class_entry tmp_ce; in zend_register_internal_enum() local
362 INIT_CLASS_ENTRY_EX(tmp_ce, name, strlen(name), functions); in zend_register_internal_enum()
364 zend_class_entry *ce = zend_register_internal_class(&tmp_ce); in zend_register_internal_enum()
/dports/lang/php81/php-8.1.1/Zend/
H A Dzend_enum.c361 zend_class_entry tmp_ce; in zend_register_internal_enum() local
362 INIT_CLASS_ENTRY_EX(tmp_ce, name, strlen(name), functions); in zend_register_internal_enum()
364 zend_class_entry *ce = zend_register_internal_class(&tmp_ce); in zend_register_internal_enum()
/dports/lang/php74/php-7.4.27/ext/reflection/
H A Dphp_reflection.c1229 while (tmp_ce && (tmp_info = zend_hash_find_ptr(&tmp_ce->properties_info, name)) == NULL) { in reflection_property_factory()
1230 ce = tmp_ce; in reflection_property_factory()
1231 tmp_ce = tmp_ce->parent; in reflection_property_factory()
5327 while (tmp_ce && (tmp_info = zend_hash_find_ptr(&tmp_ce->properties_info, name)) == NULL) { in ZEND_METHOD()
5328 ce = tmp_ce; in ZEND_METHOD()
5330 tmp_ce = tmp_ce->parent; in ZEND_METHOD()
5610 zend_class_entry *tmp_ce, *ce; in ZEND_METHOD() local
5618 ce = tmp_ce = intern->ce; in ZEND_METHOD()
5624 ce = tmp_ce; in ZEND_METHOD()
5625 if (tmp_ce == tmp_info->ce) { in ZEND_METHOD()
[all …]
/dports/www/mod_php74/php-7.4.27/ext/reflection/
H A Dphp_reflection.c1229 while (tmp_ce && (tmp_info = zend_hash_find_ptr(&tmp_ce->properties_info, name)) == NULL) { in reflection_property_factory()
1230 ce = tmp_ce; in reflection_property_factory()
1231 tmp_ce = tmp_ce->parent; in reflection_property_factory()
5327 while (tmp_ce && (tmp_info = zend_hash_find_ptr(&tmp_ce->properties_info, name)) == NULL) { in ZEND_METHOD()
5328 ce = tmp_ce; in ZEND_METHOD()
5330 tmp_ce = tmp_ce->parent; in ZEND_METHOD()
5610 zend_class_entry *tmp_ce, *ce; in ZEND_METHOD() local
5618 ce = tmp_ce = intern->ce; in ZEND_METHOD()
5624 ce = tmp_ce; in ZEND_METHOD()
5625 if (tmp_ce == tmp_info->ce) { in ZEND_METHOD()
[all …]
/dports/lang/php73/php-7.3.33/ext/reflection/
H A Dphp_reflection.c1239 while (tmp_ce && (tmp_info = zend_hash_find_ptr(&tmp_ce->properties_info, name)) == NULL) { in reflection_property_factory()
1240 ce = tmp_ce; in reflection_property_factory()
1241 tmp_ce = tmp_ce->parent; in reflection_property_factory()
5319 while (tmp_ce && (tmp_info = zend_hash_find_ptr(&tmp_ce->properties_info, name)) == NULL) { in ZEND_METHOD()
5320 ce = tmp_ce; in ZEND_METHOD()
5322 tmp_ce = tmp_ce->parent; in ZEND_METHOD()
5543 zend_class_entry *tmp_ce, *ce; in ZEND_METHOD() local
5551 ce = tmp_ce = ref->ce; in ZEND_METHOD()
5557 ce = tmp_ce; in ZEND_METHOD()
5558 if (tmp_ce == tmp_info->ce) { in ZEND_METHOD()
[all …]
/dports/www/mod_php73/php-7.3.33/ext/reflection/
H A Dphp_reflection.c1239 while (tmp_ce && (tmp_info = zend_hash_find_ptr(&tmp_ce->properties_info, name)) == NULL) { in reflection_property_factory()
1240 ce = tmp_ce; in reflection_property_factory()
1241 tmp_ce = tmp_ce->parent; in reflection_property_factory()
5319 while (tmp_ce && (tmp_info = zend_hash_find_ptr(&tmp_ce->properties_info, name)) == NULL) { in ZEND_METHOD()
5320 ce = tmp_ce; in ZEND_METHOD()
5322 tmp_ce = tmp_ce->parent; in ZEND_METHOD()
5543 zend_class_entry *tmp_ce, *ce; in ZEND_METHOD() local
5551 ce = tmp_ce = ref->ce; in ZEND_METHOD()
5557 ce = tmp_ce; in ZEND_METHOD()
5558 if (tmp_ce == tmp_info->ce) { in ZEND_METHOD()
[all …]
/dports/devel/pecl-ast/ast-1.0.16/
H A Dast.c1407 zend_class_entry tmp_ce; in PHP_MINIT_FUNCTION() local
1532 INIT_CLASS_ENTRY(tmp_ce, "ast\\Node", class_ast_Node_methods); in PHP_MINIT_FUNCTION()
1533 ast_node_ce = zend_register_internal_class(&tmp_ce); in PHP_MINIT_FUNCTION()
1543 INIT_CLASS_ENTRY(tmp_ce, "ast\\Metadata", NULL); in PHP_MINIT_FUNCTION()
1544 ast_metadata_ce = zend_register_internal_class(&tmp_ce); in PHP_MINIT_FUNCTION()
/dports/math/php80-gmp/php-8.0.15/ext/gmp/
H A Dgmp.c529 zend_class_entry tmp_ce; in ZEND_MINIT_FUNCTION() local
530 INIT_CLASS_ENTRY(tmp_ce, "GMP", class_GMP_methods); in ZEND_MINIT_FUNCTION()
531 gmp_ce = zend_register_internal_class(&tmp_ce); in ZEND_MINIT_FUNCTION()
/dports/lang/php80/php-8.0.15/ext/gmp/
H A Dgmp.c529 zend_class_entry tmp_ce; in ZEND_MINIT_FUNCTION() local
530 INIT_CLASS_ENTRY(tmp_ce, "GMP", class_GMP_methods); in ZEND_MINIT_FUNCTION()
531 gmp_ce = zend_register_internal_class(&tmp_ce); in ZEND_MINIT_FUNCTION()
/dports/www/mod_php80/php-8.0.15/ext/gmp/
H A Dgmp.c529 zend_class_entry tmp_ce; in ZEND_MINIT_FUNCTION() local
530 INIT_CLASS_ENTRY(tmp_ce, "GMP", class_GMP_methods); in ZEND_MINIT_FUNCTION()
531 gmp_ce = zend_register_internal_class(&tmp_ce); in ZEND_MINIT_FUNCTION()
/dports/lang/php73/php-7.3.33/ext/gmp/
H A Dgmp.c659 zend_class_entry tmp_ce; in ZEND_MINIT_FUNCTION() local
660 INIT_CLASS_ENTRY(tmp_ce, "GMP", NULL); in ZEND_MINIT_FUNCTION()
661 gmp_ce = zend_register_internal_class(&tmp_ce); in ZEND_MINIT_FUNCTION()
/dports/math/php73-gmp/php-7.3.33/ext/gmp/
H A Dgmp.c659 zend_class_entry tmp_ce; in ZEND_MINIT_FUNCTION() local
660 INIT_CLASS_ENTRY(tmp_ce, "GMP", NULL); in ZEND_MINIT_FUNCTION()
661 gmp_ce = zend_register_internal_class(&tmp_ce); in ZEND_MINIT_FUNCTION()

12