Searched refs:access_type (Results 1 – 3 of 3) sorted by relevance
/PHP-8.3/Zend/ |
H A D | zend_API.c | 4339 if (access_type & ZEND_ACC_READONLY) { in zend_declare_typed_property() 4350 if (access_type & ZEND_ACC_STATIC) { in zend_declare_typed_property() 4362 if (!(access_type & ZEND_ACC_PPP_MASK)) { in zend_declare_typed_property() 4363 access_type |= ZEND_ACC_PUBLIC; in zend_declare_typed_property() 4365 if (access_type & ZEND_ACC_STATIC) { in zend_declare_typed_property() 4425 if (access_type & ZEND_ACC_PUBLIC) { in zend_declare_typed_property() 4427 } else if (access_type & ZEND_ACC_PRIVATE) { in zend_declare_typed_property() 4430 ZEND_ASSERT(access_type & ZEND_ACC_PROTECTED); in zend_declare_typed_property() 4435 property_info->flags = access_type; in zend_declare_typed_property() 4587 zend_declare_property_ex(ce, key, property, access_type, NULL); in zend_declare_property() [all …]
|
H A D | zend_API.h | 421 …_property(zend_class_entry *ce, zend_string *name, zval *property, int access_type, zend_string *d… 423 …operty_ex(zend_class_entry *ce, zend_string *name, zval *property, int access_type, zend_string *d… 424 …perty(zend_class_entry *ce, const char *name, size_t name_length, zval *property, int access_type); 425 …declare_property_null(zend_class_entry *ce, const char *name, size_t name_length, int access_type); 426 …bool(zend_class_entry *ce, const char *name, size_t name_length, zend_long value, int access_type); 427 …long(zend_class_entry *ce, const char *name, size_t name_length, zend_long value, int access_type); 428 …_double(zend_class_entry *ce, const char *name, size_t name_length, double value, int access_type); 429 …ng(zend_class_entry *ce, const char *name, size_t name_length, const char *value, int access_type); 430 …y *ce, const char *name, size_t name_length, const char *value, size_t value_len, int access_type); 432 …ass_constant(zend_class_entry *ce, zend_string *name, zval *value, int access_type, zend_string *d… [all …]
|
/PHP-8.3/ext/pdo_sqlite/ |
H A D | sqlite_driver.c | 756 static int authorizer(void *autharg, int access_type, const char *arg3, const char *arg4, in authorizer() argument 760 switch (access_type) { in authorizer()
|
Completed in 49 milliseconds