Lines Matching refs:time

29 	uchar channel, uchar note, uchar velocity, bigtime_t time)
31 fMidiObject->NoteOff(channel + 1, note, velocity, MAKE_TIME(time));
37 uchar channel, uchar note, uchar velocity, bigtime_t time)
39 fMidiObject->NoteOn(channel + 1, note, velocity, MAKE_TIME(time));
45 uchar channel, uchar note, uchar pressure, bigtime_t time)
47 fMidiObject->KeyPressure(channel + 1, note, pressure, MAKE_TIME(time));
53 uchar channel, uchar controlNumber, uchar controlValue, bigtime_t time)
56 channel + 1, controlNumber, controlValue, MAKE_TIME(time));
62 uchar channel, uchar programNumber, bigtime_t time)
64 fMidiObject->ProgramChange(channel + 1, programNumber, MAKE_TIME(time));
70 uchar channel, uchar pressure, bigtime_t time)
72 fMidiObject->ChannelPressure(channel + 1, pressure, MAKE_TIME(time));
78 uchar channel, uchar lsb, uchar msb, bigtime_t time)
80 fMidiObject->PitchBend(channel + 1, lsb, msb, MAKE_TIME(time));
86 void* data, size_t length, bigtime_t time)
88 fMidiObject->SystemExclusive(data, length, MAKE_TIME(time));
94 uchar status, uchar data1, uchar data2, bigtime_t time)
96 fMidiObject->SystemCommon(status, data1, data2, MAKE_TIME(time));
101 BMidiGlue::SystemRealTime(uchar status, bigtime_t time)
103 fMidiObject->SystemRealTime(status, MAKE_TIME(time));
108 BMidiGlue::TempoChange(int32 beatsPerMinute, bigtime_t time)
110 fMidiObject->TempoChange(beatsPerMinute, MAKE_TIME(time));
123 uchar channel, uchar note, uchar velocity, bigtime_t time)
125 fMidiObject->SprayNoteOff(channel + 1, note, velocity, MAKE_TIME(time));
131 uchar channel, uchar note, uchar velocity, bigtime_t time)
133 fMidiObject->SprayNoteOn(channel + 1, note, velocity, MAKE_TIME(time));
139 uchar channel, uchar note, uchar pressure, bigtime_t time)
142 channel + 1, note, pressure, MAKE_TIME(time));
148 uchar channel, uchar controlNumber, uchar controlValue, bigtime_t time)
151 channel + 1, controlNumber, controlValue, MAKE_TIME(time));
157 uchar channel, uchar programNumber, bigtime_t time)
160 channel + 1, programNumber, MAKE_TIME(time));
166 uchar channel, uchar pressure, bigtime_t time)
168 fMidiObject->SprayChannelPressure(channel + 1, pressure, MAKE_TIME(time));
174 uchar channel, uchar lsb, uchar msb, bigtime_t time)
176 fMidiObject->SprayPitchBend(channel + 1, lsb, msb, MAKE_TIME(time));
182 void* data, size_t length, bigtime_t time)
184 fMidiObject->SpraySystemExclusive(data, length, MAKE_TIME(time));
190 uchar status, uchar data1, uchar data2, bigtime_t time)
192 fMidiObject->SpraySystemCommon(status, data1, data2, MAKE_TIME(time));
197 BMidiPortGlue::SystemRealTime(uchar status, bigtime_t time)
199 fMidiObject->SpraySystemRealTime(status, MAKE_TIME(time));
204 BMidiPortGlue::TempoChange(int32 beatsPerMinute, bigtime_t time)
206 fMidiObject->SprayTempoChange(beatsPerMinute, MAKE_TIME(time));