Lines Matching refs:ops

83     effect_ops_t ops;  member
266 if (context->ops.start) in add_effect_to_output()
267 context->ops.start(context, output); in add_effect_to_output()
278 if (context->ops.stop) in remove_effect_from_output()
279 context->ops.stop(context, output); in remove_effect_from_output()
299 if (fx_ctxt->state == EFFECT_STATE_ACTIVE && fx_ctxt->ops.process != NULL) in effects_enabled()
406 if (fx_ctxt->ops.process != NULL) in capture_thread_loop()
407 fx_ctxt->ops.process(fx_ctxt, &buf, &buf); in capture_thread_loop()
465 if (fx_ctxt->ops.start) in visualizer_hal_start_output()
466 fx_ctxt->ops.start(fx_ctxt, out_ctxt); in visualizer_hal_start_output()
509 if (fx_ctxt->ops.stop) in visualizer_hal_stop_output()
510 fx_ctxt->ops.stop(fx_ctxt, out_ctxt); in visualizer_hal_stop_output()
551 if (context->ops.reset) in set_config()
552 context->ops.reset(context); in set_config()
982 context->ops.init = visualizer_init; in effect_lib_create()
983 context->ops.reset = visualizer_reset; in effect_lib_create()
984 context->ops.process = visualizer_process; in effect_lib_create()
985 context->ops.set_parameter = visualizer_set_parameter; in effect_lib_create()
986 context->ops.get_parameter = visualizer_get_parameter; in effect_lib_create()
987 context->ops.command = visualizer_command; in effect_lib_create()
997 ret = context->ops.init(context); in effect_lib_create()
1036 if (context->ops.release) in effect_lib_release()
1037 context->ops.release(context); in effect_lib_release()
1127 if (context->ops.init) in effect_command()
1128 *(int *) pReplyData = context->ops.init(context); in effect_command()
1154 if (context->ops.reset) in effect_command()
1155 context->ops.reset(context); in effect_command()
1167 if (context->ops.enable) in effect_command()
1168 context->ops.enable(context); in effect_command()
1183 if (context->ops.disable) in effect_command()
1184 context->ops.disable(context); in effect_command()
1203 if (context->ops.get_parameter) in effect_command()
1204 context->ops.get_parameter(context, p, replySize); in effect_command()
1215 if (context->ops.set_parameter) in effect_command()
1216 *(int32_t *)pReplyData = context->ops.set_parameter(context, p, *replySize); in effect_command()
1258 if (cmdCode >= EFFECT_CMD_FIRST_PROPRIETARY && context->ops.command) in effect_command()
1259 status = context->ops.command(context, cmdCode, cmdSize, in effect_command()