Lines Matching refs:ac

373 fluid_handle_noteon(fluid_synth_t* synth, int ac, char** av, fluid_ostream_t out)
375 if (ac < 3) {
387 fluid_handle_noteoff(fluid_synth_t* synth, int ac, char** av, fluid_ostream_t out)
389 if (ac < 2) {
401 fluid_handle_cc(fluid_synth_t* synth, int ac, char** av, fluid_ostream_t out)
403 if (ac < 3) {
415 fluid_handle_prog(fluid_synth_t* synth, int ac, char** av, fluid_ostream_t out)
417 if (ac < 2) {
429 fluid_handle_select(fluid_synth_t* synth, int ac, char** av, fluid_ostream_t out)
436 if (ac < 4) {
462 fluid_handle_inst(fluid_synth_t* synth, int ac, char** av, fluid_ostream_t out)
469 if (ac < 1) {
503 fluid_handle_channels(fluid_synth_t* synth, int ac, char** av, fluid_ostream_t out)
509 if (ac > 0 && strcmp( av[0], "-verbose") == 0) verbose = 1;
525 fluid_handle_load(fluid_synth_t* synth, int ac, char** av, fluid_ostream_t out)
532 if (ac < 1) {
536 if (ac == 2) {
539 if (ac == 3) {
567 fluid_handle_unload(fluid_synth_t* synth, int ac, char** av, fluid_ostream_t out)
570 if (ac < 1) {
578 if (ac == 2) {
589 fluid_handle_reload(fluid_synth_t* synth, int ac, char** av, fluid_ostream_t out)
591 if (ac < 1) {
608 fluid_handle_fonts(fluid_synth_t* synth, int ac, char** av, fluid_ostream_t out)
634 fluid_handle_mstat(fluid_synth_t* synth, int ac, char** av, fluid_ostream_t out)
654 fluid_handle_reverbpreset(fluid_synth_t* synth, int ac, char** av, fluid_ostream_t out)
657 if (ac < 1) {
673 fluid_handle_reverbsetroomsize(fluid_synth_t* synth, int ac, char** av, fluid_ostream_t out)
676 if (ac < 1) {
697 fluid_handle_reverbsetdamp(fluid_synth_t* synth, int ac, char** av, fluid_ostream_t out)
700 if (ac < 1) {
717 fluid_handle_reverbsetwidth(fluid_synth_t* synth, int ac, char** av, fluid_ostream_t out)
720 if (ac < 1) {
737 fluid_handle_reverbsetlevel(fluid_synth_t* synth, int ac, char** av, fluid_ostream_t out)
740 if (ac < 1) {
757 fluid_handle_reverb(fluid_synth_t* synth, int ac, char** av, fluid_ostream_t out)
759 if (ac < 1) {
780 fluid_handle_chorusnr(fluid_synth_t* synth, int ac, char** av, fluid_ostream_t out)
783 if (ac < 1) {
795 fluid_handle_choruslevel(fluid_synth_t* synth, int ac, char** av, fluid_ostream_t out)
798 if (ac < 1) {
811 fluid_handle_chorusspeed(fluid_synth_t* synth, int ac, char** av, fluid_ostream_t out)
814 if (ac < 1) {
826 fluid_handle_chorusdepth(fluid_synth_t* synth, int ac, char** av, fluid_ostream_t out)
829 if (ac < 1) {
839 fluid_handle_chorus(fluid_synth_t* synth, int ac, char** av, fluid_ostream_t out)
841 if (ac < 1) {
864 fluid_handle_echo(fluid_cmd_handler_t* handler, int ac, char** av, fluid_ostream_t out)
866 if (ac < 1) {
877 fluid_handle_source(fluid_cmd_handler_t* handler, int ac, char** av, fluid_ostream_t out)
879 if (ac < 1) {
892 fluid_handle_gain(fluid_synth_t* synth, int ac, char** av, fluid_ostream_t out)
896 if (ac < 1) {
916 fluid_handle_interp(fluid_synth_t* synth, int ac, char** av, fluid_ostream_t out)
921 if (ac < 1) {
941 fluid_handle_interpc(fluid_synth_t* synth, int ac, char** av, fluid_ostream_t out)
946 if (ac < 2) {
969 fluid_handle_tuning(fluid_synth_t* synth, int ac, char** av, fluid_ostream_t out)
974 if (ac < 3) {
1007 fluid_handle_tune(fluid_synth_t* synth, int ac, char** av, fluid_ostream_t out)
1012 if (ac < 4) {
1059 fluid_handle_settuning(fluid_synth_t* synth, int ac, char** av, fluid_ostream_t out)
1063 if (ac < 3) {
1104 fluid_handle_resettuning(fluid_synth_t* synth, int ac, char** av, fluid_ostream_t out)
1108 if (ac < 1) {
1129 fluid_handle_tunings(fluid_synth_t* synth, int ac, char** av, fluid_ostream_t out)
1151 fluid_handle_dumptuning(fluid_synth_t* synth, int ac, char** av, fluid_ostream_t out)
1157 if (ac < 2) {
1194 fluid_handle_set(fluid_synth_t* synth, int ac, char** av, fluid_ostream_t out)
1196 if (ac < 2) {
1215 fluid_handle_get(fluid_synth_t* synth, int ac, char** av, fluid_ostream_t out)
1217 if (ac < 1) {
1308 fluid_handle_settings(fluid_synth_t* synth, int ac, char** av, fluid_ostream_t out)
1340 fluid_handle_info(fluid_synth_t* synth, int ac, char** av, fluid_ostream_t out)
1345 if (ac < 1) {
1416 fluid_handle_reset(fluid_synth_t* synth, int ac, char** av, fluid_ostream_t out)
1423 fluid_handle_quit(fluid_synth_t* synth, int ac, char** av, fluid_ostream_t out)
1430 fluid_handle_help(fluid_synth_t* synth, int ac, char** av, fluid_ostream_t out)
1447 if (ac >= 1) {
1623 int fluid_cmd_handler_handle(fluid_cmd_handler_t* handler, int ac, char** av, fluid_ostream_t out)
1631 return (*cmd->handler)(cmd->data, ac - 1, av + 1, out);