• Home
  • History
  • Annotate
  • Raw
  • Download

Lines Matching refs:out_ctxt

242         output_context_t *out_ctxt = node_to_item(node,  in get_output()  local
245 if (out_ctxt->handle == output) { in get_output()
246 return out_ctxt; in get_output()
288 output_context_t *out_ctxt = node_to_item(out_node, in effects_enabled() local
292 list_for_each(fx_node, &out_ctxt->effects_list) { in effects_enabled()
393 output_context_t *out_ctxt = node_to_item(out_node, in capture_thread_loop() local
398 list_for_each(fx_node, &out_ctxt->effects_list) { in capture_thread_loop()
446 output_context_t *out_ctxt = (output_context_t *)malloc(sizeof(output_context_t)); in visualizer_hal_start_output() local
447 out_ctxt->handle = output; in visualizer_hal_start_output()
448 list_init(&out_ctxt->effects_list); in visualizer_hal_start_output()
456 fx_ctxt->ops.start(fx_ctxt, out_ctxt); in visualizer_hal_start_output()
457 list_add_tail(&out_ctxt->effects_list, &fx_ctxt->output_node); in visualizer_hal_start_output()
465 list_add_tail(&active_outputs_list, &out_ctxt->outputs_list_node); in visualizer_hal_start_output()
479 output_context_t *out_ctxt; in visualizer_hal_stop_output() local
489 out_ctxt = get_output(output); in visualizer_hal_stop_output()
490 if (out_ctxt == NULL) { in visualizer_hal_stop_output()
495 list_for_each(fx_node, &out_ctxt->effects_list) { in visualizer_hal_stop_output()
500 fx_ctxt->ops.stop(fx_ctxt, out_ctxt); in visualizer_hal_stop_output()
502 list_remove(&out_ctxt->outputs_list_node); in visualizer_hal_stop_output()
516 free(out_ctxt); in visualizer_hal_stop_output()
983 output_context_t *out_ctxt = get_output(ioId); in effect_lib_create() local
984 if (out_ctxt != NULL) in effect_lib_create()
985 add_effect_to_output(out_ctxt, context); in effect_lib_create()
1007 output_context_t *out_ctxt = get_output(context->out_handle); in effect_lib_release() local
1008 if (out_ctxt != NULL) in effect_lib_release()
1009 remove_effect_from_output(out_ctxt, context); in effect_lib_release()
1200 output_context_t *out_ctxt; in effect_command() local
1220 out_ctxt = get_output(context->out_handle); in effect_command()
1221 if (out_ctxt != NULL) in effect_command()
1222 remove_effect_from_output(out_ctxt, context); in effect_command()
1225 out_ctxt = get_output(offload_param->ioHandle); in effect_command()
1226 if (out_ctxt != NULL) in effect_command()
1227 add_effect_to_output(out_ctxt, context); in effect_command()