Lines Matching refs:Z_ARRVAL_P

84 		zend_hash_next_index_insert_new(Z_ARRVAL_P(argument_array), param_ptr);  in zend_copy_parameters_array()
1810 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_assoc_long_ex()
1819 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_assoc_null_ex()
1828 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_assoc_bool_ex()
1837 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_assoc_resource_ex()
1846 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_assoc_double_ex()
1855 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_assoc_str_ex()
1864 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_assoc_string_ex()
1873 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_assoc_stringl_ex()
1882 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_assoc_array_ex()
1891 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_assoc_object_ex()
1900 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_assoc_reference_ex()
1906 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, value); in add_assoc_zval_ex()
1915 zend_hash_index_update(Z_ARRVAL_P(arg), index, &tmp); in add_index_long()
1924 zend_hash_index_update(Z_ARRVAL_P(arg), index, &tmp); in add_index_null()
1933 zend_hash_index_update(Z_ARRVAL_P(arg), index, &tmp); in add_index_bool()
1942 zend_hash_index_update(Z_ARRVAL_P(arg), index, &tmp); in add_index_resource()
1951 zend_hash_index_update(Z_ARRVAL_P(arg), index, &tmp); in add_index_double()
1960 zend_hash_index_update(Z_ARRVAL_P(arg), index, &tmp); in add_index_str()
1969 zend_hash_index_update(Z_ARRVAL_P(arg), index, &tmp); in add_index_string()
1978 zend_hash_index_update(Z_ARRVAL_P(arg), index, &tmp); in add_index_stringl()
1987 zend_hash_index_update(Z_ARRVAL_P(arg), index, &tmp); in add_index_array()
1996 zend_hash_index_update(Z_ARRVAL_P(arg), index, &tmp); in add_index_object()
2005 zend_hash_index_update(Z_ARRVAL_P(arg), index, &tmp); in add_index_reference()
2014 return zend_hash_next_index_insert(Z_ARRVAL_P(arg), &tmp) ? SUCCESS : FAILURE; in add_next_index_long()
2023 return zend_hash_next_index_insert(Z_ARRVAL_P(arg), &tmp) ? SUCCESS : FAILURE; in add_next_index_null()
2032 return zend_hash_next_index_insert(Z_ARRVAL_P(arg), &tmp) ? SUCCESS : FAILURE; in add_next_index_bool()
2041 return zend_hash_next_index_insert(Z_ARRVAL_P(arg), &tmp) ? SUCCESS : FAILURE; in add_next_index_resource()
2050 return zend_hash_next_index_insert(Z_ARRVAL_P(arg), &tmp) ? SUCCESS : FAILURE; in add_next_index_double()
2059 return zend_hash_next_index_insert(Z_ARRVAL_P(arg), &tmp) ? SUCCESS : FAILURE; in add_next_index_str()
2068 return zend_hash_next_index_insert(Z_ARRVAL_P(arg), &tmp) ? SUCCESS : FAILURE; in add_next_index_string()
2077 return zend_hash_next_index_insert(Z_ARRVAL_P(arg), &tmp) ? SUCCESS : FAILURE; in add_next_index_stringl()
2086 return zend_hash_next_index_insert(Z_ARRVAL_P(arg), &tmp) ? SUCCESS : FAILURE; in add_next_index_array()
2095 return zend_hash_next_index_insert(Z_ARRVAL_P(arg), &tmp) ? SUCCESS : FAILURE; in add_next_index_object()
2104 return zend_hash_next_index_insert(Z_ARRVAL_P(arg), &tmp) ? SUCCESS : FAILURE; in add_next_index_reference()
3948 if (zend_hash_num_elements(Z_ARRVAL_P(callable)) == 2) { in zend_get_callable_name_ex()
3949 obj = zend_hash_index_find_deref(Z_ARRVAL_P(callable), 0); in zend_get_callable_name_ex()
3950 method = zend_hash_index_find_deref(Z_ARRVAL_P(callable), 1); in zend_get_callable_name_ex()
4030 if (zend_hash_num_elements(Z_ARRVAL_P(callable)) != 2) { in zend_is_callable_at_frame()
4035 zval *obj = zend_hash_index_find(Z_ARRVAL_P(callable), 0); in zend_is_callable_at_frame()
4036 zval *method = zend_hash_index_find(Z_ARRVAL_P(callable), 1); in zend_is_callable_at_frame()
4206 fci->param_count = zend_hash_num_elements(Z_ARRVAL_P(args)); in zend_fcall_info_args_ex()
4209 ZEND_HASH_FOREACH_VAL(Z_ARRVAL_P(args), arg) { in zend_fcall_info_args_ex()