Searched refs:channel (Results 26 - 50 of 166) sorted by relevance

1234567

/haiku/src/add-ons/kernel/busses/ata/silicon_image_3112/
H A Dsilicon_image_3112.c21 #define CHANNEL_MODULE_NAME "busses/ata/silicon_image_3112/channel/v1"
65 struct channel_data *channel[4]; // XXX only for interrupt workaround member in struct:controller_data
305 controller->channel[i] = 0;
372 // publish channel nodes
380 // private data to identify channel
412 channel_data *channel; local
419 channel = malloc(sizeof(channel_data));
420 if (!channel)
441 TRACE("channel name: %s\n", kControllerChannelData[channelIndex].name);
443 TRACE("channel
504 channel_data *channel = channelCookie; local
522 channel_data *channel = channelCookie; local
530 channel_data *channel = channelCookie; local
538 channel_data *channel = channelCookie; local
566 channel_data *channel = channelCookie; local
588 channel_data *channel = channelCookie; local
602 channel_data *channel = channelCookie; local
619 channel_data *channel = channelCookie; local
647 channel_data *channel = channelCookie; local
676 channel_data *channel = channelCookie; local
734 channel_data *channel = channelCookie; local
754 channel_data *channel = channelCookie; local
797 channel_data *channel = controller->channel[i]; local
[all...]
/haiku/src/add-ons/kernel/file_systems/netfs/shared/
H A DRequestHandler.cpp20 RequestHandler::HandleRequest(Request* request, RequestChannel* channel) argument
24 status_t error = fChannels.Set(channel);
H A DRequestConnection.cpp31 status_t Init(RequestConnection* connection, Channel* channel, argument
34 if (!connection || !channel || !handler)
38 fChannel = new(std::nothrow) RequestChannel(channel);
130 // create a thread per down-stream channel
198 // get a channel
199 Channel* channel = NULL;
200 status_t error = fConnection->GetUpStreamChannel(&channel);
204 RequestChannel requestChannel(channel);
221 if (fConnection->PutUpStreamChannel(channel) != B_OK) {
223 delete channel;
[all...]
/haiku/src/kits/midi/
H A DMidiGlue.h30 uchar channel, uchar note, uchar velocity, bigtime_t time);
33 uchar channel, uchar note, uchar velocity, bigtime_t time);
36 uchar channel, uchar note, uchar pressure, bigtime_t time);
39 uchar channel, uchar controlNumber, uchar controlValue,
43 uchar channel, uchar programNumber, bigtime_t time);
46 uchar channel, uchar pressure, bigtime_t time);
49 uchar channel, uchar lsb, uchar msb, bigtime_t time);
72 uchar channel, uchar note, uchar velocity, bigtime_t time);
75 uchar channel, uchar note, uchar velocity, bigtime_t time);
78 uchar channel, ucha
[all...]
H A DMidiPort.cpp133 uchar channel, uchar note, uchar velocity, uint32 time)
135 fLocalSource->SprayNoteOff(channel - 1, note, velocity, MAKE_BIGTIME(time));
141 uchar channel, uchar note, uchar velocity, uint32 time)
143 fLocalSource->SprayNoteOn(channel - 1, note, velocity, MAKE_BIGTIME(time));
149 uchar channel, uchar note, uchar pressure, uint32 time)
152 channel - 1, note, pressure, MAKE_BIGTIME(time));
158 uchar channel, uchar controlNumber, uchar controlValue, uint32 time)
161 channel - 1, controlNumber, controlValue, MAKE_BIGTIME(time));
167 uchar channel, uchar programNumber, uint32 time)
170 channel
132 NoteOff( uchar channel, uchar note, uchar velocity, uint32 time) argument
140 NoteOn( uchar channel, uchar note, uchar velocity, uint32 time) argument
148 KeyPressure( uchar channel, uchar note, uchar pressure, uint32 time) argument
157 ControlChange( uchar channel, uchar controlNumber, uchar controlValue, uint32 time) argument
166 ProgramChange( uchar channel, uchar programNumber, uint32 time) argument
175 ChannelPressure(uchar channel, uchar pressure, uint32 time) argument
183 PitchBend(uchar channel, uchar lsb, uchar msb, uint32 time) argument
[all...]
H A DSoftSynth.cpp368 uchar channel, uchar note, uchar velocity, uint32 time)
372 fluid_synth_noteoff(fSynth, channel - 1, note); // velocity isn't used in FS
379 uchar channel, uchar note, uchar velocity, uint32 time)
383 fluid_synth_noteon(fSynth, channel - 1, note, velocity);
390 uchar channel, uchar note, uchar pressure, uint32 time)
401 uchar channel, uchar controlNumber, uchar controlValue, uint32 time)
405 fluid_synth_cc(fSynth, channel - 1, controlNumber, controlValue);
412 uchar channel, uchar programNumber, uint32 time)
416 fluid_synth_program_change(fSynth, channel - 1, programNumber);
422 BSoftSynth::ChannelPressure(uchar channel, ucha argument
367 NoteOff( uchar channel, uchar note, uchar velocity, uint32 time) argument
378 NoteOn( uchar channel, uchar note, uchar velocity, uint32 time) argument
389 KeyPressure( uchar channel, uchar note, uchar pressure, uint32 time) argument
400 ControlChange( uchar channel, uchar controlNumber, uchar controlValue, uint32 time) argument
411 ProgramChange( uchar channel, uchar programNumber, uint32 time) argument
432 PitchBend(uchar channel, uchar lsb, uchar msb, uint32 time) argument
[all...]
/haiku/headers/os/midi/
H A DMidi.h20 uchar channel, uchar note, uchar velocity, uint32 time = B_NOW);
23 uchar channel, uchar note, uchar velocity, uint32 time = B_NOW);
26 uchar channel, uchar note, uchar pressure, uint32 time = B_NOW);
29 uchar channel, uchar controlNumber, uchar controlValue,
33 uchar channel, uchar programNumber, uint32 time = B_NOW);
36 uchar channel, uchar pressure, uint32 time = B_NOW);
39 uchar channel, uchar lsb, uchar msb, uint32 time = B_NOW);
68 uchar channel, uchar note, uchar velocity, uint32 time) const;
71 uchar channel, uchar note, uchar velocity, uint32 time) const;
74 uchar channel, ucha
[all...]
H A DMidiText.h16 uchar channel, uchar note, uchar velocity, uint32 time = B_NOW);
19 uchar channel, uchar note, uchar velocity, uint32 time = B_NOW);
22 uchar channel, uchar note, uchar pressure, uint32 time = B_NOW);
25 uchar channel, uchar controlNumber, uchar controlValue,
29 uchar channel, uchar programNumber, uint32 time = B_NOW);
32 uchar channel, uchar pressure, uint32 time = B_NOW);
35 uchar channel, uchar lsb, uchar msb, uint32 time = B_NOW);
H A DMidiPort.h25 uchar channel, uchar note, uchar velocity, uint32 time = B_NOW);
28 uchar channel, uchar note, uchar velocity, uint32 time = B_NOW);
31 uchar channel, uchar note, uchar pressure, uint32 time = B_NOW);
34 uchar channel, uchar controlNumber, uchar controlValue,
38 uchar channel, uchar programNumber, uint32 time = B_NOW);
41 uchar channel, uchar pressure, uint32 time = B_NOW);
44 uchar channel, uchar lsb, uchar msb, uint32 time = B_NOW);
/haiku/src/add-ons/accelerants/radeon/
H A Ddriver_wrapper.c58 status_t Radeon_VIPRead( accelerator_info *ai, uint channel, uint address, uint32 *data ) argument
64 vr.channel = channel;
77 status_t Radeon_VIPWrite( accelerator_info *ai, uint8 channel, uint address, uint32 data ) argument
82 vw.channel = channel;
101 return fvd.channel;
/haiku/src/add-ons/kernel/drivers/graphics/radeon/
H A Dvip.c24 static status_t RADEON_VIPFifoIdle(device_info *di, uint8 channel);
30 device_info *di, uint channel, uint address, uint32 *data )
36 OUTREG( regs, RADEON_VIPH_REG_ADDR, (channel << 14) | address | 0x2000 );
64 //SHOW_FLOW( 4, "channel=%d, address=%x, data=%lx", channel, address, *data );
80 device_info *di, uint channel, uint address, uint32 *data, bool lock )
87 res = do_VIPRead( di, channel, address, data );
97 static bool do_VIPFifoRead(device_info *di, uint8 channel, uint32 address, uint32 count, uint8 *buffer) argument
113 OUTREG( regs, RADEON_VIPH_REG_ADDR, (channel << 14) | address | 0x3000);
171 bool Radeon_VIPFifoRead(device_info *di, uint8 channel, uint3 argument
29 do_VIPRead( device_info *di, uint channel, uint address, uint32 *data ) argument
79 Radeon_VIPRead( device_info *di, uint channel, uint address, uint32 *data, bool lock ) argument
190 do_VIPWrite( device_info *di, uint8 channel, uint address, uint32 data ) argument
209 Radeon_VIPWrite(device_info *di, uint8 channel, uint address, uint32 data, bool lock ) argument
227 do_VIPFifoWrite(device_info *di, uint8 channel, uint32 address, uint32 count, uint8 *buffer) argument
273 Radeon_VIPFifoWrite(device_info *di, uint8 channel, uint32 address, uint32 count, uint8 *buffer, bool lock) argument
364 RADEON_VIPFifoIdle(device_info *di, uint8 channel) argument
411 uint channel; local
[all...]
/haiku/src/kits/midi2/
H A DMidiLocalProducer.cpp69 BMidiLocalProducer::SprayNoteOff(uchar channel, uchar note, argument
72 if (channel < 16) {
74 data[0] = B_NOTE_OFF + channel;
80 debugger("invalid MIDI channel");
86 BMidiLocalProducer::SprayNoteOn(uchar channel, uchar note, argument
89 if (channel < 16) {
91 data[0] = B_NOTE_ON + channel;
97 debugger("invalid MIDI channel");
103 BMidiLocalProducer::SprayKeyPressure(uchar channel, uchar note, argument
106 if (channel < 1
120 SprayControlChange(uchar channel, uchar controlNumber, uchar controlValue, bigtime_t time) const argument
137 SprayProgramChange(uchar channel, uchar programNumber, bigtime_t time) const argument
153 SprayChannelPressure(uchar channel, uchar pressure, bigtime_t time) const argument
169 SprayPitchBend(uchar channel, uchar lsb, uchar msb, bigtime_t time) const argument
[all...]
/haiku/src/add-ons/media/media-add-ons/radeon/
H A DVideoIn.cpp285 float CVideoIn::FrequencyForChannel(int channel, video_in_standard standard) argument
296 if (channel >= 2 && channel <= 6) {
297 frequency = 55.25 + 6.00 * (channel - 2);
299 else if (channel >= 7 && channel <= 13) {
300 frequency = 175.25 + 6.00 * (channel - 7);
302 else if (channel >= 14 && channel <= 22) {
303 frequency = 121.25 + 6.00 * (channel
338 SetChannel(int channel, video_in_standard standard) argument
[all...]
/haiku/headers/private/drivers/
H A Data_adapter.h16 free to access any controller or channel data of this library.
65 // channel node items
73 // 0 if primary channel, 1 if secondary channel, 2 if tertiary, ... (uint8)
81 // info about one channel
124 void (*set_channel)(ata_adapter_channel_info *channel,
128 status_t (*write_command_block_regs)(ata_adapter_channel_info *channel,
130 status_t (*read_command_block_regs)(ata_adapter_channel_info *channel,
133 uint8 (*get_altstatus) (ata_adapter_channel_info *channel);
134 status_t (*write_device_control) (ata_adapter_channel_info *channel, uint
[all...]
/haiku/src/add-ons/kernel/file_systems/netfs/headers/shared/
H A DConnection.h26 virtual status_t GetUpStreamChannel(Channel** channel,
28 virtual status_t PutUpStreamChannel(Channel* channel) = 0;
H A DRequestHandler.h17 RequestChannel* channel);
H A DInsecureConnection.h28 uint16 port, Channel** channel);
30 status_t _SendErrorReply(Channel* channel,
H A DPortConnection.h17 status_t Init(Channel* channel, int32 upStreamChannels,
24 static status_t _CreateChannel(PortChannel** channel,
/haiku/src/add-ons/media/media-add-ons/opensound/
H A DOpenSoundNode.cpp617 NodeInput* channel = _FindInput(dest); local
619 if (channel == NULL) {
644 channel->fEngineIndex, false);
648 status_t err = engine->AcceptFormatFor(channel->fOSSFormatFlags, *format,
653 channel->fRealEngine = engine;
662 //channel->fInput.format = channel->fPreferredFormat;
663 channel->fInput.format = *format;
666 && channel->fPreferredFormat.u.raw_audio.format
671 format->u.raw_audio.format = channel
785 NodeInput* channel = _FindInput(for_whom); local
814 NodeInput* channel = _FindInput(for_whom); local
850 NodeInput* channel = _FindInput(where); local
889 NodeInput* channel = _FindInput(where); local
922 NodeInput* channel = _FindInput(consumer); local
998 NodeOutput* channel = _FindOutput(output); local
1080 NodeOutput* channel = _FindOutput(for_source); local
1126 NodeOutput *channel = _FindOutput(what); local
1192 NodeOutput *channel = _FindOutput(source); local
1263 NodeOutput *channel = _FindOutput(what); local
1303 NodeOutput *channel = _FindOutput(what); local
1349 NodeOutput *channel = _FindOutput(what); local
1427 NodeInput *channel = _FindInput(buffer->Header()->destination); local
2522 _FillNextBuffer(audio_buf_info* abinfo, NodeOutput& channel) argument
2603 NodeOutput* channel = (NodeOutput*)fOutputs.ItemAtFast(i); local
2616 NodeInput* channel = (NodeInput*)fInputs.ItemAtFast(i); local
2629 NodeInput* channel = (NodeInput*)fInputs.ItemAtFast(i); local
2652 NodeInput* channel = static_cast<NodeInput*>(data); local
2661 NodeOutput* channel = static_cast<NodeOutput*>(data); local
[all...]
/haiku/headers/os/drivers/
H A DISA.h56 long channel, // dma channel to use
63 long channel, // channel number to use
69 status_t (*lock_isa_dma_channel) (long channel);
70 status_t (*unlock_isa_dma_channel) (long channel);
/haiku/src/add-ons/media/media-add-ons/multi_audio/
H A DMultiAudioNode.cpp421 PRINT(("NodeRegistered(): adding a channel\n"));
483 PRINT(("NodeRegistered(): adding a channel\n"));
571 node_input *channel = _FindInput(dest);
572 if (channel == NULL)
575 if (!format_is_compatible(*format, channel->fPreferredFormat))
578 format->SpecializeTo(&channel->fPreferredFormat);
593 node_input* channel = (node_input*)fInputs.ItemAt(*cookie);
594 *_input = channel->fInput;
597 channel->fInput.format.u.raw_audio.format));
655 node_input* channel local
697 node_input* channel = _FindInput(where); local
728 node_input* channel = _FindInput(where); local
748 node_input* channel = _FindInput(consumer); local
814 node_output* channel = _FindOutput(output); local
855 node_output* channel = (node_output*)fOutputs.ItemAt(*cookie); local
880 node_output* channel = _FindOutput(forSource); local
929 node_output* channel = _FindOutput(what); local
968 node_output* channel = _FindOutput(source); local
1028 node_output* channel = _FindOutput(what); local
1058 node_output* channel = _FindOutput(what); local
1104 node_output* channel = _FindOutput(what); local
1493 node_input* channel = (node_input*)fInputs.ItemAt(i); local
1545 node_output* channel = (node_output*)fOutputs.ItemAt(i); local
2067 _AllocateBuffers(node_output &channel) argument
2209 node_output* channel = NULL; local
2227 node_input* channel = NULL; local
2245 node_input* channel = NULL; local
[all...]
/haiku/headers/os/midi2/
H A DMidiConsumer.h56 uchar channel, uchar note, uchar velocity, bigtime_t time);
59 uchar channel, uchar note, uchar velocity, bigtime_t time);
62 uchar channel, uchar note, uchar pressure, bigtime_t time);
65 uchar channel, uchar controlNumber, uchar controlValue,
69 uchar channel, uchar programNumber, bigtime_t time);
72 uchar channel, uchar pressure, bigtime_t time);
75 uchar channel, uchar lsb, uchar msb, bigtime_t time);
H A DMidiProducer.h68 uchar channel, uchar note, uchar velocity,
72 uchar channel, uchar note, uchar velocity,
76 uchar channel, uchar note, uchar pressure,
80 uchar channel, uchar controlNumber, uchar controlValue,
84 uchar channel, uchar programNumber, bigtime_t time = 0) const;
87 uchar channel, uchar pressure, bigtime_t time = 0) const;
90 uchar channel, uchar lsb, uchar msb, bigtime_t time = 0) const;
/haiku/src/add-ons/media/media-add-ons/mixer/
H A DMixerInput.h40 int GetInputChannelType(int channel);
41 void SetInputChannelGain(int channel, float gain);
42 float GetInputChannelGain(int channel);
44 // The destinations for each channel
45 void AddInputChannelDestination(int channel,
47 void RemoveInputChannelDestination(int channel,
49 bool HasInputChannelDestination(int channel,
141 // Print this error for the first channel only.
/haiku/src/add-ons/kernel/file_systems/netfs/client/
H A DSendReceiveRequest.h38 ReceiveRequest(RequestChannel* channel, SpecificRequest** _request) argument
41 status_t error = channel->ReceiveRequest(&request);

Completed in 123 milliseconds

1234567