Searched refs:channel (Results 126 - 150 of 1333) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/webrtc/tools/e2e_quality/audio/
H A Daudio_e2e_harness.cc48 int channel = base->CreateChannel(); local
49 ASSERT_NE(-1, channel);
52 new VoiceChannelTransport(network, channel));
68 ASSERT_EQ(0, codec->SetSendCodec(channel, codec_params));
93 ASSERT_EQ(0, base->StartReceive(channel));
94 ASSERT_EQ(0, base->StartPlayout(channel));
95 ASSERT_EQ(0, base->StartSend(channel));
/external/e2fsprogs/lib/ext2fs/
H A Ddosio.c54 static errcode_t dos_open(const char *dev, int flags, io_channel *channel);
55 static errcode_t dos_close(io_channel channel);
56 static errcode_t dos_set_blksize(io_channel channel, int blksize);
57 static errcode_t dos_read_blk(io_channel channel, unsigned long block,
59 static errcode_t dos_write_blk(io_channel channel, unsigned long block,
61 static errcode_t dos_flush(io_channel channel);
179 static errcode_t dos_open(const char *dev, int flags, io_channel *channel) argument
224 *channel = alloc_io_channel(active);
225 if (!*channel)
349 *channel
356 dos_close(io_channel channel) argument
364 dos_set_blksize(io_channel channel, int blksize) argument
371 dos_read_blk(io_channel channel, unsigned long block, int count, void *buf) argument
408 dos_write_blk(io_channel channel, unsigned long block, int count, const void *buf) argument
451 dos_flush(io_channel channel) argument
[all...]
/external/chromium_org/third_party/webrtc/voice_engine/
H A Dvoe_volume_control_impl.cc15 #include "webrtc/voice_engine/channel.h"
232 int VoEVolumeControlImpl::SetInputMute(int channel, bool enable) argument
235 "SetInputMute(channel=%d, enable=%d)", channel, enable);
242 if (channel == -1)
247 // Mute after demultiplexing <=> affects one channel only
248 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
249 voe::Channel* channelPtr = ch.channel();
253 "SetInputMute() failed to locate channel");
259 int VoEVolumeControlImpl::GetInputMute(int channel, boo argument
309 GetSpeechOutputLevel(int channel, unsigned int& level) argument
359 GetSpeechOutputLevelFullRange(int channel, unsigned int& level) argument
390 SetChannelOutputVolumeScaling(int channel, float scaling) argument
419 GetChannelOutputVolumeScaling(int channel, float& scaling) argument
440 SetOutputVolumePan(int channel, float left, float right) argument
489 GetOutputVolumePan(int channel, float& left, float& right) argument
[all...]
H A Dvoe_audio_processing_impl.h34 virtual int SetRxNsStatus(int channel,
38 virtual int GetRxNsStatus(int channel, bool& enabled, NsModes& mode);
40 virtual int SetRxAgcStatus(int channel,
44 virtual int GetRxAgcStatus(int channel, bool& enabled, AgcModes& mode);
46 virtual int SetRxAgcConfig(int channel, AgcConfig config);
48 virtual int GetRxAgcConfig(int channel, AgcConfig& config);
66 virtual int RegisterRxVadObserver(int channel,
69 virtual int DeRegisterRxVadObserver(int channel);
71 virtual int VoiceActivityIndicator(int channel);
H A Dvoe_dtmf_impl.cc15 #include "webrtc/voice_engine/channel.h"
55 int VoEDtmfImpl::SendTelephoneEvent(int channel, argument
62 "SendTelephoneEvent(channel=%d, eventCode=%d, outOfBand=%d,"
64 channel, eventCode, (int)outOfBand, lengthMs, attenuationDb);
70 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
71 voe::Channel* channelPtr = ch.channel();
75 "SendTelephoneEvent() failed to locate channel");
127 // channel object must still parse out the Dtmf events (0-15) from
140 // channel object to determine if the queued Dtmf e vent shall also
153 int VoEDtmfImpl::SetSendTelephoneEventPayloadType(int channel, argument
175 GetSendTelephoneEventPayloadType(int channel, unsigned char& type) argument
261 SetDtmfPlayoutStatus(int channel, bool enable) argument
283 GetDtmfPlayoutStatus(int channel, bool& enabled) argument
[all...]
/external/chromium_org/third_party/webrtc/examples/android/media_demo/jni/
H A Dvideo_engine_jni.cc192 int channel; local
193 CHECK(base->CreateChannel(channel) == 0, "Failed to create channel");
194 CreateTransport(channel);
195 return channel;
198 int DeleteChannel(int channel) { argument
199 if (base->DeleteChannel(channel) != 0) {
202 DeleteTransport(channel);
206 webrtc::test::VideoChannelTransport* GetTransport(int channel) { argument
207 ChannelTransports::iterator found = channel_transports_.find(channel);
214 RegisterObserver(int channel, jobject j_observer) argument
223 DeregisterObserver(int channel) argument
235 RegisterExternalReceiveCodec(jint channel, jint pl_type, jobject decoder, bool internal_source) argument
245 DeRegisterExternalReceiveCodec(jint channel, jint pl_type) argument
273 CreateTransport(int channel) argument
279 DeleteTransport(int channel) argument
[all...]
H A Dvoice_engine_jni.cc93 int channel = base->CreateChannel(); local
94 if (channel == -1) {
97 CreateTransport(channel);
98 return channel;
101 int DeleteChannel(int channel) { argument
102 if (base->DeleteChannel(channel) != 0) {
105 DeleteTransport(channel);
109 webrtc::test::VoiceChannelTransport* GetTransport(int channel) { argument
110 ChannelTransports::iterator found = channel_transports_.find(channel);
133 void CreateTransport(int channel) { argument
139 DeleteTransport(int channel) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_format_parse.py53 '''Describe the channel of a color channel.'''
132 for channel in self.channels:
133 size += channel.size
138 for channel in self.channels:
139 if channel.size:
147 for channel in self.channels[1:]:
148 if channel.size and (channel.size != ref_channel.size or channel
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_format_parse.py53 '''Describe the channel of a color channel.'''
132 for channel in self.channels:
133 size += channel.size
138 for channel in self.channels:
139 if channel.size:
147 for channel in self.channels[1:]:
148 if channel.size and (channel.size != ref_channel.size or channel
[all...]
/external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
H A DNettyHttpClient.java23 import io.netty.channel.Channel;
24 import io.netty.channel.ChannelHandlerContext;
25 import io.netty.channel.ChannelInitializer;
26 import io.netty.channel.ChannelOption;
27 import io.netty.channel.ChannelPipeline;
28 import io.netty.channel.SimpleChannelInboundHandler;
29 import io.netty.channel.nio.NioEventLoopGroup;
30 import io.netty.channel.socket.SocketChannel;
31 import io.netty.channel.socket.nio.NioSocketChannel;
69 @Override public void initChannel(SocketChannel channel) throw
137 private final SocketChannel channel; field in class:NettyHttpClient.HttpChannel
142 HttpChannel(SocketChannel channel) argument
[all...]
/external/chromium_org/chrome/browser/media/
H A Dchrome_webrtc_disable_encryption_flag_browsertest.cc21 // NOTE: The test case for each channel will only be exercised when the browser
22 // is actually built for that channel. This is not ideal. One can test manually
23 // by e.g. faking the channel returned in VersionInfo::GetChannel(). It's
25 // detected until a branch has been promoted to another channel. The unit
28 // TODO(grunell): Test the different channel cases for any build.
75 VersionInfo::Channel channel = VersionInfo::GetChannel(); local
76 if (channel == VersionInfo::CHANNEL_UNKNOWN ||
77 channel == VersionInfo::CHANNEL_CANARY ||
78 channel == VersionInfo::CHANNEL_DEV) {
82 if (channel
[all...]
/external/chromium_org/device/bluetooth/
H A Dbluetooth_l2cap_channel_mac.h22 // Creates a new L2CAP channel wrapper with the given |socket| and native
23 // |channel|.
24 // NOTE: The |channel| is expected to already be retained.
26 IOBluetoothL2CAPChannel* channel);
29 // Opens a new L2CAP channel with Channel ID |channel_id| to the target
30 // |device|. Returns the opened channel and sets |status| to kIOReturnSuccess
32 // channel was found). Otherwise, sets |status| to an error status.
47 void OnChannelOpenComplete(IOBluetoothL2CAPChannel* channel,
49 void OnChannelClosed(IOBluetoothL2CAPChannel* channel);
50 void OnChannelDataReceived(IOBluetoothL2CAPChannel* channel,
[all...]
H A Dbluetooth_rfcomm_channel_mac.h22 // Creates a new RFCOMM channel wrapper with the given |socket| and native
23 // |channel|.
24 // NOTE: The |channel| is expected to already be retained.
26 IOBluetoothRFCOMMChannel* channel);
29 // Opens a new RFCOMM channel with Channel ID |channel_id| to the target
30 // |device|. Returns the opened channel and sets |status| to kIOReturnSuccess
32 // channel was found). Otherwise, sets |status| to an error status.
47 void OnChannelOpenComplete(IOBluetoothRFCOMMChannel* channel,
49 void OnChannelClosed(IOBluetoothRFCOMMChannel* channel);
50 void OnChannelDataReceived(IOBluetoothRFCOMMChannel* channel,
[all...]
/external/chromium_org/jingle/notifier/listener/
H A Dnotification_defines.cc20 return channel == other.channel && from == other.from;
62 channel == other.channel &&
68 // |channel| or |data| could hold binary data, so convert all non-ASCII
71 base::EscapeBytesAsInvalidJSONString(channel, true /* put_in_quotes */);
75 "{ channel: " + printable_channel + ", data: " + printable_data + " }";
/external/smack/src/org/xbill/DNS/
H A DClient.java16 Client(SelectableChannel channel, long endTime) throws IOException { argument
22 channel.configureBlocking(false);
23 key = channel.register(selector, SelectionKey.OP_READ);
30 channel.close();
55 key.channel().close();
/external/chromium_org/third_party/libjingle/source/talk/session/media/
H A Dmediarecorder.cc121 bool MediaRecorder::AddChannel(VoiceChannel* channel, argument
125 return InternalAddChannel(channel, false, send_stream, recv_stream,
128 bool MediaRecorder::AddChannel(VideoChannel* channel, argument
132 return InternalAddChannel(channel, true, send_stream, recv_stream,
136 bool MediaRecorder::InternalAddChannel(BaseChannel* channel, argument
141 if (!channel) {
146 if (sinks_.end() != sinks_.find(channel)) {
147 return false; // The channel was added already.
157 sinks_[channel] = sink_pair;
162 void MediaRecorder::RemoveChannel(BaseChannel* channel, argument
174 EnableChannel( BaseChannel* channel, bool enable_send, bool enable_recv, SinkType type) argument
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
H A DDebugGrammarLexer.cs65 state.channel = _channel;
88 state.channel = _channel;
111 state.channel = _channel;
134 state.channel = _channel;
157 state.channel = _channel;
180 state.channel = _channel;
203 state.channel = _channel;
226 state.channel = _channel;
285 state.channel = _channel;
344 state.channel
[all...]
H A DProfileGrammarLexer.cs65 state.channel = _channel;
88 state.channel = _channel;
111 state.channel = _channel;
134 state.channel = _channel;
157 state.channel = _channel;
180 state.channel = _channel;
203 state.channel = _channel;
226 state.channel = _channel;
285 state.channel = _channel;
344 state.channel
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/
H A Dgroup-file-lexer.rb119 channel = ANTLR3::DEFAULT_CHANNEL
128 @state.channel = channel
143 channel = ANTLR3::DEFAULT_CHANNEL
152 @state.channel = channel
167 channel = ANTLR3::DEFAULT_CHANNEL
176 @state.channel = channel
191 channel
[all...]
/external/chromium_org/content/common/gpu/
H A Ddevtools_gpu_instrumentation.cc39 GpuChannel* channel) {
42 channel->gpu_channel_manager()->gpu_devtools_events_dispatcher();
46 (*it)->ProcessEvent(timestamp, phase, channel);
38 DoFireEvent(EventPhase phase, GpuChannel* channel) argument
/external/chromium_org/mojo/embedder/
H A Dchannel_init.cc45 ChannelInfo* channel) {
46 // If |self| was already destroyed, shut the channel down.
48 DestroyChannel(channel);
52 self->channel_info_ = channel;
43 OnCreatedChannel(base::WeakPtr<ChannelInit> self, scoped_refptr<base::TaskRunner> io_thread, ChannelInfo* channel) argument
/external/chromium_org/mojo/system/
H A Dplatform_handle_dispatcher.h32 Channel* channel,
44 virtual void StartSerializeImplNoLock(Channel* channel,
48 Channel* channel,
/external/chromium_org/third_party/webrtc/video_engine/
H A Dvie_rtp_rtcp_impl.h141 int channel, RtcpStatisticsCallback* callback);
143 int channel, RtcpStatisticsCallback* callback);
145 int channel, RtcpStatisticsCallback* callback);
147 int channel, RtcpStatisticsCallback* callback);
149 int channel, StreamDataCountersCallback* callback);
151 int channel, StreamDataCountersCallback* callback);
153 int channel, StreamDataCountersCallback* callback);
155 int channel, StreamDataCountersCallback* callback);
157 int channel, BitrateStatisticsObserver* callback);
159 int channel, BitrateStatisticsObserve
[all...]
/external/libnfc-nci/src/udrv/include/
H A Duamp_api.h45 #define UAMP_CH_HCI_CMD 0 /* HCI Command channel */
46 #define UAMP_CH_HCI_EVT 1 /* HCI Event channel */
47 #define UAMP_CH_HCI_DATA 2 /* HCI ACL Data channel */
52 tUAMP_CH channel; /* UAMP_EVT_RX_READY: channel for which rx occured */ member in union:__anon24392
126 ** channel: UAMP_CH_HCI_ACL, or UAMP_CH_HCI_CMD
131 BT_API UINT16 UAMP_Write(tUAMP_ID amp_id, UINT8 *p_buf, UINT16 num_bytes, tUAMP_CH channel);
157 ** channel: UAMP_CH_HCI_ACL, or UAMP_CH_HCI_EVT
162 BT_API UINT16 UAMP_Read(tUAMP_ID amp_id, UINT8 *p_buf, UINT16 buf_size, tUAMP_CH channel);
/external/qemu/distrib/sdl-1.2.15/src/audio/nds/
H A Dsound9.c27 void SoundSystemInit(u32 rate,u32 buffersize,u8 channel,u8 format) argument
39 soundsystem->channel = channel;

Completed in 5156 milliseconds

1234567891011>>