Home | History | Annotate | Download | only in conn

Lines Matching defs:in

12  *  (the "License"); you may not use this file except in compliance with
17 * Unless required by applicable law or agreed to in writing, software
56 private final SessionInputBuffer in;
63 * @param in The session input buffer.
66 public LoggingSessionInputBuffer(final SessionInputBuffer in, final Wire wire) {
68 this.in = in;
73 return this.in.isDataAvailable(timeout);
77 int l = this.in.read(b, off, len);
85 int l = this.in.read();
93 int l = this.in.read(b);
101 String s = this.in.readLine();
109 int l = this.in.readLine(buffer);
119 return this.in.getMetrics();