Lines Matching refs:reply
1324 int32_t reply[reply_size]; in in_read_audio_effect_channel_configs() local
1340 (void*)&reply); in in_read_audio_effect_channel_configs()
1348 if (reply[0] != 0) { in in_read_audio_effect_channel_configs()
1351 reply[0], (reply[0] == -ENOMEM) ? reply[1] : MAX_NUM_CHANNEL_CONFIGS); in in_read_audio_effect_channel_configs()
1357 "Feature supported and adding %d channel configs to the list", reply[1]); in in_read_audio_effect_channel_configs()
1358 effect_info->num_channel_configs = reply[1]; in in_read_audio_effect_channel_configs()
1360 (channel_config_t *) malloc(sizeof(channel_config_t) * reply[1]); /* n x configs */ in in_read_audio_effect_channel_configs()
1361 memcpy(effect_info->channel_configs, (reply + 2), sizeof(channel_config_t) * reply[1]); in in_read_audio_effect_channel_configs()
2853 struct str_parms *reply = str_parms_create(); in out_get_parameters() local
2875 str_parms_add_str(reply, AUDIO_PARAMETER_STREAM_SUP_CHANNELS, value); in out_get_parameters()
2876 str = str_parms_to_str(reply); in out_get_parameters()
2881 str_parms_destroy(reply); in out_get_parameters()