Home
last modified time | relevance | path

Searched refs:access_type (Results 1 – 10 of 10) sorted by relevance

/PHP-5.3/Zend/
H A Dzend_API.h292 …erty(zend_class_entry *ce, char *name, int name_length, zval *property, int access_type TSRMLS_DC);
293 …lass_entry *ce, const char *name, int name_length, zval *property, int access_type, char *doc_comm…
294 …eclare_property_null(zend_class_entry *ce, char *name, int name_length, int access_type TSRMLS_DC);
295 …rty_bool(zend_class_entry *ce, char *name, int name_length, long value, int access_type TSRMLS_DC);
296 …rty_long(zend_class_entry *ce, char *name, int name_length, long value, int access_type TSRMLS_DC);
297 …double(zend_class_entry *ce, char *name, int name_length, double value, int access_type TSRMLS_DC);
298 …_string(zend_class_entry *ce, char *name, int name_length, char *value, int access_type TSRMLS_DC);
299 …ass_entry *ce, char *name, int name_length, char *value, int value_len, int access_type TSRMLS_DC);
H A Dzend_API.c3106 if (!(access_type & ZEND_ACC_PPP_MASK)) { in zend_declare_property_ex()
3107 access_type |= ZEND_ACC_PUBLIC; in zend_declare_property_ex()
3109 if (access_type & ZEND_ACC_STATIC) { in zend_declare_property_ex()
3126 switch (access_type & ZEND_ACC_PPP_MASK) { in zend_declare_property_ex()
3161 property_info.flags = access_type; in zend_declare_property_ex()
3191 return zend_declare_property(ce, name, name_length, property, access_type TSRMLS_CC); in zend_declare_property_null()
3206 return zend_declare_property(ce, name, name_length, property, access_type TSRMLS_CC); in zend_declare_property_bool()
3221 return zend_declare_property(ce, name, name_length, property, access_type TSRMLS_CC); in zend_declare_property_long()
3236 return zend_declare_property(ce, name, name_length, property, access_type TSRMLS_CC); in zend_declare_property_double()
3253 return zend_declare_property(ce, name, name_length, property, access_type TSRMLS_CC); in zend_declare_property_string()
[all …]
H A Dzend_globals.h128 zend_uint access_type; member
H A Dzend_language_parser.y515 variable_modifiers { CG(access_type) = Z_LVAL($1.u.constant); } class_variable_declaration ';'
552 …_declaration ',' T_VARIABLE { zend_do_declare_property(&$3, NULL, CG(access_type) TSRMLS_CC); }
553 …',' 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 Dzend_compile.h475 void zend_do_declare_property(const znode *var_name, const znode *value, zend_uint access_type TSRM…
H A Dzend_compile.c3628 void zend_do_declare_property(const znode *var_name, const znode *value, zend_uint access_type TSRM… in zend_do_declare_property()
3639 if (access_type & ZEND_ACC_ABSTRACT) { in zend_do_declare_property()
3643 if (access_type & ZEND_ACC_FINAL) { in zend_do_declare_property()
3669 ….constant.value.str.val, var_name->u.constant.value.str.len, property, access_type, comment, comme… in zend_do_declare_property()
/PHP-5.3/ext/sqlite/
H A Dpdo_sqlite2.c539 static int authorizer(void *autharg, int access_type, const char *arg3, const char *arg4, in authorizer() argument
543 switch (access_type) { in authorizer()
H A Dsqlite.c1062 static int php_sqlite_authorizer(void *autharg, int access_type, const char *arg3, const char *arg4, in php_sqlite_authorizer() argument
1065 switch (access_type) { in php_sqlite_authorizer()
/PHP-5.3/ext/pdo_sqlite/
H A Dsqlite_driver.c784 static int authorizer(void *autharg, int access_type, const char *arg3, const char *arg4, in authorizer() argument
788 switch (access_type) { in authorizer()
/PHP-5.3/ext/sqlite3/
H A Dsqlite3.c41 static int php_sqlite3_authorizer(void *autharg, int access_type, const char *arg3, const char *arg…
1960 static int php_sqlite3_authorizer(void *autharg, int access_type, const char *arg3, const char *arg… argument
1962 switch (access_type) {

Completed in 94 milliseconds