Searched refs:access_type (Results 1 – 4 of 4) sorted by relevance
/PHP-7.3/Zend/ |
H A D | zend_API.c | 3726 if (!(access_type & ZEND_ACC_PPP_MASK)) { in zend_declare_property_ex() 3727 access_type |= ZEND_ACC_PUBLIC; in zend_declare_property_ex() 3729 if (access_type & ZEND_ACC_STATIC) { in zend_declare_property_ex() 3771 if (access_type & ZEND_ACC_PUBLIC) { in zend_declare_property_ex() 3773 } else if (access_type & ZEND_ACC_PRIVATE) { in zend_declare_property_ex() 3776 ZEND_ASSERT(access_type & ZEND_ACC_PROTECTED); in zend_declare_property_ex() 3781 property_info->flags = access_type; in zend_declare_property_ex() 3793 int ret = zend_declare_property_ex(ce, key, property, access_type, NULL); in zend_declare_property() 3804 return zend_declare_property(ce, name, name_length, &property, access_type); in zend_declare_property_null() 3858 if (access_type != ZEND_ACC_PUBLIC) { in zend_declare_class_constant_ex() [all …]
|
H A D | zend_API.h | 315 …operty_ex(zend_class_entry *ce, zend_string *name, zval *property, int access_type, zend_string *d… 316 …perty(zend_class_entry *ce, const char *name, size_t name_length, zval *property, int access_type); 317 …declare_property_null(zend_class_entry *ce, const char *name, size_t name_length, int access_type); 318 …bool(zend_class_entry *ce, const char *name, size_t name_length, zend_long value, int access_type); 319 …long(zend_class_entry *ce, const char *name, size_t name_length, zend_long value, int access_type); 320 …_double(zend_class_entry *ce, const char *name, size_t name_length, double value, int access_type); 321 …ng(zend_class_entry *ce, const char *name, size_t name_length, const char *value, int access_type); 322 …y *ce, const char *name, size_t name_length, const char *value, size_t value_len, int access_type); 324 …_constant_ex(zend_class_entry *ce, zend_string *name, zval *value, int access_type, zend_string *d…
|
/PHP-7.3/ext/pdo_sqlite/ |
H A D | sqlite_driver.c | 758 static int authorizer(void *autharg, int access_type, const char *arg3, const char *arg4, in authorizer() argument 762 switch (access_type) { in authorizer()
|
/PHP-7.3/ext/sqlite3/ |
H A D | sqlite3.c | 39 static int php_sqlite3_authorizer(void *autharg, int access_type, const char *arg3, const char *arg… 2061 static int php_sqlite3_authorizer(void *autharg, int access_type, const char *arg3, const char *arg… in php_sqlite3_authorizer() argument 2063 switch (access_type) { in php_sqlite3_authorizer()
|
Completed in 32 milliseconds