Lines Matching refs:ce

232 static zend_always_inline void zend_ffi_object_init(zend_object *object, zend_class_entry *ce) /* {…  in zend_ffi_object_init()  argument
236 object->ce = ce; in zend_ffi_object_init()
1653 return zend_ffi_get_class_name(zobj->ce->name, ZEND_FFI_TYPE(cdata->type)); in zend_ffi_cdata_get_class_name()
1909 static zend_object_iterator *zend_ffi_cdata_get_iterator(zend_class_entry *ce, zval *object, int by… in zend_ffi_cdata_get_iterator() argument
2142 return zend_ffi_get_class_name(zobj->ce->name, ZEND_FFI_TYPE(ctype->type)); in zend_ffi_ctype_get_class_name()
4679 zend_throw_error(NULL, "Instantiation of '%s' is not allowed", ZSTR_VAL(object->ce->name)); in zend_fake_get_constructor()
4684 static ZEND_COLD zend_never_inline void zend_bad_array_access(zend_class_entry *ce) /* {{{ */ in zend_bad_array_access() argument
4686 zend_throw_error(NULL, "Cannot use object of type %s as array", ZSTR_VAL(ce->name)); in zend_bad_array_access()
4692 zend_class_entry *ce = Z_OBJCE_P(object); in zend_fake_read_dimension() local
4693 zend_bad_array_access(ce); in zend_fake_read_dimension()
4700 zend_class_entry *ce = Z_OBJCE_P(object); in zend_fake_write_dimension() local
4701 zend_bad_array_access(ce); in zend_fake_write_dimension()
4707 zend_class_entry *ce = Z_OBJCE_P(object); in zend_fake_has_dimension() local
4708 zend_bad_array_access(ce); in zend_fake_has_dimension()
4715 zend_class_entry *ce = Z_OBJCE_P(object); in zend_fake_unset_dimension() local
4716 zend_bad_array_access(ce); in zend_fake_unset_dimension()
4720 static ZEND_COLD zend_never_inline void zend_bad_property_access(zend_class_entry *ce) /* {{{ */ in zend_bad_property_access() argument
4722 zend_throw_error(NULL, "Cannot access property of object of type %s", ZSTR_VAL(ce->name)); in zend_bad_property_access()
4728 zend_class_entry *ce = Z_OBJCE_P(object); in zend_fake_read_property() local
4729 zend_bad_property_access(ce); in zend_fake_read_property()
4736 zend_class_entry *ce = Z_OBJCE_P(object); in zend_fake_write_property() local
4737 zend_bad_array_access(ce); in zend_fake_write_property()
4744 zend_class_entry *ce = Z_OBJCE_P(object); in zend_fake_has_property() local
4745 zend_bad_array_access(ce); in zend_fake_has_property()
4752 zend_class_entry *ce = Z_OBJCE_P(object); in zend_fake_unset_property() local
4753 zend_bad_array_access(ce); in zend_fake_unset_property()
4765 zend_class_entry *ce = (*obj_ptr)->ce; in zend_fake_get_method() local
4766 zend_throw_error(NULL, "Object of type %s does not support method calls", ZSTR_VAL(ce->name)); in zend_fake_get_method()
5002 zend_class_entry ce; local
5008 INIT_NS_CLASS_ENTRY(ce, "FFI", "Exception", NULL);
5009 zend_ffi_exception_ce = zend_register_internal_class_ex(&ce, zend_ce_error);
5011 INIT_NS_CLASS_ENTRY(ce, "FFI", "ParserException", NULL);
5012 zend_ffi_parser_exception_ce = zend_register_internal_class_ex(&ce, zend_ffi_exception_ce);
5015 INIT_CLASS_ENTRY(ce, "FFI", zend_ffi_functions);
5016 zend_ffi_ce = zend_register_internal_class(&ce);
5052 INIT_NS_CLASS_ENTRY(ce, "FFI", "CData", NULL);
5053 zend_ffi_cdata_ce = zend_register_internal_class(&ce);
5131 INIT_NS_CLASS_ENTRY(ce, "FFI", "CType", NULL);
5132 zend_ffi_ctype_ce = zend_register_internal_class(&ce);