/external/chromium_org/media/filters/ |
opus_audio_decoder.cc | 42 // Opus uses Vorbis channel mapping, and Vorbis channel mapping specifies 56 // Opus uses Vorbis channel layout. 60 // Vorbis channel ordering for streams with >= 2 channels: 76 // Channel ordering information is taken from section 4.3.9 of the Vorbis I 80 // These are the FFmpeg channel layouts expressed using the position of each 81 // channel in the output stream from libopus. 115 for (int channel = 0; channel < num_channels; ++channel) [all...] |
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/ |
webrtcvideoengine.h | 40 #include "talk/session/media/channel.h" 160 void RegisterChannel(WebRtcVideoMediaChannel* channel); 161 void UnregisterChannel(WebRtcVideoMediaChannel* channel); 306 virtual int SendPacket(int channel, const void* data, int len); 307 virtual int SendRTCPPacket(int channel, const void* data, int len); 316 // Creates and initializes a ViE channel. When successful |channel_id| will 317 // contain the new channel's ID. If |receiving| is true |ssrc| is the 319 // |receiving| and |sending| is true the ssrc must be 0 and the channel will 320 // be created as a default channel. The ssrc must be different for receive 322 // being used for creating channel more than once, this function will fai [all...] |
/frameworks/base/wifi/java/android/net/wifi/p2p/ |
WifiP2pManager.java | 495 /** Interface for callback invocation when framework channel is lost */ 498 * The channel to the framework has been disconnected. 636 * A channel that connects the application to the Wifi p2p framework. 637 * Most p2p operations require a Channel as an argument. An instance of Channel is obtained 640 public static class Channel { 641 Channel(Context context, Looper looper, ChannelListener l) { [all...] |
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/ |
TestRewriteAST.java | 48 "WS : (' '|'\\n') {$channel=HIDDEN;} ;\n"; 61 "WS : (' '|'\\n') {$channel=HIDDEN;} ;\n"; 74 "WS : (' '|'\\n') {$channel=HIDDEN;} ;\n"; 87 "WS : (' '|'\\n') {$channel=HIDDEN;} ;\n"; 101 "WS : (' '|'\\n') {$channel=HIDDEN;} ;\n"; 114 "WS : (' '|'\\n') {$channel=HIDDEN;} ;\n"; 127 "WS : (' '|'\\n') {$channel=HIDDEN;} ;\n"; 141 "WS : (' '|'\\n') {$channel=HIDDEN;} ;\n"; 154 "WS : (' '|'\\n') {$channel=HIDDEN;} ;\n"; 168 "WS : (' '|'\\n') {$channel=HIDDEN;} ;\n" [all...] |
/external/qemu/android/ |
hw-qemud.c | 71 * channel between clients running in the emulated system and 'services' 83 * unframe messages (i.e. extract payload length + channel id from header, 186 * It parses the header to extract the channel id and payload length, 223 typedef void (*QemudSerialReceive)( void* opaque, int channel, uint8_t* msg, int msglen); 381 /* extract payload length + channel id */ 393 D("%s: ignoring huge serial packet: length=%d channel=%1", 410 D("%s: channel=%2d len=%3d '%s'", __FUNCTION__, 433 * <length><channel><payload> 437 * <channel><length><payload> 439 * where <channel> is a 2-hexchar string, and <length> a 4-hexcha 670 int channel; member in struct:QemudClient::__anon24713::__anon24714 996 int channel = qemu_get_be32(f); local 1427 int channel, ret; local 1490 int channel; local [all...] |
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/ |
peerconnectioninterface_unittest.cc | 770 // TODO(perkj): Investigate why the transport channel sometimes don't become 823 // TODO(perkj): Investigate why the transport channel sometimes don't become 935 scoped_refptr<DataChannelInterface> channel = local 949 scoped_refptr<DataChannelInterface> channel = local 985 scoped_refptr<DataChannelInterface> channel = local 999 scoped_refptr<DataChannelInterface> channel; local [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/ast-output/ |
hetero-nodes.rb | 24 WS : (' '|'\n') {$channel=HIDDEN;} ; 43 WS : (' '|'\n') {$channel=HIDDEN;} ; 62 WS : (' '|'\n') {$channel=HIDDEN;} ; 81 WS : (' '|'\n') {$channel=HIDDEN;} ; 101 WS : (' '|'\n') {$channel=HIDDEN;} ; 121 WS : (' '|'\n') {$channel=HIDDEN;} ; 141 WS : (' '|'\n') {$channel=HIDDEN;} ; 161 WS : (' '|'\n') {$channel=HIDDEN;} ; 181 WS : (' '|'\n') {$channel=HIDDEN;} ; 214 WS : (' '|'\n') {$channel=HIDDEN;} [all...] |
/external/bluetooth/bluedroid/stack/avdt/ |
avdt_int.h | 46 /* channel types */ 48 AVDT_CHAN_SIG, /* signaling channel */ 49 AVDT_CHAN_MEDIA, /* media channel */ 51 AVDT_CHAN_REPORT, /* reporting channel */ 108 /* scb transport channel connect timeout value */ 111 /* scb transport channel disconnect timeout value */ 346 /* adaption layer number of transport channel table entries - moved to target.h 349 /* "states" used in transport channel table */ 356 #define AVDT_AD_ST_OPEN 6 /* Channel opened */ 426 /* channel control block type * [all...] |
/external/bluetooth/bluedroid/stack/mcap/ |
mca_main.c | 63 ** channel PSM. 0, if not found. 90 ** channel PSM. 0, if not found. 117 ** control channel. 158 ** data channel. 198 ** Description Find the transport channel table entry by LCID. 288 ** L2CAP channel is closed. It looks up the CCB or DCB for 289 ** the channel and sends it a close event. The reason 309 /* Check if the transport channel is in use */ 319 /* if control channel, notify ccb that channel close * [all...] |
/external/chromium_org/ipc/ |
ipc_sync_channel_unittest.cc | 36 // Will create a channel without a name. 37 Worker(Channel::Mode mode, const std::string& thread_name) 48 // Will create a named channel and use this name for the threads' name. 49 Worker(const std::string& channel_name, Channel::Mode mode) 120 Channel::Mode mode() { return mode_; } 129 SyncChannel* channel() { return channel_.get(); } function in class:IPC::__anon8588::Worker 172 // Called on the listener thread to create the sync channel. 228 Channel::Mode mode_; 245 // First we create the workers that are channel servers, or else the other 246 // workers' channel initialization might fail because the pipe isn't created. 330 SyncChannel* channel = new SyncChannel( variable 351 SyncChannel* channel = new SyncChannel( variable [all...] |
/external/chromium_org/remoting/protocol/ |
channel_multiplexer.cc | 106 MuxSocket(MuxChannel* channel); 208 // Socket must be destroyed before the channel. 214 DCHECK(!socket_); // Can't create more than one socket per channel. 272 ChannelMultiplexer::MuxSocket::MuxSocket(MuxChannel* channel) 273 : channel_(channel), 368 // Cancel creation of the base channel if it hasn't finished. 377 // Already have |base_channel_|. Create new multiplexed channel 387 // If this is the first multiplexed channel then create the base channel. 436 // Every time this function is called it connects a single channel and posts 492 MuxChannel* channel = NULL; local [all...] |
/external/chromium/chrome/common/deprecated/ |
event_sys-inl.h | 32 // Delete the channel ordinarily in Bob's destructor, or whenever you want. 51 // An Event Channel is a source, or broadcaster of events. Listeners subscribe 52 // by calling the AddListener() method. The owner of the channel calls the 116 // Tell all the listeners that the channel is being deleted. 235 explicit EventListenerHookupImpl(EventChannel* channel) 236 : channel_(channel), deleted_(NULL) { 237 channel->AddListener(this); 279 SimpleHookup(EventChannel* channel, CallbackObject* cbobject, 282 SimpleHookup>(channel), cbobject_(cbobject), 304 ArgHookup(EventChannel* channel, CallbackObject* cbobject [all...] |
/external/chromium_org/media/base/ |
audio_bus.cc | 23 // |aligned_frames| to the actual frame length of each channel array. 26 // Choose a size such that each channel will be aligned by 50 float* channel_data = dest->channel(ch); 70 const float* channel_data = source->channel(ch); 135 // Sanity check wrapped vector for alignment and channel count. 186 void AudioBus::SetChannelData(int channel, float* data) { 189 CHECK_GE(channel, 0); 190 CHECK_LT(static_cast<size_t>(channel), channel_data_.size()); 192 channel_data_[channel] = data; 319 // want to care), just copy using the public channel() accessors [all...] |
audio_buffer.cc | 41 // Planar data, so need to allocate buffer for each channel. 42 // Determine per channel data size, taking into account alignment. 47 // Allocate a contiguous buffer for all the channel data. 52 // Copy each channel's data into the appropriate spot. 145 // Deinterleave each channel (if necessary) and convert to 32bit 165 // Format is planar float32. Copy the data from each channel as a block. 170 memcpy(dest->channel(ch) + dest_frame_offset, 179 // output channel data. 184 float* dest_data = dest->channel(ch) + dest_frame_offset; 193 // Format is interleaved float32. Copy the data into each channel [all...] |
channel_layout.cc | 45 // The channel orderings for each layout as specified by FFmpeg. Each value 46 // represents the index of each channel in each layout. Values of -1 mean the 47 // channel at that index is not used for that layout.For example, the left side 48 // surround sound channel in FFmpeg's 5.1 layout is in the 5th position (because 156 // Converts a channel count into a channel layout. 176 DVLOG(1) << "Unsupported channel count: " << channels; 181 int ChannelOrder(ChannelLayout layout, Channels channel) { 183 DCHECK_LT(static_cast<size_t>(channel), arraysize(kChannelOrderings[0])); 184 return kChannelOrderings[layout][channel]; [all...] |
/external/bluetooth/bluedroid/bta/av/ |
bta_av_cfg.c | 58 }; /* AVDTP audio transport channel flush timeout */ 85 /* the MTU for the AVRCP browsing channel */ 94 512, /* AVRCP MTU at L2CAP for control channel */ 96 48, /* AVRCP MTU at L2CAP for control channel */ 98 BTA_AV_MAX_RC_BR_MTU, /* AVRCP MTU at L2CAP for browsing channel */ 101 672, /* AVDTP signaling channel MTU at L2CAP */ 102 BTA_AV_MAX_A2DP_MTU, /* AVDTP audio transport channel MTU at L2CAP */ 103 bta_av_audio_flush_to, /* AVDTP audio transport channel flush timeout */ 104 6, /* AVDTP audio channel max data queue size */ 105 BTA_AV_MAX_VDP_MTU, /* AVDTP video transport channel MTU at L2CAP * [all...] |
/external/chromium_org/content/common/gpu/ |
gpu_channel.h | 59 // Encapsulates an IPC channel between the GPU process and one renderer 76 // Get the GpuChannelManager that owns this channel. 81 // Returns the name of the associated IPC channel. 107 // state to the scheduled state, which potentially means the channel 136 // Destroy channel and all contained contexts. 139 // Generate a route ID guaranteed to be unique for this channel. 151 // If |preemption_flag->IsSet()|, any stub on this channel 221 // Whether the processing of IPCs on this channel is stalled and we should 225 // If non-NULL, all stubs on this channel should stop processing GL 231 // The id of the client who is on the other side of the channel [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/audio/ |
DynamicsCompressor.cpp | 133 // It's because we internally match sourceChannels's size to destinationBus by channel up/down mix. Thus we need numberOfChannels 148 m_sourceChannels[0] = sourceBus->channel(0)->data(); 151 m_sourceChannels[1] = sourceBus->channel(1)->data(); 153 // Simply duplicate mono channel input data to right channel for stereo processing. 165 m_destinationChannels[i] = destinationBus->channel(i)->mutableData(); 255 for (unsigned channel = 0; channel < m_numberOfChannels; ++channel) { 257 m_preFilterPacks[channel]->filters[stageIndex].reset() [all...] |
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/ |
dtlstransport.h | 70 channel) { 94 if (!channel->SetLocalIdentity(identity_)) 98 return Base::ApplyLocalTransportDescription_w(channel); 202 virtual void DestroyTransportChannel(TransportChannelImpl* channel) { 205 static_cast<DtlsTransportChannelWrapper*>(channel); 206 TransportChannelImpl* base_channel = dtls_channel->channel(); 219 TransportChannelImpl* channel) { 222 if (!channel->SetSslRole(secure_role_)) { 223 LOG(LS_INFO) << "Failed to set ssl role for the channel."; 227 if (!channel->SetRemoteFingerprint [all...] |
/frameworks/base/docs/html/sdk/api_diff/16/changes/ |
android.net.wifi.p2p.WifiP2pManager.html | 86 <A NAME="android.net.wifi.p2p.WifiP2pManager.addLocalService_added(android.net.wifi.p2p.WifiP2pManager.Channel, android.net.wifi.p2p.nsd.WifiP2pServiceInfo, android.net.wifi.p2p.WifiP2pManager.ActionListener)"></A> 87 <nobr><code>void</code> <A HREF="../../../../reference/android/net/wifi/p2p/WifiP2pManager.html#addLocalService(android.net.wifi.p2p.WifiP2pManager.Channel, android.net.wifi.p2p.nsd.WifiP2pServiceInfo, android.net.wifi.p2p.WifiP2pManager.ActionListener)" target="_top"><code>addLocalService</code></A>(<code>Channel,</nobr> WifiP2pServiceInfo<nobr>,</nobr> ActionListener<nobr><nobr></code>)</nobr> 93 <A NAME="android.net.wifi.p2p.WifiP2pManager.addServiceRequest_added(android.net.wifi.p2p.WifiP2pManager.Channel, android.net.wifi.p2p.nsd.WifiP2pServiceRequest, android.net.wifi.p2p.WifiP2pManager.ActionListener)"></A> 94 <nobr><code>void</code> <A HREF="../../../../reference/android/net/wifi/p2p/WifiP2pManager.html#addServiceRequest(android.net.wifi.p2p.WifiP2pManager.Channel, android.net.wifi.p2p.nsd.WifiP2pServiceRequest, android.net.wifi.p2p.WifiP2pManager.ActionListener)" target="_top"><code>addServiceRequest</code></A>(<code>Channel,</nobr> WifiP2pServiceRequest<nobr>,</nobr> ActionListener<nobr><nobr></code>)</nobr> 100 <A NAME="android.net.wifi.p2p.WifiP2pManager.clearLocalServices_added(android.net.wifi.p2p.WifiP2pManager.Channel, android.net.wifi.p2p.WifiP2pManager.ActionListener)"></A> 101 <nobr><code>void</code> <A HREF="../../../../reference/android/net/wifi/p2p/WifiP2pManager.html#clearLocalServices(android.net.wifi.p2p.WifiP2pManager.Channel, android.net.wifi.p2p.WifiP2pManager.ActionListener)" target="_top"><code>clearLocalServices</code></A>(<code>Channel,</nobr> ActionListener<nobr><nobr></code>)</nobr> 107 <A NAME="android.net.wifi.p2p.WifiP2pManager.clearServiceRequests_added(android.net.wifi.p2p.WifiP2pManager.Channel, android.net.wifi.p2p.WifiP2pManager.ActionListener)"></A [all...] |
/external/chromium_org/native_client_sdk/src/build_tools/ |
update_nacl_manifest.py | 136 platform, channel, version, date/time\n 213 return [(platform, channel, version, date) 214 for platform, channel, version, date in csv.reader(url_stream)] 349 A tuple (version, channel, archives). The version is a string such as 350 "19.0.1084.41". The channel is one of ('stable', 'beta', or 'dev'). 368 A tuple (version, channel, archives). The version is a string such as 369 "19.0.1084.41". The channel is always 'canary'. |archives| is a list of 434 shared_version_generator: A generator that will yield (version, channel) 439 A tuple (version, channel, archives). The version is a string such as 440 "19.0.1084.41". The channel is one of ('stable', 'beta', 'dev' [all...] |
/frameworks/wilhelm/tests/listening/ |
slesTest_playMuteSolo.cpp | 109 //fprintf(stdout, "Content has %d channel(s)\n", numChannels); 117 if (numChannels > 1) { // SLMuteSoloItf only works if more than one channel 120 // swap channel mute 127 if (leftMuted == SL_BOOLEAN_TRUE) { // we've swapped the channel mute above 128 fprintf(stdout, "channel 0: playing, channel 1: muted\n"); 130 fprintf(stdout, "channel 0: muted, channel 1: playing\n"); 137 if (numChannels > 1) { // SLMuteSoloItf only works if more than one channel 140 // swap channel sol [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/ |
streams.rb | 284 manage the task of "tuning" to a specific token channel. 287 <i>channel</i> feature, which allows you to hold on to all tokens of interest 291 whitespace to channel value HIDDEN as it creates the tokens. 293 When you create a token stream, you can tune it to some specific channel value. 295 yield tokens that have the same value for <tt>channel</tt>. The stream skips 325 # the integer channel value to which the stream is ``tuned'' 326 attr_accessor :channel 728 within the stream. The streams may be tuned to some channel value; off-channel 738 # assume this grammar defines whitespace as tokens on channel HIDDE [all...] |
/external/sonivox/jet_tools/JetCreator/ |
midifile.py | 193 def __init__ (self, track, channel, name, empty):
195 self.channel = channel
199 return "['%s', '%s', '%s']" % (self.track, self.channel, self.name)
320 def __init__ (self, channel, exclude=True):
321 self.channel = channel
325 if event.channel in self.channel:
367 status = msg + self.channel
[all...] |
/external/qemu/hw/ |
goldfish_pipe.c | 131 uint32_t channel; member in struct:Pipe 153 pipe_new(uint32_t channel, PipeDevice* dev) 156 pipe->channel = channel; 162 pipe_list_findp_channel( Pipe** list, uint32_t channel ) 167 if (node == NULL || node->channel == channel) { 232 qemu_put_be32(file, (unsigned int)pipe->channel); 255 uint32_t channel; local 271 channel = qemu_get_be32(file) 959 uint32_t channel; member in struct:PipeDevice [all...] |