Searched defs:access_type (Results 1 - 5 of 5) sorted by relevance
| /PHP_TRUNK/Zend/ |
| H A D | zend_globals.h | 125 zend_uint access_type; member in struct:_zend_compiler_globals
|
| H A D | zend_API.c | 3409 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 3415 if (!(access_type & ZEND_ACC_PPP_MASK)) { 3416 access_type |= ZEND_ACC_PUBLIC; 3418 if (access_type & ZEND_ACC_STATIC) { 3456 switch (access_type & ZEND_ACC_PPP_MASK) { 3495 property_info.flags = access_type; 3496 property_info.h = (access_type & ZEND_ACC_PUBLIC) ? h : zend_get_hash_value(property_info.name, property_info.name_length+1); 3509 ZEND_API int zend_declare_property(zend_class_entry *ce, const char *name, int name_length, zval *property, int access_type TSRMLS_DC) /* {{{ */ 3511 return zend_declare_property_ex(ce, name, name_length, property, access_type, NULL, 0 TSRMLS_CC); 3515 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 | 5278 void zend_do_declare_property(const znode *var_name, const znode *value, zend_uint access_type TSRMLS_DC) /* {{{ */ 5289 if (access_type & ZEND_ACC_ABSTRACT) { 5293 if (access_type & ZEND_ACC_FINAL) { 5317 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
|
| /PHP_TRUNK/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_TRUNK/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 33 milliseconds