HomeSort by relevance Sort by last modified time
    Searched refs:connected (Results 251 - 275 of 845) sorted by null

<<11121314151617181920>>

  /external/walt/docs/
Development.md 10 1. With the phone connected you computer via USB, run `adb tcpip 5555` (you can replace 5555 with any port)
36 1. Get your Chromebook connected to a network so it would be accessible from you workstation
  /external/webrtc/webrtc/examples/peerconnection/client/
peer_connection_client.h 46 CONNECTED,
96 // Parses a single line entry in the form "<name>,<id>,<connected>"
98 bool* connected);
  /external/webrtc/webrtc/p2p/base/
tcpport.cc 15 * - Connected: Indicate whether the TCP socket is connected.
33 * +----------------------->|Connected: N |
44 * | |Connected: N|Send() or |Connected: N| |Connected: Y|
59 * |Connected: N| |Connected: Y|Binding |Connected: Y|
206 if (!conn->connected()) {
    [all...]
  /frameworks/base/core/java/android/hardware/radio/
RadioTuner.java 436 * @return {@code true} if the antenna is connected, {@code false} otherwise.
558 * onAntennaState() is called when the antenna is connected or disconnected.
560 public void onAntennaState(boolean connected) {}
  /frameworks/base/libs/androidfw/
DisplayEventDispatcher.cpp 135 dispatchHotplug(ev.header.timestamp, ev.header.id, ev.hotplug.connected);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
NetworkControllerImpl.java 115 // connected and validated, respectively.
698 * Update the Inet conditions and what network we are connected to.
825 BitSet connected = new BitSet(); local
    [all...]
  /hardware/interfaces/camera/device/3.2/default/
CameraDevice_3_2.h 67 void setConnectionStatus(bool connected);
96 // Set by provider (when external camera is connected/disconnected)
  /hardware/interfaces/graphics/composer/2.1/utils/hal/include/composer-hal/2.1/
ComposerClient.h 93 void onHotplug(Display display, IComposerCallback::Connection connected) {
94 if (connected == IComposerCallback::Connection::CONNECTED) {
96 } else if (connected == IComposerCallback::Connection::DISCONNECTED) {
100 auto ret = mCallback->onHotplug(display, connected);
  /hardware/interfaces/sensors/1.0/default/
convert.cpp 171 dst->u.dynamic.connected = src.dynamic_sensor_meta.connected;
315 dst->dynamic_sensor_meta.connected = src.u.dynamic.connected;
  /hardware/libhardware/include/hardware/
hwcomposer.h 449 * connected or disconnected. The PRIMARY display is always connected and
453 * The connected parameter indicates whether the display has just been
454 * connected (1) or disconnected (0).
467 void (*hotplug)(const struct hwc_procs* procs, int disp, int connected);
662 * on the connected display. These handles must remain valid as long as the
663 * display is connected.
684 * hotpluggable display type and no display is connected, an error shall be
695 * connected display. The config parameter is one of the config handles
707 * If disp is a hotpluggable display type and no display is connected,
    [all...]
  /hardware/libhardware/modules/camera/3_4/
v4l2_wrapper.h 106 inline bool connected() { return device_fd_.get() >= 0; } function in class:v4l2_camera_hal::V4L2Wrapper
  /hardware/qcom/display/msm8994/libhwcomposer/
hwc_qclient.cpp 114 int connected; local
115 connected = ctx->dpyAttr[HWC_DISPLAY_EXTERNAL].connected ? 1 : 0;
116 outParcel->writeInt32(connected);
  /hardware/qcom/gps/msm8909w_3100/location/
location_interface.h 58 void (*updateConnectionStatus)(bool connected, uint8_t type);
  /libcore/luni/src/test/java/libcore/java/nio/channels/
OldSocketChannelTest.java 138 assertFalse(this.channel1.isConnected());// not connected
226 boolean connected = false;
229 connected = this.channel1.finishConnect();
233 if (connected) {
236 return connected;
  /libcore/ojluni/src/main/java/sun/net/www/protocol/ftp/
FtpURLConnection.java 226 if (connected) {
271 connected = true;
301 connected = true;
341 connected = true;
423 if (!connected) {
541 if (!connected) {
612 * @throws IllegalStateException if already connected
641 * @throws IllegalStateException if already connected
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiSummaryUpdater.java 88 if (!mWifiTracker.connected) {
  /system/bt/include/hardware/
bt_gatt_server.h 48 /** Callback indicating that a remote device has connected or been disconnected
50 typedef void (*connection_callback)(int conn_id, int server_if, int connected,
  /system/bt/service/example/heart_rate/
heart_rate_server.h 82 bool connected) override;
  /system/bt/service/ipc/binder/
bluetooth_gatt_server_binder_server.h 93 bool connected) override;
  /system/bt/service/
low_energy_client.h 59 const char* address, bool connected) = 0;
85 // Disconnect from previously connected BLE device with address |address|.
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
SocketChannelTest.java 341 assertFalse(this.channel1.isConnected());// not connected
351 assertFalse(this.channel1.isConnected());// not connected
364 assertFalse(this.channel1.isConnected());// not connected
366 boolean connected = channel1.connect(localAddr1);
369 if (!connected) {
376 // status of not connected
394 assertFalse(this.channel1.isConnected());// not connected
400 assertFalse(this.channel1.isConnected());// not connected
410 assertFalse(this.channel1.isConnected());// not connected
412 boolean connected = channel1.connect(localAddr1)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
asynchat.py 202 return self.producer_fifo or (not self.connected)
209 while self.producer_fifo and self.connected:
  /external/python/cpython2/Lib/
asynchat.py 209 return self.producer_fifo or (not self.connected)
216 while self.producer_fifo and self.connected:
  /external/python/cpython3/Lib/
asynchat.py 218 return self.producer_fifo or (not self.connected)
225 while self.producer_fifo and self.connected:
  /external/syslinux/core/lwip/src/include/lwip/
tcp.h 113 /** Function prototype for tcp connected callback functions. Called when a pcb
114 * is connected to the remote side after initiating a connection attempt by
118 * @param tpcb The connection pcb which is connected
142 /* Function to call when a listener has been connected.
144 * @param pcb a new tcp_pcb that now is connected
254 tcp_connected_fn connected; member in struct:tcp_pcb
343 u16_t port, tcp_connected_fn connected);

Completed in 560 milliseconds

<<11121314151617181920>>