MCPcopy Create free account
hub / github.com/XCSoar/XCSoar / set

Method set

android/src/AbstractAndroidPort.java:60–65  ·  view source on GitHub ↗
(InputStream _input, OutputStream _output)

Source from the content-addressed store, hash-verified

58 }
59
60 protected synchronized void set(InputStream _input, OutputStream _output) {
61 input = new InputThread(name, inputListener, _input);
62 output = new OutputThread(name, _output);
63 output.setTimeout(5000);
64 stateChanged();
65 }
66
67 protected void setWriteTimeout(int timeout_ms) {
68 output.setTimeout(timeout_ms);

Callers

nothing calls this directly

Calls 2

stateChangedMethod · 0.95
setTimeoutMethod · 0.80

Tested by

no test coverage detected