access_type      3425 Zend/zend_API.c 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) /* {{{ */
access_type      3431 Zend/zend_API.c 	if (!(access_type & ZEND_ACC_PPP_MASK)) {
access_type      3432 Zend/zend_API.c 		access_type |= ZEND_ACC_PUBLIC;
access_type      3434 Zend/zend_API.c 	if (access_type & ZEND_ACC_STATIC) {
access_type      3471 Zend/zend_API.c 	switch (access_type & ZEND_ACC_PPP_MASK) {
access_type      3510 Zend/zend_API.c 	property_info.flags = access_type;
access_type      3511 Zend/zend_API.c 	property_info.h = (access_type & ZEND_ACC_PUBLIC) ? h : zend_get_hash_value(property_info.name, property_info.name_length+1);
access_type      3524 Zend/zend_API.c ZEND_API int zend_declare_property(zend_class_entry *ce, const char *name, int name_length, zval *property, int access_type TSRMLS_DC) /* {{{ */
access_type      3526 Zend/zend_API.c 	return zend_declare_property_ex(ce, name, name_length, property, access_type, NULL, 0 TSRMLS_CC);
access_type      3530 Zend/zend_API.c ZEND_API int zend_declare_property_null(zend_class_entry *ce, const char *name, int name_length, int access_type TSRMLS_DC) /* {{{ */
access_type      3540 Zend/zend_API.c 	return zend_declare_property(ce, name, name_length, property, access_type TSRMLS_CC);
access_type      3544 Zend/zend_API.c ZEND_API int zend_declare_property_bool(zend_class_entry *ce, const char *name, int name_length, long value, int access_type TSRMLS_DC) /* {{{ */
access_type      3555 Zend/zend_API.c 	return zend_declare_property(ce, name, name_length, property, access_type TSRMLS_CC);
access_type      3559 Zend/zend_API.c ZEND_API int zend_declare_property_long(zend_class_entry *ce, const char *name, int name_length, long value, int access_type TSRMLS_DC) /* {{{ */
access_type      3570 Zend/zend_API.c 	return zend_declare_property(ce, name, name_length, property, access_type TSRMLS_CC);
access_type      3574 Zend/zend_API.c ZEND_API int zend_declare_property_double(zend_class_entry *ce, const char *name, int name_length, double value, int access_type TSRMLS_DC) /* {{{ */
access_type      3585 Zend/zend_API.c 	return zend_declare_property(ce, name, name_length, property, access_type TSRMLS_CC);
access_type      3589 Zend/zend_API.c 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) /* {{{ */
access_type      3602 Zend/zend_API.c 	return zend_declare_property(ce, name, name_length, property, access_type TSRMLS_CC);
access_type      3606 Zend/zend_API.c 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) /* {{{ */
access_type      3618 Zend/zend_API.c 	return zend_declare_property(ce, name, name_length, property, access_type TSRMLS_CC);
access_type       308 Zend/zend_API.h ZEND_API int zend_declare_property(zend_class_entry *ce, const char *name, int name_length, zval *property, int access_type TSRMLS_DC);
access_type       309 Zend/zend_API.h 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);
access_type       310 Zend/zend_API.h ZEND_API int zend_declare_property_null(zend_class_entry *ce, const char *name, int name_length, int access_type TSRMLS_DC);
access_type       311 Zend/zend_API.h ZEND_API int zend_declare_property_bool(zend_class_entry *ce, const char *name, int name_length, long value, int access_type TSRMLS_DC);
access_type       312 Zend/zend_API.h ZEND_API int zend_declare_property_long(zend_class_entry *ce, const char *name, int name_length, long value, int access_type TSRMLS_DC);
access_type       313 Zend/zend_API.h ZEND_API int zend_declare_property_double(zend_class_entry *ce, const char *name, int name_length, double value, int access_type TSRMLS_DC);
access_type       314 Zend/zend_API.h 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);
access_type       315 Zend/zend_API.h 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);
access_type      5439 Zend/zend_compile.c void zend_do_declare_property(const znode *var_name, const znode *value, zend_uint access_type TSRMLS_DC) /* {{{ */
access_type      5450 Zend/zend_compile.c 	if (access_type & ZEND_ACC_ABSTRACT) {
access_type      5454 Zend/zend_compile.c 	if (access_type & ZEND_ACC_FINAL) {
access_type      5478 Zend/zend_compile.c 	zend_declare_property_ex(CG(active_class_entry), zend_new_interned_string(Z_STRVAL(var_name->u.constant), Z_STRLEN(var_name->u.constant) + 1, 0 TSRMLS_CC), Z_STRLEN(var_name->u.constant), property, access_type, comment, comment_len TSRMLS_CC);
access_type       581 Zend/zend_compile.h void zend_do_declare_property(const znode *var_name, const znode *value, zend_uint access_type TSRMLS_DC);
access_type       125 Zend/zend_globals.h 	zend_uint access_type;
access_type       628 Zend/zend_language_parser.y 		variable_modifiers { CG(access_type) = Z_LVAL($1.u.constant); } class_variable_declaration ';'
access_type       723 Zend/zend_language_parser.y 		class_variable_declaration ',' T_VARIABLE					{ zend_do_declare_property(&$3, NULL, CG(access_type) TSRMLS_CC); }
access_type       724 Zend/zend_language_parser.y 	|	class_variable_declaration ',' T_VARIABLE '=' static_scalar	{ zend_do_declare_property(&$3, &$5, CG(access_type) TSRMLS_CC); }
access_type       725 Zend/zend_language_parser.y 	|	T_VARIABLE						{ zend_do_declare_property(&$1, NULL, CG(access_type) TSRMLS_CC); }
access_type       726 Zend/zend_language_parser.y 	|	T_VARIABLE '=' static_scalar	{ zend_do_declare_property(&$1, &$3, CG(access_type) TSRMLS_CC); }
access_type       779 ext/pdo_sqlite/sqlite_driver.c static int authorizer(void *autharg, int access_type, const char *arg3, const char *arg4,
access_type       783 ext/pdo_sqlite/sqlite_driver.c 	switch (access_type) {
access_type        41 ext/sqlite3/sqlite3.c static int php_sqlite3_authorizer(void *autharg, int access_type, const char *arg3, const char *arg4, const char *arg5, const char *arg6);
access_type      2024 ext/sqlite3/sqlite3.c static int php_sqlite3_authorizer(void *autharg, int access_type, const char *arg3, const char *arg4, const char *arg5, const char *arg6)
access_type      2026 ext/sqlite3/sqlite3.c 	switch (access_type) {