Home
last modified time | relevance | path

Searched refs:connectionState (Results 1 – 13 of 13) sorted by relevance

/external/perfetto/ui/src/common/recordingV2/target_factories/
Dandroid_websocket_target_factory_unittest.ts23 expect(response.listedDevices[0].connectionState).toEqual('offline');
32 expect(response.listedDevices[0].connectionState).toEqual('device');
34 expect(response.listedDevices[1].connectionState).toEqual('unauthorized');
44 expect(response.listedDevices[0].connectionState).toEqual('device');
54 expect(response.listedDevices[0].connectionState).toEqual('device');
Dandroid_websocket_target_factory.ts40 connectionState: string; property
60 connectionState: parts[1],
89 listedDevice.serialNumber, listedDevice.connectionState);
95 for (const [serialNumber, connectionState] of latestStatusByDevice constant
97 listedDevices.push({serialNumber, connectionState});
176 if (['offline', 'unknown'].includes(listedDevice.connectionState)) {
/external/walt/android/WALT/app/src/main/java/org/chromium/latency/walt/
DWaltTcpConnection.java45 private Utils.ListenerState connectionState = Utils.ListenerState.STOPPED; field in WaltTcpConnection
81 connectionState = Utils.ListenerState.STARTING; in connect()
97 connectionState = Utils.ListenerState.RUNNING; in connect()
101 connectionState = Utils.ListenerState.STOPPED; in connect()
124 return connectionState == Utils.ListenerState.RUNNING; in isConnected()
/external/grpc-grpc-java/okhttp/src/main/java/io/grpc/okhttp/
DOutboundFlowController.java41 private final OutboundFlowState connectionState = new OutboundFlowState(CONNECTION_STREAM_ID); field in OutboundFlowController
88 updatedWindow = connectionState.incrementStreamWindow(delta); in windowUpdate()
174 int connectionWindow = connectionState.window(); in writeStreams()
283 return min(window, connectionState.window()); in writableWindow()
385 connectionState.incrementStreamWindow(-bytesToWrite); in write()
/external/caliper/caliper/src/main/java/com/google/caliper/runner/
DServerSocketService.java107 private final SetMultimap<Source, UUID> connectionState = Multimaps.newSetMultimap( field in ServerSocketService
179 checkState(connectionState.put(source, id), "Connection for %s has already been %s", in getConnectionImpl()
213 connectionState.clear(); in shutDown()
/external/autotest/client/site_tests/network_ChromeWifiEndToEnd/
Dnetwork_ChromeWifiEndToEnd.py44 connectionState=network['ConnectionState'],
177 if network_to_connect.connectionState == 'NotConnected':
197 if network_to_connect.connectionState == 'NotConnected':
/external/autotest/client/site_tests/network_ChromeCellularEndToEnd/
Dnetwork_ChromeCellularEndToEnd.py44 connectionState=network.get('ConnectionState', 'none'),
197 if (not formatted_network_list[0].connectionState == 'Connected' or
198 not formatted_network_list[1].connectionState == 'Connected'):
/external/robolectric/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowBluetoothA2dp.java33 public void addDevice(BluetoothDevice bluetoothDevice, int connectionState) { in addDevice() argument
34 bluetoothDevices.put(bluetoothDevice, connectionState); in addDevice()
DShadowBluetoothHeadset.java56 public void addDevice(BluetoothDevice bluetoothDevice, int connectionState) { in addDevice() argument
57 bluetoothDevices.put(bluetoothDevice, connectionState); in addDevice()
/external/autotest/client/cros/enterprise/
Denterprise_network_api.py59 connectionState=network['ConnectionState'],
119 return network_info.connectionState
/external/webrtc/sdk/objc/api/peerconnection/
DRTCPeerConnection.h189 @property(nonatomic, readonly) RTCPeerConnectionState connectionState;
DRTCPeerConnection.mm423 - (RTCPeerConnectionState)connectionState { method in RTCPeerConnection
/external/webrtc/sdk/android/api/org/webrtc/
DPeerConnection.java1227 public PeerConnectionState connectionState() { in connectionState() method in PeerConnection