Home
last modified time | relevance | path

Searched refs:errorText (Results 1 – 2 of 2) sorted by relevance

/development/tools/winscope/src/proxyclient/
DProxyClient.ts73 stateChangeListeners:{(param:ProxyState, errorText:String): void;}[] = [];
77 errorText:String = "" property in ProxyClient
98 client.errorText = this.responseText;
100 client.errorText = String.fromCharCode.apply(null, new Uint8Array(this.response));
117 setState(state:ProxyState, errorText:String = "") {
119 this.errorText = errorText;
121 listener(state, errorText);
125 onStateChange(fn: (state:ProxyState, errorText:String) => void) {
130 removeOnStateChange(removeFn: (state:ProxyState, errorText:String) => void) {
155 client.errorText = request.responseText;
/development/tools/bugreport/src/com/android/bugreport/
DOptions.java45 public String errorText; field in Options
127 private Options(String[] args, int errorIndex, String errorText) { in Options() argument
130 this.errorText = errorText; in Options()