Searched refs:channel (Results 1 - 25 of 1002) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A D2003-11-19-BitFieldArray.c9 void g_io_channel_init (struct _GIOChannel *channel) { argument
10 channel->partial_write_buf[0];
/external/c-ares/
H A Dares_destroy.c38 void ares_destroy(ares_channel channel) argument
45 if (!channel)
48 list_head = &(channel->all_queries);
60 assert(ares__is_list_empty(&(channel->all_queries)));
63 assert(ares__is_list_empty(&(channel->queries_by_qid[i])));
67 assert(ares__is_list_empty(&(channel->queries_by_timeout[i])));
71 ares__destroy_servers_state(channel);
73 if (channel->domains) {
74 for (i = 0; i < channel->ndomains; i++)
75 free(channel
88 ares__destroy_servers_state(ares_channel channel) argument
[all...]
H A Dares_cancel.c23 * on the given channel. It does NOT kill the channel, use ares_destroy() for
26 void ares_cancel(ares_channel channel) argument
33 list_head = &(channel->all_queries);
45 assert(ares__is_list_empty(&(channel->all_queries)));
48 assert(ares__is_list_empty(&(channel->queries_by_qid[i])));
52 assert(ares__is_list_empty(&(channel->queries_by_timeout[i])));
55 if (!(channel->flags & ARES_FLAG_STAYOPEN))
57 if (channel->servers)
59 for (i = 0; i < channel
[all...]
/external/vboot_reference/scripts/image_signing/sample-test-configs/
H A Densure_sane_lsb-release.config18 canary-channel
19 dogfood-channel
20 beta-channel
21 dev-channel
/external/webrtc/webrtc/voice_engine/
H A Dvoe_rtp_rtcp_impl.h23 int SetRTCPStatus(int channel, bool enable) override;
25 int GetRTCPStatus(int channel, bool& enabled) override;
27 int SetRTCP_CNAME(int channel, const char cName[256]) override;
29 int GetRemoteRTCP_CNAME(int channel, char cName[256]) override;
31 int GetRemoteRTCPData(int channel,
40 int SetLocalSSRC(int channel, unsigned int ssrc) override;
42 int GetLocalSSRC(int channel, unsigned int& ssrc) override;
44 int GetRemoteSSRC(int channel, unsigned int& ssrc) override;
47 int SetSendAudioLevelIndicationStatus(int channel,
50 int SetReceiveAudioLevelIndicationStatus(int channel,
[all...]
H A Dvoe_video_sync_impl.h24 int SetMinimumPlayoutDelay(int channel, int delayMs) override;
26 int GetDelayEstimate(int channel,
30 int GetLeastRequiredDelayMs(int channel) const override;
32 int SetInitTimestamp(int channel, unsigned int timestamp) override;
34 int SetInitSequenceNumber(int channel, short sequenceNumber) override;
36 int GetPlayoutTimestamp(int channel, unsigned int& timestamp) override;
38 int GetRtpRtcp(int channel,
H A Dvoe_codec_impl.h26 int SetSendCodec(int channel, const CodecInst& codec) override;
28 int GetSendCodec(int channel, CodecInst& codec) override;
30 int SetBitRate(int channel, int bitrate_bps) override;
32 int GetRecCodec(int channel, CodecInst& codec) override;
35 int channel,
39 int SetRecPayloadType(int channel, const CodecInst& codec) override;
41 int GetRecPayloadType(int channel, CodecInst& codec) override;
43 int SetFECStatus(int channel, bool enable) override;
45 int GetFECStatus(int channel, bool& enabled) override;
47 int SetVADStatus(int channel,
[all...]
H A Dvoe_volume_control_impl.h30 int SetInputMute(int channel, bool enable) override;
32 int GetInputMute(int channel, bool& enabled) override;
36 int GetSpeechOutputLevel(int channel, unsigned int& level) override;
40 int GetSpeechOutputLevelFullRange(int channel, unsigned int& level) override;
42 int SetChannelOutputVolumeScaling(int channel, float scaling) override;
44 int GetChannelOutputVolumeScaling(int channel, float& scaling) override;
46 int SetOutputVolumePan(int channel, float left, float right) override;
48 int GetOutputVolumePan(int channel, float& left, float& right) override;
H A Dvoe_network_impl.cc18 #include "webrtc/voice_engine/channel.h"
38 int VoENetworkImpl::RegisterExternalTransport(int channel, argument
41 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
42 voe::Channel* channelPtr = ch.channel();
44 LOG_F(LS_ERROR) << "Failed to locate channel: " << channel;
50 int VoENetworkImpl::DeRegisterExternalTransport(int channel) { argument
52 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
53 voe::Channel* channelPtr = ch.channel();
55 LOG_F(LS_ERROR) << "Failed to locate channel
61 ReceivedRTPPacket(int channel, const void* data, size_t length) argument
67 ReceivedRTPPacket(int channel, const void* data, size_t length, const PacketTime& packet_time) argument
92 ReceivedRTCPPacket(int channel, const void* data, size_t length) argument
[all...]
H A Dvoe_network_impl.h22 int RegisterExternalTransport(int channel, Transport& transport) override;
23 int DeRegisterExternalTransport(int channel) override;
25 int ReceivedRTPPacket(int channel, const void* data, size_t length) override;
26 int ReceivedRTPPacket(int channel,
31 int ReceivedRTCPPacket(int channel, const void* data, size_t length) override;
H A Dvoe_file_impl.h23 int StartPlayingFileLocally(int channel,
31 int StartPlayingFileLocally(int channel,
38 int StopPlayingFileLocally(int channel) override;
40 int IsPlayingFileLocally(int channel) override;
44 int StartPlayingFileAsMicrophone(int channel,
51 int StartPlayingFileAsMicrophone(int channel,
57 int StopPlayingFileAsMicrophone(int channel) override;
59 int IsPlayingFileAsMicrophone(int channel) override;
63 int StartRecordingPlayout(int channel,
68 int StartRecordingPlayout(int channel,
[all...]
/external/webrtc/webrtc/modules/audio_coding/neteq/
H A Dsync_buffer_unittest.cc27 for (size_t channel = 0; channel < kChannels; ++channel) {
29 EXPECT_EQ(0, sync_buffer[channel][i]);
58 for (size_t channel = 0; channel < kChannels; ++channel) {
60 new_data[channel][i] = i;
71 for (size_t channel = 0; channel < kChannel
[all...]
H A Ddsp_helper_unittest.cc54 for (int channel = 0; channel < kChannels; ++channel) {
55 input[channel][i] = 1000;
72 for (int channel = 0; channel < kChannels; ++channel) {
73 EXPECT_EQ(1000, input[channel][i]);
78 for (int channel = 0; channel < kChannel
[all...]
/external/e2fsprogs/lib/ext2fs/
H A Dio_manager.c23 errcode_t io_channel_set_options(io_channel channel, const char *opts) argument
28 EXT2_CHECK_MAGIC(channel, EXT2_ET_MAGIC_IO_CHANNEL);
33 if (!channel->manager->set_option)
51 retval = (channel->manager->set_option)(channel, ptr, arg);
60 errcode_t io_channel_write_byte(io_channel channel, unsigned long offset, argument
63 EXT2_CHECK_MAGIC(channel, EXT2_ET_MAGIC_IO_CHANNEL);
65 if (channel->manager->write_byte)
66 return channel->manager->write_byte(channel, offse
72 io_channel_read_blk64(io_channel channel, unsigned long long block, int count, void *data) argument
88 io_channel_write_blk64(io_channel channel, unsigned long long block, int count, const void *data) argument
104 io_channel_discard(io_channel channel, unsigned long long block, unsigned long long count) argument
115 io_channel_zeroout(io_channel channel, unsigned long long block, unsigned long long count) argument
[all...]
H A Dinode_io.c50 static errcode_t inode_open(const char *name, int flags, io_channel *channel);
51 static errcode_t inode_close(io_channel channel);
52 static errcode_t inode_set_blksize(io_channel channel, int blksize);
53 static errcode_t inode_read_blk(io_channel channel, unsigned long block,
55 static errcode_t inode_write_blk(io_channel channel, unsigned long block,
57 static errcode_t inode_flush(io_channel channel);
58 static errcode_t inode_write_byte(io_channel channel, unsigned long offset,
60 static errcode_t inode_read_blk64(io_channel channel,
62 static errcode_t inode_write_blk64(io_channel channel,
114 static errcode_t inode_open(const char *name, int flags, io_channel *channel) argument
174 inode_close(io_channel channel) argument
195 inode_set_blksize(io_channel channel, int blksize) argument
208 inode_read_blk64(io_channel channel, unsigned long long block, int count, void *buf) argument
228 inode_read_blk(io_channel channel, unsigned long block, int count, void *buf) argument
234 inode_write_blk64(io_channel channel, unsigned long long block, int count, const void *buf) argument
254 inode_write_blk(io_channel channel, unsigned long block, int count, const void *buf) argument
260 inode_write_byte(io_channel channel, unsigned long offset, int size, const void *buf) argument
280 inode_flush(io_channel channel) argument
[all...]
/external/webrtc/webrtc/voice_engine/include/
H A Dvoe_codec.h14 // - Voice Activity Detection (VAD) on a per channel basis.
60 // Sets the |codec| for the |channel| to be used for sending.
61 virtual int SetSendCodec(int channel, const CodecInst& codec) = 0;
64 // |channel|.
65 virtual int GetSendCodec(int channel, CodecInst& codec) = 0;
67 // Sets the bitrate on a specified |channel| to the specified value
71 virtual int SetBitRate(int channel, int bitrate_bps) = 0;
73 // Gets the currently received |codec| for a specific |channel|.
74 virtual int GetRecCodec(int channel, CodecInst& codec) = 0;
82 virtual int SetRecPayloadType(int channel, cons
100 SetFECStatus(int channel, bool enable) argument
107 GetFECStatus(int channel, bool& enabled) argument
127 SetOpusMaxPlaybackRate(int channel, int frequency_hz) argument
[all...]
H A Dvoe_volume_control.h72 virtual int SetInputMute(int channel, bool enable) = 0;
75 virtual int GetInputMute(int channel, bool& enabled) = 0;
83 virtual int GetSpeechOutputLevel(int channel, unsigned int& level) = 0;
90 virtual int GetSpeechOutputLevelFullRange(int channel,
94 // channel. Valid scale range is [0.0, 10.0].
95 virtual int SetChannelOutputVolumeScaling(int channel, float scaling) = 0;
97 // Gets the current volume scaling for a specified |channel|.
98 virtual int GetChannelOutputVolumeScaling(int channel, float& scaling) = 0;
102 virtual int SetOutputVolumePan(int channel, float left, float right) = 0;
105 virtual int GetOutputVolumePan(int channel, floa
[all...]
H A Dvoe_rtp_rtcp.h52 virtual void OnIncomingCSRCChanged(int channel,
56 virtual void OnIncomingSSRCChanged(int channel, unsigned int SSRC) = 0;
114 virtual int SetLocalSSRC(int channel, unsigned int ssrc) = 0;
116 // Gets the local RTP SSRC of a specified |channel|.
117 virtual int GetLocalSSRC(int channel, unsigned int& ssrc) = 0;
120 virtual int GetRemoteSSRC(int channel, unsigned int& ssrc) = 0;
122 // Sets the status of rtp-audio-level-indication on a specific |channel|.
123 virtual int SetSendAudioLevelIndicationStatus(int channel,
128 // |channel|.
129 virtual int SetReceiveAudioLevelIndicationStatus(int channel, argument
158 GetRTCP_CNAME(int channel, char cName[256]) argument
193 SetREDStatus(int channel, bool enable, int redPayloadtype = -1) argument
200 GetREDStatus(int channel, bool& enabled, int& redPayloadtype) argument
[all...]
H A Dvoe_network.h59 // specified |channel|. Returns -1 in case of an error, 0 otherwise.
60 virtual int RegisterExternalTransport(int channel, Transport& transport) = 0;
63 // specified |channel|. Returns -1 in case of an error, 0 otherwise.
64 virtual int DeRegisterExternalTransport(int channel) = 0;
70 virtual int ReceivedRTPPacket(int channel,
73 virtual int ReceivedRTPPacket(int channel, argument
84 virtual int ReceivedRTCPPacket(int channel,
H A Dvoe_file.h63 int channel,
74 int channel,
81 // Stops playback of a file on a specific |channel|.
82 virtual int StopPlayingFileLocally(int channel) = 0;
84 // Returns the current file playing state for a specific |channel|.
85 virtual int IsPlayingFileLocally(int channel) = 0;
90 int channel,
100 int channel,
106 // Stops playing of a file as microphone signal for a specific |channel|.
107 virtual int StopPlayingFileAsMicrophone(int channel)
[all...]
H A Dvoe_video_sync.h61 // maintained by the jitter buffer, unless channel condition (jitter in
65 virtual int SetMinimumPlayoutDelay(int channel, int delay_ms) = 0;
68 // the |playout_buffer_delay_ms| for a specified |channel|.
69 virtual int GetDelayEstimate(int channel,
77 virtual int GetLeastRequiredDelayMs(int channel) const = 0;
80 virtual int SetInitTimestamp(int channel, unsigned int timestamp) = 0;
83 virtual int SetInitSequenceNumber(int channel, short sequenceNumber) = 0;
86 virtual int GetPlayoutTimestamp(int channel, unsigned int& timestamp) = 0;
88 virtual int GetRtpRtcp(int channel,
/external/webrtc/webrtc/test/
H A Dmock_voice_engine.h67 MOCK_METHOD3(SetRxNsStatus, int(int channel, bool enable, NsModes mode));
68 MOCK_METHOD3(GetRxNsStatus, int(int channel, bool& enabled, NsModes& mode));
69 MOCK_METHOD3(SetRxAgcStatus, int(int channel, bool enable, AgcModes mode));
70 MOCK_METHOD3(GetRxAgcStatus, int(int channel, bool& enabled, AgcModes& mode));
71 MOCK_METHOD2(SetRxAgcConfig, int(int channel, AgcConfig config));
72 MOCK_METHOD2(GetRxAgcConfig, int(int channel, AgcConfig& config));
74 int(int channel, VoERxVadCallback& observer));
75 MOCK_METHOD1(DeRegisterRxVadObserver, int(int channel));
76 MOCK_METHOD1(VoiceActivityIndicator, int(int channel));
109 MOCK_METHOD1(DeleteChannel, int(int channel));
[all...]
/external/toybox/toys/other/
H A Dmix.c16 -c CHANNEL Set/show volume of CHANNEL (default first channel found)
19 -r RIGHT Volume of right stereo channel (with -r, -l sets left volume)
36 int mask, channel = -1, level, fd; local
42 for (channel = 0; channel < SOUND_MIXER_NRDEVICES; channel++) {
43 if ((1<<channel) & mask) {
45 if (!strcmp(channels[channel], TT.chan)) break;
47 else printf("%s\n", channels[channel]);
52 else if (channel
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DClassicToken.java42 protected int channel=DEFAULT_CHANNEL; field in class:ClassicToken
56 channel = oldToken.getChannel();
64 public ClassicToken(int type, String text, int channel) { argument
67 this.channel = channel;
99 return channel;
102 public void setChannel(int channel) { argument
103 this.channel = channel;
127 if ( channel>
[all...]
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
H A DChannelHelper.java30 public static ByteBuffer readFully(final ReadableByteChannel channel, long size) throws IOException { argument
32 if (channel instanceof FileChannel && size > 1024 * 1024) {
33 ByteBuffer bb = ((FileChannel) channel).map(FileChannel.MapMode.READ_ONLY, ((FileChannel) channel).position(), size);
34 ((FileChannel) channel).position(((FileChannel) channel).position() + size);
38 readFully(channel, buf, buf.limit());
48 public static void readFully(final ReadableByteChannel channel, final ByteBuffer buf) argument
50 readFully(channel, buf, buf.remaining());
53 public static int readFully(final ReadableByteChannel channel, fina argument
69 writeFully(final WritableByteChannel channel, final ByteBuffer buf) argument
[all...]

Completed in 420 milliseconds

1234567891011>>