Home
last modified time | relevance | path

Searched refs:connected (Results 1 – 25 of 383) sorted by relevance

12345678910>>...16

/external/autotest/client/cros/chameleon/
Dchameleon_port_finder.py33 self.connected = None
43 self.connected = self.chameleon_board.get_all_ports()
46 return ChameleonPorts(self.connected, self.failed)
55 connected_ports = self.find_all_ports().connected
69 if self.connected is None:
71 elif self.connected == []:
75 % (len(self.connected), ports_to_str(self.connected)))
97 self.connected = self.chameleon_board.get_all_inputs()
100 return ChameleonPorts(self.connected, self.failed)
116 self.connected = self.chameleon_board.get_all_outputs()
[all …]
Dchameleon_bluetooth_audio.py109 connected = utils.wait_for_value(_connect_device, True, timeout_sec=timeout)
110 if not connected:
/external/apache-http/src/org/apache/http/conn/routing/
DRouteTracker.java70 private boolean connected; field in RouteTracker
123 if (this.connected) { in connectTarget()
126 this.connected = true; in connectTarget()
142 if (this.connected) { in connectProxy()
145 this.connected = true; in connectProxy()
158 if (!this.connected) { in tunnelTarget()
182 if (!this.connected) { in tunnelProxy()
209 if (!this.connected) { in layerProtocol()
234 if (this.connected) { in getHopCount()
274 return this.connected; in isConnected()
[all …]
/external/autotest/client/site_tests/network_FirewallHolePunch/src/tcpserver/styles/
Dmain.css7 .hide-when-not-connected {
11 .connected .hide-when-not-connected {
16 .connected .hide-when-not-connected p {
20 .connected .hide-when-connected {
/external/autotest/server/site_tests/platform_ExternalUSBStress/
Dplatform_ExternalUSBStress.py86 connected = strip_lsusb_output(host.run('lsusb').stdout.strip())
87 if diff_list.issubset(connected):
91 str(diff_list.difference(connected)))
133 connected = strip_lsusb_output(host.run('lsusb').stdout.strip())
134 if connected != off_list:
183 connected = strip_lsusb_output(host.run('lsusb').stdout.strip())
184 diff_list = set(connected).difference(set(off_list))
/external/autotest/server/site_tests/network_FirewallHolePunchServer/
Dnetwork_FirewallHolePunchServer.py31 connected = False
34 connected = True
39 return connected
58 def functional_test(self, test_error, test_fail, connected): argument
76 if self.connect_to_dut() is connected:
/external/libese/tools/ese_relay/
Dese_relay.c93 int connected = 0; in main() local
100 connected = 1; in main()
110 while (connected) { in main()
132 connected = 0; in main()
201 connected = 0; in main()
/external/cros/system_api/dbus/power_manager/
Dpower_supply_properties.proto17 // AC/line/mains or USB PD power is connected. This is typically the
21 // A low-power USB source (SDP, DCP, CDP, or ACA) is connected.
24 // No external power source is connected.
38 // connected but not supplying enough power to offset the system's
78 // The charging port to which this power source is connected.
89 // when connected (assuming there isn't another |active_by_default| source
103 // Currently-connected external power sources.
131 // True if it is possible for some connected devices to function as either
/external/autotest/client/profilers/powertop/src/
Durbnum.c42 uint64_t urbs, active, connected; member
57 ptr->previous_connected = ptr->connected; in cachunk_urbs()
85 ptr->connected = strtoull(name, NULL, 10); in update_urbnum()
180 (0.00001 + dev->connected - dev->previous_connected), dev->human_name); in display_usb_activity()
209 (0.00001 + dev->connected - dev->previous_connected), in usb_activity_hint()
/external/python/cpython2/Lib/
Dasyncore.py226 connected = False variable in dispatcher
246 self.connected = True
255 self.connected = False
269 elif self.connected:
345 self.connected = False
404 self.connected = False
444 elif not self.connected:
456 self.connected = True
465 if not self.connected:
544 return (not self.connected) or len(self.out_buffer)
[all …]
/external/autotest/site_utils/
Ddump_to_cloudsql.py50 self.connected = False
75 if self.connected:
76 self.connected = False
84 self.connected = True
209 if not manager.connected:
/external/webrtc/webrtc/examples/peerconnection/client/
Dpeer_connection_client.cc354 bool connected; in OnRead() local
356 &connected) && id != my_id_) { in OnRead()
400 bool connected = false; in OnHangingGetRead() local
402 &connected)) { in OnHangingGetRead()
403 if (connected) { in OnHangingGetRead()
429 bool* connected) { in ParseEntry() argument
432 ASSERT(connected != NULL); in ParseEntry()
435 *connected = false; in ParseEntry()
442 *connected = atoi(&entry[separator + 1]) ? true : false; in ParseEntry()
/external/autotest/server/site_tests/network_WiFi_ReconnectInDarkResume/
Dcontrol.DisconnectAfterSuspendSameAP15 This test verifies that the DUT that suspends connected, then subsequently
19 connected to before suspend.
26 4) DUT suspends while connected to AP 2
30 8) Verify that the DUT is connected to AP 2 upon resuming from suspend
Dcontrol.DisconnectAfterSuspendDiffAP15 This test verifies that the DUT that suspends connected, then subsequently
19 was last connected to before suspend.
26 4) DUT suspends while connected to AP 2
30 8) Verify that the DUT is connected to AP 1 upon resuming from suspend
/external/autotest/client/site_tests/network_3GDormancyDance/
Dnetwork_3GDormancyDance.py142 connected = False
151 connected = True
162 if powered and connected:
165 elif powered and (not connected):
168 elif (not powered) and (not connected):
/external/walt/ios/WALT/
DWALTClient.m76 @property (readwrite, nonatomic, getter=isConnected) BOOL connected;
133 - (void)setConnected:(BOOL)connected {
134 if (_connected != connected) {
135 [self willChangeValueForKey:@"connected"];
136 _connected = connected;
137 [self didChangeValueForKey:@"connected"];
143 self.connected = YES;
156 self.connected = NO;
166 self.connected = NO;
178 self.connected = NO;
[all …]
/external/autotest/client/cros/graphics/
Dgraphics_utils.py529 if connector.connected:
539 connected = 0
542 if connector.connected:
543 connected = connected + 1
545 return connected
571 connected = False
573 connected = True
579 Connector(cid, ctype, connected, size, encoder, modes))
589 c.cid, c.ctype, c.connected, size, c.encoder,
634 if connector.connected:
[all …]
/external/syslinux/gpxe/src/net/infiniband/
Dib_cmrc.c87 int connected; member
165 cmrc->connected = 1; in ib_cmrc_changed()
169 cmrc->connected = 0; in ib_cmrc_changed()
281 if ( ! cmrc->connected ) { in ib_cmrc_xfer_deliver_iob()
339 return ( cmrc->connected ? IB_MAX_PAYLOAD_SIZE : 0 ); in ib_cmrc_xfer_window()
/external/webrtc/talk/app/webrtc/java/android/org/webrtc/
DNetworkMonitorAutoDetect.java70 private final boolean connected; field in NetworkMonitorAutoDetect.NetworkState
78 public NetworkState(boolean connected, int type, int subtype) { in NetworkState() argument
79 this.connected = connected; in NetworkState()
85 return connected; in isConnected()
/external/autotest/server/site_tests/platform_ExternalUSBBootStress/
Dplatform_ExternalUSBBootStress.py60 connected = set_hub_power()
70 connected = set_hub_power(check_host_detection=True)
72 diff_list = set(connected).difference(set(off_list))
/external/devlib/doc/
Dconnection.rst25 Transfer a file from the host machine to the connected device.
28 :param dest: path of to the file on the connected device.
34 Transfer a file, or files matching a glob pattern, from the connected device
37 :param source: path of to the file on the connected device. If ``dest`` is a
45 Execute the specified command on the connected device and return its output.
51 :param check_exit_code: If ``True`` the exit code (on connected device)
55 unrooted connected devices.
59 Execute the command on the connected device, invoking it via subprocess on the host.
68 unrooted connected devices.
103 string for USB-connected devices, or an ip address/port
[all …]
/external/autotest/client/deps/ibusclient/src/
Dibusclient.cc397 bool connected = false; in main() local
400 connected = ibus_bus_is_connected(ibus); in main()
405 printf("%s\n", connected ? "YES" : "NO"); in main()
407 } else if (!connected) { in main()
414 assert(connected); in main()
/external/libdrm/tests/kms/
Dlibkms-test-screen.c45 screen->connected = true; in kms_screen_probe()
47 screen->connected = false; in kms_screen_probe()
/external/wpa_supplicant_8/src/fst/
Dfst.c23 Boolean connected, in fst_ctrl_iface_notify_peer_state_change() argument
28 extra.peer_state.connected = connected; in fst_ctrl_iface_notify_peer_state_change()
/external/autotest/server/site_tests/network_WiFi_ProfileBasic/
Dcontrol16 causes us to lose credentials to our currently connected service. Tests
18 and we are not already connected.

12345678910>>...16