/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/dropbear/ |
cli-channel.c | 26 #include "channel.h" 33 /* We receive channel data - only used by the client chansession code*/ 36 struct Channel *channel; local 41 channel = getchannel(); 43 if (channel->type != &clichansess) { 56 common_recv_msg_channel_data(channel, channel->errfd, channel->extrabuf);
|
common-channel.c | 34 #include "channel.h" 40 static void send_msg_channel_open_confirmation(struct Channel* channel, 43 static void writechannel(struct Channel* channel, int fd, circbuffer *cbuf); 44 static void send_msg_channel_window_adjust(struct Channel *channel, 46 static void send_msg_channel_data(struct Channel *channel, int isextended); 47 static void send_msg_channel_eof(struct Channel *channel) 193 struct Channel *channel; local 437 struct Channel * channel; local 482 struct Channel * channel; local 498 struct Channel * channel; local 557 struct Channel *channel; local 654 struct Channel *channel; local 723 struct Channel * channel; local 758 struct Channel *channel; local 984 struct Channel * channel; local 1019 struct Channel * channel; local [all...] |
/external/chromium_org/remoting/tools/mac/ |
chromoting-set-channel.sh | 16 echo "Usage: ${ME} <channel>" >&2 17 echo "where <channel> is 'beta' or 'stable'" >&2 34 local channel="$1" 36 if [[ "${channel}" != "beta" && "${channel}" != "stable" ]]; then 41 local channeltag="${channel}" 42 if [[ "${channel}" == "stable" ]]; then 46 log "Switching Chrome Remote Desktop channel to ${channel}" 50 if [[ "${channel}" == "stable" ]]; the [all...] |
/external/chromium_org/chrome/browser/resources/help/ |
channel_change_page.css | 6 #channel-change-page { 11 .channel-change-page-channel label { 15 .channel-change-page-channel { 20 .show-when-selected-channel-requires-powerwash, 21 .show-when-selected-channel-requires-delayed-update, 22 .show-when-selected-channel-good, 23 .show-when-selected-channel-unstable { 27 .selected-channel-requires-powerwas [all...] |
/external/qemu/distrib/sdl-1.2.15/src/audio/macrom/ |
SDL_romaudio.h | 36 /* Sound manager audio channel */ 37 SndChannelPtr channel; member in struct:SDL_PrivateAudioData 47 #define channel (this->hidden->channel) macro
|
/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...] |
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/ |
RTCDataChannelEvent.idl | 28 readonly attribute RTCDataChannel channel;
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/config/ |
irc.py | 28 channel = "#blink" variable
|
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/channel/ |
IChannelWorkerThread.java | 5 package ch.ethz.ssh2.channel;
|
X11ServerData.java | 5 package ch.ethz.ssh2.channel;
|
/external/chromium_org/chrome/common/ |
chrome_version_info_win.cc | 21 base::string16 channel; local 27 &channel); 31 channel += L" SyzyASan"; 33 return UTF16ToASCII(channel); 40 VersionInfo::Channel VersionInfo::GetChannel() { 42 std::wstring channel(L"unknown"); 48 channel = GoogleUpdateSettings::GetChromeChannel(is_system_install); 51 if (channel.empty()) { 53 } else if (channel == L"beta") { 55 } else if (channel == L"dev") [all...] |
chrome_version_info_chromeos.cc | 9 static VersionInfo::Channel chromeos_channel = VersionInfo::CHANNEL_UNKNOWN; 31 VersionInfo::Channel VersionInfo::GetChannel() { 36 void VersionInfo::SetChannel(const std::string& channel) { 38 if (channel == "stable-channel") { 40 } else if (channel == "beta-channel") { 42 } else if (channel == "dev-channel") { 44 } else if (channel == "canary-channel") [all...] |
chrome_version_info_posix.cc | 44 VersionInfo::Channel VersionInfo::GetChannel() { 46 std::string channel = GetVersionStringModifier(); local 47 if (channel.empty()) { 49 } else if (channel == "beta") { 51 } else if (channel == "dev") { 53 } else if (channel == "canary") {
|
/external/kernel-headers/original/asm-arm/ |
dma.h | 47 #define clear_dma_ff(channel) 54 extern void set_dma_page(dmach_t channel, char pagenr); 56 /* Request a DMA channel 60 extern int request_dma(dmach_t channel, const char * device_id); 62 /* Free a DMA channel 66 extern void free_dma(dmach_t channel); 68 /* Enable DMA for this channel 73 extern void enable_dma(dmach_t channel); 75 /* Disable DMA for this channel 80 extern void disable_dma(dmach_t channel); [all...] |
/external/qemu/telephony/ |
sysdeps_posix.c | 98 /*** channel allocation ***/ 108 SysChannel channel = _s_free_channels; local 109 assert( channel != NULL && "out of free channels" ); 110 _s_free_channels = channel->next; 111 channel->next = NULL; 112 channel->active = 0; 113 channel->closed = 0; 114 channel->pending = 0; 115 channel->wanted = 0; 116 return channel; 467 SysChannel channel; local 512 SysChannel channel; local 546 SysChannel channel; local 592 SysChannel channel = sys_channel_alloc(); local 613 SysChannel channel = sys_channel_alloc(); local [all...] |
sysdeps_qemu.c | 181 SysChannel channel = _s_free_channels; local 182 if (channel != NULL) { 183 _s_free_channels = channel->next; 184 channel->next = NULL; 185 channel->fd = -1; 186 channel->callback = NULL; 187 channel->opaque = NULL; 189 return channel; 193 sys_channel_free( SysChannel channel ) 195 if (channel->fd >= 0) 207 SysChannel channel = _channel; local 216 SysChannel channel = _channel; local 319 SysChannel channel = sys_channel_alloc(); local 339 SysChannel channel = sys_channel_alloc(); local 364 SysChannel channel = sys_channel_alloc(); local [all...] |
/external/srec/srec/cfront/ |
chelfep.c | 47 static featdata smoothed_c0(front_cep *cepobj, front_channel *channel); 50 int make_frame(front_channel *channel, front_wave *waveobj, 62 MEMMOVE(channel->cep + (channel->mel_dim + 1), channel->cep, 63 (Q2 - 1) *(channel->mel_dim + 1), sizeof(float)); 71 filterbank_emulation(channel, waveobj, freqobj, cepobj, 74 read channel->fbo and dump it. */ 78 cepstrum_params(channel, waveobj, freqobj, cepobj); 81 (void) make_std_frame(channel, cepobj, framdata) [all...] |
chelmel4.c | 60 front_channel *channel); 67 void cepstrum_params(front_channel *channel, front_wave *waveobj, 73 mel_spectrum_correction(freqobj->filterbank, cepobj->mel_loop, channel->num_freq); 76 mel_loglookup_with_offset(cepobj, channel); 79 write_scaled_frames(freqobj->nf, 1, channel->filterbank, D_FIXED, 1 / (float)LOG_SCALE); 83 icostrans(cepobj->cs, channel->filterbank, channel->cep, 84 channel->num_freq, cepobj->mel_dim); 88 write_scaled_frames((cepobj->mel_dim + 1), 1, channel->cep, D_FIXED, (float)1 / (0x01 << (LOG_SCALE_SHIFT + COSINE_TABLE_SHIFT))); 126 front_channel *channel) [all...] |
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/ |
fakewebrtcvoiceengine.h | 80 struct Channel { 81 explicit Channel(bool use_experimental_acm) 166 for (std::map<int, Channel*>::const_iterator i = channels_.begin(); 178 for (std::map<int, Channel*>::const_iterator iter = channels_.begin(); 186 bool GetPlayout(int channel) { 187 return channels_[channel]->playout; 189 bool GetSend(int channel) { 190 return channels_[channel]->send; 195 bool GetVAD(int channel) { 196 return channels_[channel]->vad [all...] |
fakewebrtcvideoengine.h | 64 // WebRtc channel id and capture id share the same number space. 66 // renderer for a channel or it is adding a renderer for a capturer. 271 struct Channel { 272 Channel() 319 bool remb_contribute_; // This channel contributes to the remb report. 320 bool remb_bw_partition_; // This channel is allocated part of total bw. 396 for (std::map<int, Channel*>::const_iterator iter = channels_.begin(); 406 bool IsChannel(int channel) const { 407 return (channels_.find(channel) != channels_.end()); 430 int GetCaptureId(int channel) const [all...] |
/libcore/luni/src/main/java/java/nio/channels/ |
Channels.java | 42 * Returns an input stream on the given channel. The resulting stream has 45 * <li>If the stream is closed, then the underlying channel is closed as 48 * <li>It throws an {@link IllegalBlockingModeException} if the channel is 54 * @param channel 55 * the channel to be wrapped by an InputStream. 56 * @return an InputStream that takes bytes from the given byte channel. 58 public static InputStream newInputStream(ReadableByteChannel channel) { 59 return new ChannelInputStream(channel); 63 * Returns an output stream on the given channel. The resulting stream has 66 * <li>If the stream is closed, then the underlying channel is closed a 206 private final ReadableByteChannel channel; field in class:Channels.ChannelInputStream 246 private final WritableByteChannel channel; field in class:Channels.ChannelOutputStream [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/animation/ |
AnimEventListener.java | 49 * @param channel The channel being altered 52 public void onAnimCycleDone(AnimControl control, AnimChannel channel, String animName); 55 * Invoked when a animation is set to play by the user on the given channel. 58 * @param channel The channel being altered 61 public void onAnimChange(AnimControl control, AnimChannel channel, String animName);
|
/external/chromium_org/chrome/browser/sync/glue/ |
chrome_report_unrecoverable_error.cc | 16 chrome::VersionInfo::Channel channel = chrome::VersionInfo::GetChannel(); local 17 if (channel != chrome::VersionInfo::CHANNEL_CANARY && 18 channel != chrome::VersionInfo::CHANNEL_DEV) {
|
/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...] |