/prebuilts/tools/common/m2/repository/io/netty/netty-transport/4.1.0.CR3/ |
netty-transport-4.1.0.CR3-sources.jar | |
netty-transport-4.1.0.CR3.jar | |
/system/update_engine/weaved/traits/ |
updater.json | 11 "channel": { 13 "enum": ["stable-channel", "beta-channel", "dev-channel", "canary-channel"] 21 "enum": ["stable-channel", "beta-channel", "dev-channel", "canary-channel"] 25 "enum": ["stable-channel", "beta-channel", "dev-channel", "canary-channel" [all...] |
/external/e2fsprogs/lib/ext2fs/ |
io_manager.c | 22 errcode_t io_channel_set_options(io_channel channel, const char *opts) 27 EXT2_CHECK_MAGIC(channel, EXT2_ET_MAGIC_IO_CHANNEL); 32 if (!channel->manager->set_option) 50 retval = (channel->manager->set_option)(channel, ptr, arg); 59 errcode_t io_channel_write_byte(io_channel channel, unsigned long offset, 62 EXT2_CHECK_MAGIC(channel, EXT2_ET_MAGIC_IO_CHANNEL); 64 if (channel->manager->write_byte) 65 return channel->manager->write_byte(channel, offset [all...] |
inode_io.c | 49 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) [all...] |
/external/curl/tests/data/ |
test571 | 52 rtp: part 2 channel 1 size 10 53 rtp: part 2 channel 0 size 500 54 rtp: part 2 channel 0 size 196 55 rtp: part 2 channel 0 size 124 56 rtp: part 2 channel 0 size 824 57 rtp: part 3 channel 1 size 10 58 rtp: part 3 channel 0 size 50 59 rtp: part 4 channel 0 size 798 60 rtp: part 4 channel 0 size 42 61 rtp: part 4 channel 1 size 3 [all...] |
/external/c-ares/ |
ares_destroy.c | 38 void ares_destroy(ares_channel channel) 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->domains[i]) [all...] |
/external/toybox/toys/other/ |
mix.c | 12 usage: mix [-d DEV] [-c CHANNEL] [-l VOL] [-r RIGHT] 16 -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) [all...] |
/external/webrtc/webrtc/voice_engine/ |
voe_codec_impl.h | 26 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...] |
voe_network_impl.cc | 18 #include "webrtc/voice_engine/channel.h" 38 int VoENetworkImpl::RegisterExternalTransport(int channel, 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) { 52 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel); 53 voe::Channel* channelPtr = ch.channel() [all...] |
voe_rtp_rtcp_impl.cc | 18 #include "webrtc/voice_engine/channel.h" 48 int VoERTP_RTCPImpl::SetLocalSSRC(int channel, unsigned int ssrc) { 50 "SetLocalSSRC(channel=%d, %lu)", channel, ssrc); 55 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel); 56 voe::Channel* channelPtr = ch.channel(); 59 "SetLocalSSRC() failed to locate channel"); 65 int VoERTP_RTCPImpl::GetLocalSSRC(int channel, unsigned int& ssrc) { 70 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel); [all...] |
voe_codec_impl.cc | 17 #include "webrtc/voice_engine/channel.h" 63 int VoECodecImpl::SetSendCodec(int channel, const CodecInst& codec) { 65 "SetSendCodec(channel=%d, codec)", channel); 93 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel); 94 voe::Channel* channelPtr = ch.channel(); 97 "GetSendCodec() failed to locate channel"); 114 int VoECodecImpl::GetSendCodec(int channel, CodecInst& codec) { 119 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel); [all...] |
voe_video_sync_impl.cc | 15 #include "webrtc/voice_engine/channel.h" 46 int VoEVideoSyncImpl::GetPlayoutTimestamp(int channel, 52 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel); 53 voe::Channel* channel_ptr = ch.channel(); 56 "GetPlayoutTimestamp() failed to locate channel"); 62 int VoEVideoSyncImpl::SetInitTimestamp(int channel, unsigned int timestamp) { 64 "SetInitTimestamp(channel=%d, timestamp=%lu)", channel, 71 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel); [all...] |
voe_rtp_rtcp_impl.h | 23 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...] |
/packages/apps/TV/src/com/android/tv/ |
ChannelTuner.java | 29 import com.android.tv.data.Channel; 41 * It manages the current tuned channel among browsable channels. And it determines the next channel 42 * by channel up/down. But, it doesn't actually tune through TvView. 50 private final List<Channel> mChannels = new ArrayList<>(); 51 private final List<Channel> mBrowsableChannels = new ArrayList<>(); 52 private final Map<Long, Channel> mChannelMap = new HashMap<>(); 61 private Channel mCurrentChannel; 141 * Returns browsable channel lists. 143 public List<Channel> getBrowsableChannelList() 215 Channel channel = getAdjacentBrowsableChannel(up); local 234 Channel channel = mChannels.get(channelIndex); local 248 Channel channel = mChannels.get(nextChannelIndex); local 265 Channel channel = mChannelMap.get(channelId); local 373 Channel channel = channels.get(i); local [all...] |
/external/webrtc/webrtc/test/ |
mock_voice_engine.h | 67 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/clang/test/CodeGen/ |
2003-11-19-BitFieldArray.c | 9 void g_io_channel_init (struct _GIOChannel *channel) { 10 channel->partial_write_buf[0];
|
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/ |
t056lexer3.g | 3 a : A EOF {this.xlog($A.text+", channel="+$A.channel);} ; 6 WS : (' '|'\n') {$channel=HIDDEN;} ;
|
/external/kernel-headers/original/uapi/linux/ |
wanrouter.h | 11 WAN_UNCONFIGURED, /* link/channel is not configured */ 12 WAN_DISCONNECTED, /* link/channel is disconnected */ 14 WAN_CONNECTED /* link/channel is operational */
|
/device/google/contexthub/firmware/inc/platform/stm32f4xx/ |
spi.h | 27 uint8_t channel; member in struct:StmSpiDmaCfg 50 #define SPI1_DMA_RX_CFG_A { .channel = 3, .stream = 0 } 51 #define SPI1_DMA_RX_CFG_B { .channel = 3, .stream = 2 } 52 #define SPI1_DMA_TX_CFG_A { .channel = 3, .stream = 3 } 53 #define SPI1_DMA_TX_CFG_B { .channel = 3, .stream = 5 } 56 #define SPI2_DMA_RX_CFG { .channel = 0, .stream = 3 } 57 #define SPI2_DMA_TX_CFG { .channel = 0, .stream = 4 } 60 #define SPI3_DMA_RX_CFG_A { .channel = 0, .stream = 0 } 61 #define SPI3_DMA_RX_CFG_B { .channel = 0, .stream = 2 } 62 #define SPI3_DMA_TX_CFG_A { .channel = 0, .stream = 5 [all...] |
/external/webrtc/talk/media/webrtc/ |
fakewebrtcvoiceengine.h | 55 #define WEBRTC_CHECK_CHANNEL(channel) \ 56 if (channels_.find(channel) == channels_.end()) return -1; 146 struct Channel { 147 explicit Channel() 226 uint32_t GetLocalSSRC(int channel) { 227 return channels_[channel]->send_ssrc; 229 bool GetPlayout(int channel) { 230 return channels_[channel]->playout; 232 bool GetSend(int channel) { 233 return channels_[channel]->send [all...] |
/system/connectivity/shill/ |
shill_ares.cc | 33 void Ares::Destroy(ares_channel channel) { 34 ares_destroy(channel); 37 void Ares::GetHostByName(ares_channel channel, 42 ares_gethostbyname(channel, hostname, family, callback, arg); 45 int Ares::GetSock(ares_channel channel, 48 return ares_getsock(channel, socks, numsocks); 58 void Ares::ProcessFd(ares_channel channel, 61 return ares_process_fd(channel, read_fd, write_fd); 64 void Ares::SetLocalDev(ares_channel channel, const char* local_dev_name) { 65 ares_set_local_dev(channel, local_dev_name) [all...] |
/packages/apps/TV/tests/unit/src/com/android/tv/data/ |
ChannelTest.java | 38 * Tests for {@link Channel}. 86 // Channel.getAppLinkIntent() calls initAppLinkTypeAndIntent() which calls 107 assertAppLinkType(Channel.APP_LINK_TYPE_NONE, INVALID_TV_INPUT_PACKAGE_NAME, null, null); 108 assertAppLinkType(Channel.APP_LINK_TYPE_NONE, LIVE_CHANNELS_PACKAGE_NAME, null, null); 109 assertAppLinkType(Channel.APP_LINK_TYPE_NONE, NONE_LEANBACK_TV_INPUT_PACKAGE_NAME, null, 111 assertAppLinkType(Channel.APP_LINK_TYPE_APP, LEANBACK_TV_INPUT_PACKAGE_NAME, null, null); 115 assertAppLinkType(Channel.APP_LINK_TYPE_NONE, INVALID_TV_INPUT_PACKAGE_NAME, null, 117 assertAppLinkType(Channel.APP_LINK_TYPE_NONE, LIVE_CHANNELS_PACKAGE_NAME, null, 119 assertAppLinkType(Channel.APP_LINK_TYPE_NONE, NONE_LEANBACK_TV_INPUT_PACKAGE_NAME, null, 121 assertAppLinkType(Channel.APP_LINK_TYPE_APP, LEANBACK_TV_INPUT_PACKAGE_NAME, null [all...] |
/hardware/broadcom/wlan/bcmdhd/dhdutil/include/ |
bcmwifi_channels.h | 27 /* A chanspec holds the channel number, band, bandwidth and control sideband */ 30 /* channel defines */ 39 #define CH_MAX_2G_CHANNEL 14 /* Max channel in 2G band */ 40 #define MAXCHANNEL 224 /* max # supported channels. The max channel no is 216, 80 /* channel defines */ 81 #define LOWER_20_SB(channel) (((channel) > CH_10MHZ_APART) ? ((channel) - CH_10MHZ_APART) : 0) 82 #define UPPER_20_SB(channel) (((channel) < (MAXCHANNEL - CH_10MHZ_APART)) ? [all...] |
/packages/apps/TV/tests/unit/src/com/android/tv/ |
BaseMainActivityTestCase.java | 23 import com.android.tv.data.Channel; 69 * Tune to {@code channel}. 71 * @param channel the channel to tune to. 73 protected void tuneToChannel(final Channel channel) { 79 mActivity.tuneToChannel(channel); 99 * Tune to the channel with {@code name}. 101 * @param name the name of the channel to find. 104 Channel c = findChannelWithName(name) [all...] |