Home
last modified time | relevance | path

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

/PHP-5.5/Zend/
H A Dzend_API.h305 …end_class_entry *ce, const char *name, int name_length, zval *property, int access_type TSRMLS_DC);
306 …lass_entry *ce, const char *name, int name_length, zval *property, int access_type, const char *do…
307 …_property_null(zend_class_entry *ce, const char *name, int name_length, int access_type TSRMLS_DC);
308 …ol(zend_class_entry *ce, const char *name, int name_length, long value, int access_type TSRMLS_DC);
309 …ng(zend_class_entry *ce, const char *name, int name_length, long value, int access_type TSRMLS_DC);
310 …(zend_class_entry *ce, const char *name, int name_length, double value, int access_type TSRMLS_DC);
311 …_class_entry *ce, const char *name, int name_length, const char *value, int access_type TSRMLS_DC);
312 …e, const char *name, int name_length, const char *value, int value_len, int access_type TSRMLS_DC);
H A Dzend_API.c3420 if (!(access_type & ZEND_ACC_PPP_MASK)) { in zend_declare_property_ex()
3421 access_type |= ZEND_ACC_PUBLIC; in zend_declare_property_ex()
3423 if (access_type & ZEND_ACC_STATIC) { in zend_declare_property_ex()
3461 switch (access_type & ZEND_ACC_PPP_MASK) { in zend_declare_property_ex()
3500 property_info.flags = access_type; in zend_declare_property_ex()
3530 return zend_declare_property(ce, name, name_length, property, access_type TSRMLS_CC); in zend_declare_property_null()
3545 return zend_declare_property(ce, name, name_length, property, access_type TSRMLS_CC); in zend_declare_property_bool()
3560 return zend_declare_property(ce, name, name_length, property, access_type TSRMLS_CC); in zend_declare_property_long()
3575 return zend_declare_property(ce, name, name_length, property, access_type TSRMLS_CC); in zend_declare_property_double()
3592 return zend_declare_property(ce, name, name_length, property, access_type TSRMLS_CC); in zend_declare_property_string()
[all …]
H A Dzend_globals.h125 zend_uint access_type; member
H A Dzend_language_parser.y590 variable_modifiers { CG(access_type) = Z_LVAL($1.u.constant); } class_variable_declaration ';'
685 …_declaration ',' T_VARIABLE { zend_do_declare_property(&$3, NULL, CG(access_type) TSRMLS_CC); }
686 …',' T_VARIABLE '=' static_scalar { zend_do_declare_property(&$3, &$5, CG(access_type) TSRMLS_CC); }
687 | T_VARIABLE { zend_do_declare_property(&$1, NULL, CG(access_type) TSRMLS_CC); }
688 | T_VARIABLE '=' static_scalar { zend_do_declare_property(&$1, &$3, CG(access_type) TSRMLS_CC); }
H A Dzend_compile.h565 void zend_do_declare_property(const znode *var_name, const znode *value, zend_uint access_type TSRM…
H A Dzend_compile.c5298 void zend_do_declare_property(const znode *var_name, const znode *value, zend_uint access_type TSRM… in zend_do_declare_property()
5309 if (access_type & ZEND_ACC_ABSTRACT) { in zend_do_declare_property()
5313 if (access_type & ZEND_ACC_FINAL) { in zend_do_declare_property()
5337 …r.len + 1, 0 TSRMLS_CC), var_name->u.constant.value.str.len, property, access_type, comment, comme… in zend_do_declare_property()
/PHP-5.5/ext/pdo_sqlite/
H A Dsqlite_driver.c779 static int authorizer(void *autharg, int access_type, const char *arg3, const char *arg4, in authorizer() argument
783 switch (access_type) { in authorizer()
/PHP-5.5/ext/sqlite3/
H A Dsqlite3.c41 static int php_sqlite3_authorizer(void *autharg, int access_type, const char *arg3, const char *arg…
1993 static int php_sqlite3_authorizer(void *autharg, int access_type, const char *arg3, const char *arg… argument
1995 switch (access_type) {

Completed in 76 milliseconds