/external/chromium_org/ash/system/tray/ |
system_tray_delegate.cc | 10 : connecting(false), 21 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 base::string16& network_id));
|
/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_org/chrome/browser/ui/webui/chromeos/login/ |
network_screen_handler.h | 37 virtual void ShowConnectingStatus(bool 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 | 208 @-webkit-keyframes connecting-animation { 276 @-webkit-keyframes vpn-connecting-animation { 285 .network-connecting { 286 -webkit-animation: connecting-animation 1s step-end infinite; 289 .network-vpn.network-connecting { 290 -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 | 157 throw new Error('Error connecting to extension ' + targetId); 189 throw new Error('Error connecting to native app: ' + nativeAppName);
|
/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.
|
/external/chromium_org/chrome/browser/resources/chromeos/ |
network_menu.js | 9 const StatusConnecting = 'connecting'; 263 // TODO: Handle specific types of network, connecting icon.
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
QuickSettingsModel.java | 689 boolean connecting; 691 connecting = connectedRoute.isConnecting(); 694 connecting = false; 702 mRemoteDisplayState.iconId = connecting ? [all...] |