Lines Matching refs:Z_ARRVAL_P

85 		zend_hash_next_index_insert_new(Z_ARRVAL_P(argument_array), param_ptr);  in zend_copy_parameters_array()
1929 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_assoc_long_ex()
1938 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_assoc_null_ex()
1947 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_assoc_bool_ex()
1956 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_assoc_resource_ex()
1965 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_assoc_double_ex()
1974 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_assoc_str_ex()
1983 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_assoc_string_ex()
1992 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_assoc_stringl_ex()
2001 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_assoc_array_ex()
2010 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_assoc_object_ex()
2019 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, &tmp); in add_assoc_reference_ex()
2025 zend_symtable_str_update(Z_ARRVAL_P(arg), key, key_len, value); in add_assoc_zval_ex()
2034 zend_hash_index_update(Z_ARRVAL_P(arg), index, &tmp); in add_index_long()
2043 zend_hash_index_update(Z_ARRVAL_P(arg), index, &tmp); in add_index_null()
2052 zend_hash_index_update(Z_ARRVAL_P(arg), index, &tmp); in add_index_bool()
2061 zend_hash_index_update(Z_ARRVAL_P(arg), index, &tmp); in add_index_resource()
2070 zend_hash_index_update(Z_ARRVAL_P(arg), index, &tmp); in add_index_double()
2079 zend_hash_index_update(Z_ARRVAL_P(arg), index, &tmp); in add_index_str()
2088 zend_hash_index_update(Z_ARRVAL_P(arg), index, &tmp); in add_index_string()
2097 zend_hash_index_update(Z_ARRVAL_P(arg), index, &tmp); in add_index_stringl()
2106 zend_hash_index_update(Z_ARRVAL_P(arg), index, &tmp); in add_index_array()
2115 zend_hash_index_update(Z_ARRVAL_P(arg), index, &tmp); in add_index_object()
2124 zend_hash_index_update(Z_ARRVAL_P(arg), index, &tmp); in add_index_reference()
2133 return zend_hash_next_index_insert(Z_ARRVAL_P(arg), &tmp) ? SUCCESS : FAILURE; in add_next_index_long()
2142 return zend_hash_next_index_insert(Z_ARRVAL_P(arg), &tmp) ? SUCCESS : FAILURE; in add_next_index_null()
2151 return zend_hash_next_index_insert(Z_ARRVAL_P(arg), &tmp) ? SUCCESS : FAILURE; in add_next_index_bool()
2160 return zend_hash_next_index_insert(Z_ARRVAL_P(arg), &tmp) ? SUCCESS : FAILURE; in add_next_index_resource()
2169 return zend_hash_next_index_insert(Z_ARRVAL_P(arg), &tmp) ? SUCCESS : FAILURE; in add_next_index_double()
2178 return zend_hash_next_index_insert(Z_ARRVAL_P(arg), &tmp) ? SUCCESS : FAILURE; in add_next_index_str()
2187 return zend_hash_next_index_insert(Z_ARRVAL_P(arg), &tmp) ? SUCCESS : FAILURE; in add_next_index_string()
2196 return zend_hash_next_index_insert(Z_ARRVAL_P(arg), &tmp) ? SUCCESS : FAILURE; in add_next_index_stringl()
2205 return zend_hash_next_index_insert(Z_ARRVAL_P(arg), &tmp) ? SUCCESS : FAILURE; in add_next_index_array()
2214 return zend_hash_next_index_insert(Z_ARRVAL_P(arg), &tmp) ? SUCCESS : FAILURE; in add_next_index_object()
2223 return zend_hash_next_index_insert(Z_ARRVAL_P(arg), &tmp) ? SUCCESS : FAILURE; in add_next_index_reference()
4114 if (zend_hash_num_elements(Z_ARRVAL_P(callable)) == 2) { in zend_get_callable_name_ex()
4115 obj = zend_hash_index_find_deref(Z_ARRVAL_P(callable), 0); in zend_get_callable_name_ex()
4116 method = zend_hash_index_find_deref(Z_ARRVAL_P(callable), 1); in zend_get_callable_name_ex()
4196 if (zend_hash_num_elements(Z_ARRVAL_P(callable)) != 2) { in zend_is_callable_at_frame()
4201 zval *obj = zend_hash_index_find(Z_ARRVAL_P(callable), 0); in zend_is_callable_at_frame()
4202 zval *method = zend_hash_index_find(Z_ARRVAL_P(callable), 1); in zend_is_callable_at_frame()
4372 fci->param_count = zend_hash_num_elements(Z_ARRVAL_P(args)); in zend_fcall_info_args_ex()
4375 ZEND_HASH_FOREACH_VAL(Z_ARRVAL_P(args), arg) { in zend_fcall_info_args_ex()