Searched refs:fromSource (Results 1 – 1 of 1) sorted by relevance
102 BufferedSource fromSource = Okio.buffer(Okio.source(from)); in service()104 hello(fromSource, fromSink); in service()105 acceptCommand(from.getInetAddress(), fromSource, fromSink); in service()114 private void hello(BufferedSource fromSource, BufferedSink fromSink) throws IOException { in hello() argument115 int version = fromSource.readByte() & 0xff; in hello()116 int methodCount = fromSource.readByte() & 0xff; in hello()124 int candidateMethod = fromSource.readByte() & 0xff; in hello()142 private void acceptCommand(InetAddress fromAddress, BufferedSource fromSource, in acceptCommand() argument145 int version = fromSource.readByte() & 0xff; in acceptCommand()147 int command = fromSource.readByte() & 0xff; in acceptCommand()[all …]