Searched defs:channel (Results 176 - 200 of 602) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/bot/
H A Dcommitannouncer.py32 from webkitpy.common.config.irc import server, port, channel, nickname namespace
89 connection.join(channel)
185 self.connection.execute_delayed(0, lambda: self.connection.privmsg(channel, self._sanitize_string(message)))
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Ddtlstransport.h70 virtual bool ApplyLocalTransportDescription_w(TransportChannelImpl* channel, argument
98 if (!channel->SetLocalIdentity(identity_)) {
104 return Base::ApplyLocalTransportDescription_w(channel, error_desc);
213 virtual void DestroyTransportChannel(TransportChannelImpl* channel) { argument
216 static_cast<DtlsTransportChannelWrapper*>(channel);
217 TransportChannelImpl* base_channel = dtls_channel->channel();
230 TransportChannelImpl* channel,
234 if (!channel->SetSslRole(secure_role_)) {
235 return BadTransportDescription("Failed to set ssl role for the channel.",
239 if (!channel
229 ApplyNegotiatedTransportDescription_w( TransportChannelImpl* channel, std::string* error_desc) argument
[all...]
H A Dp2ptransport.cc77 void P2PTransport::DestroyTransportChannel(TransportChannelImpl* channel) { argument
78 delete channel;
203 return BadParse("candidate has unknown channel name " + channel_name,
H A Dportallocatorsessionproxy_unittest.cc121 TestSessionChannel* channel = new TestSessionChannel(proxy); local
123 channel->StartGettingPorts();
124 return channel;
137 TestSessionChannel* channel = CreateChannel(); local
138 EXPECT_EQ_WAIT(1, channel->candidates_count(), 1000);
139 EXPECT_EQ(1, channel->ports_count());
140 EXPECT_TRUE(channel->allocation_complete());
141 delete channel;
/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...]
H A Dmediarecorder_unittest.cc32 #include "talk/session/media/channel.h"
173 void TestMediaRecorder(BaseChannel* channel, argument
179 EXPECT_FALSE(recorder->EnableChannel(channel, true, true, SINK_PRE_CRYPTO));
180 EXPECT_FALSE(channel->HasSendSinks(SINK_PRE_CRYPTO));
181 EXPECT_FALSE(channel->HasRecvSinks(SINK_PRE_CRYPTO));
182 EXPECT_FALSE(channel->HasSendSinks(SINK_POST_CRYPTO));
183 EXPECT_FALSE(channel->HasRecvSinks(SINK_POST_CRYPTO));
185 // Add the channel to the recorder.
193 EXPECT_TRUE(recorder->AddChannel(static_cast<VideoChannel*>(channel),
196 EXPECT_TRUE(recorder->AddChannel(static_cast<VoiceChannel*>(channel),
256 TestRecordHeaderAndMedia(BaseChannel* channel, FakeVideoMediaChannel* video_media_channel) argument
[all...]
/external/chromium_org/third_party/libjpeg_turbo/
H A Drdrle.c43 * MAPPEDGRAY - 8 bits, 1 channel colomap
44 * PSEUDOCOLOR - 8 bits, 3 channel colormap
45 * TRUECOLOR - 24 bits, 3 channel colormap
48 * For now, we ignore any alpha channel in the image.
248 char channel; local
260 RLE_CLR_BIT(source->header, RLE_ALPHA); /* don't read the alpha channel */
296 for (channel = 0; channel < source->header.ncolors; channel++) {
298 (colormap[GETJSAMPLE(rle_row[channel][co
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/main/test/
H A Dopus_test.cc101 // Create and connect the channel.
210 void OpusTest::Run(TestPackStereo* channel, int channels, int bitrate, argument
224 channel->reset_payload_size();
296 channel->set_lost_packet(true);
299 channel->set_lost_packet(false);
326 // Send data to the channel. "channel" will handle the loss simulation.
327 channel->SendData(kAudioFrameSpeech, payload_type_, rtp_timestamp_,
369 channel->set_lost_packet(false);
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
H A Dbackground_noise.cc35 for (size_t channel = 0; channel < num_channels_; ++channel) {
36 channel_parameters_[channel].Reset();
125 int32_t BackgroundNoise::Energy(size_t channel) const {
126 assert(channel < num_channels_); argument
127 return channel_parameters_[channel].energy;
130 void BackgroundNoise::SetMuteFactor(size_t channel, int16_t value) {
131 assert(channel < num_channels_);
132 channel_parameters_[channel]
225 SaveParameters(size_t channel, const int16_t* lpc_coefficients, const int16_t* filter_state, int32_t sample_energy, int32_t residual_energy) argument
[all...]
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/test/testAPI/
H A Dtest_api.h46 virtual int SendPacket(int channel, const void *data, int len) { argument
73 virtual int SendRTCPPacket(int channel, const void *data, int len) { argument
/external/chromium_org/third_party/webrtc/modules/video_coding/main/test/
H A Dgeneric_codec_test.h78 virtual int SendPacket(int channel, const void *data, int len);
79 virtual int SendRTCPPacket(int channel, const void *data, int len) {return 0;} argument
/external/chromium_org/third_party/webrtc/video_engine/include/
H A Dvie_base.h15 // - Connect a video channel with a corresponding voice channel for audio/video
165 // Creates a new channel.
168 // Creates a new channel grouped together with |original_channel|. The channel
169 // can both send and receive video. It is assumed the channel is sending
176 // Creates a new channel grouped together with |original_channel|. The channel
182 // Deletes an existing channel and releases the utilized resources.
188 virtual int RegisterCpuOveruseObserver(int channel,
202 RegisterSendSideDelayObserver( int channel, SendSideDelayObserver* observer) argument
[all...]
/external/chromium_org/third_party/webrtc/video_engine/
H A Dvie_render_impl.cc102 // This is a channel.
148 // This is a channel.
150 ViEChannel* channel = cm.Channel(render_id); local
151 if (!channel) {
155 channel->DeregisterFrameCallback(renderer);
283 // This is a channel.
330 // This is a channel.
/external/chromium_org/third_party/webrtc/voice_engine/
H A Dchannel_manager.cc14 #include "webrtc/voice_engine/channel.h"
19 ChannelOwner::ChannelOwner(class Channel* channel) argument
20 : channel_ref_(new ChannelRef(channel)) {}
45 ChannelOwner::ChannelRef::ChannelRef(class Channel* channel) argument
46 : channel(channel), ref_count(1) {}
63 Channel* channel; local
64 Channel::CreateChannel(channel, ++last_channel_id_, instance_id_, config);
65 ChannelOwner channel_owner(channel);
78 if (channels_[i].channel()
[all...]
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...]
H A Dvoe_file_impl.cc17 #include "webrtc/voice_engine/channel.h"
55 int channel,
63 "StartPlayingFileLocally(channel=%d, fileNameUTF8[]=%s, "
66 channel, fileNameUTF8, loop, format, volumeScaling,
74 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
75 voe::Channel* channelPtr = ch.channel();
79 "StartPlayingFileLocally() failed to locate channel");
92 int VoEFileImpl::StartPlayingFileLocally(int channel, argument
100 "StartPlayingFileLocally(channel=%d, stream, format=%d, "
102 channel, forma
54 StartPlayingFileLocally( int channel, const char fileNameUTF8[1024], bool loop, FileFormats format, float volumeScaling, int startPointMs, int stopPointMs) argument
127 StopPlayingFileLocally(int channel) argument
147 IsPlayingFileLocally(int channel) argument
167 StartPlayingFileAsMicrophone(int channel, const char fileNameUTF8[1024], bool loop, bool mixWithMicrophone, FileFormats format, float volumeScaling) argument
247 StartPlayingFileAsMicrophone(int channel, InStream* stream, bool mixWithMicrophone, FileFormats format, float volumeScaling) argument
320 StopPlayingFileAsMicrophone(int channel) argument
349 IsPlayingFileAsMicrophone(int channel) argument
377 StartRecordingPlayout( int channel, const char* fileNameUTF8, CodecInst* compression, int maxSizeBytes) argument
412 StartRecordingPlayout( int channel, OutStream* stream, CodecInst* compression) argument
442 StopRecordingPlayout(int channel) argument
[all...]
H A Dvoe_video_sync_impl.cc15 #include "webrtc/voice_engine/channel.h"
50 int VoEVideoSyncImpl::GetPlayoutTimestamp(int channel, unsigned int& timestamp) argument
53 "GetPlayoutTimestamp(channel=%d, timestamp=?)", channel);
60 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
61 voe::Channel* channel_ptr = ch.channel();
65 "GetPlayoutTimestamp() failed to locate channel");
71 int VoEVideoSyncImpl::SetInitTimestamp(int channel, argument
75 "SetInitTimestamp(channel=%d, timestamp=%lu)",
76 channel, timestam
94 SetInitSequenceNumber(int channel, short sequenceNumber) argument
117 SetMinimumPlayoutDelay(int channel,int delayMs) argument
139 SetInitialPlayoutDelay(int channel, int delay_ms) argument
161 GetDelayEstimate(int channel, int* jitter_buffer_delay_ms, int* playout_buffer_delay_ms) argument
211 GetRtpRtcp(int channel, RtpRtcp** rtpRtcpModule, RtpReceiver** rtp_receiver) argument
[all...]
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...]
/external/chromium_org/third_party/webrtc/voice_engine/test/auto_test/standard/
H A Drtp_rtcp_extensions.cc32 virtual int SendPacket(int channel, const void* data, int len) { argument
57 virtual int SendRTCPPacket(int channel, const void* data, int len) { argument
/external/chromium_org/ui/gfx/
H A Dcolor_analysis_unittest.cc140 // Return true if a color channel is approximately equal to an expected value.
141 bool ChannelApproximatelyEqual(int expected, uint8_t channel) { argument
142 return (abs(expected - static_cast<int>(channel)) <= 1);
313 // Test a bitmap with an alpha channel.
317 // Alpha channel should be ignored for dominant color calculation.
/external/e2fsprogs/lib/ext2fs/
H A Dinode_io.c49 static errcode_t inode_open(const char *name, int flags, io_channel *channel);
50 static errcode_t inode_close(io_channel channel);
51 static errcode_t inode_set_blksize(io_channel channel, int blksize);
52 static errcode_t inode_read_blk(io_channel channel, unsigned long block,
54 static errcode_t inode_write_blk(io_channel channel, unsigned long block,
56 static errcode_t inode_flush(io_channel channel);
57 static errcode_t inode_write_byte(io_channel channel, unsigned long offset,
59 static errcode_t inode_read_blk64(io_channel channel,
61 static errcode_t inode_write_blk64(io_channel channel,
115 static errcode_t inode_open(const char *name, int flags, io_channel *channel) argument
175 inode_close(io_channel channel) argument
196 inode_set_blksize(io_channel channel, int blksize) argument
209 inode_read_blk64(io_channel channel, unsigned long long block, int count, void *buf) argument
229 inode_read_blk(io_channel channel, unsigned long block, int count, void *buf) argument
235 inode_write_blk64(io_channel channel, unsigned long long block, int count, const void *buf) argument
255 inode_write_blk(io_channel channel, unsigned long block, int count, const void *buf) argument
261 inode_write_byte(io_channel channel, unsigned long offset, int size, const void *buf) argument
281 inode_flush(io_channel channel) argument
[all...]
/external/flac/libFLAC/
H A Dmd5.c279 unsigned channel, sample; local
318 for(channel = 0; channel < channels; channel++) {
319 a_word = signal[channel][sample];
349 for(channel = 0; channel < channels; channel++) {
350 a_word = signal[channel][sample];
375 for(channel
[all...]
/external/jpeg/
H A Drdrle.c43 * MAPPEDGRAY - 8 bits, 1 channel colomap
44 * PSEUDOCOLOR - 8 bits, 3 channel colormap
45 * TRUECOLOR - 24 bits, 3 channel colormap
48 * For now, we ignore any alpha channel in the image.
248 char channel; local
260 RLE_CLR_BIT(source->header, RLE_ALPHA); /* don't read the alpha channel */
296 for (channel = 0; channel < source->header.ncolors; channel++) {
298 (colormap[GETJSAMPLE(rle_row[channel][co
[all...]
/external/libvorbis/doc/
H A D04-codec.tex104 configurations, channel mapping configurations and mode
180 multichannel audio with varying channel mapping applications. Vorbis I
181 uses a single mapping type (0), with implicit PCM channel mappings.
204 \item if set, square polar channel mapping is in use:
211 \item the numbers read in the above two steps are channel numbers representing the channel to treat as magnitude and the channel to treat as angle, respectively. If for any coupling step the angle channel number equals the magnitude channel number, the magnitude channel numbe
[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...]

Completed in 5322 milliseconds

1234567891011>>