Lines Matching refs:time

63 BMidi::NoteOff(uchar channel, uchar note, uchar velocity, uint32 time)
70 BMidi::NoteOn(uchar channel, uchar note, uchar velocity, uint32 time)
78 uchar channel, uchar note, uchar pressure, uint32 time)
86 uchar channel, uchar controlNumber, uchar controlValue, uint32 time)
93 BMidi::ProgramChange(uchar channel, uchar programNumber, uint32 time)
100 BMidi::ChannelPressure(uchar channel, uchar pressure, uint32 time)
107 BMidi::PitchBend(uchar channel, uchar lsb, uchar msb, uint32 time)
114 BMidi::SystemExclusive(void* data, size_t length, uint32 time)
121 BMidi::SystemCommon(uchar status, uchar data1, uchar data2, uint32 time)
128 BMidi::SystemRealTime(uchar status, uint32 time)
135 BMidi::TempoChange(int32 beatsPerMinute, uint32 time)
142 BMidi::AllNotesOff(bool justChannel, uint32 time)
145 SprayControlChange(channel, B_ALL_NOTES_OFF, 0, time);
149 SprayNoteOff(channel, note, 0, time);
237 BMidi::SnoozeUntil(uint32 time) const
239 snooze_until(MAKE_BIGTIME(time), B_SYSTEM_TIMEBASE);
264 uchar channel, uchar note, uchar velocity, uint32 time) const
267 channel - 1, note, velocity, MAKE_BIGTIME(time));
273 uchar channel, uchar note, uchar velocity, uint32 time) const
276 channel - 1, note, velocity, MAKE_BIGTIME(time));
282 uchar channel, uchar note, uchar pressure, uint32 time) const
285 channel - 1, note, pressure, MAKE_BIGTIME(time));
292 uint32 time) const
295 channel - 1, controlNumber, controlValue, MAKE_BIGTIME(time));
301 uchar channel, uchar programNumber, uint32 time) const
304 channel - 1, programNumber, MAKE_BIGTIME(time));
310 uchar channel, uchar pressure, uint32 time) const
313 channel - 1, pressure, MAKE_BIGTIME(time));
319 uchar channel, uchar lsb, uchar msb, uint32 time) const
321 fProducer->SprayPitchBend(channel - 1, lsb, msb, MAKE_BIGTIME(time));
327 void* data, size_t length, uint32 time) const
329 fProducer->SpraySystemExclusive(data, length, MAKE_BIGTIME(time));
335 uchar status, uchar data1, uchar data2, uint32 time) const
337 fProducer->SpraySystemCommon(status, data1, data2, MAKE_BIGTIME(time));
342 BMidi::SpraySystemRealTime(uchar status, uint32 time) const
344 fProducer->SpraySystemRealTime(status, MAKE_BIGTIME(time));
349 BMidi::SprayTempoChange(int32 beatsPerMinute, uint32 time) const
351 fProducer->SprayTempoChange(beatsPerMinute, MAKE_BIGTIME(time));