Lines Matching refs:key

270 …_quick(zend_class_entry *ce, zval *member, int silent, const zend_literal *key TSRMLS_DC) /* {{{ */  in zend_get_property_info_quick()
277 if (key && (property_info = CACHED_POLYMORPHIC_PTR(key->cache_slot, ce)) != NULL) { in zend_get_property_info_quick()
292 h = key ? key->hash_value : zend_get_hash_value(Z_STRVAL_P(member), Z_STRLEN_P(member) + 1); in zend_get_property_info_quick()
309 if (key) { in zend_get_property_info_quick()
310 CACHE_POLYMORPHIC_PTR(key->cache_slot, ce, property_info); in zend_get_property_info_quick()
325 if (key) { in zend_get_property_info_quick()
326 CACHE_POLYMORPHIC_PTR(key->cache_slot, ce, scope_property_info); in zend_get_property_info_quick()
338 if (key) { in zend_get_property_info_quick()
339 CACHE_POLYMORPHIC_PTR(key->cache_slot, ce, property_info); in zend_get_property_info_quick()
422 zval *zend_std_read_property(zval *object, zval *member, int type, const zend_literal *key TSRMLS_D… in zend_std_read_property()
441 key = NULL; in zend_std_read_property()
449 …zend_get_property_info_quick(zobj->ce, member, silent || (zobj->ce->__get != NULL), key TSRMLS_CC); in zend_std_read_property()
523 …rite_property(zval *object, zval *member, zval *value, const zend_literal *key TSRMLS_DC) /* {{{ */ in zend_std_write_property()
539 key = NULL; in zend_std_write_property()
542 …property_info = zend_get_property_info_quick(zobj->ce, member, (zobj->ce->__set != NULL), key TSRM… in zend_std_write_property()
717 …property_ptr_ptr(zval *object, zval *member, int type, const zend_literal *key TSRMLS_DC) /* {{{ */ in zend_std_get_property_ptr_ptr()
731 key = NULL; in zend_std_get_property_ptr_ptr()
738 …property_info = zend_get_property_info_quick(zobj->ce, member, (zobj->ce->__get != NULL), key TSRM… in zend_std_get_property_ptr_ptr()
794 static void zend_std_unset_property(zval *object, zval *member, const zend_literal *key TSRMLS_DC) … in zend_std_unset_property()
809 key = NULL; in zend_std_unset_property()
812 …property_info = zend_get_property_info_quick(zobj->ce, member, (zobj->ce->__unset != NULL), key TS… in zend_std_unset_property()
1008 …(zval **object_ptr, char *method_name, int method_len, const zend_literal *key TSRMLS_DC) /* {{{ */ in zend_std_get_method()
1017 if (EXPECTED(key != NULL)) { in zend_std_get_method()
1018 lc_method_name = Z_STRVAL(key->constant); in zend_std_get_method()
1019 hash_value = key->hash_value; in zend_std_get_method()
1028 if (UNEXPECTED(!key)) { in zend_std_get_method()
1084 if (UNEXPECTED(!key)) { in zend_std_get_method()
1153 … char *function_name_strval, int function_name_strlen, const zend_literal *key TSRMLS_DC) /* {{{ */ in zend_std_get_static_method()
1160 if (EXPECTED(key != NULL)) { in zend_std_get_static_method()
1161 lc_function_name = Z_STRVAL(key->constant); in zend_std_get_static_method()
1162 hash_value = key->hash_value; in zend_std_get_static_method()
1182 if (UNEXPECTED(!key)) { in zend_std_get_static_method()
1234 if (UNEXPECTED(!key)) { in zend_std_get_static_method()
1242 …roperty_name, int property_name_len, zend_bool silent, const zend_literal *key TSRMLS_DC) /* {{{ */ in zend_std_get_static_property()
1247 if (UNEXPECTED(!key) || in zend_std_get_static_property()
1248 (property_info = CACHED_POLYMORPHIC_PTR(key->cache_slot, ce)) == NULL) { in zend_std_get_static_property()
1249 if (EXPECTED(key != NULL)) { in zend_std_get_static_property()
1250 hash_value = key->hash_value; in zend_std_get_static_property()
1282 if (EXPECTED(key != NULL)) { in zend_std_get_static_property()
1283 CACHE_POLYMORPHIC_PTR(key->cache_slot, ce, property_info); in zend_std_get_static_property()
1299 …*ce, const char *property_name, int property_name_len, const zend_literal *key TSRMLS_DC) /* {{{ */ in zend_std_unset_static_property()
1403 …operty(zval *object, zval *member, int has_set_exists, const zend_literal *key TSRMLS_DC) /* {{{ */ in zend_std_has_property()
1420 key = NULL; in zend_std_has_property()
1427 property_info = zend_get_property_info_quick(zobj->ce, member, 1, key TSRMLS_CC); in zend_std_has_property()