Lines Matching refs:ops

81     effect_ops_t ops;  member
263 if (context->ops.start) in add_effect_to_output()
264 context->ops.start(context, output); in add_effect_to_output()
275 if (context->ops.stop) in remove_effect_from_output()
276 context->ops.stop(context, output); in remove_effect_from_output()
296 if (fx_ctxt->state == EFFECT_STATE_ACTIVE && fx_ctxt->ops.process != NULL) in effects_enabled()
402 if (fx_ctxt->ops.process != NULL) in capture_thread_loop()
403 fx_ctxt->ops.process(fx_ctxt, &buf, &buf); in capture_thread_loop()
455 if (fx_ctxt->ops.start) in visualizer_hal_start_output()
456 fx_ctxt->ops.start(fx_ctxt, out_ctxt); in visualizer_hal_start_output()
499 if (fx_ctxt->ops.stop) in visualizer_hal_stop_output()
500 fx_ctxt->ops.stop(fx_ctxt, out_ctxt); in visualizer_hal_stop_output()
541 if (context->ops.reset) in set_config()
542 context->ops.reset(context); in set_config()
957 context->ops.init = visualizer_init; in effect_lib_create()
958 context->ops.reset = visualizer_reset; in effect_lib_create()
959 context->ops.process = visualizer_process; in effect_lib_create()
960 context->ops.set_parameter = visualizer_set_parameter; in effect_lib_create()
961 context->ops.get_parameter = visualizer_get_parameter; in effect_lib_create()
962 context->ops.command = visualizer_command; in effect_lib_create()
972 ret = context->ops.init(context); in effect_lib_create()
1011 if (context->ops.release) in effect_lib_release()
1012 context->ops.release(context); in effect_lib_release()
1102 if (context->ops.init) in effect_command()
1103 *(int *) pReplyData = context->ops.init(context); in effect_command()
1129 if (context->ops.reset) in effect_command()
1130 context->ops.reset(context); in effect_command()
1142 if (context->ops.enable) in effect_command()
1143 context->ops.enable(context); in effect_command()
1158 if (context->ops.disable) in effect_command()
1159 context->ops.disable(context); in effect_command()
1178 if (context->ops.get_parameter) in effect_command()
1179 context->ops.get_parameter(context, p, replySize); in effect_command()
1190 if (context->ops.set_parameter) in effect_command()
1191 *(int32_t *)pReplyData = context->ops.set_parameter(context, p, *replySize); in effect_command()
1233 if (cmdCode >= EFFECT_CMD_FIRST_PROPRIETARY && context->ops.command) in effect_command()
1234 status = context->ops.command(context, cmdCode, cmdSize, in effect_command()