Home
last modified time | relevance | path

Searched refs:ZEND_ACC_READONLY (Results 1 – 21 of 21) sorted by relevance

/php-src/ext/standard/
H A Ddir_arginfo.h66 …, property_path_name, &property_path_default_value, ZEND_ACC_PUBLIC|ZEND_ACC_READONLY, NULL, (zend… in register_class_Directory()
72 …operty_handle_name, &property_handle_default_value, ZEND_ACC_PUBLIC|ZEND_ACC_READONLY, NULL, (zend… in register_class_Directory()
/php-src/ext/tidy/
H A Dtidy_arginfo.h549 …property_value_name, &property_value_default_value, ZEND_ACC_PUBLIC|ZEND_ACC_READONLY, NULL, (zend… in register_class_tidyNode()
555 …, property_name_name, &property_name_default_value, ZEND_ACC_PUBLIC|ZEND_ACC_READONLY, NULL, (zend… in register_class_tidyNode()
561 …, property_type_name, &property_type_default_value, ZEND_ACC_PUBLIC|ZEND_ACC_READONLY, NULL, (zend… in register_class_tidyNode()
567 …, property_line_name, &property_line_default_value, ZEND_ACC_PUBLIC|ZEND_ACC_READONLY, NULL, (zend… in register_class_tidyNode()
573 …operty_column_name, &property_column_default_value, ZEND_ACC_PUBLIC|ZEND_ACC_READONLY, NULL, (zend… in register_class_tidyNode()
579 …prietary_name, &property_proprietary_default_value, ZEND_ACC_PUBLIC|ZEND_ACC_READONLY, NULL, (zend… in register_class_tidyNode()
585 …ntry, property_id_name, &property_id_default_value, ZEND_ACC_PUBLIC|ZEND_ACC_READONLY, NULL, (zend… in register_class_tidyNode()
591 …_attribute_name, &property_attribute_default_value, ZEND_ACC_PUBLIC|ZEND_ACC_READONLY, NULL, (zend… in register_class_tidyNode()
597 …property_child_name, &property_child_default_value, ZEND_ACC_PUBLIC|ZEND_ACC_READONLY, NULL, (zend… in register_class_tidyNode()
/php-src/ext/intl/transliterator/
H A Dtransliterator_arginfo.h79 …ntry, property_id_name, &property_id_default_value, ZEND_ACC_PUBLIC|ZEND_ACC_READONLY, NULL, (zend… in register_class_Transliterator()
/php-src/Zend/
H A Dzend_object_handlers.c624 if (prop_info && UNEXPECTED(prop_info->flags & ZEND_ACC_READONLY) in zend_std_read_property()
641 if (prop_info && UNEXPECTED(prop_info->flags & ZEND_ACC_READONLY)) { in zend_std_read_property()
798 ZEND_ASSERT(prop_info->flags & ZEND_ACC_READONLY); in verify_readonly_initialization_access()
824 …if (UNEXPECTED((prop_info->flags & ZEND_ACC_READONLY) && !(Z_PROP_FLAG_P(variable_ptr) & IS_PROP_R… in zend_std_write_property()
927 if (UNEXPECTED((prop_info->flags & ZEND_ACC_READONLY) in zend_std_write_property()
1120 } else if (prop_info && UNEXPECTED(prop_info->flags & ZEND_ACC_READONLY)) { in zend_std_get_property_ptr_ptr()
1130 } else if (prop_info && UNEXPECTED(prop_info->flags & ZEND_ACC_READONLY)) { in zend_std_get_property_ptr_ptr()
1184 if (UNEXPECTED(prop_info && (prop_info->flags & ZEND_ACC_READONLY))) { in zend_std_unset_property()
1208 if (UNEXPECTED(prop_info && (prop_info->flags & ZEND_ACC_READONLY) in zend_std_unset_property()
H A Dzend_attributes_arginfo.h205 …roperty_value_name, &property_value_default_value, ZEND_ACC_PRIVATE|ZEND_ACC_READONLY, NULL, (zend… in register_class_SensitiveParameterValue()
H A Dzend_enum.c474 …, ZSTR_KNOWN(ZEND_STR_NAME), &name_default_value, ZEND_ACC_PUBLIC | ZEND_ACC_READONLY, NULL, name_… in zend_enum_register_props()
480 …ZSTR_KNOWN(ZEND_STR_VALUE), &value_default_value, ZEND_ACC_PUBLIC | ZEND_ACC_READONLY, NULL, value… in zend_enum_register_props()
H A Dzend_inheritance.c1299 …if (UNEXPECTED((child_info->flags & ZEND_ACC_READONLY) != (parent_info->flags & ZEND_ACC_READONLY)… in do_inherit_property()
1302 parent_info->flags & ZEND_ACC_READONLY ? "readonly" : "non-readonly", in do_inherit_property()
1304 child_info->flags & ZEND_ACC_READONLY ? "readonly" : "non-readonly", in do_inherit_property()
2495 uint32_t flags_mask = ZEND_ACC_PPP_MASK | ZEND_ACC_STATIC | ZEND_ACC_READONLY; in zend_do_traits_property_binding()
2529 if ((ce->ce_flags & ZEND_ACC_READONLY_CLASS) && !(property_info->flags & ZEND_ACC_READONLY)) { in zend_do_traits_property_binding()
H A Dzend_compile.h232 #define ZEND_ACC_READONLY (1 << 7) /* | | X | */ macro
H A Dzend_compile.c862 return ZEND_ACC_READONLY; in zend_modifier_token_to_flag()
983 if ((flags & ZEND_ACC_READONLY) && (new_flag & ZEND_ACC_READONLY)) { in zend_add_member_modifier()
7184 uint32_t property_flags = param_ast->attr & (ZEND_ACC_PPP_MASK | ZEND_ACC_READONLY); in zend_compile_params()
7348 if (!(property_flags & ZEND_ACC_READONLY) && (scope->ce_flags & ZEND_ACC_READONLY_CLASS)) { in zend_compile_params()
7349 property_flags |= ZEND_ACC_READONLY; in zend_compile_params()
7364 if (property_flags & ZEND_ACC_READONLY) { in zend_compile_params()
7396 uint32_t flags = param_ast->attr & (ZEND_ACC_PPP_MASK | ZEND_ACC_READONLY); in zend_compile_params()
7633 if (fn_flags & ZEND_ACC_READONLY) { in zend_begin_method_decl()
8017 flags |= ZEND_ACC_READONLY; in zend_compile_prop_decl()
8020 if (flags & ZEND_ACC_READONLY) { in zend_compile_prop_decl()
H A Dzend_ast.c1904 if (ast->attr & ZEND_ACC_READONLY) { in zend_ast_export_ex()
H A Dzend_execute.c1028 …if (UNEXPECTED((info->flags & ZEND_ACC_READONLY) && !(Z_PROP_FLAG_P(property_val) & IS_PROP_REINIT… in zend_assign_to_typed_prop()
3202 if (UNEXPECTED(prop_info->flags & ZEND_ACC_READONLY)) { in zend_fetch_property_address()
H A Dzend_API.c4418 if (access_type & ZEND_ACC_READONLY) { in zend_declare_typed_property()
H A Dzend_vm_def.h7175 if (UNEXPECTED(prop_info->flags & ZEND_ACC_READONLY)) {
H A Dzend_vm_execute.h22627 if (UNEXPECTED(prop_info->flags & ZEND_ACC_READONLY)) { in ZEND_FE_FETCH_RW_SPEC_VAR_HANDLER()
/php-src/ext/random/
H A Drandom_arginfo.h333 …operty_engine_name, &property_engine_default_value, ZEND_ACC_PUBLIC|ZEND_ACC_READONLY, NULL, (zend… in register_class_Random_Randomizer()
/php-src/ext/opcache/jit/
H A Dzend_jit_helpers.c2566 …if (UNEXPECTED((info->flags & ZEND_ACC_READONLY) && !(Z_PROP_FLAG_P(property_val) & IS_PROP_REINIT… in zend_jit_assign_to_typed_prop()
2628 …if (UNEXPECTED((prop_info->flags & ZEND_ACC_READONLY) && !(Z_PROP_FLAG_P(zptr) & IS_PROP_REINITABL… in zend_jit_assign_op_to_typed_prop()
2723 …if (UNEXPECTED((prop_info->flags & ZEND_ACC_READONLY) && !(Z_PROP_FLAG_P(var_ptr) & IS_PROP_REINIT… in zend_jit_inc_typed_prop()
2756 …if (UNEXPECTED((prop_info->flags & ZEND_ACC_READONLY) && !(Z_PROP_FLAG_P(var_ptr) & IS_PROP_REINIT… in zend_jit_dec_typed_prop()
2803 …if (UNEXPECTED((prop_info->flags & ZEND_ACC_READONLY) && !(Z_PROP_FLAG_P(var_ptr) & IS_PROP_REINIT… in zend_jit_post_inc_typed_prop()
2838 …if (UNEXPECTED((prop_info->flags & ZEND_ACC_READONLY) && !(Z_PROP_FLAG_P(var_ptr) & IS_PROP_REINIT… in zend_jit_post_dec_typed_prop()
H A Dzend_jit_ir.c13776 ir_CONST_U32(ZEND_ACC_READONLY)));
13853 if (opline->opcode == ZEND_FETCH_OBJ_W && (prop_info->flags & ZEND_ACC_READONLY)) {
14214 …_flags & ZEND_ACC_IMMUTABLE) || ce->__get || ce->__set || (prop_info->flags & ZEND_ACC_READONLY)) {
/php-src/ext/zend_test/
H A Dtest_arginfo.h654 …nlyProp_name, &property_readonlyProp_default_value, ZEND_ACC_PUBLIC|ZEND_ACC_READONLY, NULL, (zend… in register_class__ZendTestClass()
/php-src/ext/reflection/
H A Dphp_reflection.c949 if (prop->flags & ZEND_ACC_READONLY) { in _property_string()
1604 if (modifiers & (ZEND_ACC_READONLY | ZEND_ACC_READONLY_CLASS)) { in ZEND_METHOD()
5691 _property_check_flag(INTERNAL_FUNCTION_PARAM_PASSTHRU, ZEND_ACC_READONLY); in ZEND_METHOD()
5720 uint32_t keep_flags = ZEND_ACC_PPP_MASK | ZEND_ACC_STATIC | ZEND_ACC_READONLY; in ZEND_METHOD()
H A Dphp_reflection_arginfo.h1420 ZVAL_LONG(&const_IS_READONLY_value, ZEND_ACC_READONLY); in register_class_ReflectionProperty()
/php-src/ext/spl/
H A Dspl_array.c1576 if (prop_info->flags & ZEND_ACC_READONLY) { in spl_array_it_get_current_data()

Completed in 502 milliseconds