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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Tools/Scripts/webkitpy/common/config/
irc.py 31 channel="#webkit" variable
  /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/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...]
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/wpa_supplicant_8/src/p2p/
p2p_utils.c 49 static int p2p_channel_to_freq_j4(int reg_class, int channel)
56 if (channel < 1 || channel > 13)
58 return 2407 + 5 * channel;
60 /* channel 14 */
61 if (channel != 14)
63 return 2414 + 5 * channel;
66 if (channel < 1 || channel > 13)
68 return 2407 + 5 * channel;
    [all...]
  /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/webkit/Source/WebKit2/Platform/mac/
Logging.mac.mm 33 void initializeLogChannel(WTFLogChannel* channel)
35 channel->state = WTFLogChannelOff;
36 NSString *logLevelString = [[NSUserDefaults standardUserDefaults] objectForKey:[NSString stringWithUTF8String:channel->defaultName]];
42 NSLog(@"unable to parse hex value for %s (%@), logging is off", channel->defaultName, logLevelString);
43 if ((logLevel & channel->mask) == channel->mask)
44 channel->state = WTFLogChannelOn;
  /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...]
FileLock.java 44 * closing the channel or exiting the process (terminating the VM).
62 * memory-mapped. On some platforms, closing a channel on a given file handle
65 * option here is to ensure that you only acquire locks on a single channel for
73 // The underlying file channel.
74 private final FileChannel channel; field in class:FileLock
86 * Constructs a new file lock instance for a given channel. The constructor
89 * @param channel
90 * the underlying file channel that holds the lock.
99 protected FileLock(FileChannel channel, long position, long size, boolean shared) {
103 this.channel = channel
114 public final FileChannel channel() { method in class:FileLock
    [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);
  /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...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
ClassicToken.java 42 protected int channel=DEFAULT_CHANNEL; field in class:ClassicToken
56 channel = oldToken.getChannel();
64 public ClassicToken(int type, String text, int channel) {
67 this.channel = channel;
99 return channel;
102 public void setChannel(int channel) {
103 this.channel = channel;
127 if ( channel>0 )
    [all...]
  /external/kernel-headers/original/asm-mips/
jazzdma.h 18 extern void vdma_enable(int channel);
19 extern void vdma_disable(int channel);
20 extern void vdma_set_mode(int channel, int mode);
21 extern void vdma_set_addr(int channel, long addr);
22 extern void vdma_set_count(int channel, int count);
23 extern int vdma_get_residue(int channel);
24 extern int vdma_get_enable(int channel);
57 * DMA channel control registers
60 #define JAZZ_R4030_CHNL_MODE 0xE0000100 /* 8 DMA Channel Mode Registers, */
62 #define JAZZ_R4030_CHNL_ENABLE 0xE0000108 /* 8 DMA Channel Enable Regs, *
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
ChannelHelper.java 30 public static ByteBuffer readFully(final ReadableByteChannel channel, long size) throws IOException {
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); method
38 readFully(channel, buf, buf.limit());
48 public static void readFully(final ReadableByteChannel channel, final ByteBuffer buf)
50 readFully(channel, buf, buf.remaining());
53 public static int readFully(final ReadableByteChannel channel, final ByteBuffer buf, final int length
    [all...]
  /external/webrtc/src/modules/audio_processing/
audio_buffer.cc 97 int16_t* AudioBuffer::data(int channel) const {
98 assert(channel >= 0 && channel < num_channels_);
103 return channels_[channel].data;
106 int16_t* AudioBuffer::low_pass_split_data(int channel) const {
107 assert(channel >= 0 && channel < num_channels_);
109 return data(channel);
112 return split_channels_[channel].low_pass_data;
115 int16_t* AudioBuffer::high_pass_split_data(int channel) const
    [all...]
audio_buffer.h 32 int16_t* data(int channel) const;
33 int16_t* low_pass_split_data(int channel) const;
34 int16_t* high_pass_split_data(int channel) const;
35 int16_t* mixed_data(int channel) const;
36 int16_t* mixed_low_pass_data(int channel) const;
37 int16_t* low_pass_reference(int channel) const;
39 int32_t* analysis_filter_state1(int channel) const;
40 int32_t* analysis_filter_state2(int channel) const;
41 int32_t* synthesis_filter_state1(int channel) const;
42 int32_t* synthesis_filter_state2(int channel) const
    [all...]

Completed in 1362 milliseconds

1 2 3 4 5 6 7 8 91011>>