Searched refs:access_type (Results 1 - 8 of 8) sorted by relevance
| /PHP_5_4/Zend/ |
| H A D | zend_globals.h | 128 zend_uint access_type; member in struct:_zend_compiler_globals
|
| H A D | zend_language_parser.y | 576 variable_modifiers { CG(access_type) = Z_LVAL($1.u.constant); } class_variable_declaration ';' 670 class_variable_declaration ',' T_VARIABLE { zend_do_declare_property(&$3, NULL, CG(access_type) TSRMLS_CC); } 671 | class_variable_declaration ',' T_VARIABLE '=' static_scalar { zend_do_declare_property(&$3, &$5, CG(access_type) TSRMLS_CC); } 672 | T_VARIABLE { zend_do_declare_property(&$1, NULL, CG(access_type) TSRMLS_CC); } 673 | T_VARIABLE '=' static_scalar { zend_do_declare_property(&$1, &$3, CG(access_type) TSRMLS_CC); }
|
| H A D | zend_API.c | 3346 ZEND_API int zend_declare_property_ex(zend_class_entry *ce, const char *name, int name_length, zval *property, int access_type, const char *doc_comment, int doc_comment_len TSRMLS_DC) /* {{{ */ argument 3352 if (!(access_type & ZEND_ACC_PPP_MASK)) { 3353 access_type |= ZEND_ACC_PUBLIC; 3355 if (access_type & ZEND_ACC_STATIC) { 3393 switch (access_type & ZEND_ACC_PPP_MASK) { 3432 property_info.flags = access_type; 3433 property_info.h = (access_type & ZEND_ACC_PUBLIC) ? h : zend_get_hash_value(property_info.name, property_info.name_length+1); 3446 ZEND_API int zend_declare_property(zend_class_entry *ce, const char *name, int name_length, zval *property, int access_type TSRMLS_DC) /* {{{ */ 3448 return zend_declare_property_ex(ce, name, name_length, property, access_type, NULL, 0 TSRMLS_CC); 3452 ZEND_API int zend_declare_property_null(zend_class_entry *ce, const char *name, int name_length, int access_type TSRMLS_D [all...] |
| H A D | zend_compile.c | 5074 void zend_do_declare_property(const znode *var_name, const znode *value, zend_uint access_type TSRMLS_DC) /* {{{ */ 5085 if (access_type & ZEND_ACC_ABSTRACT) { 5089 if (access_type & ZEND_ACC_FINAL) { 5113 zend_declare_property_ex(CG(active_class_entry), zend_new_interned_string(var_name->u.constant.value.str.val, var_name->u.constant.value.str.len + 1, 0 TSRMLS_CC), var_name->u.constant.value.str.len, property, access_type, comment, comment_len TSRMLS_CC); local
|
| H A D | zend_compile.h | 540 void zend_do_declare_property(const znode *var_name, const znode *value, zend_uint access_type TSRMLS_DC);
|
| H A D | zend_API.h | 303 ZEND_API int zend_declare_property(zend_class_entry *ce, const char *name, int name_length, zval *property, int access_type TSRMLS_DC); 304 ZEND_API int zend_declare_property_ex(zend_class_entry *ce, const char *name, int name_length, zval *property, int access_type, const char *doc_comment, int doc_comment_len TSRMLS_DC); 305 ZEND_API int zend_declare_property_null(zend_class_entry *ce, const char *name, int name_length, int access_type TSRMLS_DC); 306 ZEND_API int zend_declare_property_bool(zend_class_entry *ce, const char *name, int name_length, long value, int access_type TSRMLS_DC); 307 ZEND_API int zend_declare_property_long(zend_class_entry *ce, const char *name, int name_length, long value, int access_type TSRMLS_DC); 308 ZEND_API int zend_declare_property_double(zend_class_entry *ce, const char *name, int name_length, double value, int access_type TSRMLS_DC); 309 ZEND_API int zend_declare_property_string(zend_class_entry *ce, const char *name, int name_length, const char *value, int access_type TSRMLS_DC); 310 ZEND_API int zend_declare_property_stringl(zend_class_entry *ce, const char *name, int name_length, const char *value, int value_len, int access_type TSRMLS_DC);
|
| /PHP_5_4/ext/pdo_sqlite/ |
| H A D | sqlite_driver.c | 779 static int authorizer(void *autharg, int access_type, const char *arg3, const char *arg4, argument 783 switch (access_type) {
|
| /PHP_5_4/ext/sqlite3/ |
| H A D | sqlite3.c | 41 static int php_sqlite3_authorizer(void *autharg, int access_type, const char *arg3, const char *arg4, const char *arg5, const char *arg6); 1972 static int php_sqlite3_authorizer(void *autharg, int access_type, const char *arg3, const char *arg4, const char *arg5, const char *arg6) argument 1974 switch (access_type) {
|
Completed in 34 milliseconds