| /PHP_5_3/ext/pdo_sqlite/ |
| H A D | sqlite_driver.c | 784 static int authorizer(void *autharg, int access_type, const char *arg3, const char *arg4, argument 788 switch (access_type) {
|
| /PHP_5_3/ext/sqlite/ |
| H A D | pdo_sqlite2.c | 539 static int authorizer(void *autharg, int access_type, const char *arg3, const char *arg4, argument 543 switch (access_type) {
|
| H A D | sqlite.c | 1062 static int php_sqlite_authorizer(void *autharg, int access_type, const char *arg3, const char *arg4, argument 1065 switch (access_type) {
|
| /PHP_5_3/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); 1960 static int php_sqlite3_authorizer(void *autharg, int access_type, const char *arg3, const char *arg4, const char *arg5, const char *arg6) argument 1962 switch (access_type) {
|
| /PHP_5_3/Zend/ |
| H A D | zend_API.c | 3101 ZEND_API int zend_declare_property_ex(zend_class_entry *ce, const char *name, int name_length, zval *property, int access_type, char *doc_comment, int doc_comment_len TSRMLS_DC) /* {{{ */ argument 3106 if (!(access_type & ZEND_ACC_PPP_MASK)) { 3107 access_type |= ZEND_ACC_PUBLIC; 3109 if (access_type & ZEND_ACC_STATIC) { 3126 switch (access_type & ZEND_ACC_PPP_MASK) { 3161 property_info.flags = access_type; 3175 ZEND_API int zend_declare_property(zend_class_entry *ce, char *name, int name_length, zval *property, int access_type TSRMLS_DC) /* {{{ */ 3177 return zend_declare_property_ex(ce, name, name_length, property, access_type, NULL, 0 TSRMLS_CC); 3181 ZEND_API int zend_declare_property_null(zend_class_entry *ce, char *name, int name_length, int access_type TSRMLS_DC) /* {{{ */ 3191 return zend_declare_property(ce, name, name_length, property, access_type TSRMLS_C [all...] |
| H A D | zend_compile.h | 475 void zend_do_declare_property(const znode *var_name, const znode *value, zend_uint access_type TSRMLS_DC);
|
| H A D | zend_globals.h | 128 zend_uint access_type; member in struct:_zend_compiler_globals
|
| H A D | zend_compile.c | 3628 void zend_do_declare_property(const znode *var_name, const znode *value, zend_uint access_type TSRMLS_DC) /* {{{ */ 3639 if (access_type & ZEND_ACC_ABSTRACT) { 3643 if (access_type & ZEND_ACC_FINAL) { 3669 zend_declare_property_ex(CG(active_class_entry), var_name->u.constant.value.str.val, var_name->u.constant.value.str.len, property, access_type, comment, comment_len TSRMLS_CC); local
|
| H A D | zend_language_parser.y | 515 variable_modifiers { CG(access_type) = Z_LVAL($1.u.constant); } class_variable_declaration ';' 552 class_variable_declaration ',' T_VARIABLE { zend_do_declare_property(&$3, NULL, CG(access_type) TSRMLS_CC); } 553 | class_variable_declaration ',' T_VARIABLE '=' static_scalar { zend_do_declare_property(&$3, &$5, CG(access_type) TSRMLS_CC); } 554 | T_VARIABLE { zend_do_declare_property(&$1, NULL, CG(access_type) TSRMLS_CC); } 555 | T_VARIABLE '=' static_scalar { zend_do_declare_property(&$1, &$3, CG(access_type) TSRMLS_CC); }
|
| H A D | zend_API.h | 292 ZEND_API int zend_declare_property(zend_class_entry *ce, char *name, int name_length, zval *property, int access_type TSRMLS_DC); 293 ZEND_API int zend_declare_property_ex(zend_class_entry *ce, const char *name, int name_length, zval *property, int access_type, char *doc_comment, int doc_comment_len TSRMLS_DC); 294 ZEND_API int zend_declare_property_null(zend_class_entry *ce, char *name, int name_length, int access_type TSRMLS_DC); 295 ZEND_API int zend_declare_property_bool(zend_class_entry *ce, char *name, int name_length, long value, int access_type TSRMLS_DC); 296 ZEND_API int zend_declare_property_long(zend_class_entry *ce, char *name, int name_length, long value, int access_type TSRMLS_DC); 297 ZEND_API int zend_declare_property_double(zend_class_entry *ce, char *name, int name_length, double value, int access_type TSRMLS_DC); 298 ZEND_API int zend_declare_property_string(zend_class_entry *ce, char *name, int name_length, char *value, int access_type TSRMLS_DC); 299 ZEND_API int zend_declare_property_stringl(zend_class_entry *ce, char *name, int name_length, char *value, int value_len, int access_type TSRMLS_DC);
|