HomeSort by relevance Sort by last modified time
    Searched refs:channel (Results 1 - 25 of 1492) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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/chrome/common/
chrome_version_info_win.cc 21 string16 channel; local
27 &channel);
30 channel += L" Aura";
34 channel += L" SyzyASan";
36 return UTF16ToASCII(channel);
43 VersionInfo::Channel VersionInfo::GetChannel() {
45 std::wstring channel(L"unknown");
51 channel = GoogleUpdateSettings::GetChromeChannel(is_system_install);
54 if (channel.empty()) {
56 } else if (channel == L"beta")
    [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 33 VersionInfo::Channel VersionInfo::GetChannel() {
35 std::string channel = GetVersionStringModifier(); local
36 if (channel.empty()) {
38 } else if (channel == "beta") {
40 } else if (channel == "dev") {
42 } else if (channel == "canary") {
  /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/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 77 struct Channel {
78 Channel()
153 for (std::map<int, Channel*>::const_iterator i = channels_.begin();
165 for (std::map<int, Channel*>::const_iterator iter = channels_.begin();
173 bool GetPlayout(int channel) {
174 return channels_[channel]->playout;
176 bool GetSend(int channel) {
177 return channels_[channel]->send;
182 bool GetVAD(int channel) {
183 return channels_[channel]->vad
    [all...]
fakewebrtcvideoengine.h 63 // WebRtc channel id and capture id share the same number space.
65 // renderer for a channel or it is adding a renderer for a capturer.
270 struct Channel {
271 Channel()
313 bool remb_contribute_; // This channel contributes to the remb report.
314 bool remb_bw_partition_; // This channel is allocated part of total bw.
386 for (std::map<int, Channel*>::const_iterator iter = channels_.begin();
396 bool IsChannel(int channel) const {
397 return (channels_.find(channel) != channels_.end());
410 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/chromium_org/chrome/common/extensions/docs/server2/
test_branch_utility.py 27 return [self.GetChannelInfo(channel)
28 for channel in BranchUtility.GetAllChannelNames()]
30 def GetChannelInfo(self, channel):
31 version = self._channels[channel]
32 return ChannelInfo(channel, self.GetBranchForVersion(version), version)
38 for channel in self._channels.iterkeys():
39 if self._channels[channel] == version:
40 return channel
  /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);
  /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...]

Completed in 483 milliseconds

1 2 3 4 5 6 7 8 91011>>