Searched refs:Channel (Results 1 - 25 of 30) sorted by relevance

12

/haiku/src/add-ons/kernel/file_systems/netfs/shared/
H A DChannel.cpp0 // Channel.cpp
3 #include "Channel.h"
6 Channel::Channel() function in class:Channel
11 Channel::~Channel()
H A DAbstractConnection.cpp7 #include "Channel.h"
84 AbstractConnection::AddDownStreamChannel(Channel* channel)
93 AbstractConnection::AddUpStreamChannel(Channel* channel)
113 Channel*
123 AbstractConnection::GetUpStreamChannel(Channel** channel, bigtime_t timeout)
149 AbstractConnection::PutUpStreamChannel(Channel* channel)
161 Channel*& target = fUpStreamChannels.ElementAt(fFreeUpStreamChannels);
H A DPortChannel.cpp14 : Channel(),
28 : Channel(),
40 : Channel(),
H A DPortConnection.cpp44 PortConnection::Init(Channel* channel, int32 upStreamChannels,
47 ObjectDeleter<Channel> deleter(channel);
145 Channel* channel = DownStreamChannelAt(0);
H A DInsecureConnection.cpp84 Channel* channel = new(std::nothrow) InsecureChannel(fd);
132 Channel* channel;
320 Channel** _channel)
337 Channel* channel = new(std::nothrow) InsecureChannel(fd);
348 InsecureConnection::_SendErrorReply(Channel* channel, status_t error)
H A DRequestConnection.cpp7 #include "Channel.h"
31 status_t Init(RequestConnection* connection, Channel* channel,
199 Channel* channel = NULL;
H A DRequestChannel.cpp14 #include "Channel.h"
29 ChannelWriter(Channel* channel, void* buffer, int32 bufferSize)
71 Channel* fChannel;
141 RequestChannel::RequestChannel(Channel* channel)
H A DInsecureChannel.cpp23 : Channel(),
/haiku/src/add-ons/kernel/file_systems/netfs/headers/shared/
H A DChannel.h0 // Channel.h
8 class Channel { class
10 Channel();
13 virtual ~Channel();
H A DAbstractConnection.h23 status_t AddDownStreamChannel(Channel* channel);
24 status_t AddUpStreamChannel(Channel* channel);
27 virtual Channel* DownStreamChannelAt(int32 index) const;
29 virtual status_t GetUpStreamChannel(Channel** channel,
31 virtual status_t PutUpStreamChannel(Channel* channel);
34 typedef Vector<Channel*> ChannelVector;
H A DRequestChannel.h8 class Channel;
13 RequestChannel(Channel* channel);
27 Channel* fChannel;
H A DConnection.h8 class Channel;
24 virtual Channel* DownStreamChannelAt(int32 index) const = 0;
26 virtual status_t GetUpStreamChannel(Channel** channel,
28 virtual status_t PutUpStreamChannel(Channel* channel) = 0;
H A DInsecureConnection.h28 uint16 port, Channel** channel);
30 status_t _SendErrorReply(Channel* channel,
H A DInsecureChannel.h6 #include "Channel.h"
10 class InsecureChannel : public Channel {
H A DPortChannel.h8 #include "Channel.h"
10 class PortChannel : public Channel {
H A DPortConnection.h17 status_t Init(Channel* channel, int32 upStreamChannels,
/haiku/src/add-ons/media/media-add-ons/usb_vision/
H A DTunerLocale.h17 class Channel class in namespace:Locale
22 Channel(string &str, uint32 frequency);
27 typedef vector<Channel> Channels;
28 typedef vector<Channel>::iterator ChannelsIterator;
43 const Channel &GetChannel(int idx);
H A DChannels.cpp22 struct Channel{ struct
27 Channel Channels_US_Air[] = {
43 Channel Channels_US_Cable[] = {
70 Channel Channels_US_Cable_HRC[] = {
97 Channel Japan_Air[]={
112 Channel Japan_Cable[]={
223 Channel Freq
282 Channel UK_Air[] = {
301 Channel Freq
396 Channel Fre
[all...]
H A DTunerLocale.cpp20 Channel::Channel(string &str, uint32 frequency): function in class:Channel
25 const string &Channel::Name() const
29 const uint32 Channel::Frequency()
75 Channel channel(str, 0);
125 const Channel &TunerLocale::GetChannel(int idx)
/haiku/src/add-ons/kernel/drivers/audio/echo/generic/
H A DCEchoGals_mixer.cpp457 Status = GetAudioMonitor( pMixerFunction->Channel.wChannel,
467 Status = SetAudioMonitor( pMixerFunction->Channel.wChannel,
571 GetAudioMonitorMute( pMixerFunction->Channel.wChannel,
582 SetAudioMonitorMute( pMixerFunction->Channel.wChannel,
591 GetAudioMonitorPan( pMixerFunction->Channel.wChannel,
603 SetAudioMonitorPan( pMixerFunction->Channel.wChannel,
802 nCard = pMixerFunction->Channel.wCardId;
806 if ( nCard != pMixerFunction->Channel.wCardId )
812 pMixerFunction->Channel.wCardId) );
887 if ( (pMF->Channel
[all...]
H A DMixerXface.h207 MIXER_AUDIO_CHANNEL Channel; // Which channel to service member in struct:tMIXER_FUNCTION
/haiku/src/kits/media/legacy/
H A DOldAudioModule.h72 virtual BMediaChannel* Channel();
105 virtual BMediaChannel* Channel();
126 virtual BMediaChannel* Channel();
H A DOldAudioModule.cpp247 BDACRenderer::Channel() function in class:BDACRenderer
351 BAudioFileStream::Channel() function in class:BAudioFileStream
408 BADCSource::Channel() function in class:BADCSource
/haiku/src/add-ons/kernel/drivers/audio/usb/
H A DAudioControlInterface.cpp553 TRACE(UAC, "Channel bitmap size:%d\n", controlSize);
626 FeatureUnit::HasControl(int32 Channel, uint32 Control) argument
628 if (Channel >= fControlBitmaps.Count()) {
630 "for channel %d\n", Control, Channel);
634 return (Control & fControlBitmaps[Channel]) != 0;
639 FeatureUnit::NormalizeAndTraceChannel(int32 Channel) argument
641 if (Channel >= fControlBitmaps.Count()) {
642 TRACE(ERR, "Out of limits error of tracing channel %d\n", Channel);
668 if (Channel == 0)
669 TRACE(UAC, "Master channel bitmap:%#x\n", fControlBitmaps[Channel]);
[all...]
H A DAudioControlInterface.h166 bool HasControl(int32 Channel, uint32 Control);
169 void NormalizeAndTraceChannel(int32 Channel);

Completed in 153 milliseconds

12