Lines Matching refs:ops

71     effect_ops_t ops;  member
253 if (context->ops.start) in add_effect_to_output()
254 context->ops.start(context, output); in add_effect_to_output()
265 if (context->ops.stop) in remove_effect_from_output()
266 context->ops.stop(context, output); in remove_effect_from_output()
286 if (fx_ctxt->state == EFFECT_STATE_ACTIVE && fx_ctxt->ops.process != NULL) in effects_enabled()
389 if (fx_ctxt->ops.process != NULL) in capture_thread_loop()
390 fx_ctxt->ops.process(fx_ctxt, &buf, &buf); in capture_thread_loop()
447 if (fx_ctxt->ops.start) in visualizer_hal_start_output()
448 fx_ctxt->ops.start(fx_ctxt, out_ctxt); in visualizer_hal_start_output()
491 if (fx_ctxt->ops.stop) in visualizer_hal_stop_output()
492 fx_ctxt->ops.stop(fx_ctxt, out_ctxt); in visualizer_hal_stop_output()
533 if (context->ops.reset) in set_config()
534 context->ops.reset(context); in set_config()
940 context->ops.init = visualizer_init; in effect_lib_create()
941 context->ops.reset = visualizer_reset; in effect_lib_create()
942 context->ops.process = visualizer_process; in effect_lib_create()
943 context->ops.set_parameter = visualizer_set_parameter; in effect_lib_create()
944 context->ops.get_parameter = visualizer_get_parameter; in effect_lib_create()
945 context->ops.command = visualizer_command; in effect_lib_create()
955 ret = context->ops.init(context); in effect_lib_create()
994 if (context->ops.release) in effect_lib_release()
995 context->ops.release(context); in effect_lib_release()
1085 if (context->ops.init) in effect_command()
1086 *(int *) pReplyData = context->ops.init(context); in effect_command()
1112 if (context->ops.reset) in effect_command()
1113 context->ops.reset(context); in effect_command()
1125 if (context->ops.enable) in effect_command()
1126 context->ops.enable(context); in effect_command()
1141 if (context->ops.disable) in effect_command()
1142 context->ops.disable(context); in effect_command()
1161 if (context->ops.get_parameter) in effect_command()
1162 context->ops.get_parameter(context, p, replySize); in effect_command()
1173 if (context->ops.set_parameter) in effect_command()
1174 *(int32_t *)pReplyData = context->ops.set_parameter(context, p, *replySize); in effect_command()
1216 if (cmdCode >= EFFECT_CMD_FIRST_PROPRIETARY && context->ops.command) in effect_command()
1217 status = context->ops.command(context, cmdCode, cmdSize, in effect_command()