HomeSort by relevance Sort by last modified time
    Searched full:channel (Results 26 - 50 of 1500) sorted by null

12 3 4 5 6 7 8 91011>>

  /hardware/broadcom/wlan/bcm4329/src/include/
bcmwifi.h 74 #define LOWER_20_SB(channel) ((channel > CH_10MHZ_APART) ? (channel - CH_10MHZ_APART) : 0)
75 #define UPPER_20_SB(channel) ((channel < (MAXCHANNEL - CH_10MHZ_APART)) ? \
76 (channel + CH_10MHZ_APART) : 0)
78 #define CH20MHZ_CHSPEC(channel) (chanspec_t)((chanspec_t)(channel) | WL_CHANSPEC_BW_20 | \
79 WL_CHANSPEC_CTL_SB_NONE | (((channel) <= CH_MAX_2G_CHANNEL) ? \
81 #define NEXT_20MHZ_CHAN(channel) ((channel < (MAXCHANNEL - CH_20MHZ_APART)) ?
    [all...]
  /dalvik/libcore/nio/src/main/java/org/apache/harmony/nio/internal/
SelectionKeyImpl.java 32 private AbstractSelectableChannel channel; field in class:SelectionKeyImpl
44 public SelectionKeyImpl(AbstractSelectableChannel channel, int operations,
46 this.channel = channel;
53 public SelectableChannel channel() { method in class:SelectionKeyImpl
54 return channel;
74 if ((operations & ~(channel().validOps())) != 0) {
121 * Returns true if the channel for this key is connected. If the channel
125 return !(channel instanceof SocketChannel
    [all...]
FileLockImpl.java 35 * @param channel
36 * the file channel hosting the lock.
44 public FileLockImpl(FileChannel channel, long position, long size,
46 super(channel, position, size, shared);
51 * channel it is acquired on is closed or if it is released. (non-Javadoc)
57 return !isReleased && channel().isOpen();
61 * Releases the file lock on the channel that acquired it. Releasing an
68 if (!channel().isOpen()) {
73 ((FileChannelImpl) channel()).release(this);
  /hardware/ti/wlan/wl1271/TWD/TWDriver/
TWDriverScan.h 168 * \brief Scan Normal Channel Entry
171 * This structure defines single channel parameters for normal scan operation other than SPS (inc. triggered)
178 TI_UINT32 maxChannelDwellTime; /**< Maximum time to stay on the channel if some frames were
181 TI_UINT32 minChannelDwellTime; /**< Minimum time to stay on the channel if no frames were received (microseconds) */
184 * Termination Event setting, after which scan is stopped on this channel
187 TI_UINT8 channel; /**< Channel to scan */ member in struct:__anon8550
192 * \brief Scan SPS Channel Entry
195 * This structure defines single channel parameters for an SPS scan operation
202 TI_UINT32 scanDuration; /**< Length of time to start scanning the channel (TSF lower 4 bytes) *
208 TI_UINT8 channel; \/**< Channel to scan *\/ member in struct:__anon8551
    [all...]
  /system/wlan/ti/wilink_6_1/TWD/TWDriver/
TWDriverScan.h 169 * \brief Scan Normal Channel Entry
172 * This structure defines single channel parameters for normal scan operation other than SPS (inc. triggered)
179 TI_UINT32 maxChannelDwellTime; /**< Maximum time to stay on the channel if some frames were
182 TI_UINT32 minChannelDwellTime; /**< Minimum time to stay on the channel if no frames were received (microseconds) */
185 * Termination Event setting, after which scan is stopped on this channel
188 TI_UINT8 channel; /**< Channel to scan */ member in struct:__anon14388
193 * \brief Scan SPS Channel Entry
196 * This structure defines single channel parameters for an SPS scan operation
203 TI_UINT32 scanDuration; /**< Length of time to start scanning the channel (TSF lower 4 bytes) *
209 TI_UINT8 channel; \/**< Channel to scan *\/ member in struct:__anon14389
    [all...]
  /dalvik/libcore/nio/src/main/java/java/nio/channels/spi/
AbstractSelectableChannel.java 57 * the selector provider that creates this channel.
65 * Returns the selector provider that has created this channel.
68 * @return this channel's selector provider.
76 * Indicates whether this channel is registered with one or more selectors.
78 * @return {@code true} if this channel is registered with a selector,
87 * Gets this channel's selection key for the specified selector.
90 * the selector with which this channel has been registered.
91 * @return the selection key for the channel or {@code null} if this channel
106 * Registers this channel with the specified selector for the specifie
    [all...]
AbstractInterruptibleChannel.java 23 import java.nio.channels.Channel;
34 * The basic usage pattern for an interruptible channel is to invoke
40 public abstract class AbstractInterruptibleChannel implements Channel,
76 * Indicates whether this channel is open.
78 * @return {@code true} if this channel is open, {@code false} if it is
80 * @see java.nio.channels.Channel#isOpen()
87 * Closes an open channel. If the channel is already closed then this method
91 * If an attempt is made to perform an operation on a closed channel then a
94 * If multiple threads attempt to simultaneously close a channel, then onl
    [all...]
  /external/srec/srec/cfront/
ca_cms.c 52 set_status = swicms_set_cmn ( hWave->data.channel->swicms, param_string );
64 get_status = swicms_get_cmn ( hWave->data.channel->swicms, param_string, len );
77 if( swicms_init(hWave->data.channel->swicms) )
105 hWave->data.channel->channorm = create_channel_normalization();
106 /* load_channel_parameters (basename, hWave->data.channel->channorm);
108 hWave->data.channel->channorm->dim = MAX_CHAN_DIM;
109 setup_channel_normalization(hWave->data.channel->channorm,
110 hWave->data.channel->spchchan,
117 hWave->data.channel->mel_dim = hFrontArgs->mel_dim; /* TODO: more checks */
119 hWave->data.channel->swicms = (swicms_norm_info*)CALLOC(1, sizeof(swicms_norm_info), "cfront.swicms")
    [all...]
frontobj.c 146 front_channel *channel; local
148 channel = (front_channel *) CALLOC_CLR(1,
149 sizeof(front_channel), "cfront.channel");
150 return channel;
154 void delete_channel_object(front_channel *channel)
156 ASSERT(channel);
157 FREE((char *) channel);
162 front_channel *channel, front_wave *waveobj,
165 ASSERT(channel);
170 channel->prebuff = (fftdata *) CALLOC(freqobj->window_length + 1
    [all...]
  /dalvik/libcore/nio/src/main/java/java/nio/channels/
InterruptibleChannel.java 25 * A channel that can be asynchronously closed permits that a thread blocked on
27 * the channel's {@link #close()} method. The I/O thread will throw an
28 * {@link AsynchronousCloseException} and the channel will be closed.
30 * A channel that is interruptible permits a thread blocked on an I/O operation
34 * its interrupted status set and the channel will be closed. If the I/O thread
38 public interface InterruptibleChannel extends Channel {
41 * Closes the channel.
43 * Any threads that are blocked on I/O operations on this channel will be
45 * method behaves the same as defined in the {@code Channel} interface.
48 * if an I/O error occurs while closing the channel
    [all...]
ReadableByteChannel.java 23 * A {@code ReadableByteChannel} is a type of {@link Channel} that can read
27 * if a read is already in progress on the channel then subsequent reads will
31 public interface ReadableByteChannel extends Channel {
34 * Reads bytes from the channel into the given buffer.
43 * same channel.
53 * if another thread closes the channel during the read.
57 * thread is set and the channel is closed.
59 * if the channel is closed.
63 * if the channel was not opened for reading.
DatagramChannel.java 30 * A {@code DatagramChannel} is a selectable channel that represents a partial
35 * A datagram channel is open but not connected when created with the
37 * status until it is disconnected or closed. The benefit of a connected channel
39 * invoking {@code read} or {@code write}, a connected channel is required.
64 * Creates an opened and not-connected datagram channel.
66 * This channel is created by calling the <code>openDatagramChannel</code>
69 * @return the new channel which is open but not connected.
78 * Gets the valid operations of this channel. Datagram channels support read
91 * Returns the related datagram socket of this channel, which does not
100 * Returns whether this channel's socket is connected or not
    [all...]
WritableByteChannel.java 23 * A {@code WritableByteChannel} is a type of {@link Channel} that can write
27 * if a write is already in progress on the channel then subsequent writes will
31 public interface WritableByteChannel extends Channel {
34 * Writes bytes from the given buffer to the channel.
42 * same channel.
52 * if the channel was not opened for writing.
54 * if the channel was already closed.
56 * if another thread closes the channel during the write.
SocketChannel.java 30 * A {@code SocketChannel} is a selectable channel that provides a partial
34 * A socket channel is open but not connected when created by {@code open()}.
43 * The input and output sides of a channel can be shut down independently and
44 * asynchronously without closing the channel. The {@code shutdownInput} method
45 * is used for the input side of a channel and subsequent read operations return
49 * output side of the channel; subsequent write operations throw a
79 * Creates an open and unconnected socket channel.
81 * This channel is created by calling {@code openSocketChannel()} of the
84 * @return the new channel which is open but unconnected.
93 * Creates a socket channel and connects it to a socket address
    [all...]
  /packages/apps/IM/src/com/android/im/imps/
DataChannel.java 24 * channel and a conditional CIR channel. All the exchange of CSP primitives is
25 * done in the data channel.
38 * Establishes a data channel with the IMPS server.
41 * channel.
46 * Suspend the data channel. No data will be sent through the data channel
52 * Resume the suspended data channel.
54 * @return <code>true</code> if the channel is resumed successfully;
55 * <code>false</code> if the channel is timeout and a new one mus
    [all...]
  /external/kernel-headers/original/linux/
relay.h 30 * Per-cpu relay channel buffer
34 void *start; /* start of channel buffer */
39 struct rchan *chan; /* associated channel */
42 struct dentry *dentry; /* channel file dentry */
43 struct kref kref; /* channel buffer refcount */
54 * Relay channel data structure
63 struct kref kref; /* channel refcount */
66 struct rchan_buf *buf[NR_CPUS]; /* per-cpu channel buffers */
70 * Relay channel client callbacks
76 * @buf: the channel buffer containing the new sub-buffe
    [all...]
  /external/webkit/WebCore/platform/win/
LoggingWin.cpp 34 static inline void initializeWithUserDefault(WTFLogChannel& channel)
36 DWORD length = GetEnvironmentVariableA(channel.defaultName, 0, 0);
42 if (!GetEnvironmentVariableA(channel.defaultName, buffer.get(), length))
49 LOG_ERROR("Unable to parse hex value for %s (%s), logging is off", channel.defaultName, buffer.get());
60 LOG_ERROR("Unable to parse hex value for %s (%s), logging is off", channel.defaultName, buffer.get());
64 if ((logLevel & channel.mask) == channel.mask)
65 channel.state = WTFLogChannelOn;
67 channel.state = WTFLogChannelOff;
  /bionic/libc/kernel/arch-arm/asm/
dma.h 35 #define clear_dma_ff(channel)
37 #define set_dma_addr(channel, addr) __set_dma_addr(channel, bus_to_virt(addr))
  /ndk/build/platforms/android-3/arch-arm/usr/include/asm/
dma.h 35 #define clear_dma_ff(channel)
37 #define set_dma_addr(channel, addr) __set_dma_addr(channel, bus_to_virt(addr))
  /ndk/build/platforms/android-4/arch-arm/usr/include/asm/
dma.h 35 #define clear_dma_ff(channel)
37 #define set_dma_addr(channel, addr) __set_dma_addr(channel, bus_to_virt(addr))
  /ndk/build/platforms/android-5/arch-arm/usr/include/asm/
dma.h 35 #define clear_dma_ff(channel)
37 #define set_dma_addr(channel, addr) __set_dma_addr(channel, bus_to_virt(addr))
  /ndk/build/platforms/android-8/arch-arm/usr/include/asm/
dma.h 35 #define clear_dma_ff(channel)
37 #define set_dma_addr(channel, addr) __set_dma_addr(channel, bus_to_virt(addr))
  /external/qemu/telephony/
sysdeps.h 41 /* XXX: TODO: channel creation functions */
45 extern int sys_channel_set_non_block( SysChannel channel );
47 extern void sys_channel_on( SysChannel channel,
52 extern int sys_channel_read( SysChannel channel, void* buffer, int size );
54 extern int sys_channel_write( SysChannel channel, const void* buffer, int size );
56 extern void sys_channel_close( SysChannel channel );
  /external/dropbear/
svr-chansession.c 30 #include "channel.h"
43 static int sessioncommand(struct Channel *channel, struct ChanSess *chansess,
47 static int noptycommand(struct Channel *channel, struct ChanSess *chansess);
48 static int ptycommand(struct Channel *channel, struct ChanSess *chansess);
53 static void closechansess(struct Channel *channel);
54 static int newchansess(struct Channel *channel)
    [all...]
  /frameworks/base/media/jni/soundpool/
SoundPool.cpp 96 void SoundPool::addToRestartList(SoundChannel* channel)
99 mRestart.push_back(channel);
118 SoundChannel* channel; local
119 LOGV("Getting channel from list");
121 channel = *iter;
123 if (channel) channel->nextEvent();
214 SoundChannel* channel; local
230 // allocate a channel
231 channel = allocateChannel(priority)
250 SoundChannel* channel = NULL; local
291 SoundChannel* channel = findChannel(channelID); local
302 SoundChannel* channel = &mChannelPool[i]; local
311 SoundChannel* channel = findChannel(channelID); local
322 SoundChannel* channel = &mChannelPool[i]; local
331 SoundChannel* channel = findChannel(channelID); local
344 SoundChannel* channel = findChannel(channelID); local
354 SoundChannel* channel = findChannel(channelID); local
364 SoundChannel* channel = findChannel(channelID); local
374 SoundChannel* channel = findChannel(channelID); local
643 SoundChannel* channel = static_cast<SoundChannel*>((void *)((unsigned long)user & ~1)); local
    [all...]

Completed in 750 milliseconds

12 3 4 5 6 7 8 91011>>