Lines Matching refs:proxy
35 proxy = proxyClient; property in ProxyConnection
50 this.proxy.setState(ProxyState.CONNECTING);
51 this.proxy.onProxyChange(
56 this.proxy.proxyKey = assertDefined(urlParams.get('token'));
57 } else if (this.proxy.store.get('adb.proxyKey')) {
58 this.proxy.proxyKey = assertDefined(this.proxy.store.get('adb.proxyKey'));
60 this.proxy.getDevices();
64 return this.proxy.devices;
68 return this.proxy.adbData;
72 return this.proxy.state;
104 this.proxy.setState(ProxyState.ERROR, 'No targets selected');
108 this.proxy.proxyKey = key;
109 this.proxy.store.add('adb.proxyKey', key);
113 return !this.notConnected.includes(this.proxy.state);
117 return this.proxy.devices[this.proxy.selectedDevice];
121 return this.proxy.selectedDevice;
125 this.proxy.setState(ProxyState.CONNECTING);
129 this.proxy.store.add('adb.lastDevice', '');
134 this.proxy.selectDevice(id);
143 proxyRequest.keepTraceAlive(view.proxy, (request: XMLHttpRequest) => {
159 proxyRequest.setEnabledConfig(this.proxy, reqEnableConfig);
164 this.proxy,
171 this.proxy,
177 this.proxy,
188 await this.proxy.setState(ProxyState.LOAD_DATA);
189 await proxyRequest.endTrace(this.proxy, this.progressCallback);
196 await this.proxy.setState(ProxyState.ERROR, 'No targets selected');
199 await this.proxy.setState(ProxyState.LOAD_DATA);
201 this.proxy,