/external/chromium_org/ipc/ |
ipc_channel_unittest.cc | 44 // 50th message (or on channel error). 66 // There is a race when closing the channel so the last message may be lost. 126 // Set up IPC channel and start client. 138 // Close the channel so the client's OnChannelError() gets fired. 139 channel()->Close(); 151 // channel. 165 CloseHandle(pipe); // The channel duplicates the handle. 168 // Connect to channel and start client. 177 // Close the channel so the client's OnChannelError() gets fired. 178 channel()->Close() [all...] |
ipc_channel_proxy.h | 31 // channel on a background thread. It provides you with the option of either 35 // The API for an IPC::ChannelProxy is very similar to that of an IPC::Channel. 37 // the background thread, where it is then passed to the IPC::Channel's Send 39 // message will be sent over the IPC channel when possible instead of being 41 // will queue up on the IPC::Channel when there is a lot of traffic, and the 42 // channel will not get cycles to flush its message queue until the thread, on 46 // be notified of incoming messages on the IPC::Channel's thread. This gives 53 // instance where the IPC::Channel will be created and operated. 58 // A class that receives messages on the thread where the IPC channel is 66 // channel. Called when the IPC channel is initialized or when AddFilte [all...] |
/external/chromium_org/jingle/notifier/listener/ |
notification_defines.cc | 20 return channel == other.channel && from == other.from; 62 channel == other.channel && 68 // |channel| or |data| could hold binary data, so convert all non-ASCII 71 base::EscapeBytesAsInvalidJSONString(channel, true /* put_in_quotes */); 75 "{ channel: " + printable_channel + ", data: " + printable_data + " }";
|
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/test/QA/ |
runiSACfixfloat.txt | 23 for channel in $CHANNELFILES 27 $ISACFIXFLOAT $INDIR/$channel -m 1 -PLC $INDIR/"$file" $OUTDIR/flfx$index1"$file" >> $LOGFILE 28 $ISACFIXFLOAT $INDIR/$channel -m 2 -PLC $INDIR/"$file" $OUTDIR/fxfl$index1"$file" >> $LOGFILE 38 $ISACFIXFLOAT $INDIR/$channel -m 1 -NB 1 $INDIR/"$file" $OUTDIR/flfxnb1_$index1"$file" >> $LOGFILE 39 $ISACFIXFLOAT $INDIR/$channel -m 2 -NB 1 $INDIR/"$file" $OUTDIR/fxflnb1_$index1"$file" >> $LOGFILE 40 $ISACFIXFLOAT $INDIR/$channel -m 1 -NB 2 -PLC $INDIR/"$file" $OUTDIR/flfxnb2_$index1"$file" >> $LOGFILE 41 $ISACFIXFLOAT $INDIR/$channel -m 2 -NB 2 -PLC $INDIR/"$file" $OUTDIR/fxflnb2_$index1"$file" >> $LOGFILE
|
/external/bluetooth/bluedroid/stack/mcap/ |
mca_int.h | 33 /* INT initiates the L2CAP channel */ 57 UINT16 peer_mtu; /* Transport channel L2CAP MTU of the peer */ 78 /* control channel states */ 89 /* control channel events */ 98 MCA_CCB_DL_OPEN_EVT, /* data channel open. */ 99 MCA_CCB_LL_OPEN_EVT, /* Lower layer open. This event is sent when the lower layer channel is open. */ 100 MCA_CCB_LL_CLOSE_EVT, /* Lower layer close. This event is sent when the lower layer channel is closed. */ 102 MCA_CCB_RSP_TOUT_EVT /* time out for waiting the message response on the control channel */ 118 /* data channel states */ 122 MCA_DCB_OPENING_ST, /* create/reconnect sequence is successful, waiting for data channel connection * [all...] |
/external/chromium_org/chrome/common/extensions/docs/server2/test_data/branch_utility/ |
first.json | 9 "channel": "canary", 22 "channel": "dev", 35 "channel": "beta", 48 "channel": "stable", 66 "channel": "beta", 79 "channel": "stable", 97 "channel": "dev", 110 "channel": "beta", 123 "channel": "stable", 141 "channel": "dev" [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/audio/ |
MultiChannelResampler.cpp | 41 // ChannelProvider provides a single channel of audio data (one channel at a time) for each channel 42 // of data provided to us in a multi-channel provider. 54 // provideInput() will be called once for each channel, starting with the first channel. 55 // Each time it's called, it will provide the next channel of data. 63 // Get the data from the multi-channel provider when the first channel asks for it. 64 // For subsequent channels, we can just dish out the channel data from that (stored in m_multiChannelBus) [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/cinematic/events/ |
AnimationTrack.java | 56 protected AnimChannel channel; field in class:AnimationTrack 91 if (channel == null) { 94 this.channel = (AnimChannel) s; 98 channel = model.getControl(AnimControl.class).createChannel(); 99 cinematic.putEventData("modelChannels", modelName, channel); 113 t = t % channel.getAnimMaxTime(); 116 float parity = (float)Math.ceil(time / channel.getAnimMaxTime()); 118 t = channel.getAnimMaxTime() - t % channel.getAnimMaxTime(); 120 t = t % channel.getAnimMaxTime() [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/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/ |
r600_formats.h | 93 /* Find the first non-VOID channel. */ 95 if (desc->channel[i].type != UTIL_FORMAT_TYPE_VOID) 103 (desc->channel[i].size == 64 && 104 desc->channel[i].type == UTIL_FORMAT_TYPE_FLOAT) || 105 desc->channel[i].type == UTIL_FORMAT_TYPE_FIXED) 108 /* No scaled/norm formats with 32 bits per channel. */ 109 if (desc->channel[i].size == 32 && 110 (desc->channel[i].type == UTIL_FORMAT_TYPE_SIGNED || 111 desc->channel[i].type == UTIL_FORMAT_TYPE_UNSIGNED))
|
/external/llvm/lib/Target/NVPTX/ |
cl_common_defines.h | 8 // Channel order 36 CLK_SNORM_INT8 = 0x10D0, // four channel RGBA unorm8 37 CLK_SNORM_INT16 = 0x10D1, // four channel RGBA unorm16 38 CLK_UNORM_INT8 = 0x10D2, // four channel RGBA unorm8 39 CLK_UNORM_INT16 = 0x10D3, // four channel RGBA unorm16 40 CLK_HALF_FLOAT = 0x10DD, // four channel RGBA half 41 CLK_FLOAT = 0x10DE, // four channel RGBA float 58 __CLK_UNORM_INT8888, // four channel ARGB unorm8 59 __CLK_UNORM_INT8888R, // four channel BGRA unorm8
|
/external/mesa3d/src/gallium/drivers/r600/ |
r600_formats.h | 93 /* Find the first non-VOID channel. */ 95 if (desc->channel[i].type != UTIL_FORMAT_TYPE_VOID) 103 (desc->channel[i].size == 64 && 104 desc->channel[i].type == UTIL_FORMAT_TYPE_FLOAT) || 105 desc->channel[i].type == UTIL_FORMAT_TYPE_FIXED) 108 /* No scaled/norm formats with 32 bits per channel. */ 109 if (desc->channel[i].size == 32 && 110 (desc->channel[i].type == UTIL_FORMAT_TYPE_SIGNED || 111 desc->channel[i].type == UTIL_FORMAT_TYPE_UNSIGNED))
|
/frameworks/base/core/java/com/android/internal/view/ |
InputBindResult.java | 36 * The input channel used to send input events to this IME. 38 public final InputChannel channel; field in class:InputBindResult 54 channel = _channel; 62 channel = InputChannel.CREATOR.createFromParcel(source); 64 channel = null; 85 if (channel != null) { 87 channel.writeToParcel(dest, flags); 113 return channel != null ? channel.describeContents() : 0;
|
/libcore/luni/src/main/java/java/nio/channels/ |
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.
|
/external/chromium_org/chrome/browser/notifications/sync_notifier/ |
chrome_notifier_service_factory.cc | 37 chrome::VersionInfo::Channel channel = chrome::VersionInfo::GetChannel(); 38 if (channel == chrome::VersionInfo::CHANNEL_UNKNOWN || 39 channel == chrome::VersionInfo::CHANNEL_DEV || 40 channel == chrome::VersionInfo::CHANNEL_CANARY)
|
/external/chromium_org/content/renderer/ |
render_thread_impl_browsertest.cc | 43 std::string channel_id = IPC::Channel::GenerateVerifiedChannelID( 46 IPC::Channel channel(channel_id, IPC::Channel::MODE_SERVER, &dummy_listener); 47 ASSERT_TRUE(channel.Connect());
|
/external/chromium_org/media/base/ |
audio_bus.h | 17 // Scoped container for "busing" audio channel data around. Each channel is 20 // will dice up a contiguous memory block for channel data. When wrapped, 21 // AudioBus instead routes requests for channel data to the wrapped object. 24 // Guaranteed alignment of each channel's data; use 16-byte alignment for easy 38 // Creates a new AudioBus from an existing channel vector. Does not transfer 40 // the returned AudioBus. Each channel must be aligned by kChannelAlignment. 70 // to channel(x)[start_frame]. 74 // Helper method for copying channel data from one AudioBus to another. Both 87 // Returns a raw pointer to the requested channel. Pointer is guaranteed t 90 float* channel(int channel) { return channel_data_[channel]; } function in class:media::AudioBus 91 const float* channel(int channel) const { return channel_data_[channel]; } function in class:media::AudioBus [all...] |
/external/chromium_org/sandbox/win/src/ |
sharedmem_ipc_client.cc | 14 // Get the base of the data buffer of the channel; this is where the input 16 // channel we avoid one copy. 32 ChannelControl* channel = control_->channels; local 33 LONG result = ::InterlockedExchange(&channel[num].state, kFreeChannel); 45 // There must be at least one channel. 49 // Do the IPC. At this point the channel should have already been 58 ChannelControl* channel = control_->channels; local 62 channel[num].ipc_tag = params->GetTag(); 70 DWORD wait = ::SignalObjectAndWait(channel[num].ping_event, 71 channel[num].pong_event 122 ChannelControl* channel = control_->channels; local [all...] |
/external/chromium_org/third_party/libjingle/source/talk/session/media/ |
mediarecorder.cc | 121 bool MediaRecorder::AddChannel(VoiceChannel* channel, 125 return InternalAddChannel(channel, false, send_stream, recv_stream, 128 bool MediaRecorder::AddChannel(VideoChannel* channel, 132 return InternalAddChannel(channel, true, send_stream, recv_stream, 136 bool MediaRecorder::InternalAddChannel(BaseChannel* channel, 141 if (!channel) { 146 if (sinks_.end() != sinks_.find(channel)) { 147 return false; // The channel was added already. 157 sinks_[channel] = sink_pair; 162 void MediaRecorder::RemoveChannel(BaseChannel* channel, [all...] |
/external/smack/src/org/xbill/DNS/ |
Client.java | 16 Client(SelectableChannel channel, long endTime) throws IOException { 22 channel.configureBlocking(false); 23 key = channel.register(selector, SelectionKey.OP_READ); 30 channel.close(); 55 key.channel().close();
|
/external/webrtc/src/modules/audio_coding/codecs/isac/main/source/ |
filterbank_tables.h | 28 /* The number of all-pass filter factors in an upper or lower channel*/ 34 /* The upper channel all-pass filter factors */ 37 /* The lower channel all-pass filter factors */ 40 /* The matrix for transforming the backward composite state to upper channel state */ 43 /* The matrix for transforming the backward composite state to lower channel state */
|
/frameworks/av/media/libmedia/ |
SoundPool.cpp | 93 void SoundPool::addToRestartList(SoundChannel* channel) 97 mRestart.push_back(channel); 102 void SoundPool::addToStopList(SoundChannel* channel) 106 mStop.push_back(channel); 126 SoundChannel* channel; local 127 ALOGV("Getting channel from stop list"); 129 channel = *iter; 132 if (channel != 0) { 134 channel->stop(); 141 SoundChannel* channel; local 243 SoundChannel* channel; local 279 SoundChannel* channel = NULL; local 320 SoundChannel* channel = findChannel(channelID); local 331 SoundChannel* channel = &mChannelPool[i]; local 340 SoundChannel* channel = findChannel(channelID); local 351 SoundChannel* channel = &mChannelPool[i]; local 360 SoundChannel* channel = findChannel(channelID); local 373 SoundChannel* channel = findChannel(channelID); local 383 SoundChannel* channel = findChannel(channelID); local 393 SoundChannel* channel = findChannel(channelID); local 403 SoundChannel* channel = findChannel(channelID); local 683 SoundChannel* channel = static_cast<SoundChannel*>((void *)((unsigned long)user & ~1)); local [all...] |
/frameworks/base/core/java/android/view/ |
InputChannel.java | 24 * An input channel specifies the file descriptors used to send input events to 62 * Creates an uninitialized input channel. 64 * another input channel into this one. 79 * Creates a new input channel pair. One channel should be provided to the input 81 * @param name The descriptive (non-unique) name of the channel pair. 82 * @return A pair of input channels. The first channel is designated as the 83 * server channel and should be used to publish input events. The second channel 84 * is designated as the client channel and should be used to consume input events [all...] |
/hardware/libhardware/include/hardware/ |
bt_sock.h | 35 int channel; member in struct:__anon31075 44 * listen to a rfcomm uuid or channel. It returns the socket fd from which 47 bt_status_t (*listen)(btsock_type_t type, const char* service_name, const uint8_t* service_uuid, int channel, int* sock_fd, int flags); 49 * connect to a rfcomm uuid channel of remote device, It returns the socket fd from which 52 bt_status_t (*connect)(const bt_bdaddr_t *bd_addr, btsock_type_t type, const uint8_t* uuid, int channel, int* sock_fd, int flags);
|
/libcore/luni/src/main/java/java/nio/ |
SocketChannelImpl.java | 90 * Constructor for creating a connected socket channel. 97 * Constructor for creating an optionally connected socket channel. 486 private final SocketChannelImpl channel; field in class:SocketChannelImpl.SocketAdapter 489 SocketAdapter(PlainSocketImpl socketImpl, SocketChannelImpl channel) throws SocketException { 492 this.channel = channel; 502 return channel; 507 return channel.isBound; 512 return channel.isConnected(); 518 return channel.getLocalAddress() 604 private final SocketChannel channel; field in class:SocketChannelImpl.SocketChannelOutputStream 647 private final SocketChannel channel; field in class:SocketChannelImpl.SocketChannelInputStream [all...] |