Home | History | Annotate | Download | only in dev

Lines Matching refs:midi_dev

161 static int midiseq_out(struct midi_dev *, u_char *, u_int, int);
162 static struct midi_dev *midiseq_open(int, int);
163 static void midiseq_close(struct midi_dev *);
164 static void midiseq_reset(struct midi_dev *);
165 static int midiseq_noteon(struct midi_dev *, int, int, seq_event_t *);
166 static int midiseq_noteoff(struct midi_dev *, int, int, seq_event_t *);
167 static int midiseq_keypressure(struct midi_dev *, int, int, seq_event_t *);
168 static int midiseq_pgmchange(struct midi_dev *, int, seq_event_t *);
169 static int midiseq_chnpressure(struct midi_dev *, int, seq_event_t *);
170 static int midiseq_ctlchange(struct midi_dev *, int, seq_event_t *);
171 static int midiseq_pitchbend(struct midi_dev *, int, seq_event_t *);
172 static int midiseq_loadpatch(struct midi_dev *, struct sysex_info *,
174 void midiseq_in(struct midi_dev *, u_char *, int);
332 struct midi_dev *md;
369 sc->devs = kmem_alloc(sc->ndevs * sizeof(struct midi_dev *),
501 kmem_free(sc->devs, sc->ndevs * sizeof(struct midi_dev *));
731 struct midi_dev *md;
1029 struct midi_dev *md;
1086 struct midi_dev *md;
1121 struct midi_dev *md;
1168 struct midi_dev *md;
1417 midiseq_in(struct midi_dev *md, u_char *msg, int len)
1435 static struct midi_dev *
1439 struct midi_dev *md;
1491 midiseq_close(struct midi_dev *md)
1500 midiseq_reset(struct midi_dev *md)
1507 midiseq_out(struct midi_dev *md, u_char *bf, u_int cc, int chk)
1522 midiseq_noteon(struct midi_dev *md, int chan, int key, seq_event_t *ev)
1530 midiseq_noteoff(struct midi_dev *md, int chan, int key, seq_event_t *ev)
1538 midiseq_keypressure(struct midi_dev *md, int chan, int key, seq_event_t *ev)
1547 midiseq_pgmchange(struct midi_dev *md, int chan, seq_event_t *ev)
1557 midiseq_chnpressure(struct midi_dev *md, int chan, seq_event_t *ev)
1567 midiseq_ctlchange(struct midi_dev *md, int chan, seq_event_t *ev)
1579 midiseq_pitchbend(struct midi_dev *md, int chan, seq_event_t *ev)
1589 midiseq_loadpatch(struct midi_dev *md,