Lines Matching refs:zval

50 	zval **param, *param_ptr;  in zend_get_parameters()
63 param = va_arg(ptr, zval **); in zend_get_parameters()
66 zval *new_tmp; in zend_get_parameters()
73 Z_DELREF_P((zval *) *(p-arg_count)); in zend_get_parameters()
85 ZEND_API int _zend_get_parameters_array(int ht, int param_count, zval **argument_array TSRMLS_DC) /… in _zend_get_parameters_array()
89 zval *param_ptr; in _zend_get_parameters_array()
101 zval *new_tmp; in _zend_get_parameters_array()
108 Z_DELREF_P((zval *) *(p-arg_count)); in _zend_get_parameters_array()
126 zval ***param; in zend_get_parameters_ex()
138 param = va_arg(ptr, zval ***); in zend_get_parameters_ex()
139 *param = (zval **) p-(arg_count--); in zend_get_parameters_ex()
147 ZEND_API int _zend_get_parameters_array_ex(int param_count, zval ***argument_array TSRMLS_DC) /* {{… in _zend_get_parameters_array_ex()
160 zval **value = (zval**)(p-arg_count); in _zend_get_parameters_array_ex()
170 ZEND_API int zend_copy_parameters_array(int param_count, zval *argument_array TSRMLS_DC) /* {{{ */ in zend_copy_parameters_array()
183 zval **param = (zval **) p-(arg_count--); in zend_copy_parameters_array()
229 ZEND_API char *zend_zval_type_name(const zval *arg) /* {{{ */ in zend_zval_type_name()
235 ZEND_API zend_class_entry *zend_get_class_entry(const zval *zobject TSRMLS_DC) /* {{{ */ in zend_get_class_entry()
247 ZEND_API int zend_get_object_classname(const zval *object, const char **class_name, zend_uint *clas… in zend_get_object_classname()
261 static int parse_arg_object_to_string(zval **arg, char **p, int *pl, int type TSRMLS_DC) /* {{{ */ in parse_arg_object_to_string()
264 zval *obj; in parse_arg_object_to_string()
286 zval *z = Z_OBJ_HANDLER_PP(arg, get)(*arg TSRMLS_CC); in parse_arg_object_to_string()
305 static const char *zend_parse_arg_impl(int arg_num, zval **arg, va_list *va, const char **spec, cha… in zend_parse_arg_impl()
502 zval **p = va_arg(*va, zval **); in zend_parse_arg_impl()
517 zval **p = va_arg(*va, zval **); in zend_parse_arg_impl()
552 zval **p = va_arg(*va, zval **); in zend_parse_arg_impl()
567 zval **p = va_arg(*va, zval **); in zend_parse_arg_impl()
655 zval **p = va_arg(*va, zval **); in zend_parse_arg_impl()
666 zval ***p = va_arg(*va, zval ***); in zend_parse_arg_impl()
685 static int zend_parse_arg(int arg_num, zval **arg, va_list *va, const char **spec, int quiet TSRMLS… in zend_parse_arg()
716 ZEND_API int zend_parse_parameter(int flags, int arg_num TSRMLS_DC, zval **arg, const char *spec, .… in zend_parse_parameter()
736 zval **arg; in zend_parse_va_args()
740 zval ****varargs = NULL; in zend_parse_va_args()
845 varargs = va_arg(*va, zval ****); in zend_parse_va_args()
851 zval **p = (zval **) (zend_vm_stack_top(TSRMLS_C) - 1 - (arg_count - i)); in zend_parse_va_args()
856 *varargs = safe_emalloc(num_varargs, sizeof(zval **), 0); in zend_parse_va_args()
871 arg = (zval **) (zend_vm_stack_top(TSRMLS_C) - 1 - (arg_count-i)); in zend_parse_va_args()
931 ZEND_API int zend_parse_method_parameters(int num_args TSRMLS_DC, zval *this_ptr, const char *type_… in zend_parse_method_parameters()
936 zval **object; in zend_parse_method_parameters()
951 object = va_arg(va, zval **); in zend_parse_method_parameters()
967 ZEND_API int zend_parse_method_parameters_ex(int flags, int num_args TSRMLS_DC, zval *this_ptr, con… in zend_parse_method_parameters_ex()
972 zval **object; in zend_parse_method_parameters_ex()
988 object = va_arg(va, zval **); in zend_parse_method_parameters_ex()
1009 ZEND_API int _array_init(zval *arg, uint size ZEND_FILE_LINE_DC) /* {{{ */ in _array_init()
1019 static int zend_merge_property(zval **value TSRMLS_DC, int num_args, va_list args, const zend_hash_… in zend_merge_property()
1023 zval *obj = va_arg(args, zval *); in zend_merge_property()
1025 zval *member; in zend_merge_property()
1038 ZEND_API void zend_merge_properties(zval *obj, HashTable *properties, int destroy_ht TSRMLS_DC) /* … in zend_merge_properties()
1054 static int zval_update_class_constant(zval **pp, int is_static, int offset TSRMLS_DC) /* {{{ */ in zval_update_class_constant()
1106 zval **p; in zend_update_class_constants()
1112 …able)[(zend_intptr_t)(class_type->static_members_table)] = emalloc(sizeof(zval*) * class_type->def… in zend_update_class_constants()
1114 …class_type->static_members_table = emalloc(sizeof(zval*) * class_type->default_static_members_coun… in zend_update_class_constants()
1124 zval *q = CE_STATIC_MEMBERS(class_type->parent)[i]; in zend_update_class_constants()
1130 zval *r; in zend_update_class_constants()
1156 object->properties_table = emalloc(sizeof(zval*) * class_type->default_properties_count); in object_properties_init()
1177 ZEND_API int _object_and_properties_init(zval *arg, zend_class_entry *class_type, HashTable *proper… in _object_and_properties_init()
1206 ZEND_API int _object_init_ex(zval *arg, zend_class_entry *class_type ZEND_FILE_LINE_DC TSRMLS_DC) /… in _object_init_ex()
1212 ZEND_API int _object_init(zval *arg ZEND_FILE_LINE_DC TSRMLS_DC) /* {{{ */ in _object_init()
1218 ZEND_API int add_assoc_function(zval *arg, const char *key, void (*function_ptr)(INTERNAL_FUNCTION_… in add_assoc_function()
1225 ZEND_API int add_assoc_long_ex(zval *arg, const char *key, uint key_len, long n) /* {{{ */ in add_assoc_long_ex()
1227 zval *tmp; in add_assoc_long_ex()
1232 return zend_symtable_update(Z_ARRVAL_P(arg), key, key_len, (void *) &tmp, sizeof(zval *), NULL); in add_assoc_long_ex()
1236 ZEND_API int add_assoc_null_ex(zval *arg, const char *key, uint key_len) /* {{{ */ in add_assoc_null_ex()
1238 zval *tmp; in add_assoc_null_ex()
1243 return zend_symtable_update(Z_ARRVAL_P(arg), key, key_len, (void *) &tmp, sizeof(zval *), NULL); in add_assoc_null_ex()
1247 ZEND_API int add_assoc_bool_ex(zval *arg, const char *key, uint key_len, int b) /* {{{ */ in add_assoc_bool_ex()
1249 zval *tmp; in add_assoc_bool_ex()
1254 return zend_symtable_update(Z_ARRVAL_P(arg), key, key_len, (void *) &tmp, sizeof(zval *), NULL); in add_assoc_bool_ex()
1258 ZEND_API int add_assoc_resource_ex(zval *arg, const char *key, uint key_len, int r) /* {{{ */ in add_assoc_resource_ex()
1260 zval *tmp; in add_assoc_resource_ex()
1265 return zend_symtable_update(Z_ARRVAL_P(arg), key, key_len, (void *) &tmp, sizeof(zval *), NULL); in add_assoc_resource_ex()
1269 ZEND_API int add_assoc_double_ex(zval *arg, const char *key, uint key_len, double d) /* {{{ */ in add_assoc_double_ex()
1271 zval *tmp; in add_assoc_double_ex()
1276 return zend_symtable_update(Z_ARRVAL_P(arg), key, key_len, (void *) &tmp, sizeof(zval *), NULL); in add_assoc_double_ex()
1280 ZEND_API int add_assoc_string_ex(zval *arg, const char *key, uint key_len, char *str, int duplicate… in add_assoc_string_ex()
1282 zval *tmp; in add_assoc_string_ex()
1287 return zend_symtable_update(Z_ARRVAL_P(arg), key, key_len, (void *) &tmp, sizeof(zval *), NULL); in add_assoc_string_ex()
1291 ZEND_API int add_assoc_stringl_ex(zval *arg, const char *key, uint key_len, char *str, uint length,… in add_assoc_stringl_ex()
1293 zval *tmp; in add_assoc_stringl_ex()
1298 return zend_symtable_update(Z_ARRVAL_P(arg), key, key_len, (void *) &tmp, sizeof(zval *), NULL); in add_assoc_stringl_ex()
1302 ZEND_API int add_assoc_zval_ex(zval *arg, const char *key, uint key_len, zval *value) /* {{{ */ in add_assoc_zval_ex()
1304 return zend_symtable_update(Z_ARRVAL_P(arg), key, key_len, (void *) &value, sizeof(zval *), NULL); in add_assoc_zval_ex()
1308 ZEND_API int add_index_long(zval *arg, ulong index, long n) /* {{{ */ in add_index_long()
1310 zval *tmp; in add_index_long()
1315 return zend_hash_index_update(Z_ARRVAL_P(arg), index, (void *) &tmp, sizeof(zval *), NULL); in add_index_long()
1319 ZEND_API int add_index_null(zval *arg, ulong index) /* {{{ */ in add_index_null()
1321 zval *tmp; in add_index_null()
1326 return zend_hash_index_update(Z_ARRVAL_P(arg), index, (void *) &tmp, sizeof(zval *), NULL); in add_index_null()
1330 ZEND_API int add_index_bool(zval *arg, ulong index, int b) /* {{{ */ in add_index_bool()
1332 zval *tmp; in add_index_bool()
1337 return zend_hash_index_update(Z_ARRVAL_P(arg), index, (void *) &tmp, sizeof(zval *), NULL); in add_index_bool()
1341 ZEND_API int add_index_resource(zval *arg, ulong index, int r) /* {{{ */ in add_index_resource()
1343 zval *tmp; in add_index_resource()
1348 return zend_hash_index_update(Z_ARRVAL_P(arg), index, (void *) &tmp, sizeof(zval *), NULL); in add_index_resource()
1352 ZEND_API int add_index_double(zval *arg, ulong index, double d) /* {{{ */ in add_index_double()
1354 zval *tmp; in add_index_double()
1359 return zend_hash_index_update(Z_ARRVAL_P(arg), index, (void *) &tmp, sizeof(zval *), NULL); in add_index_double()
1363 ZEND_API int add_index_string(zval *arg, ulong index, const char *str, int duplicate) /* {{{ */ in add_index_string()
1365 zval *tmp; in add_index_string()
1370 return zend_hash_index_update(Z_ARRVAL_P(arg), index, (void *) &tmp, sizeof(zval *), NULL); in add_index_string()
1374 ZEND_API int add_index_stringl(zval *arg, ulong index, const char *str, uint length, int duplicate)… in add_index_stringl()
1376 zval *tmp; in add_index_stringl()
1381 return zend_hash_index_update(Z_ARRVAL_P(arg), index, (void *) &tmp, sizeof(zval *), NULL); in add_index_stringl()
1385 ZEND_API int add_index_zval(zval *arg, ulong index, zval *value) /* {{{ */ in add_index_zval()
1387 return zend_hash_index_update(Z_ARRVAL_P(arg), index, (void *) &value, sizeof(zval *), NULL); in add_index_zval()
1391 ZEND_API int add_next_index_long(zval *arg, long n) /* {{{ */ in add_next_index_long()
1393 zval *tmp; in add_next_index_long()
1398 return zend_hash_next_index_insert(Z_ARRVAL_P(arg), &tmp, sizeof(zval *), NULL); in add_next_index_long()
1402 ZEND_API int add_next_index_null(zval *arg) /* {{{ */ in add_next_index_null()
1404 zval *tmp; in add_next_index_null()
1409 return zend_hash_next_index_insert(Z_ARRVAL_P(arg), &tmp, sizeof(zval *), NULL); in add_next_index_null()
1413 ZEND_API int add_next_index_bool(zval *arg, int b) /* {{{ */ in add_next_index_bool()
1415 zval *tmp; in add_next_index_bool()
1420 return zend_hash_next_index_insert(Z_ARRVAL_P(arg), &tmp, sizeof(zval *), NULL); in add_next_index_bool()
1424 ZEND_API int add_next_index_resource(zval *arg, int r) /* {{{ */ in add_next_index_resource()
1426 zval *tmp; in add_next_index_resource()
1431 return zend_hash_next_index_insert(Z_ARRVAL_P(arg), &tmp, sizeof(zval *), NULL); in add_next_index_resource()
1435 ZEND_API int add_next_index_double(zval *arg, double d) /* {{{ */ in add_next_index_double()
1437 zval *tmp; in add_next_index_double()
1442 return zend_hash_next_index_insert(Z_ARRVAL_P(arg), &tmp, sizeof(zval *), NULL); in add_next_index_double()
1446 ZEND_API int add_next_index_string(zval *arg, const char *str, int duplicate) /* {{{ */ in add_next_index_string()
1448 zval *tmp; in add_next_index_string()
1453 return zend_hash_next_index_insert(Z_ARRVAL_P(arg), &tmp, sizeof(zval *), NULL); in add_next_index_string()
1457 ZEND_API int add_next_index_stringl(zval *arg, const char *str, uint length, int duplicate) /* {{{ … in add_next_index_stringl()
1459 zval *tmp; in add_next_index_stringl()
1464 return zend_hash_next_index_insert(Z_ARRVAL_P(arg), &tmp, sizeof(zval *), NULL); in add_next_index_stringl()
1468 ZEND_API int add_next_index_zval(zval *arg, zval *value) /* {{{ */ in add_next_index_zval()
1470 return zend_hash_next_index_insert(Z_ARRVAL_P(arg), &value, sizeof(zval *), NULL); in add_next_index_zval()
1474 ZEND_API int add_get_assoc_string_ex(zval *arg, const char *key, uint key_len, const char *str, voi… in add_get_assoc_string_ex()
1476 zval *tmp; in add_get_assoc_string_ex()
1481 return zend_symtable_update(Z_ARRVAL_P(arg), key, key_len, (void *) &tmp, sizeof(zval *), dest); in add_get_assoc_string_ex()
1485 ZEND_API int add_get_assoc_stringl_ex(zval *arg, const char *key, uint key_len, const char *str, ui… in add_get_assoc_stringl_ex()
1487 zval *tmp; in add_get_assoc_stringl_ex()
1492 return zend_symtable_update(Z_ARRVAL_P(arg), key, key_len, (void *) &tmp, sizeof(zval *), dest); in add_get_assoc_stringl_ex()
1496 ZEND_API int add_get_index_long(zval *arg, ulong index, long l, void **dest) /* {{{ */ in add_get_index_long()
1498 zval *tmp; in add_get_index_long()
1503 return zend_hash_index_update(Z_ARRVAL_P(arg), index, (void *) &tmp, sizeof(zval *), dest); in add_get_index_long()
1507 ZEND_API int add_get_index_double(zval *arg, ulong index, double d, void **dest) /* {{{ */ in add_get_index_double()
1509 zval *tmp; in add_get_index_double()
1514 return zend_hash_index_update(Z_ARRVAL_P(arg), index, (void *) &tmp, sizeof(zval *), dest); in add_get_index_double()
1518 ZEND_API int add_get_index_string(zval *arg, ulong index, const char *str, void **dest, int duplica… in add_get_index_string()
1520 zval *tmp; in add_get_index_string()
1525 return zend_hash_index_update(Z_ARRVAL_P(arg), index, (void *) &tmp, sizeof(zval *), dest); in add_get_index_string()
1529 ZEND_API int add_get_index_stringl(zval *arg, ulong index, const char *str, uint length, void **des… in add_get_index_stringl()
1531 zval *tmp; in add_get_index_stringl()
1536 return zend_hash_index_update(Z_ARRVAL_P(arg), index, (void *) &tmp, sizeof(zval *), dest); in add_get_index_stringl()
1540 ZEND_API int array_set_zval_key(HashTable *ht, zval *key, zval *value) /* {{{ */ in array_set_zval_key()
1546 …result = zend_symtable_update(ht, Z_STRVAL_P(key), Z_STRLEN_P(key) + 1, &value, sizeof(zval *), NU… in array_set_zval_key()
1549 result = zend_symtable_update(ht, "", 1, &value, sizeof(zval *), NULL); in array_set_zval_key()
1556 result = zend_hash_index_update(ht, Z_LVAL_P(key), &value, sizeof(zval *), NULL); in array_set_zval_key()
1559 …result = zend_hash_index_update(ht, zend_dval_to_lval(Z_DVAL_P(key)), &value, sizeof(zval *), NULL… in array_set_zval_key()
1574 ZEND_API int add_property_long_ex(zval *arg, const char *key, uint key_len, long n TSRMLS_DC) /* {{… in add_property_long_ex()
1576 zval *tmp; in add_property_long_ex()
1577 zval *z_key; in add_property_long_ex()
1592 ZEND_API int add_property_bool_ex(zval *arg, const char *key, uint key_len, int b TSRMLS_DC) /* {{{… in add_property_bool_ex()
1594 zval *tmp; in add_property_bool_ex()
1595 zval *z_key; in add_property_bool_ex()
1610 ZEND_API int add_property_null_ex(zval *arg, const char *key, uint key_len TSRMLS_DC) /* {{{ */ in add_property_null_ex()
1612 zval *tmp; in add_property_null_ex()
1613 zval *z_key; in add_property_null_ex()
1628 ZEND_API int add_property_resource_ex(zval *arg, const char *key, uint key_len, long n TSRMLS_DC) /… in add_property_resource_ex()
1630 zval *tmp; in add_property_resource_ex()
1631 zval *z_key; in add_property_resource_ex()
1646 ZEND_API int add_property_double_ex(zval *arg, const char *key, uint key_len, double d TSRMLS_DC) /… in add_property_double_ex()
1648 zval *tmp; in add_property_double_ex()
1649 zval *z_key; in add_property_double_ex()
1664 ZEND_API int add_property_string_ex(zval *arg, const char *key, uint key_len, const char *str, int … in add_property_string_ex()
1666 zval *tmp; in add_property_string_ex()
1667 zval *z_key; in add_property_string_ex()
1682 ZEND_API int add_property_stringl_ex(zval *arg, const char *key, uint key_len, const char *str, uin… in add_property_stringl_ex()
1684 zval *tmp; in add_property_stringl_ex()
1685 zval *z_key; in add_property_stringl_ex()
1700 ZEND_API int add_property_zval_ex(zval *arg, const char *key, uint key_len, zval *value TSRMLS_DC) … in add_property_zval_ex()
1702 zval *z_key; in add_property_zval_ex()
2594 ZEND_API int zend_set_hash_symbol(zval *symbol, const char *name, int name_length, zend_bool is_ref… in zend_set_hash_symbol()
2606 zend_hash_update(symbol_table, name, name_length + 1, &symbol, sizeof(zval *), NULL); in zend_set_hash_symbol()
2743 static int zend_is_callable_check_func(int check_flags, zval *callable, zend_fcall_info_cache *fcc,… in zend_is_callable_check_func()
3004 ZEND_API zend_bool zend_is_callable_ex(zval *callable, zval *object_ptr, uint check_flags, char **c… in zend_is_callable_ex()
3080 zval **method = NULL; in zend_is_callable_ex()
3081 zval **obj = NULL; in zend_is_callable_ex()
3191 zval expr_copy; in zend_is_callable_ex()
3205 ZEND_API zend_bool zend_is_callable(zval *callable, uint check_flags, char **callable_name TSRMLS_D… in zend_is_callable()
3211 ZEND_API zend_bool zend_make_callable(zval *callable, char **callable_name TSRMLS_DC) /* {{{ */ in zend_make_callable()
3238 ZEND_API int zend_fcall_info_init(zval *callable, uint check_flags, zend_fcall_info *fci, zend_fcal… in zend_fcall_info_init()
3270 ZEND_API void zend_fcall_info_args_save(zend_fcall_info *fci, int *param_count, zval ****params) /*… in zend_fcall_info_args_save()
3279 ZEND_API void zend_fcall_info_args_restore(zend_fcall_info *fci, int param_count, zval ***params) /… in zend_fcall_info_args_restore()
3287 ZEND_API int zend_fcall_info_args(zend_fcall_info *fci, zval *args TSRMLS_DC) /* {{{ */ in zend_fcall_info_args()
3290 zval **arg, ***params; in zend_fcall_info_args()
3303 fci->params = params = (zval ***) erealloc(fci->params, fci->param_count * sizeof(zval **)); in zend_fcall_info_args()
3315 ZEND_API int zend_fcall_info_argp(zend_fcall_info *fci TSRMLS_DC, int argc, zval ***argv) /* {{{ */ in zend_fcall_info_argp()
3327 fci->params = (zval ***) erealloc(fci->params, fci->param_count * sizeof(zval **)); in zend_fcall_info_argp()
3341 zval **arg; in zend_fcall_info_argv()
3351 fci->params = (zval ***) erealloc(fci->params, fci->param_count * sizeof(zval **)); in zend_fcall_info_argv()
3354 arg = va_arg(*argv, zval **); in zend_fcall_info_argv()
3376 …ll_info_call(zend_fcall_info *fci, zend_fcall_info_cache *fcc, zval **retval_ptr_ptr, zval *args T… in zend_fcall_info_call()
3378 zval *retval, ***org_params = NULL; in zend_fcall_info_call()
3414 ZEND_API int zend_declare_property_ex(zend_class_entry *ce, const char *name, int name_length, zval in zend_declare_property_ex()
3431 …ce->default_static_members_table = perealloc(ce->default_static_members_table, sizeof(zval*) * ce-… in zend_declare_property_ex()
3445 …ce->default_properties_table = perealloc(ce->default_properties_table, sizeof(zval*) * ce->default… in zend_declare_property_ex()
3514 ZEND_API int zend_declare_property(zend_class_entry *ce, const char *name, int name_length, zval *p… in zend_declare_property()
3522 zval *property; in zend_declare_property_null()
3536 zval *property; in zend_declare_property_bool()
3551 zval *property; in zend_declare_property_long()
3566 zval *property; in zend_declare_property_double()
3581 zval *property; in zend_declare_property_string()
3598 zval *property; in zend_declare_property_stringl()
3612 …lass_constant(zend_class_entry *ce, const char *name, size_t name_length, zval *value TSRMLS_DC) /… in zend_declare_class_constant()
3614 return zend_hash_update(&ce->constants_table, name, name_length+1, &value, sizeof(zval *), NULL); in zend_declare_class_constant()
3620 zval *constant; in zend_declare_class_constant_null()
3635 zval *constant; in zend_declare_class_constant_long()
3650 zval *constant; in zend_declare_class_constant_bool()
3665 zval *constant; in zend_declare_class_constant_double()
3680 zval *constant; in zend_declare_class_constant_stringl()
3700 …oid zend_update_property(zend_class_entry *scope, zval *object, const char *name, int name_length,… in zend_update_property()
3702 zval *property; in zend_update_property()
3724 ZEND_API void zend_update_property_null(zend_class_entry *scope, zval *object, const char *name, in… in zend_update_property_null()
3726 zval *tmp; in zend_update_property_null()
3736 ZEND_API void zend_update_property_bool(zend_class_entry *scope, zval *object, const char *name, in… in zend_update_property_bool()
3738 zval *tmp; in zend_update_property_bool()
3748 ZEND_API void zend_update_property_long(zend_class_entry *scope, zval *object, const char *name, in… in zend_update_property_long()
3750 zval *tmp; in zend_update_property_long()
3760 ZEND_API void zend_update_property_double(zend_class_entry *scope, zval *object, const char *name, … in zend_update_property_double()
3762 zval *tmp; in zend_update_property_double()
3772 ZEND_API void zend_update_property_string(zend_class_entry *scope, zval *object, const char *name, … in zend_update_property_string()
3774 zval *tmp; in zend_update_property_string()
3784 ZEND_API void zend_update_property_stringl(zend_class_entry *scope, zval *object, const char *name,… in zend_update_property_stringl()
3786 zval *tmp; in zend_update_property_stringl()
3796 …atic_property(zend_class_entry *scope, const char *name, int name_length, zval *value TSRMLS_DC) /… in zend_update_static_property()
3798 zval **property; in zend_update_static_property()
3818 zval *garbage = *property; in zend_update_static_property()
3835 zval *tmp; in zend_update_static_property_null()
3847 zval *tmp; in zend_update_static_property_bool()
3859 zval *tmp; in zend_update_static_property_long()
3871 zval *tmp; in zend_update_static_property_double()
3883 zval *tmp; in zend_update_static_property_string()
3895 zval *tmp; in zend_update_static_property_stringl()
3905 ZEND_API zval *zend_read_property(zend_class_entry *scope, zval *object, const char *name, int name… in zend_read_property()
3907 zval *property, *value; in zend_read_property()
3930 ZEND_API zval *zend_read_static_property(zend_class_entry *scope, const char *name, int name_length… in zend_read_static_property()
3932 zval **property; in zend_read_static_property()