HomeSort by relevance Sort by last modified time
    Searched refs:channel (Results 276 - 300 of 1564) sorted by null

<<11121314151617181920>>

  /external/chromium_org/remoting/tools/win/
chromoting-set-channel.bat 7 set CHANNEL=%1
20 REM Make sure the argument specifies a valid channel.
21 if "_%CHANNEL%_"=="_beta_" goto validarg
22 if "_%CHANNEL%_"=="_stable_" goto validarg
32 if "_%CHANNEL%_"=="_stable_" (
38 echo Remote Desktop to get your machine back on the stable channel.
41 %SYSTEM32%\reg.exe add %REGKEY% /v %VALUENAME% /d %CHANNEL% /f
42 echo Switch to %CHANNEL% channel complete.
43 echo You will automatically get %CHANNEL% binaries during the next update.
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
transportchannelproxy.cc 223 void TransportChannelProxy::OnReadableState(TransportChannel* channel) {
225 ASSERT(channel == impl_);
230 void TransportChannelProxy::OnWritableState(TransportChannel* channel) {
232 ASSERT(channel == impl_);
238 TransportChannel* channel, const char* data, size_t size,
241 ASSERT(channel == impl_);
245 void TransportChannelProxy::OnReadyToSend(TransportChannel* channel) {
247 ASSERT(channel == impl_);
251 void TransportChannelProxy::OnRouteChange(TransportChannel* channel,
254 ASSERT(channel == impl_)
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/template-output/
template-output.rb 48 WS : (' '|'\n') {$channel=HIDDEN;} ;
75 WS : (' '|'\n') {$channel=HIDDEN;} ;
94 WS : (' '|'\n') {$channel=HIDDEN;} ;
116 WS : (' '|'\n') {$channel=HIDDEN;} ;
133 WS : (' '|'\n') {$channel=HIDDEN;} ;
151 WS : (' '|'\n') {$channel=HIDDEN;} ;
172 # WS : (' '|'\n') {$channel=HIDDEN;} ;
199 WS : (' '|'\n') {$channel=HIDDEN;} ;
223 WS : (' '|'\n') {$channel=HIDDEN;} ;
244 WS : (' '|'\n') {$channel=HIDDEN;}
    [all...]
  /device/generic/goldfish/qemud/
qemud.c 32 * - the special channel index 0 is used by the emulator and qemud only.
33 * other channel numbers correspond to clients. More specifically,
42 * internal unique channel number > 0, then sends a connection
43 * initiation request to the emulator (i.e. through channel 0):
48 * number corresponding to the channel number.
50 * * in case of success, the emulator responds through channel 0
59 * send the following through channel 0:
71 * * any command sent through channel 0 to the emulator that is
299 #define MAX_EVENTS (MAX_CHANNELS+1) /* each channel + the serial fd */
646 int channel; member in struct:Packet
1229 int channel; member in struct:Client
1438 int channel = hex2int(p->data+11, 2); local
1454 int channel = hex2int(p->data+11, 2); local
1465 int channel = hex2int(p->data+11, 2); local
1544 int len, channel; local
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/output1/
SymbolTableLexer.m 211 state.channel = _channel;
241 state.channel = _channel;
271 state.channel = _channel;
301 state.channel = _channel;
331 state.channel = _channel;
361 state.channel = _channel;
391 state.channel = _channel;
421 state.channel = _channel;
478 state.channel = _channel;
535 state.channel = _channel
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/output1/
TreeRewriteLexer.m 142 state.channel = _channel;
165 state.channel=99; /* element() */
173 state.channel = _channel;
  /external/chromium_org/chrome/browser/extensions/api/messaging/
message_service.cc 47 // Since we have 2 ports for every channel, we just index channels by half the
56 // Change even to odd and vice versa, to get the other side of a given channel.
150 // Sanity checks to make sure our channel<->port converters are correct.
231 // Only include the TLS channel ID for externally connected web pages.
307 // If the target requests the TLS channel id, begin the lookup for it.
310 // messages awaiting TLS channel ID first.
361 scoped_ptr<MessageChannel> channel(new MessageChannel());
362 channel->opener.reset(new ExtensionMessagePort(source, MSG_ROUTING_CONTROL,
377 // Abandon the channel.
384 channel->receiver.reset(new NativeMessagePort(native_process.release()))
513 MessageChannel* channel = channel_iter->second; local
    [all...]
  /external/chromium_org/third_party/protobuf/python/google/protobuf/internal/
service_reflection_test.py 68 channel = MockRpcChannel()
116 channel = MockRpcChannel()
117 stub = unittest_pb2.TestService_Stub(channel)
130 self.assertEqual(request, channel.request)
131 self.assertEqual(rpc_controller, channel.controller)
132 self.assertEqual(stub.GetDescriptor().methods[0], channel.method)
  /external/protobuf/python/google/protobuf/internal/
service_reflection_test.py 68 channel = MockRpcChannel()
116 channel = MockRpcChannel()
117 stub = unittest_pb2.TestService_Stub(channel)
130 self.assertEqual(request, channel.request)
131 self.assertEqual(rpc_controller, channel.controller)
132 self.assertEqual(stub.GetDescriptor().methods[0], channel.method)
  /libcore/luni/src/test/java/libcore/java/io/
OldFileInputStreamTest.java 105 FileChannel channel; local
113 channel = fis.getChannel();
114 assertNotNull(channel);
115 assertTrue("Channel is closed.", channel.isOpen());
117 // Check that the channel is associated with the input stream.
118 channel.position(offset);
124 assertTrue("Channel is not associated with this stream.", equal);
127 assertFalse("Channel has not been closed.", channel.isOpen())
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/
LangLexer.m 87 state.channel = _channel;
120 state.channel = _channel;
153 state.channel = _channel;
220 state.channel = _channel;
287 state.channel = _channel;
328 state.channel = _channel;
  /external/chromium_org/content/child/npapi/
np_channel_base.cc 64 const IPC::ChannelHandle& channel_handle, IPC::Channel::Mode mode,
75 scoped_refptr<NPChannelBase> channel; local
79 channel = factory();
81 channel = iter->second;
84 DCHECK(channel.get() != NULL);
86 if (!channel->channel_valid()) {
87 channel->channel_handle_ = channel_handle;
91 if (mode & IPC::Channel::MODE_SERVER_FLAG) {
92 channel->channel_handle_.name =
93 IPC::Channel::GenerateVerifiedChannelID(channel_key)
    [all...]
  /external/jmonkeyengine/engine/src/test/jme3test/model/anim/
TestBlenderAnim.java 48 private AnimChannel channel; field in class:TestBlenderAnim
76 channel = control.createChannel();
78 channel.setAnim("run_01");
TestBlenderObjectAnim.java 48 private AnimChannel channel; field in class:TestBlenderObjectAnim
76 channel = control.createChannel();
78 channel.setAnim("TestAnim");
  /libcore/luni/src/test/java/libcore/java/nio/channels/
OldServerSocketChannelTest.java 66 ServerSocketChannel channel = local
68 assertNotNull(channel);
69 assertSame(SelectorProvider.provider(),channel.provider());
  /device/asus/flo/camera/QCamera2/stack/mm-camera-test/src/
mm_qcamera_video.c 57 mm_camera_channel_t *channel,
66 stream = mm_app_add_stream(test_obj, channel);
91 rc = mm_app_config_stream(test_obj, channel, stream, &stream->s_config);
102 mm_camera_channel_t *channel = NULL; local
105 channel = mm_app_add_channel(test_obj,
110 if (NULL == channel) {
111 CDBG_ERROR("%s: add channel failed", __func__);
116 channel,
122 mm_app_del_channel(test_obj, channel);
126 return channel;
    [all...]
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
CommonTokenStream.pm 41 has 'channel' => (
71 $self->channel(ANTLR::Runtime::Token->DEFAULT_CHANNEL);
81 # is there a channel override for token type?
83 my $channel = $self->channel_override_map->{$t->get_type()};
84 if (defined $channel) {
85 $t->set_channel($channel);
91 } elsif ($self->discard_off_channel_tokens && $t->get_channel() != $self->channel) {
104 # leave p pointing at first token on channel
122 while ($i < $n && $self->tokens->[$i]->get_channel() != $self->channel) {
132 while ($i >= 0 && $self->tokens->[$i]->get_channel() != $self->channel) {
    [all...]
  /external/chromium_org/content/renderer/media/
webaudiosourceprovider_impl_unittest.cc 74 if (memcmp(bus1->channel(ch), bus2->channel(ch),
75 sizeof(*bus1->channel(ch)) * bus1->frames()) != 0) {
165 audio_data[i] = bus1->channel(i);
168 bus1->channel(0)[0] = 1;
178 bus1->channel(0)[0] = 1;
187 bus1->channel(0)[0] = 1;
210 bus1->channel(0)[0] = 1;
223 bus1->channel(0)[0] = 1;
  /external/chromium_org/media/base/
audio_hash_unittest.cc 23 // Fill each channel in each bus with unique data.
33 // Since FakeAudioRenderCallback generates only a single channel of unique
34 // audio data, we need to fill each channel manually.
36 wrapped_bus->SetChannelData(0, audio_bus->channel(ch));
68 std::swap(bus_one_->channel(0)[0], bus_one_->channel(0)[1]);
76 // Ensure channel order matters to the hash.
81 // Reverse channel order for the same sample data.
86 swapped_ch_bus->SetChannelData(channels - (i + 1), bus_one_->channel(i));
137 half_bus->SetChannelData(i, bus_one_->channel(i) + half_frames)
149 float* channel = bus_one_->channel(0); local
    [all...]
  /hardware/qcom/camera/QCamera2/stack/mm-camera-test/src/
mm_qcamera_video.c 57 mm_camera_channel_t *channel,
66 stream = mm_app_add_stream(test_obj, channel);
91 rc = mm_app_config_stream(test_obj, channel, stream, &stream->s_config);
102 mm_camera_channel_t *channel = NULL; local
105 channel = mm_app_add_channel(test_obj,
110 if (NULL == channel) {
111 CDBG_ERROR("%s: add channel failed", __func__);
116 channel,
122 mm_app_del_channel(test_obj, channel);
126 return channel;
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
Token.java 53 * on a particular "channel". The parser tunes to a particular channel
54 * so that whitespace etc... can go to the parser on a "hidden" channel.
58 /** Anything on different channel than DEFAULT_CHANNEL is not parsed
78 public void setChannel(int channel);
  /external/chromium/chrome/browser/sync/notifier/
p2p_notifier.cc 74 subscription.channel = kSyncNotificationChannel;
95 notification.channel = kSyncNotificationChannel;
112 if (notification.channel != kSyncNotificationChannel) {
114 << notification.channel;
  /external/chromium_org/chrome/browser/ui/webui/help/
version_updater_chromeos.h 19 virtual void SetChannel(const std::string& channel,
  /external/chromium_org/chrome/common/
chrome_version_info.h 22 enum Channel {
60 // build, this modifier is the channel ("canary", "dev", or "beta", but ""
63 // "dev-m", "beta-m", and for a stable channel multi-user installation, "m".
64 // In branded builds, when the channel cannot be determined, "unknown" will
68 // To simply test the channel, use GetChannel().
71 // Returns the channel for the installation. In branded builds, this will be
73 // builds, or in branded builds when the channel cannot be determined, this
75 static Channel GetChannel();
78 // Sets channel before use.
79 static void SetChannel(const std::string& channel);
    [all...]
  /external/chromium_org/chrome_frame/test/net/
test_automation_provider.h 53 const std::string& channel,

Completed in 3962 milliseconds

<<11121314151617181920>>