| /PHP_5_3/ext/intl/collator/ |
| H A D | collator_class.c | 62 zend_class_entry *ce TSRMLS_DC ) 69 zend_object_std_init( &intern->zo, ce TSRMLS_CC ); 139 zend_class_entry ce; local 142 INIT_CLASS_ENTRY( ce, "Collator", Collator_class_functions ); 143 ce.create_object = Collator_object_create; 144 Collator_ce_ptr = zend_register_internal_class( &ce TSRMLS_CC );
|
| /PHP_5_3/ext/intl/dateformat/ |
| H A D | dateformat_class.c | 60 zend_object_value IntlDateFormatter_object_create(zend_class_entry *ce TSRMLS_DC) 67 zend_object_std_init( &intern->zo, ce TSRMLS_CC ); 189 zend_class_entry ce; local 192 INIT_CLASS_ENTRY( ce, "IntlDateFormatter", IntlDateFormatter_class_functions ); 193 ce.create_object = IntlDateFormatter_object_create; 194 IntlDateFormatter_ce_ptr = zend_register_internal_class( &ce TSRMLS_CC );
|
| /PHP_5_3/ext/intl/formatter/ |
| H A D | formatter_class.c | 59 zend_object_value NumberFormatter_object_create(zend_class_entry *ce TSRMLS_DC) 66 zend_object_std_init( &intern->zo, ce TSRMLS_CC ); 198 zend_class_entry ce; local 201 INIT_CLASS_ENTRY( ce, "NumberFormatter", NumberFormatter_class_functions ); 202 ce.create_object = NumberFormatter_object_create; 203 NumberFormatter_ce_ptr = zend_register_internal_class( &ce TSRMLS_CC );
|
| /PHP_5_3/ext/intl/locale/ |
| H A D | locale_class.c | 97 zend_class_entry ce; local 100 INIT_CLASS_ENTRY( ce, "Locale", Locale_class_functions ); 101 ce.create_object = NULL; 102 Locale_ce_ptr = zend_register_internal_class( &ce TSRMLS_CC );
|
| /PHP_5_3/ext/intl/msgformat/ |
| H A D | msgformat_class.c | 57 zend_object_value MessageFormatter_object_create(zend_class_entry *ce TSRMLS_DC) 64 zend_object_std_init( &intern->zo, ce TSRMLS_CC ); 164 zend_class_entry ce; local 167 INIT_CLASS_ENTRY( ce, "MessageFormatter", MessageFormatter_class_functions ); 168 ce.create_object = MessageFormatter_object_create; 169 MessageFormatter_ce_ptr = zend_register_internal_class( &ce TSRMLS_CC );
|
| /PHP_5_3/ext/intl/normalizer/ |
| H A D | normalizer_class.c | 56 zend_class_entry ce; local 59 INIT_CLASS_ENTRY( ce, "Normalizer", Normalizer_class_functions ); 60 ce.create_object = NULL; 61 Normalizer_ce_ptr = zend_register_internal_class( &ce TSRMLS_CC );
|
| /PHP_5_3/ext/intl/resourcebundle/ |
| H A D | resourcebundle_iterator.h | 34 zend_object_iterator *resourcebundle_get_iterator( zend_class_entry *ce, zval *object, int byref TSRMLS_DC );
|
| /PHP_5_3/ext/com_dotnet/ |
| H A D | com_extension.c | 347 zend_class_entry ce, *tmp; local 352 INIT_CLASS_ENTRY(ce, "com_exception", NULL); 353 php_com_exception_class_entry = zend_register_internal_class_ex(&ce, zend_exception_get_default(TSRMLS_C), NULL TSRMLS_CC); 357 INIT_CLASS_ENTRY(ce, "com_safearray_proxy", NULL); 358 php_com_saproxy_class_entry = zend_register_internal_class(&ce TSRMLS_CC); 363 INIT_CLASS_ENTRY(ce, "variant", NULL); 364 ce.create_object = php_com_object_new; 365 php_com_variant_class_entry = zend_register_internal_class(&ce TSRMLS_CC); 368 INIT_CLASS_ENTRY(ce, "com", NULL); 369 ce [all...] |
| H A D | php_com_dotnet_internal.h | 44 zend_class_entry *ce; member in struct:_php_com_dotnet_object 59 zend_class_entry *ce = Z_OBJCE_P(zv); local 60 return strcmp("com", ce->name) == 0 || 61 strcmp("dotnet", ce->name) == 0 || 62 strcmp("variant", ce->name) == 0; 79 zend_object_value php_com_object_new(zend_class_entry *ce TSRMLS_DC); 86 zend_object_iterator *php_com_saproxy_iter_get(zend_class_entry *ce, zval *object, int by_ref TSRMLS_DC); 182 zend_object_iterator *php_com_iter_get(zend_class_entry *ce, zval *object, int by_ref TSRMLS_DC);
|
| /PHP_5_3/ext/dom/ |
| H A D | php_dom.c | 201 int dom_set_doc_classmap(php_libxml_ref_obj *document, zend_class_entry *basece, zend_class_entry *ce TSRMLS_DC) 208 if (ce == NULL) { 214 if (ce) { 215 return zend_hash_update(doc_props->classmap, basece->name, basece->name_length + 1, &ce, sizeof(zend_class_entry *), NULL); 226 zend_class_entry **ce = NULL; local 231 if (zend_hash_find(doc_props->classmap, basece->name, basece->name_length + 1, (void**) &ce) == SUCCESS) { 232 return *ce; 361 } else if (instanceof_function(obj->std.ce, dom_node_class_entry TSRMLS_CC)) { 362 php_error(E_WARNING, "Couldn't fetch %s. Node no longer exists", obj->std.ce->name); 662 zend_class_entry ce; local 1306 zend_class_entry *ce; local 1322 zend_class_entry *ce; local [all...] |
| H A D | php_dom.h | 124 zend_object_iterator *php_dom_get_iterator(zend_class_entry *ce, zval *object, int by_ref TSRMLS_DC); 125 int dom_set_doc_classmap(php_libxml_ref_obj *document, zend_class_entry *basece, zend_class_entry *ce TSRMLS_DC); 127 #define REGISTER_DOM_CLASS(ce, name, parent_ce, funcs, entry) \ 128 INIT_CLASS_ENTRY(ce, name, funcs); \ 129 ce.create_object = dom_objects_new; \ 130 entry = zend_register_internal_class_ex(&ce, parent_ce, NULL TSRMLS_CC); 135 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Couldn't fetch %s", __intern->std.ce->name);\
|
| /PHP_5_3/ext/pdo/ |
| H A D | php_pdo_int.h | 34 extern zend_object_value pdo_dbh_new(zend_class_entry *ce TSRMLS_DC); 39 extern zend_object_value pdo_dbstmt_new(zend_class_entry *ce TSRMLS_DC); 43 zend_object_iterator *pdo_stmt_iter_get(zend_class_entry *ce, zval *object, int by_ref TSRMLS_DC); 48 extern zend_object_value pdo_row_new(zend_class_entry *ce TSRMLS_DC); 54 zend_object_iterator *php_pdo_dbstmt_iter_get(zend_class_entry *ce, zval *object TSRMLS_DC);
|
| /PHP_5_3/ext/reflection/ |
| H A D | php_reflection.c | 80 #define METHOD_NOTSTATIC(ce) \ 81 if (!this_ptr || !instanceof_function(Z_OBJCE_P(this_ptr), ce TSRMLS_CC)) { \ 177 zend_class_entry *ce; member in struct:_property_reference 203 zend_class_entry *ce; member in struct:__anon162 314 intern->zo.ce = class_type; 338 static void _class_string(string *str, zend_class_entry *ce, zval *obj, char *indent TSRMLS_DC); 342 static void _class_string(string *str, zend_class_entry *ce, zval *obj, char *indent TSRMLS_DC) argument 351 if (ce->type == ZEND_USER_CLASS && ce->doc_comment) { 352 string_printf(str, "%s%s", indent, ce 1142 zend_reflection_class_factory(zend_class_entry *ce, zval *object TSRMLS_DC) argument 1241 reflection_method_factory(zend_class_entry *ce, zend_function *method, zval *closure_object, zval *object TSRMLS_DC) argument 1266 reflection_property_factory(zend_class_entry *ce, zend_property_info *prop, zval *object TSRMLS_DC) argument 1997 zend_class_entry *ce = NULL; local 2234 zend_class_entry **pce, *ce; local 2442 zend_class_entry *ce; local 3021 zend_class_entry **ce; local 3080 zend_class_entry *ce; local 3126 zend_class_entry *ce; local 3158 zend_class_entry *ce; local 3194 zend_class_entry *ce; local 3248 zend_class_entry *ce; local 3277 zend_class_entry *ce; local 3292 zend_class_entry *ce; local 3307 zend_class_entry *ce; local 3325 zend_class_entry *ce; local 3343 zend_class_entry *ce; local 3361 zend_class_entry *ce; local 3379 zend_class_entry *ce; local 3399 zend_class_entry *ce; local 3427 zend_class_entry *ce; local 3469 _addmethod(zend_function *mptr, zend_class_entry *ce, zval *retval, long filter, zval *obj TSRMLS_DC) argument 3495 zend_class_entry *ce = *va_arg(args, zend_class_entry**); local 3510 zend_class_entry *ce; local 3544 zend_class_entry *ce; local 3580 zend_class_entry *ce, **pce; local 3649 zend_class_entry *ce = *va_arg(args, zend_class_entry**); local 3670 zend_class_entry *ce = *va_arg(args, zend_class_entry**); local 3700 zend_class_entry *ce; local 3731 zend_class_entry *ce; local 3755 zend_class_entry *ce; local 3772 zend_class_entry *ce; local 3795 zend_class_entry *ce; local 3810 zend_class_entry *ce; local 3859 zend_class_entry *ce; local 3875 zend_class_entry *ce; local 3893 zend_class_entry *ce; local 3965 zend_class_entry *ce; local 4044 zend_class_entry *ce; local 4072 zend_class_entry *ce; local 4094 zend_class_entry *ce; local 4114 zend_class_entry *ce, **pce, *class_ce; local 4159 zend_class_entry *ce, *interface_ce, **pce; local 4209 zend_class_entry *ce; local 4227 zend_class_entry *ce; local 4247 zend_class_entry *ce; local 4367 zend_class_entry *ce; local 4677 zend_class_entry *tmp_ce, *ce; local [all...] |
| H A D | php_reflection.h | 44 PHPAPI void zend_reflection_class_factory(zend_class_entry *ce, zval *object TSRMLS_DC);
|
| /PHP_5_3/ext/simplexml/ |
| H A D | php_simplexml_exports.h | 42 PHP_SXE_API zend_object_value sxe_object_new(zend_class_entry *ce TSRMLS_DC);
|
| /PHP_5_3/ext/spl/ |
| H A D | spl_functions.c | 33 zend_class_entry ce; local 35 INIT_CLASS_ENTRY_EX(ce, class_name, strlen(class_name), functions); 36 *ppce = zend_register_internal_interface(&ce TSRMLS_CC); 43 zend_class_entry ce; local 45 INIT_CLASS_ENTRY_EX(ce, class_name, strlen(class_name), function_list); 46 *ppce = zend_register_internal_class(&ce TSRMLS_CC); 58 zend_class_entry ce; local 60 INIT_CLASS_ENTRY_EX(ce, class_name, strlen(class_name), function_list); 61 *ppce = zend_register_internal_class_ex(&ce, parent_ce, NULL TSRMLS_CC); 124 char * spl_gen_private_prop_name(zend_class_entry *ce, cha argument [all...] |
| /PHP_5_3/ext/xsl/ |
| H A D | php_xsl.h | 77 #define REGISTER_XSL_CLASS(ce, name, parent_ce, funcs, entry) \ 78 INIT_CLASS_ENTRY(ce, name, funcs); \ 79 ce.create_object = xsl_objects_new; \ 80 entry = zend_register_internal_class_ex(&ce, parent_ce, NULL TSRMLS_CC);
|
| /PHP_5_3/Zend/ |
| H A D | zend_interfaces.c | 121 ZEND_API zval *zend_user_it_new_iterator(zend_class_entry *ce, zval *object TSRMLS_DC) argument 125 return zend_call_method_with_0_params(&object, ce, &ce->iterator_funcs.zf_new_iterator, "getiterator", &retval); 163 zend_call_method_with_0_params(&object, iter->ce, &iter->ce->iterator_funcs.zf_valid, "valid", &more); 181 zend_call_method_with_0_params(&object, iter->ce, &iter->ce->iterator_funcs.zf_current, "current", &iter->value); 204 zend_call_method_with_0_params(&object, iter->ce, &iter->ce->iterator_funcs.zf_key, "key", &retval); 210 zend_error(E_WARNING, "Nothing returned from %s::key()", iter->ce 276 zend_user_it_get_iterator(zend_class_entry *ce, zval *object, int by_ref TSRMLS_DC) argument 296 zend_user_it_get_new_iterator(zend_class_entry *ce, zval *object, int by_ref TSRMLS_DC) argument 428 zend_class_entry * ce = Z_OBJCE_P(object); local 463 zend_user_unserialize(zval **object, zend_class_entry *ce, const unsigned char *buf, zend_uint buf_len, zend_unserialize_data *data TSRMLS_DC) argument 486 zend_class_entry *ce = Z_OBJCE_P(object); local 492 zend_class_unserialize_deny(zval **object, zend_class_entry *ce, const unsigned char *buf, zend_uint buf_len, zend_unserialize_data *data TSRMLS_DC) argument [all...] |
| H A D | zend_interfaces.h | 37 zend_class_entry *ce; member in struct:_zend_user_iterator 59 ZEND_API zval *zend_user_it_new_iterator(zend_class_entry *ce, zval *object TSRMLS_DC); 60 ZEND_API zend_object_iterator *zend_user_it_get_new_iterator(zend_class_entry *ce, zval *object, int by_ref TSRMLS_DC); 65 ZEND_API int zend_user_unserialize(zval **object, zend_class_entry *ce, const unsigned char *buf, zend_uint buf_len, zend_unserialize_data *data TSRMLS_DC); 68 ZEND_API int zend_class_unserialize_deny(zval **object, zend_class_entry *ce, const unsigned char *buf, zend_uint buf_len, zend_unserialize_data *data TSRMLS_DC);
|
| H A D | zend_object_handlers.h | 146 ZEND_API union _zend_function *zend_std_get_static_method(zend_class_entry *ce, char *function_name_strval, int function_name_strlen TSRMLS_DC); 147 ZEND_API zval **zend_std_get_static_property(zend_class_entry *ce, char *property_name, int property_name_len, zend_bool silent TSRMLS_DC); 148 ZEND_API zend_bool zend_std_unset_static_property(zend_class_entry *ce, char *property_name, int property_name_len TSRMLS_DC); 150 ZEND_API struct _zend_property_info *zend_get_property_info(zend_class_entry *ce, zval *member, int silent TSRMLS_DC); 159 ZEND_API int zend_check_private(union _zend_function *fbc, zend_class_entry *ce, char *function_name_strval, int function_name_strlen TSRMLS_DC); 161 ZEND_API int zend_check_protected(zend_class_entry *ce, zend_class_entry *scope);
|
| H A D | zend_objects.c | 29 ZEND_API void zend_object_std_init(zend_object *object, zend_class_entry *ce TSRMLS_DC) 34 object->ce = ce; 52 zend_function *destructor = object ? object->ce->destructor : NULL; 63 if (object->ce != EG(scope)) { 64 zend_class_entry *ce = object->ce; local 68 ce->name, 77 zend_class_entry *ce = object->ce; local [all...] |
| H A D | zend_opcode.c | 180 zend_class_entry *ce = *pce; local 182 if (--ce->refcount > 0) { 185 switch (ce->type) { 187 zend_hash_destroy(&ce->default_properties); 188 zend_hash_destroy(&ce->properties_info); 189 zend_hash_destroy(&ce->default_static_members); 190 efree(ce->name); 191 zend_hash_destroy(&ce->function_table); 192 zend_hash_destroy(&ce->constants_table); 193 if (ce 219 zend_class_add_ref(zend_class_entry **ce) argument [all...] |
| H A D | zend_object_handlers.c | 72 zend_class_entry *ce = Z_OBJCE_P(object); local 82 zend_call_method_with_1_params(&object, ce, &ce->__get, ZEND_GET_FUNC_NAME, &retval, member); 98 zend_class_entry *ce = Z_OBJCE_P(object); local 109 zend_call_method_with_2_params(&object, ce, &ce->__set, ZEND_SET_FUNC_NAME, &retval, member, value); 126 zend_class_entry *ce = Z_OBJCE_P(object); local 134 zend_call_method_with_1_params(&object, ce, &ce->__unset, ZEND_UNSET_FUNC_NAME, NULL, member); 143 zend_class_entry *ce local 194 zend_get_property_info(zend_class_entry *ce, zval *member, int silent TSRMLS_DC) argument 510 zend_class_entry *ce = Z_OBJCE_P(object); local 544 zend_class_entry *ce = Z_OBJCE_P(object); local 562 zend_class_entry *ce = Z_OBJCE_P(object); local 691 zend_class_entry *ce = Z_OBJCE_P(object); local 708 zend_class_entry *ce = Z_OBJCE_P(this_ptr); local 752 zend_check_private_int(zend_function *fbc, zend_class_entry *ce, char *function_name_strval, int function_name_strlen TSRMLS_DC) argument 787 zend_check_private(zend_function *fbc, zend_class_entry *ce, char *function_name_strval, int function_name_strlen TSRMLS_DC) argument 795 zend_check_protected(zend_class_entry *ce, zend_class_entry *scope) argument 828 zend_get_user_call_function(zend_class_entry *ce, const char *method_name, int method_len) argument 924 zend_class_entry *ce = EG(scope); local 963 zend_get_user_callstatic_function(zend_class_entry *ce, const char *method_name, int method_len) argument 983 zend_std_get_static_method(zend_class_entry *ce, char *function_name_strval, int function_name_strlen TSRMLS_DC) argument 1054 zend_std_get_static_property(zend_class_entry *ce, char *property_name, int property_name_len, zend_bool silent TSRMLS_DC) argument 1097 zend_std_unset_static_property(zend_class_entry *ce, char *property_name, int property_name_len TSRMLS_DC) argument 1255 zend_class_entry *ce; local 1276 zend_class_entry *ce; local 1346 zend_class_entry *ce; local [all...] |
| H A D | zend_builtin_functions.c | 771 zend_class_entry *ce = NULL; local 780 ce = EG(scope); 781 if (ce && ce->parent) { 782 RETURN_STRINGL(ce->parent->name, ce->parent->name_length, 1); 793 ce = zend_get_class_entry(arg TSRMLS_CC); 799 ce = *pce; 803 if (ce && ce 818 zend_class_entry **ce; local 876 add_class_vars(zend_class_entry *ce, HashTable *properties, zval *return_value TSRMLS_DC) argument 1002 zend_class_entry *ce = NULL, **pce; local 1066 zend_class_entry * ce, **pce; local 1122 zend_class_entry *ce, **pce; local 1170 zend_class_entry **ce; local 1213 zend_class_entry **ce; local 1297 zend_class_entry **ce; local 1558 zend_class_entry *ce = *pce; local [all...] |
| H A D | zend_compile.c | 2418 static void do_inherit_parent_constructor(zend_class_entry *ce) /* {{{ */ argument 2422 if (!ce->parent) { 2427 ce->create_object = ce->parent->create_object; 2430 if (!ce->get_iterator) { 2431 ce->get_iterator = ce->parent->get_iterator; 2433 if (!ce->iterator_funcs.funcs) { 2434 ce->iterator_funcs.funcs = ce 2698 do_inherit_property_access_check(HashTable *target_ht, zend_property_info *parent_info, const zend_hash_key *hash_key, zend_class_entry *ce) argument 2777 do_implement_interface(zend_class_entry *ce, zend_class_entry *iface TSRMLS_DC) argument 2788 zend_do_inherit_interfaces(zend_class_entry *ce, const zend_class_entry *iface TSRMLS_DC) argument 2842 zend_do_inheritance(zend_class_entry *ce, zend_class_entry *parent_ce TSRMLS_DC) argument 2912 zend_do_implement_interface(zend_class_entry *ce, zend_class_entry *iface TSRMLS_DC) argument 2982 zend_class_entry *ce, **pce; local 3013 zend_class_entry *ce, **pce; local 3509 zend_class_entry *ce = CG(active_class_entry); local 5007 zend_initialize_class_data(zend_class_entry *ce, zend_bool nullify_handlers TSRMLS_DC) argument [all...] |