Lines Matching refs:access_type

3414 …lass_entry *ce, const char *name, int name_length, zval *property, int access_type, const char *do…  in zend_declare_property_ex()  argument
3420 if (!(access_type & ZEND_ACC_PPP_MASK)) { in zend_declare_property_ex()
3421 access_type |= ZEND_ACC_PUBLIC; in zend_declare_property_ex()
3423 if (access_type & ZEND_ACC_STATIC) { in zend_declare_property_ex()
3461 switch (access_type & ZEND_ACC_PPP_MASK) { in zend_declare_property_ex()
3500 property_info.flags = access_type; in zend_declare_property_ex()
3501 …property_info.h = (access_type & ZEND_ACC_PUBLIC) ? h : zend_get_hash_value(property_info.name, pr… in zend_declare_property_ex()
3514 …lass_entry *ce, const char *name, int name_length, zval *property, int access_type TSRMLS_DC) /* {… in zend_declare_property()
3516 return zend_declare_property_ex(ce, name, name_length, property, access_type, NULL, 0 TSRMLS_CC); in zend_declare_property()
3520 …erty_null(zend_class_entry *ce, const char *name, int name_length, int access_type TSRMLS_DC) /* {… in zend_declare_property_null()
3530 return zend_declare_property(ce, name, name_length, property, access_type TSRMLS_CC); in zend_declare_property_null()
3534 …nd_class_entry *ce, const char *name, int name_length, long value, int access_type TSRMLS_DC) /* {… in zend_declare_property_bool()
3545 return zend_declare_property(ce, name, name_length, property, access_type TSRMLS_CC); in zend_declare_property_bool()
3549 …nd_class_entry *ce, const char *name, int name_length, long value, int access_type TSRMLS_DC) /* {… in zend_declare_property_long()
3560 return zend_declare_property(ce, name, name_length, property, access_type TSRMLS_CC); in zend_declare_property_long()
3564 …_class_entry *ce, const char *name, int name_length, double value, int access_type TSRMLS_DC) /* {… in zend_declare_property_double()
3575 return zend_declare_property(ce, name, name_length, property, access_type TSRMLS_CC); in zend_declare_property_double()
3579 …s_entry *ce, const char *name, int name_length, const char *value, int access_type TSRMLS_DC) /* {… in zend_declare_property_string()
3592 return zend_declare_property(ce, name, name_length, property, access_type TSRMLS_CC); in zend_declare_property_string()
3596 …nst char *name, int name_length, const char *value, int value_len, int access_type TSRMLS_DC) /* {… in zend_declare_property_stringl()
3608 return zend_declare_property(ce, name, name_length, property, access_type TSRMLS_CC); in zend_declare_property_stringl()