Home
last modified time | relevance | path

Searched full:connected (Results 1 – 25 of 4361) sorted by relevance

12345678910>>...175

/external/autotest/client/cros/chameleon/
Dchameleon_port_finder.py14 ChameleonPorts = namedtuple('ChameleonPorts', 'connected failed')
19 Responsible for finding all ports connected to the chameleon board.
21 It does not verify if these ports are connected to DUT.
33 self.connected = None
39 @returns a named tuple ChameleonPorts() containing a list of connected
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 == []:
[all …]
/external/ms-tpm-20-ref/Samples/Nucleo-TPM/L4A6RG/Drivers/STM32L4xx_HAL_Driver/Inc/
Dstm32l4xx_hal_tim_ex.h106 …nt32_t)(0x00000000)) /* !< TIM1_ETR is not connected to any AWD (anal…
107 … (TIM1_OR1_ETR_ADC1_RMP_0) /* !< TIM1_ETR is connected to ADC1 AWD1 */
108 … (TIM1_OR1_ETR_ADC1_RMP_1) /* !< TIM1_ETR is connected to ADC1 AWD2 */
109 … (TIM1_OR1_ETR_ADC1_RMP_1 | TIM1_OR1_ETR_ADC1_RMP_0) /* !< TIM1_ETR is connected to ADC1 AWD3 */
112 …nt32_t)(0x00000000)) /* !< TIM1_ETR is not connected to any AWD (anal…
113 … (TIM1_OR1_ETR_ADC3_RMP_0) /* !< TIM1_ETR is connected to ADC3 AWD1 */
114 … (TIM1_OR1_ETR_ADC3_RMP_1) /* !< TIM1_ETR is connected to ADC3 AWD2 */
115 … (TIM1_OR1_ETR_ADC3_RMP_1 | TIM1_OR1_ETR_ADC3_RMP_0) /* !< TIM1_ETR is connected to ADC3 AWD3 */
118 … ((uint32_t)(0x00000000)) /* !< TIM1 TI1 is connected to GPIO */
119 … (TIM1_OR1_TI1_RMP) /* !< TIM1 TI1 is connected to COMP1 */
[all …]
/external/ms-tpm-20-ref/Samples/Nucleo-TPM/L476RG/Drivers/STM32L4xx_HAL_Driver/Inc/
Dstm32l4xx_hal_tim_ex.h106 …nt32_t)(0x00000000)) /* !< TIM1_ETR is not connected to any AWD (anal…
107 … (TIM1_OR1_ETR_ADC1_RMP_0) /* !< TIM1_ETR is connected to ADC1 AWD1 */
108 … (TIM1_OR1_ETR_ADC1_RMP_1) /* !< TIM1_ETR is connected to ADC1 AWD2 */
109 … (TIM1_OR1_ETR_ADC1_RMP_1 | TIM1_OR1_ETR_ADC1_RMP_0) /* !< TIM1_ETR is connected to ADC1 AWD3 */
112 …nt32_t)(0x00000000)) /* !< TIM1_ETR is not connected to any AWD (anal…
113 … (TIM1_OR1_ETR_ADC3_RMP_0) /* !< TIM1_ETR is connected to ADC3 AWD1 */
114 … (TIM1_OR1_ETR_ADC3_RMP_1) /* !< TIM1_ETR is connected to ADC3 AWD2 */
115 … (TIM1_OR1_ETR_ADC3_RMP_1 | TIM1_OR1_ETR_ADC3_RMP_0) /* !< TIM1_ETR is connected to ADC3 AWD3 */
118 … ((uint32_t)(0x00000000)) /* !< TIM1 TI1 is connected to GPIO */
119 … (TIM1_OR1_TI1_RMP) /* !< TIM1 TI1 is connected to COMP1 */
[all …]
/external/rust/crates/hyper/src/client/connect/
Dmod.rs109 fn connected(&self) -> Connected; in connected() method
112 /// Extra information about the connected transport.
115 /// was used, or if connected to an HTTP proxy.
117 pub struct Connected { struct
156 /// [`CaptureConnection`] allows callers to capture [`Connected`] information
161 rx: watch::Receiver<Option<Connected>>,
167 /// [`capture_connection`] allows a caller to capture the returned [`Connected`] structure as soon
188 /// println!("we are connected! {:?}", connection_info.as_ref());
207 /// println!("we are connected! {:?}", connection_info.as_ref());
225 tx: Arc<watch::Sender<Option<Connected>>>,
[all …]
/external/rust/crates/tonic/src/transport/server/
Dconn.rs12 /// Trait that connected IO resources implement and use to produce info about the connection.
23 /// use tonic::{Request, transport::server::Connected};
29 /// impl Connected for MyConnector {
52 pub trait Connected { trait
66 /// See [`Connected`] for more details.
78 /// Return the local address the IO resource is connected.
83 /// Return the remote address the IO resource is connected too.
89 impl Connected for AddrStream {
100 impl Connected for TcpStream {
111 impl Connected for tokio::io::DuplexStream {
[all …]
/external/trusty/arm-trusted-firmware/include/drivers/nuvoton/npcm845x/
Dnpcm845x_lpuart.h53 * HSP1 connected to SI2,
54 * HSP2 connected to UART2,
61 * HSP1 connected to UART1,
62 * HSP2 connected to SI2,
69 * HSP1 connected to UART1,
70 * HSP2 connected to UART2,
71 * UART3 connected to SI2
76 * HSP1 connected to SI1,
77 * HSP2 connected to SI2,
85 * HSP1 connected to SI1,
[all …]
/external/apache-http/src/org/apache/http/conn/routing/
DRouteTracker.java70 private boolean connected; field in RouteTracker
123 if (this.connected) { in connectTarget()
124 throw new IllegalStateException("Already connected."); in connectTarget()
126 this.connected = true; in connectTarget()
134 * @param proxy the proxy connected to
142 if (this.connected) { in connectProxy()
143 throw new IllegalStateException("Already connected."); in connectProxy()
145 this.connected = true; in connectProxy()
158 if (!this.connected) { in tunnelTarget()
159 throw new IllegalStateException("No tunnel unless connected."); in tunnelTarget()
[all …]
/external/pigweed/pw_stream/
Dmpsc_stream_test.cc146 EXPECT_TRUE(ctx.reader.connected()); in TEST()
147 EXPECT_TRUE(ctx.writer.connected()); in TEST()
150 EXPECT_TRUE(ctx.reader.connected()); in TEST()
151 EXPECT_TRUE(ctx.writer.connected()); in TEST()
152 EXPECT_TRUE(writer2.connected()); in TEST()
155 EXPECT_TRUE(ctx.reader.connected()); in TEST()
156 EXPECT_TRUE(ctx.writer.connected()); in TEST()
157 EXPECT_TRUE(writer2.connected()); in TEST()
158 EXPECT_TRUE(writer3.connected()); in TEST()
162 EXPECT_TRUE(ctx.reader.connected()); in TEST()
[all …]
/external/autotest/client/cros/cellular/
Dcellular.py95 'CONNECTED',
112 'CONNECTED', # Data can be sent
125 UeGsmDataStatus.PDP_ACTIVE: UeGenericDataStatus.CONNECTED,
129 UeC2kDataStatus.DORMANT: UeGenericDataStatus.CONNECTED,
130 UeC2kDataStatus.DATA_CONNECTED: UeGenericDataStatus.CONNECTED,
135 UeEvdoDataStatus.DATA_CONNECTED: UeGenericDataStatus.CONNECTED,
136 UeEvdoDataStatus.DORMANT: UeGenericDataStatus.CONNECTED,
138 UeEvdoDataStatus.IDLE: UeGenericDataStatus.CONNECTED,
139 UeEvdoDataStatus.PAGING: UeGenericDataStatus.CONNECTED,
146 UeLteDataStatus.CONNECTED: UeGenericDataStatus.CONNECTED,
/external/cronet/net/third_party/quiche/src/quiche/quic/tools/
Dquic_client_base.cc148 while (!connected() && in Connect()
156 // We've successfully created a session but we're not connected, and we in Connect()
166 return session()->connection()->connected(); in Connect()
171 QUICHE_DCHECK(!connected()); in StartConnect()
225 if (connected()) { in Disconnect()
242 session_->connection()->connected(); in EncryptionBeingEstablished()
246 if (!connected()) { in WaitForEvents()
248 << "Cannot call WaitForEvents on non-connected client"; in WaitForEvents()
260 if (!connected() && CanReconnectWithDifferentVersion(&version)) { in WaitForEventsPostprocessing()
276 if (!connected()) { in MigrateSocketWithSpecifiedPort()
[all …]
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
DBluetoothHidFacade.java211 Log.d("Connected devices: " + sHidProfile.getConnectedDevices()); in bluetoothHidDisconnect()
218 * Get all the devices connected through HID.
219 * @return List of all the devices connected through HID.
221 @Rpc(description = "Get all the devices connected through HID.")
251 * Send Set_Report command to the connected HID input device.
256 "Send Set_Report command to the connected HID input device.")
272 * Sends the Get_Report command to the given connected HID input device.
280 @Rpc(description = "Send Get_Report command to the connected HID input device.")
299 * Sends a data report to the given connected HID input device.
305 @Rpc(description = "Send data to a connected HID device.")
[all …]
/external/openthread/tools/harness-automation/autothreadharness/
Dsettings_sample.py80 connected to Windows. For OpenThread golden devices, ser2net is also supported by using IP:PORT as …
87 connected to Windows. For OpenThread golden devices, ser2net is also supported by using IP:PORT as …
116 """str: Type of connected PDU controller.
121 - None - when no PDU controller connected
122 - 'APC_PDU_CONTROLLER' - when APC PDU controller connected
123 - 'NORDIC_BOARD_PDU_CONTOLLER' - when Nordic boards PDU controller connected
124 - 'IP_POWER_SOCKET_PDU_CONTROLLER' - when IP Power Socket 5G10A connected
125 - 'EATON_PDU_CONTROLLER' - when EATON PDU controller connected
157 """str: Type of connected RF Shield controller.
162 - None - when no RF Shield controller connected
[all …]
/external/scapy/scapy/contrib/
Deigrp.uts126 = Connected
127 p = IP()/EIGRP(tlvlist=[EIGRPStub(flags="connected+receive-only")])
138 = Connected, Summary
139 p = IP()/EIGRP(tlvlist=[EIGRPStub(flags="connected+summary+receive-only")])
146 = Redistributed, Connected
147 p = IP()/EIGRP(tlvlist=[EIGRPStub(flags="redistributed+connected+receive-only")])
154 = Redistributed, Static, Connected
155 p = IP()/EIGRP(tlvlist=[EIGRPStub(flags="redistributed+static+connected+receive-only")])
162 = Redistributed, Connected, Summary
163 p = IP()/EIGRP(tlvlist=[EIGRPStub(flags="redistributed+connected+summary+receive-only")])
[all …]
/external/autotest/server/cros/servo/
Dpd_device.py29 """Checks if the port is connected as a source
36 """Checks if the port is connected as a sink
44 """Checks if the port is connected
46 @returns True if in a connected state, False otherwise
148 """Get the connected state after disconnect/reconnect
151 @returns: The connected PD state.
205 """Checks if the port is connected as a source.
211 @returns True if connected as SRC, False otherwise
216 """Checks if the port is connected as a sink
222 @returns True if connected as SNK, False otherwise
[all …]
/external/ComputeLibrary/src/gpu/cl/operators/
DClFullyConnected.cpp205 …// If the fully connected layer is called after a convolution layer, the input tensor must be line… in configure_conv_fc()
244 // With the Fully Connected layer we can have 4 different cases: in configure()
245 // 1) Convolution layer -> Fully Connected layer without batches in configure()
246 // 2) Fully Connected layer -> Fully Connected layer without batches in configure()
247 // 3) Convolution layer -> Fully Connected layer with batches in configure()
248 // 4) Fully Connected layer -> Fully Connected layer with batches in configure()
250 // Check if we have a fully connected layer with batches in configure()
293 // Fully Connected layer after a Convolution Layer without batches in configure()
298 // Fully Connected layer after a Fully Connected Layer without batches in configure()
346 // With the Fully Connected layer we can have 4 different cases: in validate()
[all …]
/external/ms-tpm-20-ref/Samples/Nucleo-TPM/L476RG/Drivers/STM32L4xx_HAL_Driver/Src/
Dstm32l4xx_hal_tim_ex.c1435 * commutation at its TRGO output (connected to Timer used in this function) each time
1484 * commutation at its TRGO output (connected to Timer used in this function) each time
1536 * commutation at its TRGO output (connected to Timer used in this function) each time
1879 …* @arg TIM_TIM1_ETR_ADC1_NONE: TIM1_ETR is not connected to any ADC1 AWD (ana…
1880 * @arg TIM_TIM1_ETR_ADC1_AWD1: TIM1_ETR is connected to ADC1 AWD1
1881 * @arg TIM_TIM1_ETR_ADC1_AWD2: TIM1_ETR is connected to ADC1 AWD2
1882 * @arg TIM_TIM1_ETR_ADC1_AWD3: TIM1_ETR is connected to ADC1 AWD3
1885 …* @arg TIM_TIM1_ETR_ADC3_NONE: TIM1_ETR is not connected to any ADC3 AWD (ana…
1886 * @arg TIM_TIM1_ETR_ADC3_AWD1: TIM1_ETR is connected to ADC3 AWD1
1887 * @arg TIM_TIM1_ETR_ADC3_AWD2: TIM1_ETR is connected to ADC3 AWD2
[all …]
/external/ms-tpm-20-ref/Samples/Nucleo-TPM/L4A6RG/Drivers/STM32L4xx_HAL_Driver/Src/
Dstm32l4xx_hal_tim_ex.c1435 * commutation at its TRGO output (connected to Timer used in this function) each time
1484 * commutation at its TRGO output (connected to Timer used in this function) each time
1536 * commutation at its TRGO output (connected to Timer used in this function) each time
1879 …* @arg TIM_TIM1_ETR_ADC1_NONE: TIM1_ETR is not connected to any ADC1 AWD (ana…
1880 * @arg TIM_TIM1_ETR_ADC1_AWD1: TIM1_ETR is connected to ADC1 AWD1
1881 * @arg TIM_TIM1_ETR_ADC1_AWD2: TIM1_ETR is connected to ADC1 AWD2
1882 * @arg TIM_TIM1_ETR_ADC1_AWD3: TIM1_ETR is connected to ADC1 AWD3
1885 …* @arg TIM_TIM1_ETR_ADC3_NONE: TIM1_ETR is not connected to any ADC3 AWD (ana…
1886 * @arg TIM_TIM1_ETR_ADC3_AWD1: TIM1_ETR is connected to ADC3 AWD1
1887 * @arg TIM_TIM1_ETR_ADC3_AWD2: TIM1_ETR is connected to ADC3 AWD2
[all …]
/external/chromium-trace/catapult/devil/devil/utils/
Dusb_hubs.py27 device plugged into physical port 3 will show up as being connected
28 to port 1, on a device which is connected to port 2 on the hub.
43 """Gets devices connected to the physical ports on a hub of this type.
50 and the USBNode connected to it.
64 Gets devices connected to physical ports, based on device tree
74 and the Node connected to it.
89 with another 4-port hub connected on port 4.
108 with another 4-port hub connected on port 1.
121 with another 4-port hub connected on port 1.
133 with another 4-port hub connected on port 4.
[all …]
/external/downloader/src/test/java/com/google/android/downloader/
DAndroidConnectivityHandlerTest.java136 DetailedState.CONNECTED, in checkConnectivity_wrongNetworkType()
140 State.CONNECTED)); in checkConnectivity_wrongNetworkType()
157 DetailedState.CONNECTED, in checkConnectivity_anyNetworkType()
161 State.CONNECTED)); in checkConnectivity_anyNetworkType()
181 DetailedState.CONNECTED, in checkConnectivity_unknownNetworkType()
185 State.CONNECTED)); in checkConnectivity_unknownNetworkType()
206 DetailedState.CONNECTED, ConnectivityManager.TYPE_WIFI, 0, true, State.CONNECTED)); in checkConnectivity_requiredNetworkConnected_wifiOnly()
223 DetailedState.CONNECTED, in checkConnectivity_requiredNetworkConnected_wifiOrCellular()
227 State.CONNECTED)); in checkConnectivity_requiredNetworkConnected_wifiOrCellular()
247 DetailedState.CONNECTED, ConnectivityManager.TYPE_WIFI, 0, true, State.CONNECTED)); in checkConnectivity_requiredNetworkConnected_sdk23()
[all …]
/external/grpc-grpc/test/core/channel/
Dminimal_stack_is_minimal_test.cc119 std::vector<std::string>({"authority", "connected"})); in TEST()
121 std::vector<std::string>({"authority", "connected"})); in TEST()
124 std::vector<std::string>({"server", "server_call_tracer", "connected"})); in TEST()
128 {"authority", "http-client", "compression", "connected"})); in TEST()
131 {"authority", "http-client", "compression", "connected"})); in TEST()
134 "server_call_tracer", "connected"})); in TEST()
142 {"authority", "message_size", "deadline", "connected"})); in TEST()
145 std::vector<std::string>({"authority", "message_size", "connected"})); in TEST()
148 "server_call_tracer", "connected"})); in TEST()
153 "http-client", "compression", "connected"})); in TEST()
[all …]
/external/autotest/client/common_lib/cros/cfm/usb/
Dusb_device.py25 @param bus: The bus this device is connected to. Number.
28 @param level: The level in the device hierarchy this device is connected
29 at. A device connected directly to a port is typically at level 1.
31 this device is connected to, typically a USB Hub.
69 """Returns the port this USB device is connected to."""
74 """Returns the bus this USB device is connected to."""
121 Devices are connected in a hierarchy. Typically like this:
124 +--+ Level 1: Device connected to the machine's physical ports.
126 +--+ Level 2: If level 1 is a Hub, this is a device connected to
/external/autotest/server/cros/power/
Dservo_charger.py170 connected = True if role == 'src' else False
174 def check_ac_connected(connected): argument
175 """Check if the EC believes an AC charger is connected."""
184 if ec_opinion != connected:
185 str_lookup = {True: 'connected', False: 'disconnected'}
188 str_lookup[connected]))
191 check_ac_connected(connected)
195 def check_host_ac(connected): argument
197 if self._host.is_ac_connected() != connected:
198 intent = 'connect' if connected else 'disconnect'
[all …]
/external/google-cloud-java/java-compute/proto-google-cloud-compute-v1/src/main/java/com/google/cloud/compute/v1/
DServiceAttachmentConnectedEndpointOrBuilder.java30 * The url of a connected endpoint.
42 * The url of a connected endpoint.
54 * The url of a connected endpoint.
67 * The PSC connection id of the connected endpoint.
79 * The PSC connection id of the connected endpoint.
92 * The status of a connected endpoint to this service attachment.
105 * The status of a connected endpoint to this service attachment.
118 * The status of a connected endpoint to this service attachment.
/external/setupcompat/main/java/com/google/android/setupcompat/internal/
DSetupCompatServiceProvider.java68 case CONNECTED: in getService()
94 if (currentServiceState.state == State.CONNECTED) { in waitForConnection()
99 LOG.atInfo("Waiting for service to get connected"); in waitForConnection()
111 "Finished waiting for service to get connected. Current state = %s", in waitForConnection()
127 if (currentServiceState.state == State.CONNECTED) { in requestServiceBind()
128 LOG.atInfo("Refusing to rebind since current state is already connected"); in requestServiceBind()
147 // This check prevents us from overriding connected state which usually arrives much later in requestServiceBind()
149 if (getCurrentState() != State.CONNECTED) { in requestServiceBind()
218 State state = State.CONNECTED;
265 /** Provider is connected to the service and can call the API(s). */
[all …]
/external/ComputeLibrary/src/cpu/operators/
DCpuFullyConnected.cpp216 …// If the fully connected layer is called after a convolution layer, the src tensor must be linear… in configure_conv_fc()
260 // With the Fully Connected layer we can have 4 different cases: in configure()
261 // 1) Convolution layer -> Fully Connected layer without batches in configure()
262 // 2) Fully Connected layer -> Fully Connected layer without batches in configure()
263 // 3) Convolution layer -> Fully Connected layer with batches in configure()
264 // 4) Fully Connected layer -> Fully Connected layer with batches in configure()
268 // Check if we have a fully connected layer with batches in configure()
306 // Fully Connected layer after a Convolution Layer without batches in configure()
311 // Fully Connected layer after a Fully Connected Layer without batches in configure()
387 // With the Fully Connected layer we can have 4 different cases: in validate()
[all …]

12345678910>>...175