Lines Matching refs:out_ctxt

245         output_context_t *out_ctxt = node_to_item(node,  in get_output()  local
248 if (out_ctxt->handle == output) { in get_output()
249 return out_ctxt; in get_output()
291 output_context_t *out_ctxt = node_to_item(out_node, in effects_enabled() local
295 list_for_each(fx_node, &out_ctxt->effects_list) { in effects_enabled()
397 output_context_t *out_ctxt = node_to_item(out_node, in capture_thread_loop() local
402 list_for_each(fx_node, &out_ctxt->effects_list) { in capture_thread_loop()
456 output_context_t *out_ctxt = (output_context_t *)malloc(sizeof(output_context_t)); in visualizer_hal_start_output() local
457 out_ctxt->handle = output; in visualizer_hal_start_output()
458 list_init(&out_ctxt->effects_list); in visualizer_hal_start_output()
466 fx_ctxt->ops.start(fx_ctxt, out_ctxt); in visualizer_hal_start_output()
467 list_add_tail(&out_ctxt->effects_list, &fx_ctxt->output_node); in visualizer_hal_start_output()
475 list_add_tail(&active_outputs_list, &out_ctxt->outputs_list_node); in visualizer_hal_start_output()
489 output_context_t *out_ctxt; in visualizer_hal_stop_output() local
499 out_ctxt = get_output(output); in visualizer_hal_stop_output()
500 if (out_ctxt == NULL) { in visualizer_hal_stop_output()
505 list_for_each(fx_node, &out_ctxt->effects_list) { in visualizer_hal_stop_output()
510 fx_ctxt->ops.stop(fx_ctxt, out_ctxt); in visualizer_hal_stop_output()
512 list_remove(&out_ctxt->outputs_list_node); in visualizer_hal_stop_output()
526 free(out_ctxt); in visualizer_hal_stop_output()
1008 output_context_t *out_ctxt = get_output(ioId); in effect_lib_create() local
1009 if (out_ctxt != NULL) in effect_lib_create()
1010 add_effect_to_output(out_ctxt, context); in effect_lib_create()
1032 output_context_t *out_ctxt = get_output(context->out_handle); in effect_lib_release() local
1033 if (out_ctxt != NULL) in effect_lib_release()
1034 remove_effect_from_output(out_ctxt, context); in effect_lib_release()
1225 output_context_t *out_ctxt; in effect_command() local
1245 out_ctxt = get_output(context->out_handle); in effect_command()
1246 if (out_ctxt != NULL) in effect_command()
1247 remove_effect_from_output(out_ctxt, context); in effect_command()
1250 out_ctxt = get_output(offload_param->ioHandle); in effect_command()
1251 if (out_ctxt != NULL) in effect_command()
1252 add_effect_to_output(out_ctxt, context); in effect_command()