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