Lines Matching refs:ops
71 effect_ops_t ops; member
241 if (context->ops.start) in add_effect_to_output()
242 context->ops.start(context, output); in add_effect_to_output()
253 if (context->ops.stop) in remove_effect_from_output()
254 context->ops.stop(context, output); in remove_effect_from_output()
274 if (fx_ctxt->state == EFFECT_STATE_ACTIVE && fx_ctxt->ops.process != NULL) in effects_enabled()
344 if (fx_ctxt->ops.process != NULL) in effects_capture_thread_loop()
345 fx_ctxt->ops.process(fx_ctxt, &buf, &buf); in effects_capture_thread_loop()
395 if (fx_ctxt->ops.start) in visualizer_hal_start_output()
396 fx_ctxt->ops.start(fx_ctxt, out_ctxt); in visualizer_hal_start_output()
439 if (fx_ctxt->ops.stop) in visualizer_hal_stop_output()
440 fx_ctxt->ops.stop(fx_ctxt, out_ctxt); in visualizer_hal_stop_output()
481 if (context->ops.reset) in set_config()
482 context->ops.reset(context); in set_config()
882 context->ops.init = visualizer_init; in effect_lib_create()
883 context->ops.reset = visualizer_reset; in effect_lib_create()
884 context->ops.process = visualizer_process; in effect_lib_create()
885 context->ops.set_parameter = visualizer_set_parameter; in effect_lib_create()
886 context->ops.get_parameter = visualizer_get_parameter; in effect_lib_create()
887 context->ops.command = visualizer_command; in effect_lib_create()
897 ret = context->ops.init(context); in effect_lib_create()
936 if (context->ops.release) in effect_lib_release()
937 context->ops.release(context); in effect_lib_release()
1027 if (context->ops.init) in effect_command()
1028 *(int *) pReplyData = context->ops.init(context); in effect_command()
1054 if (context->ops.reset) in effect_command()
1055 context->ops.reset(context); in effect_command()
1067 if (context->ops.enable) { in effect_command()
1068 context->ops.enable(context); in effect_command()
1083 if (context->ops.disable) in effect_command()
1084 context->ops.disable(context); in effect_command()
1103 if (context->ops.get_parameter) in effect_command()
1104 context->ops.get_parameter(context, p, replySize); in effect_command()
1115 if (context->ops.set_parameter) in effect_command()
1116 *(int32_t *)pReplyData = context->ops.set_parameter(context, p, *replySize); in effect_command()
1158 if (cmdCode >= EFFECT_CMD_FIRST_PROPRIETARY && context->ops.command) in effect_command()
1159 status = context->ops.command(context, cmdCode, cmdSize, in effect_command()