HomeSort by relevance Sort by last modified time
    Searched refs:connected (Results 151 - 175 of 345) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/content/browser/renderer_host/pepper/
pepper_gamepad_host_unittest.cc 112 EXPECT_EQ(AddressDiff(&web_gamepad.connected, &web_gamepad),
113 AddressDiff(&ppapi_gamepad.connected, &ppapi_gamepad));
132 default_data.items[0].connected = true;
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/irc/
irclib.py 377 self.connected = 0 # Not connected yet.
411 if self.connected:
440 self.connected = 1
612 Returns true if connected, otherwise false.
614 return self.connected
654 if not self.connected:
657 self.connected = 0
776 # unless you've been connected for at least 5 minutes!
785 raise ServerNotConnectedError, "Not connected.
    [all...]
  /frameworks/native/services/surfaceflinger/DisplayHardware/
HWComposer.cpp 171 disp.connected = true;
275 int connected) {
278 ctx->hwc->hotplug(disp, connected);
311 void HWComposer::hotplug(int disp, int connected) {
313 ALOGE("hotplug event received for invalid display: disp=%d connected=%d",
314 disp, connected);
318 mEventHandler.onHotplugReceived(disp, bool(connected));
348 // this can happen if an unpluggable display is not connected
349 mDisplayData[disp].connected = false;
356 mDisplayData[disp].connected = false
    [all...]
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/http/
HttpEngine.java 114 boolean connected; field in class:HttpEngine
296 client.getRoutesDatabase().connected(connection.getRoute());
300 connected(connection);
311 protected void connected(Connection connection) { method in class:HttpEngine
313 connected = true;
HttpURLConnectionImpl.java 50 * <h3>What does 'connected' mean?</h3>
51 * This class inherits a {@code connected} field from the superclass. That field
53 * currently connected. Instead, it indicates whether a connection has ever been
57 * is currently connected to a server.
167 if (connected) {
250 connected = true;
507 if (connected) {
531 if (connected) {
575 if (super.connected) throw new IllegalStateException("Already connected");
    [all...]
  /external/qemu/hw/
bt-hid.c 92 int connected; member in struct:bt_hid_device_s
444 int prev = hid->connected;
446 hid->connected = hid->control && hid->interrupt;
448 /* Stop page-/inquiry-scanning when a host is connected. */
449 hid->btdev.device.page_scan = !hid->connected;
450 hid->btdev.device.inquiry_scan = !hid->connected;
452 if (hid->connected && !prev) {
517 if (hid->connected)
  /external/chromium_org/remoting/host/
client_session_unittest.cc 85 // authenticated and channels have been connected. This effectively enables
491 Expectation connected = authenticated; local
507 connected =
509 .After(connected)
514 connected =
518 .After(connected)
531 .After(connected)
  /external/smack/src/org/jivesoftware/smack/
XMPPConnection.java 75 private boolean connected = false; field in class:XMPPConnection
207 throw new IllegalStateException("Not connected to server.");
287 throw new IllegalStateException("Not connected to server.");
376 return connected;
439 // connected to false here.
440 connected = false;
475 // If not connected, ignore this request.
502 throw new IllegalStateException("Not connected to server.");
657 // Make note of the fact that we're now connected.
658 connected = true
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
BluetoothChatService.java 38 * thread for performing data transmissions when connected.
81 public static final int STATE_CONNECTED = 3; // now connected to a remote device
163 * @param device The BluetoothDevice that has been connected
165 public synchronized void connected(BluetoothSocket socket, BluetoothDevice method in class:BluetoothChatService
167 if (D) Log.d(TAG, "connected, Socket Type: " + socketType);
189 // Send the name of the connected device back to the UI Activity
302 // Listen to the server socket if we're not connected
319 // Situation normal. Start the connected thread.
320 connected(socket, socket.getRemoteDevice(), method
325 // Either not ready or already connected. Terminate new socket
413 connected(mmSocket, mmDevice, mSocketType); method
    [all...]
  /development/samples/BluetoothChat/src/com/example/android/BluetoothChat/
BluetoothChatService.java 38 * thread for performing data transmissions when connected.
68 public static final int STATE_CONNECTED = 3; // now connected to a remote device
149 * @param device The BluetoothDevice that has been connected
151 public synchronized void connected(BluetoothSocket socket, BluetoothDevice method in class:BluetoothChatService
153 if (D) Log.d(TAG, "connected, Socket Type:" + socketType);
175 // Send the name of the connected device back to the UI Activity
296 // Listen to the server socket if we're not connected
313 // Situation normal. Start the connected thread.
314 connected(socket, socket.getRemoteDevice(), method
319 // Either not ready or already connected. Terminate new socket
406 connected(mmSocket, mmDevice, mSocketType); method
    [all...]
  /frameworks/native/services/surfaceflinger/
EventThread.cpp 123 void EventThread::onHotplugReceived(int type, bool connected) {
133 event.hotplug.connected = connected;
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/activities/
SensorActivity.java 160 boolean connected = binder.isEmuConnected();
161 mTableLayout.setEnabled(connected);
162 updateStatus(connected ? "Emulated connected" : "Emulator disconnected");
  /external/chromium/chrome/browser/ui/webui/options/chromeos/
internet_options_handler.h 111 bool connected,
  /external/chromium_org/chromeos/dbus/
bluetooth_device_client.h 58 // Indicates that the device is currently connected. Read-only.
59 dbus::Property<bool> connected; member in struct:chromeos::BluetoothDeviceClient::Properties
135 // profiles that can be connected to and have been flagged as auto-connected;
136 // may be used to connect additional profiles for an already connected device,
137 // and succeeds if at least one profile is connected.
  /external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/client/
peer_connection_client.h 63 CONNECTED,
113 // Parses a single line entry in the form "<name>,<id>,<connected>"
115 bool* connected);
  /external/libnfc-nci/src/nfa/include/
nfa_cho_api.h 47 #define NFA_CHO_CONNECTED_EVT 0x03 /* data link connected */
179 tNFA_CHO_CONNECTED connected; /* NFA_CHO_CONNECTED_EVT */ member in union:__anon22334
  /hardware/libhardware/include/hardware/
bt_gatt_server.h 50 /** Callback indicating that a remote device has connected or been disconnected */
51 typedef void (*connection_callback)(int conn_id, int server_if, int connected,
hwcomposer.h 412 * connected or disconnected. The PRIMARY display is always connected and
416 * The connected parameter indicates whether the display has just been
417 * connected (1) or disconnected (0).
430 void (*hotplug)(const struct hwc_procs* procs, int disp, int connected);
580 * on the connected display. These handles must remain valid as long as the
581 * display is connected.
595 * display type and no display is connected, an error should be returned.
605 * connected display. The config parameter is one of the config handles
617 * If disp is a hotpluggable display type and no display is connected,
    [all...]
  /external/chromium_org/chrome/browser/chromeos/cros/
network_library_impl_base.cc 213 return ethernet_ ? ethernet_->connected() : false;
222 return active_wifi_ ? active_wifi_->connected() : false;
231 return active_cellular_ ? active_cellular_->connected() : false;
240 return active_wimax_ ? active_wimax_->connected() : false;
249 return active_virtual_ ? active_virtual_->connected() : false;
251 bool NetworkLibraryImplBase::Connected() const {
319 if (ethernet_ && ethernet_->connected())
321 if (active_wifi_ && active_wifi_->connected())
323 if (active_cellular_ && active_cellular_->connected())
325 if (active_wimax_ && active_wimax_->connected())
    [all...]
  /bootable/recovery/
ui.cpp 228 // Return true if USB is connected.
238 /* USB is connected if android_usb state is CONNECTED or CONFIGURED */
239 int connected = (read(fd, &buf, 1) == 1) && (buf == 'C'); local
244 return connected;
  /external/chromium/chrome/browser/sync/engine/
syncer_thread2_whitebox_unittest.cc 47 void SetServerConnection(bool connected) {
48 syncer_thread_->server_connection_ok_ = connected;
  /external/chromium/chrome/browser/ui/webui/chromeos/
mobile_setup_ui.cc 598 network->connected() &&
642 // reasons we are still not connected after 45 seconds.
752 } else if (network->connected()) {
768 } else if (network->connected()) {
782 } else if (network->connected()) {
810 } else if (network->connected()) {
819 if (network->connected()) {
837 if (network->connected()) {
849 // If we are connected but there is no connectivity at all,
    [all...]
  /external/chromium_org/remoting/webapp/
toolbar.css 54 /* Ensure that the 'connected to' string doesn't make the tool-bar overflow */
55 #connected-to {
  /external/chromium_org/sync/notifier/
push_client_channel_unittest.cc 40 void OnNetworkStatusChange(bool connected) {
41 connected_ = connected;
  /external/chromium_org/third_party/WebKit/Source/web/
SharedWorkerRepository.cpp 109 virtual void connected();
204 void SharedWorkerScriptLoader::connected() function in class:WebCore::SharedWorkerScriptLoader

Completed in 2580 milliseconds

1 2 3 4 5 67 8 91011>>