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

1 2

  /external/chromium_org/ash/system/tray/
system_tray_delegate.cc 12 : connecting(false),
23 connecting(false),
system_tray_delegate.h 31 bool highlight() const { return connected || connecting; }
33 bool connecting; member in struct:ash::NetworkIconInfo
50 bool connecting; member in struct:ash::BluetoothDeviceInfo
  /external/chromium_org/chrome/browser/chromeos/login/screens/
network_screen_actor.h 43 // Shows network connecting status or network selection otherwise.
45 bool connecting,
mock_network_screen.h 35 void(bool connecting, const string16& network_id));
  /external/chromium_org/chrome/browser/ui/webui/chromeos/login/
network_screen_handler.h 34 virtual void ShowConnectingStatus(bool connecting,
network_screen_handler.cc 83 bool connecting,
89 // base::FundamentalValue(connecting),
  /external/chromium/chrome/browser/chromeos/login/
network_selection_view.cc 406 void NetworkSelectionView::ShowConnectingStatus(bool connecting,
410 select_language_label_->SetVisible(!connecting);
411 languages_menubutton_->SetVisible(!connecting);
412 select_keyboard_label_->SetVisible(!connecting);
413 keyboards_menubutton_->SetVisible(!connecting);
414 select_network_label_->SetVisible(!connecting);
415 network_dropdown_->SetVisible(!connecting);
416 continue_button_->SetVisible(!connecting);
417 proxy_settings_link_->SetVisible(!connecting);
418 connecting_network_label_->SetVisible(connecting);
    [all...]
network_selection_view.h 56 // Shows network connecting status or network selection otherwise.
57 void ShowConnectingStatus(bool connecting, const string16& network_id);
89 // Based on state (connecting to the network or not)
100 // Updates text on label with currently connecting network.
126 // Id of the network that is in process of connecting.
  /external/chromium/chrome/browser/resources/options/chromeos/
internet_options_page.css 68 .network-item[connecting] {
77 .network-item[connecting][other] {
117 .network-item[connecting] > * > button {
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/base/
DefaultClient.java 73 private CountDownLatch connecting = new CountDownLatch(1); field in class:DefaultClient
179 connecting.await();
226 // Make sure we aren't still connecting
274 connecting.countDown();
388 connecting.countDown();
DefaultServer.java 83 private Map<Long,Connection> connecting = new ConcurrentHashMap<Long,Connection>(); field in class:DefaultServer
319 Connection c = connecting.remove(tempId);
371 connecting.put(tempId, c);
415 // Just in case the endpoint was still connecting
416 connecting.values().remove(p);
  /external/chromium_org/chrome/browser/resources/options/
browser_options.css 194 @-webkit-keyframes connecting-animation {
262 @-webkit-keyframes vpn-connecting-animation {
271 .network-connecting {
272 -webkit-animation: connecting-animation 1s step-end infinite;
275 .network-vpn.network-connecting {
276 -webkit-animation: vpn-connecting-animation 500ms alternate infinite;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
asyncore.py 228 connecting = False variable in class:dispatcher
346 self.connecting = True
406 self.connecting = False
445 if self.connecting:
457 self.connecting = False
466 if self.connecting:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
asyncore.py 228 connecting = False variable in class:dispatcher
346 self.connecting = True
406 self.connecting = False
445 if self.connecting:
457 self.connecting = False
466 if self.connecting:
  /external/chromium/chrome/browser/ui/webui/options/chromeos/
internet_options_handler.h 110 bool connecting,
internet_options_handler.cc 627 dictionary.SetBoolean("connecting", net->connecting());
    [all...]
  /frameworks/support/v7/mediarouter/src/android/support/v7/media/
MediaRouteDescriptor.java 42 private static final String KEY_CONNECTING = "connecting";
102 * Gets whether the route is connecting.
317 * Sets whether the route is in the process of connecting and is not yet
320 public Builder setConnecting(boolean connecting) {
321 mBundle.putBoolean(KEY_CONNECTING, connecting);
  /external/chromium_org/chrome/renderer/resources/extensions/
runtime_custom_bindings.js 152 throw new Error('Error connecting to extension ' + targetId);
180 throw new Error('Error connecting to native app: ' + nativeAppName);
  /external/chromium_org/chrome/browser/chromeos/cros/
network_library_impl_base.cc 210 return ethernet_ ? ethernet_->connecting() : false;
219 return active_wifi_ ? active_wifi_->connecting() : false;
228 return active_cellular_ ? active_cellular_->connecting() : false;
237 return active_wimax_ ? active_wimax_->connecting() : false;
246 return active_virtual_ ? active_virtual_->connecting() : false;
255 bool NetworkLibraryImplBase::Connecting() const {
330 // Connecting order in logical preference.
649 // In order to be certain to trigger any notifications, set the connecting
701 VLOG(1) << "Error connecting to network: " << network->name()
922 if (wifi->connected() || wifi->connecting()) // Skip connected/connecting
    [all...]
  /external/chromium/net/spdy/
spdy_proxy_client_socket.cc 490 bool connecting = next_state_ != STATE_DISCONNECTED && local
502 // If we're in the middle of connecting, we need to make sure
504 if (connecting) {
  /external/chromium_org/net/spdy/
spdy_proxy_client_socket.cc 492 bool connecting = next_state_ != STATE_DISCONNECTED &&
504 // If we're in the middle of connecting, we need to make sure
506 if (connecting) {
  /development/samples/ToyVpn/src/com/example/android/toyvpn/
ToyVpnService.java 105 mHandler.sendEmptyMessage(R.string.connecting);
139 // Protect the tunnel before connecting to avoid loopback.
  /external/chromium/chrome/browser/chromeos/cros/
network_library.h 285 bool connecting() const { return IsConnectingState(state_); } function in class:chromeos::Network
288 bool connecting_or_connected() const { return connecting() || connected(); }
377 void set_connecting(bool connecting) {
378 state_ = (connecting ? STATE_ASSOCIATION : STATE_IDLE);
    [all...]
  /external/chromium/chrome/browser/chromeos/status/
network_menu.cc 34 // Amount to fade icons while connecting.
145 // Cellular network is connecting or connected,
382 if (wifi_networks[i]->connecting()) {
455 } else if (cell_networks[i]->connecting()) {
481 (cell_networks[i]->connecting() || cell_networks[i]->connected());
674 if (vpn->connecting()) {
    [all...]
  /external/chromium/chrome/browser/resources/
network_menu.js 9 const StatusConnecting = 'connecting';
263 // TODO: Handle specific types of network, connecting icon.

Completed in 1415 milliseconds

1 2