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

1234567891011

/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/test/netfs/shared/
H A DPortConnection.cpp44 PortConnection::Init(Channel* channel, int32 upStreamChannels, argument
47 ObjectDeleter<Channel> deleter(channel);
51 // add the channel
52 error = AddDownStreamChannel(channel);
78 // create a client channel
79 PortChannel* channel;
80 error = _CreateChannel(&channel);
83 // add it as up stream channel
84 error = AddUpStreamChannel(channel);
86 delete channel;
144 Channel* channel = DownStreamChannelAt(0); local
190 PortChannel* channel = (info ? new(nothrow) PortChannel(info, inverse) local
[all...]
H A DInsecureConnection.cpp81 // create the initial channel
82 Channel* channel = new(nothrow) InsecureChannel(fd); local
83 if (!channel) {
88 error = AddDownStreamChannel(channel);
90 delete channel;
129 // open the initial channel
130 Channel* channel; local
131 error = _OpenClientChannel(serverAddr, port, &channel);
134 error = AddUpStreamChannel(channel);
136 delete channel;
186 InsecureChannel* channel local
335 Channel* channel = new(nothrow) InsecureChannel(fd); local
346 _SendErrorReply(Channel* channel, status_t error) argument
[all...]
H A DRequestHandler.cpp20 RequestHandler::HandleRequest(Request* request, RequestChannel* channel) argument
24 status_t error = fChannels.Set(channel);
/haiku-fatelf/src/apps/midiplayer/
H A DSynthBridge.h40 uchar channel, uchar note, uchar velocity, bigtime_t time);
43 uchar channel, uchar note, uchar velocity, bigtime_t time);
46 uchar channel, uchar note, uchar pressure, bigtime_t time);
49 uchar channel, uchar controlNumber, uchar controlValue,
53 uchar channel, uchar programNumber, bigtime_t time);
56 uchar channel, uchar pressure, bigtime_t time);
59 uchar channel, uchar lsb, uchar msb, bigtime_t time);
/haiku-fatelf/src/kits/midi/
H A DMidiGlue.cpp29 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
28 NoteOff( uchar channel, uchar note, uchar velocity, bigtime_t time) argument
36 NoteOn( uchar channel, uchar note, uchar velocity, bigtime_t time) argument
44 KeyPressure( uchar channel, uchar note, uchar pressure, bigtime_t time) argument
52 ControlChange( uchar channel, uchar controlNumber, uchar controlValue, bigtime_t time) argument
61 ProgramChange( uchar channel, uchar programNumber, bigtime_t time) argument
69 ChannelPressure( uchar channel, uchar pressure, bigtime_t time) argument
77 PitchBend( uchar channel, uchar lsb, uchar msb, bigtime_t time) argument
122 NoteOff( uchar channel, uchar note, uchar velocity, bigtime_t time) argument
130 NoteOn( uchar channel, uchar note, uchar velocity, bigtime_t time) argument
138 KeyPressure( uchar channel, uchar note, uchar pressure, bigtime_t time) argument
147 ControlChange( uchar channel, uchar controlNumber, uchar controlValue, bigtime_t time) argument
156 ProgramChange( uchar channel, uchar programNumber, bigtime_t time) argument
165 ChannelPressure( uchar channel, uchar pressure, bigtime_t time) argument
173 PitchBend( uchar channel, uchar lsb, uchar msb, bigtime_t time) argument
[all...]
H A DMidi.cpp63 BMidi::NoteOff(uchar channel, uchar note, uchar velocity, uint32 time) argument
70 BMidi::NoteOn(uchar channel, uchar note, uchar velocity, uint32 time) argument
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) argument
100 BMidi::ChannelPressure(uchar channel, uchar pressure, uint32 time) argument
107 BMidi::PitchBend(uchar channel, uchar lsb, uchar msb, uint32 time) argument
144 for (uchar channel = 1; channel <= 16; ++channel) {
77 KeyPressure( uchar channel, uchar note, uchar pressure, uint32 time) argument
85 ControlChange( uchar channel, uchar controlNumber, uchar controlValue, uint32 time) argument
263 SprayNoteOff( uchar channel, uchar note, uchar velocity, uint32 time) const argument
272 SprayNoteOn( uchar channel, uchar note, uchar velocity, uint32 time) const argument
281 SprayKeyPressure( uchar channel, uchar note, uchar pressure, uint32 time) const argument
290 SprayControlChange( uchar channel, uchar controlNumber, uchar controlValue, uint32 time) const argument
300 SprayProgramChange( uchar channel, uchar programNumber, uint32 time) const argument
309 SprayChannelPressure( uchar channel, uchar pressure, uint32 time) const argument
318 SprayPitchBend( uchar channel, uchar lsb, uchar msb, uint32 time) const argument
[all...]
H A DMidiSynth.cpp96 BMidiSynth::MuteChannel(int16 channel, bool do_mute) argument
110 BMidiSynth::SoloChannel(int16 channel, bool do_solo) argument
160 uchar channel, uchar note, uchar velocity, uint32 time)
163 be_synth->fSynth->NoteOff(channel, note + fTranspose, velocity, time);
169 uchar channel, uchar note, uchar velocity, uint32 time)
172 be_synth->fSynth->NoteOn(channel, note + fTranspose, velocity, time);
178 uchar channel, uchar note, uchar pressure, uint32 time)
182 channel, note + fTranspose, pressure, time);
188 uchar channel, uchar controlNumber, uchar controlValue, uint32 time)
192 channel, controlNumbe
159 NoteOff( uchar channel, uchar note, uchar velocity, uint32 time) argument
168 NoteOn( uchar channel, uchar note, uchar velocity, uint32 time) argument
177 KeyPressure( uchar channel, uchar note, uchar pressure, uint32 time) argument
187 ControlChange( uchar channel, uchar controlNumber, uchar controlValue, uint32 time) argument
197 ProgramChange( uchar channel, uchar programNumber, uint32 time) argument
206 ChannelPressure(uchar channel, uchar pressure, uint32 time) argument
214 PitchBend(uchar channel, uchar lsb, uchar msb, uint32 time) argument
[all...]
H A DMidiGlue.h31 uchar channel, uchar note, uchar velocity, bigtime_t time);
34 uchar channel, uchar note, uchar velocity, bigtime_t time);
37 uchar channel, uchar note, uchar pressure, bigtime_t time);
40 uchar channel, uchar controlNumber, uchar controlValue,
44 uchar channel, uchar programNumber, bigtime_t time);
47 uchar channel, uchar pressure, bigtime_t time);
50 uchar channel, uchar lsb, uchar msb, bigtime_t time);
74 uchar channel, uchar note, uchar velocity, bigtime_t time);
77 uchar channel, uchar note, uchar velocity, bigtime_t time);
80 uchar channel, ucha
[all...]
/haiku-fatelf/src/libs/print/libgutenprint/include/gutenprint/
H A Dchannel.h2 * "$Id: channel.h,v 1.6 2005/07/03 22:13:36 rlk Exp $"
29 * @file gutenprint/channel.h
47 extern void stp_channel_reset_channel(stp_vars_t *v, int channel);
49 extern void stp_channel_add(stp_vars_t *v, unsigned channel,
51 extern double stp_channel_get_value(stp_vars_t *v, unsigned channel,
66 extern void stp_channel_set_black_channel(stp_vars_t *v, int channel);
68 extern void stp_channel_set_gloss_channel(stp_vars_t *v, int channel);
72 extern void stp_channel_set_curve(stp_vars_t *v, int channel,
74 extern const stp_curve_t *stp_channel_get_curve(stp_vars_t *v, int channel);
/haiku-fatelf/src/tests/kits/midi/midi_player/
H A DMidiDelay.h44 virtual void NoteOff(uchar channel,
49 virtual void NoteOn(uchar channel,
54 virtual void KeyPressure(uchar channel,
59 virtual void ControlChange(uchar channel,
64 virtual void ProgramChange(uchar channel,
68 virtual void ChannelPressure(uchar channel,
72 virtual void PitchBend(uchar channel,
/haiku-fatelf/src/tests/kits/midi/midi_player_replacement/
H A DMidiDelay.h44 virtual void NoteOff(uchar channel,
49 virtual void NoteOn(uchar channel,
54 virtual void KeyPressure(uchar channel,
59 virtual void ControlChange(uchar channel,
64 virtual void ProgramChange(uchar channel,
68 virtual void ChannelPressure(uchar channel,
72 virtual void PitchBend(uchar channel,
/haiku-fatelf/headers/os/midi/
H A DMidiSynth.h28 void MuteChannel(int16 channel, bool do_mute);
31 void SoloChannel(int16 channel, bool do_solo);
43 uchar channel, uchar note, uchar velocity, uint32 time = B_NOW);
46 uchar channel, uchar note, uchar velocity, uint32 time = B_NOW);
49 uchar channel, uchar note, uchar pressure, uint32 time = B_NOW);
52 uchar channel, uchar controlNumber, uchar controlValue,
56 uchar channel, uchar programNumber, uint32 time = B_NOW);
59 uchar channel, uchar pressure, uint32 time = B_NOW);
62 uchar channel, uchar lsb, uchar msb, uint32 time = B_NOW);
H A DMidi.h21 uchar channel, uchar note, uchar velocity, uint32 time = B_NOW);
24 uchar channel, uchar note, uchar velocity, uint32 time = B_NOW);
27 uchar channel, uchar note, uchar pressure, uint32 time = B_NOW);
30 uchar channel, uchar controlNumber, uchar controlValue,
34 uchar channel, uchar programNumber, uint32 time = B_NOW);
37 uchar channel, uchar pressure, uint32 time = B_NOW);
40 uchar channel, uchar lsb, uchar msb, uint32 time = B_NOW);
69 uchar channel, uchar note, uchar velocity, uint32 time) const;
72 uchar channel, uchar note, uchar velocity, uint32 time) const;
75 uchar channel, ucha
[all...]
/haiku-fatelf/src/add-ons/kernel/file_systems/netfs/server/
H A DPortConnectionListener.cpp45 PortChannel* channel = NULL;
71 // create the initial channel
72 channel = new(std::nothrow) PortChannel(&request.channelInfo, true);
73 if (!channel)
75 if (channel->InitCheck() != B_OK) {
76 delete channel;
77 channel = NULL;
79 } while (!channel);
83 delete channel;
86 status_t error = connection->Init(channel, upStreamChannel
[all...]
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/test/netfs/server/
H A DPortConnectionListener.cpp41 PortChannel* channel = NULL;
67 // create the initial channel
68 channel = new(nothrow) PortChannel(&request.channelInfo, true);
69 if (!channel)
71 if (channel->InitCheck() != B_OK) {
72 delete channel;
73 channel = NULL;
75 } while (!channel);
79 delete channel;
82 status_t error = connection->Init(channel, upStreamChannel
[all...]
/haiku-fatelf/src/add-ons/kernel/file_systems/netfs/shared/
H A DInsecureConnection.cpp83 // create the initial channel
84 Channel* channel = new(std::nothrow) InsecureChannel(fd); local
85 if (!channel) {
90 error = AddDownStreamChannel(channel);
92 delete channel;
131 // open the initial channel
132 Channel* channel; local
133 error = _OpenClientChannel(serverAddr, port, &channel);
136 error = AddUpStreamChannel(channel);
138 delete channel;
188 InsecureChannel* channel local
337 Channel* channel = new(std::nothrow) InsecureChannel(fd); local
348 _SendErrorReply(Channel* channel, status_t error) argument
[all...]
H A DRequestHandler.cpp20 RequestHandler::HandleRequest(Request* request, RequestChannel* channel) argument
24 status_t error = fChannels.Set(channel);
/haiku-fatelf/src/add-ons/kernel/generic/ata_adapter/
H A Data_adapter.cpp47 set_channel(ata_adapter_channel_info *channel, ata_channel ataChannel) argument
49 channel->ataChannel = ataChannel;
54 ata_adapter_write_command_block_regs(ata_adapter_channel_info *channel, argument
57 pci_device_module_info *pci = channel->pci;
58 pci_device *device = channel->device;
61 uint16 ioaddr = channel->command_block_base;
63 if (channel->lost)
84 ata_adapter_read_command_block_regs(ata_adapter_channel_info *channel, argument
87 pci_device_module_info *pci = channel->pci;
88 pci_device *device = channel
108 ata_adapter_get_altstatus(ata_adapter_channel_info *channel) argument
122 ata_adapter_write_device_control(ata_adapter_channel_info *channel, uint8 val) argument
140 ata_adapter_write_pio(ata_adapter_channel_info *channel, uint16 *data, int count, bool force_16bit) argument
168 ata_adapter_read_pio(ata_adapter_channel_info *channel, uint16 *data, int count, bool force_16bit) argument
198 ata_adapter_channel_info *channel = (ata_adapter_channel_info *)arg; local
239 ata_adapter_prepare_dma(ata_adapter_channel_info *channel, const physical_entry *sgList, size_t sgListCount, bool writeToDevice) argument
294 ata_adapter_start_dma(ata_adapter_channel_info *channel) argument
315 ata_adapter_finish_dma(ata_adapter_channel_info *channel) argument
354 ata_adapter_channel_info *channel; local
456 ata_adapter_uninit_channel(ata_adapter_channel_info *channel) argument
474 ata_adapter_channel_removed(ata_adapter_channel_info *channel) argument
[all...]
/haiku-fatelf/src/add-ons/kernel/generic/ide_adapter/
H A Dide_adapter.cpp41 set_channel(ide_adapter_channel_info *channel, ide_channel ideChannel) argument
43 channel->ideChannel = ideChannel;
48 ide_adapter_write_command_block_regs(ide_adapter_channel_info *channel, argument
51 pci_device_module_info *pci = channel->pci;
52 pci_device *device = channel->device;
55 uint16 ioaddr = channel->command_block_base;
57 if (channel->lost)
78 ide_adapter_read_command_block_regs(ide_adapter_channel_info *channel, argument
81 pci_device_module_info *pci = channel->pci;
82 pci_device *device = channel
102 ide_adapter_get_altstatus(ide_adapter_channel_info *channel) argument
116 ide_adapter_write_device_control(ide_adapter_channel_info *channel, uint8 val) argument
134 ide_adapter_write_pio(ide_adapter_channel_info *channel, uint16 *data, int count, bool force_16bit) argument
162 ide_adapter_read_pio(ide_adapter_channel_info *channel, uint16 *data, int count, bool force_16bit) argument
192 ide_adapter_channel_info *channel = (ide_adapter_channel_info *)arg; local
220 ide_adapter_prepare_dma(ide_adapter_channel_info *channel, const physical_entry *sgList, size_t sgListCount, bool writeToDevice) argument
266 ide_adapter_start_dma(ide_adapter_channel_info *channel) argument
286 ide_adapter_finish_dma(ide_adapter_channel_info *channel) argument
338 ide_adapter_channel_info *channel; local
439 ide_adapter_uninit_channel(ide_adapter_channel_info *channel) argument
457 ide_adapter_channel_removed(ide_adapter_channel_info *channel) argument
[all...]
/haiku-fatelf/headers/os/drivers/
H A DISA.h61 long channel, /* dma channel to use */
68 long channel, /* channel # to use */
73 status_t (*lock_isa_dma_channel) (long channel);
74 status_t (*unlock_isa_dma_channel) (long channel);
/haiku-fatelf/src/add-ons/kernel/file_systems/netfs/headers/shared/
H A DAbstractConnection.h23 status_t AddDownStreamChannel(Channel* channel);
24 status_t AddUpStreamChannel(Channel* channel);
29 virtual status_t GetUpStreamChannel(Channel** channel,
31 virtual status_t PutUpStreamChannel(Channel* channel);
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/test/netfs/headers/shared/
H A DAbstractConnection.h23 status_t AddDownStreamChannel(Channel* channel);
24 status_t AddUpStreamChannel(Channel* channel);
29 virtual status_t GetUpStreamChannel(Channel** channel,
31 virtual status_t PutUpStreamChannel(Channel* channel);
/haiku-fatelf/src/system/boot/platform/raspberrypi_arm/
H A Dmailbox.cpp42 write_mailbox(uint8 channel, uint32 value) argument
49 write_mailbox_reg(ARM_MAILBOX_WRITE, value | channel);
55 read_mailbox(uint8 channel, uint32& value) argument
63 if ((value & ARM_MAILBOX_CHANNEL_MASK) != channel) {
/haiku-fatelf/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
503 channel_data *channel = channelCookie; local
521 channel_data *channel = channelCookie; local
529 channel_data *channel = channelCookie; local
537 channel_data *channel = channelCookie; local
565 channel_data *channel = channelCookie; local
587 channel_data *channel = channelCookie; local
601 channel_data *channel = channelCookie; local
618 channel_data *channel = channelCookie; local
646 channel_data *channel = channelCookie; local
675 channel_data *channel = channelCookie; local
733 channel_data *channel = channelCookie; local
753 channel_data *channel = channelCookie; local
796 channel_data *channel = controller->channel[i]; local
[all...]
/haiku-fatelf/src/add-ons/kernel/busses/ide/silicon_image_3112/
H A Dsilicon_image_3112.c23 #define CHANNEL_MODULE_NAME "busses/ide/silicon_image_3112/channel/v1"
74 struct channel_data *channel[4]; // XXX only for interrupt workaround member in struct:controller_data
310 controller->channel[i] = 0;
377 // publish channel nodes
385 // private data to identify channel
417 channel_data *channel; local
424 channel = malloc(sizeof(channel_data));
425 if (!channel)
446 TRACE("channel name: %s\n", kControllerChannelData[channelIndex].name);
448 TRACE("channel
507 channel_data *channel = channelCookie; local
529 channel_data *channel = channelCookie; local
537 channel_data *channel = channelCookie; local
545 channel_data *channel = channelCookie; local
573 channel_data *channel = channelCookie; local
595 channel_data *channel = channelCookie; local
609 channel_data *channel = channelCookie; local
626 channel_data *channel = channelCookie; local
654 channel_data *channel = channelCookie; local
683 channel_data *channel = channelCookie; local
741 channel_data *channel = channelCookie; local
761 channel_data *channel = channelCookie; local
817 channel_data *channel = controller->channel[i]; local
[all...]

Completed in 137 milliseconds

1234567891011