Home
last modified time | relevance | path

Searched refs:deviceConnection (Results 1 – 3 of 3) sorted by relevance

/device/google/cuttlefish/host/frontend/webrtc/html_client/js/
Dapp.js46 let deviceConnection = await module.Connect(deviceId, serverConnector);
49 return deviceConnection;
136 #deviceConnection = {}; field in DeviceControlApp
147 constructor(deviceConnection, parentController) { argument
148 this.#deviceConnection = deviceConnection;
153 console.debug('Device description: ', this.#deviceConnection.description);
154 this.#deviceConnection.onControlMessage(msg => this.#onControlMessage(msg));
155 this.#deviceConnection.onLightsMessage(msg => this.#onLightsMessage(msg));
156 this.#deviceConnection.onSensorsMessage(msg => this.#onSensorsMessage(msg));
161 if (!this.#deviceConnection.description.hardware.camera_passthrough) {
[all …]
Dcf_webrtc.js672 let deviceConnection = new DeviceConnection(pc, control);
673 deviceConnection.description = deviceInfo;
675 return control.ConnectDevice(pc, infraConfig).then(_ => deviceConnection);
Dcontrols.js58 deviceConnection, listener) { argument